blob: d324396ab7ffa4aeec498a5b92e7e6e4339251c5 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02002/*
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02003 * Overview:
Sean MacLennana808ad32008-12-10 13:16:34 +00004 * Platform independent driver for NDFC (NanD Flash Controller)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02005 * integrated into EP440 cores
6 *
Sean MacLennana808ad32008-12-10 13:16:34 +00007 * Ported to an OF platform driver by Sean MacLennan
8 *
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
11 * multiple chips.
12 *
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020013 * Author: Thomas Gleixner
14 *
15 * Copyright 2006 IBM
Sean MacLennana808ad32008-12-10 13:16:34 +000016 * Copyright 2008 PIKA Technologies
17 * Sean MacLennan <smaclennan@pikatech.com>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020018 */
19#include <linux/module.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020020#include <linux/mtd/rawnand.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020021#include <linux/mtd/nand_ecc.h>
22#include <linux/mtd/partitions.h>
23#include <linux/mtd/ndfc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020025#include <linux/mtd/mtd.h>
Rob Herring5af50732013-09-17 14:28:33 -050026#include <linux/of_address.h>
Sean MacLennana808ad32008-12-10 13:16:34 +000027#include <linux/of_platform.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020028#include <asm/io.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020029
Felix Radensky410fe2f2011-04-26 12:36:46 +030030#define NDFC_MAX_CS 4
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020031
32struct ndfc_controller {
Grant Likely2dc11582010-08-06 09:25:50 -060033 struct platform_device *ofdev;
Sean MacLennana808ad32008-12-10 13:16:34 +000034 void __iomem *ndfcbase;
Sean MacLennana808ad32008-12-10 13:16:34 +000035 struct nand_chip chip;
36 int chip_select;
Miquel Raynal7da45132018-07-17 09:08:02 +020037 struct nand_controller ndfc_control;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020038};
39
Felix Radensky410fe2f2011-04-26 12:36:46 +030040static struct ndfc_controller ndfc_ctrl[NDFC_MAX_CS];
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020041
Boris Brezillon758b56f2018-09-06 14:05:24 +020042static void ndfc_select_chip(struct nand_chip *nchip, int chip)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020043{
44 uint32_t ccr;
Boris BREZILLONd699ed22015-12-10 09:00:41 +010045 struct ndfc_controller *ndfc = nand_get_controller_data(nchip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020046
Sean MacLennana808ad32008-12-10 13:16:34 +000047 ccr = in_be32(ndfc->ndfcbase + NDFC_CCR);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020048 if (chip >= 0) {
49 ccr &= ~NDFC_CCR_BS_MASK;
Sean MacLennana808ad32008-12-10 13:16:34 +000050 ccr |= NDFC_CCR_BS(chip + ndfc->chip_select);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020051 } else
52 ccr |= NDFC_CCR_RESET_CE;
Sean MacLennana808ad32008-12-10 13:16:34 +000053 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020054}
55
Boris Brezillon0f808c12018-09-06 14:05:26 +020056static void ndfc_hwcontrol(struct nand_chip *chip, int cmd, unsigned int ctrl)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020057{
Boris BREZILLONd699ed22015-12-10 09:00:41 +010058 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020059
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020060 if (cmd == NAND_CMD_NONE)
61 return;
62
63 if (ctrl & NAND_CLE)
Thomas Gleixner1794c132006-06-22 13:06:43 +020064 writel(cmd & 0xFF, ndfc->ndfcbase + NDFC_CMD);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020065 else
Thomas Gleixner1794c132006-06-22 13:06:43 +020066 writel(cmd & 0xFF, ndfc->ndfcbase + NDFC_ALE);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020067}
68
Boris Brezillon50a487e2018-09-06 14:05:27 +020069static int ndfc_ready(struct nand_chip *chip)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020070{
Boris BREZILLONd699ed22015-12-10 09:00:41 +010071 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020072
Sean MacLennana808ad32008-12-10 13:16:34 +000073 return in_be32(ndfc->ndfcbase + NDFC_STAT) & NDFC_STAT_IS_READY;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020074}
75
Boris Brezillonec476362018-09-06 14:05:17 +020076static void ndfc_enable_hwecc(struct nand_chip *chip, int mode)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020077{
78 uint32_t ccr;
Boris BREZILLONd699ed22015-12-10 09:00:41 +010079 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020080
Sean MacLennana808ad32008-12-10 13:16:34 +000081 ccr = in_be32(ndfc->ndfcbase + NDFC_CCR);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020082 ccr |= NDFC_CCR_RESET_ECC;
Sean MacLennana808ad32008-12-10 13:16:34 +000083 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020084 wmb();
85}
86
Boris Brezillonaf37d2c2018-09-06 14:05:18 +020087static int ndfc_calculate_ecc(struct nand_chip *chip,
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020088 const u_char *dat, u_char *ecc_code)
89{
Boris BREZILLONd699ed22015-12-10 09:00:41 +010090 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020091 uint32_t ecc;
92 uint8_t *p = (uint8_t *)&ecc;
93
94 wmb();
Sean MacLennana808ad32008-12-10 13:16:34 +000095 ecc = in_be32(ndfc->ndfcbase + NDFC_ECC);
96 /* The NDFC uses Smart Media (SMC) bytes order */
Feng Kan76c23c32009-08-25 11:27:20 -070097 ecc_code[0] = p[1];
98 ecc_code[1] = p[2];
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020099 ecc_code[2] = p[3];
100
101 return 0;
102}
103
104/*
105 * Speedups for buffer read/write/verify
106 *
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
109 * page aligned.
110 */
Boris Brezillon7e534322018-09-06 14:05:22 +0200111static void ndfc_read_buf(struct nand_chip *chip, uint8_t *buf, int len)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200112{
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100113 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200114 uint32_t *p = (uint32_t *) buf;
115
116 for(;len > 0; len -= 4)
Sean MacLennana808ad32008-12-10 13:16:34 +0000117 *p++ = in_be32(ndfc->ndfcbase + NDFC_DATA);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200118}
119
Boris Brezillonc0739d82018-09-06 14:05:23 +0200120static void ndfc_write_buf(struct nand_chip *chip, const uint8_t *buf, int len)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200121{
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100122 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200123 uint32_t *p = (uint32_t *) buf;
124
125 for(;len > 0; len -= 4)
Sean MacLennana808ad32008-12-10 13:16:34 +0000126 out_be32(ndfc->ndfcbase + NDFC_DATA, *p++);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200127}
128
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200129/*
130 * Initialize chip structure
131 */
Sean MacLennana808ad32008-12-10 13:16:34 +0000132static int ndfc_chip_init(struct ndfc_controller *ndfc,
133 struct device_node *node)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200134{
Sean MacLennana808ad32008-12-10 13:16:34 +0000135 struct device_node *flash_np;
136 struct nand_chip *chip = &ndfc->chip;
Boris BREZILLONca921b52015-12-10 09:00:14 +0100137 struct mtd_info *mtd = nand_to_mtd(chip);
Sean MacLennana808ad32008-12-10 13:16:34 +0000138 int ret;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200139
Boris Brezillon82fc5092018-09-07 00:38:34 +0200140 chip->legacy.IO_ADDR_R = ndfc->ndfcbase + NDFC_DATA;
141 chip->legacy.IO_ADDR_W = ndfc->ndfcbase + NDFC_DATA;
Boris Brezillonbf6065c2018-09-07 00:38:36 +0200142 chip->legacy.cmd_ctrl = ndfc_hwcontrol;
Boris Brezillon8395b752018-09-07 00:38:37 +0200143 chip->legacy.dev_ready = ndfc_ready;
Boris Brezillon7d6c37e2018-11-11 08:55:22 +0100144 chip->legacy.select_chip = ndfc_select_chip;
Boris Brezillon3cece3a2018-09-07 00:38:41 +0200145 chip->legacy.chip_delay = 50;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200146 chip->controller = &ndfc->ndfc_control;
Boris Brezillon716bbba2018-09-07 00:38:35 +0200147 chip->legacy.read_buf = ndfc_read_buf;
148 chip->legacy.write_buf = ndfc_write_buf;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200149 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;
154 chip->ecc.bytes = 3;
Mike Dunn6a918ba2012-03-11 14:21:11 -0700155 chip->ecc.strength = 1;
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100156 nand_set_controller_data(chip, ndfc);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200157
Boris BREZILLONca921b52015-12-10 09:00:14 +0100158 mtd->dev.parent = &ndfc->ofdev->dev;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200159
Sean MacLennana808ad32008-12-10 13:16:34 +0000160 flash_np = of_get_next_child(node, NULL);
161 if (!flash_np)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200162 return -ENODEV;
Brian Norrisa61ae812015-10-30 20:33:25 -0700163 nand_set_flash_node(chip, flash_np);
Sean MacLennana808ad32008-12-10 13:16:34 +0000164
Rob Herringa9fdba02018-08-27 20:52:34 -0500165 mtd->name = kasprintf(GFP_KERNEL, "%s.%pOFn", dev_name(&ndfc->ofdev->dev),
166 flash_np);
Boris BREZILLONca921b52015-12-10 09:00:14 +0100167 if (!mtd->name) {
Sean MacLennana808ad32008-12-10 13:16:34 +0000168 ret = -ENOMEM;
169 goto err;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200170 }
171
Boris Brezillon00ad3782018-09-06 14:05:14 +0200172 ret = nand_scan(chip, 1);
Sean MacLennana808ad32008-12-10 13:16:34 +0000173 if (ret)
174 goto err;
175
Boris BREZILLONca921b52015-12-10 09:00:14 +0100176 ret = mtd_device_register(mtd, NULL, 0);
Sean MacLennana808ad32008-12-10 13:16:34 +0000177
178err:
179 of_node_put(flash_np);
180 if (ret)
Boris BREZILLONca921b52015-12-10 09:00:14 +0100181 kfree(mtd->name);
Sean MacLennana808ad32008-12-10 13:16:34 +0000182 return ret;
183}
184
Bill Pemberton06f25512012-11-19 13:23:07 -0500185static int ndfc_probe(struct platform_device *ofdev)
Sean MacLennana808ad32008-12-10 13:16:34 +0000186{
Felix Radensky410fe2f2011-04-26 12:36:46 +0300187 struct ndfc_controller *ndfc;
Ian Munsie766f2712010-10-01 17:06:08 +1000188 const __be32 *reg;
Sean MacLennana808ad32008-12-10 13:16:34 +0000189 u32 ccr;
Dan Carpenter5828c602014-07-31 18:36:20 +0300190 u32 cs;
191 int err, len;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200192
Sean MacLennana808ad32008-12-10 13:16:34 +0000193 /* Read the reg property to get the chip select */
Grant Likely61c7a082010-04-13 16:12:29 -0700194 reg = of_get_property(ofdev->dev.of_node, "reg", &len);
Sean MacLennana808ad32008-12-10 13:16:34 +0000195 if (reg == NULL || len != 12) {
196 dev_err(&ofdev->dev, "unable read reg property (%d)\n", len);
197 return -ENOENT;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200198 }
Felix Radensky410fe2f2011-04-26 12:36:46 +0300199
200 cs = be32_to_cpu(reg[0]);
201 if (cs >= NDFC_MAX_CS) {
202 dev_err(&ofdev->dev, "invalid CS number (%d)\n", cs);
203 return -EINVAL;
204 }
205
206 ndfc = &ndfc_ctrl[cs];
207 ndfc->chip_select = cs;
208
Miquel Raynal7da45132018-07-17 09:08:02 +0200209 nand_controller_init(&ndfc->ndfc_control);
Felix Radensky410fe2f2011-04-26 12:36:46 +0300210 ndfc->ofdev = ofdev;
211 dev_set_drvdata(&ofdev->dev, ndfc);
Sean MacLennana808ad32008-12-10 13:16:34 +0000212
Grant Likely61c7a082010-04-13 16:12:29 -0700213 ndfc->ndfcbase = of_iomap(ofdev->dev.of_node, 0);
Sean MacLennana808ad32008-12-10 13:16:34 +0000214 if (!ndfc->ndfcbase) {
215 dev_err(&ofdev->dev, "failed to get memory\n");
216 return -EIO;
217 }
218
219 ccr = NDFC_CCR_BS(ndfc->chip_select);
220
221 /* It is ok if ccr does not exist - just default to 0 */
Grant Likely61c7a082010-04-13 16:12:29 -0700222 reg = of_get_property(ofdev->dev.of_node, "ccr", NULL);
Sean MacLennana808ad32008-12-10 13:16:34 +0000223 if (reg)
Ian Munsie766f2712010-10-01 17:06:08 +1000224 ccr |= be32_to_cpup(reg);
Sean MacLennana808ad32008-12-10 13:16:34 +0000225
226 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
227
228 /* Set the bank settings if given */
Grant Likely61c7a082010-04-13 16:12:29 -0700229 reg = of_get_property(ofdev->dev.of_node, "bank-settings", NULL);
Sean MacLennana808ad32008-12-10 13:16:34 +0000230 if (reg) {
231 int offset = NDFC_BCFG0 + (ndfc->chip_select << 2);
Ian Munsie766f2712010-10-01 17:06:08 +1000232 out_be32(ndfc->ndfcbase + offset, be32_to_cpup(reg));
Sean MacLennana808ad32008-12-10 13:16:34 +0000233 }
234
Grant Likely61c7a082010-04-13 16:12:29 -0700235 err = ndfc_chip_init(ndfc, ofdev->dev.of_node);
Sean MacLennana808ad32008-12-10 13:16:34 +0000236 if (err) {
237 iounmap(ndfc->ndfcbase);
238 return err;
239 }
240
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200241 return 0;
242}
243
Bill Pemberton810b7e02012-11-19 13:26:04 -0500244static int ndfc_remove(struct platform_device *ofdev)
Sean MacLennana808ad32008-12-10 13:16:34 +0000245{
246 struct ndfc_controller *ndfc = dev_get_drvdata(&ofdev->dev);
Boris BREZILLONca921b52015-12-10 09:00:14 +0100247 struct mtd_info *mtd = nand_to_mtd(&ndfc->chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200248
Boris Brezillon59ac2762018-09-06 14:05:15 +0200249 nand_release(&ndfc->chip);
Boris BREZILLONca921b52015-12-10 09:00:14 +0100250 kfree(mtd->name);
Sean MacLennana808ad32008-12-10 13:16:34 +0000251
252 return 0;
253}
254
255static const struct of_device_id ndfc_match[] = {
256 { .compatible = "ibm,ndfc", },
257 {}
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200258};
Sean MacLennana808ad32008-12-10 13:16:34 +0000259MODULE_DEVICE_TABLE(of, ndfc_match);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200260
Grant Likely1c48a5c2011-02-17 02:43:24 -0700261static struct platform_driver ndfc_driver = {
Sean MacLennana808ad32008-12-10 13:16:34 +0000262 .driver = {
Grant Likely40182942010-04-13 16:13:02 -0700263 .name = "ndfc",
Grant Likely40182942010-04-13 16:13:02 -0700264 .of_match_table = ndfc_match,
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200265 },
Sean MacLennana808ad32008-12-10 13:16:34 +0000266 .probe = ndfc_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500267 .remove = ndfc_remove,
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200268};
269
Axel Linf99640d2011-11-27 20:45:03 +0800270module_platform_driver(ndfc_driver);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200271
272MODULE_LICENSE("GPL");
273MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
Sean MacLennana808ad32008-12-10 13:16:34 +0000274MODULE_DESCRIPTION("OF Platform driver for NDFC");