blob: 7ba65553d6ad3891e30a7e61f2aa352c75095eeb [file] [log] [blame]
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02001/*
2 * drivers/mtd/ndfc.c
3 *
4 * Overview:
Sean MacLennana808ad32008-12-10 13:16:34 +00005 * Platform independent driver for NDFC (NanD Flash Controller)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +02006 * integrated into EP440 cores
7 *
Sean MacLennana808ad32008-12-10 13:16:34 +00008 * Ported to an OF platform driver by Sean MacLennan
9 *
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
12 * multiple chips.
13 *
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020014 * Author: Thomas Gleixner
15 *
16 * Copyright 2006 IBM
Sean MacLennana808ad32008-12-10 13:16:34 +000017 * Copyright 2008 PIKA Technologies
18 * Sean MacLennan <smaclennan@pikatech.com>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020019 *
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.
24 *
25 */
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020032#include <linux/mtd/mtd.h>
Sean MacLennana808ad32008-12-10 13:16:34 +000033#include <linux/of_platform.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020034#include <asm/io.h>
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020035
Felix Radensky410fe2f2011-04-26 12:36:46 +030036#define NDFC_MAX_CS 4
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020037
38struct ndfc_controller {
Grant Likely2dc11582010-08-06 09:25:50 -060039 struct platform_device *ofdev;
Sean MacLennana808ad32008-12-10 13:16:34 +000040 void __iomem *ndfcbase;
41 struct mtd_info mtd;
42 struct nand_chip chip;
43 int chip_select;
44 struct nand_hw_control ndfc_control;
45#ifdef CONFIG_MTD_PARTITIONS
46 struct mtd_partition *parts;
47#endif
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020048};
49
Felix Radensky410fe2f2011-04-26 12:36:46 +030050static struct ndfc_controller ndfc_ctrl[NDFC_MAX_CS];
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020051
52static void ndfc_select_chip(struct mtd_info *mtd, int chip)
53{
54 uint32_t ccr;
Felix Radensky410fe2f2011-04-26 12:36:46 +030055 struct nand_chip *nchip = mtd->priv;
56 struct ndfc_controller *ndfc = nchip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020057
Sean MacLennana808ad32008-12-10 13:16:34 +000058 ccr = in_be32(ndfc->ndfcbase + NDFC_CCR);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020059 if (chip >= 0) {
60 ccr &= ~NDFC_CCR_BS_MASK;
Sean MacLennana808ad32008-12-10 13:16:34 +000061 ccr |= NDFC_CCR_BS(chip + ndfc->chip_select);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020062 } else
63 ccr |= NDFC_CCR_RESET_CE;
Sean MacLennana808ad32008-12-10 13:16:34 +000064 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020065}
66
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020067static void ndfc_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020068{
Felix Radensky410fe2f2011-04-26 12:36:46 +030069 struct nand_chip *chip = mtd->priv;
70 struct ndfc_controller *ndfc = chip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020071
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020072 if (cmd == NAND_CMD_NONE)
73 return;
74
75 if (ctrl & NAND_CLE)
Thomas Gleixner1794c132006-06-22 13:06:43 +020076 writel(cmd & 0xFF, ndfc->ndfcbase + NDFC_CMD);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020077 else
Thomas Gleixner1794c132006-06-22 13:06:43 +020078 writel(cmd & 0xFF, ndfc->ndfcbase + NDFC_ALE);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020079}
80
81static int ndfc_ready(struct mtd_info *mtd)
82{
Felix Radensky410fe2f2011-04-26 12:36:46 +030083 struct nand_chip *chip = mtd->priv;
84 struct ndfc_controller *ndfc = chip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020085
Sean MacLennana808ad32008-12-10 13:16:34 +000086 return in_be32(ndfc->ndfcbase + NDFC_STAT) & NDFC_STAT_IS_READY;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020087}
88
89static void ndfc_enable_hwecc(struct mtd_info *mtd, int mode)
90{
91 uint32_t ccr;
Felix Radensky410fe2f2011-04-26 12:36:46 +030092 struct nand_chip *chip = mtd->priv;
93 struct ndfc_controller *ndfc = chip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020094
Sean MacLennana808ad32008-12-10 13:16:34 +000095 ccr = in_be32(ndfc->ndfcbase + NDFC_CCR);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020096 ccr |= NDFC_CCR_RESET_ECC;
Sean MacLennana808ad32008-12-10 13:16:34 +000097 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +020098 wmb();
99}
100
101static int ndfc_calculate_ecc(struct mtd_info *mtd,
102 const u_char *dat, u_char *ecc_code)
103{
Felix Radensky410fe2f2011-04-26 12:36:46 +0300104 struct nand_chip *chip = mtd->priv;
105 struct ndfc_controller *ndfc = chip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200106 uint32_t ecc;
107 uint8_t *p = (uint8_t *)&ecc;
108
109 wmb();
Sean MacLennana808ad32008-12-10 13:16:34 +0000110 ecc = in_be32(ndfc->ndfcbase + NDFC_ECC);
111 /* The NDFC uses Smart Media (SMC) bytes order */
Feng Kan76c23c32009-08-25 11:27:20 -0700112 ecc_code[0] = p[1];
113 ecc_code[1] = p[2];
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200114 ecc_code[2] = p[3];
115
116 return 0;
117}
118
119/*
120 * Speedups for buffer read/write/verify
121 *
122 * NDFC allows 32bit read/write of data. So we can speed up the buffer
123 * functions. No further checking, as nand_base will always read/write
124 * page aligned.
125 */
126static void ndfc_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
127{
Felix Radensky410fe2f2011-04-26 12:36:46 +0300128 struct nand_chip *chip = mtd->priv;
129 struct ndfc_controller *ndfc = chip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200130 uint32_t *p = (uint32_t *) buf;
131
132 for(;len > 0; len -= 4)
Sean MacLennana808ad32008-12-10 13:16:34 +0000133 *p++ = in_be32(ndfc->ndfcbase + NDFC_DATA);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200134}
135
136static void ndfc_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
137{
Felix Radensky410fe2f2011-04-26 12:36:46 +0300138 struct nand_chip *chip = mtd->priv;
139 struct ndfc_controller *ndfc = chip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200140 uint32_t *p = (uint32_t *) buf;
141
142 for(;len > 0; len -= 4)
Sean MacLennana808ad32008-12-10 13:16:34 +0000143 out_be32(ndfc->ndfcbase + NDFC_DATA, *p++);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200144}
145
146static int ndfc_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
147{
Felix Radensky410fe2f2011-04-26 12:36:46 +0300148 struct nand_chip *chip = mtd->priv;
149 struct ndfc_controller *ndfc = chip->priv;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200150 uint32_t *p = (uint32_t *) buf;
151
152 for(;len > 0; len -= 4)
Sean MacLennana808ad32008-12-10 13:16:34 +0000153 if (*p++ != in_be32(ndfc->ndfcbase + NDFC_DATA))
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200154 return -EFAULT;
155 return 0;
156}
157
158/*
159 * Initialize chip structure
160 */
Sean MacLennana808ad32008-12-10 13:16:34 +0000161static int ndfc_chip_init(struct ndfc_controller *ndfc,
162 struct device_node *node)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200163{
Sean MacLennana808ad32008-12-10 13:16:34 +0000164#ifdef CONFIG_MTD_PARTITIONS
165#ifdef CONFIG_MTD_CMDLINE_PARTS
166 static const char *part_types[] = { "cmdlinepart", NULL };
167#else
168 static const char *part_types[] = { NULL };
169#endif
170#endif
171 struct device_node *flash_np;
172 struct nand_chip *chip = &ndfc->chip;
173 int ret;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200174
175 chip->IO_ADDR_R = ndfc->ndfcbase + NDFC_DATA;
176 chip->IO_ADDR_W = ndfc->ndfcbase + NDFC_DATA;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200177 chip->cmd_ctrl = ndfc_hwcontrol;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200178 chip->dev_ready = ndfc_ready;
179 chip->select_chip = ndfc_select_chip;
180 chip->chip_delay = 50;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200181 chip->controller = &ndfc->ndfc_control;
182 chip->read_buf = ndfc_read_buf;
183 chip->write_buf = ndfc_write_buf;
184 chip->verify_buf = ndfc_verify_buf;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200185 chip->ecc.correct = nand_correct_data;
186 chip->ecc.hwctl = ndfc_enable_hwecc;
187 chip->ecc.calculate = ndfc_calculate_ecc;
188 chip->ecc.mode = NAND_ECC_HW;
189 chip->ecc.size = 256;
190 chip->ecc.bytes = 3;
Felix Radensky410fe2f2011-04-26 12:36:46 +0300191 chip->priv = ndfc;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200192
Sean MacLennana808ad32008-12-10 13:16:34 +0000193 ndfc->mtd.priv = chip;
194 ndfc->mtd.owner = THIS_MODULE;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200195
Sean MacLennana808ad32008-12-10 13:16:34 +0000196 flash_np = of_get_next_child(node, NULL);
197 if (!flash_np)
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200198 return -ENODEV;
Sean MacLennana808ad32008-12-10 13:16:34 +0000199
200 ndfc->mtd.name = kasprintf(GFP_KERNEL, "%s.%s",
Kay Sieversc36f1e32009-03-24 16:38:21 -0700201 dev_name(&ndfc->ofdev->dev), flash_np->name);
Sean MacLennana808ad32008-12-10 13:16:34 +0000202 if (!ndfc->mtd.name) {
203 ret = -ENOMEM;
204 goto err;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200205 }
206
Sean MacLennana808ad32008-12-10 13:16:34 +0000207 ret = nand_scan(&ndfc->mtd, 1);
208 if (ret)
209 goto err;
210
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200211#ifdef CONFIG_MTD_PARTITIONS
Sean MacLennana808ad32008-12-10 13:16:34 +0000212 ret = parse_mtd_partitions(&ndfc->mtd, part_types, &ndfc->parts, 0);
213 if (ret < 0)
214 goto err;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200215
Sean MacLennana808ad32008-12-10 13:16:34 +0000216#ifdef CONFIG_MTD_OF_PARTS
217 if (ret == 0) {
218 ret = of_mtd_parse_partitions(&ndfc->ofdev->dev, flash_np,
219 &ndfc->parts);
220 if (ret < 0)
221 goto err;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200222 }
Sean MacLennana808ad32008-12-10 13:16:34 +0000223#endif
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200224
Sean MacLennana808ad32008-12-10 13:16:34 +0000225 if (ret > 0)
226 ret = add_mtd_partitions(&ndfc->mtd, ndfc->parts, ret);
227 else
228#endif
229 ret = add_mtd_device(&ndfc->mtd);
230
231err:
232 of_node_put(flash_np);
233 if (ret)
234 kfree(ndfc->mtd.name);
235 return ret;
236}
237
Grant Likely1c48a5c2011-02-17 02:43:24 -0700238static int __devinit ndfc_probe(struct platform_device *ofdev)
Sean MacLennana808ad32008-12-10 13:16:34 +0000239{
Felix Radensky410fe2f2011-04-26 12:36:46 +0300240 struct ndfc_controller *ndfc;
Ian Munsie766f2712010-10-01 17:06:08 +1000241 const __be32 *reg;
Sean MacLennana808ad32008-12-10 13:16:34 +0000242 u32 ccr;
Felix Radensky410fe2f2011-04-26 12:36:46 +0300243 int err, len, cs;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200244
Sean MacLennana808ad32008-12-10 13:16:34 +0000245 /* Read the reg property to get the chip select */
Grant Likely61c7a082010-04-13 16:12:29 -0700246 reg = of_get_property(ofdev->dev.of_node, "reg", &len);
Sean MacLennana808ad32008-12-10 13:16:34 +0000247 if (reg == NULL || len != 12) {
248 dev_err(&ofdev->dev, "unable read reg property (%d)\n", len);
249 return -ENOENT;
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200250 }
Felix Radensky410fe2f2011-04-26 12:36:46 +0300251
252 cs = be32_to_cpu(reg[0]);
253 if (cs >= NDFC_MAX_CS) {
254 dev_err(&ofdev->dev, "invalid CS number (%d)\n", cs);
255 return -EINVAL;
256 }
257
258 ndfc = &ndfc_ctrl[cs];
259 ndfc->chip_select = cs;
260
261 spin_lock_init(&ndfc->ndfc_control.lock);
262 init_waitqueue_head(&ndfc->ndfc_control.wq);
263 ndfc->ofdev = ofdev;
264 dev_set_drvdata(&ofdev->dev, ndfc);
Sean MacLennana808ad32008-12-10 13:16:34 +0000265
Grant Likely61c7a082010-04-13 16:12:29 -0700266 ndfc->ndfcbase = of_iomap(ofdev->dev.of_node, 0);
Sean MacLennana808ad32008-12-10 13:16:34 +0000267 if (!ndfc->ndfcbase) {
268 dev_err(&ofdev->dev, "failed to get memory\n");
269 return -EIO;
270 }
271
272 ccr = NDFC_CCR_BS(ndfc->chip_select);
273
274 /* It is ok if ccr does not exist - just default to 0 */
Grant Likely61c7a082010-04-13 16:12:29 -0700275 reg = of_get_property(ofdev->dev.of_node, "ccr", NULL);
Sean MacLennana808ad32008-12-10 13:16:34 +0000276 if (reg)
Ian Munsie766f2712010-10-01 17:06:08 +1000277 ccr |= be32_to_cpup(reg);
Sean MacLennana808ad32008-12-10 13:16:34 +0000278
279 out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
280
281 /* Set the bank settings if given */
Grant Likely61c7a082010-04-13 16:12:29 -0700282 reg = of_get_property(ofdev->dev.of_node, "bank-settings", NULL);
Sean MacLennana808ad32008-12-10 13:16:34 +0000283 if (reg) {
284 int offset = NDFC_BCFG0 + (ndfc->chip_select << 2);
Ian Munsie766f2712010-10-01 17:06:08 +1000285 out_be32(ndfc->ndfcbase + offset, be32_to_cpup(reg));
Sean MacLennana808ad32008-12-10 13:16:34 +0000286 }
287
Grant Likely61c7a082010-04-13 16:12:29 -0700288 err = ndfc_chip_init(ndfc, ofdev->dev.of_node);
Sean MacLennana808ad32008-12-10 13:16:34 +0000289 if (err) {
290 iounmap(ndfc->ndfcbase);
291 return err;
292 }
293
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200294 return 0;
295}
296
Grant Likely2dc11582010-08-06 09:25:50 -0600297static int __devexit ndfc_remove(struct platform_device *ofdev)
Sean MacLennana808ad32008-12-10 13:16:34 +0000298{
299 struct ndfc_controller *ndfc = dev_get_drvdata(&ofdev->dev);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200300
Sean MacLennana808ad32008-12-10 13:16:34 +0000301 nand_release(&ndfc->mtd);
302
303 return 0;
304}
305
306static const struct of_device_id ndfc_match[] = {
307 { .compatible = "ibm,ndfc", },
308 {}
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200309};
Sean MacLennana808ad32008-12-10 13:16:34 +0000310MODULE_DEVICE_TABLE(of, ndfc_match);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200311
Grant Likely1c48a5c2011-02-17 02:43:24 -0700312static struct platform_driver ndfc_driver = {
Sean MacLennana808ad32008-12-10 13:16:34 +0000313 .driver = {
Grant Likely40182942010-04-13 16:13:02 -0700314 .name = "ndfc",
315 .owner = THIS_MODULE,
316 .of_match_table = ndfc_match,
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200317 },
Sean MacLennana808ad32008-12-10 13:16:34 +0000318 .probe = ndfc_probe,
319 .remove = __devexit_p(ndfc_remove),
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200320};
321
322static int __init ndfc_nand_init(void)
323{
Grant Likely1c48a5c2011-02-17 02:43:24 -0700324 return platform_driver_register(&ndfc_driver);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200325}
326
327static void __exit ndfc_nand_exit(void)
328{
Grant Likely1c48a5c2011-02-17 02:43:24 -0700329 platform_driver_unregister(&ndfc_driver);
Thomas Gleixnerce4c61f2006-05-23 11:43:28 +0200330}
331
332module_init(ndfc_nand_init);
333module_exit(ndfc_nand_exit);
334
335MODULE_LICENSE("GPL");
336MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
Sean MacLennana808ad32008-12-10 13:16:34 +0000337MODULE_DESCRIPTION("OF Platform driver for NDFC");