2 * NAND flash driver for the MikroTik RouterBOARD 750
4 * Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
11 #include <linux/init.h>
12 #include <linux/mtd/nand.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/platform_device.h>
17 #include <linux/slab.h>
19 #include <asm/mach-ar71xx/ar71xx.h>
20 #include <asm/mach-ar71xx/mach-rb750.h>
22 #define DRV_NAME "rb750-nand"
23 #define DRV_VERSION "0.1.0"
24 #define DRV_DESC "NAND flash driver for the RouterBOARD 750"
26 #define RB750_NAND_IO0 BIT(RB750_GPIO_NAND_IO0)
27 #define RB750_NAND_ALE BIT(RB750_GPIO_NAND_ALE)
28 #define RB750_NAND_CLE BIT(RB750_GPIO_NAND_CLE)
29 #define RB750_NAND_NRE BIT(RB750_GPIO_NAND_NRE)
30 #define RB750_NAND_NWE BIT(RB750_GPIO_NAND_NWE)
31 #define RB750_NAND_RDY BIT(RB750_GPIO_NAND_RDY)
32 #define RB750_NAND_NCE BIT(RB750_GPIO_NAND_NCE)
34 #define RB750_NAND_DATA_SHIFT 1
35 #define RB750_NAND_DATA_BITS (0xff << RB750_NAND_DATA_SHIFT)
36 #define RB750_NAND_INPUT_BITS (RB750_NAND_DATA_BITS | RB750_NAND_RDY)
37 #define RB750_NAND_OUTPUT_BITS (RB750_NAND_ALE | RB750_NAND_CLE | \
38 RB750_NAND_NRE | RB750_NAND_NWE | \
41 struct rb750_nand_info
{
42 struct nand_chip chip
;
47 * We need to use the OLD Yaffs-1 OOB layout, otherwise the RB bootloader
48 * will not be able to find the kernel that we load.
50 static struct nand_ecclayout rb750_nand_ecclayout
= {
52 .eccpos
= { 8, 9, 10, 13, 14, 15 },
54 .oobfree
= { { 0, 4 }, { 6, 2 }, { 11, 2 }, { 4, 1 } }
57 static struct mtd_partition rb750_nand_partitions
[] = {
62 .mask_flags
= MTD_WRITEABLE
,
65 .offset
= (256 * 1024),
66 .size
= (4 * 1024 * 1024) - (256 * 1024),
69 .offset
= MTDPART_OFS_NXTBLK
,
70 .size
= MTDPART_SIZ_FULL
,
74 static void rb750_nand_write(const u8
*buf
, unsigned len
)
76 void __iomem
*base
= ar71xx_gpio_base
;
81 /* set data lines to output mode */
82 t
= __raw_readl(base
+ AR71XX_GPIO_REG_OE
);
83 __raw_writel(t
| RB750_NAND_DATA_BITS
, base
+ AR71XX_GPIO_REG_OE
);
85 out
= __raw_readl(base
+ AR71XX_GPIO_REG_OUT
);
86 out
&= ~(RB750_NAND_DATA_BITS
| RB750_NAND_NWE
);
87 for (i
= 0; i
!= len
; i
++) {
91 data
<<= RB750_NAND_DATA_SHIFT
;
93 __raw_writel(data
, base
+ AR71XX_GPIO_REG_OUT
);
95 __raw_writel(data
| RB750_NAND_NWE
, base
+ AR71XX_GPIO_REG_OUT
);
97 __raw_readl(base
+ AR71XX_GPIO_REG_OUT
);
100 /* set data lines to input mode */
101 t
= __raw_readl(base
+ AR71XX_GPIO_REG_OE
);
102 __raw_writel(t
& ~RB750_NAND_DATA_BITS
, base
+ AR71XX_GPIO_REG_OE
);
104 __raw_readl(base
+ AR71XX_GPIO_REG_OE
);
107 static int rb750_nand_read_verify(u8
*read_buf
, unsigned len
,
108 const u8
*verify_buf
)
110 void __iomem
*base
= ar71xx_gpio_base
;
113 for (i
= 0; i
< len
; i
++) {
116 /* activate RE line */
117 __raw_writel(RB750_NAND_NRE
, base
+ AR71XX_GPIO_REG_CLEAR
);
119 __raw_readl(base
+ AR71XX_GPIO_REG_CLEAR
);
121 /* read input lines */
122 data
= __raw_readl(base
+ AR71XX_GPIO_REG_IN
) >>
123 RB750_NAND_DATA_SHIFT
;
125 /* deactivate RE line */
126 __raw_writel(RB750_NAND_NRE
, base
+ AR71XX_GPIO_REG_SET
);
130 else if (verify_buf
&& verify_buf
[i
] != data
)
137 static void rb750_nand_select_chip(struct mtd_info
*mtd
, int chip
)
139 void __iomem
*base
= ar71xx_gpio_base
;
143 func
= __raw_readl(base
+ AR71XX_GPIO_REG_FUNC
);
146 rb750_latch_change(RB750_LVC573_LE
, 0);
148 /* disable alternate functions */
149 ar71xx_gpio_function_setup(AR724X_GPIO_FUNC_JTAG_DISABLE
,
150 AR724X_GPIO_FUNC_SPI_EN
);
152 /* set input mode for data lines */
153 t
= __raw_readl(base
+ AR71XX_GPIO_REG_OE
);
154 __raw_writel(t
& ~RB750_NAND_INPUT_BITS
,
155 base
+ AR71XX_GPIO_REG_OE
);
157 /* deactivate RE and WE lines */
158 __raw_writel(RB750_NAND_NRE
| RB750_NAND_NWE
,
159 base
+ AR71XX_GPIO_REG_SET
);
161 (void) __raw_readl(base
+ AR71XX_GPIO_REG_SET
);
163 /* activate CE line */
164 __raw_writel(RB750_NAND_NCE
, base
+ AR71XX_GPIO_REG_CLEAR
);
166 /* deactivate CE line */
167 __raw_writel(RB750_NAND_NCE
, base
+ AR71XX_GPIO_REG_SET
);
169 (void) __raw_readl(base
+ AR71XX_GPIO_REG_SET
);
171 t
= __raw_readl(base
+ AR71XX_GPIO_REG_OE
);
172 __raw_writel(t
| RB750_NAND_IO0
| RB750_NAND_RDY
,
173 base
+ AR71XX_GPIO_REG_OE
);
175 /* restore alternate functions */
176 ar71xx_gpio_function_setup(AR724X_GPIO_FUNC_SPI_EN
,
177 AR724X_GPIO_FUNC_JTAG_DISABLE
);
180 rb750_latch_change(0, RB750_LVC573_LE
);
184 static int rb750_nand_dev_ready(struct mtd_info
*mtd
)
186 void __iomem
*base
= ar71xx_gpio_base
;
188 return !!(__raw_readl(base
+ AR71XX_GPIO_REG_IN
) & RB750_NAND_RDY
);
191 static void rb750_nand_cmd_ctrl(struct mtd_info
*mtd
, int cmd
,
194 if (ctrl
& NAND_CTRL_CHANGE
) {
195 void __iomem
*base
= ar71xx_gpio_base
;
198 t
= __raw_readl(base
+ AR71XX_GPIO_REG_OUT
);
200 t
&= ~(RB750_NAND_CLE
| RB750_NAND_ALE
);
201 t
|= (ctrl
& NAND_CLE
) ? RB750_NAND_CLE
: 0;
202 t
|= (ctrl
& NAND_ALE
) ? RB750_NAND_ALE
: 0;
204 __raw_writel(t
, base
+ AR71XX_GPIO_REG_OUT
);
206 __raw_readl(base
+ AR71XX_GPIO_REG_OUT
);
209 if (cmd
!= NAND_CMD_NONE
) {
211 rb750_nand_write(&t
, 1);
215 static u8
rb750_nand_read_byte(struct mtd_info
*mtd
)
218 rb750_nand_read_verify(&data
, 1, NULL
);
222 static void rb750_nand_read_buf(struct mtd_info
*mtd
, u8
*buf
, int len
)
224 rb750_nand_read_verify(buf
, len
, NULL
);
227 static void rb750_nand_write_buf(struct mtd_info
*mtd
, const u8
*buf
, int len
)
229 rb750_nand_write(buf
, len
);
232 static int rb750_nand_verify_buf(struct mtd_info
*mtd
, const u8
*buf
, int len
)
234 return rb750_nand_read_verify(NULL
, len
, buf
);
237 static void __init
rb750_nand_gpio_init(void)
239 void __iomem
*base
= ar71xx_gpio_base
;
243 out
= __raw_readl(base
+ AR71XX_GPIO_REG_OUT
);
245 /* setup output levels */
246 __raw_writel(RB750_NAND_NCE
| RB750_NAND_NRE
| RB750_NAND_NWE
,
247 base
+ AR71XX_GPIO_REG_SET
);
249 __raw_writel(RB750_NAND_ALE
| RB750_NAND_CLE
,
250 base
+ AR71XX_GPIO_REG_CLEAR
);
252 /* setup input lines */
253 t
= __raw_readl(base
+ AR71XX_GPIO_REG_OE
);
254 __raw_writel(t
& ~(RB750_NAND_INPUT_BITS
), base
+ AR71XX_GPIO_REG_OE
);
256 /* setup output lines */
257 t
= __raw_readl(base
+ AR71XX_GPIO_REG_OE
);
258 __raw_writel(t
| RB750_NAND_OUTPUT_BITS
, base
+ AR71XX_GPIO_REG_OE
);
260 rb750_latch_change(~out
& RB750_NAND_IO0
, out
& RB750_NAND_IO0
);
263 static int __init
rb750_nand_probe(struct platform_device
*pdev
)
265 struct rb750_nand_info
*info
;
268 printk(KERN_INFO DRV_DESC
" version " DRV_VERSION
"\n");
270 rb750_nand_gpio_init();
272 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
276 info
->chip
.priv
= &info
;
277 info
->mtd
.priv
= &info
->chip
;
278 info
->mtd
.owner
= THIS_MODULE
;
280 info
->chip
.select_chip
= rb750_nand_select_chip
;
281 info
->chip
.cmd_ctrl
= rb750_nand_cmd_ctrl
;
282 info
->chip
.dev_ready
= rb750_nand_dev_ready
;
283 info
->chip
.read_byte
= rb750_nand_read_byte
;
284 info
->chip
.write_buf
= rb750_nand_write_buf
;
285 info
->chip
.read_buf
= rb750_nand_read_buf
;
286 info
->chip
.verify_buf
= rb750_nand_verify_buf
;
288 info
->chip
.chip_delay
= 25;
289 info
->chip
.ecc
.mode
= NAND_ECC_SOFT
;
290 info
->chip
.options
|= NAND_NO_AUTOINCR
;
292 platform_set_drvdata(pdev
, info
);
294 ret
= nand_scan_ident(&info
->mtd
, 1, NULL
);
300 if (info
->mtd
.writesize
== 512)
301 info
->chip
.ecc
.layout
= &rb750_nand_ecclayout
;
303 ret
= nand_scan_tail(&info
->mtd
);
306 goto err_set_drvdata
;
309 #ifdef CONFIG_MTD_PARTITIONS
310 ret
= add_mtd_partitions(&info
->mtd
, rb750_nand_partitions
,
311 ARRAY_SIZE(rb750_nand_partitions
));
313 ret
= add_mtd_device(&info
->mtd
);
316 goto err_release_nand
;
321 nand_release(&info
->mtd
);
323 platform_set_drvdata(pdev
, NULL
);
329 static int __devexit
rb750_nand_remove(struct platform_device
*pdev
)
331 struct rb750_nand_info
*info
= platform_get_drvdata(pdev
);
333 nand_release(&info
->mtd
);
334 platform_set_drvdata(pdev
, NULL
);
340 static struct platform_driver rb750_nand_driver
= {
341 .probe
= rb750_nand_probe
,
342 .remove
= __devexit_p(rb750_nand_remove
),
345 .owner
= THIS_MODULE
,
349 static int __init
rb750_nand_init(void)
351 return platform_driver_register(&rb750_nand_driver
);
354 static void __exit
rb750_nand_exit(void)
356 platform_driver_unregister(&rb750_nand_driver
);
359 module_init(rb750_nand_init
);
360 module_exit(rb750_nand_exit
);
362 MODULE_DESCRIPTION(DRV_DESC
);
363 MODULE_VERSION(DRV_VERSION
);
364 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
365 MODULE_LICENSE("GPL v2");