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