Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 1 | /* |
Marcel Ziswiler | 7817cb2 | 2007-12-30 03:30:46 +0100 | [diff] [blame] | 2 | * drivers/mtd/nand/nand_util.c |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2006 by Weiss-Electronic GmbH. |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * @author: Guido Classen <clagix@gmail.com> |
| 8 | * @descr: NAND Flash support |
| 9 | * @references: borrowed heavily from Linux mtd-utils code: |
| 10 | * flash_eraseall.c by Arcom Control System Ltd |
| 11 | * nandwrite.c by Steven J. Hill (sjhill@realitydiluted.com) |
| 12 | * and Thomas Gleixner (tglx@linutronix.de) |
| 13 | * |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 14 | * Copyright (C) 2008 Nokia Corporation: drop_ffs() function by |
| 15 | * Artem Bityutskiy <dedekind1@gmail.com> from mtd-utils |
| 16 | * |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 17 | * See file CREDITS for list of people who contributed to this |
| 18 | * project. |
| 19 | * |
| 20 | * This program is free software; you can redistribute it and/or |
| 21 | * modify it under the terms of the GNU General Public License version |
| 22 | * 2 as published by the Free Software Foundation. |
| 23 | * |
| 24 | * This program is distributed in the hope that it will be useful, |
| 25 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 26 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 27 | * GNU General Public License for more details. |
| 28 | * |
| 29 | * You should have received a copy of the GNU General Public License |
| 30 | * along with this program; if not, write to the Free Software |
| 31 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 32 | * MA 02111-1307 USA |
| 33 | * |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 34 | * Copyright 2010 Freescale Semiconductor |
| 35 | * The portions of this file whose copyright is held by Freescale and which |
| 36 | * are not considered a derived work of GPL v2-only code may be distributed |
| 37 | * and/or modified under the terms of the GNU General Public License as |
| 38 | * published by the Free Software Foundation; either version 2 of the |
| 39 | * License, or (at your option) any later version. |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 40 | */ |
| 41 | |
| 42 | #include <common.h> |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 43 | #include <command.h> |
| 44 | #include <watchdog.h> |
| 45 | #include <malloc.h> |
Dirk Behme | 3a6d56c | 2007-08-02 17:42:08 +0200 | [diff] [blame] | 46 | #include <div64.h> |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 47 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 48 | #include <asm/errno.h> |
| 49 | #include <linux/mtd/mtd.h> |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 50 | #include <nand.h> |
| 51 | #include <jffs2/jffs2.h> |
| 52 | |
| 53 | typedef struct erase_info erase_info_t; |
| 54 | typedef struct mtd_info mtd_info_t; |
| 55 | |
| 56 | /* support only for native endian JFFS2 */ |
| 57 | #define cpu_to_je16(x) (x) |
| 58 | #define cpu_to_je32(x) (x) |
| 59 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 60 | /** |
| 61 | * nand_erase_opts: - erase NAND flash with support for various options |
| 62 | * (jffs2 formating) |
| 63 | * |
| 64 | * @param meminfo NAND device to erase |
| 65 | * @param opts options, @see struct nand_erase_options |
| 66 | * @return 0 in case of success |
| 67 | * |
| 68 | * This code is ported from flash_eraseall.c from Linux mtd utils by |
| 69 | * Arcom Control System Ltd. |
| 70 | */ |
| 71 | int nand_erase_opts(nand_info_t *meminfo, const nand_erase_options_t *opts) |
| 72 | { |
| 73 | struct jffs2_unknown_node cleanmarker; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 74 | erase_info_t erase; |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 75 | unsigned long erase_length, erased_length; /* in blocks */ |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 76 | int bbtest = 1; |
| 77 | int result; |
| 78 | int percent_complete = -1; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 79 | const char *mtd_device = meminfo->name; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 80 | struct mtd_oob_ops oob_opts; |
| 81 | struct nand_chip *chip = meminfo->priv; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 82 | |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 83 | if ((opts->offset & (meminfo->writesize - 1)) != 0) { |
| 84 | printf("Attempt to erase non page aligned data\n"); |
| 85 | return -1; |
| 86 | } |
| 87 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 88 | memset(&erase, 0, sizeof(erase)); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 89 | memset(&oob_opts, 0, sizeof(oob_opts)); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 90 | |
| 91 | erase.mtd = meminfo; |
| 92 | erase.len = meminfo->erasesize; |
Stefan Roese | 856f054 | 2006-10-28 15:55:52 +0200 | [diff] [blame] | 93 | erase.addr = opts->offset; |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 94 | erase_length = lldiv(opts->length + meminfo->erasesize - 1, |
| 95 | meminfo->erasesize); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 96 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 97 | cleanmarker.magic = cpu_to_je16 (JFFS2_MAGIC_BITMASK); |
| 98 | cleanmarker.nodetype = cpu_to_je16 (JFFS2_NODETYPE_CLEANMARKER); |
| 99 | cleanmarker.totlen = cpu_to_je32(8); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 100 | |
| 101 | /* scrub option allows to erase badblock. To prevent internal |
| 102 | * check from erase() method, set block check method to dummy |
| 103 | * and disable bad block table while erasing. |
| 104 | */ |
| 105 | if (opts->scrub) { |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 106 | erase.scrub = opts->scrub; |
| 107 | /* |
| 108 | * We don't need the bad block table anymore... |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 109 | * after scrub, there are no bad blocks left! |
| 110 | */ |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 111 | if (chip->bbt) { |
| 112 | kfree(chip->bbt); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 113 | } |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 114 | chip->bbt = NULL; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 115 | } |
| 116 | |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 117 | for (erased_length = 0; |
| 118 | erased_length < erase_length; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 119 | erase.addr += meminfo->erasesize) { |
William Juul | 4cbb651 | 2007-11-08 10:39:53 +0100 | [diff] [blame] | 120 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 121 | WATCHDOG_RESET (); |
| 122 | |
| 123 | if (!opts->scrub && bbtest) { |
| 124 | int ret = meminfo->block_isbad(meminfo, erase.addr); |
| 125 | if (ret > 0) { |
| 126 | if (!opts->quiet) |
| 127 | printf("\rSkipping bad block at " |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 128 | "0x%08llx " |
Wolfgang Denk | 87621bc | 2006-10-12 11:43:47 +0200 | [diff] [blame] | 129 | " \n", |
| 130 | erase.addr); |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 131 | |
| 132 | if (!opts->spread) |
| 133 | erased_length++; |
| 134 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 135 | continue; |
| 136 | |
| 137 | } else if (ret < 0) { |
| 138 | printf("\n%s: MTD get bad block failed: %d\n", |
| 139 | mtd_device, |
| 140 | ret); |
| 141 | return -1; |
| 142 | } |
| 143 | } |
| 144 | |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 145 | erased_length++; |
| 146 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 147 | result = meminfo->erase(meminfo, &erase); |
| 148 | if (result != 0) { |
| 149 | printf("\n%s: MTD Erase failure: %d\n", |
| 150 | mtd_device, result); |
| 151 | continue; |
| 152 | } |
| 153 | |
| 154 | /* format for JFFS2 ? */ |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 155 | if (opts->jffs2 && chip->ecc.layout->oobavail >= 8) { |
| 156 | chip->ops.ooblen = 8; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 157 | chip->ops.datbuf = NULL; |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 158 | chip->ops.oobbuf = (uint8_t *)&cleanmarker; |
| 159 | chip->ops.ooboffs = 0; |
| 160 | chip->ops.mode = MTD_OOB_AUTO; |
William Juul | 4cbb651 | 2007-11-08 10:39:53 +0100 | [diff] [blame] | 161 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 162 | result = meminfo->write_oob(meminfo, |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 163 | erase.addr, |
| 164 | &chip->ops); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 165 | if (result != 0) { |
| 166 | printf("\n%s: MTD writeoob failure: %d\n", |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 167 | mtd_device, result); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 168 | continue; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 169 | } |
| 170 | } |
| 171 | |
| 172 | if (!opts->quiet) { |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 173 | unsigned long long n = erased_length * 100ULL; |
Matthias Fuchs | 5bd7fe9 | 2007-09-11 17:04:00 +0200 | [diff] [blame] | 174 | int percent; |
| 175 | |
| 176 | do_div(n, erase_length); |
| 177 | percent = (int)n; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 178 | |
| 179 | /* output progress message only at whole percent |
| 180 | * steps to reduce the number of messages printed |
| 181 | * on (slow) serial consoles |
| 182 | */ |
| 183 | if (percent != percent_complete) { |
| 184 | percent_complete = percent; |
| 185 | |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 186 | printf("\rErasing at 0x%llx -- %3d%% complete.", |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 187 | erase.addr, percent); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 188 | |
| 189 | if (opts->jffs2 && result == 0) |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 190 | printf(" Cleanmarker written at 0x%llx.", |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 191 | erase.addr); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 192 | } |
| 193 | } |
| 194 | } |
| 195 | if (!opts->quiet) |
| 196 | printf("\n"); |
| 197 | |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 198 | if (opts->scrub) |
| 199 | chip->scan_bbt(meminfo); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 200 | |
| 201 | return 0; |
| 202 | } |
| 203 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 204 | #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK |
| 205 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 206 | /****************************************************************************** |
| 207 | * Support for locking / unlocking operations of some NAND devices |
| 208 | *****************************************************************************/ |
| 209 | |
| 210 | #define NAND_CMD_LOCK 0x2a |
| 211 | #define NAND_CMD_LOCK_TIGHT 0x2c |
| 212 | #define NAND_CMD_UNLOCK1 0x23 |
| 213 | #define NAND_CMD_UNLOCK2 0x24 |
| 214 | #define NAND_CMD_LOCK_STATUS 0x7a |
| 215 | |
| 216 | /** |
| 217 | * nand_lock: Set all pages of NAND flash chip to the LOCK or LOCK-TIGHT |
| 218 | * state |
| 219 | * |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 220 | * @param mtd nand mtd instance |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 221 | * @param tight bring device in lock tight mode |
| 222 | * |
| 223 | * @return 0 on success, -1 in case of error |
| 224 | * |
| 225 | * The lock / lock-tight command only applies to the whole chip. To get some |
| 226 | * parts of the chip lock and others unlocked use the following sequence: |
| 227 | * |
| 228 | * - Lock all pages of the chip using nand_lock(mtd, 0) (or the lockpre pin) |
| 229 | * - Call nand_unlock() once for each consecutive area to be unlocked |
| 230 | * - If desired: Bring the chip to the lock-tight state using nand_lock(mtd, 1) |
| 231 | * |
| 232 | * If the device is in lock-tight state software can't change the |
| 233 | * current active lock/unlock state of all pages. nand_lock() / nand_unlock() |
| 234 | * calls will fail. It is only posible to leave lock-tight state by |
| 235 | * an hardware signal (low pulse on _WP pin) or by power down. |
| 236 | */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 237 | int nand_lock(struct mtd_info *mtd, int tight) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 238 | { |
| 239 | int ret = 0; |
| 240 | int status; |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 241 | struct nand_chip *chip = mtd->priv; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 242 | |
| 243 | /* select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 244 | chip->select_chip(mtd, 0); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 245 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 246 | chip->cmdfunc(mtd, |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 247 | (tight ? NAND_CMD_LOCK_TIGHT : NAND_CMD_LOCK), |
| 248 | -1, -1); |
| 249 | |
| 250 | /* call wait ready function */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 251 | status = chip->waitfunc(mtd, chip); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 252 | |
| 253 | /* see if device thinks it succeeded */ |
| 254 | if (status & 0x01) { |
| 255 | ret = -1; |
| 256 | } |
| 257 | |
| 258 | /* de-select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 259 | chip->select_chip(mtd, -1); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 260 | return ret; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * nand_get_lock_status: - query current lock state from one page of NAND |
| 265 | * flash |
| 266 | * |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 267 | * @param mtd nand mtd instance |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 268 | * @param offset page address to query (muss be page aligned!) |
| 269 | * |
| 270 | * @return -1 in case of error |
| 271 | * >0 lock status: |
| 272 | * bitfield with the following combinations: |
| 273 | * NAND_LOCK_STATUS_TIGHT: page in tight state |
| 274 | * NAND_LOCK_STATUS_LOCK: page locked |
| 275 | * NAND_LOCK_STATUS_UNLOCK: page unlocked |
| 276 | * |
| 277 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 278 | int nand_get_lock_status(struct mtd_info *mtd, loff_t offset) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 279 | { |
| 280 | int ret = 0; |
| 281 | int chipnr; |
| 282 | int page; |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 283 | struct nand_chip *chip = mtd->priv; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 284 | |
| 285 | /* select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 286 | chipnr = (int)(offset >> chip->chip_shift); |
| 287 | chip->select_chip(mtd, chipnr); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 288 | |
| 289 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 290 | if ((offset & (mtd->writesize - 1)) != 0) { |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 291 | printf ("nand_get_lock_status: " |
| 292 | "Start address must be beginning of " |
| 293 | "nand page!\n"); |
| 294 | ret = -1; |
| 295 | goto out; |
| 296 | } |
| 297 | |
| 298 | /* check the Lock Status */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 299 | page = (int)(offset >> chip->page_shift); |
| 300 | chip->cmdfunc(mtd, NAND_CMD_LOCK_STATUS, -1, page & chip->pagemask); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 301 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 302 | ret = chip->read_byte(mtd) & (NAND_LOCK_STATUS_TIGHT |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 303 | | NAND_LOCK_STATUS_LOCK |
| 304 | | NAND_LOCK_STATUS_UNLOCK); |
| 305 | |
| 306 | out: |
| 307 | /* de-select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 308 | chip->select_chip(mtd, -1); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 309 | return ret; |
| 310 | } |
| 311 | |
| 312 | /** |
| 313 | * nand_unlock: - Unlock area of NAND pages |
| 314 | * only one consecutive area can be unlocked at one time! |
| 315 | * |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 316 | * @param mtd nand mtd instance |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 317 | * @param start start byte address |
| 318 | * @param length number of bytes to unlock (must be a multiple of |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 319 | * page size nand->writesize) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 320 | * |
| 321 | * @return 0 on success, -1 in case of error |
| 322 | */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 323 | int nand_unlock(struct mtd_info *mtd, ulong start, ulong length) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 324 | { |
| 325 | int ret = 0; |
| 326 | int chipnr; |
| 327 | int status; |
| 328 | int page; |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 329 | struct nand_chip *chip = mtd->priv; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 330 | printf ("nand_unlock: start: %08x, length: %d!\n", |
| 331 | (int)start, (int)length); |
| 332 | |
| 333 | /* select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 334 | chipnr = (int)(start >> chip->chip_shift); |
| 335 | chip->select_chip(mtd, chipnr); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 336 | |
| 337 | /* check the WP bit */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 338 | chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1); |
| 339 | if (!(chip->read_byte(mtd) & NAND_STATUS_WP)) { |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 340 | printf ("nand_unlock: Device is write protected!\n"); |
| 341 | ret = -1; |
| 342 | goto out; |
| 343 | } |
| 344 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 345 | if ((start & (mtd->erasesize - 1)) != 0) { |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 346 | printf ("nand_unlock: Start address must be beginning of " |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 347 | "nand block!\n"); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 348 | ret = -1; |
| 349 | goto out; |
| 350 | } |
| 351 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 352 | if (length == 0 || (length & (mtd->erasesize - 1)) != 0) { |
| 353 | printf ("nand_unlock: Length must be a multiple of nand block " |
| 354 | "size %08x!\n", mtd->erasesize); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 355 | ret = -1; |
| 356 | goto out; |
| 357 | } |
| 358 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 359 | /* |
| 360 | * Set length so that the last address is set to the |
| 361 | * starting address of the last block |
| 362 | */ |
| 363 | length -= mtd->erasesize; |
| 364 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 365 | /* submit address of first page to unlock */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 366 | page = (int)(start >> chip->page_shift); |
| 367 | chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 368 | |
| 369 | /* submit ADDRESS of LAST page to unlock */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 370 | page += (int)(length >> chip->page_shift); |
| 371 | chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1, page & chip->pagemask); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 372 | |
| 373 | /* call wait ready function */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 374 | status = chip->waitfunc(mtd, chip); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 375 | /* see if device thinks it succeeded */ |
| 376 | if (status & 0x01) { |
| 377 | /* there was an error */ |
| 378 | ret = -1; |
| 379 | goto out; |
| 380 | } |
| 381 | |
| 382 | out: |
| 383 | /* de-select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 384 | chip->select_chip(mtd, -1); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 385 | return ret; |
| 386 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 387 | #endif |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 388 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 389 | /** |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 390 | * check_skip_len |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 391 | * |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 392 | * Check if there are any bad blocks, and whether length including bad |
| 393 | * blocks fits into device |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 394 | * |
| 395 | * @param nand NAND device |
| 396 | * @param offset offset in flash |
| 397 | * @param length image length |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 398 | * @return 0 if the image fits and there are no bad blocks |
| 399 | * 1 if the image fits, but there are bad blocks |
| 400 | * -1 if the image does not fit |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 401 | */ |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 402 | static int check_skip_len(nand_info_t *nand, loff_t offset, size_t length) |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 403 | { |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 404 | size_t len_excl_bad = 0; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 405 | int ret = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 406 | |
| 407 | while (len_excl_bad < length) { |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 408 | size_t block_len, block_off; |
| 409 | loff_t block_start; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 410 | |
Daniel Hobi | 0ec81db | 2009-12-01 14:05:55 +0100 | [diff] [blame] | 411 | if (offset >= nand->size) |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 412 | return -1; |
| 413 | |
| 414 | block_start = offset & ~(loff_t)(nand->erasesize - 1); |
| 415 | block_off = offset & (nand->erasesize - 1); |
| 416 | block_len = nand->erasesize - block_off; |
| 417 | |
| 418 | if (!nand_block_isbad(nand, block_start)) |
| 419 | len_excl_bad += block_len; |
| 420 | else |
| 421 | ret = 1; |
| 422 | |
| 423 | offset += block_len; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 424 | } |
| 425 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 426 | return ret; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 427 | } |
| 428 | |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 429 | #ifdef CONFIG_CMD_NAND_TRIMFFS |
| 430 | static size_t drop_ffs(const nand_info_t *nand, const u_char *buf, |
| 431 | const size_t *len) |
| 432 | { |
| 433 | size_t i, l = *len; |
| 434 | |
| 435 | for (i = l - 1; i >= 0; i--) |
| 436 | if (buf[i] != 0xFF) |
| 437 | break; |
| 438 | |
| 439 | /* The resulting length must be aligned to the minimum flash I/O size */ |
| 440 | l = i + 1; |
| 441 | l = (l + nand->writesize - 1) / nand->writesize; |
| 442 | l *= nand->writesize; |
| 443 | |
| 444 | /* |
| 445 | * since the input length may be unaligned, prevent access past the end |
| 446 | * of the buffer |
| 447 | */ |
| 448 | return min(l, *len); |
| 449 | } |
| 450 | #endif |
| 451 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 452 | /** |
| 453 | * nand_write_skip_bad: |
| 454 | * |
| 455 | * Write image to NAND flash. |
| 456 | * Blocks that are marked bad are skipped and the is written to the next |
| 457 | * block instead as long as the image is short enough to fit even after |
| 458 | * skipping the bad blocks. |
| 459 | * |
| 460 | * @param nand NAND device |
| 461 | * @param offset offset in flash |
| 462 | * @param length buffer length |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 463 | * @param buffer buffer to read from |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 464 | * @param flags flags modifying the behaviour of the write to NAND |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 465 | * @return 0 in case of success |
| 466 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 467 | int nand_write_skip_bad(nand_info_t *nand, loff_t offset, size_t *length, |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 468 | u_char *buffer, int flags) |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 469 | { |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 470 | int rval = 0, blocksize; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 471 | size_t left_to_write = *length; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 472 | u_char *p_buffer = buffer; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 473 | int need_skip; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 474 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 475 | #ifdef CONFIG_CMD_NAND_YAFFS |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 476 | if (flags & WITH_YAFFS_OOB) { |
Ben Gardiner | c135456 | 2011-06-14 16:35:05 -0400 | [diff] [blame] | 477 | if (flags & ~WITH_YAFFS_OOB) |
| 478 | return -EINVAL; |
| 479 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 480 | int pages; |
| 481 | pages = nand->erasesize / nand->writesize; |
| 482 | blocksize = (pages * nand->oobsize) + nand->erasesize; |
| 483 | if (*length % (nand->writesize + nand->oobsize)) { |
| 484 | printf ("Attempt to write incomplete page" |
| 485 | " in yaffs mode\n"); |
| 486 | return -EINVAL; |
| 487 | } |
| 488 | } else |
| 489 | #endif |
| 490 | { |
| 491 | blocksize = nand->erasesize; |
| 492 | } |
| 493 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 494 | /* |
| 495 | * nand_write() handles unaligned, partial page writes. |
| 496 | * |
| 497 | * We allow length to be unaligned, for convenience in |
| 498 | * using the $filesize variable. |
| 499 | * |
| 500 | * However, starting at an unaligned offset makes the |
| 501 | * semantics of bad block skipping ambiguous (really, |
| 502 | * you should only start a block skipping access at a |
| 503 | * partition boundary). So don't try to handle that. |
| 504 | */ |
| 505 | if ((offset & (nand->writesize - 1)) != 0) { |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 506 | printf ("Attempt to write non page aligned data\n"); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 507 | *length = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 508 | return -EINVAL; |
| 509 | } |
| 510 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 511 | need_skip = check_skip_len(nand, offset, *length); |
| 512 | if (need_skip < 0) { |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 513 | printf ("Attempt to write outside the flash area\n"); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 514 | *length = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 515 | return -EINVAL; |
| 516 | } |
| 517 | |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 518 | if (!need_skip && !(flags & WITH_DROP_FFS)) { |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 519 | rval = nand_write (nand, offset, length, buffer); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 520 | if (rval == 0) |
| 521 | return 0; |
Scott Wood | 2077e34 | 2008-11-25 10:47:02 -0600 | [diff] [blame] | 522 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 523 | *length = 0; |
| 524 | printf ("NAND write to offset %llx failed %d\n", |
| 525 | offset, rval); |
Scott Wood | 2077e34 | 2008-11-25 10:47:02 -0600 | [diff] [blame] | 526 | return rval; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | while (left_to_write > 0) { |
| 530 | size_t block_offset = offset & (nand->erasesize - 1); |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 531 | size_t write_size, truncated_write_size; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 532 | |
Giulio Benetti | 1fc1d9a | 2009-07-31 17:30:34 -0500 | [diff] [blame] | 533 | WATCHDOG_RESET (); |
| 534 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 535 | if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) { |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 536 | printf ("Skip bad block 0x%08llx\n", |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 537 | offset & ~(nand->erasesize - 1)); |
| 538 | offset += nand->erasesize - block_offset; |
| 539 | continue; |
| 540 | } |
| 541 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 542 | if (left_to_write < (blocksize - block_offset)) |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 543 | write_size = left_to_write; |
| 544 | else |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 545 | write_size = blocksize - block_offset; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 546 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 547 | #ifdef CONFIG_CMD_NAND_YAFFS |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 548 | if (flags & WITH_YAFFS_OOB) { |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 549 | int page, pages; |
| 550 | size_t pagesize = nand->writesize; |
| 551 | size_t pagesize_oob = pagesize + nand->oobsize; |
| 552 | struct mtd_oob_ops ops; |
| 553 | |
| 554 | ops.len = pagesize; |
| 555 | ops.ooblen = nand->oobsize; |
| 556 | ops.mode = MTD_OOB_AUTO; |
| 557 | ops.ooboffs = 0; |
| 558 | |
| 559 | pages = write_size / pagesize_oob; |
| 560 | for (page = 0; page < pages; page++) { |
Scott Wood | 6f2ffc3 | 2011-02-02 18:15:57 -0600 | [diff] [blame] | 561 | WATCHDOG_RESET(); |
| 562 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 563 | ops.datbuf = p_buffer; |
| 564 | ops.oobbuf = ops.datbuf + pagesize; |
| 565 | |
| 566 | rval = nand->write_oob(nand, offset, &ops); |
| 567 | if (!rval) |
| 568 | break; |
| 569 | |
| 570 | offset += pagesize; |
| 571 | p_buffer += pagesize_oob; |
| 572 | } |
| 573 | } |
| 574 | else |
| 575 | #endif |
| 576 | { |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 577 | truncated_write_size = write_size; |
| 578 | #ifdef CONFIG_CMD_NAND_TRIMFFS |
| 579 | if (flags & WITH_DROP_FFS) |
| 580 | truncated_write_size = drop_ffs(nand, p_buffer, |
| 581 | &write_size); |
| 582 | #endif |
| 583 | |
| 584 | rval = nand_write(nand, offset, &truncated_write_size, |
| 585 | p_buffer); |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 586 | offset += write_size; |
| 587 | p_buffer += write_size; |
| 588 | } |
| 589 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 590 | if (rval != 0) { |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 591 | printf ("NAND write to offset %llx failed %d\n", |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 592 | offset, rval); |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 593 | *length -= left_to_write; |
| 594 | return rval; |
| 595 | } |
| 596 | |
| 597 | left_to_write -= write_size; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | return 0; |
| 601 | } |
| 602 | |
| 603 | /** |
| 604 | * nand_read_skip_bad: |
| 605 | * |
| 606 | * Read image from NAND flash. |
| 607 | * Blocks that are marked bad are skipped and the next block is readen |
| 608 | * instead as long as the image is short enough to fit even after skipping the |
| 609 | * bad blocks. |
| 610 | * |
| 611 | * @param nand NAND device |
| 612 | * @param offset offset in flash |
| 613 | * @param length buffer length, on return holds remaining bytes to read |
| 614 | * @param buffer buffer to write to |
| 615 | * @return 0 in case of success |
| 616 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 617 | int nand_read_skip_bad(nand_info_t *nand, loff_t offset, size_t *length, |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 618 | u_char *buffer) |
| 619 | { |
| 620 | int rval; |
| 621 | size_t left_to_read = *length; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 622 | u_char *p_buffer = buffer; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 623 | int need_skip; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 624 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 625 | if ((offset & (nand->writesize - 1)) != 0) { |
| 626 | printf ("Attempt to read non page aligned data\n"); |
| 627 | *length = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 628 | return -EINVAL; |
| 629 | } |
| 630 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 631 | need_skip = check_skip_len(nand, offset, *length); |
| 632 | if (need_skip < 0) { |
| 633 | printf ("Attempt to read outside the flash area\n"); |
| 634 | *length = 0; |
| 635 | return -EINVAL; |
| 636 | } |
| 637 | |
| 638 | if (!need_skip) { |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 639 | rval = nand_read (nand, offset, length, buffer); |
Valeriy Glushkov | 3ebf70d | 2009-07-14 13:51:10 +0300 | [diff] [blame] | 640 | if (!rval || rval == -EUCLEAN) |
| 641 | return 0; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 642 | |
| 643 | *length = 0; |
Valeriy Glushkov | 3ebf70d | 2009-07-14 13:51:10 +0300 | [diff] [blame] | 644 | printf ("NAND read from offset %llx failed %d\n", |
| 645 | offset, rval); |
Scott Wood | 2077e34 | 2008-11-25 10:47:02 -0600 | [diff] [blame] | 646 | return rval; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | while (left_to_read > 0) { |
| 650 | size_t block_offset = offset & (nand->erasesize - 1); |
| 651 | size_t read_length; |
| 652 | |
Giulio Benetti | 1fc1d9a | 2009-07-31 17:30:34 -0500 | [diff] [blame] | 653 | WATCHDOG_RESET (); |
| 654 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 655 | if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) { |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 656 | printf ("Skipping bad block 0x%08llx\n", |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 657 | offset & ~(nand->erasesize - 1)); |
| 658 | offset += nand->erasesize - block_offset; |
| 659 | continue; |
| 660 | } |
| 661 | |
| 662 | if (left_to_read < (nand->erasesize - block_offset)) |
| 663 | read_length = left_to_read; |
| 664 | else |
| 665 | read_length = nand->erasesize - block_offset; |
| 666 | |
| 667 | rval = nand_read (nand, offset, &read_length, p_buffer); |
Valeriy Glushkov | 3ebf70d | 2009-07-14 13:51:10 +0300 | [diff] [blame] | 668 | if (rval && rval != -EUCLEAN) { |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 669 | printf ("NAND read from offset %llx failed %d\n", |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 670 | offset, rval); |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 671 | *length -= left_to_read; |
| 672 | return rval; |
| 673 | } |
| 674 | |
| 675 | left_to_read -= read_length; |
| 676 | offset += read_length; |
| 677 | p_buffer += read_length; |
| 678 | } |
| 679 | |
| 680 | return 0; |
| 681 | } |