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
24 * Enable JFFS2 over NAND as rootfs
26 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License as published by
28 * the Free Software Foundation; either version 2 of the License, or
29 * (at your option) any later version.
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
36 * You should have received a copy of the GNU General Public License
37 * along with this program; if not, write to the Free Software
38 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
41 #include <linux/module.h>
42 #include <linux/types.h>
43 #include <linux/init.h>
44 #include <linux/kernel.h>
45 #include <linux/string.h>
46 #include <linux/ioport.h>
47 #include <linux/platform_device.h>
48 #include <linux/delay.h>
49 #include <linux/dma-mapping.h>
50 #include <linux/err.h>
51 #include <linux/slab.h>
53 #include <linux/bitops.h>
55 #include <linux/mtd/mtd.h>
56 #include <linux/mtd/nand.h>
57 #include <linux/mtd/nand_ecc.h>
58 #include <linux/mtd/partitions.h>
60 #include <asm/blackfin.h>
62 #include <asm/cacheflush.h>
64 #include <asm/portmux.h>
66 #define DRV_NAME "bf5xx-nand"
67 #define DRV_VERSION "1.2"
68 #define DRV_AUTHOR "Bryan Wu <bryan.wu@analog.com>"
69 #define DRV_DESC "BF5xx on-chip NAND FLash Controller Driver"
71 #ifdef CONFIG_MTD_NAND_BF5XX_HWECC
72 static int hardware_ecc = 1;
74 static int hardware_ecc;
77 static const unsigned short bfin_nfc_pin_req[] =
94 #ifdef CONFIG_MTD_NAND_BF5XX_BOOTROM_ECC
95 static uint8_t bbt_pattern[] = { 0xff };
97 static struct nand_bbt_descr bootrom_bbt = {
101 .pattern = bbt_pattern,
104 static struct nand_ecclayout bootrom_ecclayout = {
107 0x8 * 0, 0x8 * 0 + 1, 0x8 * 0 + 2,
108 0x8 * 1, 0x8 * 1 + 1, 0x8 * 1 + 2,
109 0x8 * 2, 0x8 * 2 + 1, 0x8 * 2 + 2,
110 0x8 * 3, 0x8 * 3 + 1, 0x8 * 3 + 2,
111 0x8 * 4, 0x8 * 4 + 1, 0x8 * 4 + 2,
112 0x8 * 5, 0x8 * 5 + 1, 0x8 * 5 + 2,
113 0x8 * 6, 0x8 * 6 + 1, 0x8 * 6 + 2,
114 0x8 * 7, 0x8 * 7 + 1, 0x8 * 7 + 2
130 * Data structures for bf5xx nand flash controller driver
133 /* bf5xx nand info */
134 struct bf5xx_nand_info {
136 struct nand_hw_control controller;
138 struct nand_chip chip;
141 struct bf5xx_nand_platform *platform;
144 struct device *device;
147 struct completion dma_completion;
151 * Conversion functions
153 static struct bf5xx_nand_info *mtd_to_nand_info(struct mtd_info *mtd)
155 return container_of(mtd, struct bf5xx_nand_info, mtd);
158 static struct bf5xx_nand_info *to_nand_info(struct platform_device *pdev)
160 return platform_get_drvdata(pdev);
163 static struct bf5xx_nand_platform *to_nand_plat(struct platform_device *pdev)
165 return pdev->dev.platform_data;
169 * struct nand_chip interface function pointers
173 * bf5xx_nand_hwcontrol
175 * Issue command and address cycles to the chip
177 static void bf5xx_nand_hwcontrol(struct mtd_info *mtd, int cmd,
180 if (cmd == NAND_CMD_NONE)
183 while (bfin_read_NFC_STAT() & WB_FULL)
187 bfin_write_NFC_CMD(cmd);
189 bfin_write_NFC_ADDR(cmd);
194 * bf5xx_nand_devready()
196 * returns 0 if the nand is busy, 1 if it is ready
198 static int bf5xx_nand_devready(struct mtd_info *mtd)
200 unsigned short val = bfin_read_NFC_IRQSTAT();
202 if ((val & NBUSYIRQ) == NBUSYIRQ)
210 * These allow the bf5xx to use the controller's ECC
211 * generator block to ECC the data as it passes through
215 * ECC error correction function
217 static int bf5xx_nand_correct_data_256(struct mtd_info *mtd, u_char *dat,
218 u_char *read_ecc, u_char *calc_ecc)
220 struct bf5xx_nand_info *info = mtd_to_nand_info(mtd);
224 unsigned short failing_bit, failing_byte;
227 calced = calc_ecc[0] | (calc_ecc[1] << 8) | (calc_ecc[2] << 16);
228 stored = read_ecc[0] | (read_ecc[1] << 8) | (read_ecc[2] << 16);
230 syndrome[0] = (calced ^ stored);
233 * syndrome 0: all zero
237 if (!syndrome[0] || !calced || !stored)
241 * sysdrome 0: only one bit is one
242 * ECC data was incorrect
245 if (hweight32(syndrome[0]) == 1) {
246 dev_err(info->device, "ECC data was incorrect!\n");
250 syndrome[1] = (calced & 0x7FF) ^ (stored & 0x7FF);
251 syndrome[2] = (calced & 0x7FF) ^ ((calced >> 11) & 0x7FF);
252 syndrome[3] = (stored & 0x7FF) ^ ((stored >> 11) & 0x7FF);
253 syndrome[4] = syndrome[2] ^ syndrome[3];
255 for (i = 0; i < 5; i++)
256 dev_info(info->device, "syndrome[%d] 0x%08x\n", i, syndrome[i]);
258 dev_info(info->device,
259 "calced[0x%08x], stored[0x%08x]\n",
263 * sysdrome 0: exactly 11 bits are one, each parity
264 * and parity' pair is 1 & 0 or 0 & 1.
265 * 1-bit correctable error
268 if (hweight32(syndrome[0]) == 11 && syndrome[4] == 0x7FF) {
269 dev_info(info->device,
270 "1-bit correctable error, correct it.\n");
271 dev_info(info->device,
272 "syndrome[1] 0x%08x\n", syndrome[1]);
274 failing_bit = syndrome[1] & 0x7;
275 failing_byte = syndrome[1] >> 0x3;
276 data = *(dat + failing_byte);
277 data = data ^ (0x1 << failing_bit);
278 *(dat + failing_byte) = data;
284 * sysdrome 0: random data
285 * More than 1-bit error, non-correctable error
286 * Discard data, mark bad block
288 dev_err(info->device,
289 "More than 1-bit error, non-correctable error.\n");
290 dev_err(info->device,
291 "Please discard data, mark bad block\n");
296 static int bf5xx_nand_correct_data(struct mtd_info *mtd, u_char *dat,
297 u_char *read_ecc, u_char *calc_ecc)
299 struct bf5xx_nand_info *info = mtd_to_nand_info(mtd);
300 struct bf5xx_nand_platform *plat = info->platform;
301 unsigned short page_size = (plat->page_size ? 512 : 256);
304 ret = bf5xx_nand_correct_data_256(mtd, dat, read_ecc, calc_ecc);
306 /* If page size is 512, correct second 256 bytes */
307 if (page_size == 512) {
311 ret |= bf5xx_nand_correct_data_256(mtd, dat, read_ecc, calc_ecc);
317 static void bf5xx_nand_enable_hwecc(struct mtd_info *mtd, int mode)
322 static int bf5xx_nand_calculate_ecc(struct mtd_info *mtd,
323 const u_char *dat, u_char *ecc_code)
325 struct bf5xx_nand_info *info = mtd_to_nand_info(mtd);
326 struct bf5xx_nand_platform *plat = info->platform;
327 u16 page_size = (plat->page_size ? 512 : 256);
332 /* first 4 bytes ECC code for 256 page size */
333 ecc0 = bfin_read_NFC_ECC0();
334 ecc1 = bfin_read_NFC_ECC1();
336 code[0] = (ecc0 & 0x7ff) | ((ecc1 & 0x7ff) << 11);
338 dev_dbg(info->device, "returning ecc 0x%08x\n", code[0]);
340 /* first 3 bytes in ecc_code for 256 page size */
342 memcpy(ecc_code, p, 3);
344 /* second 4 bytes ECC code for 512 page size */
345 if (page_size == 512) {
346 ecc0 = bfin_read_NFC_ECC2();
347 ecc1 = bfin_read_NFC_ECC3();
348 code[1] = (ecc0 & 0x7ff) | ((ecc1 & 0x7ff) << 11);
350 /* second 3 bytes in ecc_code for second 256
351 * bytes of 512 page size
353 p = (u8 *) (code + 1);
354 memcpy((ecc_code + 3), p, 3);
355 dev_dbg(info->device, "returning ecc 0x%08x\n", code[1]);
362 * PIO mode for buffer writing and reading
364 static void bf5xx_nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
370 * Data reads are requested by first writing to NFC_DATA_RD
371 * and then reading back from NFC_READ.
373 for (i = 0; i < len; i++) {
374 while (bfin_read_NFC_STAT() & WB_FULL)
377 /* Contents do not matter */
378 bfin_write_NFC_DATA_RD(0x0000);
381 while ((bfin_read_NFC_IRQSTAT() & RD_RDY) != RD_RDY)
384 buf[i] = bfin_read_NFC_READ();
386 val = bfin_read_NFC_IRQSTAT();
388 bfin_write_NFC_IRQSTAT(val);
393 static uint8_t bf5xx_nand_read_byte(struct mtd_info *mtd)
397 bf5xx_nand_read_buf(mtd, &val, 1);
402 static void bf5xx_nand_write_buf(struct mtd_info *mtd,
403 const uint8_t *buf, int len)
407 for (i = 0; i < len; i++) {
408 while (bfin_read_NFC_STAT() & WB_FULL)
411 bfin_write_NFC_DATA_WR(buf[i]);
416 static void bf5xx_nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
419 u16 *p = (u16 *) buf;
423 * Data reads are requested by first writing to NFC_DATA_RD
424 * and then reading back from NFC_READ.
426 bfin_write_NFC_DATA_RD(0x5555);
430 for (i = 0; i < len; i++)
431 p[i] = bfin_read_NFC_READ();
434 static void bf5xx_nand_write_buf16(struct mtd_info *mtd,
435 const uint8_t *buf, int len)
438 u16 *p = (u16 *) buf;
441 for (i = 0; i < len; i++)
442 bfin_write_NFC_DATA_WR(p[i]);
448 * DMA functions for buffer writing and reading
450 static irqreturn_t bf5xx_nand_dma_irq(int irq, void *dev_id)
452 struct bf5xx_nand_info *info = dev_id;
454 clear_dma_irqstat(CH_NFC);
456 complete(&info->dma_completion);
461 static int bf5xx_nand_dma_rw(struct mtd_info *mtd,
462 uint8_t *buf, int is_read)
464 struct bf5xx_nand_info *info = mtd_to_nand_info(mtd);
465 struct bf5xx_nand_platform *plat = info->platform;
466 unsigned short page_size = (plat->page_size ? 512 : 256);
469 dev_dbg(info->device, " mtd->%p, buf->%p, is_read %d\n",
473 * Before starting a dma transfer, be sure to invalidate/flush
474 * the cache over the address range of your DMA buffer to
475 * prevent cache coherency problems. Otherwise very subtle bugs
476 * can be introduced to your driver.
479 invalidate_dcache_range((unsigned int)buf,
480 (unsigned int)(buf + page_size));
482 flush_dcache_range((unsigned int)buf,
483 (unsigned int)(buf + page_size));
486 * This register must be written before each page is
487 * transferred to generate the correct ECC register
490 bfin_write_NFC_RST(0x1);
494 clear_dma_irqstat(CH_NFC);
496 /* setup DMA register with Blackfin DMA API */
497 set_dma_config(CH_NFC, 0x0);
498 set_dma_start_addr(CH_NFC, (unsigned long) buf);
499 set_dma_x_count(CH_NFC, (page_size >> 2));
500 set_dma_x_modify(CH_NFC, 4);
502 /* setup write or read operation */
503 val = DI_EN | WDSIZE_32;
506 set_dma_config(CH_NFC, val);
509 /* Start PAGE read/write operation */
511 bfin_write_NFC_PGCTL(0x1);
513 bfin_write_NFC_PGCTL(0x2);
514 wait_for_completion(&info->dma_completion);
519 static void bf5xx_nand_dma_read_buf(struct mtd_info *mtd,
520 uint8_t *buf, int len)
522 struct bf5xx_nand_info *info = mtd_to_nand_info(mtd);
523 struct bf5xx_nand_platform *plat = info->platform;
524 unsigned short page_size = (plat->page_size ? 512 : 256);
526 dev_dbg(info->device, "mtd->%p, buf->%p, int %d\n", mtd, buf, len);
528 if (len == page_size)
529 bf5xx_nand_dma_rw(mtd, buf, 1);
531 bf5xx_nand_read_buf(mtd, buf, len);
534 static void bf5xx_nand_dma_write_buf(struct mtd_info *mtd,
535 const uint8_t *buf, int len)
537 struct bf5xx_nand_info *info = mtd_to_nand_info(mtd);
538 struct bf5xx_nand_platform *plat = info->platform;
539 unsigned short page_size = (plat->page_size ? 512 : 256);
541 dev_dbg(info->device, "mtd->%p, buf->%p, len %d\n", mtd, buf, len);
543 if (len == page_size)
544 bf5xx_nand_dma_rw(mtd, (uint8_t *)buf, 0);
546 bf5xx_nand_write_buf(mtd, buf, len);
550 * System initialization functions
552 static int bf5xx_nand_dma_init(struct bf5xx_nand_info *info)
561 init_completion(&info->dma_completion);
564 /* Setup DMAC1 channel mux for NFC which shared with SDH */
565 val = bfin_read_DMAC1_PERIMUX();
567 bfin_write_DMAC1_PERIMUX(val);
570 /* Request NFC DMA channel */
571 ret = request_dma(CH_NFC, "BF5XX NFC driver");
573 dev_err(info->device, " unable to get DMA channel\n");
577 set_dma_callback(CH_NFC, (void *) bf5xx_nand_dma_irq, (void *) info);
579 /* Turn off the DMA channel first */
584 static void bf5xx_nand_dma_remove(struct bf5xx_nand_info *info)
586 /* Free NFC DMA channel */
592 * BF5XX NFC hardware initialization
594 * - clear interrupt status
596 static int bf5xx_nand_hw_init(struct bf5xx_nand_info *info)
600 struct bf5xx_nand_platform *plat = info->platform;
602 /* setup NFC_CTL register */
603 dev_info(info->device,
604 "page_size=%d, data_width=%d, wr_dly=%d, rd_dly=%d\n",
605 (plat->page_size ? 512 : 256),
606 (plat->data_width ? 16 : 8),
607 plat->wr_dly, plat->rd_dly);
609 val = (plat->page_size << NFC_PG_SIZE_OFFSET) |
610 (plat->data_width << NFC_NWIDTH_OFFSET) |
611 (plat->rd_dly << NFC_RDDLY_OFFSET) |
612 (plat->rd_dly << NFC_WRDLY_OFFSET);
613 dev_dbg(info->device, "NFC_CTL is 0x%04x\n", val);
615 bfin_write_NFC_CTL(val);
618 /* clear interrupt status */
619 bfin_write_NFC_IRQMASK(0x0);
621 val = bfin_read_NFC_IRQSTAT();
622 bfin_write_NFC_IRQSTAT(val);
625 /* DMA initialization */
626 if (bf5xx_nand_dma_init(info))
633 * Device management interface
635 static int bf5xx_nand_add_partition(struct bf5xx_nand_info *info)
637 struct mtd_info *mtd = &info->mtd;
639 #ifdef CONFIG_MTD_PARTITIONS
640 struct mtd_partition *parts = info->platform->partitions;
641 int nr = info->platform->nr_partitions;
643 return add_mtd_partitions(mtd, parts, nr);
645 return add_mtd_device(mtd);
649 static int __devexit bf5xx_nand_remove(struct platform_device *pdev)
651 struct bf5xx_nand_info *info = to_nand_info(pdev);
652 struct mtd_info *mtd = NULL;
654 platform_set_drvdata(pdev, NULL);
656 /* first thing we need to do is release all our mtds
657 * and their partitions, then go through freeing the
666 peripheral_free_list(bfin_nfc_pin_req);
667 bf5xx_nand_dma_remove(info);
669 /* free the common resources */
678 * called by device layer when it finds a device matching
679 * one our driver can handled. This code checks to see if
680 * it can allocate all necessary resources then calls the
681 * nand layer to look for devices
683 static int __devinit bf5xx_nand_probe(struct platform_device *pdev)
685 struct bf5xx_nand_platform *plat = to_nand_plat(pdev);
686 struct bf5xx_nand_info *info = NULL;
687 struct nand_chip *chip = NULL;
688 struct mtd_info *mtd = NULL;
691 dev_dbg(&pdev->dev, "(%p)\n", pdev);
694 dev_err(&pdev->dev, "no platform specific information\n");
698 if (peripheral_request_list(bfin_nfc_pin_req, DRV_NAME)) {
699 dev_err(&pdev->dev, "requesting Peripherals failed\n");
703 info = kzalloc(sizeof(*info), GFP_KERNEL);
705 dev_err(&pdev->dev, "no memory for flash info\n");
707 goto out_err_kzalloc;
710 platform_set_drvdata(pdev, info);
712 spin_lock_init(&info->controller.lock);
713 init_waitqueue_head(&info->controller.wq);
715 info->device = &pdev->dev;
716 info->platform = plat;
718 /* initialise chip data struct */
721 if (plat->data_width)
722 chip->options |= NAND_BUSWIDTH_16;
724 chip->options |= NAND_CACHEPRG | NAND_SKIP_BBTSCAN;
726 chip->read_buf = (plat->data_width) ?
727 bf5xx_nand_read_buf16 : bf5xx_nand_read_buf;
728 chip->write_buf = (plat->data_width) ?
729 bf5xx_nand_write_buf16 : bf5xx_nand_write_buf;
731 chip->read_byte = bf5xx_nand_read_byte;
733 chip->cmd_ctrl = bf5xx_nand_hwcontrol;
734 chip->dev_ready = bf5xx_nand_devready;
736 chip->priv = &info->mtd;
737 chip->controller = &info->controller;
739 chip->IO_ADDR_R = (void __iomem *) NFC_READ;
740 chip->IO_ADDR_W = (void __iomem *) NFC_DATA_WR;
742 chip->chip_delay = 0;
744 /* initialise mtd info data struct */
747 mtd->owner = THIS_MODULE;
749 /* initialise the hardware */
750 err = bf5xx_nand_hw_init(info);
752 goto out_err_hw_init;
754 /* setup hardware ECC data struct */
756 #ifdef CONFIG_MTD_NAND_BF5XX_BOOTROM_ECC
757 chip->badblock_pattern = &bootrom_bbt;
758 chip->ecc.layout = &bootrom_ecclayout;
761 if (plat->page_size == NFC_PG_SIZE_256) {
763 chip->ecc.size = 256;
764 } else if (plat->page_size == NFC_PG_SIZE_512) {
766 chip->ecc.size = 512;
769 chip->read_buf = bf5xx_nand_dma_read_buf;
770 chip->write_buf = bf5xx_nand_dma_write_buf;
771 chip->ecc.calculate = bf5xx_nand_calculate_ecc;
772 chip->ecc.correct = bf5xx_nand_correct_data;
773 chip->ecc.mode = NAND_ECC_HW;
774 chip->ecc.hwctl = bf5xx_nand_enable_hwecc;
776 chip->ecc.mode = NAND_ECC_SOFT;
779 /* scan hardware nand chip and setup mtd info data struct */
780 if (nand_scan(mtd, 1)) {
782 goto out_err_nand_scan;
785 /* add NAND partition */
786 bf5xx_nand_add_partition(info);
788 dev_dbg(&pdev->dev, "initialised ok\n");
792 bf5xx_nand_dma_remove(info);
794 platform_set_drvdata(pdev, NULL);
797 peripheral_free_list(bfin_nfc_pin_req);
805 static int bf5xx_nand_suspend(struct platform_device *dev, pm_message_t pm)
807 struct bf5xx_nand_info *info = platform_get_drvdata(dev);
812 static int bf5xx_nand_resume(struct platform_device *dev)
814 struct bf5xx_nand_info *info = platform_get_drvdata(dev);
820 #define bf5xx_nand_suspend NULL
821 #define bf5xx_nand_resume NULL
824 /* driver device registration */
825 static struct platform_driver bf5xx_nand_driver = {
826 .probe = bf5xx_nand_probe,
827 .remove = __devexit_p(bf5xx_nand_remove),
828 .suspend = bf5xx_nand_suspend,
829 .resume = bf5xx_nand_resume,
832 .owner = THIS_MODULE,
836 static int __init bf5xx_nand_init(void)
838 printk(KERN_INFO "%s, Version %s (c) 2007 Analog Devices, Inc.\n",
839 DRV_DESC, DRV_VERSION);
841 return platform_driver_register(&bf5xx_nand_driver);
844 static void __exit bf5xx_nand_exit(void)
846 platform_driver_unregister(&bf5xx_nand_driver);
849 module_init(bf5xx_nand_init);
850 module_exit(bf5xx_nand_exit);
852 MODULE_LICENSE("GPL");
853 MODULE_AUTHOR(DRV_AUTHOR);
854 MODULE_DESCRIPTION(DRV_DESC);
855 MODULE_ALIAS("platform:" DRV_NAME);