2 * drivers/mtd/nand/pxa3xx_nand.c
4 * Copyright © 2005 Intel Corporation
5 * Copyright © 2006 Marvell International Ltd.
7 * SPDX-License-Identifier: GPL-2.0
13 #include <asm/errno.h>
15 #include <asm/arch/cpu.h>
16 #include <linux/mtd/mtd.h>
17 #include <linux/mtd/nand.h>
18 #include <linux/types.h>
20 #include "pxa3xx_nand.h"
22 /* Some U-Boot compatibility macros */
23 #define writesl(a, d, s) __raw_writesl((unsigned long)a, d, s)
24 #define readsl(a, d, s) __raw_readsl((unsigned long)a, d, s)
25 #define writesw(a, d, s) __raw_writesw((unsigned long)a, d, s)
26 #define readsw(a, d, s) __raw_readsw((unsigned long)a, d, s)
27 #define writesb(a, d, s) __raw_writesb((unsigned long)a, d, s)
28 #define readsb(a, d, s) __raw_readsb((unsigned long)a, d, s)
30 #define TIMEOUT_DRAIN_FIFO 5 /* in ms */
31 #define CHIP_DELAY_TIMEOUT 200
32 #define NAND_STOP_DELAY 40
33 #define PAGE_CHUNK_SIZE (2048)
36 * Define a buffer size for the initial command that detects the flash device:
37 * STATUS, READID and PARAM. The largest of these is the PARAM command,
40 #define INIT_BUFFER_SIZE 256
42 /* registers and bit definitions */
43 #define NDCR (0x00) /* Control register */
44 #define NDTR0CS0 (0x04) /* Timing Parameter 0 for CS0 */
45 #define NDTR1CS0 (0x0C) /* Timing Parameter 1 for CS0 */
46 #define NDSR (0x14) /* Status Register */
47 #define NDPCR (0x18) /* Page Count Register */
48 #define NDBDR0 (0x1C) /* Bad Block Register 0 */
49 #define NDBDR1 (0x20) /* Bad Block Register 1 */
50 #define NDECCCTRL (0x28) /* ECC control */
51 #define NDDB (0x40) /* Data Buffer */
52 #define NDCB0 (0x48) /* Command Buffer0 */
53 #define NDCB1 (0x4C) /* Command Buffer1 */
54 #define NDCB2 (0x50) /* Command Buffer2 */
56 #define NDCR_SPARE_EN (0x1 << 31)
57 #define NDCR_ECC_EN (0x1 << 30)
58 #define NDCR_DMA_EN (0x1 << 29)
59 #define NDCR_ND_RUN (0x1 << 28)
60 #define NDCR_DWIDTH_C (0x1 << 27)
61 #define NDCR_DWIDTH_M (0x1 << 26)
62 #define NDCR_PAGE_SZ (0x1 << 24)
63 #define NDCR_NCSX (0x1 << 23)
64 #define NDCR_ND_MODE (0x3 << 21)
65 #define NDCR_NAND_MODE (0x0)
66 #define NDCR_CLR_PG_CNT (0x1 << 20)
67 #define NDCR_STOP_ON_UNCOR (0x1 << 19)
68 #define NDCR_RD_ID_CNT_MASK (0x7 << 16)
69 #define NDCR_RD_ID_CNT(x) (((x) << 16) & NDCR_RD_ID_CNT_MASK)
71 #define NDCR_RA_START (0x1 << 15)
72 #define NDCR_PG_PER_BLK (0x1 << 14)
73 #define NDCR_ND_ARB_EN (0x1 << 12)
74 #define NDCR_INT_MASK (0xFFF)
76 #define NDSR_MASK (0xfff)
77 #define NDSR_ERR_CNT_OFF (16)
78 #define NDSR_ERR_CNT_MASK (0x1f)
79 #define NDSR_ERR_CNT(sr) ((sr >> NDSR_ERR_CNT_OFF) & NDSR_ERR_CNT_MASK)
80 #define NDSR_RDY (0x1 << 12)
81 #define NDSR_FLASH_RDY (0x1 << 11)
82 #define NDSR_CS0_PAGED (0x1 << 10)
83 #define NDSR_CS1_PAGED (0x1 << 9)
84 #define NDSR_CS0_CMDD (0x1 << 8)
85 #define NDSR_CS1_CMDD (0x1 << 7)
86 #define NDSR_CS0_BBD (0x1 << 6)
87 #define NDSR_CS1_BBD (0x1 << 5)
88 #define NDSR_UNCORERR (0x1 << 4)
89 #define NDSR_CORERR (0x1 << 3)
90 #define NDSR_WRDREQ (0x1 << 2)
91 #define NDSR_RDDREQ (0x1 << 1)
92 #define NDSR_WRCMDREQ (0x1)
94 #define NDCB0_LEN_OVRD (0x1 << 28)
95 #define NDCB0_ST_ROW_EN (0x1 << 26)
96 #define NDCB0_AUTO_RS (0x1 << 25)
97 #define NDCB0_CSEL (0x1 << 24)
98 #define NDCB0_EXT_CMD_TYPE_MASK (0x7 << 29)
99 #define NDCB0_EXT_CMD_TYPE(x) (((x) << 29) & NDCB0_EXT_CMD_TYPE_MASK)
100 #define NDCB0_CMD_TYPE_MASK (0x7 << 21)
101 #define NDCB0_CMD_TYPE(x) (((x) << 21) & NDCB0_CMD_TYPE_MASK)
102 #define NDCB0_NC (0x1 << 20)
103 #define NDCB0_DBC (0x1 << 19)
104 #define NDCB0_ADDR_CYC_MASK (0x7 << 16)
105 #define NDCB0_ADDR_CYC(x) (((x) << 16) & NDCB0_ADDR_CYC_MASK)
106 #define NDCB0_CMD2_MASK (0xff << 8)
107 #define NDCB0_CMD1_MASK (0xff)
108 #define NDCB0_ADDR_CYC_SHIFT (16)
110 #define EXT_CMD_TYPE_DISPATCH 6 /* Command dispatch */
111 #define EXT_CMD_TYPE_NAKED_RW 5 /* Naked read or Naked write */
112 #define EXT_CMD_TYPE_READ 4 /* Read */
113 #define EXT_CMD_TYPE_DISP_WR 4 /* Command dispatch with write */
114 #define EXT_CMD_TYPE_FINAL 3 /* Final command */
115 #define EXT_CMD_TYPE_LAST_RW 1 /* Last naked read/write */
116 #define EXT_CMD_TYPE_MONO 0 /* Monolithic read/write */
118 /* macros for registers read/write */
119 #define nand_writel(info, off, val) \
120 writel((val), (info)->mmio_base + (off))
122 #define nand_readl(info, off) \
123 readl((info)->mmio_base + (off))
125 /* error code and state */
148 enum pxa3xx_nand_variant {
149 PXA3XX_NAND_VARIANT_PXA,
150 PXA3XX_NAND_VARIANT_ARMADA370,
153 struct pxa3xx_nand_host {
154 struct nand_chip chip;
155 struct mtd_info *mtd;
158 /* page size of attached chip */
162 /* calculated from pxa3xx_nand_flash data */
163 unsigned int col_addr_cycles;
164 unsigned int row_addr_cycles;
165 size_t read_id_bytes;
169 struct pxa3xx_nand_info {
170 struct nand_hw_control controller;
171 struct pxa3xx_nand_platform_data *pdata;
174 void __iomem *mmio_base;
175 unsigned long mmio_phys;
176 int cmd_complete, dev_ready;
178 unsigned int buf_start;
179 unsigned int buf_count;
180 unsigned int buf_size;
181 unsigned int data_buff_pos;
182 unsigned int oob_buff_pos;
184 unsigned char *data_buff;
185 unsigned char *oob_buff;
187 struct pxa3xx_nand_host *host[NUM_CHIP_SELECT];
191 * This driver supports NFCv1 (as found in PXA SoC)
192 * and NFCv2 (as found in Armada 370/XP SoC).
194 enum pxa3xx_nand_variant variant;
197 int use_ecc; /* use HW ECC ? */
198 int ecc_bch; /* using BCH ECC? */
199 int use_spare; /* use spare ? */
202 unsigned int data_size; /* data to be read from FIFO */
203 unsigned int chunk_size; /* split commands chunk size */
204 unsigned int oob_size;
205 unsigned int spare_size;
206 unsigned int ecc_size;
207 unsigned int ecc_err_cnt;
208 unsigned int max_bitflips;
211 /* cached register value */
216 /* generated NDCBx register values */
223 static struct pxa3xx_nand_timing timing[] = {
224 { 40, 80, 60, 100, 80, 100, 90000, 400, 40, },
225 { 10, 0, 20, 40, 30, 40, 11123, 110, 10, },
226 { 10, 25, 15, 25, 15, 30, 25000, 60, 10, },
227 { 10, 35, 15, 25, 15, 25, 25000, 60, 10, },
230 static struct pxa3xx_nand_flash builtin_flash_types[] = {
231 { 0x46ec, 16, 16, &timing[1] },
232 { 0xdaec, 8, 8, &timing[1] },
233 { 0xd7ec, 8, 8, &timing[1] },
234 { 0xa12c, 8, 8, &timing[2] },
235 { 0xb12c, 16, 16, &timing[2] },
236 { 0xdc2c, 8, 8, &timing[2] },
237 { 0xcc2c, 16, 16, &timing[2] },
238 { 0xba20, 16, 16, &timing[3] },
241 static u8 bbt_pattern[] = {'M', 'V', 'B', 'b', 't', '0' };
242 static u8 bbt_mirror_pattern[] = {'1', 't', 'b', 'B', 'V', 'M' };
244 static struct nand_bbt_descr bbt_main_descr = {
245 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
246 | NAND_BBT_2BIT | NAND_BBT_VERSION,
250 .maxblocks = 8, /* Last 8 blocks in each chip */
251 .pattern = bbt_pattern
254 static struct nand_bbt_descr bbt_mirror_descr = {
255 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
256 | NAND_BBT_2BIT | NAND_BBT_VERSION,
260 .maxblocks = 8, /* Last 8 blocks in each chip */
261 .pattern = bbt_mirror_pattern
264 static struct nand_ecclayout ecc_layout_2KB_bch4bit = {
267 32, 33, 34, 35, 36, 37, 38, 39,
268 40, 41, 42, 43, 44, 45, 46, 47,
269 48, 49, 50, 51, 52, 53, 54, 55,
270 56, 57, 58, 59, 60, 61, 62, 63},
271 .oobfree = { {2, 30} }
274 static struct nand_ecclayout ecc_layout_4KB_bch4bit = {
277 32, 33, 34, 35, 36, 37, 38, 39,
278 40, 41, 42, 43, 44, 45, 46, 47,
279 48, 49, 50, 51, 52, 53, 54, 55,
280 56, 57, 58, 59, 60, 61, 62, 63,
281 96, 97, 98, 99, 100, 101, 102, 103,
282 104, 105, 106, 107, 108, 109, 110, 111,
283 112, 113, 114, 115, 116, 117, 118, 119,
284 120, 121, 122, 123, 124, 125, 126, 127},
285 /* Bootrom looks in bytes 0 & 5 for bad blocks */
286 .oobfree = { {6, 26}, { 64, 32} }
289 static struct nand_ecclayout ecc_layout_4KB_bch8bit = {
292 32, 33, 34, 35, 36, 37, 38, 39,
293 40, 41, 42, 43, 44, 45, 46, 47,
294 48, 49, 50, 51, 52, 53, 54, 55,
295 56, 57, 58, 59, 60, 61, 62, 63},
299 #define NDTR0_tCH(c) (min((c), 7) << 19)
300 #define NDTR0_tCS(c) (min((c), 7) << 16)
301 #define NDTR0_tWH(c) (min((c), 7) << 11)
302 #define NDTR0_tWP(c) (min((c), 7) << 8)
303 #define NDTR0_tRH(c) (min((c), 7) << 3)
304 #define NDTR0_tRP(c) (min((c), 7) << 0)
306 #define NDTR1_tR(c) (min((c), 65535) << 16)
307 #define NDTR1_tWHR(c) (min((c), 15) << 4)
308 #define NDTR1_tAR(c) (min((c), 15) << 0)
310 /* convert nano-seconds to nand flash controller clock cycles */
311 #define ns2cycle(ns, clk) (int)((ns) * (clk / 1000000) / 1000)
313 static enum pxa3xx_nand_variant pxa3xx_nand_get_variant(void)
315 /* We only support the Armada 370/XP/38x for now */
316 return PXA3XX_NAND_VARIANT_ARMADA370;
319 static void pxa3xx_nand_set_timing(struct pxa3xx_nand_host *host,
320 const struct pxa3xx_nand_timing *t)
322 struct pxa3xx_nand_info *info = host->info_data;
323 unsigned long nand_clk = mvebu_get_nand_clock();
324 uint32_t ndtr0, ndtr1;
326 ndtr0 = NDTR0_tCH(ns2cycle(t->tCH, nand_clk)) |
327 NDTR0_tCS(ns2cycle(t->tCS, nand_clk)) |
328 NDTR0_tWH(ns2cycle(t->tWH, nand_clk)) |
329 NDTR0_tWP(ns2cycle(t->tWP, nand_clk)) |
330 NDTR0_tRH(ns2cycle(t->tRH, nand_clk)) |
331 NDTR0_tRP(ns2cycle(t->tRP, nand_clk));
333 ndtr1 = NDTR1_tR(ns2cycle(t->tR, nand_clk)) |
334 NDTR1_tWHR(ns2cycle(t->tWHR, nand_clk)) |
335 NDTR1_tAR(ns2cycle(t->tAR, nand_clk));
337 info->ndtr0cs0 = ndtr0;
338 info->ndtr1cs0 = ndtr1;
339 nand_writel(info, NDTR0CS0, ndtr0);
340 nand_writel(info, NDTR1CS0, ndtr1);
343 static void pxa3xx_nand_set_sdr_timing(struct pxa3xx_nand_host *host,
344 const struct nand_sdr_timings *t)
346 struct pxa3xx_nand_info *info = host->info_data;
347 struct nand_chip *chip = &host->chip;
348 unsigned long nand_clk = mvebu_get_nand_clock();
349 uint32_t ndtr0, ndtr1;
351 u32 tCH_min = DIV_ROUND_UP(t->tCH_min, 1000);
352 u32 tCS_min = DIV_ROUND_UP(t->tCS_min, 1000);
353 u32 tWH_min = DIV_ROUND_UP(t->tWH_min, 1000);
354 u32 tWP_min = DIV_ROUND_UP(t->tWC_min - tWH_min, 1000);
355 u32 tREH_min = DIV_ROUND_UP(t->tREH_min, 1000);
356 u32 tRP_min = DIV_ROUND_UP(t->tRC_min - tREH_min, 1000);
357 u32 tR = chip->chip_delay * 1000;
358 u32 tWHR_min = DIV_ROUND_UP(t->tWHR_min, 1000);
359 u32 tAR_min = DIV_ROUND_UP(t->tAR_min, 1000);
361 /* fallback to a default value if tR = 0 */
365 ndtr0 = NDTR0_tCH(ns2cycle(tCH_min, nand_clk)) |
366 NDTR0_tCS(ns2cycle(tCS_min, nand_clk)) |
367 NDTR0_tWH(ns2cycle(tWH_min, nand_clk)) |
368 NDTR0_tWP(ns2cycle(tWP_min, nand_clk)) |
369 NDTR0_tRH(ns2cycle(tREH_min, nand_clk)) |
370 NDTR0_tRP(ns2cycle(tRP_min, nand_clk));
372 ndtr1 = NDTR1_tR(ns2cycle(tR, nand_clk)) |
373 NDTR1_tWHR(ns2cycle(tWHR_min, nand_clk)) |
374 NDTR1_tAR(ns2cycle(tAR_min, nand_clk));
376 info->ndtr0cs0 = ndtr0;
377 info->ndtr1cs0 = ndtr1;
378 nand_writel(info, NDTR0CS0, ndtr0);
379 nand_writel(info, NDTR1CS0, ndtr1);
382 static int pxa3xx_nand_init_timings(struct pxa3xx_nand_host *host)
384 const struct nand_sdr_timings *timings;
385 struct nand_chip *chip = &host->chip;
386 struct pxa3xx_nand_info *info = host->info_data;
387 const struct pxa3xx_nand_flash *f = NULL;
388 int mode, id, ntypes, i;
390 mode = onfi_get_async_timing_mode(chip);
391 if (mode == ONFI_TIMING_MODE_UNKNOWN) {
392 ntypes = ARRAY_SIZE(builtin_flash_types);
394 chip->cmdfunc(host->mtd, NAND_CMD_READID, 0x00, -1);
396 id = chip->read_byte(host->mtd);
397 id |= chip->read_byte(host->mtd) << 0x8;
399 for (i = 0; i < ntypes; i++) {
400 f = &builtin_flash_types[i];
402 if (f->chip_id == id)
407 dev_err(&info->pdev->dev, "Error: timings not found\n");
411 pxa3xx_nand_set_timing(host, f->timing);
413 if (f->flash_width == 16) {
414 info->reg_ndcr |= NDCR_DWIDTH_M;
415 chip->options |= NAND_BUSWIDTH_16;
418 info->reg_ndcr |= (f->dfc_width == 16) ? NDCR_DWIDTH_C : 0;
420 mode = fls(mode) - 1;
424 timings = onfi_async_timing_mode_to_sdr_timings(mode);
426 return PTR_ERR(timings);
428 pxa3xx_nand_set_sdr_timing(host, timings);
435 * Set the data and OOB size, depending on the selected
436 * spare and ECC configuration.
437 * Only applicable to READ0, READOOB and PAGEPROG commands.
439 static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info,
440 struct mtd_info *mtd)
442 int oob_enable = info->reg_ndcr & NDCR_SPARE_EN;
444 info->data_size = mtd->writesize;
448 info->oob_size = info->spare_size;
450 info->oob_size += info->ecc_size;
454 * NOTE: it is a must to set ND_RUN first, then write
455 * command buffer, otherwise, it does not work.
456 * We enable all the interrupt at the same time, and
457 * let pxa3xx_nand_irq to handle all logic.
459 static void pxa3xx_nand_start(struct pxa3xx_nand_info *info)
463 ndcr = info->reg_ndcr;
468 nand_writel(info, NDECCCTRL, 0x1);
470 ndcr &= ~NDCR_ECC_EN;
472 nand_writel(info, NDECCCTRL, 0x0);
475 ndcr &= ~NDCR_DMA_EN;
478 ndcr |= NDCR_SPARE_EN;
480 ndcr &= ~NDCR_SPARE_EN;
484 /* clear status bits and run */
485 nand_writel(info, NDCR, 0);
486 nand_writel(info, NDSR, NDSR_MASK);
487 nand_writel(info, NDCR, ndcr);
490 static void disable_int(struct pxa3xx_nand_info *info, uint32_t int_mask)
494 ndcr = nand_readl(info, NDCR);
495 nand_writel(info, NDCR, ndcr | int_mask);
498 static void drain_fifo(struct pxa3xx_nand_info *info, void *data, int len)
504 * According to the datasheet, when reading from NDDB
505 * with BCH enabled, after each 32 bytes reads, we
506 * have to make sure that the NDSR.RDDREQ bit is set.
508 * Drain the FIFO 8 32 bits reads at a time, and skip
509 * the polling on the last read.
512 readsl(info->mmio_base + NDDB, data, 8);
515 while (!(nand_readl(info, NDSR) & NDSR_RDDREQ)) {
516 if (get_timer(ts) > TIMEOUT_DRAIN_FIFO) {
517 dev_err(&info->pdev->dev,
518 "Timeout on RDDREQ while draining the FIFO\n");
528 readsl(info->mmio_base + NDDB, data, len);
531 static void handle_data_pio(struct pxa3xx_nand_info *info)
533 unsigned int do_bytes = min(info->data_size, info->chunk_size);
535 switch (info->state) {
536 case STATE_PIO_WRITING:
537 writesl(info->mmio_base + NDDB,
538 info->data_buff + info->data_buff_pos,
539 DIV_ROUND_UP(do_bytes, 4));
541 if (info->oob_size > 0)
542 writesl(info->mmio_base + NDDB,
543 info->oob_buff + info->oob_buff_pos,
544 DIV_ROUND_UP(info->oob_size, 4));
546 case STATE_PIO_READING:
548 info->data_buff + info->data_buff_pos,
549 DIV_ROUND_UP(do_bytes, 4));
551 if (info->oob_size > 0)
553 info->oob_buff + info->oob_buff_pos,
554 DIV_ROUND_UP(info->oob_size, 4));
557 dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
562 /* Update buffer pointers for multi-page read/write */
563 info->data_buff_pos += do_bytes;
564 info->oob_buff_pos += info->oob_size;
565 info->data_size -= do_bytes;
568 static void pxa3xx_nand_irq_thread(struct pxa3xx_nand_info *info)
570 handle_data_pio(info);
572 info->state = STATE_CMD_DONE;
573 nand_writel(info, NDSR, NDSR_WRDREQ | NDSR_RDDREQ);
576 static irqreturn_t pxa3xx_nand_irq(struct pxa3xx_nand_info *info)
578 unsigned int status, is_completed = 0, is_ready = 0;
579 unsigned int ready, cmd_done;
580 irqreturn_t ret = IRQ_HANDLED;
583 ready = NDSR_FLASH_RDY;
584 cmd_done = NDSR_CS0_CMDD;
587 cmd_done = NDSR_CS1_CMDD;
590 status = nand_readl(info, NDSR);
592 if (status & NDSR_UNCORERR)
593 info->retcode = ERR_UNCORERR;
594 if (status & NDSR_CORERR) {
595 info->retcode = ERR_CORERR;
596 if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370 &&
598 info->ecc_err_cnt = NDSR_ERR_CNT(status);
600 info->ecc_err_cnt = 1;
603 * Each chunk composing a page is corrected independently,
604 * and we need to store maximum number of corrected bitflips
605 * to return it to the MTD layer in ecc.read_page().
607 info->max_bitflips = max_t(unsigned int,
611 if (status & (NDSR_RDDREQ | NDSR_WRDREQ)) {
612 info->state = (status & NDSR_RDDREQ) ?
613 STATE_PIO_READING : STATE_PIO_WRITING;
614 /* Call the IRQ thread in U-Boot directly */
615 pxa3xx_nand_irq_thread(info);
618 if (status & cmd_done) {
619 info->state = STATE_CMD_DONE;
622 if (status & ready) {
623 info->state = STATE_READY;
627 if (status & NDSR_WRCMDREQ) {
628 nand_writel(info, NDSR, NDSR_WRCMDREQ);
629 status &= ~NDSR_WRCMDREQ;
630 info->state = STATE_CMD_HANDLE;
633 * Command buffer registers NDCB{0-2} (and optionally NDCB3)
634 * must be loaded by writing directly either 12 or 16
635 * bytes directly to NDCB0, four bytes at a time.
637 * Direct write access to NDCB1, NDCB2 and NDCB3 is ignored
638 * but each NDCBx register can be read.
640 nand_writel(info, NDCB0, info->ndcb0);
641 nand_writel(info, NDCB0, info->ndcb1);
642 nand_writel(info, NDCB0, info->ndcb2);
644 /* NDCB3 register is available in NFCv2 (Armada 370/XP SoC) */
645 if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370)
646 nand_writel(info, NDCB0, info->ndcb3);
649 /* clear NDSR to let the controller exit the IRQ */
650 nand_writel(info, NDSR, status);
652 info->cmd_complete = 1;
659 static inline int is_buf_blank(uint8_t *buf, size_t len)
661 for (; len > 0; len--)
667 static void set_command_address(struct pxa3xx_nand_info *info,
668 unsigned int page_size, uint16_t column, int page_addr)
670 /* small page addr setting */
671 if (page_size < PAGE_CHUNK_SIZE) {
672 info->ndcb1 = ((page_addr & 0xFFFFFF) << 8)
677 info->ndcb1 = ((page_addr & 0xFFFF) << 16)
680 if (page_addr & 0xFF0000)
681 info->ndcb2 = (page_addr & 0xFF0000) >> 16;
687 static void prepare_start_command(struct pxa3xx_nand_info *info, int command)
689 struct pxa3xx_nand_host *host = info->host[info->cs];
690 struct mtd_info *mtd = host->mtd;
692 /* reset data and oob column point to handle data */
696 info->data_buff_pos = 0;
697 info->oob_buff_pos = 0;
700 info->retcode = ERR_NONE;
701 info->ecc_err_cnt = 0;
707 case NAND_CMD_PAGEPROG:
709 case NAND_CMD_READOOB:
710 pxa3xx_set_datasize(info, mtd);
722 * If we are about to issue a read command, or about to set
723 * the write address, then clean the data buffer.
725 if (command == NAND_CMD_READ0 ||
726 command == NAND_CMD_READOOB ||
727 command == NAND_CMD_SEQIN) {
728 info->buf_count = mtd->writesize + mtd->oobsize;
729 memset(info->data_buff, 0xFF, info->buf_count);
733 static int prepare_set_command(struct pxa3xx_nand_info *info, int command,
734 int ext_cmd_type, uint16_t column, int page_addr)
736 int addr_cycle, exec_cmd;
737 struct pxa3xx_nand_host *host;
738 struct mtd_info *mtd;
740 host = info->host[info->cs];
746 info->ndcb0 = NDCB0_CSEL;
750 if (command == NAND_CMD_SEQIN)
753 addr_cycle = NDCB0_ADDR_CYC(host->row_addr_cycles
754 + host->col_addr_cycles);
757 case NAND_CMD_READOOB:
759 info->buf_start = column;
760 info->ndcb0 |= NDCB0_CMD_TYPE(0)
764 if (command == NAND_CMD_READOOB)
765 info->buf_start += mtd->writesize;
768 * Multiple page read needs an 'extended command type' field,
769 * which is either naked-read or last-read according to the
772 if (mtd->writesize == PAGE_CHUNK_SIZE) {
773 info->ndcb0 |= NDCB0_DBC | (NAND_CMD_READSTART << 8);
774 } else if (mtd->writesize > PAGE_CHUNK_SIZE) {
775 info->ndcb0 |= NDCB0_DBC | (NAND_CMD_READSTART << 8)
777 | NDCB0_EXT_CMD_TYPE(ext_cmd_type);
778 info->ndcb3 = info->chunk_size +
782 set_command_address(info, mtd->writesize, column, page_addr);
787 info->buf_start = column;
788 set_command_address(info, mtd->writesize, 0, page_addr);
791 * Multiple page programming needs to execute the initial
792 * SEQIN command that sets the page address.
794 if (mtd->writesize > PAGE_CHUNK_SIZE) {
795 info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
796 | NDCB0_EXT_CMD_TYPE(ext_cmd_type)
799 /* No data transfer in this case */
805 case NAND_CMD_PAGEPROG:
806 if (is_buf_blank(info->data_buff,
807 (mtd->writesize + mtd->oobsize))) {
812 /* Second command setting for large pages */
813 if (mtd->writesize > PAGE_CHUNK_SIZE) {
815 * Multiple page write uses the 'extended command'
816 * field. This can be used to issue a command dispatch
817 * or a naked-write depending on the current stage.
819 info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
821 | NDCB0_EXT_CMD_TYPE(ext_cmd_type);
822 info->ndcb3 = info->chunk_size +
826 * This is the command dispatch that completes a chunked
827 * page program operation.
829 if (info->data_size == 0) {
830 info->ndcb0 = NDCB0_CMD_TYPE(0x1)
831 | NDCB0_EXT_CMD_TYPE(ext_cmd_type)
838 info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
842 | (NAND_CMD_PAGEPROG << 8)
849 info->buf_count = 256;
850 info->ndcb0 |= NDCB0_CMD_TYPE(0)
854 info->ndcb1 = (column & 0xFF);
856 info->data_size = 256;
859 case NAND_CMD_READID:
860 info->buf_count = host->read_id_bytes;
861 info->ndcb0 |= NDCB0_CMD_TYPE(3)
864 info->ndcb1 = (column & 0xFF);
868 case NAND_CMD_STATUS:
870 info->ndcb0 |= NDCB0_CMD_TYPE(4)
877 case NAND_CMD_ERASE1:
878 info->ndcb0 |= NDCB0_CMD_TYPE(2)
882 | (NAND_CMD_ERASE2 << 8)
884 info->ndcb1 = page_addr;
889 info->ndcb0 |= NDCB0_CMD_TYPE(5)
894 case NAND_CMD_ERASE2:
900 dev_err(&info->pdev->dev, "non-supported command %x\n",
908 static void nand_cmdfunc(struct mtd_info *mtd, unsigned command,
909 int column, int page_addr)
911 struct pxa3xx_nand_host *host = mtd->priv;
912 struct pxa3xx_nand_info *info = host->info_data;
916 * if this is a x16 device ,then convert the input
917 * "byte" address into a "word" address appropriate
918 * for indexing a word-oriented device
920 if (info->reg_ndcr & NDCR_DWIDTH_M)
924 * There may be different NAND chip hooked to
925 * different chip select, so check whether
926 * chip select has been changed, if yes, reset the timing
928 if (info->cs != host->cs) {
930 nand_writel(info, NDTR0CS0, info->ndtr0cs0);
931 nand_writel(info, NDTR1CS0, info->ndtr1cs0);
934 prepare_start_command(info, command);
936 info->state = STATE_PREPARED;
937 exec_cmd = prepare_set_command(info, command, 0, column, page_addr);
942 info->cmd_complete = 0;
945 pxa3xx_nand_start(info);
951 status = nand_readl(info, NDSR);
953 pxa3xx_nand_irq(info);
955 if (info->cmd_complete)
958 if (get_timer(ts) > CHIP_DELAY_TIMEOUT) {
959 dev_err(&info->pdev->dev, "Wait timeout!!!\n");
964 info->state = STATE_IDLE;
967 static void nand_cmdfunc_extended(struct mtd_info *mtd,
968 const unsigned command,
969 int column, int page_addr)
971 struct pxa3xx_nand_host *host = mtd->priv;
972 struct pxa3xx_nand_info *info = host->info_data;
973 int exec_cmd, ext_cmd_type;
976 * if this is a x16 device then convert the input
977 * "byte" address into a "word" address appropriate
978 * for indexing a word-oriented device
980 if (info->reg_ndcr & NDCR_DWIDTH_M)
984 * There may be different NAND chip hooked to
985 * different chip select, so check whether
986 * chip select has been changed, if yes, reset the timing
988 if (info->cs != host->cs) {
990 nand_writel(info, NDTR0CS0, info->ndtr0cs0);
991 nand_writel(info, NDTR1CS0, info->ndtr1cs0);
994 /* Select the extended command for the first command */
997 case NAND_CMD_READOOB:
998 ext_cmd_type = EXT_CMD_TYPE_MONO;
1000 case NAND_CMD_SEQIN:
1001 ext_cmd_type = EXT_CMD_TYPE_DISPATCH;
1003 case NAND_CMD_PAGEPROG:
1004 ext_cmd_type = EXT_CMD_TYPE_NAKED_RW;
1011 prepare_start_command(info, command);
1014 * Prepare the "is ready" completion before starting a command
1015 * transaction sequence. If the command is not executed the
1016 * completion will be completed, see below.
1018 * We can do that inside the loop because the command variable
1019 * is invariant and thus so is the exec_cmd.
1021 info->need_wait = 1;
1022 info->dev_ready = 0;
1027 info->state = STATE_PREPARED;
1028 exec_cmd = prepare_set_command(info, command, ext_cmd_type,
1031 info->need_wait = 0;
1032 info->dev_ready = 1;
1036 info->cmd_complete = 0;
1037 pxa3xx_nand_start(info);
1043 status = nand_readl(info, NDSR);
1045 pxa3xx_nand_irq(info);
1047 if (info->cmd_complete)
1050 if (get_timer(ts) > CHIP_DELAY_TIMEOUT) {
1051 dev_err(&info->pdev->dev, "Wait timeout!!!\n");
1056 /* Check if the sequence is complete */
1057 if (info->data_size == 0 && command != NAND_CMD_PAGEPROG)
1061 * After a splitted program command sequence has issued
1062 * the command dispatch, the command sequence is complete.
1064 if (info->data_size == 0 &&
1065 command == NAND_CMD_PAGEPROG &&
1066 ext_cmd_type == EXT_CMD_TYPE_DISPATCH)
1069 if (command == NAND_CMD_READ0 || command == NAND_CMD_READOOB) {
1070 /* Last read: issue a 'last naked read' */
1071 if (info->data_size == info->chunk_size)
1072 ext_cmd_type = EXT_CMD_TYPE_LAST_RW;
1074 ext_cmd_type = EXT_CMD_TYPE_NAKED_RW;
1077 * If a splitted program command has no more data to transfer,
1078 * the command dispatch must be issued to complete.
1080 } else if (command == NAND_CMD_PAGEPROG &&
1081 info->data_size == 0) {
1082 ext_cmd_type = EXT_CMD_TYPE_DISPATCH;
1086 info->state = STATE_IDLE;
1089 static int pxa3xx_nand_write_page_hwecc(struct mtd_info *mtd,
1090 struct nand_chip *chip, const uint8_t *buf, int oob_required)
1092 chip->write_buf(mtd, buf, mtd->writesize);
1093 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1098 static int pxa3xx_nand_read_page_hwecc(struct mtd_info *mtd,
1099 struct nand_chip *chip, uint8_t *buf, int oob_required,
1102 struct pxa3xx_nand_host *host = mtd->priv;
1103 struct pxa3xx_nand_info *info = host->info_data;
1105 chip->read_buf(mtd, buf, mtd->writesize);
1106 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1108 if (info->retcode == ERR_CORERR && info->use_ecc) {
1109 mtd->ecc_stats.corrected += info->ecc_err_cnt;
1111 } else if (info->retcode == ERR_UNCORERR) {
1113 * for blank page (all 0xff), HW will calculate its ECC as
1114 * 0, which is different from the ECC information within
1115 * OOB, ignore such uncorrectable errors
1117 if (is_buf_blank(buf, mtd->writesize))
1118 info->retcode = ERR_NONE;
1120 mtd->ecc_stats.failed++;
1123 return info->max_bitflips;
1126 static uint8_t pxa3xx_nand_read_byte(struct mtd_info *mtd)
1128 struct pxa3xx_nand_host *host = mtd->priv;
1129 struct pxa3xx_nand_info *info = host->info_data;
1132 if (info->buf_start < info->buf_count)
1133 /* Has just send a new command? */
1134 retval = info->data_buff[info->buf_start++];
1139 static u16 pxa3xx_nand_read_word(struct mtd_info *mtd)
1141 struct pxa3xx_nand_host *host = mtd->priv;
1142 struct pxa3xx_nand_info *info = host->info_data;
1143 u16 retval = 0xFFFF;
1145 if (!(info->buf_start & 0x01) && info->buf_start < info->buf_count) {
1146 retval = *((u16 *)(info->data_buff+info->buf_start));
1147 info->buf_start += 2;
1152 static void pxa3xx_nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
1154 struct pxa3xx_nand_host *host = mtd->priv;
1155 struct pxa3xx_nand_info *info = host->info_data;
1156 int real_len = min_t(size_t, len, info->buf_count - info->buf_start);
1158 memcpy(buf, info->data_buff + info->buf_start, real_len);
1159 info->buf_start += real_len;
1162 static void pxa3xx_nand_write_buf(struct mtd_info *mtd,
1163 const uint8_t *buf, int len)
1165 struct pxa3xx_nand_host *host = mtd->priv;
1166 struct pxa3xx_nand_info *info = host->info_data;
1167 int real_len = min_t(size_t, len, info->buf_count - info->buf_start);
1169 memcpy(info->data_buff + info->buf_start, buf, real_len);
1170 info->buf_start += real_len;
1173 static void pxa3xx_nand_select_chip(struct mtd_info *mtd, int chip)
1178 static int pxa3xx_nand_waitfunc(struct mtd_info *mtd, struct nand_chip *this)
1180 struct pxa3xx_nand_host *host = mtd->priv;
1181 struct pxa3xx_nand_info *info = host->info_data;
1183 if (info->need_wait) {
1186 info->need_wait = 0;
1192 status = nand_readl(info, NDSR);
1194 pxa3xx_nand_irq(info);
1196 if (info->dev_ready)
1199 if (get_timer(ts) > CHIP_DELAY_TIMEOUT) {
1200 dev_err(&info->pdev->dev, "Ready timeout!!!\n");
1201 return NAND_STATUS_FAIL;
1206 /* pxa3xx_nand_send_command has waited for command complete */
1207 if (this->state == FL_WRITING || this->state == FL_ERASING) {
1208 if (info->retcode == ERR_NONE)
1211 return NAND_STATUS_FAIL;
1214 return NAND_STATUS_READY;
1217 static int pxa3xx_nand_config_flash(struct pxa3xx_nand_info *info)
1219 struct pxa3xx_nand_host *host = info->host[info->cs];
1220 struct mtd_info *mtd = host->mtd;
1221 struct nand_chip *chip = mtd->priv;
1223 info->reg_ndcr |= (host->col_addr_cycles == 2) ? NDCR_RA_START : 0;
1224 info->reg_ndcr |= (chip->page_shift == 6) ? NDCR_PG_PER_BLK : 0;
1225 info->reg_ndcr |= (mtd->writesize == 2048) ? NDCR_PAGE_SZ : 0;
1230 static int pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info)
1233 * We set 0 by hard coding here, for we don't support keep_config
1234 * when there is more than one chip attached to the controller
1236 struct pxa3xx_nand_host *host = info->host[0];
1237 uint32_t ndcr = nand_readl(info, NDCR);
1239 if (ndcr & NDCR_PAGE_SZ) {
1240 /* Controller's FIFO size */
1241 info->chunk_size = 2048;
1242 host->read_id_bytes = 4;
1244 info->chunk_size = 512;
1245 host->read_id_bytes = 2;
1248 /* Set an initial chunk size */
1249 info->reg_ndcr = ndcr & ~NDCR_INT_MASK;
1250 info->ndtr0cs0 = nand_readl(info, NDTR0CS0);
1251 info->ndtr1cs0 = nand_readl(info, NDTR1CS0);
1255 static int pxa3xx_nand_init_buff(struct pxa3xx_nand_info *info)
1257 info->data_buff = kmalloc(info->buf_size, GFP_KERNEL);
1258 if (info->data_buff == NULL)
1263 static int pxa3xx_nand_sensing(struct pxa3xx_nand_host *host)
1265 struct pxa3xx_nand_info *info = host->info_data;
1266 struct pxa3xx_nand_platform_data *pdata = info->pdata;
1267 struct mtd_info *mtd;
1268 struct nand_chip *chip;
1269 const struct nand_sdr_timings *timings;
1272 mtd = info->host[info->cs]->mtd;
1275 /* configure default flash values */
1276 info->reg_ndcr = 0x0; /* enable all interrupts */
1277 info->reg_ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN : 0;
1278 info->reg_ndcr |= NDCR_RD_ID_CNT(host->read_id_bytes);
1279 info->reg_ndcr |= NDCR_SPARE_EN; /* enable spare by default */
1281 /* use the common timing to make a try */
1282 timings = onfi_async_timing_mode_to_sdr_timings(0);
1283 if (IS_ERR(timings))
1284 return PTR_ERR(timings);
1286 pxa3xx_nand_set_sdr_timing(host, timings);
1288 chip->cmdfunc(mtd, NAND_CMD_RESET, 0, 0);
1289 ret = chip->waitfunc(mtd, chip);
1290 if (ret & NAND_STATUS_FAIL)
1296 static int pxa_ecc_init(struct pxa3xx_nand_info *info,
1297 struct nand_ecc_ctrl *ecc,
1298 int strength, int ecc_stepsize, int page_size)
1300 if (strength == 1 && ecc_stepsize == 512 && page_size == 2048) {
1301 info->chunk_size = 2048;
1302 info->spare_size = 40;
1303 info->ecc_size = 24;
1304 ecc->mode = NAND_ECC_HW;
1308 } else if (strength == 1 && ecc_stepsize == 512 && page_size == 512) {
1309 info->chunk_size = 512;
1310 info->spare_size = 8;
1312 ecc->mode = NAND_ECC_HW;
1317 * Required ECC: 4-bit correction per 512 bytes
1318 * Select: 16-bit correction per 2048 bytes
1320 } else if (strength == 4 && ecc_stepsize == 512 && page_size == 2048) {
1322 info->chunk_size = 2048;
1323 info->spare_size = 32;
1324 info->ecc_size = 32;
1325 ecc->mode = NAND_ECC_HW;
1326 ecc->size = info->chunk_size;
1327 ecc->layout = &ecc_layout_2KB_bch4bit;
1330 } else if (strength == 4 && ecc_stepsize == 512 && page_size == 4096) {
1332 info->chunk_size = 2048;
1333 info->spare_size = 32;
1334 info->ecc_size = 32;
1335 ecc->mode = NAND_ECC_HW;
1336 ecc->size = info->chunk_size;
1337 ecc->layout = &ecc_layout_4KB_bch4bit;
1341 * Required ECC: 8-bit correction per 512 bytes
1342 * Select: 16-bit correction per 1024 bytes
1344 } else if (strength == 8 && ecc_stepsize == 512 && page_size == 4096) {
1346 info->chunk_size = 1024;
1347 info->spare_size = 0;
1348 info->ecc_size = 32;
1349 ecc->mode = NAND_ECC_HW;
1350 ecc->size = info->chunk_size;
1351 ecc->layout = &ecc_layout_4KB_bch8bit;
1354 dev_err(&info->pdev->dev,
1355 "ECC strength %d at page size %d is not supported\n",
1356 strength, page_size);
1363 static int pxa3xx_nand_scan(struct mtd_info *mtd)
1365 struct pxa3xx_nand_host *host = mtd->priv;
1366 struct pxa3xx_nand_info *info = host->info_data;
1367 struct pxa3xx_nand_platform_data *pdata = info->pdata;
1368 struct nand_chip *chip = mtd->priv;
1370 uint16_t ecc_strength, ecc_step;
1372 if (pdata->keep_config && !pxa3xx_nand_detect_config(info))
1375 /* Set a default chunk size */
1376 info->chunk_size = 512;
1378 ret = pxa3xx_nand_sensing(host);
1380 dev_info(&info->pdev->dev, "There is no chip on cs %d!\n",
1387 /* Device detection must be done with ECC disabled */
1388 if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370)
1389 nand_writel(info, NDECCCTRL, 0x0);
1391 if (nand_scan_ident(mtd, 1, NULL))
1394 if (!pdata->keep_config) {
1395 ret = pxa3xx_nand_init_timings(host);
1397 dev_err(&info->pdev->dev,
1398 "Failed to set timings: %d\n", ret);
1403 ret = pxa3xx_nand_config_flash(info);
1407 #ifdef CONFIG_SYS_NAND_USE_FLASH_BBT
1409 * We'll use a bad block table stored in-flash and don't
1410 * allow writing the bad block marker to the flash.
1412 chip->bbt_options |= NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB_BBM;
1413 chip->bbt_td = &bbt_main_descr;
1414 chip->bbt_md = &bbt_mirror_descr;
1418 * If the page size is bigger than the FIFO size, let's check
1419 * we are given the right variant and then switch to the extended
1420 * (aka splitted) command handling,
1422 if (mtd->writesize > PAGE_CHUNK_SIZE) {
1423 if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370) {
1424 chip->cmdfunc = nand_cmdfunc_extended;
1426 dev_err(&info->pdev->dev,
1427 "unsupported page size on this variant\n");
1432 if (pdata->ecc_strength && pdata->ecc_step_size) {
1433 ecc_strength = pdata->ecc_strength;
1434 ecc_step = pdata->ecc_step_size;
1436 ecc_strength = chip->ecc_strength_ds;
1437 ecc_step = chip->ecc_step_ds;
1440 /* Set default ECC strength requirements on non-ONFI devices */
1441 if (ecc_strength < 1 && ecc_step < 1) {
1446 ret = pxa_ecc_init(info, &chip->ecc, ecc_strength,
1447 ecc_step, mtd->writesize);
1451 /* calculate addressing information */
1452 if (mtd->writesize >= 2048)
1453 host->col_addr_cycles = 2;
1455 host->col_addr_cycles = 1;
1457 /* release the initial buffer */
1458 kfree(info->data_buff);
1460 /* allocate the real data + oob buffer */
1461 info->buf_size = mtd->writesize + mtd->oobsize;
1462 ret = pxa3xx_nand_init_buff(info);
1465 info->oob_buff = info->data_buff + mtd->writesize;
1467 if ((mtd->size >> chip->page_shift) > 65536)
1468 host->row_addr_cycles = 3;
1470 host->row_addr_cycles = 2;
1471 return nand_scan_tail(mtd);
1474 static int alloc_nand_resource(struct pxa3xx_nand_info *info)
1476 struct pxa3xx_nand_platform_data *pdata;
1477 struct pxa3xx_nand_host *host;
1478 struct nand_chip *chip = NULL;
1479 struct mtd_info *mtd;
1482 pdata = info->pdata;
1483 if (pdata->num_cs <= 0)
1486 info->variant = pxa3xx_nand_get_variant();
1487 for (cs = 0; cs < pdata->num_cs; cs++) {
1488 mtd = &nand_info[cs];
1489 chip = (struct nand_chip *)info +
1490 sizeof(struct pxa3xx_nand_host);
1491 host = (struct pxa3xx_nand_host *)chip;
1492 info->host[cs] = host;
1495 host->info_data = info;
1496 host->read_id_bytes = 4;
1498 mtd->owner = THIS_MODULE;
1500 chip->ecc.read_page = pxa3xx_nand_read_page_hwecc;
1501 chip->ecc.write_page = pxa3xx_nand_write_page_hwecc;
1502 chip->controller = &info->controller;
1503 chip->waitfunc = pxa3xx_nand_waitfunc;
1504 chip->select_chip = pxa3xx_nand_select_chip;
1505 chip->read_word = pxa3xx_nand_read_word;
1506 chip->read_byte = pxa3xx_nand_read_byte;
1507 chip->read_buf = pxa3xx_nand_read_buf;
1508 chip->write_buf = pxa3xx_nand_write_buf;
1509 chip->options |= NAND_NO_SUBPAGE_WRITE;
1510 chip->cmdfunc = nand_cmdfunc;
1513 info->mmio_base = (void __iomem *)MVEBU_NAND_BASE;
1515 /* Allocate a buffer to allow flash detection */
1516 info->buf_size = INIT_BUFFER_SIZE;
1517 info->data_buff = kmalloc(info->buf_size, GFP_KERNEL);
1518 if (info->data_buff == NULL) {
1520 goto fail_disable_clk;
1523 /* initialize all interrupts to be disabled */
1524 disable_int(info, NDSR_MASK);
1528 kfree(info->data_buff);
1533 static int pxa3xx_nand_probe_dt(struct pxa3xx_nand_info *info)
1535 struct pxa3xx_nand_platform_data *pdata;
1537 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
1541 pdata->enable_arbiter = 1;
1544 info->pdata = pdata;
1549 static int pxa3xx_nand_probe(struct pxa3xx_nand_info *info)
1551 struct pxa3xx_nand_platform_data *pdata;
1552 int ret, cs, probe_success;
1554 ret = pxa3xx_nand_probe_dt(info);
1558 pdata = info->pdata;
1560 ret = alloc_nand_resource(info);
1562 dev_err(&pdev->dev, "alloc nand resource failed\n");
1567 for (cs = 0; cs < pdata->num_cs; cs++) {
1568 struct mtd_info *mtd = info->host[cs]->mtd;
1571 * The mtd name matches the one used in 'mtdparts' kernel
1572 * parameter. This name cannot be changed or otherwise
1573 * user's mtd partitions configuration would get broken.
1575 mtd->name = "pxa3xx_nand-0";
1577 ret = pxa3xx_nand_scan(mtd);
1579 dev_info(&pdev->dev, "failed to scan nand at cs %d\n",
1595 * Main initialization routine
1597 void board_nand_init(void)
1599 struct pxa3xx_nand_info *info;
1600 struct pxa3xx_nand_host *host;
1603 info = kzalloc(sizeof(*info) + (sizeof(struct mtd_info) +
1605 CONFIG_SYS_MAX_NAND_DEVICE, GFP_KERNEL);
1610 * If CONFIG_SYS_NAND_SELF_INIT is defined, each driver is responsible
1611 * for instantiating struct nand_chip, while drivers/mtd/nand/nand.c
1612 * still provides a "struct mtd_info nand_info" instance.
1614 info->host[0]->mtd = &nand_info[0];
1616 ret = pxa3xx_nand_probe(info);