2 * Copyright © 2004 Texas Instruments, Jian Zhang <jzhang@ti.com>
3 * Copyright © 2004 Micron Technology Inc.
4 * Copyright © 2004 David Brownell
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/platform_device.h>
12 #include <linux/dmaengine.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/delay.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/jiffies.h>
18 #include <linux/sched.h>
19 #include <linux/mtd/mtd.h>
20 #include <linux/mtd/nand.h>
21 #include <linux/mtd/partitions.h>
22 #include <linux/omap-dma.h>
24 #include <linux/slab.h>
26 #ifdef CONFIG_MTD_NAND_OMAP_BCH
27 #include <linux/bch.h>
31 #include <plat/gpmc.h>
32 #include <plat/nand.h>
34 #define DRIVER_NAME "omap2-nand"
35 #define OMAP_NAND_TIMEOUT_MS 5000
37 #define NAND_Ecc_P1e (1 << 0)
38 #define NAND_Ecc_P2e (1 << 1)
39 #define NAND_Ecc_P4e (1 << 2)
40 #define NAND_Ecc_P8e (1 << 3)
41 #define NAND_Ecc_P16e (1 << 4)
42 #define NAND_Ecc_P32e (1 << 5)
43 #define NAND_Ecc_P64e (1 << 6)
44 #define NAND_Ecc_P128e (1 << 7)
45 #define NAND_Ecc_P256e (1 << 8)
46 #define NAND_Ecc_P512e (1 << 9)
47 #define NAND_Ecc_P1024e (1 << 10)
48 #define NAND_Ecc_P2048e (1 << 11)
50 #define NAND_Ecc_P1o (1 << 16)
51 #define NAND_Ecc_P2o (1 << 17)
52 #define NAND_Ecc_P4o (1 << 18)
53 #define NAND_Ecc_P8o (1 << 19)
54 #define NAND_Ecc_P16o (1 << 20)
55 #define NAND_Ecc_P32o (1 << 21)
56 #define NAND_Ecc_P64o (1 << 22)
57 #define NAND_Ecc_P128o (1 << 23)
58 #define NAND_Ecc_P256o (1 << 24)
59 #define NAND_Ecc_P512o (1 << 25)
60 #define NAND_Ecc_P1024o (1 << 26)
61 #define NAND_Ecc_P2048o (1 << 27)
63 #define TF(value) (value ? 1 : 0)
65 #define P2048e(a) (TF(a & NAND_Ecc_P2048e) << 0)
66 #define P2048o(a) (TF(a & NAND_Ecc_P2048o) << 1)
67 #define P1e(a) (TF(a & NAND_Ecc_P1e) << 2)
68 #define P1o(a) (TF(a & NAND_Ecc_P1o) << 3)
69 #define P2e(a) (TF(a & NAND_Ecc_P2e) << 4)
70 #define P2o(a) (TF(a & NAND_Ecc_P2o) << 5)
71 #define P4e(a) (TF(a & NAND_Ecc_P4e) << 6)
72 #define P4o(a) (TF(a & NAND_Ecc_P4o) << 7)
74 #define P8e(a) (TF(a & NAND_Ecc_P8e) << 0)
75 #define P8o(a) (TF(a & NAND_Ecc_P8o) << 1)
76 #define P16e(a) (TF(a & NAND_Ecc_P16e) << 2)
77 #define P16o(a) (TF(a & NAND_Ecc_P16o) << 3)
78 #define P32e(a) (TF(a & NAND_Ecc_P32e) << 4)
79 #define P32o(a) (TF(a & NAND_Ecc_P32o) << 5)
80 #define P64e(a) (TF(a & NAND_Ecc_P64e) << 6)
81 #define P64o(a) (TF(a & NAND_Ecc_P64o) << 7)
83 #define P128e(a) (TF(a & NAND_Ecc_P128e) << 0)
84 #define P128o(a) (TF(a & NAND_Ecc_P128o) << 1)
85 #define P256e(a) (TF(a & NAND_Ecc_P256e) << 2)
86 #define P256o(a) (TF(a & NAND_Ecc_P256o) << 3)
87 #define P512e(a) (TF(a & NAND_Ecc_P512e) << 4)
88 #define P512o(a) (TF(a & NAND_Ecc_P512o) << 5)
89 #define P1024e(a) (TF(a & NAND_Ecc_P1024e) << 6)
90 #define P1024o(a) (TF(a & NAND_Ecc_P1024o) << 7)
92 #define P8e_s(a) (TF(a & NAND_Ecc_P8e) << 0)
93 #define P8o_s(a) (TF(a & NAND_Ecc_P8o) << 1)
94 #define P16e_s(a) (TF(a & NAND_Ecc_P16e) << 2)
95 #define P16o_s(a) (TF(a & NAND_Ecc_P16o) << 3)
96 #define P1e_s(a) (TF(a & NAND_Ecc_P1e) << 4)
97 #define P1o_s(a) (TF(a & NAND_Ecc_P1o) << 5)
98 #define P2e_s(a) (TF(a & NAND_Ecc_P2e) << 6)
99 #define P2o_s(a) (TF(a & NAND_Ecc_P2o) << 7)
101 #define P4e_s(a) (TF(a & NAND_Ecc_P4e) << 0)
102 #define P4o_s(a) (TF(a & NAND_Ecc_P4o) << 1)
104 /* oob info generated runtime depending on ecc algorithm and layout selected */
105 static struct nand_ecclayout omap_oobinfo
;
106 /* Define some generic bad / good block scan pattern which are used
107 * while scanning a device for factory marked good / bad blocks
109 static uint8_t scan_ff_pattern
[] = { 0xff };
110 static struct nand_bbt_descr bb_descrip_flashbased
= {
111 .options
= NAND_BBT_SCANEMPTY
| NAND_BBT_SCANALLPAGES
,
114 .pattern
= scan_ff_pattern
,
118 struct omap_nand_info
{
119 struct nand_hw_control controller
;
120 struct omap_nand_platform_data
*pdata
;
122 struct nand_chip nand
;
123 struct platform_device
*pdev
;
126 unsigned long phys_base
;
127 struct completion comp
;
128 struct dma_chan
*dma
;
131 OMAP_NAND_IO_READ
= 0, /* read */
132 OMAP_NAND_IO_WRITE
, /* write */
137 #ifdef CONFIG_MTD_NAND_OMAP_BCH
138 struct bch_control
*bch
;
139 struct nand_ecclayout ecclayout
;
144 * omap_hwcontrol - hardware specific access to control-lines
145 * @mtd: MTD device structure
146 * @cmd: command to device
148 * NAND_NCE: bit 0 -> don't care
149 * NAND_CLE: bit 1 -> Command Latch
150 * NAND_ALE: bit 2 -> Address Latch
152 * NOTE: boards may use different bits for these!!
154 static void omap_hwcontrol(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
156 struct omap_nand_info
*info
= container_of(mtd
,
157 struct omap_nand_info
, mtd
);
159 if (cmd
!= NAND_CMD_NONE
) {
161 gpmc_nand_write(info
->gpmc_cs
, GPMC_NAND_COMMAND
, cmd
);
163 else if (ctrl
& NAND_ALE
)
164 gpmc_nand_write(info
->gpmc_cs
, GPMC_NAND_ADDRESS
, cmd
);
167 gpmc_nand_write(info
->gpmc_cs
, GPMC_NAND_DATA
, cmd
);
172 * omap_read_buf8 - read data from NAND controller into buffer
173 * @mtd: MTD device structure
174 * @buf: buffer to store date
175 * @len: number of bytes to read
177 static void omap_read_buf8(struct mtd_info
*mtd
, u_char
*buf
, int len
)
179 struct nand_chip
*nand
= mtd
->priv
;
181 ioread8_rep(nand
->IO_ADDR_R
, buf
, len
);
185 * omap_write_buf8 - write buffer to NAND controller
186 * @mtd: MTD device structure
188 * @len: number of bytes to write
190 static void omap_write_buf8(struct mtd_info
*mtd
, const u_char
*buf
, int len
)
192 struct omap_nand_info
*info
= container_of(mtd
,
193 struct omap_nand_info
, mtd
);
194 u_char
*p
= (u_char
*)buf
;
198 iowrite8(*p
++, info
->nand
.IO_ADDR_W
);
199 /* wait until buffer is available for write */
201 status
= gpmc_read_status(GPMC_STATUS_BUFFER
);
207 * omap_read_buf16 - read data from NAND controller into buffer
208 * @mtd: MTD device structure
209 * @buf: buffer to store date
210 * @len: number of bytes to read
212 static void omap_read_buf16(struct mtd_info
*mtd
, u_char
*buf
, int len
)
214 struct nand_chip
*nand
= mtd
->priv
;
216 ioread16_rep(nand
->IO_ADDR_R
, buf
, len
/ 2);
220 * omap_write_buf16 - write buffer to NAND controller
221 * @mtd: MTD device structure
223 * @len: number of bytes to write
225 static void omap_write_buf16(struct mtd_info
*mtd
, const u_char
* buf
, int len
)
227 struct omap_nand_info
*info
= container_of(mtd
,
228 struct omap_nand_info
, mtd
);
229 u16
*p
= (u16
*) buf
;
231 /* FIXME try bursts of writesw() or DMA ... */
235 iowrite16(*p
++, info
->nand
.IO_ADDR_W
);
236 /* wait until buffer is available for write */
238 status
= gpmc_read_status(GPMC_STATUS_BUFFER
);
244 * omap_read_buf_pref - read data from NAND controller into buffer
245 * @mtd: MTD device structure
246 * @buf: buffer to store date
247 * @len: number of bytes to read
249 static void omap_read_buf_pref(struct mtd_info
*mtd
, u_char
*buf
, int len
)
251 struct omap_nand_info
*info
= container_of(mtd
,
252 struct omap_nand_info
, mtd
);
253 uint32_t r_count
= 0;
257 /* take care of subpage reads */
259 if (info
->nand
.options
& NAND_BUSWIDTH_16
)
260 omap_read_buf16(mtd
, buf
, len
% 4);
262 omap_read_buf8(mtd
, buf
, len
% 4);
263 p
= (u32
*) (buf
+ len
% 4);
267 /* configure and start prefetch transfer */
268 ret
= gpmc_prefetch_enable(info
->gpmc_cs
,
269 PREFETCH_FIFOTHRESHOLD_MAX
, 0x0, len
, 0x0);
271 /* PFPW engine is busy, use cpu copy method */
272 if (info
->nand
.options
& NAND_BUSWIDTH_16
)
273 omap_read_buf16(mtd
, (u_char
*)p
, len
);
275 omap_read_buf8(mtd
, (u_char
*)p
, len
);
278 r_count
= gpmc_read_status(GPMC_PREFETCH_FIFO_CNT
);
279 r_count
= r_count
>> 2;
280 ioread32_rep(info
->nand
.IO_ADDR_R
, p
, r_count
);
284 /* disable and stop the PFPW engine */
285 gpmc_prefetch_reset(info
->gpmc_cs
);
290 * omap_write_buf_pref - write buffer to NAND controller
291 * @mtd: MTD device structure
293 * @len: number of bytes to write
295 static void omap_write_buf_pref(struct mtd_info
*mtd
,
296 const u_char
*buf
, int len
)
298 struct omap_nand_info
*info
= container_of(mtd
,
299 struct omap_nand_info
, mtd
);
300 uint32_t w_count
= 0;
303 unsigned long tim
, limit
;
305 /* take care of subpage writes */
307 writeb(*buf
, info
->nand
.IO_ADDR_W
);
308 p
= (u16
*)(buf
+ 1);
312 /* configure and start prefetch transfer */
313 ret
= gpmc_prefetch_enable(info
->gpmc_cs
,
314 PREFETCH_FIFOTHRESHOLD_MAX
, 0x0, len
, 0x1);
316 /* PFPW engine is busy, use cpu copy method */
317 if (info
->nand
.options
& NAND_BUSWIDTH_16
)
318 omap_write_buf16(mtd
, (u_char
*)p
, len
);
320 omap_write_buf8(mtd
, (u_char
*)p
, len
);
323 w_count
= gpmc_read_status(GPMC_PREFETCH_FIFO_CNT
);
324 w_count
= w_count
>> 1;
325 for (i
= 0; (i
< w_count
) && len
; i
++, len
-= 2)
326 iowrite16(*p
++, info
->nand
.IO_ADDR_W
);
328 /* wait for data to flushed-out before reset the prefetch */
330 limit
= (loops_per_jiffy
*
331 msecs_to_jiffies(OMAP_NAND_TIMEOUT_MS
));
332 while (gpmc_read_status(GPMC_PREFETCH_COUNT
) && (tim
++ < limit
))
335 /* disable and stop the PFPW engine */
336 gpmc_prefetch_reset(info
->gpmc_cs
);
341 * omap_nand_dma_callback: callback on the completion of dma transfer
342 * @data: pointer to completion data structure
344 static void omap_nand_dma_callback(void *data
)
346 complete((struct completion
*) data
);
350 * omap_nand_dma_transfer: configer and start dma transfer
351 * @mtd: MTD device structure
352 * @addr: virtual address in RAM of source/destination
353 * @len: number of data bytes to be transferred
354 * @is_write: flag for read/write operation
356 static inline int omap_nand_dma_transfer(struct mtd_info
*mtd
, void *addr
,
357 unsigned int len
, int is_write
)
359 struct omap_nand_info
*info
= container_of(mtd
,
360 struct omap_nand_info
, mtd
);
361 struct dma_async_tx_descriptor
*tx
;
362 enum dma_data_direction dir
= is_write
? DMA_TO_DEVICE
:
364 struct scatterlist sg
;
365 unsigned long tim
, limit
;
369 if (addr
>= high_memory
) {
372 if (((size_t)addr
& PAGE_MASK
) !=
373 ((size_t)(addr
+ len
- 1) & PAGE_MASK
))
375 p1
= vmalloc_to_page(addr
);
378 addr
= page_address(p1
) + ((size_t)addr
& ~PAGE_MASK
);
381 sg_init_one(&sg
, addr
, len
);
382 n
= dma_map_sg(info
->dma
->device
->dev
, &sg
, 1, dir
);
384 dev_err(&info
->pdev
->dev
,
385 "Couldn't DMA map a %d byte buffer\n", len
);
389 tx
= dmaengine_prep_slave_sg(info
->dma
, &sg
, n
,
390 is_write
? DMA_MEM_TO_DEV
: DMA_DEV_TO_MEM
,
391 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
395 tx
->callback
= omap_nand_dma_callback
;
396 tx
->callback_param
= &info
->comp
;
397 dmaengine_submit(tx
);
399 /* configure and start prefetch transfer */
400 ret
= gpmc_prefetch_enable(info
->gpmc_cs
,
401 PREFETCH_FIFOTHRESHOLD_MAX
, 0x1, len
, is_write
);
403 /* PFPW engine is busy, use cpu copy method */
406 init_completion(&info
->comp
);
407 dma_async_issue_pending(info
->dma
);
409 /* setup and start DMA using dma_addr */
410 wait_for_completion(&info
->comp
);
412 limit
= (loops_per_jiffy
* msecs_to_jiffies(OMAP_NAND_TIMEOUT_MS
));
413 while (gpmc_read_status(GPMC_PREFETCH_COUNT
) && (tim
++ < limit
))
416 /* disable and stop the PFPW engine */
417 gpmc_prefetch_reset(info
->gpmc_cs
);
419 dma_unmap_sg(info
->dma
->device
->dev
, &sg
, 1, dir
);
423 dma_unmap_sg(info
->dma
->device
->dev
, &sg
, 1, dir
);
425 if (info
->nand
.options
& NAND_BUSWIDTH_16
)
426 is_write
== 0 ? omap_read_buf16(mtd
, (u_char
*) addr
, len
)
427 : omap_write_buf16(mtd
, (u_char
*) addr
, len
);
429 is_write
== 0 ? omap_read_buf8(mtd
, (u_char
*) addr
, len
)
430 : omap_write_buf8(mtd
, (u_char
*) addr
, len
);
435 * omap_read_buf_dma_pref - read data from NAND controller into buffer
436 * @mtd: MTD device structure
437 * @buf: buffer to store date
438 * @len: number of bytes to read
440 static void omap_read_buf_dma_pref(struct mtd_info
*mtd
, u_char
*buf
, int len
)
442 if (len
<= mtd
->oobsize
)
443 omap_read_buf_pref(mtd
, buf
, len
);
445 /* start transfer in DMA mode */
446 omap_nand_dma_transfer(mtd
, buf
, len
, 0x0);
450 * omap_write_buf_dma_pref - write buffer to NAND controller
451 * @mtd: MTD device structure
453 * @len: number of bytes to write
455 static void omap_write_buf_dma_pref(struct mtd_info
*mtd
,
456 const u_char
*buf
, int len
)
458 if (len
<= mtd
->oobsize
)
459 omap_write_buf_pref(mtd
, buf
, len
);
461 /* start transfer in DMA mode */
462 omap_nand_dma_transfer(mtd
, (u_char
*) buf
, len
, 0x1);
466 * omap_nand_irq - GMPC irq handler
467 * @this_irq: gpmc irq number
468 * @dev: omap_nand_info structure pointer is passed here
470 static irqreturn_t
omap_nand_irq(int this_irq
, void *dev
)
472 struct omap_nand_info
*info
= (struct omap_nand_info
*) dev
;
476 irq_stat
= gpmc_read_status(GPMC_GET_IRQ_STATUS
);
477 bytes
= gpmc_read_status(GPMC_PREFETCH_FIFO_CNT
);
478 bytes
= bytes
& 0xFFFC; /* io in multiple of 4 bytes */
479 if (info
->iomode
== OMAP_NAND_IO_WRITE
) { /* checks for write io */
483 if (info
->buf_len
&& (info
->buf_len
< bytes
))
484 bytes
= info
->buf_len
;
485 else if (!info
->buf_len
)
487 iowrite32_rep(info
->nand
.IO_ADDR_W
,
488 (u32
*)info
->buf
, bytes
>> 2);
489 info
->buf
= info
->buf
+ bytes
;
490 info
->buf_len
-= bytes
;
493 ioread32_rep(info
->nand
.IO_ADDR_R
,
494 (u32
*)info
->buf
, bytes
>> 2);
495 info
->buf
= info
->buf
+ bytes
;
500 gpmc_cs_configure(info
->gpmc_cs
, GPMC_SET_IRQ_STATUS
, irq_stat
);
505 complete(&info
->comp
);
507 gpmc_cs_configure(info
->gpmc_cs
, GPMC_ENABLE_IRQ
, 0);
510 gpmc_cs_configure(info
->gpmc_cs
, GPMC_SET_IRQ_STATUS
, irq_stat
);
516 * omap_read_buf_irq_pref - read data from NAND controller into buffer
517 * @mtd: MTD device structure
518 * @buf: buffer to store date
519 * @len: number of bytes to read
521 static void omap_read_buf_irq_pref(struct mtd_info
*mtd
, u_char
*buf
, int len
)
523 struct omap_nand_info
*info
= container_of(mtd
,
524 struct omap_nand_info
, mtd
);
527 if (len
<= mtd
->oobsize
) {
528 omap_read_buf_pref(mtd
, buf
, len
);
532 info
->iomode
= OMAP_NAND_IO_READ
;
534 init_completion(&info
->comp
);
536 /* configure and start prefetch transfer */
537 ret
= gpmc_prefetch_enable(info
->gpmc_cs
,
538 PREFETCH_FIFOTHRESHOLD_MAX
/2, 0x0, len
, 0x0);
540 /* PFPW engine is busy, use cpu copy method */
545 gpmc_cs_configure(info
->gpmc_cs
, GPMC_ENABLE_IRQ
,
546 (GPMC_IRQ_FIFOEVENTENABLE
| GPMC_IRQ_COUNT_EVENT
));
548 /* waiting for read to complete */
549 wait_for_completion(&info
->comp
);
551 /* disable and stop the PFPW engine */
552 gpmc_prefetch_reset(info
->gpmc_cs
);
556 if (info
->nand
.options
& NAND_BUSWIDTH_16
)
557 omap_read_buf16(mtd
, buf
, len
);
559 omap_read_buf8(mtd
, buf
, len
);
563 * omap_write_buf_irq_pref - write buffer to NAND controller
564 * @mtd: MTD device structure
566 * @len: number of bytes to write
568 static void omap_write_buf_irq_pref(struct mtd_info
*mtd
,
569 const u_char
*buf
, int len
)
571 struct omap_nand_info
*info
= container_of(mtd
,
572 struct omap_nand_info
, mtd
);
574 unsigned long tim
, limit
;
576 if (len
<= mtd
->oobsize
) {
577 omap_write_buf_pref(mtd
, buf
, len
);
581 info
->iomode
= OMAP_NAND_IO_WRITE
;
582 info
->buf
= (u_char
*) buf
;
583 init_completion(&info
->comp
);
585 /* configure and start prefetch transfer : size=24 */
586 ret
= gpmc_prefetch_enable(info
->gpmc_cs
,
587 (PREFETCH_FIFOTHRESHOLD_MAX
* 3) / 8, 0x0, len
, 0x1);
589 /* PFPW engine is busy, use cpu copy method */
594 gpmc_cs_configure(info
->gpmc_cs
, GPMC_ENABLE_IRQ
,
595 (GPMC_IRQ_FIFOEVENTENABLE
| GPMC_IRQ_COUNT_EVENT
));
597 /* waiting for write to complete */
598 wait_for_completion(&info
->comp
);
599 /* wait for data to flushed-out before reset the prefetch */
601 limit
= (loops_per_jiffy
* msecs_to_jiffies(OMAP_NAND_TIMEOUT_MS
));
602 while (gpmc_read_status(GPMC_PREFETCH_COUNT
) && (tim
++ < limit
))
605 /* disable and stop the PFPW engine */
606 gpmc_prefetch_reset(info
->gpmc_cs
);
610 if (info
->nand
.options
& NAND_BUSWIDTH_16
)
611 omap_write_buf16(mtd
, buf
, len
);
613 omap_write_buf8(mtd
, buf
, len
);
617 * omap_verify_buf - Verify chip data against buffer
618 * @mtd: MTD device structure
619 * @buf: buffer containing the data to compare
620 * @len: number of bytes to compare
622 static int omap_verify_buf(struct mtd_info
*mtd
, const u_char
* buf
, int len
)
624 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
626 u16
*p
= (u16
*) buf
;
630 if (*p
++ != cpu_to_le16(readw(info
->nand
.IO_ADDR_R
)))
638 * gen_true_ecc - This function will generate true ECC value
639 * @ecc_buf: buffer to store ecc code
641 * This generated true ECC value can be used when correcting
642 * data read from NAND flash memory core
644 static void gen_true_ecc(u8
*ecc_buf
)
646 u32 tmp
= ecc_buf
[0] | (ecc_buf
[1] << 16) |
647 ((ecc_buf
[2] & 0xF0) << 20) | ((ecc_buf
[2] & 0x0F) << 8);
649 ecc_buf
[0] = ~(P64o(tmp
) | P64e(tmp
) | P32o(tmp
) | P32e(tmp
) |
650 P16o(tmp
) | P16e(tmp
) | P8o(tmp
) | P8e(tmp
));
651 ecc_buf
[1] = ~(P1024o(tmp
) | P1024e(tmp
) | P512o(tmp
) | P512e(tmp
) |
652 P256o(tmp
) | P256e(tmp
) | P128o(tmp
) | P128e(tmp
));
653 ecc_buf
[2] = ~(P4o(tmp
) | P4e(tmp
) | P2o(tmp
) | P2e(tmp
) | P1o(tmp
) |
654 P1e(tmp
) | P2048o(tmp
) | P2048e(tmp
));
658 * omap_compare_ecc - Detect (2 bits) and correct (1 bit) error in data
659 * @ecc_data1: ecc code from nand spare area
660 * @ecc_data2: ecc code from hardware register obtained from hardware ecc
661 * @page_data: page data
663 * This function compares two ECC's and indicates if there is an error.
664 * If the error can be corrected it will be corrected to the buffer.
665 * If there is no error, %0 is returned. If there is an error but it
666 * was corrected, %1 is returned. Otherwise, %-1 is returned.
668 static int omap_compare_ecc(u8
*ecc_data1
, /* read from NAND memory */
669 u8
*ecc_data2
, /* read from register */
673 u8 tmp0_bit
[8], tmp1_bit
[8], tmp2_bit
[8];
674 u8 comp0_bit
[8], comp1_bit
[8], comp2_bit
[8];
681 isEccFF
= ((*(u32
*)ecc_data1
& 0xFFFFFF) == 0xFFFFFF);
683 gen_true_ecc(ecc_data1
);
684 gen_true_ecc(ecc_data2
);
686 for (i
= 0; i
<= 2; i
++) {
687 *(ecc_data1
+ i
) = ~(*(ecc_data1
+ i
));
688 *(ecc_data2
+ i
) = ~(*(ecc_data2
+ i
));
691 for (i
= 0; i
< 8; i
++) {
692 tmp0_bit
[i
] = *ecc_data1
% 2;
693 *ecc_data1
= *ecc_data1
/ 2;
696 for (i
= 0; i
< 8; i
++) {
697 tmp1_bit
[i
] = *(ecc_data1
+ 1) % 2;
698 *(ecc_data1
+ 1) = *(ecc_data1
+ 1) / 2;
701 for (i
= 0; i
< 8; i
++) {
702 tmp2_bit
[i
] = *(ecc_data1
+ 2) % 2;
703 *(ecc_data1
+ 2) = *(ecc_data1
+ 2) / 2;
706 for (i
= 0; i
< 8; i
++) {
707 comp0_bit
[i
] = *ecc_data2
% 2;
708 *ecc_data2
= *ecc_data2
/ 2;
711 for (i
= 0; i
< 8; i
++) {
712 comp1_bit
[i
] = *(ecc_data2
+ 1) % 2;
713 *(ecc_data2
+ 1) = *(ecc_data2
+ 1) / 2;
716 for (i
= 0; i
< 8; i
++) {
717 comp2_bit
[i
] = *(ecc_data2
+ 2) % 2;
718 *(ecc_data2
+ 2) = *(ecc_data2
+ 2) / 2;
721 for (i
= 0; i
< 6; i
++)
722 ecc_bit
[i
] = tmp2_bit
[i
+ 2] ^ comp2_bit
[i
+ 2];
724 for (i
= 0; i
< 8; i
++)
725 ecc_bit
[i
+ 6] = tmp0_bit
[i
] ^ comp0_bit
[i
];
727 for (i
= 0; i
< 8; i
++)
728 ecc_bit
[i
+ 14] = tmp1_bit
[i
] ^ comp1_bit
[i
];
730 ecc_bit
[22] = tmp2_bit
[0] ^ comp2_bit
[0];
731 ecc_bit
[23] = tmp2_bit
[1] ^ comp2_bit
[1];
733 for (i
= 0; i
< 24; i
++)
734 ecc_sum
+= ecc_bit
[i
];
738 /* Not reached because this function is not called if
739 * ECC values are equal
744 /* Uncorrectable error */
745 pr_debug("ECC UNCORRECTED_ERROR 1\n");
749 /* UN-Correctable error */
750 pr_debug("ECC UNCORRECTED_ERROR B\n");
754 /* Correctable error */
755 find_byte
= (ecc_bit
[23] << 8) +
765 find_bit
= (ecc_bit
[5] << 2) + (ecc_bit
[3] << 1) + ecc_bit
[1];
767 pr_debug("Correcting single bit ECC error at offset: "
768 "%d, bit: %d\n", find_byte
, find_bit
);
770 page_data
[find_byte
] ^= (1 << find_bit
);
775 if (ecc_data2
[0] == 0 &&
780 pr_debug("UNCORRECTED_ERROR default\n");
786 * omap_correct_data - Compares the ECC read with HW generated ECC
787 * @mtd: MTD device structure
789 * @read_ecc: ecc read from nand flash
790 * @calc_ecc: ecc read from HW ECC registers
792 * Compares the ecc read from nand spare area with ECC registers values
793 * and if ECC's mismatched, it will call 'omap_compare_ecc' for error
794 * detection and correction. If there are no errors, %0 is returned. If
795 * there were errors and all of the errors were corrected, the number of
796 * corrected errors is returned. If uncorrectable errors exist, %-1 is
799 static int omap_correct_data(struct mtd_info
*mtd
, u_char
*dat
,
800 u_char
*read_ecc
, u_char
*calc_ecc
)
802 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
804 int blockCnt
= 0, i
= 0, ret
= 0;
807 /* Ex NAND_ECC_HW12_2048 */
808 if ((info
->nand
.ecc
.mode
== NAND_ECC_HW
) &&
809 (info
->nand
.ecc
.size
== 2048))
814 for (i
= 0; i
< blockCnt
; i
++) {
815 if (memcmp(read_ecc
, calc_ecc
, 3) != 0) {
816 ret
= omap_compare_ecc(read_ecc
, calc_ecc
, dat
);
819 /* keep track of the number of corrected errors */
830 * omap_calcuate_ecc - Generate non-inverted ECC bytes.
831 * @mtd: MTD device structure
832 * @dat: The pointer to data on which ecc is computed
833 * @ecc_code: The ecc_code buffer
835 * Using noninverted ECC can be considered ugly since writing a blank
836 * page ie. padding will clear the ECC bytes. This is no problem as long
837 * nobody is trying to write data on the seemingly unused page. Reading
838 * an erased page will produce an ECC mismatch between generated and read
839 * ECC bytes that has to be dealt with separately.
841 static int omap_calculate_ecc(struct mtd_info
*mtd
, const u_char
*dat
,
844 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
846 return gpmc_calculate_ecc(info
->gpmc_cs
, dat
, ecc_code
);
850 * omap_enable_hwecc - This function enables the hardware ecc functionality
851 * @mtd: MTD device structure
852 * @mode: Read/Write mode
854 static void omap_enable_hwecc(struct mtd_info
*mtd
, int mode
)
856 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
858 struct nand_chip
*chip
= mtd
->priv
;
859 unsigned int dev_width
= (chip
->options
& NAND_BUSWIDTH_16
) ? 1 : 0;
861 gpmc_enable_hwecc(info
->gpmc_cs
, mode
, dev_width
, info
->nand
.ecc
.size
);
865 * omap_wait - wait until the command is done
866 * @mtd: MTD device structure
867 * @chip: NAND Chip structure
869 * Wait function is called during Program and erase operations and
870 * the way it is called from MTD layer, we should wait till the NAND
871 * chip is ready after the programming/erase operation has completed.
873 * Erase can take up to 400ms and program up to 20ms according to
874 * general NAND and SmartMedia specs
876 static int omap_wait(struct mtd_info
*mtd
, struct nand_chip
*chip
)
878 struct nand_chip
*this = mtd
->priv
;
879 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
881 unsigned long timeo
= jiffies
;
882 int status
, state
= this->state
;
884 if (state
== FL_ERASING
)
885 timeo
+= (HZ
* 400) / 1000;
887 timeo
+= (HZ
* 20) / 1000;
889 gpmc_nand_write(info
->gpmc_cs
,
890 GPMC_NAND_COMMAND
, (NAND_CMD_STATUS
& 0xFF));
891 while (time_before(jiffies
, timeo
)) {
892 status
= gpmc_nand_read(info
->gpmc_cs
, GPMC_NAND_DATA
);
893 if (status
& NAND_STATUS_READY
)
898 status
= gpmc_nand_read(info
->gpmc_cs
, GPMC_NAND_DATA
);
903 * omap_dev_ready - calls the platform specific dev_ready function
904 * @mtd: MTD device structure
906 static int omap_dev_ready(struct mtd_info
*mtd
)
908 unsigned int val
= 0;
909 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
912 val
= gpmc_read_status(GPMC_GET_IRQ_STATUS
);
913 if ((val
& 0x100) == 0x100) {
914 /* Clear IRQ Interrupt */
917 gpmc_cs_configure(info
->gpmc_cs
, GPMC_SET_IRQ_STATUS
, val
);
919 unsigned int cnt
= 0;
920 while (cnt
++ < 0x1FF) {
921 if ((val
& 0x100) == 0x100)
923 val
= gpmc_read_status(GPMC_GET_IRQ_STATUS
);
930 #ifdef CONFIG_MTD_NAND_OMAP_BCH
933 * omap3_enable_hwecc_bch - Program OMAP3 GPMC to perform BCH ECC correction
934 * @mtd: MTD device structure
935 * @mode: Read/Write mode
937 static void omap3_enable_hwecc_bch(struct mtd_info
*mtd
, int mode
)
940 unsigned int dev_width
;
941 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
943 struct nand_chip
*chip
= mtd
->priv
;
945 nerrors
= (info
->nand
.ecc
.bytes
== 13) ? 8 : 4;
946 dev_width
= (chip
->options
& NAND_BUSWIDTH_16
) ? 1 : 0;
948 * Program GPMC to perform correction on one 512-byte sector at a time.
949 * Using 4 sectors at a time (i.e. ecc.size = 2048) is also possible and
950 * gives a slight (5%) performance gain (but requires additional code).
952 (void)gpmc_enable_hwecc_bch(info
->gpmc_cs
, mode
, dev_width
, 1, nerrors
);
956 * omap3_calculate_ecc_bch4 - Generate 7 bytes of ECC bytes
957 * @mtd: MTD device structure
958 * @dat: The pointer to data on which ecc is computed
959 * @ecc_code: The ecc_code buffer
961 static int omap3_calculate_ecc_bch4(struct mtd_info
*mtd
, const u_char
*dat
,
964 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
966 return gpmc_calculate_ecc_bch4(info
->gpmc_cs
, dat
, ecc_code
);
970 * omap3_calculate_ecc_bch8 - Generate 13 bytes of ECC bytes
971 * @mtd: MTD device structure
972 * @dat: The pointer to data on which ecc is computed
973 * @ecc_code: The ecc_code buffer
975 static int omap3_calculate_ecc_bch8(struct mtd_info
*mtd
, const u_char
*dat
,
978 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
980 return gpmc_calculate_ecc_bch8(info
->gpmc_cs
, dat
, ecc_code
);
984 * omap3_correct_data_bch - Decode received data and correct errors
985 * @mtd: MTD device structure
987 * @read_ecc: ecc read from nand flash
988 * @calc_ecc: ecc read from HW ECC registers
990 static int omap3_correct_data_bch(struct mtd_info
*mtd
, u_char
*data
,
991 u_char
*read_ecc
, u_char
*calc_ecc
)
994 /* cannot correct more than 8 errors */
995 unsigned int errloc
[8];
996 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
999 count
= decode_bch(info
->bch
, NULL
, 512, read_ecc
, calc_ecc
, NULL
,
1002 /* correct errors */
1003 for (i
= 0; i
< count
; i
++) {
1004 /* correct data only, not ecc bytes */
1005 if (errloc
[i
] < 8*512)
1006 data
[errloc
[i
]/8] ^= 1 << (errloc
[i
] & 7);
1007 pr_debug("corrected bitflip %u\n", errloc
[i
]);
1009 } else if (count
< 0) {
1010 pr_err("ecc unrecoverable error\n");
1016 * omap3_free_bch - Release BCH ecc resources
1017 * @mtd: MTD device structure
1019 static void omap3_free_bch(struct mtd_info
*mtd
)
1021 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
1024 free_bch(info
->bch
);
1030 * omap3_init_bch - Initialize BCH ECC
1031 * @mtd: MTD device structure
1032 * @ecc_opt: OMAP ECC mode (OMAP_ECC_BCH4_CODE_HW or OMAP_ECC_BCH8_CODE_HW)
1034 static int omap3_init_bch(struct mtd_info
*mtd
, int ecc_opt
)
1036 int ret
, max_errors
;
1037 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
1039 #ifdef CONFIG_MTD_NAND_OMAP_BCH8
1040 const int hw_errors
= 8;
1042 const int hw_errors
= 4;
1046 max_errors
= (ecc_opt
== OMAP_ECC_BCH8_CODE_HW
) ? 8 : 4;
1047 if (max_errors
!= hw_errors
) {
1048 pr_err("cannot configure %d-bit BCH ecc, only %d-bit supported",
1049 max_errors
, hw_errors
);
1053 /* initialize GPMC BCH engine */
1054 ret
= gpmc_init_hwecc_bch(info
->gpmc_cs
, 1, max_errors
);
1058 /* software bch library is only used to detect and locate errors */
1059 info
->bch
= init_bch(13, max_errors
, 0x201b /* hw polynomial */);
1063 info
->nand
.ecc
.size
= 512;
1064 info
->nand
.ecc
.hwctl
= omap3_enable_hwecc_bch
;
1065 info
->nand
.ecc
.correct
= omap3_correct_data_bch
;
1066 info
->nand
.ecc
.mode
= NAND_ECC_HW
;
1069 * The number of corrected errors in an ecc block that will trigger
1070 * block scrubbing defaults to the ecc strength (4 or 8).
1071 * Set mtd->bitflip_threshold here to define a custom threshold.
1074 if (max_errors
== 8) {
1075 info
->nand
.ecc
.strength
= 8;
1076 info
->nand
.ecc
.bytes
= 13;
1077 info
->nand
.ecc
.calculate
= omap3_calculate_ecc_bch8
;
1079 info
->nand
.ecc
.strength
= 4;
1080 info
->nand
.ecc
.bytes
= 7;
1081 info
->nand
.ecc
.calculate
= omap3_calculate_ecc_bch4
;
1084 pr_info("enabling NAND BCH ecc with %d-bit correction\n", max_errors
);
1087 omap3_free_bch(mtd
);
1092 * omap3_init_bch_tail - Build an oob layout for BCH ECC correction.
1093 * @mtd: MTD device structure
1095 static int omap3_init_bch_tail(struct mtd_info
*mtd
)
1098 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
1100 struct nand_ecclayout
*layout
= &info
->ecclayout
;
1102 /* build oob layout */
1103 steps
= mtd
->writesize
/info
->nand
.ecc
.size
;
1104 layout
->eccbytes
= steps
*info
->nand
.ecc
.bytes
;
1106 /* do not bother creating special oob layouts for small page devices */
1107 if (mtd
->oobsize
< 64) {
1108 pr_err("BCH ecc is not supported on small page devices\n");
1112 /* reserve 2 bytes for bad block marker */
1113 if (layout
->eccbytes
+2 > mtd
->oobsize
) {
1114 pr_err("no oob layout available for oobsize %d eccbytes %u\n",
1115 mtd
->oobsize
, layout
->eccbytes
);
1119 /* put ecc bytes at oob tail */
1120 for (i
= 0; i
< layout
->eccbytes
; i
++)
1121 layout
->eccpos
[i
] = mtd
->oobsize
-layout
->eccbytes
+i
;
1123 layout
->oobfree
[0].offset
= 2;
1124 layout
->oobfree
[0].length
= mtd
->oobsize
-2-layout
->eccbytes
;
1125 info
->nand
.ecc
.layout
= layout
;
1127 if (!(info
->nand
.options
& NAND_BUSWIDTH_16
))
1128 info
->nand
.badblock_pattern
= &bb_descrip_flashbased
;
1131 omap3_free_bch(mtd
);
1136 static int omap3_init_bch(struct mtd_info
*mtd
, int ecc_opt
)
1138 pr_err("CONFIG_MTD_NAND_OMAP_BCH is not enabled\n");
1141 static int omap3_init_bch_tail(struct mtd_info
*mtd
)
1145 static void omap3_free_bch(struct mtd_info
*mtd
)
1148 #endif /* CONFIG_MTD_NAND_OMAP_BCH */
1150 static int __devinit
omap_nand_probe(struct platform_device
*pdev
)
1152 struct omap_nand_info
*info
;
1153 struct omap_nand_platform_data
*pdata
;
1156 dma_cap_mask_t mask
;
1159 pdata
= pdev
->dev
.platform_data
;
1160 if (pdata
== NULL
) {
1161 dev_err(&pdev
->dev
, "platform data missing\n");
1165 info
= kzalloc(sizeof(struct omap_nand_info
), GFP_KERNEL
);
1169 platform_set_drvdata(pdev
, info
);
1171 spin_lock_init(&info
->controller
.lock
);
1172 init_waitqueue_head(&info
->controller
.wq
);
1176 info
->gpmc_cs
= pdata
->cs
;
1177 info
->phys_base
= pdata
->phys_base
;
1179 info
->mtd
.priv
= &info
->nand
;
1180 info
->mtd
.name
= dev_name(&pdev
->dev
);
1181 info
->mtd
.owner
= THIS_MODULE
;
1183 info
->nand
.options
= pdata
->devsize
;
1184 info
->nand
.options
|= NAND_SKIP_BBTSCAN
;
1186 /* NAND write protect off */
1187 gpmc_cs_configure(info
->gpmc_cs
, GPMC_CONFIG_WP
, 0);
1189 if (!request_mem_region(info
->phys_base
, NAND_IO_SIZE
,
1190 pdev
->dev
.driver
->name
)) {
1195 info
->nand
.IO_ADDR_R
= ioremap(info
->phys_base
, NAND_IO_SIZE
);
1196 if (!info
->nand
.IO_ADDR_R
) {
1198 goto out_release_mem_region
;
1201 info
->nand
.controller
= &info
->controller
;
1203 info
->nand
.IO_ADDR_W
= info
->nand
.IO_ADDR_R
;
1204 info
->nand
.cmd_ctrl
= omap_hwcontrol
;
1207 * If RDY/BSY line is connected to OMAP then use the omap ready
1208 * funcrtion and the generic nand_wait function which reads the status
1209 * register after monitoring the RDY/BSY line.Otherwise use a standard
1210 * chip delay which is slightly more than tR (AC Timing) of the NAND
1211 * device and read status register until you get a failure or success
1213 if (pdata
->dev_ready
) {
1214 info
->nand
.dev_ready
= omap_dev_ready
;
1215 info
->nand
.chip_delay
= 0;
1217 info
->nand
.waitfunc
= omap_wait
;
1218 info
->nand
.chip_delay
= 50;
1221 switch (pdata
->xfer_type
) {
1222 case NAND_OMAP_PREFETCH_POLLED
:
1223 info
->nand
.read_buf
= omap_read_buf_pref
;
1224 info
->nand
.write_buf
= omap_write_buf_pref
;
1227 case NAND_OMAP_POLLED
:
1228 if (info
->nand
.options
& NAND_BUSWIDTH_16
) {
1229 info
->nand
.read_buf
= omap_read_buf16
;
1230 info
->nand
.write_buf
= omap_write_buf16
;
1232 info
->nand
.read_buf
= omap_read_buf8
;
1233 info
->nand
.write_buf
= omap_write_buf8
;
1237 case NAND_OMAP_PREFETCH_DMA
:
1239 dma_cap_set(DMA_SLAVE
, mask
);
1240 sig
= OMAP24XX_DMA_GPMC
;
1241 info
->dma
= dma_request_channel(mask
, omap_dma_filter_fn
, &sig
);
1243 dev_err(&pdev
->dev
, "DMA engine request failed\n");
1245 goto out_release_mem_region
;
1247 struct dma_slave_config cfg
;
1250 memset(&cfg
, 0, sizeof(cfg
));
1251 cfg
.src_addr
= info
->phys_base
;
1252 cfg
.dst_addr
= info
->phys_base
;
1253 cfg
.src_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
1254 cfg
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
1255 cfg
.src_maxburst
= 16;
1256 cfg
.dst_maxburst
= 16;
1257 rc
= dmaengine_slave_config(info
->dma
, &cfg
);
1259 dev_err(&pdev
->dev
, "DMA engine slave config failed: %d\n",
1261 goto out_release_mem_region
;
1263 info
->nand
.read_buf
= omap_read_buf_dma_pref
;
1264 info
->nand
.write_buf
= omap_write_buf_dma_pref
;
1268 case NAND_OMAP_PREFETCH_IRQ
:
1269 err
= request_irq(pdata
->gpmc_irq
,
1270 omap_nand_irq
, IRQF_SHARED
, "gpmc-nand", info
);
1272 dev_err(&pdev
->dev
, "requesting irq(%d) error:%d",
1273 pdata
->gpmc_irq
, err
);
1274 goto out_release_mem_region
;
1276 info
->gpmc_irq
= pdata
->gpmc_irq
;
1277 info
->nand
.read_buf
= omap_read_buf_irq_pref
;
1278 info
->nand
.write_buf
= omap_write_buf_irq_pref
;
1284 "xfer_type(%d) not supported!\n", pdata
->xfer_type
);
1286 goto out_release_mem_region
;
1289 info
->nand
.verify_buf
= omap_verify_buf
;
1291 /* selsect the ecc type */
1292 if (pdata
->ecc_opt
== OMAP_ECC_HAMMING_CODE_DEFAULT
)
1293 info
->nand
.ecc
.mode
= NAND_ECC_SOFT
;
1294 else if ((pdata
->ecc_opt
== OMAP_ECC_HAMMING_CODE_HW
) ||
1295 (pdata
->ecc_opt
== OMAP_ECC_HAMMING_CODE_HW_ROMCODE
)) {
1296 info
->nand
.ecc
.bytes
= 3;
1297 info
->nand
.ecc
.size
= 512;
1298 info
->nand
.ecc
.strength
= 1;
1299 info
->nand
.ecc
.calculate
= omap_calculate_ecc
;
1300 info
->nand
.ecc
.hwctl
= omap_enable_hwecc
;
1301 info
->nand
.ecc
.correct
= omap_correct_data
;
1302 info
->nand
.ecc
.mode
= NAND_ECC_HW
;
1303 } else if ((pdata
->ecc_opt
== OMAP_ECC_BCH4_CODE_HW
) ||
1304 (pdata
->ecc_opt
== OMAP_ECC_BCH8_CODE_HW
)) {
1305 err
= omap3_init_bch(&info
->mtd
, pdata
->ecc_opt
);
1308 goto out_release_mem_region
;
1312 /* DIP switches on some boards change between 8 and 16 bit
1313 * bus widths for flash. Try the other width if the first try fails.
1315 if (nand_scan_ident(&info
->mtd
, 1, NULL
)) {
1316 info
->nand
.options
^= NAND_BUSWIDTH_16
;
1317 if (nand_scan_ident(&info
->mtd
, 1, NULL
)) {
1319 goto out_release_mem_region
;
1323 /* rom code layout */
1324 if (pdata
->ecc_opt
== OMAP_ECC_HAMMING_CODE_HW_ROMCODE
) {
1326 if (info
->nand
.options
& NAND_BUSWIDTH_16
)
1330 info
->nand
.badblock_pattern
= &bb_descrip_flashbased
;
1332 omap_oobinfo
.eccbytes
= 3 * (info
->mtd
.oobsize
/16);
1333 for (i
= 0; i
< omap_oobinfo
.eccbytes
; i
++)
1334 omap_oobinfo
.eccpos
[i
] = i
+offset
;
1336 omap_oobinfo
.oobfree
->offset
= offset
+ omap_oobinfo
.eccbytes
;
1337 omap_oobinfo
.oobfree
->length
= info
->mtd
.oobsize
-
1338 (offset
+ omap_oobinfo
.eccbytes
);
1340 info
->nand
.ecc
.layout
= &omap_oobinfo
;
1341 } else if ((pdata
->ecc_opt
== OMAP_ECC_BCH4_CODE_HW
) ||
1342 (pdata
->ecc_opt
== OMAP_ECC_BCH8_CODE_HW
)) {
1343 /* build OOB layout for BCH ECC correction */
1344 err
= omap3_init_bch_tail(&info
->mtd
);
1347 goto out_release_mem_region
;
1351 /* second phase scan */
1352 if (nand_scan_tail(&info
->mtd
)) {
1354 goto out_release_mem_region
;
1357 mtd_device_parse_register(&info
->mtd
, NULL
, NULL
, pdata
->parts
,
1360 platform_set_drvdata(pdev
, &info
->mtd
);
1364 out_release_mem_region
:
1366 dma_release_channel(info
->dma
);
1367 release_mem_region(info
->phys_base
, NAND_IO_SIZE
);
1374 static int omap_nand_remove(struct platform_device
*pdev
)
1376 struct mtd_info
*mtd
= platform_get_drvdata(pdev
);
1377 struct omap_nand_info
*info
= container_of(mtd
, struct omap_nand_info
,
1379 omap3_free_bch(&info
->mtd
);
1381 platform_set_drvdata(pdev
, NULL
);
1383 dma_release_channel(info
->dma
);
1386 free_irq(info
->gpmc_irq
, info
);
1388 /* Release NAND device, its internal structures and partitions */
1389 nand_release(&info
->mtd
);
1390 iounmap(info
->nand
.IO_ADDR_R
);
1395 static struct platform_driver omap_nand_driver
= {
1396 .probe
= omap_nand_probe
,
1397 .remove
= omap_nand_remove
,
1399 .name
= DRIVER_NAME
,
1400 .owner
= THIS_MODULE
,
1404 module_platform_driver(omap_nand_driver
);
1406 MODULE_ALIAS("platform:" DRIVER_NAME
);
1407 MODULE_LICENSE("GPL");
1408 MODULE_DESCRIPTION("Glue layer for NAND flash on TI OMAP boards");