blob: 46285241e18bf9294036a886706e57403cb391a1 [file] [log] [blame]
Stefan Roese42fbddd2006-09-07 11:51:23 +02001/*
Stefan Roesea9e665e2008-04-08 10:31:00 +02002 * (C) Copyright 2006-2008
Stefan Roese42fbddd2006-09-07 11:51:23 +02003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
19 */
20
21#include <common.h>
22#include <nand.h>
Stefan Roese897a4502008-01-05 16:49:37 +010023#include <asm/io.h>
Stefan Roese42fbddd2006-09-07 11:51:23 +020024
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020025#define CONFIG_SYS_NAND_READ_DELAY \
Stefan Roese42fbddd2006-09-07 11:51:23 +020026 { volatile int dummy; int i; for (i=0; i<10000; i++) dummy = i; }
27
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020028static int nand_ecc_pos[] = CONFIG_SYS_NAND_ECCPOS;
Stefan Roese39013542007-06-01 15:23:04 +020029
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020030#if (CONFIG_SYS_NAND_PAGE_SIZE <= 512)
Stefan Roesea9e665e2008-04-08 10:31:00 +020031/*
32 * NAND command for small page NAND devices (512)
33 */
Stefan Roese39013542007-06-01 15:23:04 +020034static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd)
Stefan Roese42fbddd2006-09-07 11:51:23 +020035{
Wolfgang Denk4df0da52006-10-09 00:42:01 +020036 struct nand_chip *this = mtd->priv;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020037 int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT;
Stefan Roese39013542007-06-01 15:23:04 +020038
39 if (this->dev_ready)
Stefan Roese897a4502008-01-05 16:49:37 +010040 while (!this->dev_ready(mtd))
41 ;
Stefan Roese39013542007-06-01 15:23:04 +020042 else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020043 CONFIG_SYS_NAND_READ_DELAY;
Stefan Roese42fbddd2006-09-07 11:51:23 +020044
45 /* Begin command latch cycle */
Scott Woodd2a5bb92008-08-05 11:15:59 -050046 this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Stefan Roese42fbddd2006-09-07 11:51:23 +020047 /* Set ALE and clear CLE to start address cycle */
Stefan Roese42fbddd2006-09-07 11:51:23 +020048 /* Column address */
Scott Woodd2a5bb92008-08-05 11:15:59 -050049 this->cmd_ctrl(mtd, offs, NAND_CTRL_ALE | NAND_CTRL_CHANGE);
Scott Wood13f222a2009-06-24 17:23:49 -050050 this->cmd_ctrl(mtd, page_addr & 0xff, NAND_CTRL_ALE); /* A[16:9] */
51 this->cmd_ctrl(mtd, (page_addr >> 8) & 0xff,
52 NAND_CTRL_ALE); /* A[24:17] */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020053#ifdef CONFIG_SYS_NAND_4_ADDR_CYCLE
Stefan Roese42fbddd2006-09-07 11:51:23 +020054 /* One more address cycle for devices > 32MiB */
Scott Wood13f222a2009-06-24 17:23:49 -050055 this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f,
56 NAND_CTRL_ALE); /* A[28:25] */
Stefan Roese42fbddd2006-09-07 11:51:23 +020057#endif
58 /* Latch in address */
Stefan Roese897a4502008-01-05 16:49:37 +010059 this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Stefan Roese42fbddd2006-09-07 11:51:23 +020060
61 /*
62 * Wait a while for the data to be ready
63 */
64 if (this->dev_ready)
Stefan Roese897a4502008-01-05 16:49:37 +010065 while (!this->dev_ready(mtd))
66 ;
Stefan Roese42fbddd2006-09-07 11:51:23 +020067 else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020068 CONFIG_SYS_NAND_READ_DELAY;
Stefan Roese42fbddd2006-09-07 11:51:23 +020069
Stefan Roese39013542007-06-01 15:23:04 +020070 return 0;
71}
Stefan Roesea9e665e2008-04-08 10:31:00 +020072#else
73/*
74 * NAND command for large page NAND devices (2k)
75 */
76static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd)
77{
78 struct nand_chip *this = mtd->priv;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020079 int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT;
Alex Watermanea72c1b2011-05-04 09:10:15 -040080 void (*hwctrl)(struct mtd_info *mtd, int cmd,
81 unsigned int ctrl) = this->cmd_ctrl;
Stefan Roesea9e665e2008-04-08 10:31:00 +020082
83 if (this->dev_ready)
Scott Woodd2a5bb92008-08-05 11:15:59 -050084 while (!this->dev_ready(mtd))
85 ;
Stefan Roesea9e665e2008-04-08 10:31:00 +020086 else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020087 CONFIG_SYS_NAND_READ_DELAY;
Stefan Roesea9e665e2008-04-08 10:31:00 +020088
89 /* Emulate NAND_CMD_READOOB */
90 if (cmd == NAND_CMD_READOOB) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 offs += CONFIG_SYS_NAND_PAGE_SIZE;
Stefan Roesea9e665e2008-04-08 10:31:00 +020092 cmd = NAND_CMD_READ0;
93 }
94
Alex Waterman6e1a80a2011-04-06 16:01:52 -040095 /* Shift the offset from byte addressing to word addressing. */
96 if (this->options & NAND_BUSWIDTH_16)
97 offs >>= 1;
98
Stefan Roesea9e665e2008-04-08 10:31:00 +020099 /* Begin command latch cycle */
Alex Watermanea72c1b2011-05-04 09:10:15 -0400100 hwctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Stefan Roesea9e665e2008-04-08 10:31:00 +0200101 /* Set ALE and clear CLE to start address cycle */
Stefan Roesea9e665e2008-04-08 10:31:00 +0200102 /* Column address */
Alex Watermanea72c1b2011-05-04 09:10:15 -0400103 hwctrl(mtd, offs & 0xff,
Wolfgang Denk74e0dde2008-08-14 14:41:06 +0200104 NAND_CTRL_ALE | NAND_CTRL_CHANGE); /* A[7:0] */
Alex Watermanea72c1b2011-05-04 09:10:15 -0400105 hwctrl(mtd, (offs >> 8) & 0xff, NAND_CTRL_ALE); /* A[11:9] */
Stefan Roesea9e665e2008-04-08 10:31:00 +0200106 /* Row address */
Alex Watermanea72c1b2011-05-04 09:10:15 -0400107 hwctrl(mtd, (page_addr & 0xff), NAND_CTRL_ALE); /* A[19:12] */
108 hwctrl(mtd, ((page_addr >> 8) & 0xff),
Scott Wood13f222a2009-06-24 17:23:49 -0500109 NAND_CTRL_ALE); /* A[27:20] */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200110#ifdef CONFIG_SYS_NAND_5_ADDR_CYCLE
Stefan Roesea9e665e2008-04-08 10:31:00 +0200111 /* One more address cycle for devices > 128MiB */
Alex Watermanea72c1b2011-05-04 09:10:15 -0400112 hwctrl(mtd, (page_addr >> 16) & 0x0f,
Scott Wood13f222a2009-06-24 17:23:49 -0500113 NAND_CTRL_ALE); /* A[31:28] */
Stefan Roesea9e665e2008-04-08 10:31:00 +0200114#endif
115 /* Latch in address */
Alex Watermanea72c1b2011-05-04 09:10:15 -0400116 hwctrl(mtd, NAND_CMD_READSTART,
Wolfgang Denk74e0dde2008-08-14 14:41:06 +0200117 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Alex Watermanea72c1b2011-05-04 09:10:15 -0400118 hwctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Stefan Roesea9e665e2008-04-08 10:31:00 +0200119
120 /*
121 * Wait a while for the data to be ready
122 */
123 if (this->dev_ready)
Scott Woodd2a5bb92008-08-05 11:15:59 -0500124 while (!this->dev_ready(mtd))
125 ;
Stefan Roesea9e665e2008-04-08 10:31:00 +0200126 else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200127 CONFIG_SYS_NAND_READ_DELAY;
Stefan Roesea9e665e2008-04-08 10:31:00 +0200128
129 return 0;
130}
131#endif
Stefan Roese39013542007-06-01 15:23:04 +0200132
133static int nand_is_bad_block(struct mtd_info *mtd, int block)
134{
135 struct nand_chip *this = mtd->priv;
136
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200137 nand_command(mtd, block, 0, CONFIG_SYS_NAND_BAD_BLOCK_POS, NAND_CMD_READOOB);
Stefan Roese39013542007-06-01 15:23:04 +0200138
Stefan Roese42fbddd2006-09-07 11:51:23 +0200139 /*
Marcel Ziswiler00376352007-12-30 03:30:56 +0100140 * Read one byte
Stefan Roese42fbddd2006-09-07 11:51:23 +0200141 */
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200142 if (readb(this->IO_ADDR_R) != 0xff)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200143 return 1;
144
145 return 0;
146}
147
148static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst)
149{
Wolfgang Denk4df0da52006-10-09 00:42:01 +0200150 struct nand_chip *this = mtd->priv;
Stefan Roese39013542007-06-01 15:23:04 +0200151 u_char *ecc_calc;
152 u_char *ecc_code;
153 u_char *oob_data;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200154 int i;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200155 int eccsize = CONFIG_SYS_NAND_ECCSIZE;
156 int eccbytes = CONFIG_SYS_NAND_ECCBYTES;
157 int eccsteps = CONFIG_SYS_NAND_ECCSTEPS;
Stefan Roese39013542007-06-01 15:23:04 +0200158 uint8_t *p = dst;
159 int stat;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200160
Stefan Roese39013542007-06-01 15:23:04 +0200161 nand_command(mtd, block, page, 0, NAND_CMD_READ0);
Stefan Roese42fbddd2006-09-07 11:51:23 +0200162
Stefan Roese39013542007-06-01 15:23:04 +0200163 /* No malloc available for now, just use some temporary locations
164 * in SDRAM
Stefan Roese42fbddd2006-09-07 11:51:23 +0200165 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200166 ecc_calc = (u_char *)(CONFIG_SYS_SDRAM_BASE + 0x10000);
Stefan Roese39013542007-06-01 15:23:04 +0200167 ecc_code = ecc_calc + 0x100;
168 oob_data = ecc_calc + 0x200;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200169
Stefan Roese39013542007-06-01 15:23:04 +0200170 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
Stefan Roese897a4502008-01-05 16:49:37 +0100171 this->ecc.hwctl(mtd, NAND_ECC_READ);
Stefan Roese39013542007-06-01 15:23:04 +0200172 this->read_buf(mtd, p, eccsize);
Stefan Roese897a4502008-01-05 16:49:37 +0100173 this->ecc.calculate(mtd, p, &ecc_calc[i]);
Stefan Roese39013542007-06-01 15:23:04 +0200174 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200175 this->read_buf(mtd, oob_data, CONFIG_SYS_NAND_OOBSIZE);
Stefan Roese39013542007-06-01 15:23:04 +0200176
177 /* Pick the ECC bytes out of the oob data */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200178 for (i = 0; i < CONFIG_SYS_NAND_ECCTOTAL; i++)
Stefan Roese39013542007-06-01 15:23:04 +0200179 ecc_code[i] = oob_data[nand_ecc_pos[i]];
180
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200181 eccsteps = CONFIG_SYS_NAND_ECCSTEPS;
Stefan Roese39013542007-06-01 15:23:04 +0200182 p = dst;
183
184 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
185 /* No chance to do something with the possible error message
186 * from correct_data(). We just hope that all possible errors
187 * are corrected by this routine.
188 */
Stefan Roese897a4502008-01-05 16:49:37 +0100189 stat = this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Stefan Roese39013542007-06-01 15:23:04 +0200190 }
Stefan Roese42fbddd2006-09-07 11:51:23 +0200191
192 return 0;
193}
194
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200195static int nand_load(struct mtd_info *mtd, unsigned int offs,
Wolfgang Denk74e0dde2008-08-14 14:41:06 +0200196 unsigned int uboot_size, uchar *dst)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200197{
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200198 unsigned int block, lastblock;
199 unsigned int page;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200200
201 /*
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200202 * offs has to be aligned to a page address!
Stefan Roese42fbddd2006-09-07 11:51:23 +0200203 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200204 block = offs / CONFIG_SYS_NAND_BLOCK_SIZE;
205 lastblock = (offs + uboot_size - 1) / CONFIG_SYS_NAND_BLOCK_SIZE;
206 page = (offs % CONFIG_SYS_NAND_BLOCK_SIZE) / CONFIG_SYS_NAND_PAGE_SIZE;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200207
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200208 while (block <= lastblock) {
Stefan Roese42fbddd2006-09-07 11:51:23 +0200209 if (!nand_is_bad_block(mtd, block)) {
210 /*
211 * Skip bad blocks
212 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200213 while (page < CONFIG_SYS_NAND_PAGE_COUNT) {
Stefan Roese42fbddd2006-09-07 11:51:23 +0200214 nand_read_page(mtd, block, page, dst);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200215 dst += CONFIG_SYS_NAND_PAGE_SIZE;
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200216 page++;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200217 }
218
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200219 page = 0;
220 } else {
221 lastblock++;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200222 }
223
224 block++;
225 }
226
227 return 0;
228}
229
Stefan Roese7d72e022008-06-02 14:35:44 +0200230/*
231 * The main entry for NAND booting. It's necessary that SDRAM is already
232 * configured and available since this code loads the main U-Boot image
233 * from NAND into SDRAM and starts it from there.
234 */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200235void nand_boot(void)
236{
Stefan Roese42fbddd2006-09-07 11:51:23 +0200237 struct nand_chip nand_chip;
238 nand_info_t nand_info;
239 int ret;
Scott Woodb71689b2008-06-30 14:13:28 -0500240 __attribute__((noreturn)) void (*uboot)(void);
Stefan Roese42fbddd2006-09-07 11:51:23 +0200241
242 /*
Stefan Roese42fbddd2006-09-07 11:51:23 +0200243 * Init board specific nand support
244 */
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -0500245 nand_chip.select_chip = NULL;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200246 nand_info.priv = &nand_chip;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200247 nand_chip.IO_ADDR_R = nand_chip.IO_ADDR_W = (void __iomem *)CONFIG_SYS_NAND_BASE;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200248 nand_chip.dev_ready = NULL; /* preset to NULL */
249 board_nand_init(&nand_chip);
250
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200251 if (nand_chip.select_chip)
252 nand_chip.select_chip(&nand_info, 0);
253
Stefan Roese42fbddd2006-09-07 11:51:23 +0200254 /*
255 * Load U-Boot image from NAND into RAM
256 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200257 ret = nand_load(&nand_info, CONFIG_SYS_NAND_U_BOOT_OFFS, CONFIG_SYS_NAND_U_BOOT_SIZE,
258 (uchar *)CONFIG_SYS_NAND_U_BOOT_DST);
Stefan Roese42fbddd2006-09-07 11:51:23 +0200259
Guennadi Liakhovetskifad24442009-05-18 16:07:22 +0200260#ifdef CONFIG_NAND_ENV_DST
261 nand_load(&nand_info, CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
262 (uchar *)CONFIG_NAND_ENV_DST);
263
264#ifdef CONFIG_ENV_OFFSET_REDUND
265 nand_load(&nand_info, CONFIG_ENV_OFFSET_REDUND, CONFIG_ENV_SIZE,
266 (uchar *)CONFIG_NAND_ENV_DST + CONFIG_ENV_SIZE);
267#endif
268#endif
269
Guennadi Liakhovetski6e88dc22008-08-06 21:42:07 +0200270 if (nand_chip.select_chip)
271 nand_chip.select_chip(&nand_info, -1);
272
Stefan Roese42fbddd2006-09-07 11:51:23 +0200273 /*
274 * Jump to U-Boot image
275 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200276 uboot = (void *)CONFIG_SYS_NAND_U_BOOT_START;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200277 (*uboot)();
278}