blob: 218c789ca7ab7539418d132df412a99dc45ac981 [file] [log] [blame]
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02001/*
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02002 * Overview:
Sean MacLennana808ad32008-12-10 13:16:34 +00003 * Platform independent driver for NDFC (NanD Flash Controller)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02004 * integrated into EP440 cores
5 *
Sean MacLennana808ad32008-12-10 13:16:34 +00006 * Ported to an OF platform driver by Sean MacLennan
7 *
8 * The NDFC supports multiple chips, but this driver only supports a
9 * single chip since I do not have access to any boards with
10 * multiple chips.
11 *
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020012 * Author: Thomas Gleixner
13 *
14 * Copyright 2006 IBM
Sean MacLennana808ad32008-12-10 13:16:34 +000015 * Copyright 2008 PIKA Technologies
16 * Sean MacLennan <smaclennan@pikatech.com>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020017 *
18 * This program is free software; you can redistribute it and/or modify it
19 * under the terms of the GNU General Public License as published by the
20 * Free Software Foundation; either version 2 of the License, or (at your
21 * option) any later version.
22 *
23 */
24#include <linux/module.h>
25#include <linux/mtd/nand.h>
26#include <linux/mtd/nand_ecc.h>
27#include <linux/mtd/partitions.h>
28#include <linux/mtd/ndfc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020030#include <linux/mtd/mtd.h>
Rob Herring5af50732013-09-17 14:28:33 -050031#include <linux/of_address.h>
Sean MacLennana808ad32008-12-10 13:16:34 +000032#include <linux/of_platform.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020033#include <asm/io.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020034
Felix Radensky410fe2f2011-04-26 12:36:46 +030035#define NDFC_MAX_CS 4
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020036
37struct ndfc_controller {
Grant Likely2dc11582010-08-06 09:25:50 -060038 struct platform_device *ofdev;
Sean MacLennana808ad32008-12-10 13:16:34 +000039 void __iomem *ndfcbase;
Sean MacLennana808ad32008-12-10 13:16:34 +000040 struct nand_chip chip;
41 int chip_select;
42 struct nand_hw_control ndfc_control;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020043};
44
Felix Radensky410fe2f2011-04-26 12:36:46 +030045static struct ndfc_controller ndfc_ctrl[NDFC_MAX_CS];
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020046
47static void ndfc_select_chip(struct mtd_info *mtd, int chip)
48{
49 uint32_t ccr;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010050 struct nand_chip *nchip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +010051 struct ndfc_controller *ndfc = nand_get_controller_data(nchip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020052
Sean MacLennana808ad32008-12-10 13:16:34 +000053 ccr = in_be32(ndfc->ndfcbase + NDFC_CCR);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020054 if (chip >= 0) {
55 ccr &= ~NDFC_CCR_BS_MASK;
Sean MacLennana808ad32008-12-10 13:16:34 +000056 ccr |= NDFC_CCR_BS(chip + ndfc->chip_select);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020057 } else
58 ccr |= NDFC_CCR_RESET_CE;
Sean MacLennana808ad32008-12-10 13:16:34 +000059 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020060}
61
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020062static void ndfc_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020063{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010064 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +010065 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020066
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020067 if (cmd == NAND_CMD_NONE)
68 return;
69
70 if (ctrl & NAND_CLE)
Thomas Gleixner1794c132006-06-22 13:06:43 +020071 writel(cmd & 0xFF, ndfc->ndfcbase + NDFC_CMD);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020072 else
Thomas Gleixner1794c132006-06-22 13:06:43 +020073 writel(cmd & 0xFF, ndfc->ndfcbase + NDFC_ALE);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020074}
75
76static int ndfc_ready(struct mtd_info *mtd)
77{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010078 struct nand_chip *chip = mtd_to_nand(mtd);
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 return in_be32(ndfc->ndfcbase + NDFC_STAT) & NDFC_STAT_IS_READY;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020082}
83
84static void ndfc_enable_hwecc(struct mtd_info *mtd, int mode)
85{
86 uint32_t ccr;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010087 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +010088 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020089
Sean MacLennana808ad32008-12-10 13:16:34 +000090 ccr = in_be32(ndfc->ndfcbase + NDFC_CCR);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020091 ccr |= NDFC_CCR_RESET_ECC;
Sean MacLennana808ad32008-12-10 13:16:34 +000092 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020093 wmb();
94}
95
96static int ndfc_calculate_ecc(struct mtd_info *mtd,
97 const u_char *dat, u_char *ecc_code)
98{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010099 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100100 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200101 uint32_t ecc;
102 uint8_t *p = (uint8_t *)&ecc;
103
104 wmb();
Sean MacLennana808ad32008-12-10 13:16:34 +0000105 ecc = in_be32(ndfc->ndfcbase + NDFC_ECC);
106 /* The NDFC uses Smart Media (SMC) bytes order */
Feng Kan76c23c32009-08-25 11:27:20 -0700107 ecc_code[0] = p[1];
108 ecc_code[1] = p[2];
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200109 ecc_code[2] = p[3];
110
111 return 0;
112}
113
114/*
115 * Speedups for buffer read/write/verify
116 *
117 * NDFC allows 32bit read/write of data. So we can speed up the buffer
118 * functions. No further checking, as nand_base will always read/write
119 * page aligned.
120 */
121static void ndfc_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
122{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100123 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100124 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200125 uint32_t *p = (uint32_t *) buf;
126
127 for(;len > 0; len -= 4)
Sean MacLennana808ad32008-12-10 13:16:34 +0000128 *p++ = in_be32(ndfc->ndfcbase + NDFC_DATA);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200129}
130
131static void ndfc_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
132{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100133 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100134 struct ndfc_controller *ndfc = nand_get_controller_data(chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200135 uint32_t *p = (uint32_t *) buf;
136
137 for(;len > 0; len -= 4)
Sean MacLennana808ad32008-12-10 13:16:34 +0000138 out_be32(ndfc->ndfcbase + NDFC_DATA, *p++);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200139}
140
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200141/*
142 * Initialize chip structure
143 */
Sean MacLennana808ad32008-12-10 13:16:34 +0000144static int ndfc_chip_init(struct ndfc_controller *ndfc,
145 struct device_node *node)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200146{
Sean MacLennana808ad32008-12-10 13:16:34 +0000147 struct device_node *flash_np;
148 struct nand_chip *chip = &ndfc->chip;
Boris BREZILLONca921b52015-12-10 09:00:14 +0100149 struct mtd_info *mtd = nand_to_mtd(chip);
Sean MacLennana808ad32008-12-10 13:16:34 +0000150 int ret;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200151
152 chip->IO_ADDR_R = ndfc->ndfcbase + NDFC_DATA;
153 chip->IO_ADDR_W = ndfc->ndfcbase + NDFC_DATA;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200154 chip->cmd_ctrl = ndfc_hwcontrol;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200155 chip->dev_ready = ndfc_ready;
156 chip->select_chip = ndfc_select_chip;
157 chip->chip_delay = 50;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200158 chip->controller = &ndfc->ndfc_control;
159 chip->read_buf = ndfc_read_buf;
160 chip->write_buf = ndfc_write_buf;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200161 chip->ecc.correct = nand_correct_data;
162 chip->ecc.hwctl = ndfc_enable_hwecc;
163 chip->ecc.calculate = ndfc_calculate_ecc;
164 chip->ecc.mode = NAND_ECC_HW;
165 chip->ecc.size = 256;
166 chip->ecc.bytes = 3;
Mike Dunn6a918ba2012-03-11 14:21:11 -0700167 chip->ecc.strength = 1;
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100168 nand_set_controller_data(chip, ndfc);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200169
Boris BREZILLONca921b52015-12-10 09:00:14 +0100170 mtd->dev.parent = &ndfc->ofdev->dev;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200171
Sean MacLennana808ad32008-12-10 13:16:34 +0000172 flash_np = of_get_next_child(node, NULL);
173 if (!flash_np)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200174 return -ENODEV;
Brian Norrisa61ae812015-10-30 20:33:25 -0700175 nand_set_flash_node(chip, flash_np);
Sean MacLennana808ad32008-12-10 13:16:34 +0000176
Boris BREZILLONca921b52015-12-10 09:00:14 +0100177 mtd->name = kasprintf(GFP_KERNEL, "%s.%s", dev_name(&ndfc->ofdev->dev),
178 flash_np->name);
179 if (!mtd->name) {
Sean MacLennana808ad32008-12-10 13:16:34 +0000180 ret = -ENOMEM;
181 goto err;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200182 }
183
Boris BREZILLONca921b52015-12-10 09:00:14 +0100184 ret = nand_scan(mtd, 1);
Sean MacLennana808ad32008-12-10 13:16:34 +0000185 if (ret)
186 goto err;
187
Boris BREZILLONca921b52015-12-10 09:00:14 +0100188 ret = mtd_device_register(mtd, NULL, 0);
Sean MacLennana808ad32008-12-10 13:16:34 +0000189
190err:
191 of_node_put(flash_np);
192 if (ret)
Boris BREZILLONca921b52015-12-10 09:00:14 +0100193 kfree(mtd->name);
Sean MacLennana808ad32008-12-10 13:16:34 +0000194 return ret;
195}
196
Bill Pemberton06f25512012-11-19 13:23:07 -0500197static int ndfc_probe(struct platform_device *ofdev)
Sean MacLennana808ad32008-12-10 13:16:34 +0000198{
Felix Radensky410fe2f2011-04-26 12:36:46 +0300199 struct ndfc_controller *ndfc;
Ian Munsie766f2712010-10-01 17:06:08 +1000200 const __be32 *reg;
Sean MacLennana808ad32008-12-10 13:16:34 +0000201 u32 ccr;
Dan Carpenter5828c602014-07-31 18:36:20 +0300202 u32 cs;
203 int err, len;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200204
Sean MacLennana808ad32008-12-10 13:16:34 +0000205 /* Read the reg property to get the chip select */
Grant Likely61c7a082010-04-13 16:12:29 -0700206 reg = of_get_property(ofdev->dev.of_node, "reg", &len);
Sean MacLennana808ad32008-12-10 13:16:34 +0000207 if (reg == NULL || len != 12) {
208 dev_err(&ofdev->dev, "unable read reg property (%d)\n", len);
209 return -ENOENT;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200210 }
Felix Radensky410fe2f2011-04-26 12:36:46 +0300211
212 cs = be32_to_cpu(reg[0]);
213 if (cs >= NDFC_MAX_CS) {
214 dev_err(&ofdev->dev, "invalid CS number (%d)\n", cs);
215 return -EINVAL;
216 }
217
218 ndfc = &ndfc_ctrl[cs];
219 ndfc->chip_select = cs;
220
221 spin_lock_init(&ndfc->ndfc_control.lock);
222 init_waitqueue_head(&ndfc->ndfc_control.wq);
223 ndfc->ofdev = ofdev;
224 dev_set_drvdata(&ofdev->dev, ndfc);
Sean MacLennana808ad32008-12-10 13:16:34 +0000225
Grant Likely61c7a082010-04-13 16:12:29 -0700226 ndfc->ndfcbase = of_iomap(ofdev->dev.of_node, 0);
Sean MacLennana808ad32008-12-10 13:16:34 +0000227 if (!ndfc->ndfcbase) {
228 dev_err(&ofdev->dev, "failed to get memory\n");
229 return -EIO;
230 }
231
232 ccr = NDFC_CCR_BS(ndfc->chip_select);
233
234 /* It is ok if ccr does not exist - just default to 0 */
Grant Likely61c7a082010-04-13 16:12:29 -0700235 reg = of_get_property(ofdev->dev.of_node, "ccr", NULL);
Sean MacLennana808ad32008-12-10 13:16:34 +0000236 if (reg)
Ian Munsie766f2712010-10-01 17:06:08 +1000237 ccr |= be32_to_cpup(reg);
Sean MacLennana808ad32008-12-10 13:16:34 +0000238
239 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
240
241 /* Set the bank settings if given */
Grant Likely61c7a082010-04-13 16:12:29 -0700242 reg = of_get_property(ofdev->dev.of_node, "bank-settings", NULL);
Sean MacLennana808ad32008-12-10 13:16:34 +0000243 if (reg) {
244 int offset = NDFC_BCFG0 + (ndfc->chip_select << 2);
Ian Munsie766f2712010-10-01 17:06:08 +1000245 out_be32(ndfc->ndfcbase + offset, be32_to_cpup(reg));
Sean MacLennana808ad32008-12-10 13:16:34 +0000246 }
247
Grant Likely61c7a082010-04-13 16:12:29 -0700248 err = ndfc_chip_init(ndfc, ofdev->dev.of_node);
Sean MacLennana808ad32008-12-10 13:16:34 +0000249 if (err) {
250 iounmap(ndfc->ndfcbase);
251 return err;
252 }
253
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200254 return 0;
255}
256
Bill Pemberton810b7e02012-11-19 13:26:04 -0500257static int ndfc_remove(struct platform_device *ofdev)
Sean MacLennana808ad32008-12-10 13:16:34 +0000258{
259 struct ndfc_controller *ndfc = dev_get_drvdata(&ofdev->dev);
Boris BREZILLONca921b52015-12-10 09:00:14 +0100260 struct mtd_info *mtd = nand_to_mtd(&ndfc->chip);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200261
Boris BREZILLONca921b52015-12-10 09:00:14 +0100262 nand_release(mtd);
263 kfree(mtd->name);
Sean MacLennana808ad32008-12-10 13:16:34 +0000264
265 return 0;
266}
267
268static const struct of_device_id ndfc_match[] = {
269 { .compatible = "ibm,ndfc", },
270 {}
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200271};
Sean MacLennana808ad32008-12-10 13:16:34 +0000272MODULE_DEVICE_TABLE(of, ndfc_match);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200273
Grant Likely1c48a5c2011-02-17 02:43:24 -0700274static struct platform_driver ndfc_driver = {
Sean MacLennana808ad32008-12-10 13:16:34 +0000275 .driver = {
Grant Likely40182942010-04-13 16:13:02 -0700276 .name = "ndfc",
Grant Likely40182942010-04-13 16:13:02 -0700277 .of_match_table = ndfc_match,
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200278 },
Sean MacLennana808ad32008-12-10 13:16:34 +0000279 .probe = ndfc_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500280 .remove = ndfc_remove,
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200281};
282
Axel Linf99640d2011-11-27 20:45:03 +0800283module_platform_driver(ndfc_driver);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200284
285MODULE_LICENSE("GPL");
286MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
Sean MacLennana808ad32008-12-10 13:16:34 +0000287MODULE_DESCRIPTION("OF Platform driver for NDFC");