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 | * |
Tom Rini | 9d33fb4 | 2013-10-31 09:24:00 -0400 | [diff] [blame] | 17 | * Copyright 2010 Freescale Semiconductor |
| 18 | * |
| 19 | * SPDX-License-Identifier: GPL-2.0 |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include <common.h> |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 23 | #include <command.h> |
| 24 | #include <watchdog.h> |
| 25 | #include <malloc.h> |
Dirk Behme | 3a6d56c | 2007-08-02 17:42:08 +0200 | [diff] [blame] | 26 | #include <div64.h> |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 27 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 28 | #include <asm/errno.h> |
| 29 | #include <linux/mtd/mtd.h> |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 30 | #include <nand.h> |
| 31 | #include <jffs2/jffs2.h> |
| 32 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 33 | typedef struct erase_info erase_info_t; |
| 34 | typedef struct mtd_info mtd_info_t; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 35 | |
| 36 | /* support only for native endian JFFS2 */ |
| 37 | #define cpu_to_je16(x) (x) |
| 38 | #define cpu_to_je32(x) (x) |
| 39 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 40 | /** |
| 41 | * nand_erase_opts: - erase NAND flash with support for various options |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 42 | * (jffs2 formatting) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 43 | * |
| 44 | * @param meminfo NAND device to erase |
| 45 | * @param opts options, @see struct nand_erase_options |
| 46 | * @return 0 in case of success |
| 47 | * |
| 48 | * This code is ported from flash_eraseall.c from Linux mtd utils by |
| 49 | * Arcom Control System Ltd. |
| 50 | */ |
| 51 | int nand_erase_opts(nand_info_t *meminfo, const nand_erase_options_t *opts) |
| 52 | { |
| 53 | struct jffs2_unknown_node cleanmarker; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 54 | erase_info_t erase; |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 55 | unsigned long erase_length, erased_length; /* in blocks */ |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 56 | int result; |
| 57 | int percent_complete = -1; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 58 | const char *mtd_device = meminfo->name; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 59 | struct mtd_oob_ops oob_opts; |
| 60 | struct nand_chip *chip = meminfo->priv; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 61 | |
Benoît Thébaudeau | 8156f732 | 2012-11-05 10:16:15 +0000 | [diff] [blame] | 62 | if ((opts->offset & (meminfo->erasesize - 1)) != 0) { |
| 63 | printf("Attempt to erase non block-aligned data\n"); |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 64 | return -1; |
| 65 | } |
| 66 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 67 | memset(&erase, 0, sizeof(erase)); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 68 | memset(&oob_opts, 0, sizeof(oob_opts)); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 69 | |
| 70 | erase.mtd = meminfo; |
| 71 | erase.len = meminfo->erasesize; |
Stefan Roese | 856f054 | 2006-10-28 15:55:52 +0200 | [diff] [blame] | 72 | erase.addr = opts->offset; |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 73 | erase_length = lldiv(opts->length + meminfo->erasesize - 1, |
| 74 | meminfo->erasesize); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 75 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 76 | cleanmarker.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK); |
| 77 | cleanmarker.nodetype = cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 78 | cleanmarker.totlen = cpu_to_je32(8); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 79 | |
| 80 | /* scrub option allows to erase badblock. To prevent internal |
| 81 | * check from erase() method, set block check method to dummy |
| 82 | * and disable bad block table while erasing. |
| 83 | */ |
| 84 | if (opts->scrub) { |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 85 | erase.scrub = opts->scrub; |
| 86 | /* |
| 87 | * We don't need the bad block table anymore... |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 88 | * after scrub, there are no bad blocks left! |
| 89 | */ |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 90 | if (chip->bbt) { |
| 91 | kfree(chip->bbt); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 92 | } |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 93 | chip->bbt = NULL; |
Masahiro Yamada | ab37b76 | 2014-12-26 22:20:58 +0900 | [diff] [blame] | 94 | chip->options &= ~NAND_BBT_SCANNED; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 95 | } |
| 96 | |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 97 | for (erased_length = 0; |
| 98 | erased_length < erase_length; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 99 | erase.addr += meminfo->erasesize) { |
William Juul | 4cbb651 | 2007-11-08 10:39:53 +0100 | [diff] [blame] | 100 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 101 | WATCHDOG_RESET(); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 102 | |
Heiko Schocher | a67cc37 | 2013-06-24 18:50:40 +0200 | [diff] [blame] | 103 | if (opts->lim && (erase.addr >= (opts->offset + opts->lim))) { |
| 104 | puts("Size of erase exceeds limit\n"); |
| 105 | return -EFBIG; |
| 106 | } |
Masahiro Yamada | 47b6dad | 2013-07-12 10:53:37 +0900 | [diff] [blame] | 107 | if (!opts->scrub) { |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 108 | int ret = mtd_block_isbad(meminfo, erase.addr); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 109 | if (ret > 0) { |
| 110 | if (!opts->quiet) |
| 111 | printf("\rSkipping bad block at " |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 112 | "0x%08llx " |
Wolfgang Denk | 87621bc | 2006-10-12 11:43:47 +0200 | [diff] [blame] | 113 | " \n", |
| 114 | erase.addr); |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 115 | |
| 116 | if (!opts->spread) |
| 117 | erased_length++; |
| 118 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 119 | continue; |
| 120 | |
| 121 | } else if (ret < 0) { |
| 122 | printf("\n%s: MTD get bad block failed: %d\n", |
| 123 | mtd_device, |
| 124 | ret); |
| 125 | return -1; |
| 126 | } |
| 127 | } |
| 128 | |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 129 | erased_length++; |
| 130 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 131 | result = mtd_erase(meminfo, &erase); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 132 | if (result != 0) { |
| 133 | printf("\n%s: MTD Erase failure: %d\n", |
| 134 | mtd_device, result); |
| 135 | continue; |
| 136 | } |
| 137 | |
| 138 | /* format for JFFS2 ? */ |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 139 | if (opts->jffs2 && chip->ecc.layout->oobavail >= 8) { |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 140 | struct mtd_oob_ops ops; |
| 141 | ops.ooblen = 8; |
| 142 | ops.datbuf = NULL; |
| 143 | ops.oobbuf = (uint8_t *)&cleanmarker; |
| 144 | ops.ooboffs = 0; |
| 145 | ops.mode = MTD_OPS_AUTO_OOB; |
William Juul | 4cbb651 | 2007-11-08 10:39:53 +0100 | [diff] [blame] | 146 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 147 | result = mtd_write_oob(meminfo, |
Wolfgang Denk | 93e1459 | 2013-10-04 17:43:24 +0200 | [diff] [blame] | 148 | erase.addr, |
| 149 | &ops); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 150 | if (result != 0) { |
| 151 | printf("\n%s: MTD writeoob failure: %d\n", |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 152 | mtd_device, result); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 153 | continue; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 154 | } |
| 155 | } |
| 156 | |
| 157 | if (!opts->quiet) { |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 158 | unsigned long long n = erased_length * 100ULL; |
Matthias Fuchs | 5bd7fe9 | 2007-09-11 17:04:00 +0200 | [diff] [blame] | 159 | int percent; |
| 160 | |
| 161 | do_div(n, erase_length); |
| 162 | percent = (int)n; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 163 | |
| 164 | /* output progress message only at whole percent |
| 165 | * steps to reduce the number of messages printed |
| 166 | * on (slow) serial consoles |
| 167 | */ |
| 168 | if (percent != percent_complete) { |
| 169 | percent_complete = percent; |
| 170 | |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 171 | printf("\rErasing at 0x%llx -- %3d%% complete.", |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 172 | erase.addr, percent); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 173 | |
| 174 | if (opts->jffs2 && result == 0) |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 175 | printf(" Cleanmarker written at 0x%llx.", |
Scott Wood | bd78bc6 | 2008-10-29 14:20:26 -0500 | [diff] [blame] | 176 | erase.addr); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 177 | } |
| 178 | } |
| 179 | } |
| 180 | if (!opts->quiet) |
| 181 | printf("\n"); |
| 182 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 183 | return 0; |
| 184 | } |
| 185 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 186 | #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK |
| 187 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 188 | #define NAND_CMD_LOCK_TIGHT 0x2c |
| 189 | #define NAND_CMD_LOCK_STATUS 0x7a |
| 190 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 191 | /****************************************************************************** |
| 192 | * Support for locking / unlocking operations of some NAND devices |
| 193 | *****************************************************************************/ |
| 194 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 195 | /** |
| 196 | * nand_lock: Set all pages of NAND flash chip to the LOCK or LOCK-TIGHT |
| 197 | * state |
| 198 | * |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 199 | * @param mtd nand mtd instance |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 200 | * @param tight bring device in lock tight mode |
| 201 | * |
| 202 | * @return 0 on success, -1 in case of error |
| 203 | * |
| 204 | * The lock / lock-tight command only applies to the whole chip. To get some |
| 205 | * parts of the chip lock and others unlocked use the following sequence: |
| 206 | * |
| 207 | * - Lock all pages of the chip using nand_lock(mtd, 0) (or the lockpre pin) |
| 208 | * - Call nand_unlock() once for each consecutive area to be unlocked |
| 209 | * - If desired: Bring the chip to the lock-tight state using nand_lock(mtd, 1) |
| 210 | * |
| 211 | * If the device is in lock-tight state software can't change the |
| 212 | * current active lock/unlock state of all pages. nand_lock() / nand_unlock() |
| 213 | * calls will fail. It is only posible to leave lock-tight state by |
| 214 | * an hardware signal (low pulse on _WP pin) or by power down. |
| 215 | */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 216 | int nand_lock(struct mtd_info *mtd, int tight) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 217 | { |
| 218 | int ret = 0; |
| 219 | int status; |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 220 | struct nand_chip *chip = mtd->priv; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 221 | |
| 222 | /* select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 223 | chip->select_chip(mtd, 0); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 224 | |
Joe Hershberger | fcecb4a | 2013-02-08 09:27:19 +0000 | [diff] [blame] | 225 | /* check the Lock Tight Status */ |
| 226 | chip->cmdfunc(mtd, NAND_CMD_LOCK_STATUS, -1, 0); |
| 227 | if (chip->read_byte(mtd) & NAND_LOCK_STATUS_TIGHT) { |
| 228 | printf("nand_lock: Device is locked tight!\n"); |
| 229 | ret = -1; |
| 230 | goto out; |
| 231 | } |
| 232 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 233 | chip->cmdfunc(mtd, |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 234 | (tight ? NAND_CMD_LOCK_TIGHT : NAND_CMD_LOCK), |
| 235 | -1, -1); |
| 236 | |
| 237 | /* call wait ready function */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 238 | status = chip->waitfunc(mtd, chip); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 239 | |
| 240 | /* see if device thinks it succeeded */ |
| 241 | if (status & 0x01) { |
| 242 | ret = -1; |
| 243 | } |
| 244 | |
Joe Hershberger | fcecb4a | 2013-02-08 09:27:19 +0000 | [diff] [blame] | 245 | out: |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 246 | /* de-select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 247 | chip->select_chip(mtd, -1); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 248 | return ret; |
| 249 | } |
| 250 | |
| 251 | /** |
| 252 | * nand_get_lock_status: - query current lock state from one page of NAND |
| 253 | * flash |
| 254 | * |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 255 | * @param mtd nand mtd instance |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 256 | * @param offset page address to query (must be page-aligned!) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 257 | * |
| 258 | * @return -1 in case of error |
| 259 | * >0 lock status: |
| 260 | * bitfield with the following combinations: |
| 261 | * NAND_LOCK_STATUS_TIGHT: page in tight state |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 262 | * NAND_LOCK_STATUS_UNLOCK: page unlocked |
| 263 | * |
| 264 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 265 | int nand_get_lock_status(struct mtd_info *mtd, loff_t offset) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 266 | { |
| 267 | int ret = 0; |
| 268 | int chipnr; |
| 269 | int page; |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 270 | struct nand_chip *chip = mtd->priv; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 271 | |
| 272 | /* select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 273 | chipnr = (int)(offset >> chip->chip_shift); |
| 274 | chip->select_chip(mtd, chipnr); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 275 | |
| 276 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 277 | if ((offset & (mtd->writesize - 1)) != 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 278 | printf("nand_get_lock_status: " |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 279 | "Start address must be beginning of " |
| 280 | "nand page!\n"); |
| 281 | ret = -1; |
| 282 | goto out; |
| 283 | } |
| 284 | |
| 285 | /* check the Lock Status */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 286 | page = (int)(offset >> chip->page_shift); |
| 287 | chip->cmdfunc(mtd, NAND_CMD_LOCK_STATUS, -1, page & chip->pagemask); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 288 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 289 | ret = chip->read_byte(mtd) & (NAND_LOCK_STATUS_TIGHT |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 290 | | NAND_LOCK_STATUS_UNLOCK); |
| 291 | |
| 292 | out: |
| 293 | /* de-select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 294 | chip->select_chip(mtd, -1); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 295 | return ret; |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * nand_unlock: - Unlock area of NAND pages |
| 300 | * only one consecutive area can be unlocked at one time! |
| 301 | * |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 302 | * @param mtd nand mtd instance |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 303 | * @param start start byte address |
| 304 | * @param length number of bytes to unlock (must be a multiple of |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 305 | * page size nand->writesize) |
Joe Hershberger | eee623a | 2012-08-22 16:49:42 -0500 | [diff] [blame] | 306 | * @param allexcept if set, unlock everything not selected |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 307 | * |
| 308 | * @return 0 on success, -1 in case of error |
| 309 | */ |
Joe Hershberger | e331ab2 | 2012-08-22 16:49:43 -0500 | [diff] [blame] | 310 | int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length, |
| 311 | int allexcept) |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 312 | { |
| 313 | int ret = 0; |
| 314 | int chipnr; |
| 315 | int status; |
| 316 | int page; |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 317 | struct nand_chip *chip = mtd->priv; |
Joe Hershberger | eee623a | 2012-08-22 16:49:42 -0500 | [diff] [blame] | 318 | |
Tom Rini | 3ef1ead | 2013-12-16 09:59:34 -0500 | [diff] [blame] | 319 | debug("nand_unlock%s: start: %08llx, length: %zd!\n", |
Joe Hershberger | eee623a | 2012-08-22 16:49:42 -0500 | [diff] [blame] | 320 | allexcept ? " (allexcept)" : "", start, length); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 321 | |
| 322 | /* select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 323 | chipnr = (int)(start >> chip->chip_shift); |
| 324 | chip->select_chip(mtd, chipnr); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 325 | |
| 326 | /* check the WP bit */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 327 | chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1); |
| 328 | if (!(chip->read_byte(mtd) & NAND_STATUS_WP)) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 329 | printf("nand_unlock: Device is write protected!\n"); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 330 | ret = -1; |
| 331 | goto out; |
| 332 | } |
| 333 | |
Joe Hershberger | fcecb4a | 2013-02-08 09:27:19 +0000 | [diff] [blame] | 334 | /* check the Lock Tight Status */ |
| 335 | page = (int)(start >> chip->page_shift); |
| 336 | chip->cmdfunc(mtd, NAND_CMD_LOCK_STATUS, -1, page & chip->pagemask); |
| 337 | if (chip->read_byte(mtd) & NAND_LOCK_STATUS_TIGHT) { |
| 338 | printf("nand_unlock: Device is locked tight!\n"); |
| 339 | ret = -1; |
| 340 | goto out; |
| 341 | } |
| 342 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 343 | if ((start & (mtd->erasesize - 1)) != 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 344 | printf("nand_unlock: Start address must be beginning of " |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 345 | "nand block!\n"); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 346 | ret = -1; |
| 347 | goto out; |
| 348 | } |
| 349 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 350 | if (length == 0 || (length & (mtd->erasesize - 1)) != 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 351 | printf("nand_unlock: Length must be a multiple of nand block " |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 352 | "size %08x!\n", mtd->erasesize); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 353 | ret = -1; |
| 354 | goto out; |
| 355 | } |
| 356 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 357 | /* |
| 358 | * Set length so that the last address is set to the |
| 359 | * starting address of the last block |
| 360 | */ |
| 361 | length -= mtd->erasesize; |
| 362 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 363 | /* submit address of first page to unlock */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 364 | chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 365 | |
| 366 | /* submit ADDRESS of LAST page to unlock */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 367 | page += (int)(length >> chip->page_shift); |
Joe Hershberger | eee623a | 2012-08-22 16:49:42 -0500 | [diff] [blame] | 368 | |
| 369 | /* |
| 370 | * Page addresses for unlocking are supposed to be block-aligned. |
| 371 | * At least some NAND chips use the low bit to indicate that the |
| 372 | * page range should be inverted. |
| 373 | */ |
| 374 | if (allexcept) |
| 375 | page |= 1; |
| 376 | |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 377 | chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1, page & chip->pagemask); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 378 | |
| 379 | /* call wait ready function */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 380 | status = chip->waitfunc(mtd, chip); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 381 | /* see if device thinks it succeeded */ |
| 382 | if (status & 0x01) { |
| 383 | /* there was an error */ |
| 384 | ret = -1; |
| 385 | goto out; |
| 386 | } |
| 387 | |
| 388 | out: |
| 389 | /* de-select the NAND device */ |
Nishanth Menon | 50657c2 | 2008-12-13 09:43:06 -0600 | [diff] [blame] | 390 | chip->select_chip(mtd, -1); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 391 | return ret; |
| 392 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 393 | #endif |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 394 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 395 | /** |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 396 | * check_skip_len |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 397 | * |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 398 | * Check if there are any bad blocks, and whether length including bad |
| 399 | * blocks fits into device |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 400 | * |
| 401 | * @param nand NAND device |
| 402 | * @param offset offset in flash |
| 403 | * @param length image length |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 404 | * @param used length of flash needed for the requested length |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 405 | * @return 0 if the image fits and there are no bad blocks |
| 406 | * 1 if the image fits, but there are bad blocks |
| 407 | * -1 if the image does not fit |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 408 | */ |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 409 | static int check_skip_len(nand_info_t *nand, loff_t offset, size_t length, |
| 410 | size_t *used) |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 411 | { |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 412 | size_t len_excl_bad = 0; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 413 | int ret = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 414 | |
| 415 | while (len_excl_bad < length) { |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 416 | size_t block_len, block_off; |
| 417 | loff_t block_start; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 418 | |
Daniel Hobi | 0ec81db | 2009-12-01 14:05:55 +0100 | [diff] [blame] | 419 | if (offset >= nand->size) |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 420 | return -1; |
| 421 | |
| 422 | block_start = offset & ~(loff_t)(nand->erasesize - 1); |
| 423 | block_off = offset & (nand->erasesize - 1); |
| 424 | block_len = nand->erasesize - block_off; |
| 425 | |
| 426 | if (!nand_block_isbad(nand, block_start)) |
| 427 | len_excl_bad += block_len; |
| 428 | else |
| 429 | ret = 1; |
| 430 | |
| 431 | offset += block_len; |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 432 | *used += block_len; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 433 | } |
| 434 | |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 435 | /* If the length is not a multiple of block_len, adjust. */ |
| 436 | if (len_excl_bad > length) |
| 437 | *used -= (len_excl_bad - length); |
| 438 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 439 | return ret; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 440 | } |
| 441 | |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 442 | #ifdef CONFIG_CMD_NAND_TRIMFFS |
| 443 | static size_t drop_ffs(const nand_info_t *nand, const u_char *buf, |
| 444 | const size_t *len) |
| 445 | { |
htbegin | 453db36 | 2013-03-01 23:00:34 +0000 | [diff] [blame] | 446 | size_t l = *len; |
| 447 | ssize_t i; |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 448 | |
| 449 | for (i = l - 1; i >= 0; i--) |
| 450 | if (buf[i] != 0xFF) |
| 451 | break; |
| 452 | |
| 453 | /* The resulting length must be aligned to the minimum flash I/O size */ |
| 454 | l = i + 1; |
| 455 | l = (l + nand->writesize - 1) / nand->writesize; |
| 456 | l *= nand->writesize; |
| 457 | |
| 458 | /* |
| 459 | * since the input length may be unaligned, prevent access past the end |
| 460 | * of the buffer |
| 461 | */ |
| 462 | return min(l, *len); |
| 463 | } |
| 464 | #endif |
| 465 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 466 | /** |
| 467 | * nand_write_skip_bad: |
| 468 | * |
| 469 | * Write image to NAND flash. |
| 470 | * Blocks that are marked bad are skipped and the is written to the next |
| 471 | * block instead as long as the image is short enough to fit even after |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 472 | * skipping the bad blocks. Due to bad blocks we may not be able to |
| 473 | * perform the requested write. In the case where the write would |
| 474 | * extend beyond the end of the NAND device, both length and actual (if |
| 475 | * not NULL) are set to 0. In the case where the write would extend |
| 476 | * beyond the limit we are passed, length is set to 0 and actual is set |
| 477 | * to the required length. |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 478 | * |
| 479 | * @param nand NAND device |
| 480 | * @param offset offset in flash |
| 481 | * @param length buffer length |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 482 | * @param actual set to size required to write length worth of |
| 483 | * buffer or 0 on error, if not NULL |
| 484 | * @param lim maximum size that actual may be in order to not |
| 485 | * exceed the buffer |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 486 | * @param buffer buffer to read from |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 487 | * @param flags flags modifying the behaviour of the write to NAND |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 488 | * @return 0 in case of success |
| 489 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 490 | int nand_write_skip_bad(nand_info_t *nand, loff_t offset, size_t *length, |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 491 | size_t *actual, loff_t lim, u_char *buffer, int flags) |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 492 | { |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 493 | int rval = 0, blocksize; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 494 | size_t left_to_write = *length; |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 495 | size_t used_for_write = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 496 | u_char *p_buffer = buffer; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 497 | int need_skip; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 498 | |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 499 | if (actual) |
| 500 | *actual = 0; |
| 501 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 502 | #ifdef CONFIG_CMD_NAND_YAFFS |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 503 | if (flags & WITH_YAFFS_OOB) { |
Ben Gardiner | c135456 | 2011-06-14 16:35:05 -0400 | [diff] [blame] | 504 | if (flags & ~WITH_YAFFS_OOB) |
| 505 | return -EINVAL; |
| 506 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 507 | int pages; |
| 508 | pages = nand->erasesize / nand->writesize; |
| 509 | blocksize = (pages * nand->oobsize) + nand->erasesize; |
| 510 | if (*length % (nand->writesize + nand->oobsize)) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 511 | printf("Attempt to write incomplete page" |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 512 | " in yaffs mode\n"); |
| 513 | return -EINVAL; |
| 514 | } |
| 515 | } else |
| 516 | #endif |
| 517 | { |
| 518 | blocksize = nand->erasesize; |
| 519 | } |
| 520 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 521 | /* |
| 522 | * nand_write() handles unaligned, partial page writes. |
| 523 | * |
| 524 | * We allow length to be unaligned, for convenience in |
| 525 | * using the $filesize variable. |
| 526 | * |
| 527 | * However, starting at an unaligned offset makes the |
| 528 | * semantics of bad block skipping ambiguous (really, |
| 529 | * you should only start a block skipping access at a |
| 530 | * partition boundary). So don't try to handle that. |
| 531 | */ |
| 532 | if ((offset & (nand->writesize - 1)) != 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 533 | printf("Attempt to write non page-aligned data\n"); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 534 | *length = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 535 | return -EINVAL; |
| 536 | } |
| 537 | |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 538 | need_skip = check_skip_len(nand, offset, *length, &used_for_write); |
| 539 | |
| 540 | if (actual) |
| 541 | *actual = used_for_write; |
| 542 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 543 | if (need_skip < 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 544 | printf("Attempt to write outside the flash area\n"); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 545 | *length = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 546 | return -EINVAL; |
| 547 | } |
| 548 | |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 549 | if (used_for_write > lim) { |
| 550 | puts("Size of write exceeds partition or device limit\n"); |
| 551 | *length = 0; |
| 552 | return -EFBIG; |
| 553 | } |
| 554 | |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 555 | if (!need_skip && !(flags & WITH_DROP_FFS)) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 556 | rval = nand_write(nand, offset, length, buffer); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 557 | if (rval == 0) |
| 558 | return 0; |
Scott Wood | 2077e34 | 2008-11-25 10:47:02 -0600 | [diff] [blame] | 559 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 560 | *length = 0; |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 561 | printf("NAND write to offset %llx failed %d\n", |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 562 | offset, rval); |
Scott Wood | 2077e34 | 2008-11-25 10:47:02 -0600 | [diff] [blame] | 563 | return rval; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | while (left_to_write > 0) { |
| 567 | size_t block_offset = offset & (nand->erasesize - 1); |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 568 | size_t write_size, truncated_write_size; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 569 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 570 | WATCHDOG_RESET(); |
Giulio Benetti | 1fc1d9a | 2009-07-31 17:30:34 -0500 | [diff] [blame] | 571 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 572 | if (nand_block_isbad(nand, offset & ~(nand->erasesize - 1))) { |
| 573 | printf("Skip bad block 0x%08llx\n", |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 574 | offset & ~(nand->erasesize - 1)); |
| 575 | offset += nand->erasesize - block_offset; |
| 576 | continue; |
| 577 | } |
| 578 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 579 | if (left_to_write < (blocksize - block_offset)) |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 580 | write_size = left_to_write; |
| 581 | else |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 582 | write_size = blocksize - block_offset; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 583 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 584 | #ifdef CONFIG_CMD_NAND_YAFFS |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 585 | if (flags & WITH_YAFFS_OOB) { |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 586 | int page, pages; |
| 587 | size_t pagesize = nand->writesize; |
| 588 | size_t pagesize_oob = pagesize + nand->oobsize; |
| 589 | struct mtd_oob_ops ops; |
| 590 | |
| 591 | ops.len = pagesize; |
| 592 | ops.ooblen = nand->oobsize; |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 593 | ops.mode = MTD_OPS_AUTO_OOB; |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 594 | ops.ooboffs = 0; |
| 595 | |
| 596 | pages = write_size / pagesize_oob; |
| 597 | for (page = 0; page < pages; page++) { |
Scott Wood | 6f2ffc3 | 2011-02-02 18:15:57 -0600 | [diff] [blame] | 598 | WATCHDOG_RESET(); |
| 599 | |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 600 | ops.datbuf = p_buffer; |
| 601 | ops.oobbuf = ops.datbuf + pagesize; |
| 602 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 603 | rval = mtd_write_oob(nand, offset, &ops); |
Liu, Wentao | 6568302 | 2012-01-17 19:55:02 +0000 | [diff] [blame] | 604 | if (rval != 0) |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 605 | break; |
| 606 | |
| 607 | offset += pagesize; |
| 608 | p_buffer += pagesize_oob; |
| 609 | } |
| 610 | } |
| 611 | else |
| 612 | #endif |
| 613 | { |
Ben Gardiner | 169d54d | 2011-06-14 16:35:06 -0400 | [diff] [blame] | 614 | truncated_write_size = write_size; |
| 615 | #ifdef CONFIG_CMD_NAND_TRIMFFS |
| 616 | if (flags & WITH_DROP_FFS) |
| 617 | truncated_write_size = drop_ffs(nand, p_buffer, |
| 618 | &write_size); |
| 619 | #endif |
| 620 | |
| 621 | rval = nand_write(nand, offset, &truncated_write_size, |
| 622 | p_buffer); |
Lei Wen | 47fc18f | 2011-01-06 11:11:58 +0800 | [diff] [blame] | 623 | offset += write_size; |
| 624 | p_buffer += write_size; |
| 625 | } |
| 626 | |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 627 | if (rval != 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 628 | printf("NAND write to offset %llx failed %d\n", |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 629 | offset, rval); |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 630 | *length -= left_to_write; |
| 631 | return rval; |
| 632 | } |
| 633 | |
| 634 | left_to_write -= write_size; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | return 0; |
| 638 | } |
| 639 | |
| 640 | /** |
| 641 | * nand_read_skip_bad: |
| 642 | * |
| 643 | * Read image from NAND flash. |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 644 | * Blocks that are marked bad are skipped and the next block is read |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 645 | * instead as long as the image is short enough to fit even after |
| 646 | * skipping the bad blocks. Due to bad blocks we may not be able to |
| 647 | * perform the requested read. In the case where the read would extend |
| 648 | * beyond the end of the NAND device, both length and actual (if not |
| 649 | * NULL) are set to 0. In the case where the read would extend beyond |
| 650 | * the limit we are passed, length is set to 0 and actual is set to the |
| 651 | * required length. |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 652 | * |
| 653 | * @param nand NAND device |
| 654 | * @param offset offset in flash |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 655 | * @param length buffer length, on return holds number of read bytes |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 656 | * @param actual set to size required to read length worth of buffer or 0 |
| 657 | * on error, if not NULL |
| 658 | * @param lim maximum size that actual may be in order to not exceed the |
| 659 | * buffer |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 660 | * @param buffer buffer to write to |
| 661 | * @return 0 in case of success |
| 662 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 378adfc | 2009-05-16 14:27:40 +0200 | [diff] [blame] | 663 | int nand_read_skip_bad(nand_info_t *nand, loff_t offset, size_t *length, |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 664 | size_t *actual, loff_t lim, u_char *buffer) |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 665 | { |
| 666 | int rval; |
| 667 | size_t left_to_read = *length; |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 668 | size_t used_for_read = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 669 | u_char *p_buffer = buffer; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 670 | int need_skip; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 671 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 672 | if ((offset & (nand->writesize - 1)) != 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 673 | printf("Attempt to read non page-aligned data\n"); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 674 | *length = 0; |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 675 | if (actual) |
| 676 | *actual = 0; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 677 | return -EINVAL; |
| 678 | } |
| 679 | |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 680 | need_skip = check_skip_len(nand, offset, *length, &used_for_read); |
| 681 | |
| 682 | if (actual) |
| 683 | *actual = used_for_read; |
| 684 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 685 | if (need_skip < 0) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 686 | printf("Attempt to read outside the flash area\n"); |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 687 | *length = 0; |
| 688 | return -EINVAL; |
| 689 | } |
| 690 | |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 691 | if (used_for_read > lim) { |
| 692 | puts("Size of read exceeds partition or device limit\n"); |
| 693 | *length = 0; |
| 694 | return -EFBIG; |
| 695 | } |
| 696 | |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 697 | if (!need_skip) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 698 | rval = nand_read(nand, offset, length, buffer); |
Valeriy Glushkov | 3ebf70d | 2009-07-14 13:51:10 +0300 | [diff] [blame] | 699 | if (!rval || rval == -EUCLEAN) |
| 700 | return 0; |
Scott Wood | f9a5254 | 2010-07-30 16:11:41 -0500 | [diff] [blame] | 701 | |
| 702 | *length = 0; |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 703 | printf("NAND read from offset %llx failed %d\n", |
Valeriy Glushkov | 3ebf70d | 2009-07-14 13:51:10 +0300 | [diff] [blame] | 704 | offset, rval); |
Scott Wood | 2077e34 | 2008-11-25 10:47:02 -0600 | [diff] [blame] | 705 | return rval; |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | while (left_to_read > 0) { |
| 709 | size_t block_offset = offset & (nand->erasesize - 1); |
| 710 | size_t read_length; |
| 711 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 712 | WATCHDOG_RESET(); |
Giulio Benetti | 1fc1d9a | 2009-07-31 17:30:34 -0500 | [diff] [blame] | 713 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 714 | if (nand_block_isbad(nand, offset & ~(nand->erasesize - 1))) { |
| 715 | printf("Skipping bad block 0x%08llx\n", |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 716 | offset & ~(nand->erasesize - 1)); |
| 717 | offset += nand->erasesize - block_offset; |
| 718 | continue; |
| 719 | } |
| 720 | |
| 721 | if (left_to_read < (nand->erasesize - block_offset)) |
| 722 | read_length = left_to_read; |
| 723 | else |
| 724 | read_length = nand->erasesize - block_offset; |
| 725 | |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 726 | rval = nand_read(nand, offset, &read_length, p_buffer); |
Valeriy Glushkov | 3ebf70d | 2009-07-14 13:51:10 +0300 | [diff] [blame] | 727 | if (rval && rval != -EUCLEAN) { |
Benoît Thébaudeau | bd74280 | 2012-11-05 10:15:46 +0000 | [diff] [blame] | 728 | printf("NAND read from offset %llx failed %d\n", |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 729 | offset, rval); |
Scott Wood | dfbf617 | 2008-06-12 13:20:16 -0500 | [diff] [blame] | 730 | *length -= left_to_read; |
| 731 | return rval; |
| 732 | } |
| 733 | |
| 734 | left_to_read -= read_length; |
| 735 | offset += read_length; |
| 736 | p_buffer += read_length; |
| 737 | } |
| 738 | |
| 739 | return 0; |
| 740 | } |
Benoît Thébaudeau | 3287f6d | 2012-11-16 20:20:54 +0100 | [diff] [blame] | 741 | |
| 742 | #ifdef CONFIG_CMD_NAND_TORTURE |
| 743 | |
| 744 | /** |
| 745 | * check_pattern: |
| 746 | * |
| 747 | * Check if buffer contains only a certain byte pattern. |
| 748 | * |
| 749 | * @param buf buffer to check |
| 750 | * @param patt the pattern to check |
| 751 | * @param size buffer size in bytes |
| 752 | * @return 1 if there are only patt bytes in buf |
| 753 | * 0 if something else was found |
| 754 | */ |
| 755 | static int check_pattern(const u_char *buf, u_char patt, int size) |
| 756 | { |
| 757 | int i; |
| 758 | |
| 759 | for (i = 0; i < size; i++) |
| 760 | if (buf[i] != patt) |
| 761 | return 0; |
| 762 | return 1; |
| 763 | } |
| 764 | |
| 765 | /** |
| 766 | * nand_torture: |
| 767 | * |
| 768 | * Torture a block of NAND flash. |
| 769 | * This is useful to determine if a block that caused a write error is still |
| 770 | * good or should be marked as bad. |
| 771 | * |
| 772 | * @param nand NAND device |
| 773 | * @param offset offset in flash |
| 774 | * @return 0 if the block is still good |
| 775 | */ |
| 776 | int nand_torture(nand_info_t *nand, loff_t offset) |
| 777 | { |
| 778 | u_char patterns[] = {0xa5, 0x5a, 0x00}; |
| 779 | struct erase_info instr = { |
| 780 | .mtd = nand, |
| 781 | .addr = offset, |
| 782 | .len = nand->erasesize, |
| 783 | }; |
| 784 | size_t retlen; |
| 785 | int err, ret = -1, i, patt_count; |
| 786 | u_char *buf; |
| 787 | |
| 788 | if ((offset & (nand->erasesize - 1)) != 0) { |
| 789 | puts("Attempt to torture a block at a non block-aligned offset\n"); |
| 790 | return -EINVAL; |
| 791 | } |
| 792 | |
| 793 | if (offset + nand->erasesize > nand->size) { |
| 794 | puts("Attempt to torture a block outside the flash area\n"); |
| 795 | return -EINVAL; |
| 796 | } |
| 797 | |
| 798 | patt_count = ARRAY_SIZE(patterns); |
| 799 | |
| 800 | buf = malloc(nand->erasesize); |
| 801 | if (buf == NULL) { |
| 802 | puts("Out of memory for erase block buffer\n"); |
| 803 | return -ENOMEM; |
| 804 | } |
| 805 | |
| 806 | for (i = 0; i < patt_count; i++) { |
| 807 | err = nand->erase(nand, &instr); |
| 808 | if (err) { |
| 809 | printf("%s: erase() failed for block at 0x%llx: %d\n", |
| 810 | nand->name, instr.addr, err); |
| 811 | goto out; |
| 812 | } |
| 813 | |
| 814 | /* Make sure the block contains only 0xff bytes */ |
| 815 | err = nand->read(nand, offset, nand->erasesize, &retlen, buf); |
| 816 | if ((err && err != -EUCLEAN) || retlen != nand->erasesize) { |
| 817 | printf("%s: read() failed for block at 0x%llx: %d\n", |
| 818 | nand->name, instr.addr, err); |
| 819 | goto out; |
| 820 | } |
| 821 | |
| 822 | err = check_pattern(buf, 0xff, nand->erasesize); |
| 823 | if (!err) { |
| 824 | printf("Erased block at 0x%llx, but a non-0xff byte was found\n", |
| 825 | offset); |
| 826 | ret = -EIO; |
| 827 | goto out; |
| 828 | } |
| 829 | |
| 830 | /* Write a pattern and check it */ |
| 831 | memset(buf, patterns[i], nand->erasesize); |
| 832 | err = nand->write(nand, offset, nand->erasesize, &retlen, buf); |
| 833 | if (err || retlen != nand->erasesize) { |
| 834 | printf("%s: write() failed for block at 0x%llx: %d\n", |
| 835 | nand->name, instr.addr, err); |
| 836 | goto out; |
| 837 | } |
| 838 | |
| 839 | err = nand->read(nand, offset, nand->erasesize, &retlen, buf); |
| 840 | if ((err && err != -EUCLEAN) || retlen != nand->erasesize) { |
| 841 | printf("%s: read() failed for block at 0x%llx: %d\n", |
| 842 | nand->name, instr.addr, err); |
| 843 | goto out; |
| 844 | } |
| 845 | |
| 846 | err = check_pattern(buf, patterns[i], nand->erasesize); |
| 847 | if (!err) { |
| 848 | printf("Pattern 0x%.2x checking failed for block at " |
| 849 | "0x%llx\n", patterns[i], offset); |
| 850 | ret = -EIO; |
| 851 | goto out; |
| 852 | } |
| 853 | } |
| 854 | |
| 855 | ret = 0; |
| 856 | |
| 857 | out: |
| 858 | free(buf); |
| 859 | return ret; |
| 860 | } |
| 861 | |
| 862 | #endif |