blob: 5ef7df74010bde3251416d2ca7b08c0fa1848efc [file] [log] [blame]
Stefan Roese2255b2d2006-10-10 12:36:02 +02001/*
Marcel Ziswiler7817cb22007-12-30 03:30:46 +01002 * drivers/mtd/nand/nand_util.c
Stefan Roese2255b2d2006-10-10 12:36:02 +02003 *
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 Gardiner169d54d2011-06-14 16:35:06 -040014 * Copyright (C) 2008 Nokia Corporation: drop_ffs() function by
15 * Artem Bityutskiy <dedekind1@gmail.com> from mtd-utils
16 *
Stefan Roese2255b2d2006-10-10 12:36:02 +020017 * 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 Woodf9a52542010-07-30 16:11:41 -050034 * 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 Roese2255b2d2006-10-10 12:36:02 +020040 */
41
42#include <common.h>
Stefan Roese2255b2d2006-10-10 12:36:02 +020043#include <command.h>
44#include <watchdog.h>
45#include <malloc.h>
Dirk Behme3a6d56c2007-08-02 17:42:08 +020046#include <div64.h>
Stefan Roese2255b2d2006-10-10 12:36:02 +020047
William Juulcfa460a2007-10-31 13:53:06 +010048#include <asm/errno.h>
49#include <linux/mtd/mtd.h>
Stefan Roese2255b2d2006-10-10 12:36:02 +020050#include <nand.h>
51#include <jffs2/jffs2.h>
52
53typedef struct erase_info erase_info_t;
54typedef 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 Roese2255b2d2006-10-10 12:36:02 +020060/**
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 */
71int nand_erase_opts(nand_info_t *meminfo, const nand_erase_options_t *opts)
72{
73 struct jffs2_unknown_node cleanmarker;
Stefan Roese2255b2d2006-10-10 12:36:02 +020074 erase_info_t erase;
Scott Wood30486322010-08-25 14:43:29 -050075 unsigned long erase_length, erased_length; /* in blocks */
Stefan Roese2255b2d2006-10-10 12:36:02 +020076 int bbtest = 1;
77 int result;
78 int percent_complete = -1;
Stefan Roese2255b2d2006-10-10 12:36:02 +020079 const char *mtd_device = meminfo->name;
William Juulcfa460a2007-10-31 13:53:06 +010080 struct mtd_oob_ops oob_opts;
81 struct nand_chip *chip = meminfo->priv;
Stefan Roese2255b2d2006-10-10 12:36:02 +020082
Scott Wood30486322010-08-25 14:43:29 -050083 if ((opts->offset & (meminfo->writesize - 1)) != 0) {
84 printf("Attempt to erase non page aligned data\n");
85 return -1;
86 }
87
Stefan Roese2255b2d2006-10-10 12:36:02 +020088 memset(&erase, 0, sizeof(erase));
William Juulcfa460a2007-10-31 13:53:06 +010089 memset(&oob_opts, 0, sizeof(oob_opts));
Stefan Roese2255b2d2006-10-10 12:36:02 +020090
91 erase.mtd = meminfo;
92 erase.len = meminfo->erasesize;
Stefan Roese856f0542006-10-28 15:55:52 +020093 erase.addr = opts->offset;
Scott Wood30486322010-08-25 14:43:29 -050094 erase_length = lldiv(opts->length + meminfo->erasesize - 1,
95 meminfo->erasesize);
Stefan Roese2255b2d2006-10-10 12:36:02 +020096
William Juulcfa460a2007-10-31 13:53:06 +010097 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 Roese2255b2d2006-10-10 12:36:02 +0200100
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 Vasut6d414192011-09-12 06:04:06 +0200106 erase.scrub = opts->scrub;
107 /*
108 * We don't need the bad block table anymore...
Stefan Roese2255b2d2006-10-10 12:36:02 +0200109 * after scrub, there are no bad blocks left!
110 */
Marek Vasut6d414192011-09-12 06:04:06 +0200111 if (chip->bbt) {
112 kfree(chip->bbt);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200113 }
Marek Vasut6d414192011-09-12 06:04:06 +0200114 chip->bbt = NULL;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200115 }
116
Scott Wood30486322010-08-25 14:43:29 -0500117 for (erased_length = 0;
118 erased_length < erase_length;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200119 erase.addr += meminfo->erasesize) {
William Juul4cbb6512007-11-08 10:39:53 +0100120
Stefan Roese2255b2d2006-10-10 12:36:02 +0200121 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 Roese8d2effe2009-05-11 16:03:55 +0200128 "0x%08llx "
Wolfgang Denk87621bc2006-10-12 11:43:47 +0200129 " \n",
130 erase.addr);
Scott Wood30486322010-08-25 14:43:29 -0500131
132 if (!opts->spread)
133 erased_length++;
134
Stefan Roese2255b2d2006-10-10 12:36:02 +0200135 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 Wood30486322010-08-25 14:43:29 -0500145 erased_length++;
146
Stefan Roese2255b2d2006-10-10 12:36:02 +0200147 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 Woodbd78bc62008-10-29 14:20:26 -0500155 if (opts->jffs2 && chip->ecc.layout->oobavail >= 8) {
156 chip->ops.ooblen = 8;
William Juulcfa460a2007-10-31 13:53:06 +0100157 chip->ops.datbuf = NULL;
Scott Woodbd78bc62008-10-29 14:20:26 -0500158 chip->ops.oobbuf = (uint8_t *)&cleanmarker;
159 chip->ops.ooboffs = 0;
160 chip->ops.mode = MTD_OOB_AUTO;
William Juul4cbb6512007-11-08 10:39:53 +0100161
William Juulcfa460a2007-10-31 13:53:06 +0100162 result = meminfo->write_oob(meminfo,
Scott Woodbd78bc62008-10-29 14:20:26 -0500163 erase.addr,
164 &chip->ops);
William Juulcfa460a2007-10-31 13:53:06 +0100165 if (result != 0) {
166 printf("\n%s: MTD writeoob failure: %d\n",
Scott Woodbd78bc62008-10-29 14:20:26 -0500167 mtd_device, result);
William Juulcfa460a2007-10-31 13:53:06 +0100168 continue;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200169 }
170 }
171
172 if (!opts->quiet) {
Scott Wood30486322010-08-25 14:43:29 -0500173 unsigned long long n = erased_length * 100ULL;
Matthias Fuchs5bd7fe92007-09-11 17:04:00 +0200174 int percent;
175
176 do_div(n, erase_length);
177 percent = (int)n;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200178
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 Roese8d2effe2009-05-11 16:03:55 +0200186 printf("\rErasing at 0x%llx -- %3d%% complete.",
Scott Woodbd78bc62008-10-29 14:20:26 -0500187 erase.addr, percent);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200188
189 if (opts->jffs2 && result == 0)
Stefan Roese8d2effe2009-05-11 16:03:55 +0200190 printf(" Cleanmarker written at 0x%llx.",
Scott Woodbd78bc62008-10-29 14:20:26 -0500191 erase.addr);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200192 }
193 }
194 }
195 if (!opts->quiet)
196 printf("\n");
197
Marek Vasut6d414192011-09-12 06:04:06 +0200198 if (opts->scrub)
199 chip->scan_bbt(meminfo);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200200
201 return 0;
202}
203
Nishanth Menon50657c22008-12-13 09:43:06 -0600204#ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
205
Stefan Roese2255b2d2006-10-10 12:36:02 +0200206/******************************************************************************
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 Menon50657c22008-12-13 09:43:06 -0600220 * @param mtd nand mtd instance
Stefan Roese2255b2d2006-10-10 12:36:02 +0200221 * @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 Menon50657c22008-12-13 09:43:06 -0600237int nand_lock(struct mtd_info *mtd, int tight)
Stefan Roese2255b2d2006-10-10 12:36:02 +0200238{
239 int ret = 0;
240 int status;
Nishanth Menon50657c22008-12-13 09:43:06 -0600241 struct nand_chip *chip = mtd->priv;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200242
243 /* select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600244 chip->select_chip(mtd, 0);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200245
Nishanth Menon50657c22008-12-13 09:43:06 -0600246 chip->cmdfunc(mtd,
Stefan Roese2255b2d2006-10-10 12:36:02 +0200247 (tight ? NAND_CMD_LOCK_TIGHT : NAND_CMD_LOCK),
248 -1, -1);
249
250 /* call wait ready function */
Nishanth Menon50657c22008-12-13 09:43:06 -0600251 status = chip->waitfunc(mtd, chip);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200252
253 /* see if device thinks it succeeded */
254 if (status & 0x01) {
255 ret = -1;
256 }
257
258 /* de-select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600259 chip->select_chip(mtd, -1);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200260 return ret;
261}
262
263/**
264 * nand_get_lock_status: - query current lock state from one page of NAND
265 * flash
266 *
Nishanth Menon50657c22008-12-13 09:43:06 -0600267 * @param mtd nand mtd instance
Stefan Roese2255b2d2006-10-10 12:36:02 +0200268 * @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-VILLARD378adfc2009-05-16 14:27:40 +0200278int nand_get_lock_status(struct mtd_info *mtd, loff_t offset)
Stefan Roese2255b2d2006-10-10 12:36:02 +0200279{
280 int ret = 0;
281 int chipnr;
282 int page;
Nishanth Menon50657c22008-12-13 09:43:06 -0600283 struct nand_chip *chip = mtd->priv;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200284
285 /* select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600286 chipnr = (int)(offset >> chip->chip_shift);
287 chip->select_chip(mtd, chipnr);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200288
289
Nishanth Menon50657c22008-12-13 09:43:06 -0600290 if ((offset & (mtd->writesize - 1)) != 0) {
Stefan Roese2255b2d2006-10-10 12:36:02 +0200291 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 Menon50657c22008-12-13 09:43:06 -0600299 page = (int)(offset >> chip->page_shift);
300 chip->cmdfunc(mtd, NAND_CMD_LOCK_STATUS, -1, page & chip->pagemask);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200301
Nishanth Menon50657c22008-12-13 09:43:06 -0600302 ret = chip->read_byte(mtd) & (NAND_LOCK_STATUS_TIGHT
Stefan Roese2255b2d2006-10-10 12:36:02 +0200303 | NAND_LOCK_STATUS_LOCK
304 | NAND_LOCK_STATUS_UNLOCK);
305
306 out:
307 /* de-select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600308 chip->select_chip(mtd, -1);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200309 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 Menon50657c22008-12-13 09:43:06 -0600316 * @param mtd nand mtd instance
Stefan Roese2255b2d2006-10-10 12:36:02 +0200317 * @param start start byte address
318 * @param length number of bytes to unlock (must be a multiple of
William Juulcfa460a2007-10-31 13:53:06 +0100319 * page size nand->writesize)
Joe Hershbergereee623a2012-08-22 16:49:42 -0500320 * @param allexcept if set, unlock everything not selected
Stefan Roese2255b2d2006-10-10 12:36:02 +0200321 *
322 * @return 0 on success, -1 in case of error
323 */
Joe Hershbergere331ab22012-08-22 16:49:43 -0500324int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length,
325 int allexcept)
Stefan Roese2255b2d2006-10-10 12:36:02 +0200326{
327 int ret = 0;
328 int chipnr;
329 int status;
330 int page;
Nishanth Menon50657c22008-12-13 09:43:06 -0600331 struct nand_chip *chip = mtd->priv;
Joe Hershbergereee623a2012-08-22 16:49:42 -0500332
Joe Hershbergere331ab22012-08-22 16:49:43 -0500333 debug("nand_unlock%s: start: %08llx, length: %d!\n",
Joe Hershbergereee623a2012-08-22 16:49:42 -0500334 allexcept ? " (allexcept)" : "", start, length);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200335
336 /* select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600337 chipnr = (int)(start >> chip->chip_shift);
338 chip->select_chip(mtd, chipnr);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200339
340 /* check the WP bit */
Nishanth Menon50657c22008-12-13 09:43:06 -0600341 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
342 if (!(chip->read_byte(mtd) & NAND_STATUS_WP)) {
Stefan Roese2255b2d2006-10-10 12:36:02 +0200343 printf ("nand_unlock: Device is write protected!\n");
344 ret = -1;
345 goto out;
346 }
347
Nishanth Menon50657c22008-12-13 09:43:06 -0600348 if ((start & (mtd->erasesize - 1)) != 0) {
Stefan Roese2255b2d2006-10-10 12:36:02 +0200349 printf ("nand_unlock: Start address must be beginning of "
Nishanth Menon50657c22008-12-13 09:43:06 -0600350 "nand block!\n");
Stefan Roese2255b2d2006-10-10 12:36:02 +0200351 ret = -1;
352 goto out;
353 }
354
Nishanth Menon50657c22008-12-13 09:43:06 -0600355 if (length == 0 || (length & (mtd->erasesize - 1)) != 0) {
356 printf ("nand_unlock: Length must be a multiple of nand block "
357 "size %08x!\n", mtd->erasesize);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200358 ret = -1;
359 goto out;
360 }
361
Nishanth Menon50657c22008-12-13 09:43:06 -0600362 /*
363 * Set length so that the last address is set to the
364 * starting address of the last block
365 */
366 length -= mtd->erasesize;
367
Stefan Roese2255b2d2006-10-10 12:36:02 +0200368 /* submit address of first page to unlock */
Nishanth Menon50657c22008-12-13 09:43:06 -0600369 page = (int)(start >> chip->page_shift);
370 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200371
372 /* submit ADDRESS of LAST page to unlock */
Nishanth Menon50657c22008-12-13 09:43:06 -0600373 page += (int)(length >> chip->page_shift);
Joe Hershbergereee623a2012-08-22 16:49:42 -0500374
375 /*
376 * Page addresses for unlocking are supposed to be block-aligned.
377 * At least some NAND chips use the low bit to indicate that the
378 * page range should be inverted.
379 */
380 if (allexcept)
381 page |= 1;
382
Nishanth Menon50657c22008-12-13 09:43:06 -0600383 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1, page & chip->pagemask);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200384
385 /* call wait ready function */
Nishanth Menon50657c22008-12-13 09:43:06 -0600386 status = chip->waitfunc(mtd, chip);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200387 /* see if device thinks it succeeded */
388 if (status & 0x01) {
389 /* there was an error */
390 ret = -1;
391 goto out;
392 }
393
394 out:
395 /* de-select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600396 chip->select_chip(mtd, -1);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200397 return ret;
398}
William Juulcfa460a2007-10-31 13:53:06 +0100399#endif
Stefan Roese2255b2d2006-10-10 12:36:02 +0200400
Scott Wooddfbf6172008-06-12 13:20:16 -0500401/**
Scott Woodf9a52542010-07-30 16:11:41 -0500402 * check_skip_len
Scott Wooddfbf6172008-06-12 13:20:16 -0500403 *
Scott Woodf9a52542010-07-30 16:11:41 -0500404 * Check if there are any bad blocks, and whether length including bad
405 * blocks fits into device
Scott Wooddfbf6172008-06-12 13:20:16 -0500406 *
407 * @param nand NAND device
408 * @param offset offset in flash
409 * @param length image length
Scott Woodf9a52542010-07-30 16:11:41 -0500410 * @return 0 if the image fits and there are no bad blocks
411 * 1 if the image fits, but there are bad blocks
412 * -1 if the image does not fit
Scott Wooddfbf6172008-06-12 13:20:16 -0500413 */
Scott Woodf9a52542010-07-30 16:11:41 -0500414static int check_skip_len(nand_info_t *nand, loff_t offset, size_t length)
Scott Wooddfbf6172008-06-12 13:20:16 -0500415{
Scott Wooddfbf6172008-06-12 13:20:16 -0500416 size_t len_excl_bad = 0;
Scott Woodf9a52542010-07-30 16:11:41 -0500417 int ret = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500418
419 while (len_excl_bad < length) {
Scott Woodf9a52542010-07-30 16:11:41 -0500420 size_t block_len, block_off;
421 loff_t block_start;
Scott Wooddfbf6172008-06-12 13:20:16 -0500422
Daniel Hobi0ec81db2009-12-01 14:05:55 +0100423 if (offset >= nand->size)
Scott Woodf9a52542010-07-30 16:11:41 -0500424 return -1;
425
426 block_start = offset & ~(loff_t)(nand->erasesize - 1);
427 block_off = offset & (nand->erasesize - 1);
428 block_len = nand->erasesize - block_off;
429
430 if (!nand_block_isbad(nand, block_start))
431 len_excl_bad += block_len;
432 else
433 ret = 1;
434
435 offset += block_len;
Scott Wooddfbf6172008-06-12 13:20:16 -0500436 }
437
Scott Woodf9a52542010-07-30 16:11:41 -0500438 return ret;
Scott Wooddfbf6172008-06-12 13:20:16 -0500439}
440
Ben Gardiner169d54d2011-06-14 16:35:06 -0400441#ifdef CONFIG_CMD_NAND_TRIMFFS
442static size_t drop_ffs(const nand_info_t *nand, const u_char *buf,
443 const size_t *len)
444{
445 size_t i, l = *len;
446
447 for (i = l - 1; i >= 0; i--)
448 if (buf[i] != 0xFF)
449 break;
450
451 /* The resulting length must be aligned to the minimum flash I/O size */
452 l = i + 1;
453 l = (l + nand->writesize - 1) / nand->writesize;
454 l *= nand->writesize;
455
456 /*
457 * since the input length may be unaligned, prevent access past the end
458 * of the buffer
459 */
460 return min(l, *len);
461}
462#endif
463
Scott Wooddfbf6172008-06-12 13:20:16 -0500464/**
465 * nand_write_skip_bad:
466 *
467 * Write image to NAND flash.
468 * Blocks that are marked bad are skipped and the is written to the next
469 * block instead as long as the image is short enough to fit even after
470 * skipping the bad blocks.
471 *
472 * @param nand NAND device
473 * @param offset offset in flash
474 * @param length buffer length
Lei Wen47fc18f2011-01-06 11:11:58 +0800475 * @param buffer buffer to read from
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400476 * @param flags flags modifying the behaviour of the write to NAND
Scott Wooddfbf6172008-06-12 13:20:16 -0500477 * @return 0 in case of success
478 */
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200479int nand_write_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400480 u_char *buffer, int flags)
Scott Wooddfbf6172008-06-12 13:20:16 -0500481{
Lei Wen47fc18f2011-01-06 11:11:58 +0800482 int rval = 0, blocksize;
Scott Wooddfbf6172008-06-12 13:20:16 -0500483 size_t left_to_write = *length;
Scott Wooddfbf6172008-06-12 13:20:16 -0500484 u_char *p_buffer = buffer;
Scott Woodf9a52542010-07-30 16:11:41 -0500485 int need_skip;
Scott Wooddfbf6172008-06-12 13:20:16 -0500486
Lei Wen47fc18f2011-01-06 11:11:58 +0800487#ifdef CONFIG_CMD_NAND_YAFFS
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400488 if (flags & WITH_YAFFS_OOB) {
Ben Gardinerc1354562011-06-14 16:35:05 -0400489 if (flags & ~WITH_YAFFS_OOB)
490 return -EINVAL;
491
Lei Wen47fc18f2011-01-06 11:11:58 +0800492 int pages;
493 pages = nand->erasesize / nand->writesize;
494 blocksize = (pages * nand->oobsize) + nand->erasesize;
495 if (*length % (nand->writesize + nand->oobsize)) {
496 printf ("Attempt to write incomplete page"
497 " in yaffs mode\n");
498 return -EINVAL;
499 }
500 } else
501#endif
502 {
503 blocksize = nand->erasesize;
504 }
505
Scott Woodf9a52542010-07-30 16:11:41 -0500506 /*
507 * nand_write() handles unaligned, partial page writes.
508 *
509 * We allow length to be unaligned, for convenience in
510 * using the $filesize variable.
511 *
512 * However, starting at an unaligned offset makes the
513 * semantics of bad block skipping ambiguous (really,
514 * you should only start a block skipping access at a
515 * partition boundary). So don't try to handle that.
516 */
517 if ((offset & (nand->writesize - 1)) != 0) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500518 printf ("Attempt to write non page aligned data\n");
Scott Woodf9a52542010-07-30 16:11:41 -0500519 *length = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500520 return -EINVAL;
521 }
522
Scott Woodf9a52542010-07-30 16:11:41 -0500523 need_skip = check_skip_len(nand, offset, *length);
524 if (need_skip < 0) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500525 printf ("Attempt to write outside the flash area\n");
Scott Woodf9a52542010-07-30 16:11:41 -0500526 *length = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500527 return -EINVAL;
528 }
529
Ben Gardiner169d54d2011-06-14 16:35:06 -0400530 if (!need_skip && !(flags & WITH_DROP_FFS)) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500531 rval = nand_write (nand, offset, length, buffer);
Scott Woodf9a52542010-07-30 16:11:41 -0500532 if (rval == 0)
533 return 0;
Scott Wood2077e342008-11-25 10:47:02 -0600534
Scott Woodf9a52542010-07-30 16:11:41 -0500535 *length = 0;
536 printf ("NAND write to offset %llx failed %d\n",
537 offset, rval);
Scott Wood2077e342008-11-25 10:47:02 -0600538 return rval;
Scott Wooddfbf6172008-06-12 13:20:16 -0500539 }
540
541 while (left_to_write > 0) {
542 size_t block_offset = offset & (nand->erasesize - 1);
Ben Gardiner169d54d2011-06-14 16:35:06 -0400543 size_t write_size, truncated_write_size;
Scott Wooddfbf6172008-06-12 13:20:16 -0500544
Giulio Benetti1fc1d9a2009-07-31 17:30:34 -0500545 WATCHDOG_RESET ();
546
Scott Wooddfbf6172008-06-12 13:20:16 -0500547 if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200548 printf ("Skip bad block 0x%08llx\n",
Scott Wooddfbf6172008-06-12 13:20:16 -0500549 offset & ~(nand->erasesize - 1));
550 offset += nand->erasesize - block_offset;
551 continue;
552 }
553
Lei Wen47fc18f2011-01-06 11:11:58 +0800554 if (left_to_write < (blocksize - block_offset))
Scott Wooddfbf6172008-06-12 13:20:16 -0500555 write_size = left_to_write;
556 else
Lei Wen47fc18f2011-01-06 11:11:58 +0800557 write_size = blocksize - block_offset;
Scott Wooddfbf6172008-06-12 13:20:16 -0500558
Lei Wen47fc18f2011-01-06 11:11:58 +0800559#ifdef CONFIG_CMD_NAND_YAFFS
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400560 if (flags & WITH_YAFFS_OOB) {
Lei Wen47fc18f2011-01-06 11:11:58 +0800561 int page, pages;
562 size_t pagesize = nand->writesize;
563 size_t pagesize_oob = pagesize + nand->oobsize;
564 struct mtd_oob_ops ops;
565
566 ops.len = pagesize;
567 ops.ooblen = nand->oobsize;
568 ops.mode = MTD_OOB_AUTO;
569 ops.ooboffs = 0;
570
571 pages = write_size / pagesize_oob;
572 for (page = 0; page < pages; page++) {
Scott Wood6f2ffc32011-02-02 18:15:57 -0600573 WATCHDOG_RESET();
574
Lei Wen47fc18f2011-01-06 11:11:58 +0800575 ops.datbuf = p_buffer;
576 ops.oobbuf = ops.datbuf + pagesize;
577
578 rval = nand->write_oob(nand, offset, &ops);
Liu, Wentao65683022012-01-17 19:55:02 +0000579 if (rval != 0)
Lei Wen47fc18f2011-01-06 11:11:58 +0800580 break;
581
582 offset += pagesize;
583 p_buffer += pagesize_oob;
584 }
585 }
586 else
587#endif
588 {
Ben Gardiner169d54d2011-06-14 16:35:06 -0400589 truncated_write_size = write_size;
590#ifdef CONFIG_CMD_NAND_TRIMFFS
591 if (flags & WITH_DROP_FFS)
592 truncated_write_size = drop_ffs(nand, p_buffer,
593 &write_size);
594#endif
595
596 rval = nand_write(nand, offset, &truncated_write_size,
597 p_buffer);
Lei Wen47fc18f2011-01-06 11:11:58 +0800598 offset += write_size;
599 p_buffer += write_size;
600 }
601
Scott Wooddfbf6172008-06-12 13:20:16 -0500602 if (rval != 0) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200603 printf ("NAND write to offset %llx failed %d\n",
Wolfgang Denk4b070802008-08-14 14:41:06 +0200604 offset, rval);
Scott Wooddfbf6172008-06-12 13:20:16 -0500605 *length -= left_to_write;
606 return rval;
607 }
608
609 left_to_write -= write_size;
Scott Wooddfbf6172008-06-12 13:20:16 -0500610 }
611
612 return 0;
613}
614
615/**
616 * nand_read_skip_bad:
617 *
618 * Read image from NAND flash.
619 * Blocks that are marked bad are skipped and the next block is readen
620 * instead as long as the image is short enough to fit even after skipping the
621 * bad blocks.
622 *
623 * @param nand NAND device
624 * @param offset offset in flash
625 * @param length buffer length, on return holds remaining bytes to read
626 * @param buffer buffer to write to
627 * @return 0 in case of success
628 */
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200629int nand_read_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,
Scott Wooddfbf6172008-06-12 13:20:16 -0500630 u_char *buffer)
631{
632 int rval;
633 size_t left_to_read = *length;
Scott Wooddfbf6172008-06-12 13:20:16 -0500634 u_char *p_buffer = buffer;
Scott Woodf9a52542010-07-30 16:11:41 -0500635 int need_skip;
Scott Wooddfbf6172008-06-12 13:20:16 -0500636
Scott Woodf9a52542010-07-30 16:11:41 -0500637 if ((offset & (nand->writesize - 1)) != 0) {
638 printf ("Attempt to read non page aligned data\n");
639 *length = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500640 return -EINVAL;
641 }
642
Scott Woodf9a52542010-07-30 16:11:41 -0500643 need_skip = check_skip_len(nand, offset, *length);
644 if (need_skip < 0) {
645 printf ("Attempt to read outside the flash area\n");
646 *length = 0;
647 return -EINVAL;
648 }
649
650 if (!need_skip) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500651 rval = nand_read (nand, offset, length, buffer);
Valeriy Glushkov3ebf70d2009-07-14 13:51:10 +0300652 if (!rval || rval == -EUCLEAN)
653 return 0;
Scott Woodf9a52542010-07-30 16:11:41 -0500654
655 *length = 0;
Valeriy Glushkov3ebf70d2009-07-14 13:51:10 +0300656 printf ("NAND read from offset %llx failed %d\n",
657 offset, rval);
Scott Wood2077e342008-11-25 10:47:02 -0600658 return rval;
Scott Wooddfbf6172008-06-12 13:20:16 -0500659 }
660
661 while (left_to_read > 0) {
662 size_t block_offset = offset & (nand->erasesize - 1);
663 size_t read_length;
664
Giulio Benetti1fc1d9a2009-07-31 17:30:34 -0500665 WATCHDOG_RESET ();
666
Scott Wooddfbf6172008-06-12 13:20:16 -0500667 if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200668 printf ("Skipping bad block 0x%08llx\n",
Scott Wooddfbf6172008-06-12 13:20:16 -0500669 offset & ~(nand->erasesize - 1));
670 offset += nand->erasesize - block_offset;
671 continue;
672 }
673
674 if (left_to_read < (nand->erasesize - block_offset))
675 read_length = left_to_read;
676 else
677 read_length = nand->erasesize - block_offset;
678
679 rval = nand_read (nand, offset, &read_length, p_buffer);
Valeriy Glushkov3ebf70d2009-07-14 13:51:10 +0300680 if (rval && rval != -EUCLEAN) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200681 printf ("NAND read from offset %llx failed %d\n",
Wolfgang Denk4b070802008-08-14 14:41:06 +0200682 offset, rval);
Scott Wooddfbf6172008-06-12 13:20:16 -0500683 *length -= left_to_read;
684 return rval;
685 }
686
687 left_to_read -= read_length;
688 offset += read_length;
689 p_buffer += read_length;
690 }
691
692 return 0;
693}