2 * (C) Copyright 2006-2008
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
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.
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.
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,
25 #define CFG_NAND_READ_DELAY \
26 { volatile int dummy; int i; for (i=0; i<10000; i++) dummy = i; }
28 static int nand_ecc_pos[] = CFG_NAND_ECCPOS;
30 extern void board_nand_init(struct nand_chip *nand);
32 #if (CFG_NAND_PAGE_SIZE <= 512)
34 * NAND command for small page NAND devices (512)
36 static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd)
38 struct nand_chip *this = mtd->priv;
39 int page_addr = page + block * CFG_NAND_PAGE_COUNT;
42 while (!this->dev_ready(mtd))
47 /* Begin command latch cycle */
48 this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
49 /* Set ALE and clear CLE to start address cycle */
51 this->cmd_ctrl(mtd, offs, NAND_CTRL_ALE | NAND_CTRL_CHANGE);
52 this->cmd_ctrl(mtd, page_addr & 0xff, 0); /* A[16:9] */
53 this->cmd_ctrl(mtd, (page_addr >> 8) & 0xff, 0); /* A[24:17] */
54 #ifdef CFG_NAND_4_ADDR_CYCLE
55 /* One more address cycle for devices > 32MiB */
56 this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, 0); /* A[28:25] */
58 /* Latch in address */
59 this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
62 * Wait a while for the data to be ready
65 while (!this->dev_ready(mtd))
74 * NAND command for large page NAND devices (2k)
76 static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd)
78 struct nand_chip *this = mtd->priv;
79 int page_addr = page + block * CFG_NAND_PAGE_COUNT;
82 while (!this->dev_ready(mtd))
87 /* Emulate NAND_CMD_READOOB */
88 if (cmd == NAND_CMD_READOOB) {
89 offs += CFG_NAND_PAGE_SIZE;
93 /* Begin command latch cycle */
94 this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
95 /* Set ALE and clear CLE to start address cycle */
97 this->cmd_ctrl(mtd, offs & 0xff,
98 NAND_CTRL_ALE | NAND_CTRL_CHANGE); /* A[7:0] */
99 this->cmd_ctrl(mtd, (offs >> 8) & 0xff, 0); /* A[11:9] */
101 this->cmd_ctrl(mtd, (page_addr & 0xff), 0); /* A[19:12] */
102 this->cmd_ctrl(mtd, ((page_addr >> 8) & 0xff), 0); /* A[27:20] */
103 #ifdef CFG_NAND_5_ADDR_CYCLE
104 /* One more address cycle for devices > 128MiB */
105 this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, 0); /* A[31:28] */
107 /* Latch in address */
108 this->cmd_ctrl(mtd, NAND_CMD_READSTART,
109 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
110 this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
113 * Wait a while for the data to be ready
116 while (!this->dev_ready(mtd))
125 static int nand_is_bad_block(struct mtd_info *mtd, int block)
127 struct nand_chip *this = mtd->priv;
129 nand_command(mtd, block, 0, CFG_NAND_BAD_BLOCK_POS, NAND_CMD_READOOB);
134 if (readb(this->IO_ADDR_R) != 0xff)
140 static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst)
142 struct nand_chip *this = mtd->priv;
147 int eccsize = CFG_NAND_ECCSIZE;
148 int eccbytes = CFG_NAND_ECCBYTES;
149 int eccsteps = CFG_NAND_ECCSTEPS;
153 nand_command(mtd, block, page, 0, NAND_CMD_READ0);
155 /* No malloc available for now, just use some temporary locations
158 ecc_calc = (u_char *)(CFG_SDRAM_BASE + 0x10000);
159 ecc_code = ecc_calc + 0x100;
160 oob_data = ecc_calc + 0x200;
162 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
163 this->ecc.hwctl(mtd, NAND_ECC_READ);
164 this->read_buf(mtd, p, eccsize);
165 this->ecc.calculate(mtd, p, &ecc_calc[i]);
167 this->read_buf(mtd, oob_data, CFG_NAND_OOBSIZE);
169 /* Pick the ECC bytes out of the oob data */
170 for (i = 0; i < CFG_NAND_ECCTOTAL; i++)
171 ecc_code[i] = oob_data[nand_ecc_pos[i]];
173 eccsteps = CFG_NAND_ECCSTEPS;
176 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
177 /* No chance to do something with the possible error message
178 * from correct_data(). We just hope that all possible errors
179 * are corrected by this routine.
181 stat = this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
187 static int nand_load(struct mtd_info *mtd, unsigned int offs,
188 unsigned int uboot_size, uchar *dst)
190 unsigned int block, lastblock;
194 * offs has to be aligned to a page address!
196 block = offs / CFG_NAND_BLOCK_SIZE;
197 lastblock = (offs + uboot_size - 1) / CFG_NAND_BLOCK_SIZE;
198 page = (offs % CFG_NAND_BLOCK_SIZE) / CFG_NAND_PAGE_SIZE;
200 while (block <= lastblock) {
201 if (!nand_is_bad_block(mtd, block)) {
205 while (page < CFG_NAND_PAGE_COUNT) {
206 nand_read_page(mtd, block, page, dst);
207 dst += CFG_NAND_PAGE_SIZE;
223 * The main entry for NAND booting. It's necessary that SDRAM is already
224 * configured and available since this code loads the main U-Boot image
225 * from NAND into SDRAM and starts it from there.
229 struct nand_chip nand_chip;
230 nand_info_t nand_info;
232 __attribute__((noreturn)) void (*uboot)(void);
235 * Init board specific nand support
237 nand_info.priv = &nand_chip;
238 nand_chip.IO_ADDR_R = nand_chip.IO_ADDR_W = (void __iomem *)CFG_NAND_BASE;
239 nand_chip.dev_ready = NULL; /* preset to NULL */
240 board_nand_init(&nand_chip);
242 if (nand_chip.select_chip)
243 nand_chip.select_chip(&nand_info, 0);
246 * Load U-Boot image from NAND into RAM
248 ret = nand_load(&nand_info, CFG_NAND_U_BOOT_OFFS, CFG_NAND_U_BOOT_SIZE,
249 (uchar *)CFG_NAND_U_BOOT_DST);
251 if (nand_chip.select_chip)
252 nand_chip.select_chip(&nand_info, -1);
255 * Jump to U-Boot image
257 uboot = (void *)CFG_NAND_U_BOOT_START;