blob: 6d0fa4cd1ddfc1f3b151df084a57c6b9f18c912d [file] [log] [blame]
Sascha Hauer34f6e152008-09-02 17:16:59 +02001/*
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 Hauer94671142009-10-05 12:14:21 +020036#include <mach/hardware.h>
Sascha Hauer34f6e152008-09-02 17:16:59 +020037
38#define DRIVER_NAME "mxc_nand"
39
Sascha Hauer94671142009-10-05 12:14:21 +020040#define nfc_is_v21() (cpu_is_mx25() || cpu_is_mx35())
Ivo Claryssea47bfd22010-04-08 16:16:51 +020041#define nfc_is_v1() (cpu_is_mx31() || cpu_is_mx27() || cpu_is_mx21())
Sascha Hauer94671142009-10-05 12:14:21 +020042
Sascha Hauer34f6e152008-09-02 17:16:59 +020043/* Addresses for NFC registers */
Sascha Hauer1bc99182010-08-06 15:53:08 +020044#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 Hauer34f6e152008-09-02 17:16:59 +020060
Sascha Hauer1bc99182010-08-06 15:53:08 +020061#define NFC_V1_V2_CONFIG1_SP_EN (1 << 2)
62#define NFC_V1_V2_CONFIG1_ECC_EN (1 << 3)
63#define NFC_V1_V2_CONFIG1_INT_MSK (1 << 4)
64#define NFC_V1_V2_CONFIG1_BIG (1 << 5)
65#define NFC_V1_V2_CONFIG1_RST (1 << 6)
66#define NFC_V1_V2_CONFIG1_CE (1 << 7)
67#define NFC_V1_V2_CONFIG1_ONE_CYCLE (1 << 8)
Sascha Hauer34f6e152008-09-02 17:16:59 +020068
Sascha Hauer1bc99182010-08-06 15:53:08 +020069#define NFC_V1_V2_CONFIG2_INT (1 << 15)
Sascha Hauer34f6e152008-09-02 17:16:59 +020070
Sascha Hauer1bc99182010-08-06 15:53:08 +020071/*
72 * Operation modes for the NFC. Valid for v1, v2 and v3
73 * type controllers.
74 */
75#define NFC_CMD (1 << 0)
76#define NFC_ADDR (1 << 1)
77#define NFC_INPUT (1 << 2)
78#define NFC_OUTPUT (1 << 3)
79#define NFC_ID (1 << 4)
80#define NFC_STATUS (1 << 5)
Sascha Hauer34f6e152008-09-02 17:16:59 +020081
82struct mxc_nand_host {
83 struct mtd_info mtd;
84 struct nand_chip nand;
85 struct mtd_partition *parts;
86 struct device *dev;
87
Sascha Hauerc6de7e12009-10-05 11:14:35 +020088 void *spare0;
89 void *main_area0;
Sascha Hauerc6de7e12009-10-05 11:14:35 +020090
91 void __iomem *base;
Sascha Hauer34f6e152008-09-02 17:16:59 +020092 void __iomem *regs;
Sascha Hauer34f6e152008-09-02 17:16:59 +020093 int status_request;
Sascha Hauer34f6e152008-09-02 17:16:59 +020094 struct clk *clk;
95 int clk_act;
96 int irq;
97
98 wait_queue_head_t irq_waitq;
Sascha Hauerf8f96082009-06-04 17:12:26 +020099
100 uint8_t *data_buf;
101 unsigned int buf_start;
102 int spare_len;
Sascha Hauer5f973042010-08-06 15:53:06 +0200103
104 void (*preset)(struct mtd_info *);
105 void (*send_cmd)(struct mxc_nand_host *, uint16_t, int);
106 void (*send_addr)(struct mxc_nand_host *, uint16_t, int);
107 void (*send_page)(struct mtd_info *, unsigned int);
108 void (*send_read_id)(struct mxc_nand_host *);
109 uint16_t (*get_dev_status)(struct mxc_nand_host *);
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200110 int (*check_int)(struct mxc_nand_host *);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200111};
112
Sascha Hauer34f6e152008-09-02 17:16:59 +0200113/* OOB placement block for use with hardware ecc generation */
Sascha Hauer94671142009-10-05 12:14:21 +0200114static struct nand_ecclayout nandv1_hw_eccoob_smallpage = {
Sascha Hauer34f6e152008-09-02 17:16:59 +0200115 .eccbytes = 5,
116 .eccpos = {6, 7, 8, 9, 10},
Sascha Hauer8c1fd892009-10-21 10:22:01 +0200117 .oobfree = {{0, 5}, {12, 4}, }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200118};
119
Sascha Hauer94671142009-10-05 12:14:21 +0200120static struct nand_ecclayout nandv1_hw_eccoob_largepage = {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400121 .eccbytes = 20,
122 .eccpos = {6, 7, 8, 9, 10, 22, 23, 24, 25, 26,
123 38, 39, 40, 41, 42, 54, 55, 56, 57, 58},
124 .oobfree = {{2, 4}, {11, 10}, {27, 10}, {43, 10}, {59, 5}, }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200125};
126
Sascha Hauer94671142009-10-05 12:14:21 +0200127/* OOB description for 512 byte pages with 16 byte OOB */
128static struct nand_ecclayout nandv2_hw_eccoob_smallpage = {
129 .eccbytes = 1 * 9,
130 .eccpos = {
131 7, 8, 9, 10, 11, 12, 13, 14, 15
132 },
133 .oobfree = {
134 {.offset = 0, .length = 5}
135 }
136};
137
138/* OOB description for 2048 byte pages with 64 byte OOB */
139static struct nand_ecclayout nandv2_hw_eccoob_largepage = {
140 .eccbytes = 4 * 9,
141 .eccpos = {
142 7, 8, 9, 10, 11, 12, 13, 14, 15,
143 23, 24, 25, 26, 27, 28, 29, 30, 31,
144 39, 40, 41, 42, 43, 44, 45, 46, 47,
145 55, 56, 57, 58, 59, 60, 61, 62, 63
146 },
147 .oobfree = {
148 {.offset = 2, .length = 4},
149 {.offset = 16, .length = 7},
150 {.offset = 32, .length = 7},
151 {.offset = 48, .length = 7}
152 }
153};
154
Sascha Hauer34f6e152008-09-02 17:16:59 +0200155#ifdef CONFIG_MTD_PARTITIONS
156static const char *part_probes[] = { "RedBoot", "cmdlinepart", NULL };
157#endif
158
159static irqreturn_t mxc_nfc_irq(int irq, void *dev_id)
160{
161 struct mxc_nand_host *host = dev_id;
162
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200163 disable_irq_nosync(irq);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200164
165 wake_up(&host->irq_waitq);
166
167 return IRQ_HANDLED;
168}
169
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200170static int check_int_v1_v2(struct mxc_nand_host *host)
171{
172 uint32_t tmp;
173
Sascha Hauer1bc99182010-08-06 15:53:08 +0200174 tmp = readw(NFC_V1_V2_CONFIG2);
175 if (!(tmp & NFC_V1_V2_CONFIG2_INT))
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200176 return 0;
177
Sascha Hauer1bc99182010-08-06 15:53:08 +0200178 writew(tmp & ~NFC_V1_V2_CONFIG2_INT, NFC_V1_V2_CONFIG2);
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200179
180 return 1;
181}
182
Sascha Hauer34f6e152008-09-02 17:16:59 +0200183/* This function polls the NANDFC to wait for the basic operation to
184 * complete by checking the INT bit of config2 register.
185 */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200186static void wait_op_done(struct mxc_nand_host *host, int useirq)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200187{
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200188 int max_retries = 8000;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200189
190 if (useirq) {
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200191 if (!host->check_int(host)) {
Sascha Hauer34f6e152008-09-02 17:16:59 +0200192
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200193 enable_irq(host->irq);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200194
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200195 wait_event(host->irq_waitq, host->check_int(host));
Sascha Hauer34f6e152008-09-02 17:16:59 +0200196 }
197 } else {
198 while (max_retries-- > 0) {
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200199 if (host->check_int(host))
Sascha Hauer34f6e152008-09-02 17:16:59 +0200200 break;
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200201
Sascha Hauer34f6e152008-09-02 17:16:59 +0200202 udelay(1);
203 }
Roel Kluin43950a62009-06-04 16:24:59 +0200204 if (max_retries < 0)
Sascha Hauer62465492009-06-04 15:57:20 +0200205 DEBUG(MTD_DEBUG_LEVEL0, "%s: INT not set\n",
206 __func__);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200207 }
208}
209
210/* This function issues the specified command to the NAND device and
211 * waits for completion. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200212static void send_cmd_v1_v2(struct mxc_nand_host *host, uint16_t cmd, int useirq)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200213{
214 DEBUG(MTD_DEBUG_LEVEL3, "send_cmd(host, 0x%x, %d)\n", cmd, useirq);
215
Sascha Hauer1bc99182010-08-06 15:53:08 +0200216 writew(cmd, NFC_V1_V2_FLASH_CMD);
217 writew(NFC_CMD, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200218
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200219 if (cpu_is_mx21() && (cmd == NAND_CMD_RESET)) {
220 int max_retries = 100;
221 /* Reset completion is indicated by NFC_CONFIG2 */
222 /* being set to 0 */
223 while (max_retries-- > 0) {
Sascha Hauer1bc99182010-08-06 15:53:08 +0200224 if (readw(NFC_V1_V2_CONFIG2) == 0) {
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200225 break;
226 }
227 udelay(1);
228 }
229 if (max_retries < 0)
230 DEBUG(MTD_DEBUG_LEVEL0, "%s: RESET failed\n",
231 __func__);
232 } else {
233 /* Wait for operation to complete */
234 wait_op_done(host, useirq);
235 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200236}
237
238/* This function sends an address (or partial address) to the
239 * NAND device. The address is used to select the source/destination for
240 * a NAND command. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200241static void send_addr_v1_v2(struct mxc_nand_host *host, uint16_t addr, int islast)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200242{
243 DEBUG(MTD_DEBUG_LEVEL3, "send_addr(host, 0x%x %d)\n", addr, islast);
244
Sascha Hauer1bc99182010-08-06 15:53:08 +0200245 writew(addr, NFC_V1_V2_FLASH_ADDR);
246 writew(NFC_ADDR, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200247
248 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200249 wait_op_done(host, islast);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200250}
251
Sascha Hauer5f973042010-08-06 15:53:06 +0200252static void send_page_v1_v2(struct mtd_info *mtd, unsigned int ops)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200253{
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200254 struct nand_chip *nand_chip = mtd->priv;
255 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200256 int bufs, i;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200257
Sascha Hauer94671142009-10-05 12:14:21 +0200258 if (nfc_is_v1() && mtd->writesize > 512)
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200259 bufs = 4;
260 else
261 bufs = 1;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200262
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200263 for (i = 0; i < bufs; i++) {
264
265 /* NANDFC buffer 0 is used for page read/write */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200266 writew(i, NFC_V1_V2_BUF_ADDR);
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200267
Sascha Hauer1bc99182010-08-06 15:53:08 +0200268 writew(ops, NFC_V1_V2_CONFIG2);
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200269
270 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200271 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200272 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200273}
274
275/* Request the NANDFC to perform a read of the NAND device ID. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200276static void send_read_id_v1_v2(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200277{
278 struct nand_chip *this = &host->nand;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200279
280 /* NANDFC buffer 0 is used for device ID output */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200281 writew(0x0, NFC_V1_V2_BUF_ADDR);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200282
Sascha Hauer1bc99182010-08-06 15:53:08 +0200283 writew(NFC_ID, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200284
285 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200286 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200287
288 if (this->options & NAND_BUSWIDTH_16) {
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200289 void __iomem *main_buf = host->main_area0;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200290 /* compress the ID info */
291 writeb(readb(main_buf + 2), main_buf + 1);
292 writeb(readb(main_buf + 4), main_buf + 2);
293 writeb(readb(main_buf + 6), main_buf + 3);
294 writeb(readb(main_buf + 8), main_buf + 4);
295 writeb(readb(main_buf + 10), main_buf + 5);
296 }
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200297 memcpy(host->data_buf, host->main_area0, 16);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200298}
299
300/* This function requests the NANDFC to perform a read of the
301 * NAND device status and returns the current status. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200302static uint16_t get_dev_status_v1_v2(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200303{
Sascha Hauerc29c6072010-08-06 15:53:05 +0200304 void __iomem *main_buf = host->main_area0;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200305 uint32_t store;
Sascha Hauerf06368f2009-10-05 17:18:42 +0200306 uint16_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200307
Sascha Hauerc29c6072010-08-06 15:53:05 +0200308 writew(0x0, NFC_V1_V2_BUF_ADDR);
309
310 /*
311 * The device status is stored in main_area0. To
312 * prevent corruption of the buffer save the value
313 * and restore it afterwards.
314 */
Sascha Hauer34f6e152008-09-02 17:16:59 +0200315 store = readl(main_buf);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200316
Sascha Hauer1bc99182010-08-06 15:53:08 +0200317 writew(NFC_STATUS, NFC_V1_V2_CONFIG2);
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200318 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200319
Sascha Hauer34f6e152008-09-02 17:16:59 +0200320 ret = readw(main_buf);
Sascha Hauerc29c6072010-08-06 15:53:05 +0200321
Sascha Hauer34f6e152008-09-02 17:16:59 +0200322 writel(store, main_buf);
323
324 return ret;
325}
326
327/* This functions is used by upper layer to checks if device is ready */
328static int mxc_nand_dev_ready(struct mtd_info *mtd)
329{
330 /*
331 * NFC handles R/B internally. Therefore, this function
332 * always returns status as ready.
333 */
334 return 1;
335}
336
337static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode)
338{
339 /*
340 * If HW ECC is enabled, we turn it on during init. There is
341 * no need to enable again here.
342 */
343}
344
345static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat,
346 u_char *read_ecc, u_char *calc_ecc)
347{
348 struct nand_chip *nand_chip = mtd->priv;
349 struct mxc_nand_host *host = nand_chip->priv;
350
351 /*
352 * 1-Bit errors are automatically corrected in HW. No need for
353 * additional correction. 2-Bit errors cannot be corrected by
354 * HW ECC, so we need to return failure
355 */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200356 uint16_t ecc_status = readw(NFC_V1_V2_ECC_STATUS_RESULT);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200357
358 if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) {
359 DEBUG(MTD_DEBUG_LEVEL0,
360 "MXC_NAND: HWECC uncorrectable 2-bit ECC error\n");
361 return -1;
362 }
363
364 return 0;
365}
366
367static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
368 u_char *ecc_code)
369{
370 return 0;
371}
372
373static u_char mxc_nand_read_byte(struct mtd_info *mtd)
374{
375 struct nand_chip *nand_chip = mtd->priv;
376 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200377 uint8_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200378
379 /* Check for status request */
380 if (host->status_request)
Sascha Hauer5f973042010-08-06 15:53:06 +0200381 return host->get_dev_status(host) & 0xFF;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200382
Sascha Hauerf8f96082009-06-04 17:12:26 +0200383 ret = *(uint8_t *)(host->data_buf + host->buf_start);
384 host->buf_start++;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200385
386 return ret;
387}
388
389static uint16_t mxc_nand_read_word(struct mtd_info *mtd)
390{
391 struct nand_chip *nand_chip = mtd->priv;
392 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200393 uint16_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200394
Sascha Hauerf8f96082009-06-04 17:12:26 +0200395 ret = *(uint16_t *)(host->data_buf + host->buf_start);
396 host->buf_start += 2;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200397
398 return ret;
399}
400
401/* Write data of length len to buffer buf. The data to be
402 * written on NAND Flash is first copied to RAMbuffer. After the Data Input
403 * Operation by the NFC, the data is written to NAND Flash */
404static void mxc_nand_write_buf(struct mtd_info *mtd,
405 const u_char *buf, int len)
406{
407 struct nand_chip *nand_chip = mtd->priv;
408 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200409 u16 col = host->buf_start;
410 int n = mtd->oobsize + mtd->writesize - col;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200411
Sascha Hauerf8f96082009-06-04 17:12:26 +0200412 n = min(n, len);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200413
Sascha Hauerf8f96082009-06-04 17:12:26 +0200414 memcpy(host->data_buf + col, buf, n);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200415
Sascha Hauerf8f96082009-06-04 17:12:26 +0200416 host->buf_start += n;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200417}
418
419/* Read the data buffer from the NAND Flash. To read the data from NAND
420 * Flash first the data output cycle is initiated by the NFC, which copies
421 * the data to RAMbuffer. This data of length len is then copied to buffer buf.
422 */
423static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
424{
425 struct nand_chip *nand_chip = mtd->priv;
426 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200427 u16 col = host->buf_start;
428 int n = mtd->oobsize + mtd->writesize - col;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200429
Sascha Hauerf8f96082009-06-04 17:12:26 +0200430 n = min(n, len);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200431
Sascha Hauerf8f96082009-06-04 17:12:26 +0200432 memcpy(buf, host->data_buf + col, len);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200433
Sascha Hauerf8f96082009-06-04 17:12:26 +0200434 host->buf_start += len;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200435}
436
437/* Used by the upper layer to verify the data in NAND Flash
438 * with the data in the buf. */
439static int mxc_nand_verify_buf(struct mtd_info *mtd,
440 const u_char *buf, int len)
441{
442 return -EFAULT;
443}
444
445/* This function is used by upper layer for select and
446 * deselect of the NAND chip */
447static void mxc_nand_select_chip(struct mtd_info *mtd, int chip)
448{
449 struct nand_chip *nand_chip = mtd->priv;
450 struct mxc_nand_host *host = nand_chip->priv;
451
Sascha Hauer34f6e152008-09-02 17:16:59 +0200452 switch (chip) {
453 case -1:
454 /* Disable the NFC clock */
455 if (host->clk_act) {
456 clk_disable(host->clk);
457 host->clk_act = 0;
458 }
459 break;
460 case 0:
461 /* Enable the NFC clock */
462 if (!host->clk_act) {
463 clk_enable(host->clk);
464 host->clk_act = 1;
465 }
466 break;
467
468 default:
469 break;
470 }
471}
472
Sascha Hauerf8f96082009-06-04 17:12:26 +0200473/*
474 * Function to transfer data to/from spare area.
475 */
476static void copy_spare(struct mtd_info *mtd, bool bfrom)
477{
478 struct nand_chip *this = mtd->priv;
479 struct mxc_nand_host *host = this->priv;
480 u16 i, j;
481 u16 n = mtd->writesize >> 9;
482 u8 *d = host->data_buf + mtd->writesize;
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200483 u8 *s = host->spare0;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200484 u16 t = host->spare_len;
485
486 j = (mtd->oobsize / n >> 1) << 1;
487
488 if (bfrom) {
489 for (i = 0; i < n - 1; i++)
490 memcpy(d + i * j, s + i * t, j);
491
492 /* the last section */
493 memcpy(d + i * j, s + i * t, mtd->oobsize - i * j);
494 } else {
495 for (i = 0; i < n - 1; i++)
496 memcpy(&s[i * t], &d[i * j], j);
497
498 /* the last section */
499 memcpy(&s[i * t], &d[i * j], mtd->oobsize - i * j);
500 }
501}
502
Sascha Hauera3e65b62009-06-02 11:47:59 +0200503static void mxc_do_addr_cycle(struct mtd_info *mtd, int column, int page_addr)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200504{
505 struct nand_chip *nand_chip = mtd->priv;
506 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200507
508 /* Write out column address, if necessary */
509 if (column != -1) {
510 /*
511 * MXC NANDFC can only perform full page+spare or
512 * spare-only read/write. When the upper layers
513 * layers perform a read/write buf operation,
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800514 * we will used the saved column address to index into
Sascha Hauer34f6e152008-09-02 17:16:59 +0200515 * the full page.
516 */
Sascha Hauer5f973042010-08-06 15:53:06 +0200517 host->send_addr(host, 0, page_addr == -1);
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200518 if (mtd->writesize > 512)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200519 /* another col addr cycle for 2k page */
Sascha Hauer5f973042010-08-06 15:53:06 +0200520 host->send_addr(host, 0, false);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200521 }
522
523 /* Write out page address, if necessary */
524 if (page_addr != -1) {
525 /* paddr_0 - p_addr_7 */
Sascha Hauer5f973042010-08-06 15:53:06 +0200526 host->send_addr(host, (page_addr & 0xff), false);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200527
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200528 if (mtd->writesize > 512) {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400529 if (mtd->size >= 0x10000000) {
530 /* paddr_8 - paddr_15 */
Sascha Hauer5f973042010-08-06 15:53:06 +0200531 host->send_addr(host, (page_addr >> 8) & 0xff, false);
532 host->send_addr(host, (page_addr >> 16) & 0xff, true);
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400533 } else
534 /* paddr_8 - paddr_15 */
Sascha Hauer5f973042010-08-06 15:53:06 +0200535 host->send_addr(host, (page_addr >> 8) & 0xff, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200536 } else {
537 /* One more address cycle for higher density devices */
538 if (mtd->size >= 0x4000000) {
539 /* paddr_8 - paddr_15 */
Sascha Hauer5f973042010-08-06 15:53:06 +0200540 host->send_addr(host, (page_addr >> 8) & 0xff, false);
541 host->send_addr(host, (page_addr >> 16) & 0xff, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200542 } else
543 /* paddr_8 - paddr_15 */
Sascha Hauer5f973042010-08-06 15:53:06 +0200544 host->send_addr(host, (page_addr >> 8) & 0xff, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200545 }
546 }
Sascha Hauera3e65b62009-06-02 11:47:59 +0200547}
Sascha Hauer34f6e152008-09-02 17:16:59 +0200548
Sascha Hauer5f973042010-08-06 15:53:06 +0200549static void preset_v1_v2(struct mtd_info *mtd)
Ivo Claryssed4840182010-04-08 16:14:44 +0200550{
551 struct nand_chip *nand_chip = mtd->priv;
552 struct mxc_nand_host *host = nand_chip->priv;
553 uint16_t tmp;
554
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200555 /* enable interrupt, disable spare enable */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200556 tmp = readw(NFC_V1_V2_CONFIG1);
557 tmp &= ~NFC_V1_V2_CONFIG1_INT_MSK;
558 tmp &= ~NFC_V1_V2_CONFIG1_SP_EN;
Ivo Claryssed4840182010-04-08 16:14:44 +0200559 if (nand_chip->ecc.mode == NAND_ECC_HW) {
Sascha Hauer1bc99182010-08-06 15:53:08 +0200560 tmp |= NFC_V1_V2_CONFIG1_ECC_EN;
Ivo Claryssed4840182010-04-08 16:14:44 +0200561 } else {
Sascha Hauer1bc99182010-08-06 15:53:08 +0200562 tmp &= ~NFC_V1_V2_CONFIG1_ECC_EN;
Ivo Claryssed4840182010-04-08 16:14:44 +0200563 }
Sascha Hauer1bc99182010-08-06 15:53:08 +0200564 writew(tmp, NFC_V1_V2_CONFIG1);
Ivo Claryssed4840182010-04-08 16:14:44 +0200565 /* preset operation */
566
567 /* Unlock the internal RAM Buffer */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200568 writew(0x2, NFC_V1_V2_CONFIG);
Ivo Claryssed4840182010-04-08 16:14:44 +0200569
570 /* Blocks to be unlocked */
571 if (nfc_is_v21()) {
Sascha Hauer1bc99182010-08-06 15:53:08 +0200572 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR);
573 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR);
Ivo Claryssed4840182010-04-08 16:14:44 +0200574 } else if (nfc_is_v1()) {
Sascha Hauer1bc99182010-08-06 15:53:08 +0200575 writew(0x0, NFC_V1_UNLOCKSTART_BLKADDR);
576 writew(0x4000, NFC_V1_UNLOCKEND_BLKADDR);
Ivo Claryssed4840182010-04-08 16:14:44 +0200577 } else
578 BUG();
579
580 /* Unlock Block Command for given address range */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200581 writew(0x4, NFC_V1_V2_WRPROT);
Ivo Claryssed4840182010-04-08 16:14:44 +0200582}
583
Sascha Hauer34f6e152008-09-02 17:16:59 +0200584/* Used by the upper layer to write command to NAND Flash for
585 * different operations to be carried out on NAND Flash */
586static void mxc_nand_command(struct mtd_info *mtd, unsigned command,
587 int column, int page_addr)
588{
589 struct nand_chip *nand_chip = mtd->priv;
590 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200591
592 DEBUG(MTD_DEBUG_LEVEL3,
593 "mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n",
594 command, column, page_addr);
595
596 /* Reset command state information */
597 host->status_request = false;
598
599 /* Command pre-processing step */
Sascha Hauer34f6e152008-09-02 17:16:59 +0200600 switch (command) {
Ivo Claryssed4840182010-04-08 16:14:44 +0200601 case NAND_CMD_RESET:
Sascha Hauer5f973042010-08-06 15:53:06 +0200602 host->preset(mtd);
603 host->send_cmd(host, command, false);
Ivo Claryssed4840182010-04-08 16:14:44 +0200604 break;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200605
Sascha Hauer34f6e152008-09-02 17:16:59 +0200606 case NAND_CMD_STATUS:
Sascha Hauerf8f96082009-06-04 17:12:26 +0200607 host->buf_start = 0;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200608 host->status_request = true;
Sascha Hauer89121a62009-06-04 17:18:01 +0200609
Sascha Hauer5f973042010-08-06 15:53:06 +0200610 host->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +0200611 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200612 break;
613
Sascha Hauer34f6e152008-09-02 17:16:59 +0200614 case NAND_CMD_READ0:
Sascha Hauer34f6e152008-09-02 17:16:59 +0200615 case NAND_CMD_READOOB:
Sascha Hauer89121a62009-06-04 17:18:01 +0200616 if (command == NAND_CMD_READ0)
617 host->buf_start = column;
618 else
619 host->buf_start = column + mtd->writesize;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200620
Sascha Hauer6c499392010-05-28 10:02:17 +0200621 command = NAND_CMD_READ0; /* only READ0 is valid */
Sascha Hauer89121a62009-06-04 17:18:01 +0200622
Sascha Hauer5f973042010-08-06 15:53:06 +0200623 host->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +0200624 mxc_do_addr_cycle(mtd, column, page_addr);
625
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200626 if (mtd->writesize > 512)
Sascha Hauer5f973042010-08-06 15:53:06 +0200627 host->send_cmd(host, NAND_CMD_READSTART, true);
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200628
Sascha Hauer5f973042010-08-06 15:53:06 +0200629 host->send_page(mtd, NFC_OUTPUT);
Sascha Hauer89121a62009-06-04 17:18:01 +0200630
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200631 memcpy(host->data_buf, host->main_area0, mtd->writesize);
Sascha Hauer89121a62009-06-04 17:18:01 +0200632 copy_spare(mtd, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200633 break;
634
Sascha Hauer34f6e152008-09-02 17:16:59 +0200635 case NAND_CMD_SEQIN:
Sascha Hauer6c499392010-05-28 10:02:17 +0200636 if (column >= mtd->writesize)
637 /* call ourself to read a page */
638 mxc_nand_command(mtd, NAND_CMD_READ0, 0, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200639
Sascha Hauer6c499392010-05-28 10:02:17 +0200640 host->buf_start = column;
Sascha Hauer89121a62009-06-04 17:18:01 +0200641
Sascha Hauer5f973042010-08-06 15:53:06 +0200642 host->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +0200643 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200644 break;
645
646 case NAND_CMD_PAGEPROG:
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200647 memcpy(host->main_area0, host->data_buf, mtd->writesize);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200648 copy_spare(mtd, false);
Sascha Hauer5f973042010-08-06 15:53:06 +0200649 host->send_page(mtd, NFC_INPUT);
650 host->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +0200651 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200652 break;
653
Sascha Hauer34f6e152008-09-02 17:16:59 +0200654 case NAND_CMD_READID:
Sascha Hauer5f973042010-08-06 15:53:06 +0200655 host->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +0200656 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer5f973042010-08-06 15:53:06 +0200657 host->send_read_id(host);
Sascha Hauer94671142009-10-05 12:14:21 +0200658 host->buf_start = column;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200659 break;
660
Sascha Hauer89121a62009-06-04 17:18:01 +0200661 case NAND_CMD_ERASE1:
Sascha Hauer34f6e152008-09-02 17:16:59 +0200662 case NAND_CMD_ERASE2:
Sascha Hauer5f973042010-08-06 15:53:06 +0200663 host->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +0200664 mxc_do_addr_cycle(mtd, column, page_addr);
665
Sascha Hauer34f6e152008-09-02 17:16:59 +0200666 break;
667 }
668}
669
Sascha Hauerf1372052009-10-21 14:25:27 +0200670/*
671 * The generic flash bbt decriptors overlap with our ecc
672 * hardware, so define some i.MX specific ones.
673 */
674static uint8_t bbt_pattern[] = { 'B', 'b', 't', '0' };
675static uint8_t mirror_pattern[] = { '1', 't', 'b', 'B' };
676
677static struct nand_bbt_descr bbt_main_descr = {
678 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
679 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
680 .offs = 0,
681 .len = 4,
682 .veroffs = 4,
683 .maxblocks = 4,
684 .pattern = bbt_pattern,
685};
686
687static struct nand_bbt_descr bbt_mirror_descr = {
688 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
689 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
690 .offs = 0,
691 .len = 4,
692 .veroffs = 4,
693 .maxblocks = 4,
694 .pattern = mirror_pattern,
695};
696
Sascha Hauer34f6e152008-09-02 17:16:59 +0200697static int __init mxcnd_probe(struct platform_device *pdev)
698{
699 struct nand_chip *this;
700 struct mtd_info *mtd;
701 struct mxc_nand_platform_data *pdata = pdev->dev.platform_data;
702 struct mxc_nand_host *host;
703 struct resource *res;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200704 int err = 0, nr_parts = 0;
Sascha Hauer94671142009-10-05 12:14:21 +0200705 struct nand_ecclayout *oob_smallpage, *oob_largepage;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200706
707 /* Allocate memory for MTD device structure and private data */
Sascha Hauerf8f96082009-06-04 17:12:26 +0200708 host = kzalloc(sizeof(struct mxc_nand_host) + NAND_MAX_PAGESIZE +
709 NAND_MAX_OOBSIZE, GFP_KERNEL);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200710 if (!host)
711 return -ENOMEM;
712
Sascha Hauerf8f96082009-06-04 17:12:26 +0200713 host->data_buf = (uint8_t *)(host + 1);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200714
Sascha Hauer34f6e152008-09-02 17:16:59 +0200715 host->dev = &pdev->dev;
716 /* structures must be linked */
717 this = &host->nand;
718 mtd = &host->mtd;
719 mtd->priv = this;
720 mtd->owner = THIS_MODULE;
David Brownell87f39f02009-03-26 00:42:50 -0700721 mtd->dev.parent = &pdev->dev;
Sascha Hauer1fbff0a2009-10-21 16:06:27 +0200722 mtd->name = DRIVER_NAME;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200723
724 /* 50 us command delay time */
725 this->chip_delay = 5;
726
727 this->priv = host;
728 this->dev_ready = mxc_nand_dev_ready;
729 this->cmdfunc = mxc_nand_command;
730 this->select_chip = mxc_nand_select_chip;
731 this->read_byte = mxc_nand_read_byte;
732 this->read_word = mxc_nand_read_word;
733 this->write_buf = mxc_nand_write_buf;
734 this->read_buf = mxc_nand_read_buf;
735 this->verify_buf = mxc_nand_verify_buf;
736
Sascha Hauere65fb002009-02-16 14:29:10 +0100737 host->clk = clk_get(&pdev->dev, "nfc");
Vladimir Barinov8541c112009-04-23 15:47:22 +0400738 if (IS_ERR(host->clk)) {
739 err = PTR_ERR(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200740 goto eclk;
Vladimir Barinov8541c112009-04-23 15:47:22 +0400741 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200742
743 clk_enable(host->clk);
744 host->clk_act = 1;
745
746 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
747 if (!res) {
748 err = -ENODEV;
749 goto eres;
750 }
751
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200752 host->base = ioremap(res->start, resource_size(res));
753 if (!host->base) {
Vladimir Barinov8541c112009-04-23 15:47:22 +0400754 err = -ENOMEM;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200755 goto eres;
756 }
757
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200758 host->main_area0 = host->base;
Sascha Hauer94671142009-10-05 12:14:21 +0200759
Sascha Hauer5f973042010-08-06 15:53:06 +0200760 if (nfc_is_v1() || nfc_is_v21()) {
761 host->preset = preset_v1_v2;
762 host->send_cmd = send_cmd_v1_v2;
763 host->send_addr = send_addr_v1_v2;
764 host->send_page = send_page_v1_v2;
765 host->send_read_id = send_read_id_v1_v2;
766 host->get_dev_status = get_dev_status_v1_v2;
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200767 host->check_int = check_int_v1_v2;
Sascha Hauer5f973042010-08-06 15:53:06 +0200768 }
769
Sascha Hauer94671142009-10-05 12:14:21 +0200770 if (nfc_is_v21()) {
Sascha Hauer938cf992010-08-06 15:53:04 +0200771 host->regs = host->base + 0x1e00;
Sascha Hauer94671142009-10-05 12:14:21 +0200772 host->spare0 = host->base + 0x1000;
773 host->spare_len = 64;
774 oob_smallpage = &nandv2_hw_eccoob_smallpage;
775 oob_largepage = &nandv2_hw_eccoob_largepage;
Ivo Claryssed4840182010-04-08 16:14:44 +0200776 this->ecc.bytes = 9;
Sascha Hauer94671142009-10-05 12:14:21 +0200777 } else if (nfc_is_v1()) {
Sascha Hauer938cf992010-08-06 15:53:04 +0200778 host->regs = host->base + 0xe00;
Sascha Hauer94671142009-10-05 12:14:21 +0200779 host->spare0 = host->base + 0x800;
780 host->spare_len = 16;
781 oob_smallpage = &nandv1_hw_eccoob_smallpage;
782 oob_largepage = &nandv1_hw_eccoob_largepage;
Sascha Hauer94671142009-10-05 12:14:21 +0200783 this->ecc.bytes = 3;
784 } else
785 BUG();
Sascha Hauer34f6e152008-09-02 17:16:59 +0200786
Sascha Hauer13e1add2009-10-21 10:39:05 +0200787 this->ecc.size = 512;
Sascha Hauer94671142009-10-05 12:14:21 +0200788 this->ecc.layout = oob_smallpage;
Sascha Hauer13e1add2009-10-21 10:39:05 +0200789
790 if (pdata->hw_ecc) {
791 this->ecc.calculate = mxc_nand_calculate_ecc;
792 this->ecc.hwctl = mxc_nand_enable_hwecc;
793 this->ecc.correct = mxc_nand_correct_data;
794 this->ecc.mode = NAND_ECC_HW;
Sascha Hauer13e1add2009-10-21 10:39:05 +0200795 } else {
796 this->ecc.mode = NAND_ECC_SOFT;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200797 }
798
Sascha Hauer34f6e152008-09-02 17:16:59 +0200799 /* NAND bus width determines access funtions used by upper layer */
Sascha Hauer13e1add2009-10-21 10:39:05 +0200800 if (pdata->width == 2)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200801 this->options |= NAND_BUSWIDTH_16;
Sascha Hauer13e1add2009-10-21 10:39:05 +0200802
Sascha Hauerf1372052009-10-21 14:25:27 +0200803 if (pdata->flash_bbt) {
804 this->bbt_td = &bbt_main_descr;
805 this->bbt_md = &bbt_mirror_descr;
806 /* update flash based bbt */
807 this->options |= NAND_USE_FLASH_BBT;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200808 }
809
Ivo Claryssed4840182010-04-08 16:14:44 +0200810 init_waitqueue_head(&host->irq_waitq);
811
812 host->irq = platform_get_irq(pdev, 0);
813
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200814 err = request_irq(host->irq, mxc_nfc_irq, IRQF_DISABLED, DRIVER_NAME, host);
Ivo Claryssed4840182010-04-08 16:14:44 +0200815 if (err)
816 goto eirq;
817
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400818 /* first scan to find the device and get the page size */
David Woodhouse5e81e882010-02-26 18:32:56 +0000819 if (nand_scan_ident(mtd, 1, NULL)) {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400820 err = -ENXIO;
821 goto escan;
822 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200823
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200824 if (mtd->writesize == 2048)
Sascha Hauer94671142009-10-05 12:14:21 +0200825 this->ecc.layout = oob_largepage;
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400826
827 /* second phase scan */
828 if (nand_scan_tail(mtd)) {
Sascha Hauer34f6e152008-09-02 17:16:59 +0200829 err = -ENXIO;
830 goto escan;
831 }
832
833 /* Register the partitions */
834#ifdef CONFIG_MTD_PARTITIONS
835 nr_parts =
836 parse_mtd_partitions(mtd, part_probes, &host->parts, 0);
837 if (nr_parts > 0)
838 add_mtd_partitions(mtd, host->parts, nr_parts);
839 else
840#endif
841 {
842 pr_info("Registering %s as whole device\n", mtd->name);
843 add_mtd_device(mtd);
844 }
845
846 platform_set_drvdata(pdev, host);
847
848 return 0;
849
850escan:
Magnus Liljab258fd82009-05-08 21:57:47 +0200851 free_irq(host->irq, host);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200852eirq:
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200853 iounmap(host->base);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200854eres:
855 clk_put(host->clk);
856eclk:
857 kfree(host);
858
859 return err;
860}
861
Uwe Kleine-König51eeb872009-12-07 09:44:05 +0000862static int __devexit mxcnd_remove(struct platform_device *pdev)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200863{
864 struct mxc_nand_host *host = platform_get_drvdata(pdev);
865
866 clk_put(host->clk);
867
868 platform_set_drvdata(pdev, NULL);
869
870 nand_release(&host->mtd);
Magnus Liljab258fd82009-05-08 21:57:47 +0200871 free_irq(host->irq, host);
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200872 iounmap(host->base);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200873 kfree(host);
874
875 return 0;
876}
877
Sascha Hauer34f6e152008-09-02 17:16:59 +0200878static struct platform_driver mxcnd_driver = {
879 .driver = {
880 .name = DRIVER_NAME,
Eric Bénard04dd0d32010-06-17 20:59:04 +0200881 },
Uwe Kleine-Königdaa0f152009-11-24 22:07:08 +0100882 .remove = __devexit_p(mxcnd_remove),
Sascha Hauer34f6e152008-09-02 17:16:59 +0200883};
884
885static int __init mxc_nd_init(void)
886{
Vladimir Barinov8541c112009-04-23 15:47:22 +0400887 return platform_driver_probe(&mxcnd_driver, mxcnd_probe);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200888}
889
890static void __exit mxc_nd_cleanup(void)
891{
892 /* Unregister the device structure */
893 platform_driver_unregister(&mxcnd_driver);
894}
895
896module_init(mxc_nd_init);
897module_exit(mxc_nd_cleanup);
898
899MODULE_AUTHOR("Freescale Semiconductor, Inc.");
900MODULE_DESCRIPTION("MXC NAND MTD driver");
901MODULE_LICENSE("GPL");