1 /* linux/drivers/mtd/nand/bf5xx_nand.c
3 * Copyright 2006-2008 Analog Devices Inc.
4 * http://blackfin.uclinux.org/
5 * Bryan Wu <bryan.wu@analog.com>
7 * Blackfin BF5xx on-chip NAND flash controller driver
9 * Derived from drivers/mtd/nand/s3c2410.c
10 * Copyright (c) 2007 Ben Dooks <ben@simtec.co.uk>
12 * Derived from drivers/mtd/nand/cafe.c
13 * Copyright © 2006 Red Hat, Inc.
14 * Copyright © 2006 David Woodhouse <dwmw2@infradead.org>
17 * 12-Jun-2007 Bryan Wu: Initial version
18 * 18-Jul-2007 Bryan Wu:
19 * - ECC_HW and ECC_SW supported
20 * - DMA supported in ECC_HW
21 * - YAFFS tested as rootfs in both ECC_HW and ECC_SW
23 * This program is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; either version 2 of the License, or
26 * (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
33 * You should have received a copy of the GNU General Public License
34 * along with this program; if not, write to the Free Software
35 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
38 #include <linux/module.h>
39 #include <linux/types.h>
40 #include <linux/init.h>
41 #include <linux/kernel.h>
42 #include <linux/string.h>
43 #include <linux/ioport.h>
44 #include <linux/platform_device.h>
45 #include <linux/delay.h>
46 #include <linux/dma-mapping.h>
47 #include <linux/err.h>
48 #include <linux/slab.h>
50 #include <linux/bitops.h>
52 #include <linux/mtd/mtd.h>
53 #include <linux/mtd/nand.h>
54 #include <linux/mtd/nand_ecc.h>
55 #include <linux/mtd/partitions.h>
57 #include <asm/blackfin.h>
59 #include <asm/cacheflush.h>
61 #include <asm/portmux.h>
63 #define DRV_NAME "bf5xx-nand"
64 #define DRV_VERSION "1.2"
65 #define DRV_AUTHOR "Bryan Wu <bryan.wu@analog.com>"
66 #define DRV_DESC "BF5xx on-chip NAND FLash Controller Driver"
69 #define NBUSY 0x01 /* Not Busy */
70 #define WB_FULL 0x02 /* Write Buffer Full */
71 #define PG_WR_STAT 0x04 /* Page Write Pending */
72 #define PG_RD_STAT 0x08 /* Page Read Pending */
73 #define WB_EMPTY 0x10 /* Write Buffer Empty */
75 /* NFC_IRQSTAT Masks */
76 #define NBUSYIRQ 0x01 /* Not Busy IRQ */
77 #define WB_OVF 0x02 /* Write Buffer Overflow */
78 #define WB_EDGE 0x04 /* Write Buffer Edge Detect */
79 #define RD_RDY 0x08 /* Read Data Ready */
80 #define WR_DONE 0x10 /* Page Write Done */
83 #define ECC_RST 0x01 /* ECC (and NFC counters) Reset */
86 #define PG_RD_START 0x01 /* Page Read Start */
87 #define PG_WR_START 0x02 /* Page Write Start */
89 #ifdef CONFIG_MTD_NAND_BF5XX_HWECC
90 static int hardware_ecc
= 1;
92 static int hardware_ecc
;
95 static const unsigned short bfin_nfc_pin_req
[] =
112 #ifdef CONFIG_MTD_NAND_BF5XX_BOOTROM_ECC
113 static struct nand_ecclayout bootrom_ecclayout
= {
116 0x8 * 0, 0x8 * 0 + 1, 0x8 * 0 + 2,
117 0x8 * 1, 0x8 * 1 + 1, 0x8 * 1 + 2,
118 0x8 * 2, 0x8 * 2 + 1, 0x8 * 2 + 2,
119 0x8 * 3, 0x8 * 3 + 1, 0x8 * 3 + 2,
120 0x8 * 4, 0x8 * 4 + 1, 0x8 * 4 + 2,
121 0x8 * 5, 0x8 * 5 + 1, 0x8 * 5 + 2,
122 0x8 * 6, 0x8 * 6 + 1, 0x8 * 6 + 2,
123 0x8 * 7, 0x8 * 7 + 1, 0x8 * 7 + 2
139 * Data structures for bf5xx nand flash controller driver
142 /* bf5xx nand info */
143 struct bf5xx_nand_info
{
145 struct nand_hw_control controller
;
147 struct nand_chip chip
;
150 struct bf5xx_nand_platform
*platform
;
153 struct device
*device
;
156 struct completion dma_completion
;
160 * Conversion functions
162 static struct bf5xx_nand_info
*mtd_to_nand_info(struct mtd_info
*mtd
)
164 return container_of(mtd
, struct bf5xx_nand_info
, mtd
);
167 static struct bf5xx_nand_info
*to_nand_info(struct platform_device
*pdev
)
169 return platform_get_drvdata(pdev
);
172 static struct bf5xx_nand_platform
*to_nand_plat(struct platform_device
*pdev
)
174 return pdev
->dev
.platform_data
;
178 * struct nand_chip interface function pointers
182 * bf5xx_nand_hwcontrol
184 * Issue command and address cycles to the chip
186 static void bf5xx_nand_hwcontrol(struct mtd_info
*mtd
, int cmd
,
189 if (cmd
== NAND_CMD_NONE
)
192 while (bfin_read_NFC_STAT() & WB_FULL
)
196 bfin_write_NFC_CMD(cmd
);
197 else if (ctrl
& NAND_ALE
)
198 bfin_write_NFC_ADDR(cmd
);
203 * bf5xx_nand_devready()
205 * returns 0 if the nand is busy, 1 if it is ready
207 static int bf5xx_nand_devready(struct mtd_info
*mtd
)
209 unsigned short val
= bfin_read_NFC_STAT();
211 if ((val
& NBUSY
) == NBUSY
)
219 * These allow the bf5xx to use the controller's ECC
220 * generator block to ECC the data as it passes through
224 * ECC error correction function
226 static int bf5xx_nand_correct_data_256(struct mtd_info
*mtd
, u_char
*dat
,
227 u_char
*read_ecc
, u_char
*calc_ecc
)
229 struct bf5xx_nand_info
*info
= mtd_to_nand_info(mtd
);
233 unsigned short failing_bit
, failing_byte
;
236 calced
= calc_ecc
[0] | (calc_ecc
[1] << 8) | (calc_ecc
[2] << 16);
237 stored
= read_ecc
[0] | (read_ecc
[1] << 8) | (read_ecc
[2] << 16);
239 syndrome
[0] = (calced
^ stored
);
242 * syndrome 0: all zero
246 if (!syndrome
[0] || !calced
|| !stored
)
250 * sysdrome 0: only one bit is one
251 * ECC data was incorrect
254 if (hweight32(syndrome
[0]) == 1) {
255 dev_err(info
->device
, "ECC data was incorrect!\n");
259 syndrome
[1] = (calced
& 0x7FF) ^ (stored
& 0x7FF);
260 syndrome
[2] = (calced
& 0x7FF) ^ ((calced
>> 11) & 0x7FF);
261 syndrome
[3] = (stored
& 0x7FF) ^ ((stored
>> 11) & 0x7FF);
262 syndrome
[4] = syndrome
[2] ^ syndrome
[3];
264 for (i
= 0; i
< 5; i
++)
265 dev_info(info
->device
, "syndrome[%d] 0x%08x\n", i
, syndrome
[i
]);
267 dev_info(info
->device
,
268 "calced[0x%08x], stored[0x%08x]\n",
272 * sysdrome 0: exactly 11 bits are one, each parity
273 * and parity' pair is 1 & 0 or 0 & 1.
274 * 1-bit correctable error
277 if (hweight32(syndrome
[0]) == 11 && syndrome
[4] == 0x7FF) {
278 dev_info(info
->device
,
279 "1-bit correctable error, correct it.\n");
280 dev_info(info
->device
,
281 "syndrome[1] 0x%08x\n", syndrome
[1]);
283 failing_bit
= syndrome
[1] & 0x7;
284 failing_byte
= syndrome
[1] >> 0x3;
285 data
= *(dat
+ failing_byte
);
286 data
= data
^ (0x1 << failing_bit
);
287 *(dat
+ failing_byte
) = data
;
293 * sysdrome 0: random data
294 * More than 1-bit error, non-correctable error
295 * Discard data, mark bad block
297 dev_err(info
->device
,
298 "More than 1-bit error, non-correctable error.\n");
299 dev_err(info
->device
,
300 "Please discard data, mark bad block\n");
305 static int bf5xx_nand_correct_data(struct mtd_info
*mtd
, u_char
*dat
,
306 u_char
*read_ecc
, u_char
*calc_ecc
)
308 struct nand_chip
*chip
= mtd
->priv
;
311 ret
= bf5xx_nand_correct_data_256(mtd
, dat
, read_ecc
, calc_ecc
);
313 /* If ecc size is 512, correct second 256 bytes */
314 if (chip
->ecc
.size
== 512) {
318 ret
|= bf5xx_nand_correct_data_256(mtd
, dat
, read_ecc
, calc_ecc
);
324 static void bf5xx_nand_enable_hwecc(struct mtd_info
*mtd
, int mode
)
329 static int bf5xx_nand_calculate_ecc(struct mtd_info
*mtd
,
330 const u_char
*dat
, u_char
*ecc_code
)
332 struct bf5xx_nand_info
*info
= mtd_to_nand_info(mtd
);
333 struct nand_chip
*chip
= mtd
->priv
;
338 /* first 3 bytes ECC code for 256 page size */
339 ecc0
= bfin_read_NFC_ECC0();
340 ecc1
= bfin_read_NFC_ECC1();
342 code
[0] = (ecc0
& 0x7ff) | ((ecc1
& 0x7ff) << 11);
344 dev_dbg(info
->device
, "returning ecc 0x%08x\n", code
[0]);
347 memcpy(ecc_code
, p
, 3);
349 /* second 3 bytes ECC code for 512 ecc size */
350 if (chip
->ecc
.size
== 512) {
351 ecc0
= bfin_read_NFC_ECC2();
352 ecc1
= bfin_read_NFC_ECC3();
353 code
[1] = (ecc0
& 0x7ff) | ((ecc1
& 0x7ff) << 11);
355 /* second 3 bytes in ecc_code for second 256
356 * bytes of 512 page size
358 p
= (u8
*) (code
+ 1);
359 memcpy((ecc_code
+ 3), p
, 3);
360 dev_dbg(info
->device
, "returning ecc 0x%08x\n", code
[1]);
367 * PIO mode for buffer writing and reading
369 static void bf5xx_nand_read_buf(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
375 * Data reads are requested by first writing to NFC_DATA_RD
376 * and then reading back from NFC_READ.
378 for (i
= 0; i
< len
; i
++) {
379 while (bfin_read_NFC_STAT() & WB_FULL
)
382 /* Contents do not matter */
383 bfin_write_NFC_DATA_RD(0x0000);
386 while ((bfin_read_NFC_IRQSTAT() & RD_RDY
) != RD_RDY
)
389 buf
[i
] = bfin_read_NFC_READ();
391 val
= bfin_read_NFC_IRQSTAT();
393 bfin_write_NFC_IRQSTAT(val
);
398 static uint8_t bf5xx_nand_read_byte(struct mtd_info
*mtd
)
402 bf5xx_nand_read_buf(mtd
, &val
, 1);
407 static void bf5xx_nand_write_buf(struct mtd_info
*mtd
,
408 const uint8_t *buf
, int len
)
412 for (i
= 0; i
< len
; i
++) {
413 while (bfin_read_NFC_STAT() & WB_FULL
)
416 bfin_write_NFC_DATA_WR(buf
[i
]);
421 static void bf5xx_nand_read_buf16(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
424 u16
*p
= (u16
*) buf
;
428 * Data reads are requested by first writing to NFC_DATA_RD
429 * and then reading back from NFC_READ.
431 bfin_write_NFC_DATA_RD(0x5555);
435 for (i
= 0; i
< len
; i
++)
436 p
[i
] = bfin_read_NFC_READ();
439 static void bf5xx_nand_write_buf16(struct mtd_info
*mtd
,
440 const uint8_t *buf
, int len
)
443 u16
*p
= (u16
*) buf
;
446 for (i
= 0; i
< len
; i
++)
447 bfin_write_NFC_DATA_WR(p
[i
]);
453 * DMA functions for buffer writing and reading
455 static irqreturn_t
bf5xx_nand_dma_irq(int irq
, void *dev_id
)
457 struct bf5xx_nand_info
*info
= dev_id
;
459 clear_dma_irqstat(CH_NFC
);
461 complete(&info
->dma_completion
);
466 static void bf5xx_nand_dma_rw(struct mtd_info
*mtd
,
467 uint8_t *buf
, int is_read
)
469 struct bf5xx_nand_info
*info
= mtd_to_nand_info(mtd
);
470 struct nand_chip
*chip
= mtd
->priv
;
473 dev_dbg(info
->device
, " mtd->%p, buf->%p, is_read %d\n",
477 * Before starting a dma transfer, be sure to invalidate/flush
478 * the cache over the address range of your DMA buffer to
479 * prevent cache coherency problems. Otherwise very subtle bugs
480 * can be introduced to your driver.
483 invalidate_dcache_range((unsigned int)buf
,
484 (unsigned int)(buf
+ chip
->ecc
.size
));
486 flush_dcache_range((unsigned int)buf
,
487 (unsigned int)(buf
+ chip
->ecc
.size
));
490 * This register must be written before each page is
491 * transferred to generate the correct ECC register
494 bfin_write_NFC_RST(ECC_RST
);
496 while (bfin_read_NFC_RST() & ECC_RST
)
500 clear_dma_irqstat(CH_NFC
);
502 /* setup DMA register with Blackfin DMA API */
503 set_dma_config(CH_NFC
, 0x0);
504 set_dma_start_addr(CH_NFC
, (unsigned long) buf
);
506 /* The DMAs have different size on BF52x and BF54x */
508 set_dma_x_count(CH_NFC
, (chip
->ecc
.size
>> 1));
509 set_dma_x_modify(CH_NFC
, 2);
510 val
= DI_EN
| WDSIZE_16
;
514 set_dma_x_count(CH_NFC
, (chip
->ecc
.size
>> 2));
515 set_dma_x_modify(CH_NFC
, 4);
516 val
= DI_EN
| WDSIZE_32
;
518 /* setup write or read operation */
521 set_dma_config(CH_NFC
, val
);
524 /* Start PAGE read/write operation */
526 bfin_write_NFC_PGCTL(PG_RD_START
);
528 bfin_write_NFC_PGCTL(PG_WR_START
);
529 wait_for_completion(&info
->dma_completion
);
532 static void bf5xx_nand_dma_read_buf(struct mtd_info
*mtd
,
533 uint8_t *buf
, int len
)
535 struct bf5xx_nand_info
*info
= mtd_to_nand_info(mtd
);
536 struct nand_chip
*chip
= mtd
->priv
;
538 dev_dbg(info
->device
, "mtd->%p, buf->%p, int %d\n", mtd
, buf
, len
);
540 if (len
== chip
->ecc
.size
)
541 bf5xx_nand_dma_rw(mtd
, buf
, 1);
543 bf5xx_nand_read_buf(mtd
, buf
, len
);
546 static void bf5xx_nand_dma_write_buf(struct mtd_info
*mtd
,
547 const uint8_t *buf
, int len
)
549 struct bf5xx_nand_info
*info
= mtd_to_nand_info(mtd
);
550 struct nand_chip
*chip
= mtd
->priv
;
552 dev_dbg(info
->device
, "mtd->%p, buf->%p, len %d\n", mtd
, buf
, len
);
554 if (len
== chip
->ecc
.size
)
555 bf5xx_nand_dma_rw(mtd
, (uint8_t *)buf
, 0);
557 bf5xx_nand_write_buf(mtd
, buf
, len
);
560 static int bf5xx_nand_read_page_raw(struct mtd_info
*mtd
, struct nand_chip
*chip
,
561 uint8_t *buf
, int page
)
563 bf5xx_nand_read_buf(mtd
, buf
, mtd
->writesize
);
564 bf5xx_nand_read_buf(mtd
, chip
->oob_poi
, mtd
->oobsize
);
569 static void bf5xx_nand_write_page_raw(struct mtd_info
*mtd
, struct nand_chip
*chip
,
572 bf5xx_nand_write_buf(mtd
, buf
, mtd
->writesize
);
573 bf5xx_nand_write_buf(mtd
, chip
->oob_poi
, mtd
->oobsize
);
577 * System initialization functions
579 static int bf5xx_nand_dma_init(struct bf5xx_nand_info
*info
)
587 init_completion(&info
->dma_completion
);
589 /* Request NFC DMA channel */
590 ret
= request_dma(CH_NFC
, "BF5XX NFC driver");
592 dev_err(info
->device
, " unable to get DMA channel\n");
597 /* Setup DMAC1 channel mux for NFC which shared with SDH */
598 bfin_write_DMAC1_PERIMUX(bfin_read_DMAC1_PERIMUX() & ~1);
602 set_dma_callback(CH_NFC
, bf5xx_nand_dma_irq
, info
);
604 /* Turn off the DMA channel first */
609 static void bf5xx_nand_dma_remove(struct bf5xx_nand_info
*info
)
611 /* Free NFC DMA channel */
617 * BF5XX NFC hardware initialization
619 * - clear interrupt status
621 static int bf5xx_nand_hw_init(struct bf5xx_nand_info
*info
)
625 struct bf5xx_nand_platform
*plat
= info
->platform
;
627 /* setup NFC_CTL register */
628 dev_info(info
->device
,
629 "data_width=%d, wr_dly=%d, rd_dly=%d\n",
630 (plat
->data_width
? 16 : 8),
631 plat
->wr_dly
, plat
->rd_dly
);
633 val
= (1 << NFC_PG_SIZE_OFFSET
) |
634 (plat
->data_width
<< NFC_NWIDTH_OFFSET
) |
635 (plat
->rd_dly
<< NFC_RDDLY_OFFSET
) |
636 (plat
->wr_dly
<< NFC_WRDLY_OFFSET
);
637 dev_dbg(info
->device
, "NFC_CTL is 0x%04x\n", val
);
639 bfin_write_NFC_CTL(val
);
642 /* clear interrupt status */
643 bfin_write_NFC_IRQMASK(0x0);
645 val
= bfin_read_NFC_IRQSTAT();
646 bfin_write_NFC_IRQSTAT(val
);
649 /* DMA initialization */
650 if (bf5xx_nand_dma_init(info
))
657 * Device management interface
659 static int __devinit
bf5xx_nand_add_partition(struct bf5xx_nand_info
*info
)
661 struct mtd_info
*mtd
= &info
->mtd
;
663 #ifdef CONFIG_MTD_PARTITIONS
664 struct mtd_partition
*parts
= info
->platform
->partitions
;
665 int nr
= info
->platform
->nr_partitions
;
667 return add_mtd_partitions(mtd
, parts
, nr
);
669 return add_mtd_device(mtd
);
673 static int __devexit
bf5xx_nand_remove(struct platform_device
*pdev
)
675 struct bf5xx_nand_info
*info
= to_nand_info(pdev
);
677 platform_set_drvdata(pdev
, NULL
);
679 /* first thing we need to do is release all our mtds
680 * and their partitions, then go through freeing the
683 nand_release(&info
->mtd
);
685 peripheral_free_list(bfin_nfc_pin_req
);
686 bf5xx_nand_dma_remove(info
);
688 /* free the common resources */
694 static int bf5xx_nand_scan(struct mtd_info
*mtd
)
696 struct nand_chip
*chip
= mtd
->priv
;
699 ret
= nand_scan_ident(mtd
, 1, NULL
);
705 * for nand with page size > 512B, think it as several sections with 512B
707 if (likely(mtd
->writesize
>= 512)) {
708 chip
->ecc
.size
= 512;
711 chip
->ecc
.size
= 256;
713 bfin_write_NFC_CTL(bfin_read_NFC_CTL() & ~(1 << NFC_PG_SIZE_OFFSET
));
718 return nand_scan_tail(mtd
);
724 * called by device layer when it finds a device matching
725 * one our driver can handled. This code checks to see if
726 * it can allocate all necessary resources then calls the
727 * nand layer to look for devices
729 static int __devinit
bf5xx_nand_probe(struct platform_device
*pdev
)
731 struct bf5xx_nand_platform
*plat
= to_nand_plat(pdev
);
732 struct bf5xx_nand_info
*info
= NULL
;
733 struct nand_chip
*chip
= NULL
;
734 struct mtd_info
*mtd
= NULL
;
737 dev_dbg(&pdev
->dev
, "(%p)\n", pdev
);
740 dev_err(&pdev
->dev
, "no platform specific information\n");
744 if (peripheral_request_list(bfin_nfc_pin_req
, DRV_NAME
)) {
745 dev_err(&pdev
->dev
, "requesting Peripherals failed\n");
749 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
751 dev_err(&pdev
->dev
, "no memory for flash info\n");
753 goto out_err_kzalloc
;
756 platform_set_drvdata(pdev
, info
);
758 spin_lock_init(&info
->controller
.lock
);
759 init_waitqueue_head(&info
->controller
.wq
);
761 info
->device
= &pdev
->dev
;
762 info
->platform
= plat
;
764 /* initialise chip data struct */
767 if (plat
->data_width
)
768 chip
->options
|= NAND_BUSWIDTH_16
;
770 chip
->options
|= NAND_CACHEPRG
| NAND_SKIP_BBTSCAN
;
772 chip
->read_buf
= (plat
->data_width
) ?
773 bf5xx_nand_read_buf16
: bf5xx_nand_read_buf
;
774 chip
->write_buf
= (plat
->data_width
) ?
775 bf5xx_nand_write_buf16
: bf5xx_nand_write_buf
;
777 chip
->read_byte
= bf5xx_nand_read_byte
;
779 chip
->cmd_ctrl
= bf5xx_nand_hwcontrol
;
780 chip
->dev_ready
= bf5xx_nand_devready
;
782 chip
->priv
= &info
->mtd
;
783 chip
->controller
= &info
->controller
;
785 chip
->IO_ADDR_R
= (void __iomem
*) NFC_READ
;
786 chip
->IO_ADDR_W
= (void __iomem
*) NFC_DATA_WR
;
788 chip
->chip_delay
= 0;
790 /* initialise mtd info data struct */
793 mtd
->owner
= THIS_MODULE
;
795 /* initialise the hardware */
796 err
= bf5xx_nand_hw_init(info
);
798 goto out_err_hw_init
;
800 /* setup hardware ECC data struct */
802 #ifdef CONFIG_MTD_NAND_BF5XX_BOOTROM_ECC
803 chip
->ecc
.layout
= &bootrom_ecclayout
;
805 chip
->read_buf
= bf5xx_nand_dma_read_buf
;
806 chip
->write_buf
= bf5xx_nand_dma_write_buf
;
807 chip
->ecc
.calculate
= bf5xx_nand_calculate_ecc
;
808 chip
->ecc
.correct
= bf5xx_nand_correct_data
;
809 chip
->ecc
.mode
= NAND_ECC_HW
;
810 chip
->ecc
.hwctl
= bf5xx_nand_enable_hwecc
;
811 chip
->ecc
.read_page_raw
= bf5xx_nand_read_page_raw
;
812 chip
->ecc
.write_page_raw
= bf5xx_nand_write_page_raw
;
814 chip
->ecc
.mode
= NAND_ECC_SOFT
;
817 /* scan hardware nand chip and setup mtd info data struct */
818 if (bf5xx_nand_scan(mtd
)) {
820 goto out_err_nand_scan
;
823 #ifdef CONFIG_MTD_NAND_BF5XX_BOOTROM_ECC
824 chip
->badblockpos
= 63;
827 /* add NAND partition */
828 bf5xx_nand_add_partition(info
);
830 dev_dbg(&pdev
->dev
, "initialised ok\n");
834 bf5xx_nand_dma_remove(info
);
836 platform_set_drvdata(pdev
, NULL
);
839 peripheral_free_list(bfin_nfc_pin_req
);
847 static int bf5xx_nand_suspend(struct platform_device
*dev
, pm_message_t pm
)
849 struct bf5xx_nand_info
*info
= platform_get_drvdata(dev
);
854 static int bf5xx_nand_resume(struct platform_device
*dev
)
856 struct bf5xx_nand_info
*info
= platform_get_drvdata(dev
);
862 #define bf5xx_nand_suspend NULL
863 #define bf5xx_nand_resume NULL
866 /* driver device registration */
867 static struct platform_driver bf5xx_nand_driver
= {
868 .probe
= bf5xx_nand_probe
,
869 .remove
= __devexit_p(bf5xx_nand_remove
),
870 .suspend
= bf5xx_nand_suspend
,
871 .resume
= bf5xx_nand_resume
,
874 .owner
= THIS_MODULE
,
878 static int __init
bf5xx_nand_init(void)
880 printk(KERN_INFO
"%s, Version %s (c) 2007 Analog Devices, Inc.\n",
881 DRV_DESC
, DRV_VERSION
);
883 return platform_driver_register(&bf5xx_nand_driver
);
886 static void __exit
bf5xx_nand_exit(void)
888 platform_driver_unregister(&bf5xx_nand_driver
);
891 module_init(bf5xx_nand_init
);
892 module_exit(bf5xx_nand_exit
);
894 MODULE_LICENSE("GPL");
895 MODULE_AUTHOR(DRV_AUTHOR
);
896 MODULE_DESCRIPTION(DRV_DESC
);
897 MODULE_ALIAS("platform:" DRV_NAME
);