1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <common.h>
22#include <nand.h>
23#include <asm/io.h>
24
25static int nand_ecc_pos[] = CONFIG_SYS_NAND_ECCPOS;
26
27#if (CONFIG_SYS_NAND_PAGE_SIZE <= 512)
28
29
30
31static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd)
32{
33 struct nand_chip *this = mtd->priv;
34 int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT;
35
36 while (!this->dev_ready(mtd))
37 ;
38
39
40 this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
41
42
43 this->cmd_ctrl(mtd, offs, NAND_CTRL_ALE | NAND_CTRL_CHANGE);
44 this->cmd_ctrl(mtd, page_addr & 0xff, NAND_CTRL_ALE);
45 this->cmd_ctrl(mtd, (page_addr >> 8) & 0xff,
46 NAND_CTRL_ALE);
47#ifdef CONFIG_SYS_NAND_4_ADDR_CYCLE
48
49 this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f,
50 NAND_CTRL_ALE);
51#endif
52
53 this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
54
55
56
57
58 while (!this->dev_ready(mtd))
59 ;
60
61 return 0;
62}
63#else
64
65
66
67static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd)
68{
69 struct nand_chip *this = mtd->priv;
70 int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT;
71 void (*hwctrl)(struct mtd_info *mtd, int cmd,
72 unsigned int ctrl) = this->cmd_ctrl;
73
74 while (!this->dev_ready(mtd))
75 ;
76
77
78 if (cmd == NAND_CMD_READOOB) {
79 offs += CONFIG_SYS_NAND_PAGE_SIZE;
80 cmd = NAND_CMD_READ0;
81 }
82
83
84 if (this->options & NAND_BUSWIDTH_16)
85 offs >>= 1;
86
87
88 hwctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
89
90
91 hwctrl(mtd, offs & 0xff,
92 NAND_CTRL_ALE | NAND_CTRL_CHANGE);
93 hwctrl(mtd, (offs >> 8) & 0xff, NAND_CTRL_ALE);
94
95 hwctrl(mtd, (page_addr & 0xff), NAND_CTRL_ALE);
96 hwctrl(mtd, ((page_addr >> 8) & 0xff),
97 NAND_CTRL_ALE);
98#ifdef CONFIG_SYS_NAND_5_ADDR_CYCLE
99
100 hwctrl(mtd, (page_addr >> 16) & 0x0f,
101 NAND_CTRL_ALE);
102#endif
103
104 hwctrl(mtd, NAND_CMD_READSTART,
105 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
106 hwctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
107
108
109
110
111 while (!this->dev_ready(mtd))
112 ;
113
114 return 0;
115}
116#endif
117
118static int nand_is_bad_block(struct mtd_info *mtd, int block)
119{
120 struct nand_chip *this = mtd->priv;
121
122 nand_command(mtd, block, 0, CONFIG_SYS_NAND_BAD_BLOCK_POS, NAND_CMD_READOOB);
123
124
125
126
127 if (this->options & NAND_BUSWIDTH_16) {
128 if (readw(this->IO_ADDR_R) != 0xffff)
129 return 1;
130 } else {
131 if (readb(this->IO_ADDR_R) != 0xff)
132 return 1;
133 }
134
135 return 0;
136}
137
138#if defined(CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST)
139static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst)
140{
141 struct nand_chip *this = mtd->priv;
142 u_char *ecc_calc;
143 u_char *ecc_code;
144 u_char *oob_data;
145 int i;
146 int eccsize = CONFIG_SYS_NAND_ECCSIZE;
147 int eccbytes = CONFIG_SYS_NAND_ECCBYTES;
148 int eccsteps = CONFIG_SYS_NAND_ECCSTEPS;
149 uint8_t *p = dst;
150
151
152
153
154
155 ecc_calc = (u_char *)(CONFIG_SYS_SDRAM_BASE + 0x10000);
156 ecc_code = ecc_calc + 0x100;
157 oob_data = ecc_calc + 0x200;
158
159 nand_command(mtd, block, page, 0, NAND_CMD_READOOB);
160 this->read_buf(mtd, oob_data, CONFIG_SYS_NAND_OOBSIZE);
161 nand_command(mtd, block, page, 0, NAND_CMD_READ0);
162
163
164 for (i = 0; i < CONFIG_SYS_NAND_ECCTOTAL; i++)
165 ecc_code[i] = oob_data[nand_ecc_pos[i]];
166
167
168 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
169 this->ecc.hwctl(mtd, NAND_ECC_READ);
170 this->read_buf(mtd, p, eccsize);
171 this->ecc.calculate(mtd, p, &ecc_calc[i]);
172 this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
173 }
174
175 return 0;
176}
177#else
178static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst)
179{
180 struct nand_chip *this = mtd->priv;
181 u_char *ecc_calc;
182 u_char *ecc_code;
183 u_char *oob_data;
184 int i;
185 int eccsize = CONFIG_SYS_NAND_ECCSIZE;
186 int eccbytes = CONFIG_SYS_NAND_ECCBYTES;
187 int eccsteps = CONFIG_SYS_NAND_ECCSTEPS;
188 uint8_t *p = dst;
189
190 nand_command(mtd, block, page, 0, NAND_CMD_READ0);
191
192
193
194
195 ecc_calc = (u_char *)(CONFIG_SYS_SDRAM_BASE + 0x10000);
196 ecc_code = ecc_calc + 0x100;
197 oob_data = ecc_calc + 0x200;
198
199 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
200 this->ecc.hwctl(mtd, NAND_ECC_READ);
201 this->read_buf(mtd, p, eccsize);
202 this->ecc.calculate(mtd, p, &ecc_calc[i]);
203 }
204 this->read_buf(mtd, oob_data, CONFIG_SYS_NAND_OOBSIZE);
205
206
207 for (i = 0; i < CONFIG_SYS_NAND_ECCTOTAL; i++)
208 ecc_code[i] = oob_data[nand_ecc_pos[i]];
209
210 eccsteps = CONFIG_SYS_NAND_ECCSTEPS;
211 p = dst;
212
213 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
214
215
216
217
218 this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
219 }
220
221 return 0;
222}
223#endif
224
225static int nand_load(struct mtd_info *mtd, unsigned int offs,
226 unsigned int uboot_size, uchar *dst)
227{
228 unsigned int block, lastblock;
229 unsigned int page;
230
231
232
233
234 block = offs / CONFIG_SYS_NAND_BLOCK_SIZE;
235 lastblock = (offs + uboot_size - 1) / CONFIG_SYS_NAND_BLOCK_SIZE;
236 page = (offs % CONFIG_SYS_NAND_BLOCK_SIZE) / CONFIG_SYS_NAND_PAGE_SIZE;
237
238 while (block <= lastblock) {
239 if (!nand_is_bad_block(mtd, block)) {
240
241
242
243 while (page < CONFIG_SYS_NAND_PAGE_COUNT) {
244 nand_read_page(mtd, block, page, dst);
245 dst += CONFIG_SYS_NAND_PAGE_SIZE;
246 page++;
247 }
248
249 page = 0;
250 } else {
251 lastblock++;
252 }
253
254 block++;
255 }
256
257 return 0;
258}
259
260
261
262
263
264
265void nand_boot(void)
266{
267 struct nand_chip nand_chip;
268 nand_info_t nand_info;
269 __attribute__((noreturn)) void (*uboot)(void);
270
271
272
273
274 nand_chip.select_chip = NULL;
275 nand_info.priv = &nand_chip;
276 nand_chip.IO_ADDR_R = nand_chip.IO_ADDR_W = (void __iomem *)CONFIG_SYS_NAND_BASE;
277 nand_chip.dev_ready = NULL;
278 nand_chip.options = 0;
279 board_nand_init(&nand_chip);
280
281 if (nand_chip.select_chip)
282 nand_chip.select_chip(&nand_info, 0);
283
284
285
286
287 nand_load(&nand_info, CONFIG_SYS_NAND_U_BOOT_OFFS, CONFIG_SYS_NAND_U_BOOT_SIZE,
288 (uchar *)CONFIG_SYS_NAND_U_BOOT_DST);
289
290#ifdef CONFIG_NAND_ENV_DST
291 nand_load(&nand_info, CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
292 (uchar *)CONFIG_NAND_ENV_DST);
293
294#ifdef CONFIG_ENV_OFFSET_REDUND
295 nand_load(&nand_info, CONFIG_ENV_OFFSET_REDUND, CONFIG_ENV_SIZE,
296 (uchar *)CONFIG_NAND_ENV_DST + CONFIG_ENV_SIZE);
297#endif
298#endif
299
300 if (nand_chip.select_chip)
301 nand_chip.select_chip(&nand_info, -1);
302
303
304
305
306 uboot = (void *)CONFIG_SYS_NAND_U_BOOT_START;
307 (*uboot)();
308}
309