blob: 3f94e1f13231b07ea43b71d945e9615eabe1fc65 [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>
Uwe Kleine-König64363562012-04-23 11:23:41 +020035#include <linux/of_device.h>
36#include <linux/of_mtd.h>
Sascha Hauer34f6e152008-09-02 17:16:59 +020037
38#include <asm/mach/flash.h>
39#include <mach/mxc_nand.h>
Sascha Hauer94671142009-10-05 12:14:21 +020040#include <mach/hardware.h>
Sascha Hauer34f6e152008-09-02 17:16:59 +020041
42#define DRIVER_NAME "mxc_nand"
43
Sascha Hauer94671142009-10-05 12:14:21 +020044#define nfc_is_v21() (cpu_is_mx25() || cpu_is_mx35())
Ivo Claryssea47bfd22010-04-08 16:16:51 +020045#define nfc_is_v1() (cpu_is_mx31() || cpu_is_mx27() || cpu_is_mx21())
Sascha Hauer71718a8e2012-06-06 12:33:15 +020046#define nfc_is_v3_2a() cpu_is_mx51()
47#define nfc_is_v3_2b() cpu_is_mx53()
Sascha Hauer94671142009-10-05 12:14:21 +020048
Sascha Hauer34f6e152008-09-02 17:16:59 +020049/* Addresses for NFC registers */
Sascha Hauer1bc99182010-08-06 15:53:08 +020050#define NFC_V1_V2_BUF_SIZE (host->regs + 0x00)
51#define NFC_V1_V2_BUF_ADDR (host->regs + 0x04)
52#define NFC_V1_V2_FLASH_ADDR (host->regs + 0x06)
53#define NFC_V1_V2_FLASH_CMD (host->regs + 0x08)
54#define NFC_V1_V2_CONFIG (host->regs + 0x0a)
55#define NFC_V1_V2_ECC_STATUS_RESULT (host->regs + 0x0c)
56#define NFC_V1_V2_RSLTMAIN_AREA (host->regs + 0x0e)
57#define NFC_V1_V2_RSLTSPARE_AREA (host->regs + 0x10)
58#define NFC_V1_V2_WRPROT (host->regs + 0x12)
59#define NFC_V1_UNLOCKSTART_BLKADDR (host->regs + 0x14)
60#define NFC_V1_UNLOCKEND_BLKADDR (host->regs + 0x16)
Baruch Siachd178e3e2011-03-14 09:01:56 +020061#define NFC_V21_UNLOCKSTART_BLKADDR0 (host->regs + 0x20)
62#define NFC_V21_UNLOCKSTART_BLKADDR1 (host->regs + 0x24)
63#define NFC_V21_UNLOCKSTART_BLKADDR2 (host->regs + 0x28)
64#define NFC_V21_UNLOCKSTART_BLKADDR3 (host->regs + 0x2c)
65#define NFC_V21_UNLOCKEND_BLKADDR0 (host->regs + 0x22)
66#define NFC_V21_UNLOCKEND_BLKADDR1 (host->regs + 0x26)
67#define NFC_V21_UNLOCKEND_BLKADDR2 (host->regs + 0x2a)
68#define NFC_V21_UNLOCKEND_BLKADDR3 (host->regs + 0x2e)
Sascha Hauer1bc99182010-08-06 15:53:08 +020069#define NFC_V1_V2_NF_WRPRST (host->regs + 0x18)
70#define NFC_V1_V2_CONFIG1 (host->regs + 0x1a)
71#define NFC_V1_V2_CONFIG2 (host->regs + 0x1c)
Sascha Hauer34f6e152008-09-02 17:16:59 +020072
Sascha Hauer6e85dfd2010-08-06 15:53:10 +020073#define NFC_V2_CONFIG1_ECC_MODE_4 (1 << 0)
Sascha Hauer1bc99182010-08-06 15:53:08 +020074#define NFC_V1_V2_CONFIG1_SP_EN (1 << 2)
75#define NFC_V1_V2_CONFIG1_ECC_EN (1 << 3)
76#define NFC_V1_V2_CONFIG1_INT_MSK (1 << 4)
77#define NFC_V1_V2_CONFIG1_BIG (1 << 5)
78#define NFC_V1_V2_CONFIG1_RST (1 << 6)
79#define NFC_V1_V2_CONFIG1_CE (1 << 7)
Sascha Hauerb8db2f52010-08-09 15:04:19 +020080#define NFC_V2_CONFIG1_ONE_CYCLE (1 << 8)
81#define NFC_V2_CONFIG1_PPB(x) (((x) & 0x3) << 9)
82#define NFC_V2_CONFIG1_FP_INT (1 << 11)
Sascha Hauer34f6e152008-09-02 17:16:59 +020083
Sascha Hauer1bc99182010-08-06 15:53:08 +020084#define NFC_V1_V2_CONFIG2_INT (1 << 15)
Sascha Hauer34f6e152008-09-02 17:16:59 +020085
Sascha Hauer1bc99182010-08-06 15:53:08 +020086/*
87 * Operation modes for the NFC. Valid for v1, v2 and v3
88 * type controllers.
89 */
90#define NFC_CMD (1 << 0)
91#define NFC_ADDR (1 << 1)
92#define NFC_INPUT (1 << 2)
93#define NFC_OUTPUT (1 << 3)
94#define NFC_ID (1 << 4)
95#define NFC_STATUS (1 << 5)
Sascha Hauer34f6e152008-09-02 17:16:59 +020096
Sascha Hauer71ec5152010-08-06 15:53:11 +020097#define NFC_V3_FLASH_CMD (host->regs_axi + 0x00)
98#define NFC_V3_FLASH_ADDR0 (host->regs_axi + 0x04)
Sascha Hauer34f6e152008-09-02 17:16:59 +020099
Sascha Hauer71ec5152010-08-06 15:53:11 +0200100#define NFC_V3_CONFIG1 (host->regs_axi + 0x34)
101#define NFC_V3_CONFIG1_SP_EN (1 << 0)
102#define NFC_V3_CONFIG1_RBA(x) (((x) & 0x7 ) << 4)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200103
Sascha Hauer71ec5152010-08-06 15:53:11 +0200104#define NFC_V3_ECC_STATUS_RESULT (host->regs_axi + 0x38)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200105
Sascha Hauer71ec5152010-08-06 15:53:11 +0200106#define NFC_V3_LAUNCH (host->regs_axi + 0x40)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200107
Sascha Hauer71ec5152010-08-06 15:53:11 +0200108#define NFC_V3_WRPROT (host->regs_ip + 0x0)
109#define NFC_V3_WRPROT_LOCK_TIGHT (1 << 0)
110#define NFC_V3_WRPROT_LOCK (1 << 1)
111#define NFC_V3_WRPROT_UNLOCK (1 << 2)
112#define NFC_V3_WRPROT_BLS_UNLOCK (2 << 6)
113
114#define NFC_V3_WRPROT_UNLOCK_BLK_ADD0 (host->regs_ip + 0x04)
115
116#define NFC_V3_CONFIG2 (host->regs_ip + 0x24)
117#define NFC_V3_CONFIG2_PS_512 (0 << 0)
118#define NFC_V3_CONFIG2_PS_2048 (1 << 0)
119#define NFC_V3_CONFIG2_PS_4096 (2 << 0)
120#define NFC_V3_CONFIG2_ONE_CYCLE (1 << 2)
121#define NFC_V3_CONFIG2_ECC_EN (1 << 3)
122#define NFC_V3_CONFIG2_2CMD_PHASES (1 << 4)
123#define NFC_V3_CONFIG2_NUM_ADDR_PHASE0 (1 << 5)
124#define NFC_V3_CONFIG2_ECC_MODE_8 (1 << 6)
Sascha Hauer71718a8e2012-06-06 12:33:15 +0200125#define NFC_V3_CONFIG2_PPB(x, shift) (((x) & 0x3) << shift)
Sascha Hauer71ec5152010-08-06 15:53:11 +0200126#define NFC_V3_CONFIG2_NUM_ADDR_PHASE1(x) (((x) & 0x3) << 12)
127#define NFC_V3_CONFIG2_INT_MSK (1 << 15)
128#define NFC_V3_CONFIG2_ST_CMD(x) (((x) & 0xff) << 24)
129#define NFC_V3_CONFIG2_SPAS(x) (((x) & 0xff) << 16)
130
131#define NFC_V3_CONFIG3 (host->regs_ip + 0x28)
132#define NFC_V3_CONFIG3_ADD_OP(x) (((x) & 0x3) << 0)
133#define NFC_V3_CONFIG3_FW8 (1 << 3)
134#define NFC_V3_CONFIG3_SBB(x) (((x) & 0x7) << 8)
135#define NFC_V3_CONFIG3_NUM_OF_DEVICES(x) (((x) & 0x7) << 12)
136#define NFC_V3_CONFIG3_RBB_MODE (1 << 15)
137#define NFC_V3_CONFIG3_NO_SDMA (1 << 20)
138
139#define NFC_V3_IPC (host->regs_ip + 0x2C)
140#define NFC_V3_IPC_CREQ (1 << 0)
141#define NFC_V3_IPC_INT (1 << 31)
142
143#define NFC_V3_DELAY_LINE (host->regs_ip + 0x34)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200144
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200145struct mxc_nand_host;
146
147struct mxc_nand_devtype_data {
148 void (*preset)(struct mtd_info *);
149 void (*send_cmd)(struct mxc_nand_host *, uint16_t, int);
150 void (*send_addr)(struct mxc_nand_host *, uint16_t, int);
151 void (*send_page)(struct mtd_info *, unsigned int);
152 void (*send_read_id)(struct mxc_nand_host *);
153 uint16_t (*get_dev_status)(struct mxc_nand_host *);
154 int (*check_int)(struct mxc_nand_host *);
155 void (*irq_control)(struct mxc_nand_host *, int);
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200156 u32 (*get_ecc_status)(struct mxc_nand_host *);
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +0200157 struct nand_ecclayout *ecclayout_512, *ecclayout_2k, *ecclayout_4k;
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +0200158 void (*select_chip)(struct mtd_info *mtd, int chip);
Uwe Kleine-König69d023b2012-04-23 11:23:39 +0200159 int (*correct_data)(struct mtd_info *mtd, u_char *dat,
160 u_char *read_ecc, u_char *calc_ecc);
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200161
162 /*
163 * On i.MX21 the CONFIG2:INT bit cannot be read if interrupts are masked
164 * (CONFIG1:INT_MSK is set). To handle this the driver uses
165 * enable_irq/disable_irq_nosync instead of CONFIG1:INT_MSK
166 */
167 int irqpending_quirk;
168 int needs_ip;
169
170 size_t regs_offset;
171 size_t spare0_offset;
172 size_t axi_offset;
173
174 int spare_len;
175 int eccbytes;
176 int eccsize;
Sascha Hauer71718a8e2012-06-06 12:33:15 +0200177 int ppb_shift;
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200178};
179
Sascha Hauer34f6e152008-09-02 17:16:59 +0200180struct mxc_nand_host {
181 struct mtd_info mtd;
182 struct nand_chip nand;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200183 struct device *dev;
184
Uwe Kleine-König4b6f05e2012-04-24 10:05:22 +0200185 void __iomem *spare0;
186 void __iomem *main_area0;
Sascha Hauerc6de7e12009-10-05 11:14:35 +0200187
188 void __iomem *base;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200189 void __iomem *regs;
Sascha Hauer71ec5152010-08-06 15:53:11 +0200190 void __iomem *regs_axi;
191 void __iomem *regs_ip;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200192 int status_request;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200193 struct clk *clk;
194 int clk_act;
195 int irq;
Sascha Hauer94f77e52010-08-06 15:53:09 +0200196 int eccsize;
Baruch Siachd178e3e2011-03-14 09:01:56 +0200197 int active_cs;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200198
Sascha Hauer63f14742010-10-18 10:16:26 +0200199 struct completion op_completion;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200200
201 uint8_t *data_buf;
202 unsigned int buf_start;
Sascha Hauer5f973042010-08-06 15:53:06 +0200203
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200204 const struct mxc_nand_devtype_data *devtype_data;
Uwe Kleine-König64363562012-04-23 11:23:41 +0200205 struct mxc_nand_platform_data pdata;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200206};
207
Sascha Hauer34f6e152008-09-02 17:16:59 +0200208/* OOB placement block for use with hardware ecc generation */
Sascha Hauer94671142009-10-05 12:14:21 +0200209static struct nand_ecclayout nandv1_hw_eccoob_smallpage = {
Sascha Hauer34f6e152008-09-02 17:16:59 +0200210 .eccbytes = 5,
211 .eccpos = {6, 7, 8, 9, 10},
Sascha Hauer8c1fd892009-10-21 10:22:01 +0200212 .oobfree = {{0, 5}, {12, 4}, }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200213};
214
Sascha Hauer94671142009-10-05 12:14:21 +0200215static struct nand_ecclayout nandv1_hw_eccoob_largepage = {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400216 .eccbytes = 20,
217 .eccpos = {6, 7, 8, 9, 10, 22, 23, 24, 25, 26,
218 38, 39, 40, 41, 42, 54, 55, 56, 57, 58},
219 .oobfree = {{2, 4}, {11, 10}, {27, 10}, {43, 10}, {59, 5}, }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200220};
221
Sascha Hauer94671142009-10-05 12:14:21 +0200222/* OOB description for 512 byte pages with 16 byte OOB */
223static struct nand_ecclayout nandv2_hw_eccoob_smallpage = {
224 .eccbytes = 1 * 9,
225 .eccpos = {
226 7, 8, 9, 10, 11, 12, 13, 14, 15
227 },
228 .oobfree = {
229 {.offset = 0, .length = 5}
230 }
231};
232
233/* OOB description for 2048 byte pages with 64 byte OOB */
234static struct nand_ecclayout nandv2_hw_eccoob_largepage = {
235 .eccbytes = 4 * 9,
236 .eccpos = {
237 7, 8, 9, 10, 11, 12, 13, 14, 15,
238 23, 24, 25, 26, 27, 28, 29, 30, 31,
239 39, 40, 41, 42, 43, 44, 45, 46, 47,
240 55, 56, 57, 58, 59, 60, 61, 62, 63
241 },
242 .oobfree = {
243 {.offset = 2, .length = 4},
244 {.offset = 16, .length = 7},
245 {.offset = 32, .length = 7},
246 {.offset = 48, .length = 7}
247 }
248};
249
Baruch Siach2c1c5f12011-03-09 16:12:20 +0200250/* OOB description for 4096 byte pages with 128 byte OOB */
251static struct nand_ecclayout nandv2_hw_eccoob_4k = {
252 .eccbytes = 8 * 9,
253 .eccpos = {
254 7, 8, 9, 10, 11, 12, 13, 14, 15,
255 23, 24, 25, 26, 27, 28, 29, 30, 31,
256 39, 40, 41, 42, 43, 44, 45, 46, 47,
257 55, 56, 57, 58, 59, 60, 61, 62, 63,
258 71, 72, 73, 74, 75, 76, 77, 78, 79,
259 87, 88, 89, 90, 91, 92, 93, 94, 95,
260 103, 104, 105, 106, 107, 108, 109, 110, 111,
261 119, 120, 121, 122, 123, 124, 125, 126, 127,
262 },
263 .oobfree = {
264 {.offset = 2, .length = 4},
265 {.offset = 16, .length = 7},
266 {.offset = 32, .length = 7},
267 {.offset = 48, .length = 7},
268 {.offset = 64, .length = 7},
269 {.offset = 80, .length = 7},
270 {.offset = 96, .length = 7},
271 {.offset = 112, .length = 7},
272 }
273};
274
Uwe Kleine-König64363562012-04-23 11:23:41 +0200275static const char *part_probes[] = { "RedBoot", "cmdlinepart", "ofpart", NULL };
Sascha Hauer34f6e152008-09-02 17:16:59 +0200276
Sascha Hauer096bcc22012-05-29 10:16:09 +0200277static void memcpy32_fromio(void *trg, const void __iomem *src, size_t size)
278{
279 int i;
280 u32 *t = trg;
281 const __iomem u32 *s = src;
282
283 for (i = 0; i < (size >> 2); i++)
284 *t++ = __raw_readl(s++);
285}
286
287static void memcpy32_toio(void __iomem *trg, const void *src, int size)
288{
289 int i;
290 u32 __iomem *t = trg;
291 const u32 *s = src;
292
293 for (i = 0; i < (size >> 2); i++)
294 __raw_writel(*s++, t++);
295}
296
Sascha Hauer71ec5152010-08-06 15:53:11 +0200297static int check_int_v3(struct mxc_nand_host *host)
298{
299 uint32_t tmp;
300
301 tmp = readl(NFC_V3_IPC);
302 if (!(tmp & NFC_V3_IPC_INT))
303 return 0;
304
305 tmp &= ~NFC_V3_IPC_INT;
306 writel(tmp, NFC_V3_IPC);
307
308 return 1;
309}
310
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200311static int check_int_v1_v2(struct mxc_nand_host *host)
312{
313 uint32_t tmp;
314
Sascha Hauer1bc99182010-08-06 15:53:08 +0200315 tmp = readw(NFC_V1_V2_CONFIG2);
316 if (!(tmp & NFC_V1_V2_CONFIG2_INT))
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200317 return 0;
318
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200319 if (!host->devtype_data->irqpending_quirk)
Sascha Hauer63f14742010-10-18 10:16:26 +0200320 writew(tmp & ~NFC_V1_V2_CONFIG2_INT, NFC_V1_V2_CONFIG2);
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200321
322 return 1;
323}
324
Sascha Hauer63f14742010-10-18 10:16:26 +0200325static void irq_control_v1_v2(struct mxc_nand_host *host, int activate)
326{
327 uint16_t tmp;
328
329 tmp = readw(NFC_V1_V2_CONFIG1);
330
331 if (activate)
332 tmp &= ~NFC_V1_V2_CONFIG1_INT_MSK;
333 else
334 tmp |= NFC_V1_V2_CONFIG1_INT_MSK;
335
336 writew(tmp, NFC_V1_V2_CONFIG1);
337}
338
339static void irq_control_v3(struct mxc_nand_host *host, int activate)
340{
341 uint32_t tmp;
342
343 tmp = readl(NFC_V3_CONFIG2);
344
345 if (activate)
346 tmp &= ~NFC_V3_CONFIG2_INT_MSK;
347 else
348 tmp |= NFC_V3_CONFIG2_INT_MSK;
349
350 writel(tmp, NFC_V3_CONFIG2);
351}
352
Uwe Kleine-König85569582012-04-23 11:23:34 +0200353static void irq_control(struct mxc_nand_host *host, int activate)
354{
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200355 if (host->devtype_data->irqpending_quirk) {
Uwe Kleine-König85569582012-04-23 11:23:34 +0200356 if (activate)
357 enable_irq(host->irq);
358 else
359 disable_irq_nosync(host->irq);
360 } else {
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200361 host->devtype_data->irq_control(host, activate);
Uwe Kleine-König85569582012-04-23 11:23:34 +0200362 }
363}
364
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200365static u32 get_ecc_status_v1(struct mxc_nand_host *host)
366{
367 return readw(NFC_V1_V2_ECC_STATUS_RESULT);
368}
369
370static u32 get_ecc_status_v2(struct mxc_nand_host *host)
371{
372 return readl(NFC_V1_V2_ECC_STATUS_RESULT);
373}
374
375static u32 get_ecc_status_v3(struct mxc_nand_host *host)
376{
377 return readl(NFC_V3_ECC_STATUS_RESULT);
378}
379
Uwe Kleine-König85569582012-04-23 11:23:34 +0200380static irqreturn_t mxc_nfc_irq(int irq, void *dev_id)
381{
382 struct mxc_nand_host *host = dev_id;
383
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200384 if (!host->devtype_data->check_int(host))
Uwe Kleine-König85569582012-04-23 11:23:34 +0200385 return IRQ_NONE;
386
387 irq_control(host, 0);
388
389 complete(&host->op_completion);
390
391 return IRQ_HANDLED;
392}
393
Sascha Hauer34f6e152008-09-02 17:16:59 +0200394/* This function polls the NANDFC to wait for the basic operation to
395 * complete by checking the INT bit of config2 register.
396 */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200397static void wait_op_done(struct mxc_nand_host *host, int useirq)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200398{
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200399 int max_retries = 8000;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200400
401 if (useirq) {
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200402 if (!host->devtype_data->check_int(host)) {
Sascha Hauer63f14742010-10-18 10:16:26 +0200403 INIT_COMPLETION(host->op_completion);
Uwe Kleine-König85569582012-04-23 11:23:34 +0200404 irq_control(host, 1);
Sascha Hauer63f14742010-10-18 10:16:26 +0200405 wait_for_completion(&host->op_completion);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200406 }
407 } else {
408 while (max_retries-- > 0) {
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200409 if (host->devtype_data->check_int(host))
Sascha Hauer34f6e152008-09-02 17:16:59 +0200410 break;
Sascha Hauer7aaf28a2010-08-06 15:53:07 +0200411
Sascha Hauer34f6e152008-09-02 17:16:59 +0200412 udelay(1);
413 }
Roel Kluin43950a62009-06-04 16:24:59 +0200414 if (max_retries < 0)
Brian Norris0a32a102011-07-19 10:06:10 -0700415 pr_debug("%s: INT not set\n", __func__);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200416 }
417}
418
Sascha Hauer71ec5152010-08-06 15:53:11 +0200419static void send_cmd_v3(struct mxc_nand_host *host, uint16_t cmd, int useirq)
420{
421 /* fill command */
422 writel(cmd, NFC_V3_FLASH_CMD);
423
424 /* send out command */
425 writel(NFC_CMD, NFC_V3_LAUNCH);
426
427 /* Wait for operation to complete */
428 wait_op_done(host, useirq);
429}
430
Sascha Hauer34f6e152008-09-02 17:16:59 +0200431/* This function issues the specified command to the NAND device and
432 * waits for completion. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200433static void send_cmd_v1_v2(struct mxc_nand_host *host, uint16_t cmd, int useirq)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200434{
Brian Norris289c0522011-07-19 10:06:09 -0700435 pr_debug("send_cmd(host, 0x%x, %d)\n", cmd, useirq);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200436
Sascha Hauer1bc99182010-08-06 15:53:08 +0200437 writew(cmd, NFC_V1_V2_FLASH_CMD);
438 writew(NFC_CMD, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200439
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200440 if (host->devtype_data->irqpending_quirk && (cmd == NAND_CMD_RESET)) {
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200441 int max_retries = 100;
442 /* Reset completion is indicated by NFC_CONFIG2 */
443 /* being set to 0 */
444 while (max_retries-- > 0) {
Sascha Hauer1bc99182010-08-06 15:53:08 +0200445 if (readw(NFC_V1_V2_CONFIG2) == 0) {
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200446 break;
447 }
448 udelay(1);
449 }
450 if (max_retries < 0)
Brian Norris0a32a102011-07-19 10:06:10 -0700451 pr_debug("%s: RESET failed\n", __func__);
Ivo Claryssea47bfd22010-04-08 16:16:51 +0200452 } else {
453 /* Wait for operation to complete */
454 wait_op_done(host, useirq);
455 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200456}
457
Sascha Hauer71ec5152010-08-06 15:53:11 +0200458static void send_addr_v3(struct mxc_nand_host *host, uint16_t addr, int islast)
459{
460 /* fill address */
461 writel(addr, NFC_V3_FLASH_ADDR0);
462
463 /* send out address */
464 writel(NFC_ADDR, NFC_V3_LAUNCH);
465
466 wait_op_done(host, 0);
467}
468
Sascha Hauer34f6e152008-09-02 17:16:59 +0200469/* This function sends an address (or partial address) to the
470 * NAND device. The address is used to select the source/destination for
471 * a NAND command. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200472static void send_addr_v1_v2(struct mxc_nand_host *host, uint16_t addr, int islast)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200473{
Brian Norris289c0522011-07-19 10:06:09 -0700474 pr_debug("send_addr(host, 0x%x %d)\n", addr, islast);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200475
Sascha Hauer1bc99182010-08-06 15:53:08 +0200476 writew(addr, NFC_V1_V2_FLASH_ADDR);
477 writew(NFC_ADDR, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200478
479 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200480 wait_op_done(host, islast);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200481}
482
Sascha Hauer71ec5152010-08-06 15:53:11 +0200483static void send_page_v3(struct mtd_info *mtd, unsigned int ops)
484{
485 struct nand_chip *nand_chip = mtd->priv;
486 struct mxc_nand_host *host = nand_chip->priv;
487 uint32_t tmp;
488
489 tmp = readl(NFC_V3_CONFIG1);
490 tmp &= ~(7 << 4);
491 writel(tmp, NFC_V3_CONFIG1);
492
493 /* transfer data from NFC ram to nand */
494 writel(ops, NFC_V3_LAUNCH);
495
496 wait_op_done(host, false);
497}
498
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200499static void send_page_v2(struct mtd_info *mtd, unsigned int ops)
500{
501 struct nand_chip *nand_chip = mtd->priv;
502 struct mxc_nand_host *host = nand_chip->priv;
503
504 /* NANDFC buffer 0 is used for page read/write */
505 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
506
507 writew(ops, NFC_V1_V2_CONFIG2);
508
509 /* Wait for operation to complete */
510 wait_op_done(host, true);
511}
512
513static void send_page_v1(struct mtd_info *mtd, unsigned int ops)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200514{
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200515 struct nand_chip *nand_chip = mtd->priv;
516 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200517 int bufs, i;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200518
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200519 if (mtd->writesize > 512)
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200520 bufs = 4;
521 else
522 bufs = 1;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200523
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200524 for (i = 0; i < bufs; i++) {
525
526 /* NANDFC buffer 0 is used for page read/write */
Baruch Siachd178e3e2011-03-14 09:01:56 +0200527 writew((host->active_cs << 4) | i, NFC_V1_V2_BUF_ADDR);
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200528
Sascha Hauer1bc99182010-08-06 15:53:08 +0200529 writew(ops, NFC_V1_V2_CONFIG2);
Sascha Hauerc5d23f12009-06-04 17:25:53 +0200530
531 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200532 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200533 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200534}
535
Sascha Hauer71ec5152010-08-06 15:53:11 +0200536static void send_read_id_v3(struct mxc_nand_host *host)
537{
538 /* Read ID into main buffer */
539 writel(NFC_ID, NFC_V3_LAUNCH);
540
541 wait_op_done(host, true);
542
Sascha Hauer096bcc22012-05-29 10:16:09 +0200543 memcpy32_fromio(host->data_buf, host->main_area0, 16);
Sascha Hauer71ec5152010-08-06 15:53:11 +0200544}
545
Sascha Hauer34f6e152008-09-02 17:16:59 +0200546/* Request the NANDFC to perform a read of the NAND device ID. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200547static void send_read_id_v1_v2(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200548{
549 struct nand_chip *this = &host->nand;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200550
551 /* NANDFC buffer 0 is used for device ID output */
Baruch Siachd178e3e2011-03-14 09:01:56 +0200552 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200553
Sascha Hauer1bc99182010-08-06 15:53:08 +0200554 writew(NFC_ID, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200555
556 /* Wait for operation to complete */
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200557 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200558
Sascha Hauer096bcc22012-05-29 10:16:09 +0200559 memcpy32_fromio(host->data_buf, host->main_area0, 16);
John Ognessf7b66e52010-06-18 18:59:47 +0200560
561 if (this->options & NAND_BUSWIDTH_16) {
562 /* compress the ID info */
563 host->data_buf[1] = host->data_buf[2];
564 host->data_buf[2] = host->data_buf[4];
565 host->data_buf[3] = host->data_buf[6];
566 host->data_buf[4] = host->data_buf[8];
567 host->data_buf[5] = host->data_buf[10];
568 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200569}
570
Sascha Hauer71ec5152010-08-06 15:53:11 +0200571static uint16_t get_dev_status_v3(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200572{
Sascha Hauer71ec5152010-08-06 15:53:11 +0200573 writew(NFC_STATUS, NFC_V3_LAUNCH);
Sascha Hauerc110eaf2009-10-21 16:01:02 +0200574 wait_op_done(host, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200575
Sascha Hauer71ec5152010-08-06 15:53:11 +0200576 return readl(NFC_V3_CONFIG1) >> 16;
577}
578
Sascha Hauer34f6e152008-09-02 17:16:59 +0200579/* This function requests the NANDFC to perform a read of the
580 * NAND device status and returns the current status. */
Sascha Hauer5f973042010-08-06 15:53:06 +0200581static uint16_t get_dev_status_v1_v2(struct mxc_nand_host *host)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200582{
Sascha Hauerc29c6072010-08-06 15:53:05 +0200583 void __iomem *main_buf = host->main_area0;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200584 uint32_t store;
585 uint16_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200586
Baruch Siachd178e3e2011-03-14 09:01:56 +0200587 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
Sascha Hauerc29c6072010-08-06 15:53:05 +0200588
589 /*
590 * The device status is stored in main_area0. To
591 * prevent corruption of the buffer save the value
592 * and restore it afterwards.
593 */
Sascha Hauer34f6e152008-09-02 17:16:59 +0200594 store = readl(main_buf);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200595
Sascha Hauer1bc99182010-08-06 15:53:08 +0200596 writew(NFC_STATUS, NFC_V1_V2_CONFIG2);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200597 wait_op_done(host, true);
598
Sascha Hauer34f6e152008-09-02 17:16:59 +0200599 ret = readw(main_buf);
Sascha Hauerc29c6072010-08-06 15:53:05 +0200600
Sascha Hauer34f6e152008-09-02 17:16:59 +0200601 writel(store, main_buf);
602
603 return ret;
604}
605
606/* This functions is used by upper layer to checks if device is ready */
607static int mxc_nand_dev_ready(struct mtd_info *mtd)
608{
609 /*
610 * NFC handles R/B internally. Therefore, this function
611 * always returns status as ready.
612 */
613 return 1;
614}
615
616static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode)
617{
618 /*
619 * If HW ECC is enabled, we turn it on during init. There is
620 * no need to enable again here.
621 */
622}
623
Sascha Hauer94f77e52010-08-06 15:53:09 +0200624static int mxc_nand_correct_data_v1(struct mtd_info *mtd, u_char *dat,
Sascha Hauer34f6e152008-09-02 17:16:59 +0200625 u_char *read_ecc, u_char *calc_ecc)
626{
627 struct nand_chip *nand_chip = mtd->priv;
628 struct mxc_nand_host *host = nand_chip->priv;
629
630 /*
631 * 1-Bit errors are automatically corrected in HW. No need for
632 * additional correction. 2-Bit errors cannot be corrected by
633 * HW ECC, so we need to return failure
634 */
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200635 uint16_t ecc_status = get_ecc_status_v1(host);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200636
637 if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) {
Brian Norris289c0522011-07-19 10:06:09 -0700638 pr_debug("MXC_NAND: HWECC uncorrectable 2-bit ECC error\n");
Sascha Hauer34f6e152008-09-02 17:16:59 +0200639 return -1;
640 }
641
642 return 0;
643}
644
Sascha Hauer94f77e52010-08-06 15:53:09 +0200645static int mxc_nand_correct_data_v2_v3(struct mtd_info *mtd, u_char *dat,
646 u_char *read_ecc, u_char *calc_ecc)
647{
648 struct nand_chip *nand_chip = mtd->priv;
649 struct mxc_nand_host *host = nand_chip->priv;
650 u32 ecc_stat, err;
651 int no_subpages = 1;
652 int ret = 0;
653 u8 ecc_bit_mask, err_limit;
654
655 ecc_bit_mask = (host->eccsize == 4) ? 0x7 : 0xf;
656 err_limit = (host->eccsize == 4) ? 0x4 : 0x8;
657
658 no_subpages = mtd->writesize >> 9;
659
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200660 ecc_stat = host->devtype_data->get_ecc_status(host);
Sascha Hauer94f77e52010-08-06 15:53:09 +0200661
662 do {
663 err = ecc_stat & ecc_bit_mask;
664 if (err > err_limit) {
665 printk(KERN_WARNING "UnCorrectable RS-ECC Error\n");
666 return -1;
667 } else {
668 ret += err;
669 }
670 ecc_stat >>= 4;
671 } while (--no_subpages);
672
673 mtd->ecc_stats.corrected += ret;
674 pr_debug("%d Symbol Correctable RS-ECC Error\n", ret);
675
676 return ret;
677}
678
Sascha Hauer34f6e152008-09-02 17:16:59 +0200679static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
680 u_char *ecc_code)
681{
682 return 0;
683}
684
685static u_char mxc_nand_read_byte(struct mtd_info *mtd)
686{
687 struct nand_chip *nand_chip = mtd->priv;
688 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200689 uint8_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200690
691 /* Check for status request */
692 if (host->status_request)
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200693 return host->devtype_data->get_dev_status(host) & 0xFF;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200694
Sascha Hauerf8f96082009-06-04 17:12:26 +0200695 ret = *(uint8_t *)(host->data_buf + host->buf_start);
696 host->buf_start++;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200697
698 return ret;
699}
700
701static uint16_t mxc_nand_read_word(struct mtd_info *mtd)
702{
703 struct nand_chip *nand_chip = mtd->priv;
704 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200705 uint16_t ret;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200706
Sascha Hauerf8f96082009-06-04 17:12:26 +0200707 ret = *(uint16_t *)(host->data_buf + host->buf_start);
708 host->buf_start += 2;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200709
710 return ret;
711}
712
713/* Write data of length len to buffer buf. The data to be
714 * written on NAND Flash is first copied to RAMbuffer. After the Data Input
715 * Operation by the NFC, the data is written to NAND Flash */
716static void mxc_nand_write_buf(struct mtd_info *mtd,
717 const u_char *buf, int len)
718{
719 struct nand_chip *nand_chip = mtd->priv;
720 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200721 u16 col = host->buf_start;
722 int n = mtd->oobsize + mtd->writesize - col;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200723
Sascha Hauerf8f96082009-06-04 17:12:26 +0200724 n = min(n, len);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200725
Sascha Hauerf8f96082009-06-04 17:12:26 +0200726 memcpy(host->data_buf + col, buf, n);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200727
Sascha Hauerf8f96082009-06-04 17:12:26 +0200728 host->buf_start += n;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200729}
730
731/* Read the data buffer from the NAND Flash. To read the data from NAND
732 * Flash first the data output cycle is initiated by the NFC, which copies
733 * the data to RAMbuffer. This data of length len is then copied to buffer buf.
734 */
735static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
736{
737 struct nand_chip *nand_chip = mtd->priv;
738 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200739 u16 col = host->buf_start;
740 int n = mtd->oobsize + mtd->writesize - col;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200741
Sascha Hauerf8f96082009-06-04 17:12:26 +0200742 n = min(n, len);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200743
Baruch Siach5d9d9932011-03-02 16:47:55 +0200744 memcpy(buf, host->data_buf + col, n);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200745
Baruch Siach5d9d9932011-03-02 16:47:55 +0200746 host->buf_start += n;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200747}
748
749/* Used by the upper layer to verify the data in NAND Flash
750 * with the data in the buf. */
751static int mxc_nand_verify_buf(struct mtd_info *mtd,
752 const u_char *buf, int len)
753{
754 return -EFAULT;
755}
756
757/* This function is used by upper layer for select and
758 * deselect of the NAND chip */
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +0200759static void mxc_nand_select_chip_v1_v3(struct mtd_info *mtd, int chip)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200760{
761 struct nand_chip *nand_chip = mtd->priv;
762 struct mxc_nand_host *host = nand_chip->priv;
763
Baruch Siachd178e3e2011-03-14 09:01:56 +0200764 if (chip == -1) {
Sascha Hauer34f6e152008-09-02 17:16:59 +0200765 /* Disable the NFC clock */
766 if (host->clk_act) {
Sascha Hauer97c32132012-03-07 20:56:35 +0100767 clk_disable_unprepare(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200768 host->clk_act = 0;
769 }
Baruch Siachd178e3e2011-03-14 09:01:56 +0200770 return;
771 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200772
Baruch Siachd178e3e2011-03-14 09:01:56 +0200773 if (!host->clk_act) {
774 /* Enable the NFC clock */
Sascha Hauer97c32132012-03-07 20:56:35 +0100775 clk_prepare_enable(host->clk);
Baruch Siachd178e3e2011-03-14 09:01:56 +0200776 host->clk_act = 1;
777 }
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +0200778}
Baruch Siachd178e3e2011-03-14 09:01:56 +0200779
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +0200780static void mxc_nand_select_chip_v2(struct mtd_info *mtd, int chip)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200781{
782 struct nand_chip *nand_chip = mtd->priv;
783 struct mxc_nand_host *host = nand_chip->priv;
784
785 if (chip == -1) {
786 /* Disable the NFC clock */
787 if (host->clk_act) {
Fabio Estevam3d059692012-05-25 20:14:50 -0300788 clk_disable_unprepare(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200789 host->clk_act = 0;
790 }
791 return;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200792 }
Sascha Hauer34f6e152008-09-02 17:16:59 +0200793
794 if (!host->clk_act) {
795 /* Enable the NFC clock */
Fabio Estevam3d059692012-05-25 20:14:50 -0300796 clk_prepare_enable(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200797 host->clk_act = 1;
798 }
799
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +0200800 host->active_cs = chip;
801 writew(host->active_cs << 4, NFC_V1_V2_BUF_ADDR);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200802}
803
Sascha Hauerf8f96082009-06-04 17:12:26 +0200804/*
805 * Function to transfer data to/from spare area.
806 */
807static void copy_spare(struct mtd_info *mtd, bool bfrom)
808{
809 struct nand_chip *this = mtd->priv;
810 struct mxc_nand_host *host = this->priv;
811 u16 i, j;
812 u16 n = mtd->writesize >> 9;
813 u8 *d = host->data_buf + mtd->writesize;
Uwe Kleine-König4b6f05e2012-04-24 10:05:22 +0200814 u8 __iomem *s = host->spare0;
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200815 u16 t = host->devtype_data->spare_len;
Sascha Hauerf8f96082009-06-04 17:12:26 +0200816
817 j = (mtd->oobsize / n >> 1) << 1;
818
819 if (bfrom) {
820 for (i = 0; i < n - 1; i++)
Sascha Hauer096bcc22012-05-29 10:16:09 +0200821 memcpy32_fromio(d + i * j, s + i * t, j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200822
823 /* the last section */
Sascha Hauer096bcc22012-05-29 10:16:09 +0200824 memcpy32_fromio(d + i * j, s + i * t, mtd->oobsize - i * j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200825 } else {
826 for (i = 0; i < n - 1; i++)
Sascha Hauer096bcc22012-05-29 10:16:09 +0200827 memcpy32_toio(&s[i * t], &d[i * j], j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200828
829 /* the last section */
Sascha Hauer096bcc22012-05-29 10:16:09 +0200830 memcpy32_toio(&s[i * t], &d[i * j], mtd->oobsize - i * j);
Sascha Hauerf8f96082009-06-04 17:12:26 +0200831 }
832}
833
Sascha Hauera3e65b62009-06-02 11:47:59 +0200834static void mxc_do_addr_cycle(struct mtd_info *mtd, int column, int page_addr)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200835{
836 struct nand_chip *nand_chip = mtd->priv;
837 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauer34f6e152008-09-02 17:16:59 +0200838
839 /* Write out column address, if necessary */
840 if (column != -1) {
841 /*
842 * MXC NANDFC can only perform full page+spare or
843 * spare-only read/write. When the upper layers
Gilles Espinasse177b2412011-01-09 08:59:49 +0100844 * perform a read/write buf operation, the saved column
845 * address is used to index into the full page.
Sascha Hauer34f6e152008-09-02 17:16:59 +0200846 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200847 host->devtype_data->send_addr(host, 0, page_addr == -1);
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200848 if (mtd->writesize > 512)
Sascha Hauer34f6e152008-09-02 17:16:59 +0200849 /* another col addr cycle for 2k page */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200850 host->devtype_data->send_addr(host, 0, false);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200851 }
852
853 /* Write out page address, if necessary */
854 if (page_addr != -1) {
855 /* paddr_0 - p_addr_7 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200856 host->devtype_data->send_addr(host, (page_addr & 0xff), false);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200857
Sascha Hauer2d69c7f2009-10-05 11:24:02 +0200858 if (mtd->writesize > 512) {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400859 if (mtd->size >= 0x10000000) {
860 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200861 host->devtype_data->send_addr(host,
862 (page_addr >> 8) & 0xff,
863 false);
864 host->devtype_data->send_addr(host,
865 (page_addr >> 16) & 0xff,
866 true);
Vladimir Barinovbd3fd622009-05-25 13:06:17 +0400867 } else
868 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200869 host->devtype_data->send_addr(host,
870 (page_addr >> 8) & 0xff, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200871 } else {
872 /* One more address cycle for higher density devices */
873 if (mtd->size >= 0x4000000) {
874 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200875 host->devtype_data->send_addr(host,
876 (page_addr >> 8) & 0xff,
877 false);
878 host->devtype_data->send_addr(host,
879 (page_addr >> 16) & 0xff,
880 true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200881 } else
882 /* paddr_8 - paddr_15 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +0200883 host->devtype_data->send_addr(host,
884 (page_addr >> 8) & 0xff, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +0200885 }
886 }
Sascha Hauera3e65b62009-06-02 11:47:59 +0200887}
Sascha Hauer34f6e152008-09-02 17:16:59 +0200888
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200889/*
890 * v2 and v3 type controllers can do 4bit or 8bit ecc depending
891 * on how much oob the nand chip has. For 8bit ecc we need at least
892 * 26 bytes of oob data per 512 byte block.
893 */
894static int get_eccsize(struct mtd_info *mtd)
895{
896 int oobbytes_per_512 = 0;
897
898 oobbytes_per_512 = mtd->oobsize * 512 / mtd->writesize;
899
900 if (oobbytes_per_512 < 26)
901 return 4;
902 else
903 return 8;
904}
905
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200906static void preset_v1(struct mtd_info *mtd)
Ivo Claryssed4840182010-04-08 16:14:44 +0200907{
908 struct nand_chip *nand_chip = mtd->priv;
909 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200910 uint16_t config1 = 0;
Ivo Claryssed4840182010-04-08 16:14:44 +0200911
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200912 if (nand_chip->ecc.mode == NAND_ECC_HW)
913 config1 |= NFC_V1_V2_CONFIG1_ECC_EN;
914
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200915 if (!host->devtype_data->irqpending_quirk)
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200916 config1 |= NFC_V1_V2_CONFIG1_INT_MSK;
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200917
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200918 host->eccsize = 1;
919
920 writew(config1, NFC_V1_V2_CONFIG1);
921 /* preset operation */
922
923 /* Unlock the internal RAM Buffer */
924 writew(0x2, NFC_V1_V2_CONFIG);
925
926 /* Blocks to be unlocked */
927 writew(0x0, NFC_V1_UNLOCKSTART_BLKADDR);
928 writew(0xffff, NFC_V1_UNLOCKEND_BLKADDR);
929
930 /* Unlock Block Command for given address range */
931 writew(0x4, NFC_V1_V2_WRPROT);
932}
933
934static void preset_v2(struct mtd_info *mtd)
935{
936 struct nand_chip *nand_chip = mtd->priv;
937 struct mxc_nand_host *host = nand_chip->priv;
938 uint16_t config1 = 0;
939
940 if (nand_chip->ecc.mode == NAND_ECC_HW)
941 config1 |= NFC_V1_V2_CONFIG1_ECC_EN;
942
943 config1 |= NFC_V2_CONFIG1_FP_INT;
Ivo Claryssed4840182010-04-08 16:14:44 +0200944
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +0200945 if (!host->devtype_data->irqpending_quirk)
Ivo Claryssed4840182010-04-08 16:14:44 +0200946 config1 |= NFC_V1_V2_CONFIG1_INT_MSK;
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200947
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200948 if (mtd->writesize) {
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200949 uint16_t pages_per_block = mtd->erasesize / mtd->writesize;
950
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200951 host->eccsize = get_eccsize(mtd);
952 if (host->eccsize == 4)
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200953 config1 |= NFC_V2_CONFIG1_ECC_MODE_4;
954
955 config1 |= NFC_V2_CONFIG1_PPB(ffs(pages_per_block) - 6);
Sascha Hauer6e85dfd2010-08-06 15:53:10 +0200956 } else {
957 host->eccsize = 1;
958 }
959
Sascha Hauerb8db2f52010-08-09 15:04:19 +0200960 writew(config1, NFC_V1_V2_CONFIG1);
Ivo Claryssed4840182010-04-08 16:14:44 +0200961 /* preset operation */
962
963 /* Unlock the internal RAM Buffer */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200964 writew(0x2, NFC_V1_V2_CONFIG);
Ivo Claryssed4840182010-04-08 16:14:44 +0200965
966 /* Blocks to be unlocked */
Uwe Kleine-König6d38af22012-04-23 11:23:36 +0200967 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR0);
968 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR1);
969 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR2);
970 writew(0x0, NFC_V21_UNLOCKSTART_BLKADDR3);
971 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR0);
972 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR1);
973 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR2);
974 writew(0xffff, NFC_V21_UNLOCKEND_BLKADDR3);
Ivo Claryssed4840182010-04-08 16:14:44 +0200975
976 /* Unlock Block Command for given address range */
Sascha Hauer1bc99182010-08-06 15:53:08 +0200977 writew(0x4, NFC_V1_V2_WRPROT);
Ivo Claryssed4840182010-04-08 16:14:44 +0200978}
979
Sascha Hauer71ec5152010-08-06 15:53:11 +0200980static void preset_v3(struct mtd_info *mtd)
981{
982 struct nand_chip *chip = mtd->priv;
983 struct mxc_nand_host *host = chip->priv;
984 uint32_t config2, config3;
985 int i, addr_phases;
986
987 writel(NFC_V3_CONFIG1_RBA(0), NFC_V3_CONFIG1);
988 writel(NFC_V3_IPC_CREQ, NFC_V3_IPC);
989
990 /* Unlock the internal RAM Buffer */
991 writel(NFC_V3_WRPROT_BLS_UNLOCK | NFC_V3_WRPROT_UNLOCK,
992 NFC_V3_WRPROT);
993
994 /* Blocks to be unlocked */
995 for (i = 0; i < NAND_MAX_CHIPS; i++)
996 writel(0x0 | (0xffff << 16),
997 NFC_V3_WRPROT_UNLOCK_BLK_ADD0 + (i << 2));
998
999 writel(0, NFC_V3_IPC);
1000
1001 config2 = NFC_V3_CONFIG2_ONE_CYCLE |
1002 NFC_V3_CONFIG2_2CMD_PHASES |
1003 NFC_V3_CONFIG2_SPAS(mtd->oobsize >> 1) |
1004 NFC_V3_CONFIG2_ST_CMD(0x70) |
Sascha Hauer63f14742010-10-18 10:16:26 +02001005 NFC_V3_CONFIG2_INT_MSK |
Sascha Hauer71ec5152010-08-06 15:53:11 +02001006 NFC_V3_CONFIG2_NUM_ADDR_PHASE0;
1007
1008 if (chip->ecc.mode == NAND_ECC_HW)
1009 config2 |= NFC_V3_CONFIG2_ECC_EN;
1010
1011 addr_phases = fls(chip->pagemask) >> 3;
1012
1013 if (mtd->writesize == 2048) {
1014 config2 |= NFC_V3_CONFIG2_PS_2048;
1015 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases);
1016 } else if (mtd->writesize == 4096) {
1017 config2 |= NFC_V3_CONFIG2_PS_4096;
1018 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases);
1019 } else {
1020 config2 |= NFC_V3_CONFIG2_PS_512;
1021 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases - 1);
1022 }
1023
1024 if (mtd->writesize) {
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001025 config2 |= NFC_V3_CONFIG2_PPB(
1026 ffs(mtd->erasesize / mtd->writesize) - 6,
1027 host->devtype_data->ppb_shift);
Sascha Hauer71ec5152010-08-06 15:53:11 +02001028 host->eccsize = get_eccsize(mtd);
1029 if (host->eccsize == 8)
1030 config2 |= NFC_V3_CONFIG2_ECC_MODE_8;
1031 }
1032
1033 writel(config2, NFC_V3_CONFIG2);
1034
1035 config3 = NFC_V3_CONFIG3_NUM_OF_DEVICES(0) |
1036 NFC_V3_CONFIG3_NO_SDMA |
1037 NFC_V3_CONFIG3_RBB_MODE |
1038 NFC_V3_CONFIG3_SBB(6) | /* Reset default */
1039 NFC_V3_CONFIG3_ADD_OP(0);
1040
1041 if (!(chip->options & NAND_BUSWIDTH_16))
1042 config3 |= NFC_V3_CONFIG3_FW8;
1043
1044 writel(config3, NFC_V3_CONFIG3);
1045
1046 writel(0, NFC_V3_DELAY_LINE);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001047}
1048
Sascha Hauer34f6e152008-09-02 17:16:59 +02001049/* Used by the upper layer to write command to NAND Flash for
1050 * different operations to be carried out on NAND Flash */
1051static void mxc_nand_command(struct mtd_info *mtd, unsigned command,
1052 int column, int page_addr)
1053{
1054 struct nand_chip *nand_chip = mtd->priv;
1055 struct mxc_nand_host *host = nand_chip->priv;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001056
Brian Norris289c0522011-07-19 10:06:09 -07001057 pr_debug("mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n",
Sascha Hauer34f6e152008-09-02 17:16:59 +02001058 command, column, page_addr);
1059
1060 /* Reset command state information */
1061 host->status_request = false;
1062
1063 /* Command pre-processing step */
Sascha Hauer34f6e152008-09-02 17:16:59 +02001064 switch (command) {
Ivo Claryssed4840182010-04-08 16:14:44 +02001065 case NAND_CMD_RESET:
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001066 host->devtype_data->preset(mtd);
1067 host->devtype_data->send_cmd(host, command, false);
Ivo Claryssed4840182010-04-08 16:14:44 +02001068 break;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001069
Sascha Hauer34f6e152008-09-02 17:16:59 +02001070 case NAND_CMD_STATUS:
Sascha Hauerf8f96082009-06-04 17:12:26 +02001071 host->buf_start = 0;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001072 host->status_request = true;
Sascha Hauer89121a62009-06-04 17:18:01 +02001073
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001074 host->devtype_data->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +02001075 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001076 break;
1077
Sascha Hauer34f6e152008-09-02 17:16:59 +02001078 case NAND_CMD_READ0:
Sascha Hauer34f6e152008-09-02 17:16:59 +02001079 case NAND_CMD_READOOB:
Sascha Hauer89121a62009-06-04 17:18:01 +02001080 if (command == NAND_CMD_READ0)
1081 host->buf_start = column;
1082 else
1083 host->buf_start = column + mtd->writesize;
Sascha Hauerf8f96082009-06-04 17:12:26 +02001084
Sascha Hauer5ea32022010-04-27 15:24:01 +02001085 command = NAND_CMD_READ0; /* only READ0 is valid */
Sascha Hauer89121a62009-06-04 17:18:01 +02001086
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001087 host->devtype_data->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +02001088 mxc_do_addr_cycle(mtd, column, page_addr);
1089
Sascha Hauer2d69c7f2009-10-05 11:24:02 +02001090 if (mtd->writesize > 512)
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001091 host->devtype_data->send_cmd(host,
1092 NAND_CMD_READSTART, true);
Sascha Hauerc5d23f12009-06-04 17:25:53 +02001093
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001094 host->devtype_data->send_page(mtd, NFC_OUTPUT);
Sascha Hauer89121a62009-06-04 17:18:01 +02001095
Sascha Hauer096bcc22012-05-29 10:16:09 +02001096 memcpy32_fromio(host->data_buf, host->main_area0,
1097 mtd->writesize);
Sascha Hauer89121a62009-06-04 17:18:01 +02001098 copy_spare(mtd, true);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001099 break;
1100
Sascha Hauer34f6e152008-09-02 17:16:59 +02001101 case NAND_CMD_SEQIN:
Sascha Hauer5ea32022010-04-27 15:24:01 +02001102 if (column >= mtd->writesize)
1103 /* call ourself to read a page */
1104 mxc_nand_command(mtd, NAND_CMD_READ0, 0, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001105
Sascha Hauer5ea32022010-04-27 15:24:01 +02001106 host->buf_start = column;
Sascha Hauer89121a62009-06-04 17:18:01 +02001107
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001108 host->devtype_data->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +02001109 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001110 break;
1111
1112 case NAND_CMD_PAGEPROG:
Sascha Hauer096bcc22012-05-29 10:16:09 +02001113 memcpy32_toio(host->main_area0, host->data_buf, mtd->writesize);
Sascha Hauerf8f96082009-06-04 17:12:26 +02001114 copy_spare(mtd, false);
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001115 host->devtype_data->send_page(mtd, NFC_INPUT);
1116 host->devtype_data->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +02001117 mxc_do_addr_cycle(mtd, column, page_addr);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001118 break;
1119
Sascha Hauer34f6e152008-09-02 17:16:59 +02001120 case NAND_CMD_READID:
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001121 host->devtype_data->send_cmd(host, command, true);
Sascha Hauer89121a62009-06-04 17:18:01 +02001122 mxc_do_addr_cycle(mtd, column, page_addr);
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001123 host->devtype_data->send_read_id(host);
Sascha Hauer94671142009-10-05 12:14:21 +02001124 host->buf_start = column;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001125 break;
1126
Sascha Hauer89121a62009-06-04 17:18:01 +02001127 case NAND_CMD_ERASE1:
Sascha Hauer34f6e152008-09-02 17:16:59 +02001128 case NAND_CMD_ERASE2:
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001129 host->devtype_data->send_cmd(host, command, false);
Sascha Hauer89121a62009-06-04 17:18:01 +02001130 mxc_do_addr_cycle(mtd, column, page_addr);
1131
Sascha Hauer34f6e152008-09-02 17:16:59 +02001132 break;
1133 }
1134}
1135
Sascha Hauerf1372052009-10-21 14:25:27 +02001136/*
1137 * The generic flash bbt decriptors overlap with our ecc
1138 * hardware, so define some i.MX specific ones.
1139 */
1140static uint8_t bbt_pattern[] = { 'B', 'b', 't', '0' };
1141static uint8_t mirror_pattern[] = { '1', 't', 'b', 'B' };
1142
1143static struct nand_bbt_descr bbt_main_descr = {
1144 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1145 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1146 .offs = 0,
1147 .len = 4,
1148 .veroffs = 4,
1149 .maxblocks = 4,
1150 .pattern = bbt_pattern,
1151};
1152
1153static struct nand_bbt_descr bbt_mirror_descr = {
1154 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1155 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1156 .offs = 0,
1157 .len = 4,
1158 .veroffs = 4,
1159 .maxblocks = 4,
1160 .pattern = mirror_pattern,
1161};
1162
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001163/* v1 + irqpending_quirk: i.MX21 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001164static const struct mxc_nand_devtype_data imx21_nand_devtype_data = {
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001165 .preset = preset_v1,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001166 .send_cmd = send_cmd_v1_v2,
1167 .send_addr = send_addr_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001168 .send_page = send_page_v1,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001169 .send_read_id = send_read_id_v1_v2,
1170 .get_dev_status = get_dev_status_v1_v2,
1171 .check_int = check_int_v1_v2,
1172 .irq_control = irq_control_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001173 .get_ecc_status = get_ecc_status_v1,
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001174 .ecclayout_512 = &nandv1_hw_eccoob_smallpage,
1175 .ecclayout_2k = &nandv1_hw_eccoob_largepage,
1176 .ecclayout_4k = &nandv1_hw_eccoob_smallpage, /* XXX: needs fix */
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +02001177 .select_chip = mxc_nand_select_chip_v1_v3,
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001178 .correct_data = mxc_nand_correct_data_v1,
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001179 .irqpending_quirk = 1,
1180 .needs_ip = 0,
1181 .regs_offset = 0xe00,
1182 .spare0_offset = 0x800,
1183 .spare_len = 16,
1184 .eccbytes = 3,
1185 .eccsize = 1,
1186};
1187
1188/* v1 + !irqpending_quirk: i.MX27, i.MX31 */
1189static const struct mxc_nand_devtype_data imx27_nand_devtype_data = {
1190 .preset = preset_v1,
1191 .send_cmd = send_cmd_v1_v2,
1192 .send_addr = send_addr_v1_v2,
1193 .send_page = send_page_v1,
1194 .send_read_id = send_read_id_v1_v2,
1195 .get_dev_status = get_dev_status_v1_v2,
1196 .check_int = check_int_v1_v2,
1197 .irq_control = irq_control_v1_v2,
1198 .get_ecc_status = get_ecc_status_v1,
1199 .ecclayout_512 = &nandv1_hw_eccoob_smallpage,
1200 .ecclayout_2k = &nandv1_hw_eccoob_largepage,
1201 .ecclayout_4k = &nandv1_hw_eccoob_smallpage, /* XXX: needs fix */
1202 .select_chip = mxc_nand_select_chip_v1_v3,
1203 .correct_data = mxc_nand_correct_data_v1,
1204 .irqpending_quirk = 0,
1205 .needs_ip = 0,
1206 .regs_offset = 0xe00,
1207 .spare0_offset = 0x800,
1208 .axi_offset = 0,
1209 .spare_len = 16,
1210 .eccbytes = 3,
1211 .eccsize = 1,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001212};
1213
1214/* v21: i.MX25, i.MX35 */
1215static const struct mxc_nand_devtype_data imx25_nand_devtype_data = {
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001216 .preset = preset_v2,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001217 .send_cmd = send_cmd_v1_v2,
1218 .send_addr = send_addr_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001219 .send_page = send_page_v2,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001220 .send_read_id = send_read_id_v1_v2,
1221 .get_dev_status = get_dev_status_v1_v2,
1222 .check_int = check_int_v1_v2,
1223 .irq_control = irq_control_v1_v2,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001224 .get_ecc_status = get_ecc_status_v2,
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001225 .ecclayout_512 = &nandv2_hw_eccoob_smallpage,
1226 .ecclayout_2k = &nandv2_hw_eccoob_largepage,
1227 .ecclayout_4k = &nandv2_hw_eccoob_4k,
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +02001228 .select_chip = mxc_nand_select_chip_v2,
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001229 .correct_data = mxc_nand_correct_data_v2_v3,
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001230 .irqpending_quirk = 0,
1231 .needs_ip = 0,
1232 .regs_offset = 0x1e00,
1233 .spare0_offset = 0x1000,
1234 .axi_offset = 0,
1235 .spare_len = 64,
1236 .eccbytes = 9,
1237 .eccsize = 0,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001238};
1239
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001240/* v3.2a: i.MX51 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001241static const struct mxc_nand_devtype_data imx51_nand_devtype_data = {
1242 .preset = preset_v3,
1243 .send_cmd = send_cmd_v3,
1244 .send_addr = send_addr_v3,
1245 .send_page = send_page_v3,
1246 .send_read_id = send_read_id_v3,
1247 .get_dev_status = get_dev_status_v3,
1248 .check_int = check_int_v3,
1249 .irq_control = irq_control_v3,
Uwe Kleine-König6d38af22012-04-23 11:23:36 +02001250 .get_ecc_status = get_ecc_status_v3,
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001251 .ecclayout_512 = &nandv2_hw_eccoob_smallpage,
1252 .ecclayout_2k = &nandv2_hw_eccoob_largepage,
1253 .ecclayout_4k = &nandv2_hw_eccoob_smallpage, /* XXX: needs fix */
Uwe Kleine-König5e05a2d62012-04-23 11:23:38 +02001254 .select_chip = mxc_nand_select_chip_v1_v3,
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001255 .correct_data = mxc_nand_correct_data_v2_v3,
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001256 .irqpending_quirk = 0,
1257 .needs_ip = 1,
1258 .regs_offset = 0,
1259 .spare0_offset = 0x1000,
1260 .axi_offset = 0x1e00,
1261 .spare_len = 64,
1262 .eccbytes = 0,
1263 .eccsize = 0,
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001264 .ppb_shift = 7,
1265};
1266
1267/* v3.2b: i.MX53 */
1268static const struct mxc_nand_devtype_data imx53_nand_devtype_data = {
1269 .preset = preset_v3,
1270 .send_cmd = send_cmd_v3,
1271 .send_addr = send_addr_v3,
1272 .send_page = send_page_v3,
1273 .send_read_id = send_read_id_v3,
1274 .get_dev_status = get_dev_status_v3,
1275 .check_int = check_int_v3,
1276 .irq_control = irq_control_v3,
1277 .get_ecc_status = get_ecc_status_v3,
1278 .ecclayout_512 = &nandv2_hw_eccoob_smallpage,
1279 .ecclayout_2k = &nandv2_hw_eccoob_largepage,
1280 .ecclayout_4k = &nandv2_hw_eccoob_smallpage, /* XXX: needs fix */
1281 .select_chip = mxc_nand_select_chip_v1_v3,
1282 .correct_data = mxc_nand_correct_data_v2_v3,
1283 .irqpending_quirk = 0,
1284 .needs_ip = 1,
1285 .regs_offset = 0,
1286 .spare0_offset = 0x1000,
1287 .axi_offset = 0x1e00,
1288 .spare_len = 64,
1289 .eccbytes = 0,
1290 .eccsize = 0,
1291 .ppb_shift = 8,
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001292};
1293
Uwe Kleine-König64363562012-04-23 11:23:41 +02001294#ifdef CONFIG_OF_MTD
1295static const struct of_device_id mxcnd_dt_ids[] = {
1296 {
1297 .compatible = "fsl,imx21-nand",
1298 .data = &imx21_nand_devtype_data,
1299 }, {
1300 .compatible = "fsl,imx27-nand",
1301 .data = &imx27_nand_devtype_data,
1302 }, {
1303 .compatible = "fsl,imx25-nand",
1304 .data = &imx25_nand_devtype_data,
1305 }, {
1306 .compatible = "fsl,imx51-nand",
1307 .data = &imx51_nand_devtype_data,
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001308 }, {
1309 .compatible = "fsl,imx53-nand",
1310 .data = &imx53_nand_devtype_data,
Uwe Kleine-König64363562012-04-23 11:23:41 +02001311 },
1312 { /* sentinel */ }
1313};
1314
1315static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
1316{
1317 struct device_node *np = host->dev->of_node;
1318 struct mxc_nand_platform_data *pdata = &host->pdata;
1319 const struct of_device_id *of_id =
1320 of_match_device(mxcnd_dt_ids, host->dev);
1321 int buswidth;
1322
1323 if (!np)
1324 return 1;
1325
1326 if (of_get_nand_ecc_mode(np) >= 0)
1327 pdata->hw_ecc = 1;
1328
1329 pdata->flash_bbt = of_get_nand_on_flash_bbt(np);
1330
1331 buswidth = of_get_nand_bus_width(np);
1332 if (buswidth < 0)
1333 return buswidth;
1334
1335 pdata->width = buswidth / 8;
1336
1337 host->devtype_data = of_id->data;
1338
1339 return 0;
1340}
1341#else
1342static int __init mxcnd_probe_dt(struct mxc_nand_host *host)
1343{
1344 return 1;
1345}
1346#endif
1347
1348static int __init mxcnd_probe_pdata(struct mxc_nand_host *host)
1349{
1350 struct mxc_nand_platform_data *pdata = host->dev->platform_data;
1351
1352 if (!pdata)
1353 return -ENODEV;
1354
1355 host->pdata = *pdata;
1356
1357 if (nfc_is_v1()) {
1358 if (cpu_is_mx21())
1359 host->devtype_data = &imx21_nand_devtype_data;
1360 else
1361 host->devtype_data = &imx27_nand_devtype_data;
1362 } else if (nfc_is_v21()) {
1363 host->devtype_data = &imx25_nand_devtype_data;
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001364 } else if (nfc_is_v3_2a()) {
Uwe Kleine-König64363562012-04-23 11:23:41 +02001365 host->devtype_data = &imx51_nand_devtype_data;
Sascha Hauer71718a8e2012-06-06 12:33:15 +02001366 } else if (nfc_is_v3_2b()) {
1367 host->devtype_data = &imx53_nand_devtype_data;
Uwe Kleine-König64363562012-04-23 11:23:41 +02001368 } else
1369 BUG();
1370
1371 return 0;
1372}
1373
Sascha Hauer34f6e152008-09-02 17:16:59 +02001374static int __init mxcnd_probe(struct platform_device *pdev)
1375{
1376 struct nand_chip *this;
1377 struct mtd_info *mtd;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001378 struct mxc_nand_host *host;
1379 struct resource *res;
Dmitry Eremin-Solenikovd4ed8f12011-06-02 18:00:43 +04001380 int err = 0;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001381
1382 /* Allocate memory for MTD device structure and private data */
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001383 host = devm_kzalloc(&pdev->dev, sizeof(struct mxc_nand_host) +
1384 NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE, GFP_KERNEL);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001385 if (!host)
1386 return -ENOMEM;
1387
Sascha Hauerf8f96082009-06-04 17:12:26 +02001388 host->data_buf = (uint8_t *)(host + 1);
Sascha Hauerf8f96082009-06-04 17:12:26 +02001389
Sascha Hauer34f6e152008-09-02 17:16:59 +02001390 host->dev = &pdev->dev;
1391 /* structures must be linked */
1392 this = &host->nand;
1393 mtd = &host->mtd;
1394 mtd->priv = this;
1395 mtd->owner = THIS_MODULE;
David Brownell87f39f02009-03-26 00:42:50 -07001396 mtd->dev.parent = &pdev->dev;
Sascha Hauer1fbff0a2009-10-21 16:06:27 +02001397 mtd->name = DRIVER_NAME;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001398
1399 /* 50 us command delay time */
1400 this->chip_delay = 5;
1401
1402 this->priv = host;
1403 this->dev_ready = mxc_nand_dev_ready;
1404 this->cmdfunc = mxc_nand_command;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001405 this->read_byte = mxc_nand_read_byte;
1406 this->read_word = mxc_nand_read_word;
1407 this->write_buf = mxc_nand_write_buf;
1408 this->read_buf = mxc_nand_read_buf;
1409 this->verify_buf = mxc_nand_verify_buf;
1410
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001411 host->clk = devm_clk_get(&pdev->dev, "nfc");
1412 if (IS_ERR(host->clk))
1413 return PTR_ERR(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001414
Sascha Hauer71885b62012-06-06 12:33:14 +02001415 err = mxcnd_probe_dt(host);
1416 if (err > 0)
1417 err = mxcnd_probe_pdata(host);
1418 if (err < 0)
1419 return err;
1420
1421 if (host->devtype_data->needs_ip) {
1422 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1423 if (!res)
1424 return -ENODEV;
1425 host->regs_ip = devm_request_and_ioremap(&pdev->dev, res);
1426 if (!host->regs_ip)
1427 return -ENOMEM;
1428
1429 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1430 } else {
1431 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1432 }
1433
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001434 if (!res)
1435 return -ENODEV;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001436
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001437 host->base = devm_request_and_ioremap(&pdev->dev, res);
1438 if (!host->base)
1439 return -ENOMEM;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001440
Sascha Hauerc6de7e12009-10-05 11:14:35 +02001441 host->main_area0 = host->base;
Sascha Hauer94671142009-10-05 12:14:21 +02001442
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001443 if (host->devtype_data->regs_offset)
1444 host->regs = host->base + host->devtype_data->regs_offset;
1445 host->spare0 = host->base + host->devtype_data->spare0_offset;
1446 if (host->devtype_data->axi_offset)
1447 host->regs_axi = host->base + host->devtype_data->axi_offset;
1448
1449 this->ecc.bytes = host->devtype_data->eccbytes;
1450 host->eccsize = host->devtype_data->eccsize;
1451
1452 this->select_chip = host->devtype_data->select_chip;
1453 this->ecc.size = 512;
1454 this->ecc.layout = host->devtype_data->ecclayout_512;
1455
Uwe Kleine-König64363562012-04-23 11:23:41 +02001456 if (host->pdata.hw_ecc) {
Sascha Hauer13e1add2009-10-21 10:39:05 +02001457 this->ecc.calculate = mxc_nand_calculate_ecc;
1458 this->ecc.hwctl = mxc_nand_enable_hwecc;
Uwe Kleine-König69d023b2012-04-23 11:23:39 +02001459 this->ecc.correct = host->devtype_data->correct_data;
Sascha Hauer13e1add2009-10-21 10:39:05 +02001460 this->ecc.mode = NAND_ECC_HW;
Sascha Hauer13e1add2009-10-21 10:39:05 +02001461 } else {
1462 this->ecc.mode = NAND_ECC_SOFT;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001463 }
1464
Uwe Kleine-König64363562012-04-23 11:23:41 +02001465 /* NAND bus width determines access functions used by upper layer */
1466 if (host->pdata.width == 2)
Sascha Hauer34f6e152008-09-02 17:16:59 +02001467 this->options |= NAND_BUSWIDTH_16;
Sascha Hauer13e1add2009-10-21 10:39:05 +02001468
Uwe Kleine-König64363562012-04-23 11:23:41 +02001469 if (host->pdata.flash_bbt) {
Sascha Hauerf1372052009-10-21 14:25:27 +02001470 this->bbt_td = &bbt_main_descr;
1471 this->bbt_md = &bbt_mirror_descr;
1472 /* update flash based bbt */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001473 this->bbt_options |= NAND_BBT_USE_FLASH;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001474 }
1475
Sascha Hauer63f14742010-10-18 10:16:26 +02001476 init_completion(&host->op_completion);
Ivo Claryssed4840182010-04-08 16:14:44 +02001477
1478 host->irq = platform_get_irq(pdev, 0);
1479
Sascha Hauer63f14742010-10-18 10:16:26 +02001480 /*
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001481 * Use host->devtype_data->irq_control() here instead of irq_control()
1482 * because we must not disable_irq_nosync without having requested the
1483 * irq.
Sascha Hauer63f14742010-10-18 10:16:26 +02001484 */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001485 host->devtype_data->irq_control(host, 0);
Sascha Hauer63f14742010-10-18 10:16:26 +02001486
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001487 err = devm_request_irq(&pdev->dev, host->irq, mxc_nfc_irq,
1488 IRQF_DISABLED, DRIVER_NAME, host);
Ivo Claryssed4840182010-04-08 16:14:44 +02001489 if (err)
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001490 return err;
1491
1492 clk_prepare_enable(host->clk);
1493 host->clk_act = 1;
Ivo Claryssed4840182010-04-08 16:14:44 +02001494
Sascha Hauer63f14742010-10-18 10:16:26 +02001495 /*
Uwe Kleine-König85569582012-04-23 11:23:34 +02001496 * Now that we "own" the interrupt make sure the interrupt mask bit is
1497 * cleared on i.MX21. Otherwise we can't read the interrupt status bit
1498 * on this machine.
Sascha Hauer63f14742010-10-18 10:16:26 +02001499 */
Uwe Kleine-Königf48d0f92012-04-23 11:23:40 +02001500 if (host->devtype_data->irqpending_quirk) {
Uwe Kleine-König85569582012-04-23 11:23:34 +02001501 disable_irq_nosync(host->irq);
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001502 host->devtype_data->irq_control(host, 1);
Uwe Kleine-König85569582012-04-23 11:23:34 +02001503 }
Sascha Hauer63f14742010-10-18 10:16:26 +02001504
Vladimir Barinovbd3fd622009-05-25 13:06:17 +04001505 /* first scan to find the device and get the page size */
Baruch Siachd178e3e2011-03-14 09:01:56 +02001506 if (nand_scan_ident(mtd, nfc_is_v21() ? 4 : 1, NULL)) {
Vladimir Barinovbd3fd622009-05-25 13:06:17 +04001507 err = -ENXIO;
1508 goto escan;
1509 }
Sascha Hauer34f6e152008-09-02 17:16:59 +02001510
Sascha Hauer6e85dfd2010-08-06 15:53:10 +02001511 /* Call preset again, with correct writesize this time */
Uwe Kleine-Könige4303b22012-04-23 11:23:35 +02001512 host->devtype_data->preset(mtd);
Sascha Hauer6e85dfd2010-08-06 15:53:10 +02001513
Sascha Hauer2d69c7f2009-10-05 11:24:02 +02001514 if (mtd->writesize == 2048)
Uwe Kleine-König6dcdf992012-04-23 11:23:37 +02001515 this->ecc.layout = host->devtype_data->ecclayout_2k;
1516 else if (mtd->writesize == 4096)
1517 this->ecc.layout = host->devtype_data->ecclayout_4k;
Sascha Hauer34f6e152008-09-02 17:16:59 +02001518
Mike Dunn6a918ba2012-03-11 14:21:11 -07001519 if (this->ecc.mode == NAND_ECC_HW) {
1520 if (nfc_is_v1())
1521 this->ecc.strength = 1;
1522 else
1523 this->ecc.strength = (host->eccsize == 4) ? 4 : 8;
1524 }
1525
Sascha Hauer4a43faf2012-05-25 16:22:42 +02001526 /* second phase scan */
1527 if (nand_scan_tail(mtd)) {
1528 err = -ENXIO;
1529 goto escan;
1530 }
1531
Sascha Hauer34f6e152008-09-02 17:16:59 +02001532 /* Register the partitions */
Uwe Kleine-König64363562012-04-23 11:23:41 +02001533 mtd_device_parse_register(mtd, part_probes,
1534 &(struct mtd_part_parser_data){
1535 .of_node = pdev->dev.of_node,
1536 },
1537 host->pdata.parts,
1538 host->pdata.nr_parts);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001539
1540 platform_set_drvdata(pdev, host);
1541
1542 return 0;
1543
1544escan:
Sascha Hauere4a09cb2012-06-06 12:33:13 +02001545 clk_disable_unprepare(host->clk);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001546
1547 return err;
1548}
1549
Uwe Kleine-König51eeb872009-12-07 09:44:05 +00001550static int __devexit mxcnd_remove(struct platform_device *pdev)
Sascha Hauer34f6e152008-09-02 17:16:59 +02001551{
1552 struct mxc_nand_host *host = platform_get_drvdata(pdev);
1553
Sascha Hauer34f6e152008-09-02 17:16:59 +02001554 platform_set_drvdata(pdev, NULL);
1555
1556 nand_release(&host->mtd);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001557
1558 return 0;
1559}
1560
Sascha Hauer34f6e152008-09-02 17:16:59 +02001561static struct platform_driver mxcnd_driver = {
1562 .driver = {
1563 .name = DRIVER_NAME,
Uwe Kleine-König8d1fd162012-04-23 11:23:33 +02001564 .owner = THIS_MODULE,
Uwe Kleine-König64363562012-04-23 11:23:41 +02001565 .of_match_table = of_match_ptr(mxcnd_dt_ids),
Eric Bénard04dd0d32010-06-17 20:59:04 +02001566 },
Uwe Kleine-Königdaa0f152009-11-24 22:07:08 +01001567 .remove = __devexit_p(mxcnd_remove),
Sascha Hauer34f6e152008-09-02 17:16:59 +02001568};
1569
1570static int __init mxc_nd_init(void)
1571{
Vladimir Barinov8541c112009-04-23 15:47:22 +04001572 return platform_driver_probe(&mxcnd_driver, mxcnd_probe);
Sascha Hauer34f6e152008-09-02 17:16:59 +02001573}
1574
1575static void __exit mxc_nd_cleanup(void)
1576{
1577 /* Unregister the device structure */
1578 platform_driver_unregister(&mxcnd_driver);
1579}
1580
1581module_init(mxc_nd_init);
1582module_exit(mxc_nd_cleanup);
1583
1584MODULE_AUTHOR("Freescale Semiconductor, Inc.");
1585MODULE_DESCRIPTION("MXC NAND MTD driver");
1586MODULE_LICENSE("GPL");