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>
17 #include <linux/mtd/mtd.h>
18 #include <linux/mtd/nand.h>
19 #include <linux/mtd/partitions.h>
20 #include <linux/clk.h>
21 #include <linux/err.h>
23 #include <asm/sizes.h>
24 #include <mach/hardware.h>
25 #include <plat/orion_nand.h>
27 static void orion_nand_cmd_ctrl(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
29 struct nand_chip
*nc
= mtd
->priv
;
30 struct orion_nand_data
*board
= nc
->priv
;
33 if (cmd
== NAND_CMD_NONE
)
37 offs
= (1 << board
->cle
);
38 else if (ctrl
& NAND_ALE
)
39 offs
= (1 << board
->ale
);
43 if (nc
->options
& NAND_BUSWIDTH_16
)
46 writeb(cmd
, nc
->IO_ADDR_W
+ offs
);
49 static void orion_nand_read_buf(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
51 struct nand_chip
*chip
= mtd
->priv
;
52 void __iomem
*io_base
= chip
->IO_ADDR_R
;
56 while (len
&& (unsigned long)buf
& 7) {
57 *buf
++ = readb(io_base
);
60 buf64
= (uint64_t *)buf
;
63 * Since GCC has no proper constraint (PR 43518)
64 * force x variable to r2/r3 registers as ldrd instruction
65 * requires first register to be even.
67 register uint64_t x
asm ("r2");
69 asm volatile ("ldrd\t%0, [%1]" : "=&r" (x
) : "r" (io_base
));
74 buf
[i
++] = readb(io_base
);
77 static int __init
orion_nand_probe(struct platform_device
*pdev
)
80 struct mtd_part_parser_data ppdata
= {};
82 struct orion_nand_data
*board
;
85 void __iomem
*io_base
;
89 nc
= kzalloc(sizeof(struct nand_chip
) + sizeof(struct mtd_info
), GFP_KERNEL
);
91 printk(KERN_ERR
"orion_nand: failed to allocate device structure.\n");
95 mtd
= (struct mtd_info
*)(nc
+ 1);
97 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
103 io_base
= ioremap(res
->start
, resource_size(res
));
105 printk(KERN_ERR
"orion_nand: ioremap failed\n");
110 if (pdev
->dev
.of_node
) {
111 board
= devm_kzalloc(&pdev
->dev
, sizeof(struct orion_nand_data
),
114 printk(KERN_ERR
"orion_nand: failed to allocate board structure.\n");
118 if (!of_property_read_u32(pdev
->dev
.of_node
, "cle", &val
))
119 board
->cle
= (u8
)val
;
122 if (!of_property_read_u32(pdev
->dev
.of_node
, "ale", &val
))
123 board
->ale
= (u8
)val
;
126 if (!of_property_read_u32(pdev
->dev
.of_node
,
128 board
->width
= (u8
)val
* 8;
131 if (!of_property_read_u32(pdev
->dev
.of_node
,
133 board
->chip_delay
= (u8
)val
;
135 board
= pdev
->dev
.platform_data
;
138 mtd
->owner
= THIS_MODULE
;
141 nc
->IO_ADDR_R
= nc
->IO_ADDR_W
= io_base
;
142 nc
->cmd_ctrl
= orion_nand_cmd_ctrl
;
143 nc
->read_buf
= orion_nand_read_buf
;
144 nc
->ecc
.mode
= NAND_ECC_SOFT
;
146 if (board
->chip_delay
)
147 nc
->chip_delay
= board
->chip_delay
;
149 WARN(board
->width
> 16,
150 "%d bit bus width out of range",
153 if (board
->width
== 16)
154 nc
->options
|= NAND_BUSWIDTH_16
;
156 if (board
->dev_ready
)
157 nc
->dev_ready
= board
->dev_ready
;
159 platform_set_drvdata(pdev
, mtd
);
161 /* Not all platforms can gate the clock, so it is not
162 an error if the clock does not exists. */
163 clk
= clk_get(&pdev
->dev
, NULL
);
165 clk_prepare_enable(clk
);
169 if (nand_scan(mtd
, 1)) {
174 mtd
->name
= "orion_nand";
175 ppdata
.of_node
= pdev
->dev
.of_node
;
176 ret
= mtd_device_parse_register(mtd
, NULL
, &ppdata
,
177 board
->parts
, board
->nr_parts
);
187 clk_disable_unprepare(clk
);
190 platform_set_drvdata(pdev
, NULL
);
198 static int __devexit
orion_nand_remove(struct platform_device
*pdev
)
200 struct mtd_info
*mtd
= platform_get_drvdata(pdev
);
201 struct nand_chip
*nc
= mtd
->priv
;
206 iounmap(nc
->IO_ADDR_W
);
210 clk
= clk_get(&pdev
->dev
, NULL
);
212 clk_disable_unprepare(clk
);
220 static struct of_device_id orion_nand_of_match_table
[] = {
221 { .compatible
= "marvell,orion-nand", },
226 static struct platform_driver orion_nand_driver
= {
227 .remove
= __devexit_p(orion_nand_remove
),
229 .name
= "orion_nand",
230 .owner
= THIS_MODULE
,
231 .of_match_table
= of_match_ptr(orion_nand_of_match_table
),
235 static int __init
orion_nand_init(void)
237 return platform_driver_probe(&orion_nand_driver
, orion_nand_probe
);
240 static void __exit
orion_nand_exit(void)
242 platform_driver_unregister(&orion_nand_driver
);
245 module_init(orion_nand_init
);
246 module_exit(orion_nand_exit
);
248 MODULE_LICENSE("GPL");
249 MODULE_AUTHOR("Tzachi Perelstein");
250 MODULE_DESCRIPTION("NAND glue for Orion platforms");
251 MODULE_ALIAS("platform:orion_nand");