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/mtd/mtd.h>
32 #include <linux/of_platform.h>
36 struct ndfc_controller
{
37 struct of_device
*ofdev
;
38 void __iomem
*ndfcbase
;
40 struct nand_chip chip
;
42 struct nand_hw_control ndfc_control
;
43 #ifdef CONFIG_MTD_PARTITIONS
44 struct mtd_partition
*parts
;
48 static struct ndfc_controller ndfc_ctrl
;
50 static void ndfc_select_chip(struct mtd_info
*mtd
, int chip
)
53 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
55 ccr
= in_be32(ndfc
->ndfcbase
+ NDFC_CCR
);
57 ccr
&= ~NDFC_CCR_BS_MASK
;
58 ccr
|= NDFC_CCR_BS(chip
+ ndfc
->chip_select
);
60 ccr
|= NDFC_CCR_RESET_CE
;
61 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
64 static void ndfc_hwcontrol(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
66 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
68 if (cmd
== NAND_CMD_NONE
)
72 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_CMD
);
74 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_ALE
);
77 static int ndfc_ready(struct mtd_info
*mtd
)
79 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
81 return in_be32(ndfc
->ndfcbase
+ NDFC_STAT
) & NDFC_STAT_IS_READY
;
84 static void ndfc_enable_hwecc(struct mtd_info
*mtd
, int mode
)
87 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
89 ccr
= in_be32(ndfc
->ndfcbase
+ NDFC_CCR
);
90 ccr
|= NDFC_CCR_RESET_ECC
;
91 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
95 static int ndfc_calculate_ecc(struct mtd_info
*mtd
,
96 const u_char
*dat
, u_char
*ecc_code
)
98 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
100 uint8_t *p
= (uint8_t *)&ecc
;
103 ecc
= in_be32(ndfc
->ndfcbase
+ NDFC_ECC
);
104 /* The NDFC uses Smart Media (SMC) bytes order */
113 * Speedups for buffer read/write/verify
115 * NDFC allows 32bit read/write of data. So we can speed up the buffer
116 * functions. No further checking, as nand_base will always read/write
119 static void ndfc_read_buf(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
121 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
122 uint32_t *p
= (uint32_t *) buf
;
124 for(;len
> 0; len
-= 4)
125 *p
++ = in_be32(ndfc
->ndfcbase
+ NDFC_DATA
);
128 static void ndfc_write_buf(struct mtd_info
*mtd
, const uint8_t *buf
, int len
)
130 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
131 uint32_t *p
= (uint32_t *) buf
;
133 for(;len
> 0; len
-= 4)
134 out_be32(ndfc
->ndfcbase
+ NDFC_DATA
, *p
++);
137 static int ndfc_verify_buf(struct mtd_info
*mtd
, const uint8_t *buf
, int len
)
139 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
140 uint32_t *p
= (uint32_t *) buf
;
142 for(;len
> 0; len
-= 4)
143 if (*p
++ != in_be32(ndfc
->ndfcbase
+ NDFC_DATA
))
149 * Initialize chip structure
151 static int ndfc_chip_init(struct ndfc_controller
*ndfc
,
152 struct device_node
*node
)
154 #ifdef CONFIG_MTD_PARTITIONS
155 #ifdef CONFIG_MTD_CMDLINE_PARTS
156 static const char *part_types
[] = { "cmdlinepart", NULL
};
158 static const char *part_types
[] = { NULL
};
161 struct device_node
*flash_np
;
162 struct nand_chip
*chip
= &ndfc
->chip
;
165 chip
->IO_ADDR_R
= ndfc
->ndfcbase
+ NDFC_DATA
;
166 chip
->IO_ADDR_W
= ndfc
->ndfcbase
+ NDFC_DATA
;
167 chip
->cmd_ctrl
= ndfc_hwcontrol
;
168 chip
->dev_ready
= ndfc_ready
;
169 chip
->select_chip
= ndfc_select_chip
;
170 chip
->chip_delay
= 50;
171 chip
->controller
= &ndfc
->ndfc_control
;
172 chip
->read_buf
= ndfc_read_buf
;
173 chip
->write_buf
= ndfc_write_buf
;
174 chip
->verify_buf
= ndfc_verify_buf
;
175 chip
->ecc
.correct
= nand_correct_data
;
176 chip
->ecc
.hwctl
= ndfc_enable_hwecc
;
177 chip
->ecc
.calculate
= ndfc_calculate_ecc
;
178 chip
->ecc
.mode
= NAND_ECC_HW
;
179 chip
->ecc
.size
= 256;
182 ndfc
->mtd
.priv
= chip
;
183 ndfc
->mtd
.owner
= THIS_MODULE
;
185 flash_np
= of_get_next_child(node
, NULL
);
189 ndfc
->mtd
.name
= kasprintf(GFP_KERNEL
, "%s.%s",
190 ndfc
->ofdev
->dev
.bus_id
, flash_np
->name
);
191 if (!ndfc
->mtd
.name
) {
196 ret
= nand_scan(&ndfc
->mtd
, 1);
200 #ifdef CONFIG_MTD_PARTITIONS
201 ret
= parse_mtd_partitions(&ndfc
->mtd
, part_types
, &ndfc
->parts
, 0);
205 #ifdef CONFIG_MTD_OF_PARTS
207 ret
= of_mtd_parse_partitions(&ndfc
->ofdev
->dev
, flash_np
,
215 ret
= add_mtd_partitions(&ndfc
->mtd
, ndfc
->parts
, ret
);
218 ret
= add_mtd_device(&ndfc
->mtd
);
221 of_node_put(flash_np
);
223 kfree(ndfc
->mtd
.name
);
227 static int __devinit
ndfc_probe(struct of_device
*ofdev
,
228 const struct of_device_id
*match
)
230 struct ndfc_controller
*ndfc
= &ndfc_ctrl
;
235 spin_lock_init(&ndfc
->ndfc_control
.lock
);
236 init_waitqueue_head(&ndfc
->ndfc_control
.wq
);
238 dev_set_drvdata(&ofdev
->dev
, ndfc
);
240 /* Read the reg property to get the chip select */
241 reg
= of_get_property(ofdev
->node
, "reg", &len
);
242 if (reg
== NULL
|| len
!= 12) {
243 dev_err(&ofdev
->dev
, "unable read reg property (%d)\n", len
);
246 ndfc
->chip_select
= reg
[0];
248 ndfc
->ndfcbase
= of_iomap(ofdev
->node
, 0);
249 if (!ndfc
->ndfcbase
) {
250 dev_err(&ofdev
->dev
, "failed to get memory\n");
254 ccr
= NDFC_CCR_BS(ndfc
->chip_select
);
256 /* It is ok if ccr does not exist - just default to 0 */
257 reg
= of_get_property(ofdev
->node
, "ccr", NULL
);
261 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
263 /* Set the bank settings if given */
264 reg
= of_get_property(ofdev
->node
, "bank-settings", NULL
);
266 int offset
= NDFC_BCFG0
+ (ndfc
->chip_select
<< 2);
267 out_be32(ndfc
->ndfcbase
+ offset
, *reg
);
270 err
= ndfc_chip_init(ndfc
, ofdev
->node
);
272 iounmap(ndfc
->ndfcbase
);
279 static int __devexit
ndfc_remove(struct of_device
*ofdev
)
281 struct ndfc_controller
*ndfc
= dev_get_drvdata(&ofdev
->dev
);
283 nand_release(&ndfc
->mtd
);
288 static const struct of_device_id ndfc_match
[] = {
289 { .compatible
= "ibm,ndfc", },
292 MODULE_DEVICE_TABLE(of
, ndfc_match
);
294 static struct of_platform_driver ndfc_driver
= {
298 .match_table
= ndfc_match
,
300 .remove
= __devexit_p(ndfc_remove
),
303 static int __init
ndfc_nand_init(void)
305 return of_register_platform_driver(&ndfc_driver
);
308 static void __exit
ndfc_nand_exit(void)
310 of_unregister_platform_driver(&ndfc_driver
);
313 module_init(ndfc_nand_init
);
314 module_exit(ndfc_nand_exit
);
316 MODULE_LICENSE("GPL");
317 MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
318 MODULE_DESCRIPTION("OF Platform driver for NDFC");