1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Platform independent driver for NDFC (NanD Flash Controller)
5 * integrated into EP440 cores
7 * Ported to an OF platform driver by Sean MacLennan
9 * The NDFC supports multiple chips, but this driver only supports a
10 * single chip since I do not have access to any boards with
13 * Author: Thomas Gleixner
16 * Copyright 2008 PIKA Technologies
17 * Sean MacLennan <smaclennan@pikatech.com>
19 #include <linux/module.h>
20 #include <linux/mtd/rawnand.h>
21 #include <linux/mtd/nand_ecc.h>
22 #include <linux/mtd/partitions.h>
23 #include <linux/mtd/ndfc.h>
24 #include <linux/slab.h>
25 #include <linux/mtd/mtd.h>
26 #include <linux/of_address.h>
27 #include <linux/of_platform.h>
32 struct ndfc_controller
{
33 struct platform_device
*ofdev
;
34 void __iomem
*ndfcbase
;
35 struct nand_chip chip
;
37 struct nand_controller ndfc_control
;
40 static struct ndfc_controller ndfc_ctrl
[NDFC_MAX_CS
];
42 static void ndfc_select_chip(struct nand_chip
*nchip
, int chip
)
45 struct ndfc_controller
*ndfc
= nand_get_controller_data(nchip
);
47 ccr
= in_be32(ndfc
->ndfcbase
+ NDFC_CCR
);
49 ccr
&= ~NDFC_CCR_BS_MASK
;
50 ccr
|= NDFC_CCR_BS(chip
+ ndfc
->chip_select
);
52 ccr
|= NDFC_CCR_RESET_CE
;
53 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
56 static void ndfc_hwcontrol(struct nand_chip
*chip
, int cmd
, unsigned int ctrl
)
58 struct ndfc_controller
*ndfc
= nand_get_controller_data(chip
);
60 if (cmd
== NAND_CMD_NONE
)
64 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_CMD
);
66 writel(cmd
& 0xFF, ndfc
->ndfcbase
+ NDFC_ALE
);
69 static int ndfc_ready(struct nand_chip
*chip
)
71 struct ndfc_controller
*ndfc
= nand_get_controller_data(chip
);
73 return in_be32(ndfc
->ndfcbase
+ NDFC_STAT
) & NDFC_STAT_IS_READY
;
76 static void ndfc_enable_hwecc(struct nand_chip
*chip
, int mode
)
79 struct ndfc_controller
*ndfc
= nand_get_controller_data(chip
);
81 ccr
= in_be32(ndfc
->ndfcbase
+ NDFC_CCR
);
82 ccr
|= NDFC_CCR_RESET_ECC
;
83 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
87 static int ndfc_calculate_ecc(struct nand_chip
*chip
,
88 const u_char
*dat
, u_char
*ecc_code
)
90 struct ndfc_controller
*ndfc
= nand_get_controller_data(chip
);
92 uint8_t *p
= (uint8_t *)&ecc
;
95 ecc
= in_be32(ndfc
->ndfcbase
+ NDFC_ECC
);
96 /* The NDFC uses Smart Media (SMC) bytes order */
105 * Speedups for buffer read/write/verify
107 * NDFC allows 32bit read/write of data. So we can speed up the buffer
108 * functions. No further checking, as nand_base will always read/write
111 static void ndfc_read_buf(struct nand_chip
*chip
, uint8_t *buf
, int len
)
113 struct ndfc_controller
*ndfc
= nand_get_controller_data(chip
);
114 uint32_t *p
= (uint32_t *) buf
;
116 for(;len
> 0; len
-= 4)
117 *p
++ = in_be32(ndfc
->ndfcbase
+ NDFC_DATA
);
120 static void ndfc_write_buf(struct nand_chip
*chip
, const uint8_t *buf
, int len
)
122 struct ndfc_controller
*ndfc
= nand_get_controller_data(chip
);
123 uint32_t *p
= (uint32_t *) buf
;
125 for(;len
> 0; len
-= 4)
126 out_be32(ndfc
->ndfcbase
+ NDFC_DATA
, *p
++);
130 * Initialize chip structure
132 static int ndfc_chip_init(struct ndfc_controller
*ndfc
,
133 struct device_node
*node
)
135 struct device_node
*flash_np
;
136 struct nand_chip
*chip
= &ndfc
->chip
;
137 struct mtd_info
*mtd
= nand_to_mtd(chip
);
140 chip
->legacy
.IO_ADDR_R
= ndfc
->ndfcbase
+ NDFC_DATA
;
141 chip
->legacy
.IO_ADDR_W
= ndfc
->ndfcbase
+ NDFC_DATA
;
142 chip
->legacy
.cmd_ctrl
= ndfc_hwcontrol
;
143 chip
->legacy
.dev_ready
= ndfc_ready
;
144 chip
->legacy
.select_chip
= ndfc_select_chip
;
145 chip
->legacy
.chip_delay
= 50;
146 chip
->controller
= &ndfc
->ndfc_control
;
147 chip
->legacy
.read_buf
= ndfc_read_buf
;
148 chip
->legacy
.write_buf
= ndfc_write_buf
;
149 chip
->ecc
.correct
= nand_correct_data
;
150 chip
->ecc
.hwctl
= ndfc_enable_hwecc
;
151 chip
->ecc
.calculate
= ndfc_calculate_ecc
;
152 chip
->ecc
.mode
= NAND_ECC_HW
;
153 chip
->ecc
.size
= 256;
155 chip
->ecc
.strength
= 1;
156 nand_set_controller_data(chip
, ndfc
);
158 mtd
->dev
.parent
= &ndfc
->ofdev
->dev
;
160 flash_np
= of_get_next_child(node
, NULL
);
163 nand_set_flash_node(chip
, flash_np
);
165 mtd
->name
= kasprintf(GFP_KERNEL
, "%s.%pOFn", dev_name(&ndfc
->ofdev
->dev
),
172 ret
= nand_scan(chip
, 1);
176 ret
= mtd_device_register(mtd
, NULL
, 0);
179 of_node_put(flash_np
);
185 static int ndfc_probe(struct platform_device
*ofdev
)
187 struct ndfc_controller
*ndfc
;
193 /* Read the reg property to get the chip select */
194 reg
= of_get_property(ofdev
->dev
.of_node
, "reg", &len
);
195 if (reg
== NULL
|| len
!= 12) {
196 dev_err(&ofdev
->dev
, "unable read reg property (%d)\n", len
);
200 cs
= be32_to_cpu(reg
[0]);
201 if (cs
>= NDFC_MAX_CS
) {
202 dev_err(&ofdev
->dev
, "invalid CS number (%d)\n", cs
);
206 ndfc
= &ndfc_ctrl
[cs
];
207 ndfc
->chip_select
= cs
;
209 nand_controller_init(&ndfc
->ndfc_control
);
211 dev_set_drvdata(&ofdev
->dev
, ndfc
);
213 ndfc
->ndfcbase
= of_iomap(ofdev
->dev
.of_node
, 0);
214 if (!ndfc
->ndfcbase
) {
215 dev_err(&ofdev
->dev
, "failed to get memory\n");
219 ccr
= NDFC_CCR_BS(ndfc
->chip_select
);
221 /* It is ok if ccr does not exist - just default to 0 */
222 reg
= of_get_property(ofdev
->dev
.of_node
, "ccr", NULL
);
224 ccr
|= be32_to_cpup(reg
);
226 out_be32(ndfc
->ndfcbase
+ NDFC_CCR
, ccr
);
228 /* Set the bank settings if given */
229 reg
= of_get_property(ofdev
->dev
.of_node
, "bank-settings", NULL
);
231 int offset
= NDFC_BCFG0
+ (ndfc
->chip_select
<< 2);
232 out_be32(ndfc
->ndfcbase
+ offset
, be32_to_cpup(reg
));
235 err
= ndfc_chip_init(ndfc
, ofdev
->dev
.of_node
);
237 iounmap(ndfc
->ndfcbase
);
244 static int ndfc_remove(struct platform_device
*ofdev
)
246 struct ndfc_controller
*ndfc
= dev_get_drvdata(&ofdev
->dev
);
247 struct mtd_info
*mtd
= nand_to_mtd(&ndfc
->chip
);
249 nand_release(&ndfc
->chip
);
255 static const struct of_device_id ndfc_match
[] = {
256 { .compatible
= "ibm,ndfc", },
259 MODULE_DEVICE_TABLE(of
, ndfc_match
);
261 static struct platform_driver ndfc_driver
= {
264 .of_match_table
= ndfc_match
,
267 .remove
= ndfc_remove
,
270 module_platform_driver(ndfc_driver
);
272 MODULE_LICENSE("GPL");
273 MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
274 MODULE_DESCRIPTION("OF Platform driver for NDFC");