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_address.h>
34 #include <linux/of_platform.h>
39 struct ndfc_controller
{
40 struct platform_device
*ofdev
;
41 void __iomem
*ndfcbase
;
43 struct nand_chip chip
;
45 struct nand_hw_control ndfc_control
;
48 static struct ndfc_controller ndfc_ctrl
[NDFC_MAX_CS
];
50 static void ndfc_select_chip(struct mtd_info
*mtd
, int chip
)
53 struct nand_chip
*nchip
= mtd
->priv
;
54 struct ndfc_controller
*ndfc
= nchip
->priv
;
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 nand_chip
*chip
= mtd
->priv
;
68 struct ndfc_controller
*ndfc
= chip
->priv
;
70 if (cmd
== NAND_CMD_NONE
)
74 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_CMD
);
76 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_ALE
);
79 static int ndfc_ready(struct mtd_info
*mtd
)
81 struct nand_chip
*chip
= mtd
->priv
;
82 struct ndfc_controller
*ndfc
= chip
->priv
;
84 return in_be32(ndfc
->ndfcbase
+ NDFC_STAT
) & NDFC_STAT_IS_READY
;
87 static void ndfc_enable_hwecc(struct mtd_info
*mtd
, int mode
)
90 struct nand_chip
*chip
= mtd
->priv
;
91 struct ndfc_controller
*ndfc
= chip
->priv
;
93 ccr
= in_be32(ndfc
->ndfcbase
+ NDFC_CCR
);
94 ccr
|= NDFC_CCR_RESET_ECC
;
95 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
99 static int ndfc_calculate_ecc(struct mtd_info
*mtd
,
100 const u_char
*dat
, u_char
*ecc_code
)
102 struct nand_chip
*chip
= mtd
->priv
;
103 struct ndfc_controller
*ndfc
= chip
->priv
;
105 uint8_t *p
= (uint8_t *)&ecc
;
108 ecc
= in_be32(ndfc
->ndfcbase
+ NDFC_ECC
);
109 /* The NDFC uses Smart Media (SMC) bytes order */
118 * Speedups for buffer read/write/verify
120 * NDFC allows 32bit read/write of data. So we can speed up the buffer
121 * functions. No further checking, as nand_base will always read/write
124 static void ndfc_read_buf(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
126 struct nand_chip
*chip
= mtd
->priv
;
127 struct ndfc_controller
*ndfc
= chip
->priv
;
128 uint32_t *p
= (uint32_t *) buf
;
130 for(;len
> 0; len
-= 4)
131 *p
++ = in_be32(ndfc
->ndfcbase
+ NDFC_DATA
);
134 static void ndfc_write_buf(struct mtd_info
*mtd
, const uint8_t *buf
, int len
)
136 struct nand_chip
*chip
= mtd
->priv
;
137 struct ndfc_controller
*ndfc
= chip
->priv
;
138 uint32_t *p
= (uint32_t *) buf
;
140 for(;len
> 0; len
-= 4)
141 out_be32(ndfc
->ndfcbase
+ NDFC_DATA
, *p
++);
145 * Initialize chip structure
147 static int ndfc_chip_init(struct ndfc_controller
*ndfc
,
148 struct device_node
*node
)
150 struct device_node
*flash_np
;
151 struct nand_chip
*chip
= &ndfc
->chip
;
152 struct mtd_part_parser_data ppdata
;
155 chip
->IO_ADDR_R
= ndfc
->ndfcbase
+ NDFC_DATA
;
156 chip
->IO_ADDR_W
= ndfc
->ndfcbase
+ NDFC_DATA
;
157 chip
->cmd_ctrl
= ndfc_hwcontrol
;
158 chip
->dev_ready
= ndfc_ready
;
159 chip
->select_chip
= ndfc_select_chip
;
160 chip
->chip_delay
= 50;
161 chip
->controller
= &ndfc
->ndfc_control
;
162 chip
->read_buf
= ndfc_read_buf
;
163 chip
->write_buf
= ndfc_write_buf
;
164 chip
->ecc
.correct
= nand_correct_data
;
165 chip
->ecc
.hwctl
= ndfc_enable_hwecc
;
166 chip
->ecc
.calculate
= ndfc_calculate_ecc
;
167 chip
->ecc
.mode
= NAND_ECC_HW
;
168 chip
->ecc
.size
= 256;
170 chip
->ecc
.strength
= 1;
173 ndfc
->mtd
.priv
= chip
;
174 ndfc
->mtd
.owner
= THIS_MODULE
;
176 flash_np
= of_get_next_child(node
, NULL
);
180 ppdata
.of_node
= flash_np
;
181 ndfc
->mtd
.name
= kasprintf(GFP_KERNEL
, "%s.%s",
182 dev_name(&ndfc
->ofdev
->dev
), flash_np
->name
);
183 if (!ndfc
->mtd
.name
) {
188 ret
= nand_scan(&ndfc
->mtd
, 1);
192 ret
= mtd_device_parse_register(&ndfc
->mtd
, NULL
, &ppdata
, NULL
, 0);
195 of_node_put(flash_np
);
197 kfree(ndfc
->mtd
.name
);
201 static int ndfc_probe(struct platform_device
*ofdev
)
203 struct ndfc_controller
*ndfc
;
209 /* Read the reg property to get the chip select */
210 reg
= of_get_property(ofdev
->dev
.of_node
, "reg", &len
);
211 if (reg
== NULL
|| len
!= 12) {
212 dev_err(&ofdev
->dev
, "unable read reg property (%d)\n", len
);
216 cs
= be32_to_cpu(reg
[0]);
217 if (cs
>= NDFC_MAX_CS
) {
218 dev_err(&ofdev
->dev
, "invalid CS number (%d)\n", cs
);
222 ndfc
= &ndfc_ctrl
[cs
];
223 ndfc
->chip_select
= cs
;
225 spin_lock_init(&ndfc
->ndfc_control
.lock
);
226 init_waitqueue_head(&ndfc
->ndfc_control
.wq
);
228 dev_set_drvdata(&ofdev
->dev
, ndfc
);
230 ndfc
->ndfcbase
= of_iomap(ofdev
->dev
.of_node
, 0);
231 if (!ndfc
->ndfcbase
) {
232 dev_err(&ofdev
->dev
, "failed to get memory\n");
236 ccr
= NDFC_CCR_BS(ndfc
->chip_select
);
238 /* It is ok if ccr does not exist - just default to 0 */
239 reg
= of_get_property(ofdev
->dev
.of_node
, "ccr", NULL
);
241 ccr
|= be32_to_cpup(reg
);
243 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
245 /* Set the bank settings if given */
246 reg
= of_get_property(ofdev
->dev
.of_node
, "bank-settings", NULL
);
248 int offset
= NDFC_BCFG0
+ (ndfc
->chip_select
<< 2);
249 out_be32(ndfc
->ndfcbase
+ offset
, be32_to_cpup(reg
));
252 err
= ndfc_chip_init(ndfc
, ofdev
->dev
.of_node
);
254 iounmap(ndfc
->ndfcbase
);
261 static int ndfc_remove(struct platform_device
*ofdev
)
263 struct ndfc_controller
*ndfc
= dev_get_drvdata(&ofdev
->dev
);
265 nand_release(&ndfc
->mtd
);
266 kfree(ndfc
->mtd
.name
);
271 static const struct of_device_id ndfc_match
[] = {
272 { .compatible
= "ibm,ndfc", },
275 MODULE_DEVICE_TABLE(of
, ndfc_match
);
277 static struct platform_driver ndfc_driver
= {
280 .of_match_table
= ndfc_match
,
283 .remove
= ndfc_remove
,
286 module_platform_driver(ndfc_driver
);
288 MODULE_LICENSE("GPL");
289 MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
290 MODULE_DESCRIPTION("OF Platform driver for NDFC");