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