blob: dba262bf766ff197c3afe9db1c68e11ca12f7a2b [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>
Sascha Hauer63f14742010-10-18 10:16:26 +020033#include <linux/irq.h>
34#include <linux/completion.h>
Sachin Kamatd367e372013-10-18 16:16:35 +053035#include <linux/of.h>
Uwe Kleine-König64363562012-04-23 11:23:41 +020036#include <linux/of_device.h>
37#include <linux/of_mtd.h>
Sascha Hauer34f6e152008-09-02 17:16:59 +020038
39#include <asm/mach/flash.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020040#include <linux/platform_data/mtd-mxc_nand.h>
Sascha Hauer34f6e152008-09-02 17:16:59 +020041
42#define DRIVER_NAME "mxc_nand"
43
44/* Addresses for NFC registers */
Sascha Hauer1bc99182010-08-06 15:53:08 +020045#define NFC_V1_V2_BUF_SIZE (host->regs + 0x00)
46#define NFC_V1_V2_BUF_ADDR (host->regs + 0x04)
47#define NFC_V1_V2_FLASH_ADDR (host->regs + 0x06)
48#define NFC_V1_V2_FLASH_CMD (host->regs + 0x08)
49#define NFC_V1_V2_CONFIG (host->regs + 0x0a)
50#define NFC_V1_V2_ECC_STATUS_RESULT (host->regs + 0x0c)
51#define NFC_V1_V2_RSLTMAIN_AREA (host->regs + 0x0e)
52#define NFC_V1_V2_RSLTSPARE_AREA (host->regs + 0x10)
53#define NFC_V1_V2_WRPROT (host->regs + 0x12)
54#define NFC_V1_UNLOCKSTART_BLKADDR (host->regs + 0x14)
55#define NFC_V1_UNLOCKEND_BLKADDR (host->regs + 0x16)
Baruch Siachd178e3e2011-03-14 09:01:56 +020056#define NFC_V21_UNLOCKSTART_BLKADDR0 (host->regs + 0x20)
57#define NFC_V21_UNLOCKSTART_BLKADDR1 (host->regs + 0x24)
58#define NFC_V21_UNLOCKSTART_BLKADDR2 (host->regs + 0x28)
59#define NFC_V21_UNLOCKSTART_BLKADDR3 (host->regs + 0x2c)
60#define NFC_V21_UNLOCKEND_BLKADDR0 (host->regs + 0x22)
61#define NFC_V21_UNLOCKEND_BLKADDR1 (host->regs + 0x26)
62#define NFC_V21_UNLOCKEND_BLKADDR2 (host->regs + 0x2a)
63#define NFC_V21_UNLOCKEND_BLKADDR3 (host->regs + 0x2e)
Sascha Hauer1bc99182010-08-06 15:53:08 +020064#define NFC_V1_V2_NF_WRPRST (host->regs + 0x18)
65#define NFC_V1_V2_CONFIG1 (host->regs + 0x1a)
66#define NFC_V1_V2_CONFIG2 (host->regs + 0x1c)
Sascha Hauer34f6e152008-09-02 17:16:59 +020067
Sascha Hauer6e85dfd2010-08-06 15:53:10 +020068#define NFC_V2_CONFIG1_ECC_MODE_4 (1 << 0)
Sascha Hauer1bc99182010-08-06 15:53:08 +020069#define NFC_V1_V2_CONFIG1_SP_EN (1 << 2)
70#define NFC_V1_V2_CONFIG1_ECC_EN (1 << 3)
71#define NFC_V1_V2_CONFIG1_INT_MSK (1 << 4)
72#define NFC_V1_V2_CONFIG1_BIG (1 << 5)
73#define NFC_V1_V2_CONFIG1_RST (1 << 6)
74#define NFC_V1_V2_CONFIG1_CE (1 << 7)
Sascha Hauerb8db2f52010-08-09 15:04:19 +020075#define NFC_V2_CONFIG1_ONE_CYCLE (1 << 8)
76#define NFC_V2_CONFIG1_PPB(x) (((x) & 0x3) << 9)
77#define NFC_V2_CONFIG1_FP_INT (1 << 11)
Sascha Hauer34f6e152008-09-02 17:16:59 +020078
Sascha Hauer1bc99182010-08-06 15:53:08 +020079#define NFC_V1_V2_CONFIG2_INT (1 << 15)
Sascha Hauer34f6e152008-09-02 17:16:59 +020080
Sascha Hauer1bc99182010-08-06 15:53:08 +020081/*
82 * Operation modes for the NFC. Valid for v1, v2 and v3
83 * type controllers.
84 */
85#define NFC_CMD (1 << 0)
86#define NFC_ADDR (1 << 1)
87#define NFC_INPUT (1 << 2)
88#define NFC_OUTPUT (1 << 3)
89#define NFC_ID (1 << 4)
90#define NFC_STATUS (1 << 5)
Sascha Hauer34f6e152008-09-02 17:16:59 +020091
Sascha Hauer71ec5152010-08-06 15:53:11 +020092#define NFC_V3_FLASH_CMD (host->regs_axi + 0x00)
93#define NFC_V3_FLASH_ADDR0 (host->regs_axi + 0x04)
Sascha Hauer34f6e152008-09-02 17:16:59 +020094
Sascha Hauer71ec5152010-08-06 15:53:11 +020095#define NFC_V3_CONFIG1 (host->regs_axi + 0x34)
96#define NFC_V3_CONFIG1_SP_EN (1 << 0)
97#define NFC_V3_CONFIG1_RBA(x) (((x) & 0x7 ) << 4)
Sascha Hauer34f6e152008-09-02 17:16:59 +020098
Sascha Hauer71ec5152010-08-06 15:53:11 +020099#define NFC_V3_ECC_STATUS_RESULT (host->regs_axi + 0x38)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200100
Sascha Hauer71ec5152010-08-06 15:53:11 +0200101#define NFC_V3_LAUNCH (host->regs_axi + 0x40)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200102
Sascha Hauer71ec5152010-08-06 15:53:11 +0200103#define NFC_V3_WRPROT (host->regs_ip + 0x0)
104#define NFC_V3_WRPROT_LOCK_TIGHT (1 << 0)
105#define NFC_V3_WRPROT_LOCK (1 << 1)
106#define NFC_V3_WRPROT_UNLOCK (1 << 2)
107#define NFC_V3_WRPROT_BLS_UNLOCK (2 << 6)
108
109#define NFC_V3_WRPROT_UNLOCK_BLK_ADD0 (host->regs_ip + 0x04)
110
111#define NFC_V3_CONFIG2 (host->regs_ip + 0x24)
112#define NFC_V3_CONFIG2_PS_512 (0 << 0)
113#define NFC_V3_CONFIG2_PS_2048 (1 << 0)
114#define NFC_V3_CONFIG2_PS_4096 (2 << 0)
115#define NFC_V3_CONFIG2_ONE_CYCLE (1 << 2)
116#define NFC_V3_CONFIG2_ECC_EN (1 << 3)
117#define NFC_V3_CONFIG2_2CMD_PHASES (1 << 4)
118#define NFC_V3_CONFIG2_NUM_ADDR_PHASE0 (1 << 5)
119#define NFC_V3_CONFIG2_ECC_MODE_8 (1 << 6)
Sascha Hauer71718a8e2012-06-06 12:33:15 +0200120#define NFC_V3_CONFIG2_PPB(x, shift) (((x) & 0x3) << shift)
Sascha Hauer71ec5152010-08-06 15:53:11 +0200121#define NFC_V3_CONFIG2_NUM_ADDR_PHASE1(x) (((x) & 0x3) << 12)
122#define NFC_V3_CONFIG2_INT_MSK (1 << 15)
123#define NFC_V3_CONFIG2_ST_CMD(x) (((x) & 0xff) << 24)
124#define NFC_V3_CONFIG2_SPAS(x) (((x) & 0xff) << 16)
125
126#define NFC_V3_CONFIG3 (host->regs_ip + 0x28)
127#define NFC_V3_CONFIG3_ADD_OP(x) (((x) & 0x3) << 0)
128#define NFC_V3_CONFIG3_FW8 (1 << 3)
129#define NFC_V3_CONFIG3_SBB(x) (((x) & 0x7) << 8)
130#define NFC_V3_CONFIG3_NUM_OF_DEVICES(x) (((x) & 0x7) << 12)
131#define NFC_V3_CONFIG3_RBB_MODE (1 << 15)
132#define NFC_V3_CONFIG3_NO_SDMA (1 << 20)
133
134#define NFC_V3_IPC (host->regs_ip + 0x2C)
135#define NFC_V3_IPC_CREQ (1 << 0)
136#define NFC_V3_IPC_INT (1 << 31)
137
138#define NFC_V3_DELAY_LINE (host->regs_ip + 0x34)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200139
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200140struct mxc_nand_host;
141
142struct mxc_nand_devtype_data {
143 void (*preset)(struct mtd_info *);
144 void (*send_cmd)(struct mxc_nand_host *, uint16_t, int);
145 void (*send_addr)(struct mxc_nand_host *, uint16_t, int);
146 void (*send_page)(struct mtd_info *, unsigned int);
147 void (*send_read_id)(struct mxc_nand_host *);
148 uint16_t (*get_dev_status)(struct mxc_nand_host *);
149 int (*check_int)(struct mxc_nand_host *);
150 void (*irq_control)(struct mxc_nand_host *, int);
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200151 u32 (*get_ecc_status)(struct mxc_nand_host *);
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +0200152 struct nand_ecclayout *ecclayout_512, *ecclayout_2k, *ecclayout_4k;
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +0200153 void (*select_chip)(struct mtd_info *mtd, int chip);
Uwe Kleine-König69d023b2012-04-23 11:23:39 +0200154 int (*correct_data)(struct mtd_info *mtd, u_char *dat,
155 u_char *read_ecc, u_char *calc_ecc);
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200156
157 /*
158 * On i.MX21 the CONFIG2:INT bit cannot be read if interrupts are masked
159 * (CONFIG1:INT_MSK is set). To handle this the driver uses
160 * enable_irq/disable_irq_nosync instead of CONFIG1:INT_MSK
161 */
162 int irqpending_quirk;
163 int needs_ip;
164
165 size_t regs_offset;
166 size_t spare0_offset;
167 size_t axi_offset;
168
169 int spare_len;
170 int eccbytes;
171 int eccsize;
Sascha Hauer71718a8e2012-06-06 12:33:15 +0200172 int ppb_shift;
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200173};
174
Sascha Hauer34f6e152008-09-02 17:16:59 +0200175struct mxc_nand_host {
176 struct mtd_info mtd;
177 struct nand_chip nand;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200178 struct device *dev;
179
Uwe Kleine-König4b6f05e2012-04-24 10:05:22 +0200180 void __iomem *spare0;
181 void __iomem *main_area0;
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200182
183 void __iomem *base;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200184 void __iomem *regs;
Sascha Hauer71ec5152010-08-06 15:53:11 +0200185 void __iomem *regs_axi;
186 void __iomem *regs_ip;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200187 int status_request;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200188 struct clk *clk;
189 int clk_act;
190 int irq;
Sascha Hauer94f77e52010-08-06 15:53:09 +0200191 int eccsize;
Baruch Siachd178e3e2011-03-14 09:01:56 +0200192 int active_cs;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200193
Sascha Hauer63f14742010-10-18 10:16:26 +0200194 struct completion op_completion;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200195
196 uint8_t *data_buf;
197 unsigned int buf_start;
Sascha Hauer5f973042010-08-06 15:53:06 +0200198
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200199 const struct mxc_nand_devtype_data *devtype_data;
Uwe Kleine-König64363562012-04-23 11:23:41 +0200200 struct mxc_nand_platform_data pdata;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200201};
202
Sascha Hauer34f6e152008-09-02 17:16:59 +0200203/* OOB placement block for use with hardware ecc generation */
Sascha Hauer94671142009-10-05 12:14:21 +0200204static struct nand_ecclayout nandv1_hw_eccoob_smallpage = {
Sascha Hauer34f6e152008-09-02 17:16:59 +0200205 .eccbytes = 5,
206 .eccpos = {6, 7, 8, 9, 10},
Sascha Hauer8c1fd892009-10-21 10:22:01 +0200207 .oobfree = {{0, 5}, {12, 4}, }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200208};
209
Sascha Hauer94671142009-10-05 12:14:21 +0200210static struct nand_ecclayout nandv1_hw_eccoob_largepage = {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400211 .eccbytes = 20,
212 .eccpos = {6, 7, 8, 9, 10, 22, 23, 24, 25, 26,
213 38, 39, 40, 41, 42, 54, 55, 56, 57, 58},
214 .oobfree = {{2, 4}, {11, 10}, {27, 10}, {43, 10}, {59, 5}, }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200215};
216
Sascha Hauer94671142009-10-05 12:14:21 +0200217/* OOB description for 512 byte pages with 16 byte OOB */
218static struct nand_ecclayout nandv2_hw_eccoob_smallpage = {
219 .eccbytes = 1 * 9,
220 .eccpos = {
221 7, 8, 9, 10, 11, 12, 13, 14, 15
222 },
223 .oobfree = {
224 {.offset = 0, .length = 5}
225 }
226};
227
228/* OOB description for 2048 byte pages with 64 byte OOB */
229static struct nand_ecclayout nandv2_hw_eccoob_largepage = {
230 .eccbytes = 4 * 9,
231 .eccpos = {
232 7, 8, 9, 10, 11, 12, 13, 14, 15,
233 23, 24, 25, 26, 27, 28, 29, 30, 31,
234 39, 40, 41, 42, 43, 44, 45, 46, 47,
235 55, 56, 57, 58, 59, 60, 61, 62, 63
236 },
237 .oobfree = {
238 {.offset = 2, .length = 4},
239 {.offset = 16, .length = 7},
240 {.offset = 32, .length = 7},
241 {.offset = 48, .length = 7}
242 }
243};
244
Baruch Siach2c1c5f12011-03-09 16:12:20 +0200245/* OOB description for 4096 byte pages with 128 byte OOB */
246static struct nand_ecclayout nandv2_hw_eccoob_4k = {
247 .eccbytes = 8 * 9,
248 .eccpos = {
249 7, 8, 9, 10, 11, 12, 13, 14, 15,
250 23, 24, 25, 26, 27, 28, 29, 30, 31,
251 39, 40, 41, 42, 43, 44, 45, 46, 47,
252 55, 56, 57, 58, 59, 60, 61, 62, 63,
253 71, 72, 73, 74, 75, 76, 77, 78, 79,
254 87, 88, 89, 90, 91, 92, 93, 94, 95,
255 103, 104, 105, 106, 107, 108, 109, 110, 111,
256 119, 120, 121, 122, 123, 124, 125, 126, 127,
257 },
258 .oobfree = {
259 {.offset = 2, .length = 4},
260 {.offset = 16, .length = 7},
261 {.offset = 32, .length = 7},
262 {.offset = 48, .length = 7},
263 {.offset = 64, .length = 7},
264 {.offset = 80, .length = 7},
265 {.offset = 96, .length = 7},
266 {.offset = 112, .length = 7},
267 }
268};
269
Jingoo Hanb2ac0372013-08-07 16:18:52 +0900270static const char * const part_probes[] = {
Lothar Waßmann740bb0c2012-12-06 08:42:28 +0100271 "cmdlinepart", "RedBoot", "ofpart", NULL };
Sascha Hauer34f6e152008-09-02 17:16:59 +0200272
Sascha Hauer096bcc22012-05-29 10:16:09 +0200273static void memcpy32_fromio(void *trg, const void __iomem *src, size_t size)
274{
275 int i;
276 u32 *t = trg;
277 const __iomem u32 *s = src;
278
279 for (i = 0; i < (size >> 2); i++)
280 *t++ = __raw_readl(s++);
281}
282
283static void memcpy32_toio(void __iomem *trg, const void *src, int size)
284{
285 int i;
286 u32 __iomem *t = trg;
287 const u32 *s = src;
288
289 for (i = 0; i < (size >> 2); i++)
290 __raw_writel(*s++, t++);
291}
292
Sascha Hauer71ec5152010-08-06 15:53:11 +0200293static int check_int_v3(struct mxc_nand_host *host)
294{
295 uint32_t tmp;
296
297 tmp = readl(NFC_V3_IPC);
298 if (!(tmp & NFC_V3_IPC_INT))
299 return 0;
300
301 tmp &= ~NFC_V3_IPC_INT;
302 writel(tmp, NFC_V3_IPC);
303
304 return 1;
305}
306
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200307static int check_int_v1_v2(struct mxc_nand_host *host)
308{
309 uint32_t tmp;
310
Sascha Hauer1bc99182010-08-06 15:53:08 +0200311 tmp = readw(NFC_V1_V2_CONFIG2);
312 if (!(tmp & NFC_V1_V2_CONFIG2_INT))
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200313 return 0;
314
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200315 if (!host->devtype_data->irqpending_quirk)
Sascha Hauer63f14742010-10-18 10:16:26 +0200316 writew(tmp & ~NFC_V1_V2_CONFIG2_INT, NFC_V1_V2_CONFIG2);
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200317
318 return 1;
319}
320
Sascha Hauer63f14742010-10-18 10:16:26 +0200321static void irq_control_v1_v2(struct mxc_nand_host *host, int activate)
322{
323 uint16_t tmp;
324
325 tmp = readw(NFC_V1_V2_CONFIG1);
326
327 if (activate)
328 tmp &= ~NFC_V1_V2_CONFIG1_INT_MSK;
329 else
330 tmp |= NFC_V1_V2_CONFIG1_INT_MSK;
331
332 writew(tmp, NFC_V1_V2_CONFIG1);
333}
334
335static void irq_control_v3(struct mxc_nand_host *host, int activate)
336{
337 uint32_t tmp;
338
339 tmp = readl(NFC_V3_CONFIG2);
340
341 if (activate)
342 tmp &= ~NFC_V3_CONFIG2_INT_MSK;
343 else
344 tmp |= NFC_V3_CONFIG2_INT_MSK;
345
346 writel(tmp, NFC_V3_CONFIG2);
347}
348
Uwe Kleine-König85569582012-04-23 11:23:34 +0200349static void irq_control(struct mxc_nand_host *host, int activate)
350{
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200351 if (host->devtype_data->irqpending_quirk) {
Uwe Kleine-König85569582012-04-23 11:23:34 +0200352 if (activate)
353 enable_irq(host->irq);
354 else
355 disable_irq_nosync(host->irq);
356 } else {
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200357 host->devtype_data->irq_control(host, activate);
Uwe Kleine-König85569582012-04-23 11:23:34 +0200358 }
359}
360
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200361static u32 get_ecc_status_v1(struct mxc_nand_host *host)
362{
363 return readw(NFC_V1_V2_ECC_STATUS_RESULT);
364}
365
366static u32 get_ecc_status_v2(struct mxc_nand_host *host)
367{
368 return readl(NFC_V1_V2_ECC_STATUS_RESULT);
369}
370
371static u32 get_ecc_status_v3(struct mxc_nand_host *host)
372{
373 return readl(NFC_V3_ECC_STATUS_RESULT);
374}
375
Uwe Kleine-König85569582012-04-23 11:23:34 +0200376static irqreturn_t mxc_nfc_irq(int irq, void *dev_id)
377{
378 struct mxc_nand_host *host = dev_id;
379
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200380 if (!host->devtype_data->check_int(host))
Uwe Kleine-König85569582012-04-23 11:23:34 +0200381 return IRQ_NONE;
382
383 irq_control(host, 0);
384
385 complete(&host->op_completion);
386
387 return IRQ_HANDLED;
388}
389
Sascha Hauer34f6e152008-09-02 17:16:59 +0200390/* This function polls the NANDFC to wait for the basic operation to
391 * complete by checking the INT bit of config2 register.
392 */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200393static void wait_op_done(struct mxc_nand_host *host, int useirq)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200394{
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200395 int max_retries = 8000;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200396
397 if (useirq) {
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200398 if (!host->devtype_data->check_int(host)) {
Wolfram Sang16735d02013-11-14 14:32:02 -0800399 reinit_completion(&host->op_completion);
Uwe Kleine-König85569582012-04-23 11:23:34 +0200400 irq_control(host, 1);
Sascha Hauer63f14742010-10-18 10:16:26 +0200401 wait_for_completion(&host->op_completion);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200402 }
403 } else {
404 while (max_retries-- > 0) {
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200405 if (host->devtype_data->check_int(host))
Sascha Hauer34f6e152008-09-02 17:16:59 +0200406 break;
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200407
Sascha Hauer34f6e152008-09-02 17:16:59 +0200408 udelay(1);
409 }
Roel Kluin43950a62009-06-04 16:24:59 +0200410 if (max_retries < 0)
Brian Norris0a32a102011-07-19 10:06:10 -0700411 pr_debug("%s: INT not set\n", __func__);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200412 }
413}
414
Sascha Hauer71ec5152010-08-06 15:53:11 +0200415static void send_cmd_v3(struct mxc_nand_host *host, uint16_t cmd, int useirq)
416{
417 /* fill command */
418 writel(cmd, NFC_V3_FLASH_CMD);
419
420 /* send out command */
421 writel(NFC_CMD, NFC_V3_LAUNCH);
422
423 /* Wait for operation to complete */
424 wait_op_done(host, useirq);
425}
426
Sascha Hauer34f6e152008-09-02 17:16:59 +0200427/* This function issues the specified command to the NAND device and
428 * waits for completion. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200429static void send_cmd_v1_v2(struct mxc_nand_host *host, uint16_t cmd, int useirq)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200430{
Brian Norris289c0522011-07-19 10:06:09 -0700431 pr_debug("send_cmd(host, 0x%x, %d)\n", cmd, useirq);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200432
Sascha Hauer1bc99182010-08-06 15:53:08 +0200433 writew(cmd, NFC_V1_V2_FLASH_CMD);
434 writew(NFC_CMD, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200435
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200436 if (host->devtype_data->irqpending_quirk && (cmd == NAND_CMD_RESET)) {
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200437 int max_retries = 100;
438 /* Reset completion is indicated by NFC_CONFIG2 */
439 /* being set to 0 */
440 while (max_retries-- > 0) {
Sascha Hauer1bc99182010-08-06 15:53:08 +0200441 if (readw(NFC_V1_V2_CONFIG2) == 0) {
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200442 break;
443 }
444 udelay(1);
445 }
446 if (max_retries < 0)
Brian Norris0a32a102011-07-19 10:06:10 -0700447 pr_debug("%s: RESET failed\n", __func__);
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200448 } else {
449 /* Wait for operation to complete */
450 wait_op_done(host, useirq);
451 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200452}
453
Sascha Hauer71ec5152010-08-06 15:53:11 +0200454static void send_addr_v3(struct mxc_nand_host *host, uint16_t addr, int islast)
455{
456 /* fill address */
457 writel(addr, NFC_V3_FLASH_ADDR0);
458
459 /* send out address */
460 writel(NFC_ADDR, NFC_V3_LAUNCH);
461
462 wait_op_done(host, 0);
463}
464
Sascha Hauer34f6e152008-09-02 17:16:59 +0200465/* This function sends an address (or partial address) to the
466 * NAND device. The address is used to select the source/destination for
467 * a NAND command. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200468static void send_addr_v1_v2(struct mxc_nand_host *host, uint16_t addr, int islast)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200469{
Brian Norris289c0522011-07-19 10:06:09 -0700470 pr_debug("send_addr(host, 0x%x %d)\n", addr, islast);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200471
Sascha Hauer1bc99182010-08-06 15:53:08 +0200472 writew(addr, NFC_V1_V2_FLASH_ADDR);
473 writew(NFC_ADDR, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200474
475 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200476 wait_op_done(host, islast);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200477}
478
Sascha Hauer71ec5152010-08-06 15:53:11 +0200479static void send_page_v3(struct mtd_info *mtd, unsigned int ops)
480{
481 struct nand_chip *nand_chip = mtd->priv;
482 struct mxc_nand_host *host = nand_chip->priv;
483 uint32_t tmp;
484
485 tmp = readl(NFC_V3_CONFIG1);
486 tmp &= ~(7 << 4);
487 writel(tmp, NFC_V3_CONFIG1);
488
489 /* transfer data from NFC ram to nand */
490 writel(ops, NFC_V3_LAUNCH);
491
492 wait_op_done(host, false);
493}
494
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200495static void send_page_v2(struct mtd_info *mtd, unsigned int ops)
496{
497 struct nand_chip *nand_chip = mtd->priv;
498 struct mxc_nand_host *host = nand_chip->priv;
499
500 /* NANDFC buffer 0 is used for page read/write */
501 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
502
503 writew(ops, NFC_V1_V2_CONFIG2);
504
505 /* Wait for operation to complete */
506 wait_op_done(host, true);
507}
508
509static void send_page_v1(struct mtd_info *mtd, unsigned int ops)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200510{
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200511 struct nand_chip *nand_chip = mtd->priv;
512 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200513 int bufs, i;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200514
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200515 if (mtd->writesize > 512)
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200516 bufs = 4;
517 else
518 bufs = 1;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200519
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200520 for (i = 0; i < bufs; i++) {
521
522 /* NANDFC buffer 0 is used for page read/write */
Baruch Siachd178e3e2011-03-14 09:01:56 +0200523 writew((host->active_cs << 4) | i, NFC_V1_V2_BUF_ADDR);
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200524
Sascha Hauer1bc99182010-08-06 15:53:08 +0200525 writew(ops, NFC_V1_V2_CONFIG2);
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200526
527 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200528 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200529 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200530}
531
Sascha Hauer71ec5152010-08-06 15:53:11 +0200532static void send_read_id_v3(struct mxc_nand_host *host)
533{
Roman Schneidera8459f22013-01-15 16:56:24 +0100534 struct nand_chip *this = &host->nand;
535
Sascha Hauer71ec5152010-08-06 15:53:11 +0200536 /* Read ID into main buffer */
537 writel(NFC_ID, NFC_V3_LAUNCH);
538
539 wait_op_done(host, true);
540
Sascha Hauer096bcc22012-05-29 10:16:09 +0200541 memcpy32_fromio(host->data_buf, host->main_area0, 16);
Roman Schneidera8459f22013-01-15 16:56:24 +0100542
543 if (this->options & NAND_BUSWIDTH_16) {
544 /* compress the ID info */
545 host->data_buf[1] = host->data_buf[2];
546 host->data_buf[2] = host->data_buf[4];
547 host->data_buf[3] = host->data_buf[6];
548 host->data_buf[4] = host->data_buf[8];
549 host->data_buf[5] = host->data_buf[10];
550 }
Sascha Hauer71ec5152010-08-06 15:53:11 +0200551}
552
Sascha Hauer34f6e152008-09-02 17:16:59 +0200553/* Request the NANDFC to perform a read of the NAND device ID. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200554static void send_read_id_v1_v2(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200555{
556 struct nand_chip *this = &host->nand;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200557
558 /* NANDFC buffer 0 is used for device ID output */
Baruch Siachd178e3e2011-03-14 09:01:56 +0200559 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200560
Sascha Hauer1bc99182010-08-06 15:53:08 +0200561 writew(NFC_ID, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200562
563 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200564 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200565
Sascha Hauer096bcc22012-05-29 10:16:09 +0200566 memcpy32_fromio(host->data_buf, host->main_area0, 16);
John Ognessf7b66e52010-06-18 18:59:47 +0200567
568 if (this->options & NAND_BUSWIDTH_16) {
569 /* compress the ID info */
570 host->data_buf[1] = host->data_buf[2];
571 host->data_buf[2] = host->data_buf[4];
572 host->data_buf[3] = host->data_buf[6];
573 host->data_buf[4] = host->data_buf[8];
574 host->data_buf[5] = host->data_buf[10];
575 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200576}
577
Sascha Hauer71ec5152010-08-06 15:53:11 +0200578static uint16_t get_dev_status_v3(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200579{
Sascha Hauer71ec5152010-08-06 15:53:11 +0200580 writew(NFC_STATUS, NFC_V3_LAUNCH);
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200581 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200582
Sascha Hauer71ec5152010-08-06 15:53:11 +0200583 return readl(NFC_V3_CONFIG1) >> 16;
584}
585
Sascha Hauer34f6e152008-09-02 17:16:59 +0200586/* This function requests the NANDFC to perform a read of the
587 * NAND device status and returns the current status. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200588static uint16_t get_dev_status_v1_v2(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200589{
Sascha Hauerc29c6072010-08-06 15:53:05 +0200590 void __iomem *main_buf = host->main_area0;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200591 uint32_t store;
592 uint16_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200593
Baruch Siachd178e3e2011-03-14 09:01:56 +0200594 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
Sascha Hauerc29c6072010-08-06 15:53:05 +0200595
596 /*
597 * The device status is stored in main_area0. To
598 * prevent corruption of the buffer save the value
599 * and restore it afterwards.
600 */
Sascha Hauer34f6e152008-09-02 17:16:59 +0200601 store = readl(main_buf);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200602
Sascha Hauer1bc99182010-08-06 15:53:08 +0200603 writew(NFC_STATUS, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200604 wait_op_done(host, true);
605
Sascha Hauer34f6e152008-09-02 17:16:59 +0200606 ret = readw(main_buf);
Sascha Hauerc29c6072010-08-06 15:53:05 +0200607
Sascha Hauer34f6e152008-09-02 17:16:59 +0200608 writel(store, main_buf);
609
610 return ret;
611}
612
613/* This functions is used by upper layer to checks if device is ready */
614static int mxc_nand_dev_ready(struct mtd_info *mtd)
615{
616 /*
617 * NFC handles R/B internally. Therefore, this function
618 * always returns status as ready.
619 */
620 return 1;
621}
622
623static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode)
624{
625 /*
626 * If HW ECC is enabled, we turn it on during init. There is
627 * no need to enable again here.
628 */
629}
630
Sascha Hauer94f77e52010-08-06 15:53:09 +0200631static int mxc_nand_correct_data_v1(struct mtd_info *mtd, u_char *dat,
Sascha Hauer34f6e152008-09-02 17:16:59 +0200632 u_char *read_ecc, u_char *calc_ecc)
633{
634 struct nand_chip *nand_chip = mtd->priv;
635 struct mxc_nand_host *host = nand_chip->priv;
636
637 /*
638 * 1-Bit errors are automatically corrected in HW. No need for
639 * additional correction. 2-Bit errors cannot be corrected by
640 * HW ECC, so we need to return failure
641 */
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200642 uint16_t ecc_status = get_ecc_status_v1(host);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200643
644 if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) {
Brian Norris289c0522011-07-19 10:06:09 -0700645 pr_debug("MXC_NAND: HWECC uncorrectable 2-bit ECC error\n");
Sascha Hauer34f6e152008-09-02 17:16:59 +0200646 return -1;
647 }
648
649 return 0;
650}
651
Sascha Hauer94f77e52010-08-06 15:53:09 +0200652static int mxc_nand_correct_data_v2_v3(struct mtd_info *mtd, u_char *dat,
653 u_char *read_ecc, u_char *calc_ecc)
654{
655 struct nand_chip *nand_chip = mtd->priv;
656 struct mxc_nand_host *host = nand_chip->priv;
657 u32 ecc_stat, err;
658 int no_subpages = 1;
659 int ret = 0;
660 u8 ecc_bit_mask, err_limit;
661
662 ecc_bit_mask = (host->eccsize == 4) ? 0x7 : 0xf;
663 err_limit = (host->eccsize == 4) ? 0x4 : 0x8;
664
665 no_subpages = mtd->writesize >> 9;
666
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200667 ecc_stat = host->devtype_data->get_ecc_status(host);
Sascha Hauer94f77e52010-08-06 15:53:09 +0200668
669 do {
670 err = ecc_stat & ecc_bit_mask;
671 if (err > err_limit) {
672 printk(KERN_WARNING "UnCorrectable RS-ECC Error\n");
673 return -1;
674 } else {
675 ret += err;
676 }
677 ecc_stat >>= 4;
678 } while (--no_subpages);
679
Sascha Hauer94f77e52010-08-06 15:53:09 +0200680 pr_debug("%d Symbol Correctable RS-ECC Error\n", ret);
681
682 return ret;
683}
684
Sascha Hauer34f6e152008-09-02 17:16:59 +0200685static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
686 u_char *ecc_code)
687{
688 return 0;
689}
690
691static u_char mxc_nand_read_byte(struct mtd_info *mtd)
692{
693 struct nand_chip *nand_chip = mtd->priv;
694 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200695 uint8_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200696
697 /* Check for status request */
698 if (host->status_request)
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200699 return host->devtype_data->get_dev_status(host) & 0xFF;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200700
Sascha Hauerf8f96082009-06-04 17:12:26 +0200701 ret = *(uint8_t *)(host->data_buf + host->buf_start);
702 host->buf_start++;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200703
704 return ret;
705}
706
707static uint16_t mxc_nand_read_word(struct mtd_info *mtd)
708{
709 struct nand_chip *nand_chip = mtd->priv;
710 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200711 uint16_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200712
Sascha Hauerf8f96082009-06-04 17:12:26 +0200713 ret = *(uint16_t *)(host->data_buf + host->buf_start);
714 host->buf_start += 2;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200715
716 return ret;
717}
718
719/* Write data of length len to buffer buf. The data to be
720 * written on NAND Flash is first copied to RAMbuffer. After the Data Input
721 * Operation by the NFC, the data is written to NAND Flash */
722static void mxc_nand_write_buf(struct mtd_info *mtd,
723 const u_char *buf, int len)
724{
725 struct nand_chip *nand_chip = mtd->priv;
726 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200727 u16 col = host->buf_start;
728 int n = mtd->oobsize + mtd->writesize - col;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200729
Sascha Hauerf8f96082009-06-04 17:12:26 +0200730 n = min(n, len);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200731
Sascha Hauerf8f96082009-06-04 17:12:26 +0200732 memcpy(host->data_buf + col, buf, n);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200733
Sascha Hauerf8f96082009-06-04 17:12:26 +0200734 host->buf_start += n;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200735}
736
737/* Read the data buffer from the NAND Flash. To read the data from NAND
738 * Flash first the data output cycle is initiated by the NFC, which copies
739 * the data to RAMbuffer. This data of length len is then copied to buffer buf.
740 */
741static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
742{
743 struct nand_chip *nand_chip = mtd->priv;
744 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200745 u16 col = host->buf_start;
746 int n = mtd->oobsize + mtd->writesize - col;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200747
Sascha Hauerf8f96082009-06-04 17:12:26 +0200748 n = min(n, len);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200749
Baruch Siach5d9d9932011-03-02 16:47:55 +0200750 memcpy(buf, host->data_buf + col, n);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200751
Baruch Siach5d9d9932011-03-02 16:47:55 +0200752 host->buf_start += n;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200753}
754
Sascha Hauer34f6e152008-09-02 17:16:59 +0200755/* This function is used by upper layer for select and
756 * deselect of the NAND chip */
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +0200757static void mxc_nand_select_chip_v1_v3(struct mtd_info *mtd, int chip)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200758{
759 struct nand_chip *nand_chip = mtd->priv;
760 struct mxc_nand_host *host = nand_chip->priv;
761
Baruch Siachd178e3e2011-03-14 09:01:56 +0200762 if (chip == -1) {
Sascha Hauer34f6e152008-09-02 17:16:59 +0200763 /* Disable the NFC clock */
764 if (host->clk_act) {
Sascha Hauer97c32132012-03-07 20:56:35 +0100765 clk_disable_unprepare(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200766 host->clk_act = 0;
767 }
Baruch Siachd178e3e2011-03-14 09:01:56 +0200768 return;
769 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200770
Baruch Siachd178e3e2011-03-14 09:01:56 +0200771 if (!host->clk_act) {
772 /* Enable the NFC clock */
Sascha Hauer97c32132012-03-07 20:56:35 +0100773 clk_prepare_enable(host->clk);
Baruch Siachd178e3e2011-03-14 09:01:56 +0200774 host->clk_act = 1;
775 }
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +0200776}
Baruch Siachd178e3e2011-03-14 09:01:56 +0200777
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +0200778static void mxc_nand_select_chip_v2(struct mtd_info *mtd, int chip)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200779{
780 struct nand_chip *nand_chip = mtd->priv;
781 struct mxc_nand_host *host = nand_chip->priv;
782
783 if (chip == -1) {
784 /* Disable the NFC clock */
785 if (host->clk_act) {
Fabio Estevam3d059692012-05-25 20:14:50 -0300786 clk_disable_unprepare(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200787 host->clk_act = 0;
788 }
789 return;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200790 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200791
792 if (!host->clk_act) {
793 /* Enable the NFC clock */
Fabio Estevam3d059692012-05-25 20:14:50 -0300794 clk_prepare_enable(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200795 host->clk_act = 1;
796 }
797
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +0200798 host->active_cs = chip;
799 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200800}
801
Sascha Hauerf8f96082009-06-04 17:12:26 +0200802/*
803 * Function to transfer data to/from spare area.
804 */
805static void copy_spare(struct mtd_info *mtd, bool bfrom)
806{
807 struct nand_chip *this = mtd->priv;
808 struct mxc_nand_host *host = this->priv;
809 u16 i, j;
810 u16 n = mtd->writesize >> 9;
811 u8 *d = host->data_buf + mtd->writesize;
Uwe Kleine-König4b6f05e2012-04-24 10:05:22 +0200812 u8 __iomem *s = host->spare0;
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200813 u16 t = host->devtype_data->spare_len;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200814
815 j = (mtd->oobsize / n >> 1) << 1;
816
817 if (bfrom) {
818 for (i = 0; i < n - 1; i++)
Sascha Hauer096bcc22012-05-29 10:16:09 +0200819 memcpy32_fromio(d + i * j, s + i * t, j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200820
821 /* the last section */
Sascha Hauer096bcc22012-05-29 10:16:09 +0200822 memcpy32_fromio(d + i * j, s + i * t, mtd->oobsize - i * j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200823 } else {
824 for (i = 0; i < n - 1; i++)
Sascha Hauer096bcc22012-05-29 10:16:09 +0200825 memcpy32_toio(&s[i * t], &d[i * j], j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200826
827 /* the last section */
Sascha Hauer096bcc22012-05-29 10:16:09 +0200828 memcpy32_toio(&s[i * t], &d[i * j], mtd->oobsize - i * j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200829 }
830}
831
Sascha Hauera3e65b62009-06-02 11:47:59 +0200832static void mxc_do_addr_cycle(struct mtd_info *mtd, int column, int page_addr)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200833{
834 struct nand_chip *nand_chip = mtd->priv;
835 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200836
837 /* Write out column address, if necessary */
838 if (column != -1) {
839 /*
840 * MXC NANDFC can only perform full page+spare or
841 * spare-only read/write. When the upper layers
Gilles Espinasse177b2412011-01-09 08:59:49 +0100842 * perform a read/write buf operation, the saved column
843 * address is used to index into the full page.
Sascha Hauer34f6e152008-09-02 17:16:59 +0200844 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200845 host->devtype_data->send_addr(host, 0, page_addr == -1);
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200846 if (mtd->writesize > 512)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200847 /* another col addr cycle for 2k page */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200848 host->devtype_data->send_addr(host, 0, false);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200849 }
850
851 /* Write out page address, if necessary */
852 if (page_addr != -1) {
853 /* paddr_0 - p_addr_7 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200854 host->devtype_data->send_addr(host, (page_addr & 0xff), false);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200855
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200856 if (mtd->writesize > 512) {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400857 if (mtd->size >= 0x10000000) {
858 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200859 host->devtype_data->send_addr(host,
860 (page_addr >> 8) & 0xff,
861 false);
862 host->devtype_data->send_addr(host,
863 (page_addr >> 16) & 0xff,
864 true);
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400865 } else
866 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200867 host->devtype_data->send_addr(host,
868 (page_addr >> 8) & 0xff, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200869 } else {
870 /* One more address cycle for higher density devices */
871 if (mtd->size >= 0x4000000) {
872 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200873 host->devtype_data->send_addr(host,
874 (page_addr >> 8) & 0xff,
875 false);
876 host->devtype_data->send_addr(host,
877 (page_addr >> 16) & 0xff,
878 true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200879 } else
880 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200881 host->devtype_data->send_addr(host,
882 (page_addr >> 8) & 0xff, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200883 }
884 }
Sascha Hauera3e65b62009-06-02 11:47:59 +0200885}
Sascha Hauer34f6e152008-09-02 17:16:59 +0200886
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200887/*
888 * v2 and v3 type controllers can do 4bit or 8bit ecc depending
889 * on how much oob the nand chip has. For 8bit ecc we need at least
890 * 26 bytes of oob data per 512 byte block.
891 */
892static int get_eccsize(struct mtd_info *mtd)
893{
894 int oobbytes_per_512 = 0;
895
896 oobbytes_per_512 = mtd->oobsize * 512 / mtd->writesize;
897
898 if (oobbytes_per_512 < 26)
899 return 4;
900 else
901 return 8;
902}
903
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200904static void preset_v1(struct mtd_info *mtd)
Ivo Claryssed4840182010-04-08 16:14:44 +0200905{
906 struct nand_chip *nand_chip = mtd->priv;
907 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200908 uint16_t config1 = 0;
Ivo Claryssed4840182010-04-08 16:14:44 +0200909
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200910 if (nand_chip->ecc.mode == NAND_ECC_HW)
911 config1 |= NFC_V1_V2_CONFIG1_ECC_EN;
912
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200913 if (!host->devtype_data->irqpending_quirk)
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200914 config1 |= NFC_V1_V2_CONFIG1_INT_MSK;
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200915
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200916 host->eccsize = 1;
917
918 writew(config1, NFC_V1_V2_CONFIG1);
919 /* preset operation */
920
921 /* Unlock the internal RAM Buffer */
922 writew(0x2, NFC_V1_V2_CONFIG);
923
924 /* Blocks to be unlocked */
925 writew(0x0, NFC_V1_UNLOCKSTART_BLKADDR);
926 writew(0xffff, NFC_V1_UNLOCKEND_BLKADDR);
927
928 /* Unlock Block Command for given address range */
929 writew(0x4, NFC_V1_V2_WRPROT);
930}
931
932static void preset_v2(struct mtd_info *mtd)
933{
934 struct nand_chip *nand_chip = mtd->priv;
935 struct mxc_nand_host *host = nand_chip->priv;
936 uint16_t config1 = 0;
937
938 if (nand_chip->ecc.mode == NAND_ECC_HW)
939 config1 |= NFC_V1_V2_CONFIG1_ECC_EN;
940
941 config1 |= NFC_V2_CONFIG1_FP_INT;
Ivo Claryssed4840182010-04-08 16:14:44 +0200942
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200943 if (!host->devtype_data->irqpending_quirk)
Ivo Claryssed4840182010-04-08 16:14:44 +0200944 config1 |= NFC_V1_V2_CONFIG1_INT_MSK;
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200945
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200946 if (mtd->writesize) {
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200947 uint16_t pages_per_block = mtd->erasesize / mtd->writesize;
948
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200949 host->eccsize = get_eccsize(mtd);
950 if (host->eccsize == 4)
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200951 config1 |= NFC_V2_CONFIG1_ECC_MODE_4;
952
953 config1 |= NFC_V2_CONFIG1_PPB(ffs(pages_per_block) - 6);
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200954 } else {
955 host->eccsize = 1;
956 }
957
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200958 writew(config1, NFC_V1_V2_CONFIG1);
Ivo Claryssed4840182010-04-08 16:14:44 +0200959 /* preset operation */
960
961 /* Unlock the internal RAM Buffer */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200962 writew(0x2, NFC_V1_V2_CONFIG);
Ivo Claryssed4840182010-04-08 16:14:44 +0200963
964 /* Blocks to be unlocked */
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200965 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR0);
966 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR1);
967 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR2);
968 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR3);
969 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR0);
970 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR1);
971 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR2);
972 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR3);
Ivo Claryssed4840182010-04-08 16:14:44 +0200973
974 /* Unlock Block Command for given address range */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200975 writew(0x4, NFC_V1_V2_WRPROT);
Ivo Claryssed4840182010-04-08 16:14:44 +0200976}
977
Sascha Hauer71ec5152010-08-06 15:53:11 +0200978static void preset_v3(struct mtd_info *mtd)
979{
980 struct nand_chip *chip = mtd->priv;
981 struct mxc_nand_host *host = chip->priv;
982 uint32_t config2, config3;
983 int i, addr_phases;
984
985 writel(NFC_V3_CONFIG1_RBA(0), NFC_V3_CONFIG1);
986 writel(NFC_V3_IPC_CREQ, NFC_V3_IPC);
987
988 /* Unlock the internal RAM Buffer */
989 writel(NFC_V3_WRPROT_BLS_UNLOCK | NFC_V3_WRPROT_UNLOCK,
990 NFC_V3_WRPROT);
991
992 /* Blocks to be unlocked */
993 for (i = 0; i < NAND_MAX_CHIPS; i++)
994 writel(0x0 | (0xffff << 16),
995 NFC_V3_WRPROT_UNLOCK_BLK_ADD0 + (i << 2));
996
997 writel(0, NFC_V3_IPC);
998
999 config2 = NFC_V3_CONFIG2_ONE_CYCLE |
1000 NFC_V3_CONFIG2_2CMD_PHASES |
1001 NFC_V3_CONFIG2_SPAS(mtd->oobsize >> 1) |
1002 NFC_V3_CONFIG2_ST_CMD(0x70) |
Sascha Hauer63f14742010-10-18 10:16:26 +02001003 NFC_V3_CONFIG2_INT_MSK |
Sascha Hauer71ec5152010-08-06 15:53:11 +02001004 NFC_V3_CONFIG2_NUM_ADDR_PHASE0;
1005
1006 if (chip->ecc.mode == NAND_ECC_HW)
1007 config2 |= NFC_V3_CONFIG2_ECC_EN;
1008
1009 addr_phases = fls(chip->pagemask) >> 3;
1010
1011 if (mtd->writesize == 2048) {
1012 config2 |= NFC_V3_CONFIG2_PS_2048;
1013 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases);
1014 } else if (mtd->writesize == 4096) {
1015 config2 |= NFC_V3_CONFIG2_PS_4096;
1016 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases);
1017 } else {
1018 config2 |= NFC_V3_CONFIG2_PS_512;
1019 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases - 1);
1020 }
1021
1022 if (mtd->writesize) {
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001023 config2 |= NFC_V3_CONFIG2_PPB(
1024 ffs(mtd->erasesize / mtd->writesize) - 6,
1025 host->devtype_data->ppb_shift);
Sascha Hauer71ec5152010-08-06 15:53:11 +02001026 host->eccsize = get_eccsize(mtd);
1027 if (host->eccsize == 8)
1028 config2 |= NFC_V3_CONFIG2_ECC_MODE_8;
1029 }
1030
1031 writel(config2, NFC_V3_CONFIG2);
1032
1033 config3 = NFC_V3_CONFIG3_NUM_OF_DEVICES(0) |
1034 NFC_V3_CONFIG3_NO_SDMA |
1035 NFC_V3_CONFIG3_RBB_MODE |
1036 NFC_V3_CONFIG3_SBB(6) | /* Reset default */
1037 NFC_V3_CONFIG3_ADD_OP(0);
1038
1039 if (!(chip->options & NAND_BUSWIDTH_16))
1040 config3 |= NFC_V3_CONFIG3_FW8;
1041
1042 writel(config3, NFC_V3_CONFIG3);
1043
1044 writel(0, NFC_V3_DELAY_LINE);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001045}
1046
Sascha Hauer34f6e152008-09-02 17:16:59 +02001047/* Used by the upper layer to write command to NAND Flash for
1048 * different operations to be carried out on NAND Flash */
1049static void mxc_nand_command(struct mtd_info *mtd, unsigned command,
1050 int column, int page_addr)
1051{
1052 struct nand_chip *nand_chip = mtd->priv;
1053 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001054
Brian Norris289c0522011-07-19 10:06:09 -07001055 pr_debug("mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n",
Sascha Hauer34f6e152008-09-02 17:16:59 +02001056 command, column, page_addr);
1057
1058 /* Reset command state information */
1059 host->status_request = false;
1060
1061 /* Command pre-processing step */
Sascha Hauer34f6e152008-09-02 17:16:59 +02001062 switch (command) {
Ivo Claryssed4840182010-04-08 16:14:44 +02001063 case NAND_CMD_RESET:
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001064 host->devtype_data->preset(mtd);
1065 host->devtype_data->send_cmd(host, command, false);
Ivo Claryssed4840182010-04-08 16:14:44 +02001066 break;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001067
Sascha Hauer34f6e152008-09-02 17:16:59 +02001068 case NAND_CMD_STATUS:
Sascha Hauerf8f96082009-06-04 17:12:26 +02001069 host->buf_start = 0;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001070 host->status_request = true;
Sascha Hauer89121a62009-06-04 17:18:01 +02001071
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001072 host->devtype_data->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +02001073 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001074 break;
1075
Sascha Hauer34f6e152008-09-02 17:16:59 +02001076 case NAND_CMD_READ0:
Sascha Hauer34f6e152008-09-02 17:16:59 +02001077 case NAND_CMD_READOOB:
Sascha Hauer89121a62009-06-04 17:18:01 +02001078 if (command == NAND_CMD_READ0)
1079 host->buf_start = column;
1080 else
1081 host->buf_start = column + mtd->writesize;
Sascha Hauerf8f96082009-06-04 17:12:26 +02001082
Sascha Hauer5ea32022010-04-27 15:24:01 +02001083 command = NAND_CMD_READ0; /* only READ0 is valid */
Sascha Hauer89121a62009-06-04 17:18:01 +02001084
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001085 host->devtype_data->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +02001086 mxc_do_addr_cycle(mtd, column, page_addr);
1087
Sascha Hauer2d69c7f2009-10-05 11:24:02 +02001088 if (mtd->writesize > 512)
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001089 host->devtype_data->send_cmd(host,
1090 NAND_CMD_READSTART, true);
Sascha Hauerc5d23f12009-06-04 17:25:53 +02001091
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001092 host->devtype_data->send_page(mtd, NFC_OUTPUT);
Sascha Hauer89121a62009-06-04 17:18:01 +02001093
Sascha Hauer096bcc22012-05-29 10:16:09 +02001094 memcpy32_fromio(host->data_buf, host->main_area0,
1095 mtd->writesize);
Sascha Hauer89121a62009-06-04 17:18:01 +02001096 copy_spare(mtd, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001097 break;
1098
Sascha Hauer34f6e152008-09-02 17:16:59 +02001099 case NAND_CMD_SEQIN:
Sascha Hauer5ea32022010-04-27 15:24:01 +02001100 if (column >= mtd->writesize)
1101 /* call ourself to read a page */
1102 mxc_nand_command(mtd, NAND_CMD_READ0, 0, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001103
Sascha Hauer5ea32022010-04-27 15:24:01 +02001104 host->buf_start = column;
Sascha Hauer89121a62009-06-04 17:18:01 +02001105
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001106 host->devtype_data->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +02001107 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001108 break;
1109
1110 case NAND_CMD_PAGEPROG:
Sascha Hauer096bcc22012-05-29 10:16:09 +02001111 memcpy32_toio(host->main_area0, host->data_buf, mtd->writesize);
Sascha Hauerf8f96082009-06-04 17:12:26 +02001112 copy_spare(mtd, false);
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001113 host->devtype_data->send_page(mtd, NFC_INPUT);
1114 host->devtype_data->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +02001115 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001116 break;
1117
Sascha Hauer34f6e152008-09-02 17:16:59 +02001118 case NAND_CMD_READID:
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001119 host->devtype_data->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +02001120 mxc_do_addr_cycle(mtd, column, page_addr);
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001121 host->devtype_data->send_read_id(host);
Sascha Hauer94671142009-10-05 12:14:21 +02001122 host->buf_start = column;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001123 break;
1124
Sascha Hauer89121a62009-06-04 17:18:01 +02001125 case NAND_CMD_ERASE1:
Sascha Hauer34f6e152008-09-02 17:16:59 +02001126 case NAND_CMD_ERASE2:
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001127 host->devtype_data->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +02001128 mxc_do_addr_cycle(mtd, column, page_addr);
1129
Sascha Hauer34f6e152008-09-02 17:16:59 +02001130 break;
1131 }
1132}
1133
Sascha Hauerf1372052009-10-21 14:25:27 +02001134/*
1135 * The generic flash bbt decriptors overlap with our ecc
1136 * hardware, so define some i.MX specific ones.
1137 */
1138static uint8_t bbt_pattern[] = { 'B', 'b', 't', '0' };
1139static uint8_t mirror_pattern[] = { '1', 't', 'b', 'B' };
1140
1141static struct nand_bbt_descr bbt_main_descr = {
1142 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1143 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1144 .offs = 0,
1145 .len = 4,
1146 .veroffs = 4,
1147 .maxblocks = 4,
1148 .pattern = bbt_pattern,
1149};
1150
1151static struct nand_bbt_descr bbt_mirror_descr = {
1152 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1153 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1154 .offs = 0,
1155 .len = 4,
1156 .veroffs = 4,
1157 .maxblocks = 4,
1158 .pattern = mirror_pattern,
1159};
1160
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001161/* v1 + irqpending_quirk: i.MX21 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001162static const struct mxc_nand_devtype_data imx21_nand_devtype_data = {
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001163 .preset = preset_v1,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001164 .send_cmd = send_cmd_v1_v2,
1165 .send_addr = send_addr_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001166 .send_page = send_page_v1,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001167 .send_read_id = send_read_id_v1_v2,
1168 .get_dev_status = get_dev_status_v1_v2,
1169 .check_int = check_int_v1_v2,
1170 .irq_control = irq_control_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001171 .get_ecc_status = get_ecc_status_v1,
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001172 .ecclayout_512 = &nandv1_hw_eccoob_smallpage,
1173 .ecclayout_2k = &nandv1_hw_eccoob_largepage,
1174 .ecclayout_4k = &nandv1_hw_eccoob_smallpage, /* XXX: needs fix */
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +02001175 .select_chip = mxc_nand_select_chip_v1_v3,
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001176 .correct_data = mxc_nand_correct_data_v1,
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001177 .irqpending_quirk = 1,
1178 .needs_ip = 0,
1179 .regs_offset = 0xe00,
1180 .spare0_offset = 0x800,
1181 .spare_len = 16,
1182 .eccbytes = 3,
1183 .eccsize = 1,
1184};
1185
1186/* v1 + !irqpending_quirk: i.MX27, i.MX31 */
1187static const struct mxc_nand_devtype_data imx27_nand_devtype_data = {
1188 .preset = preset_v1,
1189 .send_cmd = send_cmd_v1_v2,
1190 .send_addr = send_addr_v1_v2,
1191 .send_page = send_page_v1,
1192 .send_read_id = send_read_id_v1_v2,
1193 .get_dev_status = get_dev_status_v1_v2,
1194 .check_int = check_int_v1_v2,
1195 .irq_control = irq_control_v1_v2,
1196 .get_ecc_status = get_ecc_status_v1,
1197 .ecclayout_512 = &nandv1_hw_eccoob_smallpage,
1198 .ecclayout_2k = &nandv1_hw_eccoob_largepage,
1199 .ecclayout_4k = &nandv1_hw_eccoob_smallpage, /* XXX: needs fix */
1200 .select_chip = mxc_nand_select_chip_v1_v3,
1201 .correct_data = mxc_nand_correct_data_v1,
1202 .irqpending_quirk = 0,
1203 .needs_ip = 0,
1204 .regs_offset = 0xe00,
1205 .spare0_offset = 0x800,
1206 .axi_offset = 0,
1207 .spare_len = 16,
1208 .eccbytes = 3,
1209 .eccsize = 1,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001210};
1211
1212/* v21: i.MX25, i.MX35 */
1213static const struct mxc_nand_devtype_data imx25_nand_devtype_data = {
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001214 .preset = preset_v2,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001215 .send_cmd = send_cmd_v1_v2,
1216 .send_addr = send_addr_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001217 .send_page = send_page_v2,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001218 .send_read_id = send_read_id_v1_v2,
1219 .get_dev_status = get_dev_status_v1_v2,
1220 .check_int = check_int_v1_v2,
1221 .irq_control = irq_control_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001222 .get_ecc_status = get_ecc_status_v2,
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001223 .ecclayout_512 = &nandv2_hw_eccoob_smallpage,
1224 .ecclayout_2k = &nandv2_hw_eccoob_largepage,
1225 .ecclayout_4k = &nandv2_hw_eccoob_4k,
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +02001226 .select_chip = mxc_nand_select_chip_v2,
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001227 .correct_data = mxc_nand_correct_data_v2_v3,
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001228 .irqpending_quirk = 0,
1229 .needs_ip = 0,
1230 .regs_offset = 0x1e00,
1231 .spare0_offset = 0x1000,
1232 .axi_offset = 0,
1233 .spare_len = 64,
1234 .eccbytes = 9,
1235 .eccsize = 0,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001236};
1237
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001238/* v3.2a: i.MX51 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001239static const struct mxc_nand_devtype_data imx51_nand_devtype_data = {
1240 .preset = preset_v3,
1241 .send_cmd = send_cmd_v3,
1242 .send_addr = send_addr_v3,
1243 .send_page = send_page_v3,
1244 .send_read_id = send_read_id_v3,
1245 .get_dev_status = get_dev_status_v3,
1246 .check_int = check_int_v3,
1247 .irq_control = irq_control_v3,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001248 .get_ecc_status = get_ecc_status_v3,
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001249 .ecclayout_512 = &nandv2_hw_eccoob_smallpage,
1250 .ecclayout_2k = &nandv2_hw_eccoob_largepage,
1251 .ecclayout_4k = &nandv2_hw_eccoob_smallpage, /* XXX: needs fix */
Uwe Kleine-König5e05a2d2012-04-23 11:23:38 +02001252 .select_chip = mxc_nand_select_chip_v1_v3,
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001253 .correct_data = mxc_nand_correct_data_v2_v3,
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001254 .irqpending_quirk = 0,
1255 .needs_ip = 1,
1256 .regs_offset = 0,
1257 .spare0_offset = 0x1000,
1258 .axi_offset = 0x1e00,
1259 .spare_len = 64,
1260 .eccbytes = 0,
1261 .eccsize = 0,
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001262 .ppb_shift = 7,
1263};
1264
1265/* v3.2b: i.MX53 */
1266static const struct mxc_nand_devtype_data imx53_nand_devtype_data = {
1267 .preset = preset_v3,
1268 .send_cmd = send_cmd_v3,
1269 .send_addr = send_addr_v3,
1270 .send_page = send_page_v3,
1271 .send_read_id = send_read_id_v3,
1272 .get_dev_status = get_dev_status_v3,
1273 .check_int = check_int_v3,
1274 .irq_control = irq_control_v3,
1275 .get_ecc_status = get_ecc_status_v3,
1276 .ecclayout_512 = &nandv2_hw_eccoob_smallpage,
1277 .ecclayout_2k = &nandv2_hw_eccoob_largepage,
1278 .ecclayout_4k = &nandv2_hw_eccoob_smallpage, /* XXX: needs fix */
1279 .select_chip = mxc_nand_select_chip_v1_v3,
1280 .correct_data = mxc_nand_correct_data_v2_v3,
1281 .irqpending_quirk = 0,
1282 .needs_ip = 1,
1283 .regs_offset = 0,
1284 .spare0_offset = 0x1000,
1285 .axi_offset = 0x1e00,
1286 .spare_len = 64,
1287 .eccbytes = 0,
1288 .eccsize = 0,
1289 .ppb_shift = 8,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001290};
1291
Shawn Guo4d624352012-09-15 13:34:09 +08001292static inline int is_imx21_nfc(struct mxc_nand_host *host)
1293{
1294 return host->devtype_data == &imx21_nand_devtype_data;
1295}
1296
1297static inline int is_imx27_nfc(struct mxc_nand_host *host)
1298{
1299 return host->devtype_data == &imx27_nand_devtype_data;
1300}
1301
1302static inline int is_imx25_nfc(struct mxc_nand_host *host)
1303{
1304 return host->devtype_data == &imx25_nand_devtype_data;
1305}
1306
1307static inline int is_imx51_nfc(struct mxc_nand_host *host)
1308{
1309 return host->devtype_data == &imx51_nand_devtype_data;
1310}
1311
1312static inline int is_imx53_nfc(struct mxc_nand_host *host)
1313{
1314 return host->devtype_data == &imx53_nand_devtype_data;
1315}
1316
1317static struct platform_device_id mxcnd_devtype[] = {
1318 {
1319 .name = "imx21-nand",
1320 .driver_data = (kernel_ulong_t) &imx21_nand_devtype_data,
1321 }, {
1322 .name = "imx27-nand",
1323 .driver_data = (kernel_ulong_t) &imx27_nand_devtype_data,
1324 }, {
1325 .name = "imx25-nand",
1326 .driver_data = (kernel_ulong_t) &imx25_nand_devtype_data,
1327 }, {
1328 .name = "imx51-nand",
1329 .driver_data = (kernel_ulong_t) &imx51_nand_devtype_data,
1330 }, {
1331 .name = "imx53-nand",
1332 .driver_data = (kernel_ulong_t) &imx53_nand_devtype_data,
1333 }, {
1334 /* sentinel */
1335 }
1336};
1337MODULE_DEVICE_TABLE(platform, mxcnd_devtype);
1338
Uwe Kleine-König64363562012-04-23 11:23:41 +02001339#ifdef CONFIG_OF_MTD
1340static const struct of_device_id mxcnd_dt_ids[] = {
1341 {
1342 .compatible = "fsl,imx21-nand",
1343 .data = &imx21_nand_devtype_data,
1344 }, {
1345 .compatible = "fsl,imx27-nand",
1346 .data = &imx27_nand_devtype_data,
1347 }, {
1348 .compatible = "fsl,imx25-nand",
1349 .data = &imx25_nand_devtype_data,
1350 }, {
1351 .compatible = "fsl,imx51-nand",
1352 .data = &imx51_nand_devtype_data,
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001353 }, {
1354 .compatible = "fsl,imx53-nand",
1355 .data = &imx53_nand_devtype_data,
Uwe Kleine-König64363562012-04-23 11:23:41 +02001356 },
1357 { /* sentinel */ }
1358};
1359
1360static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
1361{
1362 struct device_node *np = host->dev->of_node;
1363 struct mxc_nand_platform_data *pdata = &host->pdata;
1364 const struct of_device_id *of_id =
1365 of_match_device(mxcnd_dt_ids, host->dev);
1366 int buswidth;
1367
1368 if (!np)
1369 return 1;
1370
1371 if (of_get_nand_ecc_mode(np) >= 0)
1372 pdata->hw_ecc = 1;
1373
1374 pdata->flash_bbt = of_get_nand_on_flash_bbt(np);
1375
1376 buswidth = of_get_nand_bus_width(np);
1377 if (buswidth < 0)
1378 return buswidth;
1379
1380 pdata->width = buswidth / 8;
1381
1382 host->devtype_data = of_id->data;
1383
1384 return 0;
1385}
1386#else
1387static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
1388{
1389 return 1;
1390}
1391#endif
1392
Bill Pemberton06f25512012-11-19 13:23:07 -05001393static int mxcnd_probe(struct platform_device *pdev)
Sascha Hauer34f6e152008-09-02 17:16:59 +02001394{
1395 struct nand_chip *this;
1396 struct mtd_info *mtd;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001397 struct mxc_nand_host *host;
1398 struct resource *res;
Dmitry Eremin-Solenikovd4ed8f12011-06-02 18:00:43 +04001399 int err = 0;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001400
1401 /* Allocate memory for MTD device structure and private data */
Huang Shijiea5900552013-12-21 00:02:27 +08001402 host = devm_kzalloc(&pdev->dev, sizeof(struct mxc_nand_host),
1403 GFP_KERNEL);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001404 if (!host)
1405 return -ENOMEM;
1406
Huang Shijiea5900552013-12-21 00:02:27 +08001407 /* allocate a temporary buffer for the nand_scan_ident() */
1408 host->data_buf = devm_kzalloc(&pdev->dev, PAGE_SIZE, GFP_KERNEL);
1409 if (!host->data_buf)
1410 return -ENOMEM;
Sascha Hauerf8f96082009-06-04 17:12:26 +02001411
Sascha Hauer34f6e152008-09-02 17:16:59 +02001412 host->dev = &pdev->dev;
1413 /* structures must be linked */
1414 this = &host->nand;
1415 mtd = &host->mtd;
1416 mtd->priv = this;
1417 mtd->owner = THIS_MODULE;
David Brownell87f39f02009-03-26 00:42:50 -07001418 mtd->dev.parent = &pdev->dev;
Sascha Hauer1fbff0a2009-10-21 16:06:27 +02001419 mtd->name = DRIVER_NAME;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001420
1421 /* 50 us command delay time */
1422 this->chip_delay = 5;
1423
1424 this->priv = host;
1425 this->dev_ready = mxc_nand_dev_ready;
1426 this->cmdfunc = mxc_nand_command;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001427 this->read_byte = mxc_nand_read_byte;
1428 this->read_word = mxc_nand_read_word;
1429 this->write_buf = mxc_nand_write_buf;
1430 this->read_buf = mxc_nand_read_buf;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001431
Fabio Estevam24b82d32012-09-05 11:52:27 -03001432 host->clk = devm_clk_get(&pdev->dev, NULL);
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001433 if (IS_ERR(host->clk))
1434 return PTR_ERR(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001435
Sascha Hauer71885b62012-06-06 12:33:14 +02001436 err = mxcnd_probe_dt(host);
Shawn Guo4d624352012-09-15 13:34:09 +08001437 if (err > 0) {
Jingoo Han453810b2013-07-30 17:18:33 +09001438 struct mxc_nand_platform_data *pdata =
1439 dev_get_platdata(&pdev->dev);
Shawn Guo4d624352012-09-15 13:34:09 +08001440 if (pdata) {
1441 host->pdata = *pdata;
1442 host->devtype_data = (struct mxc_nand_devtype_data *)
1443 pdev->id_entry->driver_data;
1444 } else {
1445 err = -ENODEV;
1446 }
1447 }
Sascha Hauer71885b62012-06-06 12:33:14 +02001448 if (err < 0)
1449 return err;
1450
1451 if (host->devtype_data->needs_ip) {
1452 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingb0de7742013-01-21 11:09:12 +01001453 host->regs_ip = devm_ioremap_resource(&pdev->dev, res);
1454 if (IS_ERR(host->regs_ip))
1455 return PTR_ERR(host->regs_ip);
Sascha Hauer71885b62012-06-06 12:33:14 +02001456
1457 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1458 } else {
1459 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1460 }
1461
Thierry Redingb0de7742013-01-21 11:09:12 +01001462 host->base = devm_ioremap_resource(&pdev->dev, res);
1463 if (IS_ERR(host->base))
1464 return PTR_ERR(host->base);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001465
Sascha Hauerc6de7e12009-10-05 11:14:35 +02001466 host->main_area0 = host->base;
Sascha Hauer94671142009-10-05 12:14:21 +02001467
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001468 if (host->devtype_data->regs_offset)
1469 host->regs = host->base + host->devtype_data->regs_offset;
1470 host->spare0 = host->base + host->devtype_data->spare0_offset;
1471 if (host->devtype_data->axi_offset)
1472 host->regs_axi = host->base + host->devtype_data->axi_offset;
1473
1474 this->ecc.bytes = host->devtype_data->eccbytes;
1475 host->eccsize = host->devtype_data->eccsize;
1476
1477 this->select_chip = host->devtype_data->select_chip;
1478 this->ecc.size = 512;
1479 this->ecc.layout = host->devtype_data->ecclayout_512;
1480
Uwe Kleine-König64363562012-04-23 11:23:41 +02001481 if (host->pdata.hw_ecc) {
Sascha Hauer13e1add2009-10-21 10:39:05 +02001482 this->ecc.calculate = mxc_nand_calculate_ecc;
1483 this->ecc.hwctl = mxc_nand_enable_hwecc;
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001484 this->ecc.correct = host->devtype_data->correct_data;
Sascha Hauer13e1add2009-10-21 10:39:05 +02001485 this->ecc.mode = NAND_ECC_HW;
Sascha Hauer13e1add2009-10-21 10:39:05 +02001486 } else {
1487 this->ecc.mode = NAND_ECC_SOFT;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001488 }
1489
Uwe Kleine-König64363562012-04-23 11:23:41 +02001490 /* NAND bus width determines access functions used by upper layer */
1491 if (host->pdata.width == 2)
Sascha Hauer34f6e152008-09-02 17:16:59 +02001492 this->options |= NAND_BUSWIDTH_16;
Sascha Hauer13e1add2009-10-21 10:39:05 +02001493
Uwe Kleine-König64363562012-04-23 11:23:41 +02001494 if (host->pdata.flash_bbt) {
Sascha Hauerf1372052009-10-21 14:25:27 +02001495 this->bbt_td = &bbt_main_descr;
1496 this->bbt_md = &bbt_mirror_descr;
1497 /* update flash based bbt */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001498 this->bbt_options |= NAND_BBT_USE_FLASH;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001499 }
1500
Sascha Hauer63f14742010-10-18 10:16:26 +02001501 init_completion(&host->op_completion);
Ivo Claryssed4840182010-04-08 16:14:44 +02001502
1503 host->irq = platform_get_irq(pdev, 0);
Fabio Estevam26fbf482014-02-14 01:09:34 -02001504 if (host->irq < 0)
1505 return host->irq;
Ivo Claryssed4840182010-04-08 16:14:44 +02001506
Sascha Hauer63f14742010-10-18 10:16:26 +02001507 /*
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001508 * Use host->devtype_data->irq_control() here instead of irq_control()
1509 * because we must not disable_irq_nosync without having requested the
1510 * irq.
Sascha Hauer63f14742010-10-18 10:16:26 +02001511 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001512 host->devtype_data->irq_control(host, 0);
Sascha Hauer63f14742010-10-18 10:16:26 +02001513
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001514 err = devm_request_irq(&pdev->dev, host->irq, mxc_nfc_irq,
Michael Opdenackerb1eb2342013-10-13 08:21:32 +02001515 0, DRIVER_NAME, host);
Ivo Claryssed4840182010-04-08 16:14:44 +02001516 if (err)
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001517 return err;
1518
Fabio Estevamdcedf622013-12-02 00:50:02 -02001519 err = clk_prepare_enable(host->clk);
1520 if (err)
1521 return err;
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001522 host->clk_act = 1;
Ivo Claryssed4840182010-04-08 16:14:44 +02001523
Sascha Hauer63f14742010-10-18 10:16:26 +02001524 /*
Uwe Kleine-König85569582012-04-23 11:23:34 +02001525 * Now that we "own" the interrupt make sure the interrupt mask bit is
1526 * cleared on i.MX21. Otherwise we can't read the interrupt status bit
1527 * on this machine.
Sascha Hauer63f14742010-10-18 10:16:26 +02001528 */
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001529 if (host->devtype_data->irqpending_quirk) {
Uwe Kleine-König85569582012-04-23 11:23:34 +02001530 disable_irq_nosync(host->irq);
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001531 host->devtype_data->irq_control(host, 1);
Uwe Kleine-König85569582012-04-23 11:23:34 +02001532 }
Sascha Hauer63f14742010-10-18 10:16:26 +02001533
Vladimir Barinovbd3fd622009-05-25 13:06:17 +04001534 /* first scan to find the device and get the page size */
Shawn Guo4d624352012-09-15 13:34:09 +08001535 if (nand_scan_ident(mtd, is_imx25_nfc(host) ? 4 : 1, NULL)) {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +04001536 err = -ENXIO;
1537 goto escan;
1538 }
Sascha Hauer34f6e152008-09-02 17:16:59 +02001539
Huang Shijiea5900552013-12-21 00:02:27 +08001540 /* allocate the right size buffer now */
1541 devm_kfree(&pdev->dev, (void *)host->data_buf);
1542 host->data_buf = devm_kzalloc(&pdev->dev, mtd->writesize + mtd->oobsize,
1543 GFP_KERNEL);
1544 if (!host->data_buf) {
1545 err = -ENOMEM;
1546 goto escan;
1547 }
1548
Sascha Hauer6e85dfd2010-08-06 15:53:10 +02001549 /* Call preset again, with correct writesize this time */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001550 host->devtype_data->preset(mtd);
Sascha Hauer6e85dfd2010-08-06 15:53:10 +02001551
Sascha Hauer2d69c7f2009-10-05 11:24:02 +02001552 if (mtd->writesize == 2048)
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001553 this->ecc.layout = host->devtype_data->ecclayout_2k;
1554 else if (mtd->writesize == 4096)
1555 this->ecc.layout = host->devtype_data->ecclayout_4k;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001556
Mike Dunn6a918ba2012-03-11 14:21:11 -07001557 if (this->ecc.mode == NAND_ECC_HW) {
Shawn Guo4d624352012-09-15 13:34:09 +08001558 if (is_imx21_nfc(host) || is_imx27_nfc(host))
Mike Dunn6a918ba2012-03-11 14:21:11 -07001559 this->ecc.strength = 1;
1560 else
1561 this->ecc.strength = (host->eccsize == 4) ? 4 : 8;
1562 }
1563
Sascha Hauer4a43faf2012-05-25 16:22:42 +02001564 /* second phase scan */
1565 if (nand_scan_tail(mtd)) {
1566 err = -ENXIO;
1567 goto escan;
1568 }
1569
Sascha Hauer34f6e152008-09-02 17:16:59 +02001570 /* Register the partitions */
Uwe Kleine-König64363562012-04-23 11:23:41 +02001571 mtd_device_parse_register(mtd, part_probes,
1572 &(struct mtd_part_parser_data){
1573 .of_node = pdev->dev.of_node,
1574 },
1575 host->pdata.parts,
1576 host->pdata.nr_parts);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001577
1578 platform_set_drvdata(pdev, host);
1579
1580 return 0;
1581
1582escan:
Lothar Waßmannc10d8ee2012-12-06 08:42:27 +01001583 if (host->clk_act)
1584 clk_disable_unprepare(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001585
1586 return err;
1587}
1588
Bill Pemberton810b7e02012-11-19 13:26:04 -05001589static int mxcnd_remove(struct platform_device *pdev)
Sascha Hauer34f6e152008-09-02 17:16:59 +02001590{
1591 struct mxc_nand_host *host = platform_get_drvdata(pdev);
1592
Sascha Hauer34f6e152008-09-02 17:16:59 +02001593 nand_release(&host->mtd);
Wei Yongjun8bfd4f72013-12-17 11:35:35 +08001594 if (host->clk_act)
1595 clk_disable_unprepare(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001596
1597 return 0;
1598}
1599
Sascha Hauer34f6e152008-09-02 17:16:59 +02001600static struct platform_driver mxcnd_driver = {
1601 .driver = {
1602 .name = DRIVER_NAME,
Uwe Kleine-König8d1fd162012-04-23 11:23:33 +02001603 .owner = THIS_MODULE,
Uwe Kleine-König64363562012-04-23 11:23:41 +02001604 .of_match_table = of_match_ptr(mxcnd_dt_ids),
Eric Bénard04dd0d32010-06-17 20:59:04 +02001605 },
Shawn Guo4d624352012-09-15 13:34:09 +08001606 .id_table = mxcnd_devtype,
Fabio Estevamddf16d62012-09-05 11:35:25 -03001607 .probe = mxcnd_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -05001608 .remove = mxcnd_remove,
Sascha Hauer34f6e152008-09-02 17:16:59 +02001609};
Fabio Estevamddf16d62012-09-05 11:35:25 -03001610module_platform_driver(mxcnd_driver);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001611
1612MODULE_AUTHOR("Freescale Semiconductor, Inc.");
1613MODULE_DESCRIPTION("MXC NAND MTD driver");
1614MODULE_LICENSE("GPL");