blob: 81b4dfc5414e20abf64e6e1b7cdb4ad0c7d50b67 [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
25#define CFG_NAND_READ_DELAY \
26 { volatile int dummy; int i; for (i=0; i<10000; i++) dummy = i; }
27
Stefan Roese39013542007-06-01 15:23:04 +020028static int nand_ecc_pos[] = CFG_NAND_ECCPOS;
29
Stefan Roese42fbddd2006-09-07 11:51:23 +020030extern void board_nand_init(struct nand_chip *nand);
Stefan Roese42fbddd2006-09-07 11:51:23 +020031
Stefan Roesea9e665e2008-04-08 10:31:00 +020032#if (CFG_NAND_PAGE_SIZE <= 512)
33/*
34 * NAND command for small page NAND devices (512)
35 */
Stefan Roese39013542007-06-01 15:23:04 +020036static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd)
Stefan Roese42fbddd2006-09-07 11:51:23 +020037{
Wolfgang Denk4df0da52006-10-09 00:42:01 +020038 struct nand_chip *this = mtd->priv;
Stefan Roese39013542007-06-01 15:23:04 +020039 int page_addr = page + block * CFG_NAND_PAGE_COUNT;
40
41 if (this->dev_ready)
Stefan Roese897a4502008-01-05 16:49:37 +010042 while (!this->dev_ready(mtd))
43 ;
Stefan Roese39013542007-06-01 15:23:04 +020044 else
45 CFG_NAND_READ_DELAY;
Stefan Roese42fbddd2006-09-07 11:51:23 +020046
47 /* Begin command latch cycle */
Scott Woodd2a5bb92008-08-05 11:15:59 -050048 this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Stefan Roese42fbddd2006-09-07 11:51:23 +020049 /* Set ALE and clear CLE to start address cycle */
Stefan Roese42fbddd2006-09-07 11:51:23 +020050 /* Column address */
Scott Woodd2a5bb92008-08-05 11:15:59 -050051 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] */
Stefan Roese42fbddd2006-09-07 11:51:23 +020054#ifdef CFG_NAND_4_ADDR_CYCLE
55 /* One more address cycle for devices > 32MiB */
Scott Woodd2a5bb92008-08-05 11:15:59 -050056 this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, 0); /* 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
68 CFG_NAND_READ_DELAY;
69
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;
Stefan Roesea9e665e2008-04-08 10:31:00 +020079 int page_addr = page + block * CFG_NAND_PAGE_COUNT;
80
81 if (this->dev_ready)
Scott Woodd2a5bb92008-08-05 11:15:59 -050082 while (!this->dev_ready(mtd))
83 ;
Stefan Roesea9e665e2008-04-08 10:31:00 +020084 else
85 CFG_NAND_READ_DELAY;
86
87 /* Emulate NAND_CMD_READOOB */
88 if (cmd == NAND_CMD_READOOB) {
Scott Woodd2a5bb92008-08-05 11:15:59 -050089 offs += CFG_NAND_PAGE_SIZE;
Stefan Roesea9e665e2008-04-08 10:31:00 +020090 cmd = NAND_CMD_READ0;
91 }
92
93 /* Begin command latch cycle */
Scott Woodd2a5bb92008-08-05 11:15:59 -050094 this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Stefan Roesea9e665e2008-04-08 10:31:00 +020095 /* Set ALE and clear CLE to start address cycle */
Stefan Roesea9e665e2008-04-08 10:31:00 +020096 /* Column address */
Scott Woodd2a5bb92008-08-05 11:15:59 -050097 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] */
Stefan Roesea9e665e2008-04-08 10:31:00 +0200100 /* Row address */
Scott Woodd2a5bb92008-08-05 11:15:59 -0500101 this->cmd_ctrl(mtd, (page_addr & 0xff), 0); /* A[19:12] */
102 this->cmd_ctrl(mtd, ((page_addr >> 8) & 0xff), 0); /* A[27:20] */
Stefan Roesea9e665e2008-04-08 10:31:00 +0200103#ifdef CFG_NAND_5_ADDR_CYCLE
104 /* One more address cycle for devices > 128MiB */
Scott Woodd2a5bb92008-08-05 11:15:59 -0500105 this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, 0); /* A[31:28] */
Stefan Roesea9e665e2008-04-08 10:31:00 +0200106#endif
107 /* Latch in address */
Scott Woodd2a5bb92008-08-05 11:15:59 -0500108 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);
Stefan Roesea9e665e2008-04-08 10:31:00 +0200111
112 /*
113 * Wait a while for the data to be ready
114 */
115 if (this->dev_ready)
Scott Woodd2a5bb92008-08-05 11:15:59 -0500116 while (!this->dev_ready(mtd))
117 ;
Stefan Roesea9e665e2008-04-08 10:31:00 +0200118 else
119 CFG_NAND_READ_DELAY;
120
121 return 0;
122}
123#endif
Stefan Roese39013542007-06-01 15:23:04 +0200124
125static int nand_is_bad_block(struct mtd_info *mtd, int block)
126{
127 struct nand_chip *this = mtd->priv;
128
129 nand_command(mtd, block, 0, CFG_NAND_BAD_BLOCK_POS, NAND_CMD_READOOB);
130
Stefan Roese42fbddd2006-09-07 11:51:23 +0200131 /*
Marcel Ziswiler00376352007-12-30 03:30:56 +0100132 * Read one byte
Stefan Roese42fbddd2006-09-07 11:51:23 +0200133 */
Stefan Roese897a4502008-01-05 16:49:37 +0100134 if (in_8(this->IO_ADDR_R) != 0xff)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200135 return 1;
136
137 return 0;
138}
139
140static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst)
141{
Wolfgang Denk4df0da52006-10-09 00:42:01 +0200142 struct nand_chip *this = mtd->priv;
Stefan Roese39013542007-06-01 15:23:04 +0200143 u_char *ecc_calc;
144 u_char *ecc_code;
145 u_char *oob_data;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200146 int i;
Stefan Roese39013542007-06-01 15:23:04 +0200147 int eccsize = CFG_NAND_ECCSIZE;
148 int eccbytes = CFG_NAND_ECCBYTES;
149 int eccsteps = CFG_NAND_ECCSTEPS;
150 uint8_t *p = dst;
151 int stat;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200152
Stefan Roese39013542007-06-01 15:23:04 +0200153 nand_command(mtd, block, page, 0, NAND_CMD_READ0);
Stefan Roese42fbddd2006-09-07 11:51:23 +0200154
Stefan Roese39013542007-06-01 15:23:04 +0200155 /* No malloc available for now, just use some temporary locations
156 * in SDRAM
Stefan Roese42fbddd2006-09-07 11:51:23 +0200157 */
Stefan Roese39013542007-06-01 15:23:04 +0200158 ecc_calc = (u_char *)(CFG_SDRAM_BASE + 0x10000);
159 ecc_code = ecc_calc + 0x100;
160 oob_data = ecc_calc + 0x200;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200161
Stefan Roese39013542007-06-01 15:23:04 +0200162 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
Stefan Roese897a4502008-01-05 16:49:37 +0100163 this->ecc.hwctl(mtd, NAND_ECC_READ);
Stefan Roese39013542007-06-01 15:23:04 +0200164 this->read_buf(mtd, p, eccsize);
Stefan Roese897a4502008-01-05 16:49:37 +0100165 this->ecc.calculate(mtd, p, &ecc_calc[i]);
Stefan Roese39013542007-06-01 15:23:04 +0200166 }
167 this->read_buf(mtd, oob_data, CFG_NAND_OOBSIZE);
168
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]];
172
173 eccsteps = CFG_NAND_ECCSTEPS;
174 p = dst;
175
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.
180 */
Stefan Roese897a4502008-01-05 16:49:37 +0100181 stat = this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Stefan Roese39013542007-06-01 15:23:04 +0200182 }
Stefan Roese42fbddd2006-09-07 11:51:23 +0200183
184 return 0;
185}
186
187static int nand_load(struct mtd_info *mtd, int offs, int uboot_size, uchar *dst)
188{
189 int block;
190 int blockcopy_count;
191 int page;
192
193 /*
194 * offs has to be aligned to a block address!
195 */
196 block = offs / CFG_NAND_BLOCK_SIZE;
197 blockcopy_count = 0;
198
199 while (blockcopy_count < (uboot_size / CFG_NAND_BLOCK_SIZE)) {
200 if (!nand_is_bad_block(mtd, block)) {
201 /*
202 * Skip bad blocks
203 */
204 for (page = 0; page < CFG_NAND_PAGE_COUNT; page++) {
205 nand_read_page(mtd, block, page, dst);
206 dst += CFG_NAND_PAGE_SIZE;
207 }
208
209 blockcopy_count++;
210 }
211
212 block++;
213 }
214
215 return 0;
216}
217
Stefan Roese7d72e022008-06-02 14:35:44 +0200218/*
219 * The main entry for NAND booting. It's necessary that SDRAM is already
220 * configured and available since this code loads the main U-Boot image
221 * from NAND into SDRAM and starts it from there.
222 */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200223void nand_boot(void)
224{
Stefan Roese42fbddd2006-09-07 11:51:23 +0200225 struct nand_chip nand_chip;
226 nand_info_t nand_info;
227 int ret;
Scott Woodb71689b2008-06-30 14:13:28 -0500228 __attribute__((noreturn)) void (*uboot)(void);
Stefan Roese42fbddd2006-09-07 11:51:23 +0200229
230 /*
Stefan Roese42fbddd2006-09-07 11:51:23 +0200231 * Init board specific nand support
232 */
233 nand_info.priv = &nand_chip;
234 nand_chip.IO_ADDR_R = nand_chip.IO_ADDR_W = (void __iomem *)CFG_NAND_BASE;
235 nand_chip.dev_ready = NULL; /* preset to NULL */
236 board_nand_init(&nand_chip);
237
238 /*
239 * Load U-Boot image from NAND into RAM
240 */
Stefan Roesebbfcbb72006-09-12 20:19:10 +0200241 ret = nand_load(&nand_info, CFG_NAND_U_BOOT_OFFS, CFG_NAND_U_BOOT_SIZE,
Stefan Roese42fbddd2006-09-07 11:51:23 +0200242 (uchar *)CFG_NAND_U_BOOT_DST);
243
244 /*
245 * Jump to U-Boot image
246 */
Scott Woodb71689b2008-06-30 14:13:28 -0500247 uboot = (void *)CFG_NAND_U_BOOT_START;
Stefan Roese42fbddd2006-09-07 11:51:23 +0200248 (*uboot)();
249}