blob: 81bf366159e54fcca6057ba59f2d6760091dc0a1 [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
60/*****************************************************************************/
61static int nand_block_bad_scrub(struct mtd_info *mtd, loff_t ofs, int getchip)
62{
63 return 0;
64}
65
66/**
67 * nand_erase_opts: - erase NAND flash with support for various options
68 * (jffs2 formating)
69 *
70 * @param meminfo NAND device to erase
71 * @param opts options, @see struct nand_erase_options
72 * @return 0 in case of success
73 *
74 * This code is ported from flash_eraseall.c from Linux mtd utils by
75 * Arcom Control System Ltd.
76 */
77int nand_erase_opts(nand_info_t *meminfo, const nand_erase_options_t *opts)
78{
79 struct jffs2_unknown_node cleanmarker;
Stefan Roese2255b2d2006-10-10 12:36:02 +020080 erase_info_t erase;
Scott Wood30486322010-08-25 14:43:29 -050081 unsigned long erase_length, erased_length; /* in blocks */
Stefan Roese2255b2d2006-10-10 12:36:02 +020082 int bbtest = 1;
83 int result;
84 int percent_complete = -1;
85 int (*nand_block_bad_old)(struct mtd_info *, loff_t, int) = NULL;
86 const char *mtd_device = meminfo->name;
William Juulcfa460a2007-10-31 13:53:06 +010087 struct mtd_oob_ops oob_opts;
88 struct nand_chip *chip = meminfo->priv;
Stefan Roese2255b2d2006-10-10 12:36:02 +020089
Scott Wood30486322010-08-25 14:43:29 -050090 if ((opts->offset & (meminfo->writesize - 1)) != 0) {
91 printf("Attempt to erase non page aligned data\n");
92 return -1;
93 }
94
Stefan Roese2255b2d2006-10-10 12:36:02 +020095 memset(&erase, 0, sizeof(erase));
William Juulcfa460a2007-10-31 13:53:06 +010096 memset(&oob_opts, 0, sizeof(oob_opts));
Stefan Roese2255b2d2006-10-10 12:36:02 +020097
98 erase.mtd = meminfo;
99 erase.len = meminfo->erasesize;
Stefan Roese856f0542006-10-28 15:55:52 +0200100 erase.addr = opts->offset;
Scott Wood30486322010-08-25 14:43:29 -0500101 erase_length = lldiv(opts->length + meminfo->erasesize - 1,
102 meminfo->erasesize);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200103
William Juulcfa460a2007-10-31 13:53:06 +0100104 cleanmarker.magic = cpu_to_je16 (JFFS2_MAGIC_BITMASK);
105 cleanmarker.nodetype = cpu_to_je16 (JFFS2_NODETYPE_CLEANMARKER);
106 cleanmarker.totlen = cpu_to_je32(8);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200107
108 /* scrub option allows to erase badblock. To prevent internal
109 * check from erase() method, set block check method to dummy
110 * and disable bad block table while erasing.
111 */
112 if (opts->scrub) {
113 struct nand_chip *priv_nand = meminfo->priv;
114
115 nand_block_bad_old = priv_nand->block_bad;
116 priv_nand->block_bad = nand_block_bad_scrub;
117 /* we don't need the bad block table anymore...
118 * after scrub, there are no bad blocks left!
119 */
120 if (priv_nand->bbt) {
121 kfree(priv_nand->bbt);
122 }
123 priv_nand->bbt = NULL;
124 }
125
Scott Wood30486322010-08-25 14:43:29 -0500126 for (erased_length = 0;
127 erased_length < erase_length;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200128 erase.addr += meminfo->erasesize) {
William Juul4cbb6512007-11-08 10:39:53 +0100129
Stefan Roese2255b2d2006-10-10 12:36:02 +0200130 WATCHDOG_RESET ();
131
132 if (!opts->scrub && bbtest) {
133 int ret = meminfo->block_isbad(meminfo, erase.addr);
134 if (ret > 0) {
135 if (!opts->quiet)
136 printf("\rSkipping bad block at "
Stefan Roese8d2effe2009-05-11 16:03:55 +0200137 "0x%08llx "
Wolfgang Denk87621bc2006-10-12 11:43:47 +0200138 " \n",
139 erase.addr);
Scott Wood30486322010-08-25 14:43:29 -0500140
141 if (!opts->spread)
142 erased_length++;
143
Stefan Roese2255b2d2006-10-10 12:36:02 +0200144 continue;
145
146 } else if (ret < 0) {
147 printf("\n%s: MTD get bad block failed: %d\n",
148 mtd_device,
149 ret);
150 return -1;
151 }
152 }
153
Scott Wood30486322010-08-25 14:43:29 -0500154 erased_length++;
155
Stefan Roese2255b2d2006-10-10 12:36:02 +0200156 result = meminfo->erase(meminfo, &erase);
157 if (result != 0) {
158 printf("\n%s: MTD Erase failure: %d\n",
159 mtd_device, result);
160 continue;
161 }
162
163 /* format for JFFS2 ? */
Scott Woodbd78bc62008-10-29 14:20:26 -0500164 if (opts->jffs2 && chip->ecc.layout->oobavail >= 8) {
165 chip->ops.ooblen = 8;
William Juulcfa460a2007-10-31 13:53:06 +0100166 chip->ops.datbuf = NULL;
Scott Woodbd78bc62008-10-29 14:20:26 -0500167 chip->ops.oobbuf = (uint8_t *)&cleanmarker;
168 chip->ops.ooboffs = 0;
169 chip->ops.mode = MTD_OOB_AUTO;
William Juul4cbb6512007-11-08 10:39:53 +0100170
William Juulcfa460a2007-10-31 13:53:06 +0100171 result = meminfo->write_oob(meminfo,
Scott Woodbd78bc62008-10-29 14:20:26 -0500172 erase.addr,
173 &chip->ops);
William Juulcfa460a2007-10-31 13:53:06 +0100174 if (result != 0) {
175 printf("\n%s: MTD writeoob failure: %d\n",
Scott Woodbd78bc62008-10-29 14:20:26 -0500176 mtd_device, result);
William Juulcfa460a2007-10-31 13:53:06 +0100177 continue;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200178 }
179 }
180
181 if (!opts->quiet) {
Scott Wood30486322010-08-25 14:43:29 -0500182 unsigned long long n = erased_length * 100ULL;
Matthias Fuchs5bd7fe92007-09-11 17:04:00 +0200183 int percent;
184
185 do_div(n, erase_length);
186 percent = (int)n;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200187
188 /* output progress message only at whole percent
189 * steps to reduce the number of messages printed
190 * on (slow) serial consoles
191 */
192 if (percent != percent_complete) {
193 percent_complete = percent;
194
Stefan Roese8d2effe2009-05-11 16:03:55 +0200195 printf("\rErasing at 0x%llx -- %3d%% complete.",
Scott Woodbd78bc62008-10-29 14:20:26 -0500196 erase.addr, percent);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200197
198 if (opts->jffs2 && result == 0)
Stefan Roese8d2effe2009-05-11 16:03:55 +0200199 printf(" Cleanmarker written at 0x%llx.",
Scott Woodbd78bc62008-10-29 14:20:26 -0500200 erase.addr);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200201 }
202 }
203 }
204 if (!opts->quiet)
205 printf("\n");
206
207 if (nand_block_bad_old) {
208 struct nand_chip *priv_nand = meminfo->priv;
209
210 priv_nand->block_bad = nand_block_bad_old;
211 priv_nand->scan_bbt(meminfo);
212 }
213
214 return 0;
215}
216
Nishanth Menon50657c22008-12-13 09:43:06 -0600217#ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
218
Stefan Roese2255b2d2006-10-10 12:36:02 +0200219/******************************************************************************
220 * Support for locking / unlocking operations of some NAND devices
221 *****************************************************************************/
222
223#define NAND_CMD_LOCK 0x2a
224#define NAND_CMD_LOCK_TIGHT 0x2c
225#define NAND_CMD_UNLOCK1 0x23
226#define NAND_CMD_UNLOCK2 0x24
227#define NAND_CMD_LOCK_STATUS 0x7a
228
229/**
230 * nand_lock: Set all pages of NAND flash chip to the LOCK or LOCK-TIGHT
231 * state
232 *
Nishanth Menon50657c22008-12-13 09:43:06 -0600233 * @param mtd nand mtd instance
Stefan Roese2255b2d2006-10-10 12:36:02 +0200234 * @param tight bring device in lock tight mode
235 *
236 * @return 0 on success, -1 in case of error
237 *
238 * The lock / lock-tight command only applies to the whole chip. To get some
239 * parts of the chip lock and others unlocked use the following sequence:
240 *
241 * - Lock all pages of the chip using nand_lock(mtd, 0) (or the lockpre pin)
242 * - Call nand_unlock() once for each consecutive area to be unlocked
243 * - If desired: Bring the chip to the lock-tight state using nand_lock(mtd, 1)
244 *
245 * If the device is in lock-tight state software can't change the
246 * current active lock/unlock state of all pages. nand_lock() / nand_unlock()
247 * calls will fail. It is only posible to leave lock-tight state by
248 * an hardware signal (low pulse on _WP pin) or by power down.
249 */
Nishanth Menon50657c22008-12-13 09:43:06 -0600250int nand_lock(struct mtd_info *mtd, int tight)
Stefan Roese2255b2d2006-10-10 12:36:02 +0200251{
252 int ret = 0;
253 int status;
Nishanth Menon50657c22008-12-13 09:43:06 -0600254 struct nand_chip *chip = mtd->priv;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200255
256 /* select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600257 chip->select_chip(mtd, 0);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200258
Nishanth Menon50657c22008-12-13 09:43:06 -0600259 chip->cmdfunc(mtd,
Stefan Roese2255b2d2006-10-10 12:36:02 +0200260 (tight ? NAND_CMD_LOCK_TIGHT : NAND_CMD_LOCK),
261 -1, -1);
262
263 /* call wait ready function */
Nishanth Menon50657c22008-12-13 09:43:06 -0600264 status = chip->waitfunc(mtd, chip);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200265
266 /* see if device thinks it succeeded */
267 if (status & 0x01) {
268 ret = -1;
269 }
270
271 /* de-select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600272 chip->select_chip(mtd, -1);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200273 return ret;
274}
275
276/**
277 * nand_get_lock_status: - query current lock state from one page of NAND
278 * flash
279 *
Nishanth Menon50657c22008-12-13 09:43:06 -0600280 * @param mtd nand mtd instance
Stefan Roese2255b2d2006-10-10 12:36:02 +0200281 * @param offset page address to query (muss be page aligned!)
282 *
283 * @return -1 in case of error
284 * >0 lock status:
285 * bitfield with the following combinations:
286 * NAND_LOCK_STATUS_TIGHT: page in tight state
287 * NAND_LOCK_STATUS_LOCK: page locked
288 * NAND_LOCK_STATUS_UNLOCK: page unlocked
289 *
290 */
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200291int nand_get_lock_status(struct mtd_info *mtd, loff_t offset)
Stefan Roese2255b2d2006-10-10 12:36:02 +0200292{
293 int ret = 0;
294 int chipnr;
295 int page;
Nishanth Menon50657c22008-12-13 09:43:06 -0600296 struct nand_chip *chip = mtd->priv;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200297
298 /* select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600299 chipnr = (int)(offset >> chip->chip_shift);
300 chip->select_chip(mtd, chipnr);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200301
302
Nishanth Menon50657c22008-12-13 09:43:06 -0600303 if ((offset & (mtd->writesize - 1)) != 0) {
Stefan Roese2255b2d2006-10-10 12:36:02 +0200304 printf ("nand_get_lock_status: "
305 "Start address must be beginning of "
306 "nand page!\n");
307 ret = -1;
308 goto out;
309 }
310
311 /* check the Lock Status */
Nishanth Menon50657c22008-12-13 09:43:06 -0600312 page = (int)(offset >> chip->page_shift);
313 chip->cmdfunc(mtd, NAND_CMD_LOCK_STATUS, -1, page & chip->pagemask);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200314
Nishanth Menon50657c22008-12-13 09:43:06 -0600315 ret = chip->read_byte(mtd) & (NAND_LOCK_STATUS_TIGHT
Stefan Roese2255b2d2006-10-10 12:36:02 +0200316 | NAND_LOCK_STATUS_LOCK
317 | NAND_LOCK_STATUS_UNLOCK);
318
319 out:
320 /* de-select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600321 chip->select_chip(mtd, -1);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200322 return ret;
323}
324
325/**
326 * nand_unlock: - Unlock area of NAND pages
327 * only one consecutive area can be unlocked at one time!
328 *
Nishanth Menon50657c22008-12-13 09:43:06 -0600329 * @param mtd nand mtd instance
Stefan Roese2255b2d2006-10-10 12:36:02 +0200330 * @param start start byte address
331 * @param length number of bytes to unlock (must be a multiple of
William Juulcfa460a2007-10-31 13:53:06 +0100332 * page size nand->writesize)
Stefan Roese2255b2d2006-10-10 12:36:02 +0200333 *
334 * @return 0 on success, -1 in case of error
335 */
Nishanth Menon50657c22008-12-13 09:43:06 -0600336int nand_unlock(struct mtd_info *mtd, ulong start, ulong length)
Stefan Roese2255b2d2006-10-10 12:36:02 +0200337{
338 int ret = 0;
339 int chipnr;
340 int status;
341 int page;
Nishanth Menon50657c22008-12-13 09:43:06 -0600342 struct nand_chip *chip = mtd->priv;
Stefan Roese2255b2d2006-10-10 12:36:02 +0200343 printf ("nand_unlock: start: %08x, length: %d!\n",
344 (int)start, (int)length);
345
346 /* select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600347 chipnr = (int)(start >> chip->chip_shift);
348 chip->select_chip(mtd, chipnr);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200349
350 /* check the WP bit */
Nishanth Menon50657c22008-12-13 09:43:06 -0600351 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
352 if (!(chip->read_byte(mtd) & NAND_STATUS_WP)) {
Stefan Roese2255b2d2006-10-10 12:36:02 +0200353 printf ("nand_unlock: Device is write protected!\n");
354 ret = -1;
355 goto out;
356 }
357
Nishanth Menon50657c22008-12-13 09:43:06 -0600358 if ((start & (mtd->erasesize - 1)) != 0) {
Stefan Roese2255b2d2006-10-10 12:36:02 +0200359 printf ("nand_unlock: Start address must be beginning of "
Nishanth Menon50657c22008-12-13 09:43:06 -0600360 "nand block!\n");
Stefan Roese2255b2d2006-10-10 12:36:02 +0200361 ret = -1;
362 goto out;
363 }
364
Nishanth Menon50657c22008-12-13 09:43:06 -0600365 if (length == 0 || (length & (mtd->erasesize - 1)) != 0) {
366 printf ("nand_unlock: Length must be a multiple of nand block "
367 "size %08x!\n", mtd->erasesize);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200368 ret = -1;
369 goto out;
370 }
371
Nishanth Menon50657c22008-12-13 09:43:06 -0600372 /*
373 * Set length so that the last address is set to the
374 * starting address of the last block
375 */
376 length -= mtd->erasesize;
377
Stefan Roese2255b2d2006-10-10 12:36:02 +0200378 /* submit address of first page to unlock */
Nishanth Menon50657c22008-12-13 09:43:06 -0600379 page = (int)(start >> chip->page_shift);
380 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200381
382 /* submit ADDRESS of LAST page to unlock */
Nishanth Menon50657c22008-12-13 09:43:06 -0600383 page += (int)(length >> chip->page_shift);
384 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1, page & chip->pagemask);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200385
386 /* call wait ready function */
Nishanth Menon50657c22008-12-13 09:43:06 -0600387 status = chip->waitfunc(mtd, chip);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200388 /* see if device thinks it succeeded */
389 if (status & 0x01) {
390 /* there was an error */
391 ret = -1;
392 goto out;
393 }
394
395 out:
396 /* de-select the NAND device */
Nishanth Menon50657c22008-12-13 09:43:06 -0600397 chip->select_chip(mtd, -1);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200398 return ret;
399}
William Juulcfa460a2007-10-31 13:53:06 +0100400#endif
Stefan Roese2255b2d2006-10-10 12:36:02 +0200401
Scott Wooddfbf6172008-06-12 13:20:16 -0500402/**
Scott Woodf9a52542010-07-30 16:11:41 -0500403 * check_skip_len
Scott Wooddfbf6172008-06-12 13:20:16 -0500404 *
Scott Woodf9a52542010-07-30 16:11:41 -0500405 * Check if there are any bad blocks, and whether length including bad
406 * blocks fits into device
Scott Wooddfbf6172008-06-12 13:20:16 -0500407 *
408 * @param nand NAND device
409 * @param offset offset in flash
410 * @param length image length
Scott Woodf9a52542010-07-30 16:11:41 -0500411 * @return 0 if the image fits and there are no bad blocks
412 * 1 if the image fits, but there are bad blocks
413 * -1 if the image does not fit
Scott Wooddfbf6172008-06-12 13:20:16 -0500414 */
Scott Woodf9a52542010-07-30 16:11:41 -0500415static int check_skip_len(nand_info_t *nand, loff_t offset, size_t length)
Scott Wooddfbf6172008-06-12 13:20:16 -0500416{
Scott Wooddfbf6172008-06-12 13:20:16 -0500417 size_t len_excl_bad = 0;
Scott Woodf9a52542010-07-30 16:11:41 -0500418 int ret = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500419
420 while (len_excl_bad < length) {
Scott Woodf9a52542010-07-30 16:11:41 -0500421 size_t block_len, block_off;
422 loff_t block_start;
Scott Wooddfbf6172008-06-12 13:20:16 -0500423
Daniel Hobi0ec81db2009-12-01 14:05:55 +0100424 if (offset >= nand->size)
Scott Woodf9a52542010-07-30 16:11:41 -0500425 return -1;
426
427 block_start = offset & ~(loff_t)(nand->erasesize - 1);
428 block_off = offset & (nand->erasesize - 1);
429 block_len = nand->erasesize - block_off;
430
431 if (!nand_block_isbad(nand, block_start))
432 len_excl_bad += block_len;
433 else
434 ret = 1;
435
436 offset += block_len;
Scott Wooddfbf6172008-06-12 13:20:16 -0500437 }
438
Scott Woodf9a52542010-07-30 16:11:41 -0500439 return ret;
Scott Wooddfbf6172008-06-12 13:20:16 -0500440}
441
Ben Gardiner169d54d2011-06-14 16:35:06 -0400442#ifdef CONFIG_CMD_NAND_TRIMFFS
443static size_t drop_ffs(const nand_info_t *nand, const u_char *buf,
444 const size_t *len)
445{
446 size_t i, l = *len;
447
448 for (i = l - 1; i >= 0; i--)
449 if (buf[i] != 0xFF)
450 break;
451
452 /* The resulting length must be aligned to the minimum flash I/O size */
453 l = i + 1;
454 l = (l + nand->writesize - 1) / nand->writesize;
455 l *= nand->writesize;
456
457 /*
458 * since the input length may be unaligned, prevent access past the end
459 * of the buffer
460 */
461 return min(l, *len);
462}
463#endif
464
Scott Wooddfbf6172008-06-12 13:20:16 -0500465/**
466 * nand_write_skip_bad:
467 *
468 * Write image to NAND flash.
469 * Blocks that are marked bad are skipped and the is written to the next
470 * block instead as long as the image is short enough to fit even after
471 * skipping the bad blocks.
472 *
473 * @param nand NAND device
474 * @param offset offset in flash
475 * @param length buffer length
Lei Wen47fc18f2011-01-06 11:11:58 +0800476 * @param buffer buffer to read from
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400477 * @param flags flags modifying the behaviour of the write to NAND
Scott Wooddfbf6172008-06-12 13:20:16 -0500478 * @return 0 in case of success
479 */
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200480int nand_write_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400481 u_char *buffer, int flags)
Scott Wooddfbf6172008-06-12 13:20:16 -0500482{
Lei Wen47fc18f2011-01-06 11:11:58 +0800483 int rval = 0, blocksize;
Scott Wooddfbf6172008-06-12 13:20:16 -0500484 size_t left_to_write = *length;
Scott Wooddfbf6172008-06-12 13:20:16 -0500485 u_char *p_buffer = buffer;
Scott Woodf9a52542010-07-30 16:11:41 -0500486 int need_skip;
Scott Wooddfbf6172008-06-12 13:20:16 -0500487
Lei Wen47fc18f2011-01-06 11:11:58 +0800488#ifdef CONFIG_CMD_NAND_YAFFS
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400489 if (flags & WITH_YAFFS_OOB) {
Ben Gardinerc1354562011-06-14 16:35:05 -0400490 if (flags & ~WITH_YAFFS_OOB)
491 return -EINVAL;
492
Lei Wen47fc18f2011-01-06 11:11:58 +0800493 int pages;
494 pages = nand->erasesize / nand->writesize;
495 blocksize = (pages * nand->oobsize) + nand->erasesize;
496 if (*length % (nand->writesize + nand->oobsize)) {
497 printf ("Attempt to write incomplete page"
498 " in yaffs mode\n");
499 return -EINVAL;
500 }
501 } else
502#endif
503 {
504 blocksize = nand->erasesize;
505 }
506
Scott Woodf9a52542010-07-30 16:11:41 -0500507 /*
508 * nand_write() handles unaligned, partial page writes.
509 *
510 * We allow length to be unaligned, for convenience in
511 * using the $filesize variable.
512 *
513 * However, starting at an unaligned offset makes the
514 * semantics of bad block skipping ambiguous (really,
515 * you should only start a block skipping access at a
516 * partition boundary). So don't try to handle that.
517 */
518 if ((offset & (nand->writesize - 1)) != 0) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500519 printf ("Attempt to write non page aligned data\n");
Scott Woodf9a52542010-07-30 16:11:41 -0500520 *length = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500521 return -EINVAL;
522 }
523
Scott Woodf9a52542010-07-30 16:11:41 -0500524 need_skip = check_skip_len(nand, offset, *length);
525 if (need_skip < 0) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500526 printf ("Attempt to write outside the flash area\n");
Scott Woodf9a52542010-07-30 16:11:41 -0500527 *length = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500528 return -EINVAL;
529 }
530
Ben Gardiner169d54d2011-06-14 16:35:06 -0400531 if (!need_skip && !(flags & WITH_DROP_FFS)) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500532 rval = nand_write (nand, offset, length, buffer);
Scott Woodf9a52542010-07-30 16:11:41 -0500533 if (rval == 0)
534 return 0;
Scott Wood2077e342008-11-25 10:47:02 -0600535
Scott Woodf9a52542010-07-30 16:11:41 -0500536 *length = 0;
537 printf ("NAND write to offset %llx failed %d\n",
538 offset, rval);
Scott Wood2077e342008-11-25 10:47:02 -0600539 return rval;
Scott Wooddfbf6172008-06-12 13:20:16 -0500540 }
541
542 while (left_to_write > 0) {
543 size_t block_offset = offset & (nand->erasesize - 1);
Ben Gardiner169d54d2011-06-14 16:35:06 -0400544 size_t write_size, truncated_write_size;
Scott Wooddfbf6172008-06-12 13:20:16 -0500545
Giulio Benetti1fc1d9a2009-07-31 17:30:34 -0500546 WATCHDOG_RESET ();
547
Scott Wooddfbf6172008-06-12 13:20:16 -0500548 if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200549 printf ("Skip bad block 0x%08llx\n",
Scott Wooddfbf6172008-06-12 13:20:16 -0500550 offset & ~(nand->erasesize - 1));
551 offset += nand->erasesize - block_offset;
552 continue;
553 }
554
Lei Wen47fc18f2011-01-06 11:11:58 +0800555 if (left_to_write < (blocksize - block_offset))
Scott Wooddfbf6172008-06-12 13:20:16 -0500556 write_size = left_to_write;
557 else
Lei Wen47fc18f2011-01-06 11:11:58 +0800558 write_size = blocksize - block_offset;
Scott Wooddfbf6172008-06-12 13:20:16 -0500559
Lei Wen47fc18f2011-01-06 11:11:58 +0800560#ifdef CONFIG_CMD_NAND_YAFFS
Ben Gardinera6c9aa12011-05-24 10:18:35 -0400561 if (flags & WITH_YAFFS_OOB) {
Lei Wen47fc18f2011-01-06 11:11:58 +0800562 int page, pages;
563 size_t pagesize = nand->writesize;
564 size_t pagesize_oob = pagesize + nand->oobsize;
565 struct mtd_oob_ops ops;
566
567 ops.len = pagesize;
568 ops.ooblen = nand->oobsize;
569 ops.mode = MTD_OOB_AUTO;
570 ops.ooboffs = 0;
571
572 pages = write_size / pagesize_oob;
573 for (page = 0; page < pages; page++) {
Scott Wood6f2ffc32011-02-02 18:15:57 -0600574 WATCHDOG_RESET();
575
Lei Wen47fc18f2011-01-06 11:11:58 +0800576 ops.datbuf = p_buffer;
577 ops.oobbuf = ops.datbuf + pagesize;
578
579 rval = nand->write_oob(nand, offset, &ops);
580 if (!rval)
581 break;
582
583 offset += pagesize;
584 p_buffer += pagesize_oob;
585 }
586 }
587 else
588#endif
589 {
Ben Gardiner169d54d2011-06-14 16:35:06 -0400590 truncated_write_size = write_size;
591#ifdef CONFIG_CMD_NAND_TRIMFFS
592 if (flags & WITH_DROP_FFS)
593 truncated_write_size = drop_ffs(nand, p_buffer,
594 &write_size);
595#endif
596
597 rval = nand_write(nand, offset, &truncated_write_size,
598 p_buffer);
Lei Wen47fc18f2011-01-06 11:11:58 +0800599 offset += write_size;
600 p_buffer += write_size;
601 }
602
Scott Wooddfbf6172008-06-12 13:20:16 -0500603 if (rval != 0) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200604 printf ("NAND write to offset %llx failed %d\n",
Wolfgang Denk4b070802008-08-14 14:41:06 +0200605 offset, rval);
Scott Wooddfbf6172008-06-12 13:20:16 -0500606 *length -= left_to_write;
607 return rval;
608 }
609
610 left_to_write -= write_size;
Scott Wooddfbf6172008-06-12 13:20:16 -0500611 }
612
613 return 0;
614}
615
616/**
617 * nand_read_skip_bad:
618 *
619 * Read image from NAND flash.
620 * Blocks that are marked bad are skipped and the next block is readen
621 * instead as long as the image is short enough to fit even after skipping the
622 * bad blocks.
623 *
624 * @param nand NAND device
625 * @param offset offset in flash
626 * @param length buffer length, on return holds remaining bytes to read
627 * @param buffer buffer to write to
628 * @return 0 in case of success
629 */
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200630int nand_read_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,
Scott Wooddfbf6172008-06-12 13:20:16 -0500631 u_char *buffer)
632{
633 int rval;
634 size_t left_to_read = *length;
Scott Wooddfbf6172008-06-12 13:20:16 -0500635 u_char *p_buffer = buffer;
Scott Woodf9a52542010-07-30 16:11:41 -0500636 int need_skip;
Scott Wooddfbf6172008-06-12 13:20:16 -0500637
Scott Woodf9a52542010-07-30 16:11:41 -0500638 if ((offset & (nand->writesize - 1)) != 0) {
639 printf ("Attempt to read non page aligned data\n");
640 *length = 0;
Scott Wooddfbf6172008-06-12 13:20:16 -0500641 return -EINVAL;
642 }
643
Scott Woodf9a52542010-07-30 16:11:41 -0500644 need_skip = check_skip_len(nand, offset, *length);
645 if (need_skip < 0) {
646 printf ("Attempt to read outside the flash area\n");
647 *length = 0;
648 return -EINVAL;
649 }
650
651 if (!need_skip) {
Scott Wooddfbf6172008-06-12 13:20:16 -0500652 rval = nand_read (nand, offset, length, buffer);
Valeriy Glushkov3ebf70d2009-07-14 13:51:10 +0300653 if (!rval || rval == -EUCLEAN)
654 return 0;
Scott Woodf9a52542010-07-30 16:11:41 -0500655
656 *length = 0;
Valeriy Glushkov3ebf70d2009-07-14 13:51:10 +0300657 printf ("NAND read from offset %llx failed %d\n",
658 offset, rval);
Scott Wood2077e342008-11-25 10:47:02 -0600659 return rval;
Scott Wooddfbf6172008-06-12 13:20:16 -0500660 }
661
662 while (left_to_read > 0) {
663 size_t block_offset = offset & (nand->erasesize - 1);
664 size_t read_length;
665
Giulio Benetti1fc1d9a2009-07-31 17:30:34 -0500666 WATCHDOG_RESET ();
667
Scott Wooddfbf6172008-06-12 13:20:16 -0500668 if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200669 printf ("Skipping bad block 0x%08llx\n",
Scott Wooddfbf6172008-06-12 13:20:16 -0500670 offset & ~(nand->erasesize - 1));
671 offset += nand->erasesize - block_offset;
672 continue;
673 }
674
675 if (left_to_read < (nand->erasesize - block_offset))
676 read_length = left_to_read;
677 else
678 read_length = nand->erasesize - block_offset;
679
680 rval = nand_read (nand, offset, &read_length, p_buffer);
Valeriy Glushkov3ebf70d2009-07-14 13:51:10 +0300681 if (rval && rval != -EUCLEAN) {
Jean-Christophe PLAGNIOL-VILLARD378adfc2009-05-16 14:27:40 +0200682 printf ("NAND read from offset %llx failed %d\n",
Wolfgang Denk4b070802008-08-14 14:41:06 +0200683 offset, rval);
Scott Wooddfbf6172008-06-12 13:20:16 -0500684 *length -= left_to_read;
685 return rval;
686 }
687
688 left_to_read -= read_length;
689 offset += read_length;
690 p_buffer += read_length;
691 }
692
693 return 0;
694}