Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved. |
| 3 | * Copyright 2008 Sascha Hauer, kernel@pengutronix.de |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 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. |
| 13 | * |
| 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, |
| 17 | * MA 02110-1301, USA. |
| 18 | */ |
| 19 | |
| 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/nand.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> |
| 32 | #include <linux/io.h> |
| 33 | |
| 34 | #include <asm/mach/flash.h> |
| 35 | #include <mach/mxc_nand.h> |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 36 | #include <mach/hardware.h> |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 37 | |
| 38 | #define DRIVER_NAME "mxc_nand" |
| 39 | |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 40 | #define nfc_is_v21() (cpu_is_mx25() || cpu_is_mx35()) |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 41 | #define nfc_is_v1() (cpu_is_mx31() || cpu_is_mx27() || cpu_is_mx21()) |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 42 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 43 | /* Addresses for NFC registers */ |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 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_BLKADDR (host->regs + 0x20) |
| 56 | #define NFC_V21_UNLOCKEND_BLKADDR (host->regs + 0x22) |
| 57 | #define NFC_V1_V2_NF_WRPRST (host->regs + 0x18) |
| 58 | #define NFC_V1_V2_CONFIG1 (host->regs + 0x1a) |
| 59 | #define NFC_V1_V2_CONFIG2 (host->regs + 0x1c) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 60 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 61 | #define NFC_V1_V2_CONFIG1_SP_EN (1 << 2) |
| 62 | #define NFC_V1_V2_CONFIG1_ECC_EN (1 << 3) |
| 63 | #define NFC_V1_V2_CONFIG1_INT_MSK (1 << 4) |
| 64 | #define NFC_V1_V2_CONFIG1_BIG (1 << 5) |
| 65 | #define NFC_V1_V2_CONFIG1_RST (1 << 6) |
| 66 | #define NFC_V1_V2_CONFIG1_CE (1 << 7) |
| 67 | #define NFC_V1_V2_CONFIG1_ONE_CYCLE (1 << 8) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 68 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 69 | #define NFC_V1_V2_CONFIG2_INT (1 << 15) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 70 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 71 | /* |
| 72 | * Operation modes for the NFC. Valid for v1, v2 and v3 |
| 73 | * type controllers. |
| 74 | */ |
| 75 | #define NFC_CMD (1 << 0) |
| 76 | #define NFC_ADDR (1 << 1) |
| 77 | #define NFC_INPUT (1 << 2) |
| 78 | #define NFC_OUTPUT (1 << 3) |
| 79 | #define NFC_ID (1 << 4) |
| 80 | #define NFC_STATUS (1 << 5) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 81 | |
| 82 | struct mxc_nand_host { |
| 83 | struct mtd_info mtd; |
| 84 | struct nand_chip nand; |
| 85 | struct mtd_partition *parts; |
| 86 | struct device *dev; |
| 87 | |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 88 | void *spare0; |
| 89 | void *main_area0; |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 90 | |
| 91 | void __iomem *base; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 92 | void __iomem *regs; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 93 | int status_request; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 94 | struct clk *clk; |
| 95 | int clk_act; |
| 96 | int irq; |
| 97 | |
| 98 | wait_queue_head_t irq_waitq; |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 99 | |
| 100 | uint8_t *data_buf; |
| 101 | unsigned int buf_start; |
| 102 | int spare_len; |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 103 | |
| 104 | void (*preset)(struct mtd_info *); |
| 105 | void (*send_cmd)(struct mxc_nand_host *, uint16_t, int); |
| 106 | void (*send_addr)(struct mxc_nand_host *, uint16_t, int); |
| 107 | void (*send_page)(struct mtd_info *, unsigned int); |
| 108 | void (*send_read_id)(struct mxc_nand_host *); |
| 109 | uint16_t (*get_dev_status)(struct mxc_nand_host *); |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 110 | int (*check_int)(struct mxc_nand_host *); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 111 | }; |
| 112 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 113 | /* OOB placement block for use with hardware ecc generation */ |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 114 | static struct nand_ecclayout nandv1_hw_eccoob_smallpage = { |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 115 | .eccbytes = 5, |
| 116 | .eccpos = {6, 7, 8, 9, 10}, |
Sascha Hauer | 8c1fd89 | 2009-10-21 10:22:01 +0200 | [diff] [blame] | 117 | .oobfree = {{0, 5}, {12, 4}, } |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 118 | }; |
| 119 | |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 120 | static struct nand_ecclayout nandv1_hw_eccoob_largepage = { |
Vladimir Barinov | bd3fd62 | 2009-05-25 13:06:17 +0400 | [diff] [blame] | 121 | .eccbytes = 20, |
| 122 | .eccpos = {6, 7, 8, 9, 10, 22, 23, 24, 25, 26, |
| 123 | 38, 39, 40, 41, 42, 54, 55, 56, 57, 58}, |
| 124 | .oobfree = {{2, 4}, {11, 10}, {27, 10}, {43, 10}, {59, 5}, } |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 125 | }; |
| 126 | |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 127 | /* OOB description for 512 byte pages with 16 byte OOB */ |
| 128 | static struct nand_ecclayout nandv2_hw_eccoob_smallpage = { |
| 129 | .eccbytes = 1 * 9, |
| 130 | .eccpos = { |
| 131 | 7, 8, 9, 10, 11, 12, 13, 14, 15 |
| 132 | }, |
| 133 | .oobfree = { |
| 134 | {.offset = 0, .length = 5} |
| 135 | } |
| 136 | }; |
| 137 | |
| 138 | /* OOB description for 2048 byte pages with 64 byte OOB */ |
| 139 | static struct nand_ecclayout nandv2_hw_eccoob_largepage = { |
| 140 | .eccbytes = 4 * 9, |
| 141 | .eccpos = { |
| 142 | 7, 8, 9, 10, 11, 12, 13, 14, 15, |
| 143 | 23, 24, 25, 26, 27, 28, 29, 30, 31, |
| 144 | 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 145 | 55, 56, 57, 58, 59, 60, 61, 62, 63 |
| 146 | }, |
| 147 | .oobfree = { |
| 148 | {.offset = 2, .length = 4}, |
| 149 | {.offset = 16, .length = 7}, |
| 150 | {.offset = 32, .length = 7}, |
| 151 | {.offset = 48, .length = 7} |
| 152 | } |
| 153 | }; |
| 154 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 155 | #ifdef CONFIG_MTD_PARTITIONS |
| 156 | static const char *part_probes[] = { "RedBoot", "cmdlinepart", NULL }; |
| 157 | #endif |
| 158 | |
| 159 | static irqreturn_t mxc_nfc_irq(int irq, void *dev_id) |
| 160 | { |
| 161 | struct mxc_nand_host *host = dev_id; |
| 162 | |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 163 | disable_irq_nosync(irq); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 164 | |
| 165 | wake_up(&host->irq_waitq); |
| 166 | |
| 167 | return IRQ_HANDLED; |
| 168 | } |
| 169 | |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 170 | static int check_int_v1_v2(struct mxc_nand_host *host) |
| 171 | { |
| 172 | uint32_t tmp; |
| 173 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 174 | tmp = readw(NFC_V1_V2_CONFIG2); |
| 175 | if (!(tmp & NFC_V1_V2_CONFIG2_INT)) |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 176 | return 0; |
| 177 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 178 | writew(tmp & ~NFC_V1_V2_CONFIG2_INT, NFC_V1_V2_CONFIG2); |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 179 | |
| 180 | return 1; |
| 181 | } |
| 182 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 183 | /* This function polls the NANDFC to wait for the basic operation to |
| 184 | * complete by checking the INT bit of config2 register. |
| 185 | */ |
Sascha Hauer | c110eaf | 2009-10-21 16:01:02 +0200 | [diff] [blame] | 186 | static void wait_op_done(struct mxc_nand_host *host, int useirq) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 187 | { |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 188 | int max_retries = 8000; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 189 | |
| 190 | if (useirq) { |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 191 | if (!host->check_int(host)) { |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 192 | |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 193 | enable_irq(host->irq); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 194 | |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 195 | wait_event(host->irq_waitq, host->check_int(host)); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 196 | } |
| 197 | } else { |
| 198 | while (max_retries-- > 0) { |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 199 | if (host->check_int(host)) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 200 | break; |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 201 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 202 | udelay(1); |
| 203 | } |
Roel Kluin | 43950a6 | 2009-06-04 16:24:59 +0200 | [diff] [blame] | 204 | if (max_retries < 0) |
Sascha Hauer | 6246549 | 2009-06-04 15:57:20 +0200 | [diff] [blame] | 205 | DEBUG(MTD_DEBUG_LEVEL0, "%s: INT not set\n", |
| 206 | __func__); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 207 | } |
| 208 | } |
| 209 | |
| 210 | /* This function issues the specified command to the NAND device and |
| 211 | * waits for completion. */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 212 | static void send_cmd_v1_v2(struct mxc_nand_host *host, uint16_t cmd, int useirq) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 213 | { |
| 214 | DEBUG(MTD_DEBUG_LEVEL3, "send_cmd(host, 0x%x, %d)\n", cmd, useirq); |
| 215 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 216 | writew(cmd, NFC_V1_V2_FLASH_CMD); |
| 217 | writew(NFC_CMD, NFC_V1_V2_CONFIG2); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 218 | |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 219 | if (cpu_is_mx21() && (cmd == NAND_CMD_RESET)) { |
| 220 | int max_retries = 100; |
| 221 | /* Reset completion is indicated by NFC_CONFIG2 */ |
| 222 | /* being set to 0 */ |
| 223 | while (max_retries-- > 0) { |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 224 | if (readw(NFC_V1_V2_CONFIG2) == 0) { |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 225 | break; |
| 226 | } |
| 227 | udelay(1); |
| 228 | } |
| 229 | if (max_retries < 0) |
| 230 | DEBUG(MTD_DEBUG_LEVEL0, "%s: RESET failed\n", |
| 231 | __func__); |
| 232 | } else { |
| 233 | /* Wait for operation to complete */ |
| 234 | wait_op_done(host, useirq); |
| 235 | } |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* This function sends an address (or partial address) to the |
| 239 | * NAND device. The address is used to select the source/destination for |
| 240 | * a NAND command. */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 241 | static void send_addr_v1_v2(struct mxc_nand_host *host, uint16_t addr, int islast) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 242 | { |
| 243 | DEBUG(MTD_DEBUG_LEVEL3, "send_addr(host, 0x%x %d)\n", addr, islast); |
| 244 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 245 | writew(addr, NFC_V1_V2_FLASH_ADDR); |
| 246 | writew(NFC_ADDR, NFC_V1_V2_CONFIG2); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 247 | |
| 248 | /* Wait for operation to complete */ |
Sascha Hauer | c110eaf | 2009-10-21 16:01:02 +0200 | [diff] [blame] | 249 | wait_op_done(host, islast); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 250 | } |
| 251 | |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 252 | static void send_page_v1_v2(struct mtd_info *mtd, unsigned int ops) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 253 | { |
Sascha Hauer | 2d69c7f | 2009-10-05 11:24:02 +0200 | [diff] [blame] | 254 | struct nand_chip *nand_chip = mtd->priv; |
| 255 | struct mxc_nand_host *host = nand_chip->priv; |
Sascha Hauer | c5d23f1 | 2009-06-04 17:25:53 +0200 | [diff] [blame] | 256 | int bufs, i; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 257 | |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 258 | if (nfc_is_v1() && mtd->writesize > 512) |
Sascha Hauer | c5d23f1 | 2009-06-04 17:25:53 +0200 | [diff] [blame] | 259 | bufs = 4; |
| 260 | else |
| 261 | bufs = 1; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 262 | |
Sascha Hauer | c5d23f1 | 2009-06-04 17:25:53 +0200 | [diff] [blame] | 263 | for (i = 0; i < bufs; i++) { |
| 264 | |
| 265 | /* NANDFC buffer 0 is used for page read/write */ |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 266 | writew(i, NFC_V1_V2_BUF_ADDR); |
Sascha Hauer | c5d23f1 | 2009-06-04 17:25:53 +0200 | [diff] [blame] | 267 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 268 | writew(ops, NFC_V1_V2_CONFIG2); |
Sascha Hauer | c5d23f1 | 2009-06-04 17:25:53 +0200 | [diff] [blame] | 269 | |
| 270 | /* Wait for operation to complete */ |
Sascha Hauer | c110eaf | 2009-10-21 16:01:02 +0200 | [diff] [blame] | 271 | wait_op_done(host, true); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 272 | } |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | /* Request the NANDFC to perform a read of the NAND device ID. */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 276 | static void send_read_id_v1_v2(struct mxc_nand_host *host) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 277 | { |
| 278 | struct nand_chip *this = &host->nand; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 279 | |
| 280 | /* NANDFC buffer 0 is used for device ID output */ |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 281 | writew(0x0, NFC_V1_V2_BUF_ADDR); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 282 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 283 | writew(NFC_ID, NFC_V1_V2_CONFIG2); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 284 | |
| 285 | /* Wait for operation to complete */ |
Sascha Hauer | c110eaf | 2009-10-21 16:01:02 +0200 | [diff] [blame] | 286 | wait_op_done(host, true); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 287 | |
| 288 | if (this->options & NAND_BUSWIDTH_16) { |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 289 | void __iomem *main_buf = host->main_area0; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 290 | /* compress the ID info */ |
| 291 | writeb(readb(main_buf + 2), main_buf + 1); |
| 292 | writeb(readb(main_buf + 4), main_buf + 2); |
| 293 | writeb(readb(main_buf + 6), main_buf + 3); |
| 294 | writeb(readb(main_buf + 8), main_buf + 4); |
| 295 | writeb(readb(main_buf + 10), main_buf + 5); |
| 296 | } |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 297 | memcpy(host->data_buf, host->main_area0, 16); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | /* This function requests the NANDFC to perform a read of the |
| 301 | * NAND device status and returns the current status. */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 302 | static uint16_t get_dev_status_v1_v2(struct mxc_nand_host *host) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 303 | { |
Sascha Hauer | c29c607 | 2010-08-06 15:53:05 +0200 | [diff] [blame] | 304 | void __iomem *main_buf = host->main_area0; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 305 | uint32_t store; |
Sascha Hauer | f06368f | 2009-10-05 17:18:42 +0200 | [diff] [blame] | 306 | uint16_t ret; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 307 | |
Sascha Hauer | c29c607 | 2010-08-06 15:53:05 +0200 | [diff] [blame] | 308 | writew(0x0, NFC_V1_V2_BUF_ADDR); |
| 309 | |
| 310 | /* |
| 311 | * The device status is stored in main_area0. To |
| 312 | * prevent corruption of the buffer save the value |
| 313 | * and restore it afterwards. |
| 314 | */ |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 315 | store = readl(main_buf); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 316 | |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 317 | writew(NFC_STATUS, NFC_V1_V2_CONFIG2); |
Sascha Hauer | c110eaf | 2009-10-21 16:01:02 +0200 | [diff] [blame] | 318 | wait_op_done(host, true); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 319 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 320 | ret = readw(main_buf); |
Sascha Hauer | c29c607 | 2010-08-06 15:53:05 +0200 | [diff] [blame] | 321 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 322 | writel(store, main_buf); |
| 323 | |
| 324 | return ret; |
| 325 | } |
| 326 | |
| 327 | /* This functions is used by upper layer to checks if device is ready */ |
| 328 | static int mxc_nand_dev_ready(struct mtd_info *mtd) |
| 329 | { |
| 330 | /* |
| 331 | * NFC handles R/B internally. Therefore, this function |
| 332 | * always returns status as ready. |
| 333 | */ |
| 334 | return 1; |
| 335 | } |
| 336 | |
| 337 | static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode) |
| 338 | { |
| 339 | /* |
| 340 | * If HW ECC is enabled, we turn it on during init. There is |
| 341 | * no need to enable again here. |
| 342 | */ |
| 343 | } |
| 344 | |
| 345 | static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat, |
| 346 | u_char *read_ecc, u_char *calc_ecc) |
| 347 | { |
| 348 | struct nand_chip *nand_chip = mtd->priv; |
| 349 | struct mxc_nand_host *host = nand_chip->priv; |
| 350 | |
| 351 | /* |
| 352 | * 1-Bit errors are automatically corrected in HW. No need for |
| 353 | * additional correction. 2-Bit errors cannot be corrected by |
| 354 | * HW ECC, so we need to return failure |
| 355 | */ |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 356 | uint16_t ecc_status = readw(NFC_V1_V2_ECC_STATUS_RESULT); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 357 | |
| 358 | if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) { |
| 359 | DEBUG(MTD_DEBUG_LEVEL0, |
| 360 | "MXC_NAND: HWECC uncorrectable 2-bit ECC error\n"); |
| 361 | return -1; |
| 362 | } |
| 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, |
| 368 | u_char *ecc_code) |
| 369 | { |
| 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | static u_char mxc_nand_read_byte(struct mtd_info *mtd) |
| 374 | { |
| 375 | struct nand_chip *nand_chip = mtd->priv; |
| 376 | struct mxc_nand_host *host = nand_chip->priv; |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 377 | uint8_t ret; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 378 | |
| 379 | /* Check for status request */ |
| 380 | if (host->status_request) |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 381 | return host->get_dev_status(host) & 0xFF; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 382 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 383 | ret = *(uint8_t *)(host->data_buf + host->buf_start); |
| 384 | host->buf_start++; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 385 | |
| 386 | return ret; |
| 387 | } |
| 388 | |
| 389 | static uint16_t mxc_nand_read_word(struct mtd_info *mtd) |
| 390 | { |
| 391 | struct nand_chip *nand_chip = mtd->priv; |
| 392 | struct mxc_nand_host *host = nand_chip->priv; |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 393 | uint16_t ret; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 394 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 395 | ret = *(uint16_t *)(host->data_buf + host->buf_start); |
| 396 | host->buf_start += 2; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 397 | |
| 398 | return ret; |
| 399 | } |
| 400 | |
| 401 | /* Write data of length len to buffer buf. The data to be |
| 402 | * written on NAND Flash is first copied to RAMbuffer. After the Data Input |
| 403 | * Operation by the NFC, the data is written to NAND Flash */ |
| 404 | static void mxc_nand_write_buf(struct mtd_info *mtd, |
| 405 | const u_char *buf, int len) |
| 406 | { |
| 407 | struct nand_chip *nand_chip = mtd->priv; |
| 408 | struct mxc_nand_host *host = nand_chip->priv; |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 409 | u16 col = host->buf_start; |
| 410 | int n = mtd->oobsize + mtd->writesize - col; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 411 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 412 | n = min(n, len); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 413 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 414 | memcpy(host->data_buf + col, buf, n); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 415 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 416 | host->buf_start += n; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | /* Read the data buffer from the NAND Flash. To read the data from NAND |
| 420 | * Flash first the data output cycle is initiated by the NFC, which copies |
| 421 | * the data to RAMbuffer. This data of length len is then copied to buffer buf. |
| 422 | */ |
| 423 | static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len) |
| 424 | { |
| 425 | struct nand_chip *nand_chip = mtd->priv; |
| 426 | struct mxc_nand_host *host = nand_chip->priv; |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 427 | u16 col = host->buf_start; |
| 428 | int n = mtd->oobsize + mtd->writesize - col; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 429 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 430 | n = min(n, len); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 431 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 432 | memcpy(buf, host->data_buf + col, len); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 433 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 434 | host->buf_start += len; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | /* Used by the upper layer to verify the data in NAND Flash |
| 438 | * with the data in the buf. */ |
| 439 | static int mxc_nand_verify_buf(struct mtd_info *mtd, |
| 440 | const u_char *buf, int len) |
| 441 | { |
| 442 | return -EFAULT; |
| 443 | } |
| 444 | |
| 445 | /* This function is used by upper layer for select and |
| 446 | * deselect of the NAND chip */ |
| 447 | static void mxc_nand_select_chip(struct mtd_info *mtd, int chip) |
| 448 | { |
| 449 | struct nand_chip *nand_chip = mtd->priv; |
| 450 | struct mxc_nand_host *host = nand_chip->priv; |
| 451 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 452 | switch (chip) { |
| 453 | case -1: |
| 454 | /* Disable the NFC clock */ |
| 455 | if (host->clk_act) { |
| 456 | clk_disable(host->clk); |
| 457 | host->clk_act = 0; |
| 458 | } |
| 459 | break; |
| 460 | case 0: |
| 461 | /* Enable the NFC clock */ |
| 462 | if (!host->clk_act) { |
| 463 | clk_enable(host->clk); |
| 464 | host->clk_act = 1; |
| 465 | } |
| 466 | break; |
| 467 | |
| 468 | default: |
| 469 | break; |
| 470 | } |
| 471 | } |
| 472 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 473 | /* |
| 474 | * Function to transfer data to/from spare area. |
| 475 | */ |
| 476 | static void copy_spare(struct mtd_info *mtd, bool bfrom) |
| 477 | { |
| 478 | struct nand_chip *this = mtd->priv; |
| 479 | struct mxc_nand_host *host = this->priv; |
| 480 | u16 i, j; |
| 481 | u16 n = mtd->writesize >> 9; |
| 482 | u8 *d = host->data_buf + mtd->writesize; |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 483 | u8 *s = host->spare0; |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 484 | u16 t = host->spare_len; |
| 485 | |
| 486 | j = (mtd->oobsize / n >> 1) << 1; |
| 487 | |
| 488 | if (bfrom) { |
| 489 | for (i = 0; i < n - 1; i++) |
| 490 | memcpy(d + i * j, s + i * t, j); |
| 491 | |
| 492 | /* the last section */ |
| 493 | memcpy(d + i * j, s + i * t, mtd->oobsize - i * j); |
| 494 | } else { |
| 495 | for (i = 0; i < n - 1; i++) |
| 496 | memcpy(&s[i * t], &d[i * j], j); |
| 497 | |
| 498 | /* the last section */ |
| 499 | memcpy(&s[i * t], &d[i * j], mtd->oobsize - i * j); |
| 500 | } |
| 501 | } |
| 502 | |
Sascha Hauer | a3e65b6 | 2009-06-02 11:47:59 +0200 | [diff] [blame] | 503 | static void mxc_do_addr_cycle(struct mtd_info *mtd, int column, int page_addr) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 504 | { |
| 505 | struct nand_chip *nand_chip = mtd->priv; |
| 506 | struct mxc_nand_host *host = nand_chip->priv; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 507 | |
| 508 | /* Write out column address, if necessary */ |
| 509 | if (column != -1) { |
| 510 | /* |
| 511 | * MXC NANDFC can only perform full page+spare or |
| 512 | * spare-only read/write. When the upper layers |
| 513 | * layers perform a read/write buf operation, |
Daniel Mack | 3ad2f3f | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 514 | * we will used the saved column address to index into |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 515 | * the full page. |
| 516 | */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 517 | host->send_addr(host, 0, page_addr == -1); |
Sascha Hauer | 2d69c7f | 2009-10-05 11:24:02 +0200 | [diff] [blame] | 518 | if (mtd->writesize > 512) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 519 | /* another col addr cycle for 2k page */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 520 | host->send_addr(host, 0, false); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | /* Write out page address, if necessary */ |
| 524 | if (page_addr != -1) { |
| 525 | /* paddr_0 - p_addr_7 */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 526 | host->send_addr(host, (page_addr & 0xff), false); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 527 | |
Sascha Hauer | 2d69c7f | 2009-10-05 11:24:02 +0200 | [diff] [blame] | 528 | if (mtd->writesize > 512) { |
Vladimir Barinov | bd3fd62 | 2009-05-25 13:06:17 +0400 | [diff] [blame] | 529 | if (mtd->size >= 0x10000000) { |
| 530 | /* paddr_8 - paddr_15 */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 531 | host->send_addr(host, (page_addr >> 8) & 0xff, false); |
| 532 | host->send_addr(host, (page_addr >> 16) & 0xff, true); |
Vladimir Barinov | bd3fd62 | 2009-05-25 13:06:17 +0400 | [diff] [blame] | 533 | } else |
| 534 | /* paddr_8 - paddr_15 */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 535 | host->send_addr(host, (page_addr >> 8) & 0xff, true); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 536 | } else { |
| 537 | /* One more address cycle for higher density devices */ |
| 538 | if (mtd->size >= 0x4000000) { |
| 539 | /* paddr_8 - paddr_15 */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 540 | host->send_addr(host, (page_addr >> 8) & 0xff, false); |
| 541 | host->send_addr(host, (page_addr >> 16) & 0xff, true); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 542 | } else |
| 543 | /* paddr_8 - paddr_15 */ |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 544 | host->send_addr(host, (page_addr >> 8) & 0xff, true); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 545 | } |
| 546 | } |
Sascha Hauer | a3e65b6 | 2009-06-02 11:47:59 +0200 | [diff] [blame] | 547 | } |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 548 | |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 549 | static void preset_v1_v2(struct mtd_info *mtd) |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 550 | { |
| 551 | struct nand_chip *nand_chip = mtd->priv; |
| 552 | struct mxc_nand_host *host = nand_chip->priv; |
| 553 | uint16_t tmp; |
| 554 | |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 555 | /* enable interrupt, disable spare enable */ |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 556 | tmp = readw(NFC_V1_V2_CONFIG1); |
| 557 | tmp &= ~NFC_V1_V2_CONFIG1_INT_MSK; |
| 558 | tmp &= ~NFC_V1_V2_CONFIG1_SP_EN; |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 559 | if (nand_chip->ecc.mode == NAND_ECC_HW) { |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 560 | tmp |= NFC_V1_V2_CONFIG1_ECC_EN; |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 561 | } else { |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 562 | tmp &= ~NFC_V1_V2_CONFIG1_ECC_EN; |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 563 | } |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 564 | writew(tmp, NFC_V1_V2_CONFIG1); |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 565 | /* preset operation */ |
| 566 | |
| 567 | /* Unlock the internal RAM Buffer */ |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 568 | writew(0x2, NFC_V1_V2_CONFIG); |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 569 | |
| 570 | /* Blocks to be unlocked */ |
| 571 | if (nfc_is_v21()) { |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 572 | writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR); |
| 573 | writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR); |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 574 | } else if (nfc_is_v1()) { |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 575 | writew(0x0, NFC_V1_UNLOCKSTART_BLKADDR); |
| 576 | writew(0x4000, NFC_V1_UNLOCKEND_BLKADDR); |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 577 | } else |
| 578 | BUG(); |
| 579 | |
| 580 | /* Unlock Block Command for given address range */ |
Sascha Hauer | 1bc9918 | 2010-08-06 15:53:08 +0200 | [diff] [blame^] | 581 | writew(0x4, NFC_V1_V2_WRPROT); |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 582 | } |
| 583 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 584 | /* Used by the upper layer to write command to NAND Flash for |
| 585 | * different operations to be carried out on NAND Flash */ |
| 586 | static void mxc_nand_command(struct mtd_info *mtd, unsigned command, |
| 587 | int column, int page_addr) |
| 588 | { |
| 589 | struct nand_chip *nand_chip = mtd->priv; |
| 590 | struct mxc_nand_host *host = nand_chip->priv; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 591 | |
| 592 | DEBUG(MTD_DEBUG_LEVEL3, |
| 593 | "mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n", |
| 594 | command, column, page_addr); |
| 595 | |
| 596 | /* Reset command state information */ |
| 597 | host->status_request = false; |
| 598 | |
| 599 | /* Command pre-processing step */ |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 600 | switch (command) { |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 601 | case NAND_CMD_RESET: |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 602 | host->preset(mtd); |
| 603 | host->send_cmd(host, command, false); |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 604 | break; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 605 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 606 | case NAND_CMD_STATUS: |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 607 | host->buf_start = 0; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 608 | host->status_request = true; |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 609 | |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 610 | host->send_cmd(host, command, true); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 611 | mxc_do_addr_cycle(mtd, column, page_addr); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 612 | break; |
| 613 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 614 | case NAND_CMD_READ0: |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 615 | case NAND_CMD_READOOB: |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 616 | if (command == NAND_CMD_READ0) |
| 617 | host->buf_start = column; |
| 618 | else |
| 619 | host->buf_start = column + mtd->writesize; |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 620 | |
Sascha Hauer | 6c49939 | 2010-05-28 10:02:17 +0200 | [diff] [blame] | 621 | command = NAND_CMD_READ0; /* only READ0 is valid */ |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 622 | |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 623 | host->send_cmd(host, command, false); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 624 | mxc_do_addr_cycle(mtd, column, page_addr); |
| 625 | |
Sascha Hauer | 2d69c7f | 2009-10-05 11:24:02 +0200 | [diff] [blame] | 626 | if (mtd->writesize > 512) |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 627 | host->send_cmd(host, NAND_CMD_READSTART, true); |
Sascha Hauer | c5d23f1 | 2009-06-04 17:25:53 +0200 | [diff] [blame] | 628 | |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 629 | host->send_page(mtd, NFC_OUTPUT); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 630 | |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 631 | memcpy(host->data_buf, host->main_area0, mtd->writesize); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 632 | copy_spare(mtd, true); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 633 | break; |
| 634 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 635 | case NAND_CMD_SEQIN: |
Sascha Hauer | 6c49939 | 2010-05-28 10:02:17 +0200 | [diff] [blame] | 636 | if (column >= mtd->writesize) |
| 637 | /* call ourself to read a page */ |
| 638 | mxc_nand_command(mtd, NAND_CMD_READ0, 0, page_addr); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 639 | |
Sascha Hauer | 6c49939 | 2010-05-28 10:02:17 +0200 | [diff] [blame] | 640 | host->buf_start = column; |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 641 | |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 642 | host->send_cmd(host, command, false); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 643 | mxc_do_addr_cycle(mtd, column, page_addr); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 644 | break; |
| 645 | |
| 646 | case NAND_CMD_PAGEPROG: |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 647 | memcpy(host->main_area0, host->data_buf, mtd->writesize); |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 648 | copy_spare(mtd, false); |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 649 | host->send_page(mtd, NFC_INPUT); |
| 650 | host->send_cmd(host, command, true); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 651 | mxc_do_addr_cycle(mtd, column, page_addr); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 652 | break; |
| 653 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 654 | case NAND_CMD_READID: |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 655 | host->send_cmd(host, command, true); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 656 | mxc_do_addr_cycle(mtd, column, page_addr); |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 657 | host->send_read_id(host); |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 658 | host->buf_start = column; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 659 | break; |
| 660 | |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 661 | case NAND_CMD_ERASE1: |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 662 | case NAND_CMD_ERASE2: |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 663 | host->send_cmd(host, command, false); |
Sascha Hauer | 89121a6 | 2009-06-04 17:18:01 +0200 | [diff] [blame] | 664 | mxc_do_addr_cycle(mtd, column, page_addr); |
| 665 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 666 | break; |
| 667 | } |
| 668 | } |
| 669 | |
Sascha Hauer | f137205 | 2009-10-21 14:25:27 +0200 | [diff] [blame] | 670 | /* |
| 671 | * The generic flash bbt decriptors overlap with our ecc |
| 672 | * hardware, so define some i.MX specific ones. |
| 673 | */ |
| 674 | static uint8_t bbt_pattern[] = { 'B', 'b', 't', '0' }; |
| 675 | static uint8_t mirror_pattern[] = { '1', 't', 'b', 'B' }; |
| 676 | |
| 677 | static struct nand_bbt_descr bbt_main_descr = { |
| 678 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
| 679 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 680 | .offs = 0, |
| 681 | .len = 4, |
| 682 | .veroffs = 4, |
| 683 | .maxblocks = 4, |
| 684 | .pattern = bbt_pattern, |
| 685 | }; |
| 686 | |
| 687 | static struct nand_bbt_descr bbt_mirror_descr = { |
| 688 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
| 689 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 690 | .offs = 0, |
| 691 | .len = 4, |
| 692 | .veroffs = 4, |
| 693 | .maxblocks = 4, |
| 694 | .pattern = mirror_pattern, |
| 695 | }; |
| 696 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 697 | static int __init mxcnd_probe(struct platform_device *pdev) |
| 698 | { |
| 699 | struct nand_chip *this; |
| 700 | struct mtd_info *mtd; |
| 701 | struct mxc_nand_platform_data *pdata = pdev->dev.platform_data; |
| 702 | struct mxc_nand_host *host; |
| 703 | struct resource *res; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 704 | int err = 0, nr_parts = 0; |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 705 | struct nand_ecclayout *oob_smallpage, *oob_largepage; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 706 | |
| 707 | /* Allocate memory for MTD device structure and private data */ |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 708 | host = kzalloc(sizeof(struct mxc_nand_host) + NAND_MAX_PAGESIZE + |
| 709 | NAND_MAX_OOBSIZE, GFP_KERNEL); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 710 | if (!host) |
| 711 | return -ENOMEM; |
| 712 | |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 713 | host->data_buf = (uint8_t *)(host + 1); |
Sascha Hauer | f8f9608 | 2009-06-04 17:12:26 +0200 | [diff] [blame] | 714 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 715 | host->dev = &pdev->dev; |
| 716 | /* structures must be linked */ |
| 717 | this = &host->nand; |
| 718 | mtd = &host->mtd; |
| 719 | mtd->priv = this; |
| 720 | mtd->owner = THIS_MODULE; |
David Brownell | 87f39f0 | 2009-03-26 00:42:50 -0700 | [diff] [blame] | 721 | mtd->dev.parent = &pdev->dev; |
Sascha Hauer | 1fbff0a | 2009-10-21 16:06:27 +0200 | [diff] [blame] | 722 | mtd->name = DRIVER_NAME; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 723 | |
| 724 | /* 50 us command delay time */ |
| 725 | this->chip_delay = 5; |
| 726 | |
| 727 | this->priv = host; |
| 728 | this->dev_ready = mxc_nand_dev_ready; |
| 729 | this->cmdfunc = mxc_nand_command; |
| 730 | this->select_chip = mxc_nand_select_chip; |
| 731 | this->read_byte = mxc_nand_read_byte; |
| 732 | this->read_word = mxc_nand_read_word; |
| 733 | this->write_buf = mxc_nand_write_buf; |
| 734 | this->read_buf = mxc_nand_read_buf; |
| 735 | this->verify_buf = mxc_nand_verify_buf; |
| 736 | |
Sascha Hauer | e65fb00 | 2009-02-16 14:29:10 +0100 | [diff] [blame] | 737 | host->clk = clk_get(&pdev->dev, "nfc"); |
Vladimir Barinov | 8541c11 | 2009-04-23 15:47:22 +0400 | [diff] [blame] | 738 | if (IS_ERR(host->clk)) { |
| 739 | err = PTR_ERR(host->clk); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 740 | goto eclk; |
Vladimir Barinov | 8541c11 | 2009-04-23 15:47:22 +0400 | [diff] [blame] | 741 | } |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 742 | |
| 743 | clk_enable(host->clk); |
| 744 | host->clk_act = 1; |
| 745 | |
| 746 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 747 | if (!res) { |
| 748 | err = -ENODEV; |
| 749 | goto eres; |
| 750 | } |
| 751 | |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 752 | host->base = ioremap(res->start, resource_size(res)); |
| 753 | if (!host->base) { |
Vladimir Barinov | 8541c11 | 2009-04-23 15:47:22 +0400 | [diff] [blame] | 754 | err = -ENOMEM; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 755 | goto eres; |
| 756 | } |
| 757 | |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 758 | host->main_area0 = host->base; |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 759 | |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 760 | if (nfc_is_v1() || nfc_is_v21()) { |
| 761 | host->preset = preset_v1_v2; |
| 762 | host->send_cmd = send_cmd_v1_v2; |
| 763 | host->send_addr = send_addr_v1_v2; |
| 764 | host->send_page = send_page_v1_v2; |
| 765 | host->send_read_id = send_read_id_v1_v2; |
| 766 | host->get_dev_status = get_dev_status_v1_v2; |
Sascha Hauer | 7aaf28a | 2010-08-06 15:53:07 +0200 | [diff] [blame] | 767 | host->check_int = check_int_v1_v2; |
Sascha Hauer | 5f97304 | 2010-08-06 15:53:06 +0200 | [diff] [blame] | 768 | } |
| 769 | |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 770 | if (nfc_is_v21()) { |
Sascha Hauer | 938cf99 | 2010-08-06 15:53:04 +0200 | [diff] [blame] | 771 | host->regs = host->base + 0x1e00; |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 772 | host->spare0 = host->base + 0x1000; |
| 773 | host->spare_len = 64; |
| 774 | oob_smallpage = &nandv2_hw_eccoob_smallpage; |
| 775 | oob_largepage = &nandv2_hw_eccoob_largepage; |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 776 | this->ecc.bytes = 9; |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 777 | } else if (nfc_is_v1()) { |
Sascha Hauer | 938cf99 | 2010-08-06 15:53:04 +0200 | [diff] [blame] | 778 | host->regs = host->base + 0xe00; |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 779 | host->spare0 = host->base + 0x800; |
| 780 | host->spare_len = 16; |
| 781 | oob_smallpage = &nandv1_hw_eccoob_smallpage; |
| 782 | oob_largepage = &nandv1_hw_eccoob_largepage; |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 783 | this->ecc.bytes = 3; |
| 784 | } else |
| 785 | BUG(); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 786 | |
Sascha Hauer | 13e1add | 2009-10-21 10:39:05 +0200 | [diff] [blame] | 787 | this->ecc.size = 512; |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 788 | this->ecc.layout = oob_smallpage; |
Sascha Hauer | 13e1add | 2009-10-21 10:39:05 +0200 | [diff] [blame] | 789 | |
| 790 | if (pdata->hw_ecc) { |
| 791 | this->ecc.calculate = mxc_nand_calculate_ecc; |
| 792 | this->ecc.hwctl = mxc_nand_enable_hwecc; |
| 793 | this->ecc.correct = mxc_nand_correct_data; |
| 794 | this->ecc.mode = NAND_ECC_HW; |
Sascha Hauer | 13e1add | 2009-10-21 10:39:05 +0200 | [diff] [blame] | 795 | } else { |
| 796 | this->ecc.mode = NAND_ECC_SOFT; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 797 | } |
| 798 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 799 | /* NAND bus width determines access funtions used by upper layer */ |
Sascha Hauer | 13e1add | 2009-10-21 10:39:05 +0200 | [diff] [blame] | 800 | if (pdata->width == 2) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 801 | this->options |= NAND_BUSWIDTH_16; |
Sascha Hauer | 13e1add | 2009-10-21 10:39:05 +0200 | [diff] [blame] | 802 | |
Sascha Hauer | f137205 | 2009-10-21 14:25:27 +0200 | [diff] [blame] | 803 | if (pdata->flash_bbt) { |
| 804 | this->bbt_td = &bbt_main_descr; |
| 805 | this->bbt_md = &bbt_mirror_descr; |
| 806 | /* update flash based bbt */ |
| 807 | this->options |= NAND_USE_FLASH_BBT; |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 808 | } |
| 809 | |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 810 | init_waitqueue_head(&host->irq_waitq); |
| 811 | |
| 812 | host->irq = platform_get_irq(pdev, 0); |
| 813 | |
Ivo Clarysse | a47bfd2 | 2010-04-08 16:16:51 +0200 | [diff] [blame] | 814 | err = request_irq(host->irq, mxc_nfc_irq, IRQF_DISABLED, DRIVER_NAME, host); |
Ivo Clarysse | d484018 | 2010-04-08 16:14:44 +0200 | [diff] [blame] | 815 | if (err) |
| 816 | goto eirq; |
| 817 | |
Vladimir Barinov | bd3fd62 | 2009-05-25 13:06:17 +0400 | [diff] [blame] | 818 | /* first scan to find the device and get the page size */ |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 819 | if (nand_scan_ident(mtd, 1, NULL)) { |
Vladimir Barinov | bd3fd62 | 2009-05-25 13:06:17 +0400 | [diff] [blame] | 820 | err = -ENXIO; |
| 821 | goto escan; |
| 822 | } |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 823 | |
Sascha Hauer | 2d69c7f | 2009-10-05 11:24:02 +0200 | [diff] [blame] | 824 | if (mtd->writesize == 2048) |
Sascha Hauer | 9467114 | 2009-10-05 12:14:21 +0200 | [diff] [blame] | 825 | this->ecc.layout = oob_largepage; |
Vladimir Barinov | bd3fd62 | 2009-05-25 13:06:17 +0400 | [diff] [blame] | 826 | |
| 827 | /* second phase scan */ |
| 828 | if (nand_scan_tail(mtd)) { |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 829 | err = -ENXIO; |
| 830 | goto escan; |
| 831 | } |
| 832 | |
| 833 | /* Register the partitions */ |
| 834 | #ifdef CONFIG_MTD_PARTITIONS |
| 835 | nr_parts = |
| 836 | parse_mtd_partitions(mtd, part_probes, &host->parts, 0); |
| 837 | if (nr_parts > 0) |
| 838 | add_mtd_partitions(mtd, host->parts, nr_parts); |
| 839 | else |
| 840 | #endif |
| 841 | { |
| 842 | pr_info("Registering %s as whole device\n", mtd->name); |
| 843 | add_mtd_device(mtd); |
| 844 | } |
| 845 | |
| 846 | platform_set_drvdata(pdev, host); |
| 847 | |
| 848 | return 0; |
| 849 | |
| 850 | escan: |
Magnus Lilja | b258fd8 | 2009-05-08 21:57:47 +0200 | [diff] [blame] | 851 | free_irq(host->irq, host); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 852 | eirq: |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 853 | iounmap(host->base); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 854 | eres: |
| 855 | clk_put(host->clk); |
| 856 | eclk: |
| 857 | kfree(host); |
| 858 | |
| 859 | return err; |
| 860 | } |
| 861 | |
Uwe Kleine-König | 51eeb87 | 2009-12-07 09:44:05 +0000 | [diff] [blame] | 862 | static int __devexit mxcnd_remove(struct platform_device *pdev) |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 863 | { |
| 864 | struct mxc_nand_host *host = platform_get_drvdata(pdev); |
| 865 | |
| 866 | clk_put(host->clk); |
| 867 | |
| 868 | platform_set_drvdata(pdev, NULL); |
| 869 | |
| 870 | nand_release(&host->mtd); |
Magnus Lilja | b258fd8 | 2009-05-08 21:57:47 +0200 | [diff] [blame] | 871 | free_irq(host->irq, host); |
Sascha Hauer | c6de7e1 | 2009-10-05 11:14:35 +0200 | [diff] [blame] | 872 | iounmap(host->base); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 873 | kfree(host); |
| 874 | |
| 875 | return 0; |
| 876 | } |
| 877 | |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 878 | static struct platform_driver mxcnd_driver = { |
| 879 | .driver = { |
| 880 | .name = DRIVER_NAME, |
Eric Bénard | 04dd0d3 | 2010-06-17 20:59:04 +0200 | [diff] [blame] | 881 | }, |
Uwe Kleine-König | daa0f15 | 2009-11-24 22:07:08 +0100 | [diff] [blame] | 882 | .remove = __devexit_p(mxcnd_remove), |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 883 | }; |
| 884 | |
| 885 | static int __init mxc_nd_init(void) |
| 886 | { |
Vladimir Barinov | 8541c11 | 2009-04-23 15:47:22 +0400 | [diff] [blame] | 887 | return platform_driver_probe(&mxcnd_driver, mxcnd_probe); |
Sascha Hauer | 34f6e15 | 2008-09-02 17:16:59 +0200 | [diff] [blame] | 888 | } |
| 889 | |
| 890 | static void __exit mxc_nd_cleanup(void) |
| 891 | { |
| 892 | /* Unregister the device structure */ |
| 893 | platform_driver_unregister(&mxcnd_driver); |
| 894 | } |
| 895 | |
| 896 | module_init(mxc_nd_init); |
| 897 | module_exit(mxc_nd_cleanup); |
| 898 | |
| 899 | MODULE_AUTHOR("Freescale Semiconductor, Inc."); |
| 900 | MODULE_DESCRIPTION("MXC NAND MTD driver"); |
| 901 | MODULE_LICENSE("GPL"); |