1
2
3
4
5
6
7
8
9#include <common.h>
10#include <nand.h>
11#include <linux/err.h>
12#include <asm/io.h>
13#if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX35) || \
14 defined(CONFIG_MX51) || defined(CONFIG_MX53)
15#include <asm/arch/imx-regs.h>
16#endif
17#include "mxc_nand.h"
18
19#define DRIVER_NAME "mxc_nand"
20
21struct mxc_nand_host {
22 struct mtd_info mtd;
23 struct nand_chip *nand;
24
25 struct mxc_nand_regs __iomem *regs;
26#ifdef MXC_NFC_V3_2
27 struct mxc_nand_ip_regs __iomem *ip_regs;
28#endif
29 int spare_only;
30 int status_request;
31 int pagesize_2k;
32 int clk_act;
33 uint16_t col_addr;
34 unsigned int page_addr;
35};
36
37static struct mxc_nand_host mxc_host;
38static struct mxc_nand_host *host = &mxc_host;
39
40
41#define TROP_US_DELAY 2000
42
43#define COLPOS(x) ((x) >> 3)
44#define BITPOS(x) ((x) & 0xf)
45
46
47#define MAIN_SINGLEBIT_ERROR 0x4
48#define SPARE_SINGLEBIT_ERROR 0x1
49
50
51#if defined(MXC_NFC_V1)
52#ifndef CONFIG_SYS_NAND_LARGEPAGE
53static struct nand_ecclayout nand_hw_eccoob = {
54 .eccbytes = 5,
55 .eccpos = {6, 7, 8, 9, 10},
56 .oobfree = { {0, 5}, {11, 5}, }
57};
58#else
59static struct nand_ecclayout nand_hw_eccoob2k = {
60 .eccbytes = 20,
61 .eccpos = {
62 6, 7, 8, 9, 10,
63 22, 23, 24, 25, 26,
64 38, 39, 40, 41, 42,
65 54, 55, 56, 57, 58,
66 },
67 .oobfree = { {2, 4}, {11, 11}, {27, 11}, {43, 11}, {59, 5} },
68};
69#endif
70#elif defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
71#ifndef CONFIG_SYS_NAND_LARGEPAGE
72static struct nand_ecclayout nand_hw_eccoob = {
73 .eccbytes = 9,
74 .eccpos = {7, 8, 9, 10, 11, 12, 13, 14, 15},
75 .oobfree = { {2, 5} }
76};
77#else
78static struct nand_ecclayout nand_hw_eccoob2k = {
79 .eccbytes = 36,
80 .eccpos = {
81 7, 8, 9, 10, 11, 12, 13, 14, 15,
82 23, 24, 25, 26, 27, 28, 29, 30, 31,
83 39, 40, 41, 42, 43, 44, 45, 46, 47,
84 55, 56, 57, 58, 59, 60, 61, 62, 63,
85 },
86 .oobfree = { {2, 5}, {16, 7}, {32, 7}, {48, 7} },
87};
88#endif
89#endif
90
91static int is_16bit_nand(void)
92{
93#if defined(CONFIG_SYS_NAND_BUSWIDTH_16BIT)
94 return 1;
95#else
96 return 0;
97#endif
98}
99
100static uint32_t *mxc_nand_memcpy32(uint32_t *dest, uint32_t *source, size_t size)
101{
102 uint32_t *d = dest;
103
104 size >>= 2;
105 while (size--)
106 __raw_writel(__raw_readl(source++), d++);
107 return dest;
108}
109
110
111
112
113
114static void wait_op_done(struct mxc_nand_host *host, int max_retries,
115 uint16_t param)
116{
117 uint32_t tmp;
118
119 while (max_retries-- > 0) {
120#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
121 tmp = readnfc(&host->regs->config2);
122 if (tmp & NFC_V1_V2_CONFIG2_INT) {
123 tmp &= ~NFC_V1_V2_CONFIG2_INT;
124 writenfc(tmp, &host->regs->config2);
125#elif defined(MXC_NFC_V3_2)
126 tmp = readnfc(&host->ip_regs->ipc);
127 if (tmp & NFC_V3_IPC_INT) {
128 tmp &= ~NFC_V3_IPC_INT;
129 writenfc(tmp, &host->ip_regs->ipc);
130#endif
131 break;
132 }
133 udelay(1);
134 }
135 if (max_retries < 0) {
136 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s(%d): INT not set\n",
137 __func__, param);
138 }
139}
140
141
142
143
144
145static void send_cmd(struct mxc_nand_host *host, uint16_t cmd)
146{
147 MTDDEBUG(MTD_DEBUG_LEVEL3, "send_cmd(host, 0x%x)\n", cmd);
148
149 writenfc(cmd, &host->regs->flash_cmd);
150 writenfc(NFC_CMD, &host->regs->operation);
151
152
153 wait_op_done(host, TROP_US_DELAY, cmd);
154}
155
156
157
158
159
160
161static void send_addr(struct mxc_nand_host *host, uint16_t addr)
162{
163 MTDDEBUG(MTD_DEBUG_LEVEL3, "send_addr(host, 0x%x)\n", addr);
164
165 writenfc(addr, &host->regs->flash_addr);
166 writenfc(NFC_ADDR, &host->regs->operation);
167
168
169 wait_op_done(host, TROP_US_DELAY, addr);
170}
171
172
173
174
175
176static void send_prog_page(struct mxc_nand_host *host, uint8_t buf_id,
177 int spare_only)
178{
179 if (spare_only)
180 MTDDEBUG(MTD_DEBUG_LEVEL1, "send_prog_page (%d)\n", spare_only);
181
182 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
183 int i;
184
185
186
187
188
189
190 for (i = 1; i < 4; i++) {
191 void __iomem *src = &host->regs->spare_area[0][i * 16];
192 void __iomem *dst = &host->regs->spare_area[i][0];
193
194 mxc_nand_memcpy32(dst, src, 16);
195 }
196 }
197
198#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
199 writenfc(buf_id, &host->regs->buf_addr);
200#elif defined(MXC_NFC_V3_2)
201 uint32_t tmp = readnfc(&host->regs->config1);
202 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
203 tmp |= NFC_V3_CONFIG1_RBA(buf_id);
204 writenfc(tmp, &host->regs->config1);
205#endif
206
207
208 if (!host->pagesize_2k) {
209 uint32_t config1 = readnfc(&host->regs->config1);
210 if (spare_only)
211 config1 |= NFC_CONFIG1_SP_EN;
212 else
213 config1 &= ~NFC_CONFIG1_SP_EN;
214 writenfc(config1, &host->regs->config1);
215 }
216
217 writenfc(NFC_INPUT, &host->regs->operation);
218
219
220 wait_op_done(host, TROP_US_DELAY, spare_only);
221}
222
223
224
225
226
227static void send_read_page(struct mxc_nand_host *host, uint8_t buf_id,
228 int spare_only)
229{
230 MTDDEBUG(MTD_DEBUG_LEVEL3, "send_read_page (%d)\n", spare_only);
231
232#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
233 writenfc(buf_id, &host->regs->buf_addr);
234#elif defined(MXC_NFC_V3_2)
235 uint32_t tmp = readnfc(&host->regs->config1);
236 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
237 tmp |= NFC_V3_CONFIG1_RBA(buf_id);
238 writenfc(tmp, &host->regs->config1);
239#endif
240
241
242 if (!host->pagesize_2k) {
243 uint32_t config1 = readnfc(&host->regs->config1);
244 if (spare_only)
245 config1 |= NFC_CONFIG1_SP_EN;
246 else
247 config1 &= ~NFC_CONFIG1_SP_EN;
248 writenfc(config1, &host->regs->config1);
249 }
250
251 writenfc(NFC_OUTPUT, &host->regs->operation);
252
253
254 wait_op_done(host, TROP_US_DELAY, spare_only);
255
256 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
257 int i;
258
259
260
261
262
263
264 for (i = 1; i < 4; i++) {
265 void __iomem *src = &host->regs->spare_area[i][0];
266 void __iomem *dst = &host->regs->spare_area[0][i * 16];
267
268 mxc_nand_memcpy32(dst, src, 16);
269 }
270 }
271}
272
273
274static void send_read_id(struct mxc_nand_host *host)
275{
276 uint32_t tmp;
277
278#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
279
280 writenfc(0x0, &host->regs->buf_addr);
281#elif defined(MXC_NFC_V3_2)
282 tmp = readnfc(&host->regs->config1);
283 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
284 writenfc(tmp, &host->regs->config1);
285#endif
286
287
288 tmp = readnfc(&host->regs->config1);
289 tmp &= ~NFC_CONFIG1_SP_EN;
290 writenfc(tmp, &host->regs->config1);
291
292 writenfc(NFC_ID, &host->regs->operation);
293
294
295 wait_op_done(host, TROP_US_DELAY, 0);
296}
297
298
299
300
301
302static uint16_t get_dev_status(struct mxc_nand_host *host)
303{
304#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
305 void __iomem *main_buf = host->regs->main_area[1];
306 uint32_t store;
307#endif
308 uint32_t ret, tmp;
309
310
311#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
312
313 store = readl(main_buf);
314
315 writenfc(1, &host->regs->buf_addr);
316#endif
317
318
319 tmp = readnfc(&host->regs->config1);
320 tmp &= ~NFC_CONFIG1_SP_EN;
321 writenfc(tmp, &host->regs->config1);
322
323 writenfc(NFC_STATUS, &host->regs->operation);
324
325
326 wait_op_done(host, TROP_US_DELAY, 0);
327
328#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
329
330
331
332
333 ret = readw(main_buf);
334 writel(store, main_buf);
335#elif defined(MXC_NFC_V3_2)
336 ret = readnfc(&host->regs->config1) >> 16;
337#endif
338
339 return ret;
340}
341
342
343static int mxc_nand_dev_ready(struct mtd_info *mtd)
344{
345
346
347
348
349 return 1;
350}
351
352static void _mxc_nand_enable_hwecc(struct mtd_info *mtd, int on)
353{
354 struct nand_chip *nand_chip = mtd->priv;
355 struct mxc_nand_host *host = nand_chip->priv;
356#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
357 uint16_t tmp = readnfc(&host->regs->config1);
358
359 if (on)
360 tmp |= NFC_V1_V2_CONFIG1_ECC_EN;
361 else
362 tmp &= ~NFC_V1_V2_CONFIG1_ECC_EN;
363 writenfc(tmp, &host->regs->config1);
364#elif defined(MXC_NFC_V3_2)
365 uint32_t tmp = readnfc(&host->ip_regs->config2);
366
367 if (on)
368 tmp |= NFC_V3_CONFIG2_ECC_EN;
369 else
370 tmp &= ~NFC_V3_CONFIG2_ECC_EN;
371 writenfc(tmp, &host->ip_regs->config2);
372#endif
373}
374
375#ifdef CONFIG_MXC_NAND_HWECC
376static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode)
377{
378
379
380
381
382}
383
384#if defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
385static int mxc_nand_read_oob_syndrome(struct mtd_info *mtd,
386 struct nand_chip *chip,
387 int page)
388{
389 struct mxc_nand_host *host = chip->priv;
390 uint8_t *buf = chip->oob_poi;
391 int length = mtd->oobsize;
392 int eccpitch = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
393 uint8_t *bufpoi = buf;
394 int i, toread;
395
396 MTDDEBUG(MTD_DEBUG_LEVEL0,
397 "%s: Reading OOB area of page %u to oob %p\n",
398 __func__, page, buf);
399
400 chip->cmdfunc(mtd, NAND_CMD_READOOB, mtd->writesize, page);
401 for (i = 0; i < chip->ecc.steps; i++) {
402 toread = min_t(int, length, chip->ecc.prepad);
403 if (toread) {
404 chip->read_buf(mtd, bufpoi, toread);
405 bufpoi += toread;
406 length -= toread;
407 }
408 bufpoi += chip->ecc.bytes;
409 host->col_addr += chip->ecc.bytes;
410 length -= chip->ecc.bytes;
411
412 toread = min_t(int, length, chip->ecc.postpad);
413 if (toread) {
414 chip->read_buf(mtd, bufpoi, toread);
415 bufpoi += toread;
416 length -= toread;
417 }
418 }
419 if (length > 0)
420 chip->read_buf(mtd, bufpoi, length);
421
422 _mxc_nand_enable_hwecc(mtd, 0);
423 chip->cmdfunc(mtd, NAND_CMD_READOOB,
424 mtd->writesize + chip->ecc.prepad, page);
425 bufpoi = buf + chip->ecc.prepad;
426 length = mtd->oobsize - chip->ecc.prepad;
427 for (i = 0; i < chip->ecc.steps; i++) {
428 toread = min_t(int, length, chip->ecc.bytes);
429 chip->read_buf(mtd, bufpoi, toread);
430 bufpoi += eccpitch;
431 length -= eccpitch;
432 host->col_addr += chip->ecc.postpad + chip->ecc.prepad;
433 }
434 _mxc_nand_enable_hwecc(mtd, 1);
435 return 1;
436}
437
438static int mxc_nand_read_page_raw_syndrome(struct mtd_info *mtd,
439 struct nand_chip *chip,
440 uint8_t *buf,
441 int oob_required,
442 int page)
443{
444 struct mxc_nand_host *host = chip->priv;
445 int eccsize = chip->ecc.size;
446 int eccbytes = chip->ecc.bytes;
447 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
448 uint8_t *oob = chip->oob_poi;
449 int steps, size;
450 int n;
451
452 _mxc_nand_enable_hwecc(mtd, 0);
453 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
454
455 for (n = 0, steps = chip->ecc.steps; steps > 0; n++, steps--) {
456 host->col_addr = n * eccsize;
457 chip->read_buf(mtd, buf, eccsize);
458 buf += eccsize;
459
460 host->col_addr = mtd->writesize + n * eccpitch;
461 if (chip->ecc.prepad) {
462 chip->read_buf(mtd, oob, chip->ecc.prepad);
463 oob += chip->ecc.prepad;
464 }
465
466 chip->read_buf(mtd, oob, eccbytes);
467 oob += eccbytes;
468
469 if (chip->ecc.postpad) {
470 chip->read_buf(mtd, oob, chip->ecc.postpad);
471 oob += chip->ecc.postpad;
472 }
473 }
474
475 size = mtd->oobsize - (oob - chip->oob_poi);
476 if (size)
477 chip->read_buf(mtd, oob, size);
478 _mxc_nand_enable_hwecc(mtd, 1);
479
480 return 0;
481}
482
483static int mxc_nand_read_page_syndrome(struct mtd_info *mtd,
484 struct nand_chip *chip,
485 uint8_t *buf,
486 int oob_required,
487 int page)
488{
489 struct mxc_nand_host *host = chip->priv;
490 int n, eccsize = chip->ecc.size;
491 int eccbytes = chip->ecc.bytes;
492 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
493 int eccsteps = chip->ecc.steps;
494 uint8_t *p = buf;
495 uint8_t *oob = chip->oob_poi;
496
497 MTDDEBUG(MTD_DEBUG_LEVEL1, "Reading page %u to buf %p oob %p\n",
498 page, buf, oob);
499
500
501 for (n = 0; eccsteps; n++, eccsteps--, p += eccsize) {
502 int stat;
503
504 host->col_addr = n * eccsize;
505
506 chip->read_buf(mtd, p, eccsize);
507
508 host->col_addr = mtd->writesize + n * eccpitch;
509
510 if (chip->ecc.prepad) {
511 chip->read_buf(mtd, oob, chip->ecc.prepad);
512 oob += chip->ecc.prepad;
513 }
514
515 stat = chip->ecc.correct(mtd, p, oob, NULL);
516
517 if (stat < 0)
518 mtd->ecc_stats.failed++;
519 else
520 mtd->ecc_stats.corrected += stat;
521 oob += eccbytes;
522
523 if (chip->ecc.postpad) {
524 chip->read_buf(mtd, oob, chip->ecc.postpad);
525 oob += chip->ecc.postpad;
526 }
527 }
528
529
530 n = mtd->oobsize - (oob - chip->oob_poi);
531 if (n)
532 chip->read_buf(mtd, oob, n);
533
534
535 _mxc_nand_enable_hwecc(mtd, 0);
536 chip->cmdfunc(mtd, NAND_CMD_READOOB, mtd->writesize, page);
537 eccsteps = chip->ecc.steps;
538 oob = chip->oob_poi + chip->ecc.prepad;
539 for (n = 0; eccsteps; n++, eccsteps--, p += eccsize) {
540 host->col_addr = mtd->writesize +
541 n * eccpitch +
542 chip->ecc.prepad;
543 chip->read_buf(mtd, oob, eccbytes);
544 oob += eccbytes + chip->ecc.postpad;
545 }
546 _mxc_nand_enable_hwecc(mtd, 1);
547 return 0;
548}
549
550static int mxc_nand_write_oob_syndrome(struct mtd_info *mtd,
551 struct nand_chip *chip, int page)
552{
553 struct mxc_nand_host *host = chip->priv;
554 int eccpitch = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
555 int length = mtd->oobsize;
556 int i, len, status, steps = chip->ecc.steps;
557 const uint8_t *bufpoi = chip->oob_poi;
558
559 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
560 for (i = 0; i < steps; i++) {
561 len = min_t(int, length, eccpitch);
562
563 chip->write_buf(mtd, bufpoi, len);
564 bufpoi += len;
565 length -= len;
566 host->col_addr += chip->ecc.prepad + chip->ecc.postpad;
567 }
568 if (length > 0)
569 chip->write_buf(mtd, bufpoi, length);
570
571 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
572 status = chip->waitfunc(mtd, chip);
573 return status & NAND_STATUS_FAIL ? -EIO : 0;
574}
575
576static int mxc_nand_write_page_raw_syndrome(struct mtd_info *mtd,
577 struct nand_chip *chip,
578 const uint8_t *buf,
579 int oob_required)
580{
581 struct mxc_nand_host *host = chip->priv;
582 int eccsize = chip->ecc.size;
583 int eccbytes = chip->ecc.bytes;
584 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
585 uint8_t *oob = chip->oob_poi;
586 int steps, size;
587 int n;
588
589 for (n = 0, steps = chip->ecc.steps; steps > 0; n++, steps--) {
590 host->col_addr = n * eccsize;
591 chip->write_buf(mtd, buf, eccsize);
592 buf += eccsize;
593
594 host->col_addr = mtd->writesize + n * eccpitch;
595
596 if (chip->ecc.prepad) {
597 chip->write_buf(mtd, oob, chip->ecc.prepad);
598 oob += chip->ecc.prepad;
599 }
600
601 host->col_addr += eccbytes;
602 oob += eccbytes;
603
604 if (chip->ecc.postpad) {
605 chip->write_buf(mtd, oob, chip->ecc.postpad);
606 oob += chip->ecc.postpad;
607 }
608 }
609
610 size = mtd->oobsize - (oob - chip->oob_poi);
611 if (size)
612 chip->write_buf(mtd, oob, size);
613 return 0;
614}
615
616static int mxc_nand_write_page_syndrome(struct mtd_info *mtd,
617 struct nand_chip *chip,
618 const uint8_t *buf,
619 int oob_required)
620{
621 struct mxc_nand_host *host = chip->priv;
622 int i, n, eccsize = chip->ecc.size;
623 int eccbytes = chip->ecc.bytes;
624 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
625 int eccsteps = chip->ecc.steps;
626 const uint8_t *p = buf;
627 uint8_t *oob = chip->oob_poi;
628
629 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
630
631 for (i = n = 0;
632 eccsteps;
633 n++, eccsteps--, i += eccbytes, p += eccsize) {
634 host->col_addr = n * eccsize;
635
636 chip->write_buf(mtd, p, eccsize);
637
638 host->col_addr = mtd->writesize + n * eccpitch;
639
640 if (chip->ecc.prepad) {
641 chip->write_buf(mtd, oob, chip->ecc.prepad);
642 oob += chip->ecc.prepad;
643 }
644
645 chip->write_buf(mtd, oob, eccbytes);
646 oob += eccbytes;
647
648 if (chip->ecc.postpad) {
649 chip->write_buf(mtd, oob, chip->ecc.postpad);
650 oob += chip->ecc.postpad;
651 }
652 }
653
654
655 i = mtd->oobsize - (oob - chip->oob_poi);
656 if (i)
657 chip->write_buf(mtd, oob, i);
658 return 0;
659}
660
661static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat,
662 u_char *read_ecc, u_char *calc_ecc)
663{
664 struct nand_chip *nand_chip = mtd->priv;
665 struct mxc_nand_host *host = nand_chip->priv;
666 uint32_t ecc_status = readl(&host->regs->ecc_status_result);
667 int subpages = mtd->writesize / nand_chip->subpagesize;
668 int pg2blk_shift = nand_chip->phys_erase_shift -
669 nand_chip->page_shift;
670
671 do {
672 if ((ecc_status & 0xf) > 4) {
673 static int last_bad = -1;
674
675 if (last_bad != host->page_addr >> pg2blk_shift) {
676 last_bad = host->page_addr >> pg2blk_shift;
677 printk(KERN_DEBUG
678 "MXC_NAND: HWECC uncorrectable ECC error"
679 " in block %u page %u subpage %d\n",
680 last_bad, host->page_addr,
681 mtd->writesize / nand_chip->subpagesize
682 - subpages);
683 }
684 return -1;
685 }
686 ecc_status >>= 4;
687 subpages--;
688 } while (subpages > 0);
689
690 return 0;
691}
692#else
693#define mxc_nand_read_page_syndrome NULL
694#define mxc_nand_read_page_raw_syndrome NULL
695#define mxc_nand_read_oob_syndrome NULL
696#define mxc_nand_write_page_syndrome NULL
697#define mxc_nand_write_page_raw_syndrome NULL
698#define mxc_nand_write_oob_syndrome NULL
699
700static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat,
701 u_char *read_ecc, u_char *calc_ecc)
702{
703 struct nand_chip *nand_chip = mtd->priv;
704 struct mxc_nand_host *host = nand_chip->priv;
705
706
707
708
709
710
711 uint16_t ecc_status = readnfc(&host->regs->ecc_status_result);
712
713 if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) {
714 MTDDEBUG(MTD_DEBUG_LEVEL0,
715 "MXC_NAND: HWECC uncorrectable 2-bit ECC error\n");
716 return -1;
717 }
718
719 return 0;
720}
721#endif
722
723static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
724 u_char *ecc_code)
725{
726 return 0;
727}
728#endif
729
730static u_char mxc_nand_read_byte(struct mtd_info *mtd)
731{
732 struct nand_chip *nand_chip = mtd->priv;
733 struct mxc_nand_host *host = nand_chip->priv;
734 uint8_t ret = 0;
735 uint16_t col;
736 uint16_t __iomem *main_buf =
737 (uint16_t __iomem *)host->regs->main_area[0];
738 uint16_t __iomem *spare_buf =
739 (uint16_t __iomem *)host->regs->spare_area[0];
740 union {
741 uint16_t word;
742 uint8_t bytes[2];
743 } nfc_word;
744
745
746 if (host->status_request)
747 return get_dev_status(host) & 0xFF;
748
749
750 col = host->col_addr >> 1;
751
752
753 if (host->spare_only)
754 nfc_word.word = readw(&spare_buf[col]);
755 else
756 nfc_word.word = readw(&main_buf[col]);
757
758
759 ret = nfc_word.bytes[host->col_addr & 0x1];
760
761
762 if (nand_chip->options & NAND_BUSWIDTH_16)
763 host->col_addr += 2;
764 else
765 host->col_addr++;
766
767 return ret;
768}
769
770static uint16_t mxc_nand_read_word(struct mtd_info *mtd)
771{
772 struct nand_chip *nand_chip = mtd->priv;
773 struct mxc_nand_host *host = nand_chip->priv;
774 uint16_t col, ret;
775 uint16_t __iomem *p;
776
777 MTDDEBUG(MTD_DEBUG_LEVEL3,
778 "mxc_nand_read_word(col = %d)\n", host->col_addr);
779
780 col = host->col_addr;
781
782 if (col < mtd->writesize && host->spare_only)
783 col += mtd->writesize;
784
785 if (col < mtd->writesize) {
786 p = (uint16_t __iomem *)(host->regs->main_area[0] +
787 (col >> 1));
788 } else {
789 p = (uint16_t __iomem *)(host->regs->spare_area[0] +
790 ((col - mtd->writesize) >> 1));
791 }
792
793 if (col & 1) {
794 union {
795 uint16_t word;
796 uint8_t bytes[2];
797 } nfc_word[3];
798
799 nfc_word[0].word = readw(p);
800 nfc_word[1].word = readw(p + 1);
801
802 nfc_word[2].bytes[0] = nfc_word[0].bytes[1];
803 nfc_word[2].bytes[1] = nfc_word[1].bytes[0];
804
805 ret = nfc_word[2].word;
806 } else {
807 ret = readw(p);
808 }
809
810
811 host->col_addr = col + 2;
812
813 return ret;
814}
815
816
817
818
819
820
821static void mxc_nand_write_buf(struct mtd_info *mtd,
822 const u_char *buf, int len)
823{
824 struct nand_chip *nand_chip = mtd->priv;
825 struct mxc_nand_host *host = nand_chip->priv;
826 int n, col, i = 0;
827
828 MTDDEBUG(MTD_DEBUG_LEVEL3,
829 "mxc_nand_write_buf(col = %d, len = %d)\n", host->col_addr,
830 len);
831
832 col = host->col_addr;
833
834
835 if (col < mtd->writesize && host->spare_only)
836 col += mtd->writesize;
837
838 n = mtd->writesize + mtd->oobsize - col;
839 n = min(len, n);
840
841 MTDDEBUG(MTD_DEBUG_LEVEL3,
842 "%s:%d: col = %d, n = %d\n", __func__, __LINE__, col, n);
843
844 while (n > 0) {
845 void __iomem *p;
846
847 if (col < mtd->writesize) {
848 p = host->regs->main_area[0] + (col & ~3);
849 } else {
850 p = host->regs->spare_area[0] -
851 mtd->writesize + (col & ~3);
852 }
853
854 MTDDEBUG(MTD_DEBUG_LEVEL3, "%s:%d: p = %p\n", __func__,
855 __LINE__, p);
856
857 if (((col | (unsigned long)&buf[i]) & 3) || n < 4) {
858 union {
859 uint32_t word;
860 uint8_t bytes[4];
861 } nfc_word;
862
863 nfc_word.word = readl(p);
864 nfc_word.bytes[col & 3] = buf[i++];
865 n--;
866 col++;
867
868 writel(nfc_word.word, p);
869 } else {
870 int m = mtd->writesize - col;
871
872 if (col >= mtd->writesize)
873 m += mtd->oobsize;
874
875 m = min(n, m) & ~3;
876
877 MTDDEBUG(MTD_DEBUG_LEVEL3,
878 "%s:%d: n = %d, m = %d, i = %d, col = %d\n",
879 __func__, __LINE__, n, m, i, col);
880
881 mxc_nand_memcpy32(p, (uint32_t *)&buf[i], m);
882 col += m;
883 i += m;
884 n -= m;
885 }
886 }
887
888 host->col_addr = col;
889}
890
891
892
893
894
895
896static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
897{
898 struct nand_chip *nand_chip = mtd->priv;
899 struct mxc_nand_host *host = nand_chip->priv;
900 int n, col, i = 0;
901
902 MTDDEBUG(MTD_DEBUG_LEVEL3,
903 "mxc_nand_read_buf(col = %d, len = %d)\n", host->col_addr, len);
904
905 col = host->col_addr;
906
907
908 if (col < mtd->writesize && host->spare_only)
909 col += mtd->writesize;
910
911 n = mtd->writesize + mtd->oobsize - col;
912 n = min(len, n);
913
914 while (n > 0) {
915 void __iomem *p;
916
917 if (col < mtd->writesize) {
918 p = host->regs->main_area[0] + (col & ~3);
919 } else {
920 p = host->regs->spare_area[0] -
921 mtd->writesize + (col & ~3);
922 }
923
924 if (((col | (int)&buf[i]) & 3) || n < 4) {
925 union {
926 uint32_t word;
927 uint8_t bytes[4];
928 } nfc_word;
929
930 nfc_word.word = readl(p);
931 buf[i++] = nfc_word.bytes[col & 3];
932 n--;
933 col++;
934 } else {
935 int m = mtd->writesize - col;
936
937 if (col >= mtd->writesize)
938 m += mtd->oobsize;
939
940 m = min(n, m) & ~3;
941 mxc_nand_memcpy32((uint32_t *)&buf[i], p, m);
942
943 col += m;
944 i += m;
945 n -= m;
946 }
947 }
948
949 host->col_addr = col;
950}
951
952
953
954
955
956static void mxc_nand_select_chip(struct mtd_info *mtd, int chip)
957{
958 struct nand_chip *nand_chip = mtd->priv;
959 struct mxc_nand_host *host = nand_chip->priv;
960
961 switch (chip) {
962 case -1:
963
964 if (host->clk_act)
965 host->clk_act = 0;
966 break;
967 case 0:
968
969 if (!host->clk_act)
970 host->clk_act = 1;
971 break;
972
973 default:
974 break;
975 }
976}
977
978
979
980
981
982void mxc_nand_command(struct mtd_info *mtd, unsigned command,
983 int column, int page_addr)
984{
985 struct nand_chip *nand_chip = mtd->priv;
986 struct mxc_nand_host *host = nand_chip->priv;
987
988 MTDDEBUG(MTD_DEBUG_LEVEL3,
989 "mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n",
990 command, column, page_addr);
991
992
993 host->status_request = false;
994
995
996 switch (command) {
997
998 case NAND_CMD_STATUS:
999 host->col_addr = 0;
1000 host->status_request = true;
1001 break;
1002
1003 case NAND_CMD_READ0:
1004 host->page_addr = page_addr;
1005 host->col_addr = column;
1006 host->spare_only = false;
1007 break;
1008
1009 case NAND_CMD_READOOB:
1010 host->col_addr = column;
1011 host->spare_only = true;
1012 if (host->pagesize_2k)
1013 command = NAND_CMD_READ0;
1014 break;
1015
1016 case NAND_CMD_SEQIN:
1017 if (column >= mtd->writesize) {
1018
1019
1020
1021
1022
1023
1024
1025 if (host->pagesize_2k) {
1026
1027 mxc_nand_command(mtd, NAND_CMD_READ0, 0,
1028 page_addr);
1029 }
1030
1031 host->col_addr = column - mtd->writesize;
1032 host->spare_only = true;
1033
1034
1035 if (!host->pagesize_2k)
1036 send_cmd(host, NAND_CMD_READOOB);
1037 } else {
1038 host->spare_only = false;
1039 host->col_addr = column;
1040
1041
1042 if (!host->pagesize_2k)
1043 send_cmd(host, NAND_CMD_READ0);
1044 }
1045 break;
1046
1047 case NAND_CMD_PAGEPROG:
1048 send_prog_page(host, 0, host->spare_only);
1049
1050 if (host->pagesize_2k && is_mxc_nfc_1()) {
1051
1052 send_prog_page(host, 1, host->spare_only);
1053 send_prog_page(host, 2, host->spare_only);
1054 send_prog_page(host, 3, host->spare_only);
1055 }
1056
1057 break;
1058 }
1059
1060
1061 send_cmd(host, command);
1062
1063
1064 if (column != -1) {
1065
1066
1067
1068
1069
1070
1071 send_addr(host, 0);
1072 if (host->pagesize_2k)
1073
1074 send_addr(host, 0);
1075 }
1076
1077
1078 if (page_addr != -1) {
1079 u32 page_mask = nand_chip->pagemask;
1080 do {
1081 send_addr(host, page_addr & 0xFF);
1082 page_addr >>= 8;
1083 page_mask >>= 8;
1084 } while (page_mask);
1085 }
1086
1087
1088 switch (command) {
1089
1090 case NAND_CMD_RESET:
1091 break;
1092
1093 case NAND_CMD_READOOB:
1094 case NAND_CMD_READ0:
1095 if (host->pagesize_2k) {
1096
1097 send_cmd(host, NAND_CMD_READSTART);
1098
1099 send_read_page(host, 0, host->spare_only);
1100 if (is_mxc_nfc_1()) {
1101 send_read_page(host, 1, host->spare_only);
1102 send_read_page(host, 2, host->spare_only);
1103 send_read_page(host, 3, host->spare_only);
1104 }
1105 } else {
1106 send_read_page(host, 0, host->spare_only);
1107 }
1108 break;
1109
1110 case NAND_CMD_READID:
1111 host->col_addr = 0;
1112 send_read_id(host);
1113 break;
1114
1115 case NAND_CMD_PAGEPROG:
1116 break;
1117
1118 case NAND_CMD_STATUS:
1119 break;
1120
1121 case NAND_CMD_ERASE2:
1122 break;
1123 }
1124}
1125
1126#ifdef CONFIG_SYS_NAND_USE_FLASH_BBT
1127
1128static u8 bbt_pattern[] = {'B', 'b', 't', '0' };
1129static u8 mirror_pattern[] = {'1', 't', 'b', 'B' };
1130
1131static struct nand_bbt_descr bbt_main_descr = {
1132 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
1133 NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1134 .offs = 0,
1135 .len = 4,
1136 .veroffs = 4,
1137 .maxblocks = 4,
1138 .pattern = bbt_pattern,
1139};
1140
1141static struct nand_bbt_descr bbt_mirror_descr = {
1142 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
1143 NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1144 .offs = 0,
1145 .len = 4,
1146 .veroffs = 4,
1147 .maxblocks = 4,
1148 .pattern = mirror_pattern,
1149};
1150
1151#endif
1152
1153int board_nand_init(struct nand_chip *this)
1154{
1155 struct mtd_info *mtd;
1156#if defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
1157 uint32_t tmp;
1158#endif
1159
1160#ifdef CONFIG_SYS_NAND_USE_FLASH_BBT
1161 this->bbt_options |= NAND_BBT_USE_FLASH;
1162 this->bbt_td = &bbt_main_descr;
1163 this->bbt_md = &bbt_mirror_descr;
1164#endif
1165
1166
1167 mtd = &host->mtd;
1168 mtd->priv = this;
1169 host->nand = this;
1170
1171
1172 this->chip_delay = 5;
1173
1174 this->priv = host;
1175 this->dev_ready = mxc_nand_dev_ready;
1176 this->cmdfunc = mxc_nand_command;
1177 this->select_chip = mxc_nand_select_chip;
1178 this->read_byte = mxc_nand_read_byte;
1179 this->read_word = mxc_nand_read_word;
1180 this->write_buf = mxc_nand_write_buf;
1181 this->read_buf = mxc_nand_read_buf;
1182
1183 host->regs = (struct mxc_nand_regs __iomem *)CONFIG_MXC_NAND_REGS_BASE;
1184#ifdef MXC_NFC_V3_2
1185 host->ip_regs =
1186 (struct mxc_nand_ip_regs __iomem *)CONFIG_MXC_NAND_IP_REGS_BASE;
1187#endif
1188 host->clk_act = 1;
1189
1190#ifdef CONFIG_MXC_NAND_HWECC
1191 this->ecc.calculate = mxc_nand_calculate_ecc;
1192 this->ecc.hwctl = mxc_nand_enable_hwecc;
1193 this->ecc.correct = mxc_nand_correct_data;
1194 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
1195 this->ecc.mode = NAND_ECC_HW_SYNDROME;
1196 this->ecc.read_page = mxc_nand_read_page_syndrome;
1197 this->ecc.read_page_raw = mxc_nand_read_page_raw_syndrome;
1198 this->ecc.read_oob = mxc_nand_read_oob_syndrome;
1199 this->ecc.write_page = mxc_nand_write_page_syndrome;
1200 this->ecc.write_page_raw = mxc_nand_write_page_raw_syndrome;
1201 this->ecc.write_oob = mxc_nand_write_oob_syndrome;
1202 this->ecc.bytes = 9;
1203 this->ecc.prepad = 7;
1204 } else {
1205 this->ecc.mode = NAND_ECC_HW;
1206 }
1207
1208 if (is_mxc_nfc_1())
1209 this->ecc.strength = 1;
1210 else
1211 this->ecc.strength = 4;
1212
1213 host->pagesize_2k = 0;
1214
1215 this->ecc.size = 512;
1216 _mxc_nand_enable_hwecc(mtd, 1);
1217#else
1218 this->ecc.layout = &nand_soft_eccoob;
1219 this->ecc.mode = NAND_ECC_SOFT;
1220 _mxc_nand_enable_hwecc(mtd, 0);
1221#endif
1222
1223 this->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1224
1225
1226 if (is_16bit_nand())
1227 this->options |= NAND_BUSWIDTH_16;
1228
1229#ifdef CONFIG_SYS_NAND_LARGEPAGE
1230 host->pagesize_2k = 1;
1231 this->ecc.layout = &nand_hw_eccoob2k;
1232#else
1233 host->pagesize_2k = 0;
1234 this->ecc.layout = &nand_hw_eccoob;
1235#endif
1236
1237#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
1238#ifdef MXC_NFC_V2_1
1239 tmp = readnfc(&host->regs->config1);
1240 tmp |= NFC_V2_CONFIG1_ONE_CYCLE;
1241 tmp |= NFC_V2_CONFIG1_ECC_MODE_4;
1242 writenfc(tmp, &host->regs->config1);
1243 if (host->pagesize_2k)
1244 writenfc(64/2, &host->regs->spare_area_size);
1245 else
1246 writenfc(16/2, &host->regs->spare_area_size);
1247#endif
1248
1249
1250
1251
1252
1253 writenfc(0x2, &host->regs->config);
1254
1255
1256 writenfc(0x0, &host->regs->unlockstart_blkaddr);
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268 writenfc(0xFFFF, &host->regs->unlockend_blkaddr);
1269
1270
1271 writenfc(0x4, &host->regs->wrprot);
1272#elif defined(MXC_NFC_V3_2)
1273 writenfc(NFC_V3_CONFIG1_RBA(0), &host->regs->config1);
1274 writenfc(NFC_V3_IPC_CREQ, &host->ip_regs->ipc);
1275
1276
1277 writenfc(NFC_V3_WRPROT_BLS_UNLOCK | NFC_V3_WRPROT_UNLOCK,
1278 &host->ip_regs->wrprot);
1279
1280
1281 for (tmp = 0; tmp < CONFIG_SYS_NAND_MAX_CHIPS; tmp++)
1282 writenfc(0x0 | 0xFFFF << 16,
1283 &host->ip_regs->wrprot_unlock_blkaddr[tmp]);
1284
1285 writenfc(0, &host->ip_regs->ipc);
1286
1287 tmp = readnfc(&host->ip_regs->config2);
1288 tmp &= ~(NFC_V3_CONFIG2_SPAS_MASK | NFC_V3_CONFIG2_EDC_MASK |
1289 NFC_V3_CONFIG2_ECC_MODE_8 | NFC_V3_CONFIG2_PS_MASK);
1290 tmp |= NFC_V3_CONFIG2_ONE_CYCLE;
1291
1292 if (host->pagesize_2k) {
1293 tmp |= NFC_V3_CONFIG2_SPAS(64/2);
1294 tmp |= NFC_V3_CONFIG2_PS_2048;
1295 } else {
1296 tmp |= NFC_V3_CONFIG2_SPAS(16/2);
1297 tmp |= NFC_V3_CONFIG2_PS_512;
1298 }
1299
1300 writenfc(tmp, &host->ip_regs->config2);
1301
1302 tmp = NFC_V3_CONFIG3_NUM_OF_DEVS(0) |
1303 NFC_V3_CONFIG3_NO_SDMA |
1304 NFC_V3_CONFIG3_RBB_MODE |
1305 NFC_V3_CONFIG3_SBB(6) |
1306 NFC_V3_CONFIG3_ADD_OP(0);
1307
1308 if (!(this->options & NAND_BUSWIDTH_16))
1309 tmp |= NFC_V3_CONFIG3_FW8;
1310
1311 writenfc(tmp, &host->ip_regs->config3);
1312
1313 writenfc(0, &host->ip_regs->delay_line);
1314#endif
1315
1316 return 0;
1317}
1318