2 * drivers/mtd/nand/orion_nand.c
4 * NAND support for Marvell Orion SoC platforms
6 * Tzachi Perelstein <tzachi@marvell.com>
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
13 #include <linux/slab.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/mtd/mtd.h>
17 #include <linux/mtd/nand.h>
18 #include <linux/mtd/partitions.h>
20 #include <asm/sizes.h>
21 #include <mach/hardware.h>
22 #include <plat/orion_nand.h>
24 #ifdef CONFIG_MTD_CMDLINE_PARTS
25 static const char *part_probes
[] = { "cmdlinepart", NULL
};
28 static void orion_nand_cmd_ctrl(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
30 struct nand_chip
*nc
= mtd
->priv
;
31 struct orion_nand_data
*board
= nc
->priv
;
34 if (cmd
== NAND_CMD_NONE
)
38 offs
= (1 << board
->cle
);
39 else if (ctrl
& NAND_ALE
)
40 offs
= (1 << board
->ale
);
44 if (nc
->options
& NAND_BUSWIDTH_16
)
47 writeb(cmd
, nc
->IO_ADDR_W
+ offs
);
50 static void orion_nand_read_buf(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
52 struct nand_chip
*chip
= mtd
->priv
;
53 void __iomem
*io_base
= chip
->IO_ADDR_R
;
57 while (len
&& (unsigned long)buf
& 7) {
58 *buf
++ = readb(io_base
);
61 buf64
= (uint64_t *)buf
;
64 asm volatile ("ldrd\t%0, [%1]" : "=&r" (x
) : "r" (io_base
));
69 buf
[i
++] = readb(io_base
);
72 static int __init
orion_nand_probe(struct platform_device
*pdev
)
76 struct orion_nand_data
*board
;
77 void __iomem
*io_base
;
79 #ifdef CONFIG_MTD_PARTITIONS
80 struct mtd_partition
*partitions
= NULL
;
84 nc
= kzalloc(sizeof(struct nand_chip
) + sizeof(struct mtd_info
), GFP_KERNEL
);
86 printk(KERN_ERR
"orion_nand: failed to allocate device structure.\n");
90 mtd
= (struct mtd_info
*)(nc
+ 1);
92 io_base
= ioremap(pdev
->resource
[0].start
,
93 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1);
95 printk(KERN_ERR
"orion_nand: ioremap failed\n");
100 board
= pdev
->dev
.platform_data
;
103 mtd
->owner
= THIS_MODULE
;
106 nc
->IO_ADDR_R
= nc
->IO_ADDR_W
= io_base
;
107 nc
->cmd_ctrl
= orion_nand_cmd_ctrl
;
108 nc
->read_buf
= orion_nand_read_buf
;
109 nc
->ecc
.mode
= NAND_ECC_SOFT
;
111 if (board
->chip_delay
)
112 nc
->chip_delay
= board
->chip_delay
;
114 if (board
->width
== 16)
115 nc
->options
|= NAND_BUSWIDTH_16
;
117 platform_set_drvdata(pdev
, mtd
);
119 if (nand_scan(mtd
, 1)) {
124 #ifdef CONFIG_MTD_PARTITIONS
125 #ifdef CONFIG_MTD_CMDLINE_PARTS
126 mtd
->name
= "orion_nand";
127 num_part
= parse_mtd_partitions(mtd
, part_probes
, &partitions
, 0);
129 /* If cmdline partitions have been passed, let them be used */
131 num_part
= board
->nr_parts
;
132 partitions
= board
->parts
;
135 if (partitions
&& num_part
> 0)
136 ret
= add_mtd_partitions(mtd
, partitions
, num_part
);
138 ret
= add_mtd_device(mtd
);
140 ret
= add_mtd_device(mtd
);
151 platform_set_drvdata(pdev
, NULL
);
159 static int __devexit
orion_nand_remove(struct platform_device
*pdev
)
161 struct mtd_info
*mtd
= platform_get_drvdata(pdev
);
162 struct nand_chip
*nc
= mtd
->priv
;
166 iounmap(nc
->IO_ADDR_W
);
173 static struct platform_driver orion_nand_driver
= {
174 .remove
= __devexit_p(orion_nand_remove
),
176 .name
= "orion_nand",
177 .owner
= THIS_MODULE
,
181 static int __init
orion_nand_init(void)
183 return platform_driver_probe(&orion_nand_driver
, orion_nand_probe
);
186 static void __exit
orion_nand_exit(void)
188 platform_driver_unregister(&orion_nand_driver
);
191 module_init(orion_nand_init
);
192 module_exit(orion_nand_exit
);
194 MODULE_LICENSE("GPL");
195 MODULE_AUTHOR("Tzachi Perelstein");
196 MODULE_DESCRIPTION("NAND glue for Orion platforms");
197 MODULE_ALIAS("platform:orion_nand");