blob: 8e2d56c3681102d2a38cc64311c11ff820152980 [file] [log] [blame]
David Brownellff4569c2009-03-04 12:01:37 -08001/*
2 * davinci_nand.c - NAND Flash Driver for DaVinci family chips
3 *
4 * Copyright © 2006 Texas Instruments.
5 *
6 * Port to 2.6.23 Copyright © 2008 by:
7 * Sander Huijsen <Shuijsen@optelecom-nkf.com>
8 * Troy Kisky <troy.kisky@boundarydevices.com>
9 * Dirk Behme <Dirk.Behme@gmail.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25
26#include <linux/kernel.h>
27#include <linux/init.h>
28#include <linux/module.h>
29#include <linux/platform_device.h>
30#include <linux/err.h>
31#include <linux/clk.h>
32#include <linux/io.h>
33#include <linux/mtd/nand.h>
34#include <linux/mtd/partitions.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
David Brownellff4569c2009-03-04 12:01:37 -080036
David Brownellff4569c2009-03-04 12:01:37 -080037#include <mach/nand.h>
Sekhar Nori8060ef42010-08-09 15:46:35 +053038#include <mach/aemif.h>
David Brownellff4569c2009-03-04 12:01:37 -080039
40#include <asm/mach-types.h>
41
42
David Brownellff4569c2009-03-04 12:01:37 -080043/*
44 * This is a device driver for the NAND flash controller found on the
45 * various DaVinci family chips. It handles up to four SoC chipselects,
46 * and some flavors of secondary chipselect (e.g. based on A12) as used
47 * with multichip packages.
48 *
David Brownell6a4123e2009-04-21 19:58:13 -070049 * The 1-bit ECC hardware is supported, as well as the newer 4-bit ECC
David Brownellff4569c2009-03-04 12:01:37 -080050 * available on chips like the DM355 and OMAP-L137 and needed with the
51 * more error-prone MLC NAND chips.
52 *
53 * This driver assumes EM_WAIT connects all the NAND devices' RDY/nBUSY
54 * outputs in a "wire-AND" configuration, with no per-chip signals.
55 */
56struct davinci_nand_info {
57 struct mtd_info mtd;
58 struct nand_chip chip;
David Brownell6a4123e2009-04-21 19:58:13 -070059 struct nand_ecclayout ecclayout;
David Brownellff4569c2009-03-04 12:01:37 -080060
61 struct device *dev;
62 struct clk *clk;
63 bool partitioned;
64
David Brownell6a4123e2009-04-21 19:58:13 -070065 bool is_readmode;
66
David Brownellff4569c2009-03-04 12:01:37 -080067 void __iomem *base;
68 void __iomem *vaddr;
69
70 uint32_t ioaddr;
71 uint32_t current_cs;
72
73 uint32_t mask_chipsel;
74 uint32_t mask_ale;
75 uint32_t mask_cle;
76
77 uint32_t core_chipsel;
78};
79
80static DEFINE_SPINLOCK(davinci_nand_lock);
David Brownell6a4123e2009-04-21 19:58:13 -070081static bool ecc4_busy;
David Brownellff4569c2009-03-04 12:01:37 -080082
83#define to_davinci_nand(m) container_of(m, struct davinci_nand_info, mtd)
84
85
86static inline unsigned int davinci_nand_readl(struct davinci_nand_info *info,
87 int offset)
88{
89 return __raw_readl(info->base + offset);
90}
91
92static inline void davinci_nand_writel(struct davinci_nand_info *info,
93 int offset, unsigned long value)
94{
95 __raw_writel(value, info->base + offset);
96}
97
98/*----------------------------------------------------------------------*/
99
100/*
101 * Access to hardware control lines: ALE, CLE, secondary chipselect.
102 */
103
104static void nand_davinci_hwcontrol(struct mtd_info *mtd, int cmd,
105 unsigned int ctrl)
106{
107 struct davinci_nand_info *info = to_davinci_nand(mtd);
108 uint32_t addr = info->current_cs;
109 struct nand_chip *nand = mtd->priv;
110
111 /* Did the control lines change? */
112 if (ctrl & NAND_CTRL_CHANGE) {
113 if ((ctrl & NAND_CTRL_CLE) == NAND_CTRL_CLE)
114 addr |= info->mask_cle;
115 else if ((ctrl & NAND_CTRL_ALE) == NAND_CTRL_ALE)
116 addr |= info->mask_ale;
117
118 nand->IO_ADDR_W = (void __iomem __force *)addr;
119 }
120
121 if (cmd != NAND_CMD_NONE)
122 iowrite8(cmd, nand->IO_ADDR_W);
123}
124
125static void nand_davinci_select_chip(struct mtd_info *mtd, int chip)
126{
127 struct davinci_nand_info *info = to_davinci_nand(mtd);
128 uint32_t addr = info->ioaddr;
129
130 /* maybe kick in a second chipselect */
131 if (chip > 0)
132 addr |= info->mask_chipsel;
133 info->current_cs = addr;
134
135 info->chip.IO_ADDR_W = (void __iomem __force *)addr;
136 info->chip.IO_ADDR_R = info->chip.IO_ADDR_W;
137}
138
139/*----------------------------------------------------------------------*/
140
141/*
142 * 1-bit hardware ECC ... context maintained for each core chipselect
143 */
144
145static inline uint32_t nand_davinci_readecc_1bit(struct mtd_info *mtd)
146{
147 struct davinci_nand_info *info = to_davinci_nand(mtd);
148
149 return davinci_nand_readl(info, NANDF1ECC_OFFSET
150 + 4 * info->core_chipsel);
151}
152
153static void nand_davinci_hwctl_1bit(struct mtd_info *mtd, int mode)
154{
155 struct davinci_nand_info *info;
156 uint32_t nandcfr;
157 unsigned long flags;
158
159 info = to_davinci_nand(mtd);
160
161 /* Reset ECC hardware */
162 nand_davinci_readecc_1bit(mtd);
163
164 spin_lock_irqsave(&davinci_nand_lock, flags);
165
166 /* Restart ECC hardware */
167 nandcfr = davinci_nand_readl(info, NANDFCR_OFFSET);
168 nandcfr |= BIT(8 + info->core_chipsel);
169 davinci_nand_writel(info, NANDFCR_OFFSET, nandcfr);
170
171 spin_unlock_irqrestore(&davinci_nand_lock, flags);
172}
173
174/*
175 * Read hardware ECC value and pack into three bytes
176 */
177static int nand_davinci_calculate_1bit(struct mtd_info *mtd,
178 const u_char *dat, u_char *ecc_code)
179{
180 unsigned int ecc_val = nand_davinci_readecc_1bit(mtd);
181 unsigned int ecc24 = (ecc_val & 0x0fff) | ((ecc_val & 0x0fff0000) >> 4);
182
183 /* invert so that erased block ecc is correct */
184 ecc24 = ~ecc24;
185 ecc_code[0] = (u_char)(ecc24);
186 ecc_code[1] = (u_char)(ecc24 >> 8);
187 ecc_code[2] = (u_char)(ecc24 >> 16);
188
189 return 0;
190}
191
192static int nand_davinci_correct_1bit(struct mtd_info *mtd, u_char *dat,
193 u_char *read_ecc, u_char *calc_ecc)
194{
195 struct nand_chip *chip = mtd->priv;
196 uint32_t eccNand = read_ecc[0] | (read_ecc[1] << 8) |
197 (read_ecc[2] << 16);
198 uint32_t eccCalc = calc_ecc[0] | (calc_ecc[1] << 8) |
199 (calc_ecc[2] << 16);
200 uint32_t diff = eccCalc ^ eccNand;
201
202 if (diff) {
203 if ((((diff >> 12) ^ diff) & 0xfff) == 0xfff) {
204 /* Correctable error */
205 if ((diff >> (12 + 3)) < chip->ecc.size) {
206 dat[diff >> (12 + 3)] ^= BIT((diff >> 12) & 7);
207 return 1;
208 } else {
209 return -1;
210 }
211 } else if (!(diff & (diff - 1))) {
212 /* Single bit ECC error in the ECC itself,
213 * nothing to fix */
214 return 1;
215 } else {
216 /* Uncorrectable error */
217 return -1;
218 }
219
220 }
221 return 0;
222}
223
224/*----------------------------------------------------------------------*/
225
226/*
David Brownell6a4123e2009-04-21 19:58:13 -0700227 * 4-bit hardware ECC ... context maintained over entire AEMIF
228 *
229 * This is a syndrome engine, but we avoid NAND_ECC_HW_SYNDROME
230 * since that forces use of a problematic "infix OOB" layout.
231 * Among other things, it trashes manufacturer bad block markers.
232 * Also, and specific to this hardware, it ECC-protects the "prepad"
233 * in the OOB ... while having ECC protection for parts of OOB would
234 * seem useful, the current MTD stack sometimes wants to update the
235 * OOB without recomputing ECC.
236 */
237
238static void nand_davinci_hwctl_4bit(struct mtd_info *mtd, int mode)
239{
240 struct davinci_nand_info *info = to_davinci_nand(mtd);
241 unsigned long flags;
242 u32 val;
243
244 spin_lock_irqsave(&davinci_nand_lock, flags);
245
246 /* Start 4-bit ECC calculation for read/write */
247 val = davinci_nand_readl(info, NANDFCR_OFFSET);
248 val &= ~(0x03 << 4);
249 val |= (info->core_chipsel << 4) | BIT(12);
250 davinci_nand_writel(info, NANDFCR_OFFSET, val);
251
252 info->is_readmode = (mode == NAND_ECC_READ);
253
254 spin_unlock_irqrestore(&davinci_nand_lock, flags);
255}
256
257/* Read raw ECC code after writing to NAND. */
258static void
259nand_davinci_readecc_4bit(struct davinci_nand_info *info, u32 code[4])
260{
261 const u32 mask = 0x03ff03ff;
262
263 code[0] = davinci_nand_readl(info, NAND_4BIT_ECC1_OFFSET) & mask;
264 code[1] = davinci_nand_readl(info, NAND_4BIT_ECC2_OFFSET) & mask;
265 code[2] = davinci_nand_readl(info, NAND_4BIT_ECC3_OFFSET) & mask;
266 code[3] = davinci_nand_readl(info, NAND_4BIT_ECC4_OFFSET) & mask;
267}
268
269/* Terminate read ECC; or return ECC (as bytes) of data written to NAND. */
270static int nand_davinci_calculate_4bit(struct mtd_info *mtd,
271 const u_char *dat, u_char *ecc_code)
272{
273 struct davinci_nand_info *info = to_davinci_nand(mtd);
274 u32 raw_ecc[4], *p;
275 unsigned i;
276
277 /* After a read, terminate ECC calculation by a dummy read
278 * of some 4-bit ECC register. ECC covers everything that
279 * was read; correct() just uses the hardware state, so
280 * ecc_code is not needed.
281 */
282 if (info->is_readmode) {
283 davinci_nand_readl(info, NAND_4BIT_ECC1_OFFSET);
284 return 0;
285 }
286
287 /* Pack eight raw 10-bit ecc values into ten bytes, making
288 * two passes which each convert four values (in upper and
289 * lower halves of two 32-bit words) into five bytes. The
290 * ROM boot loader uses this same packing scheme.
291 */
292 nand_davinci_readecc_4bit(info, raw_ecc);
293 for (i = 0, p = raw_ecc; i < 2; i++, p += 2) {
294 *ecc_code++ = p[0] & 0xff;
295 *ecc_code++ = ((p[0] >> 8) & 0x03) | ((p[0] >> 14) & 0xfc);
296 *ecc_code++ = ((p[0] >> 22) & 0x0f) | ((p[1] << 4) & 0xf0);
297 *ecc_code++ = ((p[1] >> 4) & 0x3f) | ((p[1] >> 10) & 0xc0);
298 *ecc_code++ = (p[1] >> 18) & 0xff;
299 }
300
301 return 0;
302}
303
304/* Correct up to 4 bits in data we just read, using state left in the
305 * hardware plus the ecc_code computed when it was first written.
306 */
307static int nand_davinci_correct_4bit(struct mtd_info *mtd,
308 u_char *data, u_char *ecc_code, u_char *null)
309{
310 int i;
311 struct davinci_nand_info *info = to_davinci_nand(mtd);
312 unsigned short ecc10[8];
313 unsigned short *ecc16;
314 u32 syndrome[4];
Sudhakar Rajashekhara1c3275b2010-07-20 15:24:01 -0700315 u32 ecc_state;
David Brownell6a4123e2009-04-21 19:58:13 -0700316 unsigned num_errors, corrected;
Sudhakar Rajashekhara1c3275b2010-07-20 15:24:01 -0700317 unsigned long timeo = jiffies + msecs_to_jiffies(100);
David Brownell6a4123e2009-04-21 19:58:13 -0700318
319 /* All bytes 0xff? It's an erased page; ignore its ECC. */
320 for (i = 0; i < 10; i++) {
321 if (ecc_code[i] != 0xff)
322 goto compare;
323 }
324 return 0;
325
326compare:
327 /* Unpack ten bytes into eight 10 bit values. We know we're
328 * little-endian, and use type punning for less shifting/masking.
329 */
330 if (WARN_ON(0x01 & (unsigned) ecc_code))
331 return -EINVAL;
332 ecc16 = (unsigned short *)ecc_code;
333
334 ecc10[0] = (ecc16[0] >> 0) & 0x3ff;
335 ecc10[1] = ((ecc16[0] >> 10) & 0x3f) | ((ecc16[1] << 6) & 0x3c0);
336 ecc10[2] = (ecc16[1] >> 4) & 0x3ff;
337 ecc10[3] = ((ecc16[1] >> 14) & 0x3) | ((ecc16[2] << 2) & 0x3fc);
338 ecc10[4] = (ecc16[2] >> 8) | ((ecc16[3] << 8) & 0x300);
339 ecc10[5] = (ecc16[3] >> 2) & 0x3ff;
340 ecc10[6] = ((ecc16[3] >> 12) & 0xf) | ((ecc16[4] << 4) & 0x3f0);
341 ecc10[7] = (ecc16[4] >> 6) & 0x3ff;
342
343 /* Tell ECC controller about the expected ECC codes. */
344 for (i = 7; i >= 0; i--)
345 davinci_nand_writel(info, NAND_4BIT_ECC_LOAD_OFFSET, ecc10[i]);
346
347 /* Allow time for syndrome calculation ... then read it.
348 * A syndrome of all zeroes 0 means no detected errors.
349 */
350 davinci_nand_readl(info, NANDFSR_OFFSET);
351 nand_davinci_readecc_4bit(info, syndrome);
352 if (!(syndrome[0] | syndrome[1] | syndrome[2] | syndrome[3]))
353 return 0;
354
Sneha Narnakajef12a9472009-09-18 12:51:48 -0700355 /*
356 * Clear any previous address calculation by doing a dummy read of an
357 * error address register.
358 */
359 davinci_nand_readl(info, NAND_ERR_ADD1_OFFSET);
360
David Brownell6a4123e2009-04-21 19:58:13 -0700361 /* Start address calculation, and wait for it to complete.
362 * We _could_ start reading more data while this is working,
363 * to speed up the overall page read.
364 */
365 davinci_nand_writel(info, NANDFCR_OFFSET,
366 davinci_nand_readl(info, NANDFCR_OFFSET) | BIT(13));
Sudhakar Rajashekhara1c3275b2010-07-20 15:24:01 -0700367
368 /*
369 * ECC_STATE field reads 0x3 (Error correction complete) immediately
370 * after setting the 4BITECC_ADD_CALC_START bit. So if you immediately
371 * begin trying to poll for the state, you may fall right out of your
372 * loop without any of the correction calculations having taken place.
373 * The recommendation from the hardware team is to wait till ECC_STATE
374 * reads less than 4, which means ECC HW has entered correction state.
375 */
376 do {
377 ecc_state = (davinci_nand_readl(info,
378 NANDFSR_OFFSET) >> 8) & 0x0f;
379 cpu_relax();
380 } while ((ecc_state < 4) && time_before(jiffies, timeo));
381
David Brownell6a4123e2009-04-21 19:58:13 -0700382 for (;;) {
383 u32 fsr = davinci_nand_readl(info, NANDFSR_OFFSET);
384
385 switch ((fsr >> 8) & 0x0f) {
386 case 0: /* no error, should not happen */
Sneha Narnakajef12a9472009-09-18 12:51:48 -0700387 davinci_nand_readl(info, NAND_ERR_ERRVAL1_OFFSET);
David Brownell6a4123e2009-04-21 19:58:13 -0700388 return 0;
389 case 1: /* five or more errors detected */
Sneha Narnakajef12a9472009-09-18 12:51:48 -0700390 davinci_nand_readl(info, NAND_ERR_ERRVAL1_OFFSET);
David Brownell6a4123e2009-04-21 19:58:13 -0700391 return -EIO;
392 case 2: /* error addresses computed */
393 case 3:
394 num_errors = 1 + ((fsr >> 16) & 0x03);
395 goto correct;
396 default: /* still working on it */
397 cpu_relax();
398 continue;
399 }
400 }
401
402correct:
403 /* correct each error */
404 for (i = 0, corrected = 0; i < num_errors; i++) {
405 int error_address, error_value;
406
407 if (i > 1) {
408 error_address = davinci_nand_readl(info,
409 NAND_ERR_ADD2_OFFSET);
410 error_value = davinci_nand_readl(info,
411 NAND_ERR_ERRVAL2_OFFSET);
412 } else {
413 error_address = davinci_nand_readl(info,
414 NAND_ERR_ADD1_OFFSET);
415 error_value = davinci_nand_readl(info,
416 NAND_ERR_ERRVAL1_OFFSET);
417 }
418
419 if (i & 1) {
420 error_address >>= 16;
421 error_value >>= 16;
422 }
423 error_address &= 0x3ff;
424 error_address = (512 + 7) - error_address;
425
426 if (error_address < 512) {
427 data[error_address] ^= error_value;
428 corrected++;
429 }
430 }
431
432 return corrected;
433}
434
435/*----------------------------------------------------------------------*/
436
437/*
David Brownellff4569c2009-03-04 12:01:37 -0800438 * NOTE: NAND boot requires ALE == EM_A[1], CLE == EM_A[2], so that's
439 * how these chips are normally wired. This translates to both 8 and 16
440 * bit busses using ALE == BIT(3) in byte addresses, and CLE == BIT(4).
441 *
442 * For now we assume that configuration, or any other one which ignores
443 * the two LSBs for NAND access ... so we can issue 32-bit reads/writes
444 * and have that transparently morphed into multiple NAND operations.
445 */
446static void nand_davinci_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
447{
448 struct nand_chip *chip = mtd->priv;
449
450 if ((0x03 & ((unsigned)buf)) == 0 && (0x03 & len) == 0)
451 ioread32_rep(chip->IO_ADDR_R, buf, len >> 2);
452 else if ((0x01 & ((unsigned)buf)) == 0 && (0x01 & len) == 0)
453 ioread16_rep(chip->IO_ADDR_R, buf, len >> 1);
454 else
455 ioread8_rep(chip->IO_ADDR_R, buf, len);
456}
457
458static void nand_davinci_write_buf(struct mtd_info *mtd,
459 const uint8_t *buf, int len)
460{
461 struct nand_chip *chip = mtd->priv;
462
463 if ((0x03 & ((unsigned)buf)) == 0 && (0x03 & len) == 0)
464 iowrite32_rep(chip->IO_ADDR_R, buf, len >> 2);
465 else if ((0x01 & ((unsigned)buf)) == 0 && (0x01 & len) == 0)
466 iowrite16_rep(chip->IO_ADDR_R, buf, len >> 1);
467 else
468 iowrite8_rep(chip->IO_ADDR_R, buf, len);
469}
470
471/*
472 * Check hardware register for wait status. Returns 1 if device is ready,
473 * 0 if it is still busy.
474 */
475static int nand_davinci_dev_ready(struct mtd_info *mtd)
476{
477 struct davinci_nand_info *info = to_davinci_nand(mtd);
478
479 return davinci_nand_readl(info, NANDFSR_OFFSET) & BIT(0);
480}
481
482static void __init nand_dm6446evm_flash_init(struct davinci_nand_info *info)
483{
484 uint32_t regval, a1cr;
485
486 /*
487 * NAND FLASH timings @ PLL1 == 459 MHz
488 * - AEMIF.CLK freq = PLL1/6 = 459/6 = 76.5 MHz
489 * - AEMIF.CLK period = 1/76.5 MHz = 13.1 ns
490 */
491 regval = 0
492 | (0 << 31) /* selectStrobe */
493 | (0 << 30) /* extWait (never with NAND) */
494 | (1 << 26) /* writeSetup 10 ns */
495 | (3 << 20) /* writeStrobe 40 ns */
496 | (1 << 17) /* writeHold 10 ns */
497 | (0 << 13) /* readSetup 10 ns */
498 | (3 << 7) /* readStrobe 60 ns */
499 | (0 << 4) /* readHold 10 ns */
500 | (3 << 2) /* turnAround ?? ns */
501 | (0 << 0) /* asyncSize 8-bit bus */
502 ;
503 a1cr = davinci_nand_readl(info, A1CR_OFFSET);
504 if (a1cr != regval) {
505 dev_dbg(info->dev, "Warning: NAND config: Set A1CR " \
506 "reg to 0x%08x, was 0x%08x, should be done by " \
507 "bootloader.\n", regval, a1cr);
508 davinci_nand_writel(info, A1CR_OFFSET, regval);
509 }
510}
511
512/*----------------------------------------------------------------------*/
513
David Brownell6a4123e2009-04-21 19:58:13 -0700514/* An ECC layout for using 4-bit ECC with small-page flash, storing
515 * ten ECC bytes plus the manufacturer's bad block marker byte, and
516 * and not overlapping the default BBT markers.
517 */
518static struct nand_ecclayout hwecc4_small __initconst = {
519 .eccbytes = 10,
520 .eccpos = { 0, 1, 2, 3, 4,
521 /* offset 5 holds the badblock marker */
522 6, 7,
523 13, 14, 15, },
524 .oobfree = {
525 {.offset = 8, .length = 5, },
526 {.offset = 16, },
527 },
528};
529
Sneha Narnakajef12a9472009-09-18 12:51:48 -0700530/* An ECC layout for using 4-bit ECC with large-page (2048bytes) flash,
531 * storing ten ECC bytes plus the manufacturer's bad block marker byte,
532 * and not overlapping the default BBT markers.
533 */
534static struct nand_ecclayout hwecc4_2048 __initconst = {
535 .eccbytes = 40,
536 .eccpos = {
537 /* at the end of spare sector */
538 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
539 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
540 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
541 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
542 },
543 .oobfree = {
544 /* 2 bytes at offset 0 hold manufacturer badblock markers */
545 {.offset = 2, .length = 22, },
546 /* 5 bytes at offset 8 hold BBT markers */
547 /* 8 bytes at offset 16 hold JFFS2 clean markers */
548 },
549};
David Brownell6a4123e2009-04-21 19:58:13 -0700550
David Brownellff4569c2009-03-04 12:01:37 -0800551static int __init nand_davinci_probe(struct platform_device *pdev)
552{
553 struct davinci_nand_pdata *pdata = pdev->dev.platform_data;
554 struct davinci_nand_info *info;
555 struct resource *res1;
556 struct resource *res2;
557 void __iomem *vaddr;
558 void __iomem *base;
559 int ret;
560 uint32_t val;
561 nand_ecc_modes_t ecc_mode;
562
David Brownell533a0142009-04-21 19:51:31 -0700563 /* insist on board-specific configuration */
564 if (!pdata)
565 return -ENODEV;
566
David Brownellff4569c2009-03-04 12:01:37 -0800567 /* which external chipselect will we be managing? */
568 if (pdev->id < 0 || pdev->id > 3)
569 return -ENODEV;
570
571 info = kzalloc(sizeof(*info), GFP_KERNEL);
572 if (!info) {
573 dev_err(&pdev->dev, "unable to allocate memory\n");
574 ret = -ENOMEM;
575 goto err_nomem;
576 }
577
578 platform_set_drvdata(pdev, info);
579
580 res1 = platform_get_resource(pdev, IORESOURCE_MEM, 0);
581 res2 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
582 if (!res1 || !res2) {
583 dev_err(&pdev->dev, "resource missing\n");
584 ret = -EINVAL;
585 goto err_nomem;
586 }
587
H Hartley Sweetend8bc5552009-12-14 16:13:13 -0500588 vaddr = ioremap(res1->start, resource_size(res1));
589 base = ioremap(res2->start, resource_size(res2));
David Brownellff4569c2009-03-04 12:01:37 -0800590 if (!vaddr || !base) {
591 dev_err(&pdev->dev, "ioremap failed\n");
592 ret = -EINVAL;
593 goto err_ioremap;
594 }
595
596 info->dev = &pdev->dev;
597 info->base = base;
598 info->vaddr = vaddr;
599
600 info->mtd.priv = &info->chip;
601 info->mtd.name = dev_name(&pdev->dev);
602 info->mtd.owner = THIS_MODULE;
603
David Brownell87f39f02009-03-26 00:42:50 -0700604 info->mtd.dev.parent = &pdev->dev;
605
David Brownellff4569c2009-03-04 12:01:37 -0800606 info->chip.IO_ADDR_R = vaddr;
607 info->chip.IO_ADDR_W = vaddr;
608 info->chip.chip_delay = 0;
609 info->chip.select_chip = nand_davinci_select_chip;
610
611 /* options such as NAND_USE_FLASH_BBT or 16-bit widths */
David Brownell533a0142009-04-21 19:51:31 -0700612 info->chip.options = pdata->options;
Mark A. Greerf611a792009-10-12 16:16:37 -0700613 info->chip.bbt_td = pdata->bbt_td;
614 info->chip.bbt_md = pdata->bbt_md;
David Brownellff4569c2009-03-04 12:01:37 -0800615
616 info->ioaddr = (uint32_t __force) vaddr;
617
618 info->current_cs = info->ioaddr;
619 info->core_chipsel = pdev->id;
620 info->mask_chipsel = pdata->mask_chipsel;
621
622 /* use nandboot-capable ALE/CLE masks by default */
Hemant Pedanekar5cd0be82009-10-01 19:55:06 +0530623 info->mask_ale = pdata->mask_ale ? : MASK_ALE;
David Brownell533a0142009-04-21 19:51:31 -0700624 info->mask_cle = pdata->mask_cle ? : MASK_CLE;
David Brownellff4569c2009-03-04 12:01:37 -0800625
626 /* Set address of hardware control function */
627 info->chip.cmd_ctrl = nand_davinci_hwcontrol;
628 info->chip.dev_ready = nand_davinci_dev_ready;
629
630 /* Speed up buffer I/O */
631 info->chip.read_buf = nand_davinci_read_buf;
632 info->chip.write_buf = nand_davinci_write_buf;
633
David Brownell533a0142009-04-21 19:51:31 -0700634 /* Use board-specific ECC config */
635 ecc_mode = pdata->ecc_mode;
David Brownellff4569c2009-03-04 12:01:37 -0800636
David Brownell6a4123e2009-04-21 19:58:13 -0700637 ret = -EINVAL;
David Brownellff4569c2009-03-04 12:01:37 -0800638 switch (ecc_mode) {
639 case NAND_ECC_NONE:
640 case NAND_ECC_SOFT:
David Brownell6a4123e2009-04-21 19:58:13 -0700641 pdata->ecc_bits = 0;
David Brownellff4569c2009-03-04 12:01:37 -0800642 break;
643 case NAND_ECC_HW:
David Brownell6a4123e2009-04-21 19:58:13 -0700644 if (pdata->ecc_bits == 4) {
645 /* No sanity checks: CPUs must support this,
646 * and the chips may not use NAND_BUSWIDTH_16.
647 */
David Brownellff4569c2009-03-04 12:01:37 -0800648
David Brownell6a4123e2009-04-21 19:58:13 -0700649 /* No sharing 4-bit hardware between chipselects yet */
650 spin_lock_irq(&davinci_nand_lock);
651 if (ecc4_busy)
652 ret = -EBUSY;
653 else
654 ecc4_busy = true;
655 spin_unlock_irq(&davinci_nand_lock);
656
657 if (ret == -EBUSY)
658 goto err_ecc;
659
660 info->chip.ecc.calculate = nand_davinci_calculate_4bit;
661 info->chip.ecc.correct = nand_davinci_correct_4bit;
662 info->chip.ecc.hwctl = nand_davinci_hwctl_4bit;
663 info->chip.ecc.bytes = 10;
664 } else {
665 info->chip.ecc.calculate = nand_davinci_calculate_1bit;
666 info->chip.ecc.correct = nand_davinci_correct_1bit;
667 info->chip.ecc.hwctl = nand_davinci_hwctl_1bit;
668 info->chip.ecc.bytes = 3;
669 }
670 info->chip.ecc.size = 512;
671 break;
David Brownellff4569c2009-03-04 12:01:37 -0800672 default:
673 ret = -EINVAL;
674 goto err_ecc;
675 }
676 info->chip.ecc.mode = ecc_mode;
677
Kevin Hilmancd24f8c2009-06-05 18:48:08 +0100678 info->clk = clk_get(&pdev->dev, "aemif");
David Brownellff4569c2009-03-04 12:01:37 -0800679 if (IS_ERR(info->clk)) {
680 ret = PTR_ERR(info->clk);
Kevin Hilmancd24f8c2009-06-05 18:48:08 +0100681 dev_dbg(&pdev->dev, "unable to get AEMIF clock, err %d\n", ret);
David Brownellff4569c2009-03-04 12:01:37 -0800682 goto err_clk;
683 }
684
685 ret = clk_enable(info->clk);
686 if (ret < 0) {
Kevin Hilmancd24f8c2009-06-05 18:48:08 +0100687 dev_dbg(&pdev->dev, "unable to enable AEMIF clock, err %d\n",
688 ret);
David Brownellff4569c2009-03-04 12:01:37 -0800689 goto err_clk_enable;
690 }
691
692 /* EMIF timings should normally be set by the boot loader,
693 * especially after boot-from-NAND. The *only* reason to
694 * have this special casing for the DM6446 EVM is to work
695 * with boot-from-NOR ... with CS0 manually re-jumpered
696 * (after startup) so it addresses the NAND flash, not NOR.
697 * Even for dev boards, that's unusually rude...
698 */
699 if (machine_is_davinci_evm())
700 nand_dm6446evm_flash_init(info);
701
702 spin_lock_irq(&davinci_nand_lock);
703
704 /* put CSxNAND into NAND mode */
705 val = davinci_nand_readl(info, NANDFCR_OFFSET);
706 val |= BIT(info->core_chipsel);
707 davinci_nand_writel(info, NANDFCR_OFFSET, val);
708
709 spin_unlock_irq(&davinci_nand_lock);
710
711 /* Scan to find existence of the device(s) */
David Woodhouse5e81e882010-02-26 18:32:56 +0000712 ret = nand_scan_ident(&info->mtd, pdata->mask_chipsel ? 2 : 1, NULL);
David Brownellff4569c2009-03-04 12:01:37 -0800713 if (ret < 0) {
714 dev_dbg(&pdev->dev, "no NAND chip(s) found\n");
715 goto err_scan;
716 }
717
David Brownell6a4123e2009-04-21 19:58:13 -0700718 /* Update ECC layout if needed ... for 1-bit HW ECC, the default
719 * is OK, but it allocates 6 bytes when only 3 are needed (for
720 * each 512 bytes). For the 4-bit HW ECC, that default is not
721 * usable: 10 bytes are needed, not 6.
722 */
723 if (pdata->ecc_bits == 4) {
724 int chunks = info->mtd.writesize / 512;
725
726 if (!chunks || info->mtd.oobsize < 16) {
727 dev_dbg(&pdev->dev, "too small\n");
728 ret = -EINVAL;
729 goto err_scan;
730 }
731
732 /* For small page chips, preserve the manufacturer's
733 * badblock marking data ... and make sure a flash BBT
734 * table marker fits in the free bytes.
735 */
736 if (chunks == 1) {
737 info->ecclayout = hwecc4_small;
738 info->ecclayout.oobfree[1].length =
739 info->mtd.oobsize - 16;
740 goto syndrome_done;
741 }
Sneha Narnakajef12a9472009-09-18 12:51:48 -0700742 if (chunks == 4) {
743 info->ecclayout = hwecc4_2048;
744 info->chip.ecc.mode = NAND_ECC_HW_OOB_FIRST;
745 goto syndrome_done;
746 }
David Brownell6a4123e2009-04-21 19:58:13 -0700747
Sneha Narnakajef12a9472009-09-18 12:51:48 -0700748 /* 4KiB page chips are not yet supported. The eccpos from
749 * nand_ecclayout cannot hold 80 bytes and change to eccpos[]
750 * breaks userspace ioctl interface with mtd-utils. Once we
751 * resolve this issue, NAND_ECC_HW_OOB_FIRST mode can be used
752 * for the 4KiB page chips.
David Brownell6a4123e2009-04-21 19:58:13 -0700753 */
754 dev_warn(&pdev->dev, "no 4-bit ECC support yet "
Sneha Narnakajef12a9472009-09-18 12:51:48 -0700755 "for 4KiB-page NAND\n");
David Brownell6a4123e2009-04-21 19:58:13 -0700756 ret = -EIO;
757 goto err_scan;
758
759syndrome_done:
760 info->chip.ecc.layout = &info->ecclayout;
761 }
762
763 ret = nand_scan_tail(&info->mtd);
764 if (ret < 0)
765 goto err_scan;
766
David Brownellff4569c2009-03-04 12:01:37 -0800767 if (mtd_has_partitions()) {
768 struct mtd_partition *mtd_parts = NULL;
769 int mtd_parts_nb = 0;
770
771 if (mtd_has_cmdlinepart()) {
772 static const char *probes[] __initconst =
773 { "cmdlinepart", NULL };
774
David Brownellff4569c2009-03-04 12:01:37 -0800775 mtd_parts_nb = parse_mtd_partitions(&info->mtd, probes,
776 &mtd_parts, 0);
David Brownellff4569c2009-03-04 12:01:37 -0800777 }
778
David Brownell533a0142009-04-21 19:51:31 -0700779 if (mtd_parts_nb <= 0) {
David Brownellff4569c2009-03-04 12:01:37 -0800780 mtd_parts = pdata->parts;
781 mtd_parts_nb = pdata->nr_parts;
782 }
783
784 /* Register any partitions */
785 if (mtd_parts_nb > 0) {
786 ret = add_mtd_partitions(&info->mtd,
787 mtd_parts, mtd_parts_nb);
788 if (ret == 0)
789 info->partitioned = true;
790 }
791
David Brownell533a0142009-04-21 19:51:31 -0700792 } else if (pdata->nr_parts) {
David Brownellff4569c2009-03-04 12:01:37 -0800793 dev_warn(&pdev->dev, "ignoring %d default partitions on %s\n",
794 pdata->nr_parts, info->mtd.name);
795 }
796
797 /* If there's no partition info, just package the whole chip
798 * as a single MTD device.
799 */
800 if (!info->partitioned)
801 ret = add_mtd_device(&info->mtd) ? -ENODEV : 0;
802
803 if (ret < 0)
804 goto err_scan;
805
806 val = davinci_nand_readl(info, NRCSR_OFFSET);
807 dev_info(&pdev->dev, "controller rev. %d.%d\n",
808 (val >> 8) & 0xff, val & 0xff);
809
810 return 0;
811
812err_scan:
813 clk_disable(info->clk);
814
815err_clk_enable:
816 clk_put(info->clk);
817
David Brownell6a4123e2009-04-21 19:58:13 -0700818 spin_lock_irq(&davinci_nand_lock);
819 if (ecc_mode == NAND_ECC_HW_SYNDROME)
820 ecc4_busy = false;
821 spin_unlock_irq(&davinci_nand_lock);
822
David Brownellff4569c2009-03-04 12:01:37 -0800823err_ecc:
824err_clk:
825err_ioremap:
826 if (base)
827 iounmap(base);
828 if (vaddr)
829 iounmap(vaddr);
830
831err_nomem:
832 kfree(info);
833 return ret;
834}
835
836static int __exit nand_davinci_remove(struct platform_device *pdev)
837{
838 struct davinci_nand_info *info = platform_get_drvdata(pdev);
839 int status;
840
841 if (mtd_has_partitions() && info->partitioned)
842 status = del_mtd_partitions(&info->mtd);
843 else
844 status = del_mtd_device(&info->mtd);
845
David Brownell6a4123e2009-04-21 19:58:13 -0700846 spin_lock_irq(&davinci_nand_lock);
847 if (info->chip.ecc.mode == NAND_ECC_HW_SYNDROME)
848 ecc4_busy = false;
849 spin_unlock_irq(&davinci_nand_lock);
850
David Brownellff4569c2009-03-04 12:01:37 -0800851 iounmap(info->base);
852 iounmap(info->vaddr);
853
854 nand_release(&info->mtd);
855
856 clk_disable(info->clk);
857 clk_put(info->clk);
858
859 kfree(info);
860
861 return 0;
862}
863
864static struct platform_driver nand_davinci_driver = {
865 .remove = __exit_p(nand_davinci_remove),
866 .driver = {
867 .name = "davinci_nand",
868 },
869};
870MODULE_ALIAS("platform:davinci_nand");
871
872static int __init nand_davinci_init(void)
873{
874 return platform_driver_probe(&nand_davinci_driver, nand_davinci_probe);
875}
876module_init(nand_davinci_init);
877
878static void __exit nand_davinci_exit(void)
879{
880 platform_driver_unregister(&nand_davinci_driver);
881}
882module_exit(nand_davinci_exit);
883
884MODULE_LICENSE("GPL");
885MODULE_AUTHOR("Texas Instruments");
886MODULE_DESCRIPTION("Davinci NAND flash driver");
887