5 * Platform independent driver for NDFC (NanD Flash Controller)
6 * integrated into EP440 cores
8 * Ported to an OF platform driver by Sean MacLennan
10 * The NDFC supports multiple chips, but this driver only supports a
11 * single chip since I do not have access to any boards with
14 * Author: Thomas Gleixner
17 * Copyright 2008 PIKA Technologies
18 * Sean MacLennan <smaclennan@pikatech.com>
20 * This program is free software; you can redistribute it and/or modify it
21 * under the terms of the GNU General Public License as published by the
22 * Free Software Foundation; either version 2 of the License, or (at your
23 * option) any later version.
26 #include <linux/module.h>
27 #include <linux/mtd/nand.h>
28 #include <linux/mtd/nand_ecc.h>
29 #include <linux/mtd/partitions.h>
30 #include <linux/mtd/ndfc.h>
31 #include <linux/slab.h>
32 #include <linux/mtd/mtd.h>
33 #include <linux/of_platform.h>
37 struct ndfc_controller
{
38 struct platform_device
*ofdev
;
39 void __iomem
*ndfcbase
;
41 struct nand_chip chip
;
43 struct nand_hw_control ndfc_control
;
44 #ifdef CONFIG_MTD_PARTITIONS
45 struct mtd_partition
*parts
;
49 static struct ndfc_controller ndfc_ctrl
;
51 static void ndfc_select_chip(struct mtd_info
*mtd
, int chip
)
54 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
56 ccr
= in_be32(ndfc
->ndfcbase
+ NDFC_CCR
);
58 ccr
&= ~NDFC_CCR_BS_MASK
;
59 ccr
|= NDFC_CCR_BS(chip
+ ndfc
->chip_select
);
61 ccr
|= NDFC_CCR_RESET_CE
;
62 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
65 static void ndfc_hwcontrol(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
67 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
69 if (cmd
== NAND_CMD_NONE
)
73 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_CMD
);
75 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_ALE
);
78 static int ndfc_ready(struct mtd_info
*mtd
)
80 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
82 return in_be32(ndfc
->ndfcbase
+ NDFC_STAT
) & NDFC_STAT_IS_READY
;
85 static void ndfc_enable_hwecc(struct mtd_info
*mtd
, int mode
)
88 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
90 ccr
= in_be32(ndfc
->ndfcbase
+ NDFC_CCR
);
91 ccr
|= NDFC_CCR_RESET_ECC
;
92 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
96 static int ndfc_calculate_ecc(struct mtd_info
*mtd
,
97 const u_char
*dat
, u_char
*ecc_code
)
99 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
101 uint8_t *p
= (uint8_t *)&ecc
;
104 ecc
= in_be32(ndfc
->ndfcbase
+ NDFC_ECC
);
105 /* The NDFC uses Smart Media (SMC) bytes order */
114 * Speedups for buffer read/write/verify
116 * NDFC allows 32bit read/write of data. So we can speed up the buffer
117 * functions. No further checking, as nand_base will always read/write
120 static void ndfc_read_buf(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
122 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
123 uint32_t *p
= (uint32_t *) buf
;
125 for(;len
> 0; len
-= 4)
126 *p
++ = in_be32(ndfc
->ndfcbase
+ NDFC_DATA
);
129 static void ndfc_write_buf(struct mtd_info
*mtd
, const uint8_t *buf
, int len
)
131 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
132 uint32_t *p
= (uint32_t *) buf
;
134 for(;len
> 0; len
-= 4)
135 out_be32(ndfc
->ndfcbase
+ NDFC_DATA
, *p
++);
138 static int ndfc_verify_buf(struct mtd_info
*mtd
, const uint8_t *buf
, int len
)
140 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
141 uint32_t *p
= (uint32_t *) buf
;
143 for(;len
> 0; len
-= 4)
144 if (*p
++ != in_be32(ndfc
->ndfcbase
+ NDFC_DATA
))
150 * Initialize chip structure
152 static int ndfc_chip_init(struct ndfc_controller
*ndfc
,
153 struct device_node
*node
)
155 #ifdef CONFIG_MTD_PARTITIONS
156 #ifdef CONFIG_MTD_CMDLINE_PARTS
157 static const char *part_types
[] = { "cmdlinepart", NULL
};
159 static const char *part_types
[] = { NULL
};
162 struct device_node
*flash_np
;
163 struct nand_chip
*chip
= &ndfc
->chip
;
166 chip
->IO_ADDR_R
= ndfc
->ndfcbase
+ NDFC_DATA
;
167 chip
->IO_ADDR_W
= ndfc
->ndfcbase
+ NDFC_DATA
;
168 chip
->cmd_ctrl
= ndfc_hwcontrol
;
169 chip
->dev_ready
= ndfc_ready
;
170 chip
->select_chip
= ndfc_select_chip
;
171 chip
->chip_delay
= 50;
172 chip
->controller
= &ndfc
->ndfc_control
;
173 chip
->read_buf
= ndfc_read_buf
;
174 chip
->write_buf
= ndfc_write_buf
;
175 chip
->verify_buf
= ndfc_verify_buf
;
176 chip
->ecc
.correct
= nand_correct_data
;
177 chip
->ecc
.hwctl
= ndfc_enable_hwecc
;
178 chip
->ecc
.calculate
= ndfc_calculate_ecc
;
179 chip
->ecc
.mode
= NAND_ECC_HW
;
180 chip
->ecc
.size
= 256;
183 ndfc
->mtd
.priv
= chip
;
184 ndfc
->mtd
.owner
= THIS_MODULE
;
186 flash_np
= of_get_next_child(node
, NULL
);
190 ndfc
->mtd
.name
= kasprintf(GFP_KERNEL
, "%s.%s",
191 dev_name(&ndfc
->ofdev
->dev
), flash_np
->name
);
192 if (!ndfc
->mtd
.name
) {
197 ret
= nand_scan(&ndfc
->mtd
, 1);
201 #ifdef CONFIG_MTD_PARTITIONS
202 ret
= parse_mtd_partitions(&ndfc
->mtd
, part_types
, &ndfc
->parts
, 0);
206 #ifdef CONFIG_MTD_OF_PARTS
208 ret
= of_mtd_parse_partitions(&ndfc
->ofdev
->dev
, flash_np
,
216 ret
= add_mtd_partitions(&ndfc
->mtd
, ndfc
->parts
, ret
);
219 ret
= add_mtd_device(&ndfc
->mtd
);
222 of_node_put(flash_np
);
224 kfree(ndfc
->mtd
.name
);
228 static int __devinit
ndfc_probe(struct platform_device
*ofdev
,
229 const struct of_device_id
*match
)
231 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
236 spin_lock_init(&ndfc
->ndfc_control
.lock
);
237 init_waitqueue_head(&ndfc
->ndfc_control
.wq
);
239 dev_set_drvdata(&ofdev
->dev
, ndfc
);
241 /* Read the reg property to get the chip select */
242 reg
= of_get_property(ofdev
->dev
.of_node
, "reg", &len
);
243 if (reg
== NULL
|| len
!= 12) {
244 dev_err(&ofdev
->dev
, "unable read reg property (%d)\n", len
);
247 ndfc
->chip_select
= be32_to_cpu(reg
[0]);
249 ndfc
->ndfcbase
= of_iomap(ofdev
->dev
.of_node
, 0);
250 if (!ndfc
->ndfcbase
) {
251 dev_err(&ofdev
->dev
, "failed to get memory\n");
255 ccr
= NDFC_CCR_BS(ndfc
->chip_select
);
257 /* It is ok if ccr does not exist - just default to 0 */
258 reg
= of_get_property(ofdev
->dev
.of_node
, "ccr", NULL
);
260 ccr
|= be32_to_cpup(reg
);
262 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
264 /* Set the bank settings if given */
265 reg
= of_get_property(ofdev
->dev
.of_node
, "bank-settings", NULL
);
267 int offset
= NDFC_BCFG0
+ (ndfc
->chip_select
<< 2);
268 out_be32(ndfc
->ndfcbase
+ offset
, be32_to_cpup(reg
));
271 err
= ndfc_chip_init(ndfc
, ofdev
->dev
.of_node
);
273 iounmap(ndfc
->ndfcbase
);
280 static int __devexit
ndfc_remove(struct platform_device
*ofdev
)
282 struct ndfc_controller
*ndfc
= dev_get_drvdata(&ofdev
->dev
);
284 nand_release(&ndfc
->mtd
);
289 static const struct of_device_id ndfc_match
[] = {
290 { .compatible
= "ibm,ndfc", },
293 MODULE_DEVICE_TABLE(of
, ndfc_match
);
295 static struct of_platform_driver ndfc_driver
= {
298 .owner
= THIS_MODULE
,
299 .of_match_table
= ndfc_match
,
302 .remove
= __devexit_p(ndfc_remove
),
305 static int __init
ndfc_nand_init(void)
307 return of_register_platform_driver(&ndfc_driver
);
310 static void __exit
ndfc_nand_exit(void)
312 of_unregister_platform_driver(&ndfc_driver
);
315 module_init(ndfc_nand_init
);
316 module_exit(ndfc_nand_exit
);
318 MODULE_LICENSE("GPL");
319 MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
320 MODULE_DESCRIPTION("OF Platform driver for NDFC");