2 * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 #include <linux/delay.h>
21 #include <linux/slab.h>
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/rawnand.h>
26 #include <linux/mtd/partitions.h>
27 #include <linux/interrupt.h>
28 #include <linux/device.h>
29 #include <linux/platform_device.h>
30 #include <linux/clk.h>
31 #include <linux/err.h>
33 #include <linux/irq.h>
34 #include <linux/completion.h>
36 #include <linux/of_device.h>
38 #include <asm/mach/flash.h>
39 #include <linux/platform_data/mtd-mxc_nand.h>
41 #define DRIVER_NAME "mxc_nand"
43 /* Addresses for NFC registers */
44 #define NFC_V1_V2_BUF_SIZE (host->regs + 0x00)
45 #define NFC_V1_V2_BUF_ADDR (host->regs + 0x04)
46 #define NFC_V1_V2_FLASH_ADDR (host->regs + 0x06)
47 #define NFC_V1_V2_FLASH_CMD (host->regs + 0x08)
48 #define NFC_V1_V2_CONFIG (host->regs + 0x0a)
49 #define NFC_V1_V2_ECC_STATUS_RESULT (host->regs + 0x0c)
50 #define NFC_V1_V2_RSLTMAIN_AREA (host->regs + 0x0e)
51 #define NFC_V1_V2_RSLTSPARE_AREA (host->regs + 0x10)
52 #define NFC_V1_V2_WRPROT (host->regs + 0x12)
53 #define NFC_V1_UNLOCKSTART_BLKADDR (host->regs + 0x14)
54 #define NFC_V1_UNLOCKEND_BLKADDR (host->regs + 0x16)
55 #define NFC_V21_UNLOCKSTART_BLKADDR0 (host->regs + 0x20)
56 #define NFC_V21_UNLOCKSTART_BLKADDR1 (host->regs + 0x24)
57 #define NFC_V21_UNLOCKSTART_BLKADDR2 (host->regs + 0x28)
58 #define NFC_V21_UNLOCKSTART_BLKADDR3 (host->regs + 0x2c)
59 #define NFC_V21_UNLOCKEND_BLKADDR0 (host->regs + 0x22)
60 #define NFC_V21_UNLOCKEND_BLKADDR1 (host->regs + 0x26)
61 #define NFC_V21_UNLOCKEND_BLKADDR2 (host->regs + 0x2a)
62 #define NFC_V21_UNLOCKEND_BLKADDR3 (host->regs + 0x2e)
63 #define NFC_V1_V2_NF_WRPRST (host->regs + 0x18)
64 #define NFC_V1_V2_CONFIG1 (host->regs + 0x1a)
65 #define NFC_V1_V2_CONFIG2 (host->regs + 0x1c)
67 #define NFC_V2_CONFIG1_ECC_MODE_4 (1 << 0)
68 #define NFC_V1_V2_CONFIG1_SP_EN (1 << 2)
69 #define NFC_V1_V2_CONFIG1_ECC_EN (1 << 3)
70 #define NFC_V1_V2_CONFIG1_INT_MSK (1 << 4)
71 #define NFC_V1_V2_CONFIG1_BIG (1 << 5)
72 #define NFC_V1_V2_CONFIG1_RST (1 << 6)
73 #define NFC_V1_V2_CONFIG1_CE (1 << 7)
74 #define NFC_V2_CONFIG1_ONE_CYCLE (1 << 8)
75 #define NFC_V2_CONFIG1_PPB(x) (((x) & 0x3) << 9)
76 #define NFC_V2_CONFIG1_FP_INT (1 << 11)
78 #define NFC_V1_V2_CONFIG2_INT (1 << 15)
81 * Operation modes for the NFC. Valid for v1, v2 and v3
84 #define NFC_CMD (1 << 0)
85 #define NFC_ADDR (1 << 1)
86 #define NFC_INPUT (1 << 2)
87 #define NFC_OUTPUT (1 << 3)
88 #define NFC_ID (1 << 4)
89 #define NFC_STATUS (1 << 5)
91 #define NFC_V3_FLASH_CMD (host->regs_axi + 0x00)
92 #define NFC_V3_FLASH_ADDR0 (host->regs_axi + 0x04)
94 #define NFC_V3_CONFIG1 (host->regs_axi + 0x34)
95 #define NFC_V3_CONFIG1_SP_EN (1 << 0)
96 #define NFC_V3_CONFIG1_RBA(x) (((x) & 0x7 ) << 4)
98 #define NFC_V3_ECC_STATUS_RESULT (host->regs_axi + 0x38)
100 #define NFC_V3_LAUNCH (host->regs_axi + 0x40)
102 #define NFC_V3_WRPROT (host->regs_ip + 0x0)
103 #define NFC_V3_WRPROT_LOCK_TIGHT (1 << 0)
104 #define NFC_V3_WRPROT_LOCK (1 << 1)
105 #define NFC_V3_WRPROT_UNLOCK (1 << 2)
106 #define NFC_V3_WRPROT_BLS_UNLOCK (2 << 6)
108 #define NFC_V3_WRPROT_UNLOCK_BLK_ADD0 (host->regs_ip + 0x04)
110 #define NFC_V3_CONFIG2 (host->regs_ip + 0x24)
111 #define NFC_V3_CONFIG2_PS_512 (0 << 0)
112 #define NFC_V3_CONFIG2_PS_2048 (1 << 0)
113 #define NFC_V3_CONFIG2_PS_4096 (2 << 0)
114 #define NFC_V3_CONFIG2_ONE_CYCLE (1 << 2)
115 #define NFC_V3_CONFIG2_ECC_EN (1 << 3)
116 #define NFC_V3_CONFIG2_2CMD_PHASES (1 << 4)
117 #define NFC_V3_CONFIG2_NUM_ADDR_PHASE0 (1 << 5)
118 #define NFC_V3_CONFIG2_ECC_MODE_8 (1 << 6)
119 #define NFC_V3_CONFIG2_PPB(x, shift) (((x) & 0x3) << shift)
120 #define NFC_V3_CONFIG2_NUM_ADDR_PHASE1(x) (((x) & 0x3) << 12)
121 #define NFC_V3_CONFIG2_INT_MSK (1 << 15)
122 #define NFC_V3_CONFIG2_ST_CMD(x) (((x) & 0xff) << 24)
123 #define NFC_V3_CONFIG2_SPAS(x) (((x) & 0xff) << 16)
125 #define NFC_V3_CONFIG3 (host->regs_ip + 0x28)
126 #define NFC_V3_CONFIG3_ADD_OP(x) (((x) & 0x3) << 0)
127 #define NFC_V3_CONFIG3_FW8 (1 << 3)
128 #define NFC_V3_CONFIG3_SBB(x) (((x) & 0x7) << 8)
129 #define NFC_V3_CONFIG3_NUM_OF_DEVICES(x) (((x) & 0x7) << 12)
130 #define NFC_V3_CONFIG3_RBB_MODE (1 << 15)
131 #define NFC_V3_CONFIG3_NO_SDMA (1 << 20)
133 #define NFC_V3_IPC (host->regs_ip + 0x2C)
134 #define NFC_V3_IPC_CREQ (1 << 0)
135 #define NFC_V3_IPC_INT (1 << 31)
137 #define NFC_V3_DELAY_LINE (host->regs_ip + 0x34)
139 struct mxc_nand_host;
141 struct mxc_nand_devtype_data {
142 void (*preset)(struct mtd_info *);
143 void (*send_cmd)(struct mxc_nand_host *, uint16_t, int);
144 void (*send_addr)(struct mxc_nand_host *, uint16_t, int);
145 void (*send_page)(struct mtd_info *, unsigned int);
146 void (*send_read_id)(struct mxc_nand_host *);
147 uint16_t (*get_dev_status)(struct mxc_nand_host *);
148 int (*check_int)(struct mxc_nand_host *);
149 void (*irq_control)(struct mxc_nand_host *, int);
150 u32 (*get_ecc_status)(struct mxc_nand_host *);
151 const struct mtd_ooblayout_ops *ooblayout;
152 void (*select_chip)(struct mtd_info *mtd, int chip);
153 int (*correct_data)(struct mtd_info *mtd, u_char *dat,
154 u_char *read_ecc, u_char *calc_ecc);
155 int (*setup_data_interface)(struct mtd_info *mtd, int csline,
156 const struct nand_data_interface *conf);
159 * On i.MX21 the CONFIG2:INT bit cannot be read if interrupts are masked
160 * (CONFIG1:INT_MSK is set). To handle this the driver uses
161 * enable_irq/disable_irq_nosync instead of CONFIG1:INT_MSK
163 int irqpending_quirk;
167 size_t spare0_offset;
176 struct mxc_nand_host {
177 struct nand_chip nand;
180 void __iomem *spare0;
181 void __iomem *main_area0;
185 void __iomem *regs_axi;
186 void __iomem *regs_ip;
195 struct completion op_completion;
198 unsigned int buf_start;
200 const struct mxc_nand_devtype_data *devtype_data;
201 struct mxc_nand_platform_data pdata;
204 static const char * const part_probes[] = {
205 "cmdlinepart", "RedBoot", "ofpart", NULL };
207 static void memcpy32_fromio(void *trg, const void __iomem *src, size_t size)
211 const __iomem u32 *s = src;
213 for (i = 0; i < (size >> 2); i++)
214 *t++ = __raw_readl(s++);
217 static void memcpy16_fromio(void *trg, const void __iomem *src, size_t size)
221 const __iomem u16 *s = src;
223 /* We assume that src (IO) is always 32bit aligned */
224 if (PTR_ALIGN(trg, 4) == trg && IS_ALIGNED(size, 4)) {
225 memcpy32_fromio(trg, src, size);
229 for (i = 0; i < (size >> 1); i++)
230 *t++ = __raw_readw(s++);
233 static inline void memcpy32_toio(void __iomem *trg, const void *src, int size)
235 /* __iowrite32_copy use 32bit size values so divide by 4 */
236 __iowrite32_copy(trg, src, size / 4);
239 static void memcpy16_toio(void __iomem *trg, const void *src, int size)
242 __iomem u16 *t = trg;
245 /* We assume that trg (IO) is always 32bit aligned */
246 if (PTR_ALIGN(src, 4) == src && IS_ALIGNED(size, 4)) {
247 memcpy32_toio(trg, src, size);
251 for (i = 0; i < (size >> 1); i++)
252 __raw_writew(*s++, t++);
255 static int check_int_v3(struct mxc_nand_host *host)
259 tmp = readl(NFC_V3_IPC);
260 if (!(tmp & NFC_V3_IPC_INT))
263 tmp &= ~NFC_V3_IPC_INT;
264 writel(tmp, NFC_V3_IPC);
269 static int check_int_v1_v2(struct mxc_nand_host *host)
273 tmp = readw(NFC_V1_V2_CONFIG2);
274 if (!(tmp & NFC_V1_V2_CONFIG2_INT))
277 if (!host->devtype_data->irqpending_quirk)
278 writew(tmp & ~NFC_V1_V2_CONFIG2_INT, NFC_V1_V2_CONFIG2);
283 static void irq_control_v1_v2(struct mxc_nand_host *host, int activate)
287 tmp = readw(NFC_V1_V2_CONFIG1);
290 tmp &= ~NFC_V1_V2_CONFIG1_INT_MSK;
292 tmp |= NFC_V1_V2_CONFIG1_INT_MSK;
294 writew(tmp, NFC_V1_V2_CONFIG1);
297 static void irq_control_v3(struct mxc_nand_host *host, int activate)
301 tmp = readl(NFC_V3_CONFIG2);
304 tmp &= ~NFC_V3_CONFIG2_INT_MSK;
306 tmp |= NFC_V3_CONFIG2_INT_MSK;
308 writel(tmp, NFC_V3_CONFIG2);
311 static void irq_control(struct mxc_nand_host *host, int activate)
313 if (host->devtype_data->irqpending_quirk) {
315 enable_irq(host->irq);
317 disable_irq_nosync(host->irq);
319 host->devtype_data->irq_control(host, activate);
323 static u32 get_ecc_status_v1(struct mxc_nand_host *host)
325 return readw(NFC_V1_V2_ECC_STATUS_RESULT);
328 static u32 get_ecc_status_v2(struct mxc_nand_host *host)
330 return readl(NFC_V1_V2_ECC_STATUS_RESULT);
333 static u32 get_ecc_status_v3(struct mxc_nand_host *host)
335 return readl(NFC_V3_ECC_STATUS_RESULT);
338 static irqreturn_t mxc_nfc_irq(int irq, void *dev_id)
340 struct mxc_nand_host *host = dev_id;
342 if (!host->devtype_data->check_int(host))
345 irq_control(host, 0);
347 complete(&host->op_completion);
352 /* This function polls the NANDFC to wait for the basic operation to
353 * complete by checking the INT bit of config2 register.
355 static int wait_op_done(struct mxc_nand_host *host, int useirq)
360 * If operation is already complete, don't bother to setup an irq or a
363 if (host->devtype_data->check_int(host))
367 unsigned long timeout;
369 reinit_completion(&host->op_completion);
371 irq_control(host, 1);
373 timeout = wait_for_completion_timeout(&host->op_completion, HZ);
374 if (!timeout && !host->devtype_data->check_int(host)) {
375 dev_dbg(host->dev, "timeout waiting for irq\n");
379 int max_retries = 8000;
385 done = host->devtype_data->check_int(host);
389 } while (--max_retries);
392 dev_dbg(host->dev, "timeout polling for completion\n");
397 WARN_ONCE(ret < 0, "timeout! useirq=%d\n", useirq);
402 static void send_cmd_v3(struct mxc_nand_host *host, uint16_t cmd, int useirq)
405 writel(cmd, NFC_V3_FLASH_CMD);
407 /* send out command */
408 writel(NFC_CMD, NFC_V3_LAUNCH);
410 /* Wait for operation to complete */
411 wait_op_done(host, useirq);
414 /* This function issues the specified command to the NAND device and
415 * waits for completion. */
416 static void send_cmd_v1_v2(struct mxc_nand_host *host, uint16_t cmd, int useirq)
418 pr_debug("send_cmd(host, 0x%x, %d)\n", cmd, useirq);
420 writew(cmd, NFC_V1_V2_FLASH_CMD);
421 writew(NFC_CMD, NFC_V1_V2_CONFIG2);
423 if (host->devtype_data->irqpending_quirk && (cmd == NAND_CMD_RESET)) {
424 int max_retries = 100;
425 /* Reset completion is indicated by NFC_CONFIG2 */
427 while (max_retries-- > 0) {
428 if (readw(NFC_V1_V2_CONFIG2) == 0) {
434 pr_debug("%s: RESET failed\n", __func__);
436 /* Wait for operation to complete */
437 wait_op_done(host, useirq);
441 static void send_addr_v3(struct mxc_nand_host *host, uint16_t addr, int islast)
444 writel(addr, NFC_V3_FLASH_ADDR0);
446 /* send out address */
447 writel(NFC_ADDR, NFC_V3_LAUNCH);
449 wait_op_done(host, 0);
452 /* This function sends an address (or partial address) to the
453 * NAND device. The address is used to select the source/destination for
455 static void send_addr_v1_v2(struct mxc_nand_host *host, uint16_t addr, int islast)
457 pr_debug("send_addr(host, 0x%x %d)\n", addr, islast);
459 writew(addr, NFC_V1_V2_FLASH_ADDR);
460 writew(NFC_ADDR, NFC_V1_V2_CONFIG2);
462 /* Wait for operation to complete */
463 wait_op_done(host, islast);
466 static void send_page_v3(struct mtd_info *mtd, unsigned int ops)
468 struct nand_chip *nand_chip = mtd_to_nand(mtd);
469 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
472 tmp = readl(NFC_V3_CONFIG1);
474 writel(tmp, NFC_V3_CONFIG1);
476 /* transfer data from NFC ram to nand */
477 writel(ops, NFC_V3_LAUNCH);
479 wait_op_done(host, false);
482 static void send_page_v2(struct mtd_info *mtd, unsigned int ops)
484 struct nand_chip *nand_chip = mtd_to_nand(mtd);
485 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
487 /* NANDFC buffer 0 is used for page read/write */
488 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
490 writew(ops, NFC_V1_V2_CONFIG2);
492 /* Wait for operation to complete */
493 wait_op_done(host, true);
496 static void send_page_v1(struct mtd_info *mtd, unsigned int ops)
498 struct nand_chip *nand_chip = mtd_to_nand(mtd);
499 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
502 if (mtd->writesize > 512)
507 for (i = 0; i < bufs; i++) {
509 /* NANDFC buffer 0 is used for page read/write */
510 writew((host->active_cs << 4) | i, NFC_V1_V2_BUF_ADDR);
512 writew(ops, NFC_V1_V2_CONFIG2);
514 /* Wait for operation to complete */
515 wait_op_done(host, true);
519 static void send_read_id_v3(struct mxc_nand_host *host)
521 /* Read ID into main buffer */
522 writel(NFC_ID, NFC_V3_LAUNCH);
524 wait_op_done(host, true);
526 memcpy32_fromio(host->data_buf, host->main_area0, 16);
529 /* Request the NANDFC to perform a read of the NAND device ID. */
530 static void send_read_id_v1_v2(struct mxc_nand_host *host)
532 /* NANDFC buffer 0 is used for device ID output */
533 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
535 writew(NFC_ID, NFC_V1_V2_CONFIG2);
537 /* Wait for operation to complete */
538 wait_op_done(host, true);
540 memcpy32_fromio(host->data_buf, host->main_area0, 16);
543 static uint16_t get_dev_status_v3(struct mxc_nand_host *host)
545 writew(NFC_STATUS, NFC_V3_LAUNCH);
546 wait_op_done(host, true);
548 return readl(NFC_V3_CONFIG1) >> 16;
551 /* This function requests the NANDFC to perform a read of the
552 * NAND device status and returns the current status. */
553 static uint16_t get_dev_status_v1_v2(struct mxc_nand_host *host)
555 void __iomem *main_buf = host->main_area0;
559 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
562 * The device status is stored in main_area0. To
563 * prevent corruption of the buffer save the value
564 * and restore it afterwards.
566 store = readl(main_buf);
568 writew(NFC_STATUS, NFC_V1_V2_CONFIG2);
569 wait_op_done(host, true);
571 ret = readw(main_buf);
573 writel(store, main_buf);
578 /* This functions is used by upper layer to checks if device is ready */
579 static int mxc_nand_dev_ready(struct mtd_info *mtd)
582 * NFC handles R/B internally. Therefore, this function
583 * always returns status as ready.
588 static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode)
591 * If HW ECC is enabled, we turn it on during init. There is
592 * no need to enable again here.
596 static int mxc_nand_correct_data_v1(struct mtd_info *mtd, u_char *dat,
597 u_char *read_ecc, u_char *calc_ecc)
599 struct nand_chip *nand_chip = mtd_to_nand(mtd);
600 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
603 * 1-Bit errors are automatically corrected in HW. No need for
604 * additional correction. 2-Bit errors cannot be corrected by
605 * HW ECC, so we need to return failure
607 uint16_t ecc_status = get_ecc_status_v1(host);
609 if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) {
610 pr_debug("MXC_NAND: HWECC uncorrectable 2-bit ECC error\n");
617 static int mxc_nand_correct_data_v2_v3(struct mtd_info *mtd, u_char *dat,
618 u_char *read_ecc, u_char *calc_ecc)
620 struct nand_chip *nand_chip = mtd_to_nand(mtd);
621 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
625 u8 ecc_bit_mask, err_limit;
627 ecc_bit_mask = (host->eccsize == 4) ? 0x7 : 0xf;
628 err_limit = (host->eccsize == 4) ? 0x4 : 0x8;
630 no_subpages = mtd->writesize >> 9;
632 ecc_stat = host->devtype_data->get_ecc_status(host);
635 err = ecc_stat & ecc_bit_mask;
636 if (err > err_limit) {
637 printk(KERN_WARNING "UnCorrectable RS-ECC Error\n");
643 } while (--no_subpages);
645 pr_debug("%d Symbol Correctable RS-ECC Error\n", ret);
650 static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
656 static u_char mxc_nand_read_byte(struct mtd_info *mtd)
658 struct nand_chip *nand_chip = mtd_to_nand(mtd);
659 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
662 /* Check for status request */
663 if (host->status_request)
664 return host->devtype_data->get_dev_status(host) & 0xFF;
666 if (nand_chip->options & NAND_BUSWIDTH_16) {
667 /* only take the lower byte of each word */
668 ret = *(uint16_t *)(host->data_buf + host->buf_start);
670 host->buf_start += 2;
672 ret = *(uint8_t *)(host->data_buf + host->buf_start);
676 pr_debug("%s: ret=0x%hhx (start=%u)\n", __func__, ret, host->buf_start);
680 static uint16_t mxc_nand_read_word(struct mtd_info *mtd)
682 struct nand_chip *nand_chip = mtd_to_nand(mtd);
683 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
686 ret = *(uint16_t *)(host->data_buf + host->buf_start);
687 host->buf_start += 2;
692 /* Write data of length len to buffer buf. The data to be
693 * written on NAND Flash is first copied to RAMbuffer. After the Data Input
694 * Operation by the NFC, the data is written to NAND Flash */
695 static void mxc_nand_write_buf(struct mtd_info *mtd,
696 const u_char *buf, int len)
698 struct nand_chip *nand_chip = mtd_to_nand(mtd);
699 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
700 u16 col = host->buf_start;
701 int n = mtd->oobsize + mtd->writesize - col;
705 memcpy(host->data_buf + col, buf, n);
707 host->buf_start += n;
710 /* Read the data buffer from the NAND Flash. To read the data from NAND
711 * Flash first the data output cycle is initiated by the NFC, which copies
712 * the data to RAMbuffer. This data of length len is then copied to buffer buf.
714 static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
716 struct nand_chip *nand_chip = mtd_to_nand(mtd);
717 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
718 u16 col = host->buf_start;
719 int n = mtd->oobsize + mtd->writesize - col;
723 memcpy(buf, host->data_buf + col, n);
725 host->buf_start += n;
728 /* This function is used by upper layer for select and
729 * deselect of the NAND chip */
730 static void mxc_nand_select_chip_v1_v3(struct mtd_info *mtd, int chip)
732 struct nand_chip *nand_chip = mtd_to_nand(mtd);
733 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
736 /* Disable the NFC clock */
738 clk_disable_unprepare(host->clk);
744 if (!host->clk_act) {
745 /* Enable the NFC clock */
746 clk_prepare_enable(host->clk);
751 static void mxc_nand_select_chip_v2(struct mtd_info *mtd, int chip)
753 struct nand_chip *nand_chip = mtd_to_nand(mtd);
754 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
757 /* Disable the NFC clock */
759 clk_disable_unprepare(host->clk);
765 if (!host->clk_act) {
766 /* Enable the NFC clock */
767 clk_prepare_enable(host->clk);
771 host->active_cs = chip;
772 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
776 * The controller splits a page into data chunks of 512 bytes + partial oob.
777 * There are writesize / 512 such chunks, the size of the partial oob parts is
778 * oobsize / #chunks rounded down to a multiple of 2. The last oob chunk then
779 * contains additionally the byte lost by rounding (if any).
780 * This function handles the needed shuffling between host->data_buf (which
781 * holds a page in natural order, i.e. writesize bytes data + oobsize bytes
782 * spare) and the NFC buffer.
784 static void copy_spare(struct mtd_info *mtd, bool bfrom)
786 struct nand_chip *this = mtd_to_nand(mtd);
787 struct mxc_nand_host *host = nand_get_controller_data(this);
788 u16 i, oob_chunk_size;
789 u16 num_chunks = mtd->writesize / 512;
791 u8 *d = host->data_buf + mtd->writesize;
792 u8 __iomem *s = host->spare0;
793 u16 sparebuf_size = host->devtype_data->spare_len;
795 /* size of oob chunk for all but possibly the last one */
796 oob_chunk_size = (host->used_oobsize / num_chunks) & ~1;
799 for (i = 0; i < num_chunks - 1; i++)
800 memcpy16_fromio(d + i * oob_chunk_size,
801 s + i * sparebuf_size,
805 memcpy16_fromio(d + i * oob_chunk_size,
806 s + i * sparebuf_size,
807 host->used_oobsize - i * oob_chunk_size);
809 for (i = 0; i < num_chunks - 1; i++)
810 memcpy16_toio(&s[i * sparebuf_size],
811 &d[i * oob_chunk_size],
815 memcpy16_toio(&s[i * sparebuf_size],
816 &d[i * oob_chunk_size],
817 host->used_oobsize - i * oob_chunk_size);
822 * MXC NANDFC can only perform full page+spare or spare-only read/write. When
823 * the upper layers perform a read/write buf operation, the saved column address
824 * is used to index into the full page. So usually this function is called with
825 * column == 0 (unless no column cycle is needed indicated by column == -1)
827 static void mxc_do_addr_cycle(struct mtd_info *mtd, int column, int page_addr)
829 struct nand_chip *nand_chip = mtd_to_nand(mtd);
830 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
832 /* Write out column address, if necessary */
834 host->devtype_data->send_addr(host, column & 0xff,
836 if (mtd->writesize > 512)
837 /* another col addr cycle for 2k page */
838 host->devtype_data->send_addr(host,
839 (column >> 8) & 0xff,
843 /* Write out page address, if necessary */
844 if (page_addr != -1) {
845 /* paddr_0 - p_addr_7 */
846 host->devtype_data->send_addr(host, (page_addr & 0xff), false);
848 if (mtd->writesize > 512) {
849 if (mtd->size >= 0x10000000) {
850 /* paddr_8 - paddr_15 */
851 host->devtype_data->send_addr(host,
852 (page_addr >> 8) & 0xff,
854 host->devtype_data->send_addr(host,
855 (page_addr >> 16) & 0xff,
858 /* paddr_8 - paddr_15 */
859 host->devtype_data->send_addr(host,
860 (page_addr >> 8) & 0xff, true);
862 /* One more address cycle for higher density devices */
863 if (mtd->size >= 0x4000000) {
864 /* paddr_8 - paddr_15 */
865 host->devtype_data->send_addr(host,
866 (page_addr >> 8) & 0xff,
868 host->devtype_data->send_addr(host,
869 (page_addr >> 16) & 0xff,
872 /* paddr_8 - paddr_15 */
873 host->devtype_data->send_addr(host,
874 (page_addr >> 8) & 0xff, true);
879 #define MXC_V1_ECCBYTES 5
881 static int mxc_v1_ooblayout_ecc(struct mtd_info *mtd, int section,
882 struct mtd_oob_region *oobregion)
884 struct nand_chip *nand_chip = mtd_to_nand(mtd);
886 if (section >= nand_chip->ecc.steps)
889 oobregion->offset = (section * 16) + 6;
890 oobregion->length = MXC_V1_ECCBYTES;
895 static int mxc_v1_ooblayout_free(struct mtd_info *mtd, int section,
896 struct mtd_oob_region *oobregion)
898 struct nand_chip *nand_chip = mtd_to_nand(mtd);
900 if (section > nand_chip->ecc.steps)
904 if (mtd->writesize <= 512) {
905 oobregion->offset = 0;
906 oobregion->length = 5;
908 oobregion->offset = 2;
909 oobregion->length = 4;
912 oobregion->offset = ((section - 1) * 16) + MXC_V1_ECCBYTES + 6;
913 if (section < nand_chip->ecc.steps)
914 oobregion->length = (section * 16) + 6 -
917 oobregion->length = mtd->oobsize - oobregion->offset;
923 static const struct mtd_ooblayout_ops mxc_v1_ooblayout_ops = {
924 .ecc = mxc_v1_ooblayout_ecc,
925 .free = mxc_v1_ooblayout_free,
928 static int mxc_v2_ooblayout_ecc(struct mtd_info *mtd, int section,
929 struct mtd_oob_region *oobregion)
931 struct nand_chip *nand_chip = mtd_to_nand(mtd);
932 int stepsize = nand_chip->ecc.bytes == 9 ? 16 : 26;
934 if (section >= nand_chip->ecc.steps)
937 oobregion->offset = (section * stepsize) + 7;
938 oobregion->length = nand_chip->ecc.bytes;
943 static int mxc_v2_ooblayout_free(struct mtd_info *mtd, int section,
944 struct mtd_oob_region *oobregion)
946 struct nand_chip *nand_chip = mtd_to_nand(mtd);
947 int stepsize = nand_chip->ecc.bytes == 9 ? 16 : 26;
949 if (section >= nand_chip->ecc.steps)
953 if (mtd->writesize <= 512) {
954 oobregion->offset = 0;
955 oobregion->length = 5;
957 oobregion->offset = 2;
958 oobregion->length = 4;
961 oobregion->offset = section * stepsize;
962 oobregion->length = 7;
968 static const struct mtd_ooblayout_ops mxc_v2_ooblayout_ops = {
969 .ecc = mxc_v2_ooblayout_ecc,
970 .free = mxc_v2_ooblayout_free,
974 * v2 and v3 type controllers can do 4bit or 8bit ecc depending
975 * on how much oob the nand chip has. For 8bit ecc we need at least
976 * 26 bytes of oob data per 512 byte block.
978 static int get_eccsize(struct mtd_info *mtd)
980 int oobbytes_per_512 = 0;
982 oobbytes_per_512 = mtd->oobsize * 512 / mtd->writesize;
984 if (oobbytes_per_512 < 26)
990 static void preset_v1(struct mtd_info *mtd)
992 struct nand_chip *nand_chip = mtd_to_nand(mtd);
993 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
994 uint16_t config1 = 0;
996 if (nand_chip->ecc.mode == NAND_ECC_HW && mtd->writesize)
997 config1 |= NFC_V1_V2_CONFIG1_ECC_EN;
999 if (!host->devtype_data->irqpending_quirk)
1000 config1 |= NFC_V1_V2_CONFIG1_INT_MSK;
1004 writew(config1, NFC_V1_V2_CONFIG1);
1005 /* preset operation */
1007 /* Unlock the internal RAM Buffer */
1008 writew(0x2, NFC_V1_V2_CONFIG);
1010 /* Blocks to be unlocked */
1011 writew(0x0, NFC_V1_UNLOCKSTART_BLKADDR);
1012 writew(0xffff, NFC_V1_UNLOCKEND_BLKADDR);
1014 /* Unlock Block Command for given address range */
1015 writew(0x4, NFC_V1_V2_WRPROT);
1018 static int mxc_nand_v2_setup_data_interface(struct mtd_info *mtd, int csline,
1019 const struct nand_data_interface *conf)
1021 struct nand_chip *nand_chip = mtd_to_nand(mtd);
1022 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
1023 int tRC_min_ns, tRC_ps, ret;
1024 unsigned long rate, rate_round;
1025 const struct nand_sdr_timings *timings;
1028 timings = nand_get_sdr_timings(conf);
1029 if (IS_ERR(timings))
1032 config1 = readw(NFC_V1_V2_CONFIG1);
1034 tRC_min_ns = timings->tRC_min / 1000;
1035 rate = 1000000000 / tRC_min_ns;
1038 * For tRC < 30ns we have to use EDO mode. In this case the controller
1039 * does one access per clock cycle. Otherwise the controller does one
1040 * access in two clock cycles, thus we have to double the rate to the
1043 if (tRC_min_ns < 30) {
1044 rate_round = clk_round_rate(host->clk, rate);
1045 config1 |= NFC_V2_CONFIG1_ONE_CYCLE;
1046 tRC_ps = 1000000000 / (rate_round / 1000);
1049 rate_round = clk_round_rate(host->clk, rate);
1050 config1 &= ~NFC_V2_CONFIG1_ONE_CYCLE;
1051 tRC_ps = 1000000000 / (rate_round / 1000 / 2);
1055 * The timing values compared against are from the i.MX25 Automotive
1056 * datasheet, Table 50. NFC Timing Parameters
1058 if (timings->tCLS_min > tRC_ps - 1000 ||
1059 timings->tCLH_min > tRC_ps - 2000 ||
1060 timings->tCS_min > tRC_ps - 1000 ||
1061 timings->tCH_min > tRC_ps - 2000 ||
1062 timings->tWP_min > tRC_ps - 1500 ||
1063 timings->tALS_min > tRC_ps ||
1064 timings->tALH_min > tRC_ps - 3000 ||
1065 timings->tDS_min > tRC_ps ||
1066 timings->tDH_min > tRC_ps - 5000 ||
1067 timings->tWC_min > 2 * tRC_ps ||
1068 timings->tWH_min > tRC_ps - 2500 ||
1069 timings->tRR_min > 6 * tRC_ps ||
1070 timings->tRP_min > 3 * tRC_ps / 2 ||
1071 timings->tRC_min > 2 * tRC_ps ||
1072 timings->tREH_min > (tRC_ps / 2) - 2500) {
1073 dev_dbg(host->dev, "Timing out of bounds\n");
1077 if (csline == NAND_DATA_IFACE_CHECK_ONLY)
1080 ret = clk_set_rate(host->clk, rate);
1084 writew(config1, NFC_V1_V2_CONFIG1);
1086 dev_dbg(host->dev, "Setting rate to %ldHz, %s mode\n", rate_round,
1087 config1 & NFC_V2_CONFIG1_ONE_CYCLE ? "One cycle (EDO)" :
1093 static void preset_v2(struct mtd_info *mtd)
1095 struct nand_chip *nand_chip = mtd_to_nand(mtd);
1096 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
1097 uint16_t config1 = 0;
1099 config1 |= NFC_V2_CONFIG1_FP_INT;
1101 if (!host->devtype_data->irqpending_quirk)
1102 config1 |= NFC_V1_V2_CONFIG1_INT_MSK;
1104 if (mtd->writesize) {
1105 uint16_t pages_per_block = mtd->erasesize / mtd->writesize;
1107 if (nand_chip->ecc.mode == NAND_ECC_HW)
1108 config1 |= NFC_V1_V2_CONFIG1_ECC_EN;
1110 host->eccsize = get_eccsize(mtd);
1111 if (host->eccsize == 4)
1112 config1 |= NFC_V2_CONFIG1_ECC_MODE_4;
1114 config1 |= NFC_V2_CONFIG1_PPB(ffs(pages_per_block) - 6);
1119 writew(config1, NFC_V1_V2_CONFIG1);
1120 /* preset operation */
1122 /* Unlock the internal RAM Buffer */
1123 writew(0x2, NFC_V1_V2_CONFIG);
1125 /* Blocks to be unlocked */
1126 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR0);
1127 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR1);
1128 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR2);
1129 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR3);
1130 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR0);
1131 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR1);
1132 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR2);
1133 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR3);
1135 /* Unlock Block Command for given address range */
1136 writew(0x4, NFC_V1_V2_WRPROT);
1139 static void preset_v3(struct mtd_info *mtd)
1141 struct nand_chip *chip = mtd_to_nand(mtd);
1142 struct mxc_nand_host *host = nand_get_controller_data(chip);
1143 uint32_t config2, config3;
1146 writel(NFC_V3_CONFIG1_RBA(0), NFC_V3_CONFIG1);
1147 writel(NFC_V3_IPC_CREQ, NFC_V3_IPC);
1149 /* Unlock the internal RAM Buffer */
1150 writel(NFC_V3_WRPROT_BLS_UNLOCK | NFC_V3_WRPROT_UNLOCK,
1153 /* Blocks to be unlocked */
1154 for (i = 0; i < NAND_MAX_CHIPS; i++)
1155 writel(0xffff << 16, NFC_V3_WRPROT_UNLOCK_BLK_ADD0 + (i << 2));
1157 writel(0, NFC_V3_IPC);
1159 config2 = NFC_V3_CONFIG2_ONE_CYCLE |
1160 NFC_V3_CONFIG2_2CMD_PHASES |
1161 NFC_V3_CONFIG2_SPAS(mtd->oobsize >> 1) |
1162 NFC_V3_CONFIG2_ST_CMD(0x70) |
1163 NFC_V3_CONFIG2_INT_MSK |
1164 NFC_V3_CONFIG2_NUM_ADDR_PHASE0;
1166 addr_phases = fls(chip->pagemask) >> 3;
1168 if (mtd->writesize == 2048) {
1169 config2 |= NFC_V3_CONFIG2_PS_2048;
1170 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases);
1171 } else if (mtd->writesize == 4096) {
1172 config2 |= NFC_V3_CONFIG2_PS_4096;
1173 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases);
1175 config2 |= NFC_V3_CONFIG2_PS_512;
1176 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases - 1);
1179 if (mtd->writesize) {
1180 if (chip->ecc.mode == NAND_ECC_HW)
1181 config2 |= NFC_V3_CONFIG2_ECC_EN;
1183 config2 |= NFC_V3_CONFIG2_PPB(
1184 ffs(mtd->erasesize / mtd->writesize) - 6,
1185 host->devtype_data->ppb_shift);
1186 host->eccsize = get_eccsize(mtd);
1187 if (host->eccsize == 8)
1188 config2 |= NFC_V3_CONFIG2_ECC_MODE_8;
1191 writel(config2, NFC_V3_CONFIG2);
1193 config3 = NFC_V3_CONFIG3_NUM_OF_DEVICES(0) |
1194 NFC_V3_CONFIG3_NO_SDMA |
1195 NFC_V3_CONFIG3_RBB_MODE |
1196 NFC_V3_CONFIG3_SBB(6) | /* Reset default */
1197 NFC_V3_CONFIG3_ADD_OP(0);
1199 if (!(chip->options & NAND_BUSWIDTH_16))
1200 config3 |= NFC_V3_CONFIG3_FW8;
1202 writel(config3, NFC_V3_CONFIG3);
1204 writel(0, NFC_V3_DELAY_LINE);
1207 /* Used by the upper layer to write command to NAND Flash for
1208 * different operations to be carried out on NAND Flash */
1209 static void mxc_nand_command(struct mtd_info *mtd, unsigned command,
1210 int column, int page_addr)
1212 struct nand_chip *nand_chip = mtd_to_nand(mtd);
1213 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
1215 pr_debug("mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n",
1216 command, column, page_addr);
1218 /* Reset command state information */
1219 host->status_request = false;
1221 /* Command pre-processing step */
1223 case NAND_CMD_RESET:
1224 host->devtype_data->preset(mtd);
1225 host->devtype_data->send_cmd(host, command, false);
1228 case NAND_CMD_STATUS:
1229 host->buf_start = 0;
1230 host->status_request = true;
1232 host->devtype_data->send_cmd(host, command, true);
1233 WARN_ONCE(column != -1 || page_addr != -1,
1234 "Unexpected column/row value (cmd=%u, col=%d, row=%d)\n",
1235 command, column, page_addr);
1236 mxc_do_addr_cycle(mtd, column, page_addr);
1239 case NAND_CMD_READ0:
1240 case NAND_CMD_READOOB:
1241 if (command == NAND_CMD_READ0)
1242 host->buf_start = column;
1244 host->buf_start = column + mtd->writesize;
1246 command = NAND_CMD_READ0; /* only READ0 is valid */
1248 host->devtype_data->send_cmd(host, command, false);
1249 WARN_ONCE(column < 0,
1250 "Unexpected column/row value (cmd=%u, col=%d, row=%d)\n",
1251 command, column, page_addr);
1252 mxc_do_addr_cycle(mtd, 0, page_addr);
1254 if (mtd->writesize > 512)
1255 host->devtype_data->send_cmd(host,
1256 NAND_CMD_READSTART, true);
1258 host->devtype_data->send_page(mtd, NFC_OUTPUT);
1260 memcpy32_fromio(host->data_buf, host->main_area0,
1262 copy_spare(mtd, true);
1265 case NAND_CMD_SEQIN:
1266 if (column >= mtd->writesize)
1267 /* call ourself to read a page */
1268 mxc_nand_command(mtd, NAND_CMD_READ0, 0, page_addr);
1270 host->buf_start = column;
1272 host->devtype_data->send_cmd(host, command, false);
1273 WARN_ONCE(column < -1,
1274 "Unexpected column/row value (cmd=%u, col=%d, row=%d)\n",
1275 command, column, page_addr);
1276 mxc_do_addr_cycle(mtd, 0, page_addr);
1279 case NAND_CMD_PAGEPROG:
1280 memcpy32_toio(host->main_area0, host->data_buf, mtd->writesize);
1281 copy_spare(mtd, false);
1282 host->devtype_data->send_page(mtd, NFC_INPUT);
1283 host->devtype_data->send_cmd(host, command, true);
1284 WARN_ONCE(column != -1 || page_addr != -1,
1285 "Unexpected column/row value (cmd=%u, col=%d, row=%d)\n",
1286 command, column, page_addr);
1287 mxc_do_addr_cycle(mtd, column, page_addr);
1290 case NAND_CMD_READID:
1291 host->devtype_data->send_cmd(host, command, true);
1292 mxc_do_addr_cycle(mtd, column, page_addr);
1293 host->devtype_data->send_read_id(host);
1294 host->buf_start = 0;
1297 case NAND_CMD_ERASE1:
1298 case NAND_CMD_ERASE2:
1299 host->devtype_data->send_cmd(host, command, false);
1300 WARN_ONCE(column != -1,
1301 "Unexpected column value (cmd=%u, col=%d)\n",
1303 mxc_do_addr_cycle(mtd, column, page_addr);
1306 case NAND_CMD_PARAM:
1307 host->devtype_data->send_cmd(host, command, false);
1308 mxc_do_addr_cycle(mtd, column, page_addr);
1309 host->devtype_data->send_page(mtd, NFC_OUTPUT);
1310 memcpy32_fromio(host->data_buf, host->main_area0, 512);
1311 host->buf_start = 0;
1314 WARN_ONCE(1, "Unimplemented command (cmd=%u)\n",
1320 static int mxc_nand_onfi_set_features(struct mtd_info *mtd,
1321 struct nand_chip *chip, int addr,
1322 u8 *subfeature_param)
1324 struct nand_chip *nand_chip = mtd_to_nand(mtd);
1325 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
1328 if (!chip->onfi_version ||
1329 !(le16_to_cpu(chip->onfi_params.opt_cmd)
1330 & ONFI_OPT_CMD_SET_GET_FEATURES))
1333 host->buf_start = 0;
1335 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
1336 chip->write_byte(mtd, subfeature_param[i]);
1338 memcpy32_toio(host->main_area0, host->data_buf, mtd->writesize);
1339 host->devtype_data->send_cmd(host, NAND_CMD_SET_FEATURES, false);
1340 mxc_do_addr_cycle(mtd, addr, -1);
1341 host->devtype_data->send_page(mtd, NFC_INPUT);
1346 static int mxc_nand_onfi_get_features(struct mtd_info *mtd,
1347 struct nand_chip *chip, int addr,
1348 u8 *subfeature_param)
1350 struct nand_chip *nand_chip = mtd_to_nand(mtd);
1351 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
1354 if (!chip->onfi_version ||
1355 !(le16_to_cpu(chip->onfi_params.opt_cmd)
1356 & ONFI_OPT_CMD_SET_GET_FEATURES))
1359 host->devtype_data->send_cmd(host, NAND_CMD_GET_FEATURES, false);
1360 mxc_do_addr_cycle(mtd, addr, -1);
1361 host->devtype_data->send_page(mtd, NFC_OUTPUT);
1362 memcpy32_fromio(host->data_buf, host->main_area0, 512);
1363 host->buf_start = 0;
1365 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
1366 *subfeature_param++ = chip->read_byte(mtd);
1372 * The generic flash bbt decriptors overlap with our ecc
1373 * hardware, so define some i.MX specific ones.
1375 static uint8_t bbt_pattern[] = { 'B', 'b', 't', '0' };
1376 static uint8_t mirror_pattern[] = { '1', 't', 'b', 'B' };
1378 static struct nand_bbt_descr bbt_main_descr = {
1379 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1380 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1385 .pattern = bbt_pattern,
1388 static struct nand_bbt_descr bbt_mirror_descr = {
1389 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1390 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1395 .pattern = mirror_pattern,
1398 /* v1 + irqpending_quirk: i.MX21 */
1399 static const struct mxc_nand_devtype_data imx21_nand_devtype_data = {
1400 .preset = preset_v1,
1401 .send_cmd = send_cmd_v1_v2,
1402 .send_addr = send_addr_v1_v2,
1403 .send_page = send_page_v1,
1404 .send_read_id = send_read_id_v1_v2,
1405 .get_dev_status = get_dev_status_v1_v2,
1406 .check_int = check_int_v1_v2,
1407 .irq_control = irq_control_v1_v2,
1408 .get_ecc_status = get_ecc_status_v1,
1409 .ooblayout = &mxc_v1_ooblayout_ops,
1410 .select_chip = mxc_nand_select_chip_v1_v3,
1411 .correct_data = mxc_nand_correct_data_v1,
1412 .irqpending_quirk = 1,
1414 .regs_offset = 0xe00,
1415 .spare0_offset = 0x800,
1421 /* v1 + !irqpending_quirk: i.MX27, i.MX31 */
1422 static const struct mxc_nand_devtype_data imx27_nand_devtype_data = {
1423 .preset = preset_v1,
1424 .send_cmd = send_cmd_v1_v2,
1425 .send_addr = send_addr_v1_v2,
1426 .send_page = send_page_v1,
1427 .send_read_id = send_read_id_v1_v2,
1428 .get_dev_status = get_dev_status_v1_v2,
1429 .check_int = check_int_v1_v2,
1430 .irq_control = irq_control_v1_v2,
1431 .get_ecc_status = get_ecc_status_v1,
1432 .ooblayout = &mxc_v1_ooblayout_ops,
1433 .select_chip = mxc_nand_select_chip_v1_v3,
1434 .correct_data = mxc_nand_correct_data_v1,
1435 .irqpending_quirk = 0,
1437 .regs_offset = 0xe00,
1438 .spare0_offset = 0x800,
1445 /* v21: i.MX25, i.MX35 */
1446 static const struct mxc_nand_devtype_data imx25_nand_devtype_data = {
1447 .preset = preset_v2,
1448 .send_cmd = send_cmd_v1_v2,
1449 .send_addr = send_addr_v1_v2,
1450 .send_page = send_page_v2,
1451 .send_read_id = send_read_id_v1_v2,
1452 .get_dev_status = get_dev_status_v1_v2,
1453 .check_int = check_int_v1_v2,
1454 .irq_control = irq_control_v1_v2,
1455 .get_ecc_status = get_ecc_status_v2,
1456 .ooblayout = &mxc_v2_ooblayout_ops,
1457 .select_chip = mxc_nand_select_chip_v2,
1458 .correct_data = mxc_nand_correct_data_v2_v3,
1459 .setup_data_interface = mxc_nand_v2_setup_data_interface,
1460 .irqpending_quirk = 0,
1462 .regs_offset = 0x1e00,
1463 .spare0_offset = 0x1000,
1471 static const struct mxc_nand_devtype_data imx51_nand_devtype_data = {
1472 .preset = preset_v3,
1473 .send_cmd = send_cmd_v3,
1474 .send_addr = send_addr_v3,
1475 .send_page = send_page_v3,
1476 .send_read_id = send_read_id_v3,
1477 .get_dev_status = get_dev_status_v3,
1478 .check_int = check_int_v3,
1479 .irq_control = irq_control_v3,
1480 .get_ecc_status = get_ecc_status_v3,
1481 .ooblayout = &mxc_v2_ooblayout_ops,
1482 .select_chip = mxc_nand_select_chip_v1_v3,
1483 .correct_data = mxc_nand_correct_data_v2_v3,
1484 .irqpending_quirk = 0,
1487 .spare0_offset = 0x1000,
1488 .axi_offset = 0x1e00,
1496 static const struct mxc_nand_devtype_data imx53_nand_devtype_data = {
1497 .preset = preset_v3,
1498 .send_cmd = send_cmd_v3,
1499 .send_addr = send_addr_v3,
1500 .send_page = send_page_v3,
1501 .send_read_id = send_read_id_v3,
1502 .get_dev_status = get_dev_status_v3,
1503 .check_int = check_int_v3,
1504 .irq_control = irq_control_v3,
1505 .get_ecc_status = get_ecc_status_v3,
1506 .ooblayout = &mxc_v2_ooblayout_ops,
1507 .select_chip = mxc_nand_select_chip_v1_v3,
1508 .correct_data = mxc_nand_correct_data_v2_v3,
1509 .irqpending_quirk = 0,
1512 .spare0_offset = 0x1000,
1513 .axi_offset = 0x1e00,
1520 static inline int is_imx21_nfc(struct mxc_nand_host *host)
1522 return host->devtype_data == &imx21_nand_devtype_data;
1525 static inline int is_imx27_nfc(struct mxc_nand_host *host)
1527 return host->devtype_data == &imx27_nand_devtype_data;
1530 static inline int is_imx25_nfc(struct mxc_nand_host *host)
1532 return host->devtype_data == &imx25_nand_devtype_data;
1535 static inline int is_imx51_nfc(struct mxc_nand_host *host)
1537 return host->devtype_data == &imx51_nand_devtype_data;
1540 static inline int is_imx53_nfc(struct mxc_nand_host *host)
1542 return host->devtype_data == &imx53_nand_devtype_data;
1545 static const struct platform_device_id mxcnd_devtype[] = {
1547 .name = "imx21-nand",
1548 .driver_data = (kernel_ulong_t) &imx21_nand_devtype_data,
1550 .name = "imx27-nand",
1551 .driver_data = (kernel_ulong_t) &imx27_nand_devtype_data,
1553 .name = "imx25-nand",
1554 .driver_data = (kernel_ulong_t) &imx25_nand_devtype_data,
1556 .name = "imx51-nand",
1557 .driver_data = (kernel_ulong_t) &imx51_nand_devtype_data,
1559 .name = "imx53-nand",
1560 .driver_data = (kernel_ulong_t) &imx53_nand_devtype_data,
1565 MODULE_DEVICE_TABLE(platform, mxcnd_devtype);
1568 static const struct of_device_id mxcnd_dt_ids[] = {
1570 .compatible = "fsl,imx21-nand",
1571 .data = &imx21_nand_devtype_data,
1573 .compatible = "fsl,imx27-nand",
1574 .data = &imx27_nand_devtype_data,
1576 .compatible = "fsl,imx25-nand",
1577 .data = &imx25_nand_devtype_data,
1579 .compatible = "fsl,imx51-nand",
1580 .data = &imx51_nand_devtype_data,
1582 .compatible = "fsl,imx53-nand",
1583 .data = &imx53_nand_devtype_data,
1587 MODULE_DEVICE_TABLE(of, mxcnd_dt_ids);
1589 static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
1591 struct device_node *np = host->dev->of_node;
1592 const struct of_device_id *of_id =
1593 of_match_device(mxcnd_dt_ids, host->dev);
1598 host->devtype_data = of_id->data;
1603 static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
1609 static int mxcnd_probe(struct platform_device *pdev)
1611 struct nand_chip *this;
1612 struct mtd_info *mtd;
1613 struct mxc_nand_host *host;
1614 struct resource *res;
1617 /* Allocate memory for MTD device structure and private data */
1618 host = devm_kzalloc(&pdev->dev, sizeof(struct mxc_nand_host),
1623 /* allocate a temporary buffer for the nand_scan_ident() */
1624 host->data_buf = devm_kzalloc(&pdev->dev, PAGE_SIZE, GFP_KERNEL);
1625 if (!host->data_buf)
1628 host->dev = &pdev->dev;
1629 /* structures must be linked */
1631 mtd = nand_to_mtd(this);
1632 mtd->dev.parent = &pdev->dev;
1633 mtd->name = DRIVER_NAME;
1635 /* 50 us command delay time */
1636 this->chip_delay = 5;
1638 nand_set_controller_data(this, host);
1639 nand_set_flash_node(this, pdev->dev.of_node),
1640 this->dev_ready = mxc_nand_dev_ready;
1641 this->cmdfunc = mxc_nand_command;
1642 this->read_byte = mxc_nand_read_byte;
1643 this->read_word = mxc_nand_read_word;
1644 this->write_buf = mxc_nand_write_buf;
1645 this->read_buf = mxc_nand_read_buf;
1646 this->onfi_set_features = mxc_nand_onfi_set_features;
1647 this->onfi_get_features = mxc_nand_onfi_get_features;
1649 host->clk = devm_clk_get(&pdev->dev, NULL);
1650 if (IS_ERR(host->clk))
1651 return PTR_ERR(host->clk);
1653 err = mxcnd_probe_dt(host);
1655 struct mxc_nand_platform_data *pdata =
1656 dev_get_platdata(&pdev->dev);
1658 host->pdata = *pdata;
1659 host->devtype_data = (struct mxc_nand_devtype_data *)
1660 pdev->id_entry->driver_data;
1668 this->setup_data_interface = host->devtype_data->setup_data_interface;
1670 if (host->devtype_data->needs_ip) {
1671 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1672 host->regs_ip = devm_ioremap_resource(&pdev->dev, res);
1673 if (IS_ERR(host->regs_ip))
1674 return PTR_ERR(host->regs_ip);
1676 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1678 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1681 host->base = devm_ioremap_resource(&pdev->dev, res);
1682 if (IS_ERR(host->base))
1683 return PTR_ERR(host->base);
1685 host->main_area0 = host->base;
1687 if (host->devtype_data->regs_offset)
1688 host->regs = host->base + host->devtype_data->regs_offset;
1689 host->spare0 = host->base + host->devtype_data->spare0_offset;
1690 if (host->devtype_data->axi_offset)
1691 host->regs_axi = host->base + host->devtype_data->axi_offset;
1693 this->ecc.bytes = host->devtype_data->eccbytes;
1694 host->eccsize = host->devtype_data->eccsize;
1696 this->select_chip = host->devtype_data->select_chip;
1697 this->ecc.size = 512;
1698 mtd_set_ooblayout(mtd, host->devtype_data->ooblayout);
1700 if (host->pdata.hw_ecc) {
1701 this->ecc.mode = NAND_ECC_HW;
1703 this->ecc.mode = NAND_ECC_SOFT;
1704 this->ecc.algo = NAND_ECC_HAMMING;
1707 /* NAND bus width determines access functions used by upper layer */
1708 if (host->pdata.width == 2)
1709 this->options |= NAND_BUSWIDTH_16;
1711 /* update flash based bbt */
1712 if (host->pdata.flash_bbt)
1713 this->bbt_options |= NAND_BBT_USE_FLASH;
1715 init_completion(&host->op_completion);
1717 host->irq = platform_get_irq(pdev, 0);
1722 * Use host->devtype_data->irq_control() here instead of irq_control()
1723 * because we must not disable_irq_nosync without having requested the
1726 host->devtype_data->irq_control(host, 0);
1728 err = devm_request_irq(&pdev->dev, host->irq, mxc_nfc_irq,
1729 0, DRIVER_NAME, host);
1733 err = clk_prepare_enable(host->clk);
1739 * Now that we "own" the interrupt make sure the interrupt mask bit is
1740 * cleared on i.MX21. Otherwise we can't read the interrupt status bit
1743 if (host->devtype_data->irqpending_quirk) {
1744 disable_irq_nosync(host->irq);
1745 host->devtype_data->irq_control(host, 1);
1748 /* first scan to find the device and get the page size */
1749 err = nand_scan_ident(mtd, is_imx25_nfc(host) ? 4 : 1, NULL);
1753 switch (this->ecc.mode) {
1755 this->ecc.calculate = mxc_nand_calculate_ecc;
1756 this->ecc.hwctl = mxc_nand_enable_hwecc;
1757 this->ecc.correct = host->devtype_data->correct_data;
1768 if (this->bbt_options & NAND_BBT_USE_FLASH) {
1769 this->bbt_td = &bbt_main_descr;
1770 this->bbt_md = &bbt_mirror_descr;
1773 /* allocate the right size buffer now */
1774 devm_kfree(&pdev->dev, (void *)host->data_buf);
1775 host->data_buf = devm_kzalloc(&pdev->dev, mtd->writesize + mtd->oobsize,
1777 if (!host->data_buf) {
1782 /* Call preset again, with correct writesize this time */
1783 host->devtype_data->preset(mtd);
1785 if (!this->ecc.bytes) {
1786 if (host->eccsize == 8)
1787 this->ecc.bytes = 18;
1788 else if (host->eccsize == 4)
1789 this->ecc.bytes = 9;
1793 * Experimentation shows that i.MX NFC can only handle up to 218 oob
1794 * bytes. Limit used_oobsize to 218 so as to not confuse copy_spare()
1795 * into copying invalid data to/from the spare IO buffer, as this
1796 * might cause ECC data corruption when doing sub-page write to a
1797 * partially written page.
1799 host->used_oobsize = min(mtd->oobsize, 218U);
1801 if (this->ecc.mode == NAND_ECC_HW) {
1802 if (is_imx21_nfc(host) || is_imx27_nfc(host))
1803 this->ecc.strength = 1;
1805 this->ecc.strength = (host->eccsize == 4) ? 4 : 8;
1808 /* second phase scan */
1809 err = nand_scan_tail(mtd);
1813 /* Register the partitions */
1814 mtd_device_parse_register(mtd, part_probes,
1817 host->pdata.nr_parts);
1819 platform_set_drvdata(pdev, host);
1825 clk_disable_unprepare(host->clk);
1830 static int mxcnd_remove(struct platform_device *pdev)
1832 struct mxc_nand_host *host = platform_get_drvdata(pdev);
1834 nand_release(nand_to_mtd(&host->nand));
1836 clk_disable_unprepare(host->clk);
1841 static struct platform_driver mxcnd_driver = {
1843 .name = DRIVER_NAME,
1844 .of_match_table = of_match_ptr(mxcnd_dt_ids),
1846 .id_table = mxcnd_devtype,
1847 .probe = mxcnd_probe,
1848 .remove = mxcnd_remove,
1850 module_platform_driver(mxcnd_driver);
1852 MODULE_AUTHOR("Freescale Semiconductor, Inc.");
1853 MODULE_DESCRIPTION("MXC NAND MTD driver");
1854 MODULE_LICENSE("GPL");