blob: 8f102d162126ca4b5b01f2c5b581455683aacb77 [file] [log] [blame]
Mike Rapoportaaf7ea22008-10-15 08:38:49 +02001/*
2 * drivers/mtd/nand/gpio.c
3 *
4 * Updated, and converted to generic GPIO based driver by Russell King.
5 *
6 * Written by Ben Dooks <ben@simtec.co.uk>
7 * Based on 2.4 version by Mark Whittaker
8 *
9 * © 2004 Simtec Electronics
10 *
11 * Device driver for NAND connected via GPIO
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
17 */
18
19#include <linux/kernel.h>
Alexander Shiyan283df422013-05-06 17:53:48 +040020#include <linux/err.h>
Mike Rapoportaaf7ea22008-10-15 08:38:49 +020021#include <linux/init.h>
22#include <linux/slab.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/gpio.h>
26#include <linux/io.h>
27#include <linux/mtd/mtd.h>
28#include <linux/mtd/nand.h>
29#include <linux/mtd/partitions.h>
30#include <linux/mtd/nand-gpio.h>
Jamie Iles775c32202011-12-18 10:00:49 +000031#include <linux/of.h>
32#include <linux/of_address.h>
33#include <linux/of_gpio.h>
Mike Rapoportaaf7ea22008-10-15 08:38:49 +020034
35struct gpiomtd {
36 void __iomem *io_sync;
37 struct mtd_info mtd_info;
38 struct nand_chip nand_chip;
39 struct gpio_nand_platdata plat;
40};
41
42#define gpio_nand_getpriv(x) container_of(x, struct gpiomtd, mtd_info)
43
44
45#ifdef CONFIG_ARM
46/* gpio_nand_dosync()
47 *
48 * Make sure the GPIO state changes occur in-order with writes to NAND
49 * memory region.
50 * Needed on PXA due to bus-reordering within the SoC itself (see section on
51 * I/O ordering in PXA manual (section 2.3, p35)
52 */
53static void gpio_nand_dosync(struct gpiomtd *gpiomtd)
54{
55 unsigned long tmp;
56
57 if (gpiomtd->io_sync) {
58 /*
59 * Linux memory barriers don't cater for what's required here.
60 * What's required is what's here - a read from a separate
61 * region with a dependency on that read.
62 */
63 tmp = readl(gpiomtd->io_sync);
64 asm volatile("mov %1, %0\n" : "=r" (tmp) : "r" (tmp));
65 }
66}
67#else
68static inline void gpio_nand_dosync(struct gpiomtd *gpiomtd) {}
69#endif
70
71static void gpio_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
72{
73 struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd);
74
75 gpio_nand_dosync(gpiomtd);
76
77 if (ctrl & NAND_CTRL_CHANGE) {
78 gpio_set_value(gpiomtd->plat.gpio_nce, !(ctrl & NAND_NCE));
79 gpio_set_value(gpiomtd->plat.gpio_cle, !!(ctrl & NAND_CLE));
80 gpio_set_value(gpiomtd->plat.gpio_ale, !!(ctrl & NAND_ALE));
81 gpio_nand_dosync(gpiomtd);
82 }
83 if (cmd == NAND_CMD_NONE)
84 return;
85
86 writeb(cmd, gpiomtd->nand_chip.IO_ADDR_W);
87 gpio_nand_dosync(gpiomtd);
88}
89
90static void gpio_nand_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
91{
92 struct nand_chip *this = mtd->priv;
93
Matthew Leach82045362012-12-10 19:12:39 +000094 iowrite8_rep(this->IO_ADDR_W, buf, len);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +020095}
96
97static void gpio_nand_readbuf(struct mtd_info *mtd, u_char *buf, int len)
98{
99 struct nand_chip *this = mtd->priv;
100
Matthew Leach82045362012-12-10 19:12:39 +0000101 ioread8_rep(this->IO_ADDR_R, buf, len);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200102}
103
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200104static void gpio_nand_writebuf16(struct mtd_info *mtd, const u_char *buf,
105 int len)
106{
107 struct nand_chip *this = mtd->priv;
108
109 if (IS_ALIGNED((unsigned long)buf, 2)) {
Matthew Leach82045362012-12-10 19:12:39 +0000110 iowrite16_rep(this->IO_ADDR_W, buf, len>>1);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200111 } else {
112 int i;
113 unsigned short *ptr = (unsigned short *)buf;
114
115 for (i = 0; i < len; i += 2, ptr++)
116 writew(*ptr, this->IO_ADDR_W);
117 }
118}
119
120static void gpio_nand_readbuf16(struct mtd_info *mtd, u_char *buf, int len)
121{
122 struct nand_chip *this = mtd->priv;
123
124 if (IS_ALIGNED((unsigned long)buf, 2)) {
Matthew Leach82045362012-12-10 19:12:39 +0000125 ioread16_rep(this->IO_ADDR_R, buf, len>>1);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200126 } else {
127 int i;
128 unsigned short *ptr = (unsigned short *)buf;
129
130 for (i = 0; i < len; i += 2, ptr++)
131 *ptr = readw(this->IO_ADDR_R);
132 }
133}
134
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200135static int gpio_nand_devready(struct mtd_info *mtd)
136{
137 struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd);
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400138
Alexander Shiyanc85d32d52013-05-06 17:53:49 +0400139 return gpio_get_value(gpiomtd->plat.gpio_rdy);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200140}
141
Jamie Iles775c32202011-12-18 10:00:49 +0000142#ifdef CONFIG_OF
143static const struct of_device_id gpio_nand_id_table[] = {
144 { .compatible = "gpio-control-nand" },
145 {}
146};
147MODULE_DEVICE_TABLE(of, gpio_nand_id_table);
148
149static int gpio_nand_get_config_of(const struct device *dev,
150 struct gpio_nand_platdata *plat)
151{
152 u32 val;
153
154 if (!of_property_read_u32(dev->of_node, "bank-width", &val)) {
155 if (val == 2) {
156 plat->options |= NAND_BUSWIDTH_16;
157 } else if (val != 1) {
158 dev_err(dev, "invalid bank-width %u\n", val);
159 return -EINVAL;
160 }
161 }
162
163 plat->gpio_rdy = of_get_gpio(dev->of_node, 0);
164 plat->gpio_nce = of_get_gpio(dev->of_node, 1);
165 plat->gpio_ale = of_get_gpio(dev->of_node, 2);
166 plat->gpio_cle = of_get_gpio(dev->of_node, 3);
167 plat->gpio_nwp = of_get_gpio(dev->of_node, 4);
168
169 if (!of_property_read_u32(dev->of_node, "chip-delay", &val))
170 plat->chip_delay = val;
171
172 return 0;
173}
174
175static struct resource *gpio_nand_get_io_sync_of(struct platform_device *pdev)
176{
177 struct resource *r = devm_kzalloc(&pdev->dev, sizeof(*r), GFP_KERNEL);
178 u64 addr;
179
180 if (!r || of_property_read_u64(pdev->dev.of_node,
181 "gpio-control-nand,io-sync-reg", &addr))
182 return NULL;
183
184 r->start = addr;
185 r->end = r->start + 0x3;
186 r->flags = IORESOURCE_MEM;
187
188 return r;
189}
190#else /* CONFIG_OF */
Jamie Iles775c32202011-12-18 10:00:49 +0000191static inline int gpio_nand_get_config_of(const struct device *dev,
192 struct gpio_nand_platdata *plat)
193{
194 return -ENOSYS;
195}
196
197static inline struct resource *
198gpio_nand_get_io_sync_of(struct platform_device *pdev)
199{
200 return NULL;
201}
202#endif /* CONFIG_OF */
203
204static inline int gpio_nand_get_config(const struct device *dev,
205 struct gpio_nand_platdata *plat)
206{
207 int ret = gpio_nand_get_config_of(dev, plat);
208
209 if (!ret)
210 return ret;
211
212 if (dev->platform_data) {
213 memcpy(plat, dev->platform_data, sizeof(*plat));
214 return 0;
215 }
216
217 return -EINVAL;
218}
219
220static inline struct resource *
221gpio_nand_get_io_sync(struct platform_device *pdev)
222{
223 struct resource *r = gpio_nand_get_io_sync_of(pdev);
224
225 if (r)
226 return r;
227
228 return platform_get_resource(pdev, IORESOURCE_MEM, 1);
229}
230
Bill Pemberton810b7e02012-11-19 13:26:04 -0500231static int gpio_nand_remove(struct platform_device *dev)
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200232{
233 struct gpiomtd *gpiomtd = platform_get_drvdata(dev);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200234
235 nand_release(&gpiomtd->mtd_info);
236
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200237 if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
238 gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
239 gpio_set_value(gpiomtd->plat.gpio_nce, 1);
240
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200241 return 0;
242}
243
Bill Pemberton06f25512012-11-19 13:23:07 -0500244static int gpio_nand_probe(struct platform_device *dev)
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200245{
246 struct gpiomtd *gpiomtd;
247 struct nand_chip *this;
Alexander Shiyan283df422013-05-06 17:53:48 +0400248 struct resource *res;
Jamie Iles775c32202011-12-18 10:00:49 +0000249 struct mtd_part_parser_data ppdata = {};
250 int ret = 0;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200251
Jamie Iles775c32202011-12-18 10:00:49 +0000252 if (!dev->dev.of_node && !dev->dev.platform_data)
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200253 return -EINVAL;
254
Sachin Kamatb60c7242013-03-14 15:37:02 +0530255 gpiomtd = devm_kzalloc(&dev->dev, sizeof(*gpiomtd), GFP_KERNEL);
Alexander Shiyan283df422013-05-06 17:53:48 +0400256 if (!gpiomtd) {
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200257 dev_err(&dev->dev, "failed to create NAND MTD\n");
258 return -ENOMEM;
259 }
260
261 this = &gpiomtd->nand_chip;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200262
Alexander Shiyan283df422013-05-06 17:53:48 +0400263 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
264 this->IO_ADDR_R = devm_ioremap_resource(&dev->dev, res);
265 if (IS_ERR(this->IO_ADDR_R))
266 return PTR_ERR(this->IO_ADDR_R);
267
268 res = gpio_nand_get_io_sync(dev);
269 if (res) {
270 gpiomtd->io_sync = devm_ioremap_resource(&dev->dev, res);
271 if (IS_ERR(gpiomtd->io_sync))
272 return PTR_ERR(gpiomtd->io_sync);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200273 }
274
Jamie Iles775c32202011-12-18 10:00:49 +0000275 ret = gpio_nand_get_config(&dev->dev, &gpiomtd->plat);
276 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400277 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200278
Alexander Shiyan283df422013-05-06 17:53:48 +0400279 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_nce, "NAND NCE");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200280 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400281 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200282 gpio_direction_output(gpiomtd->plat.gpio_nce, 1);
Alexander Shiyan283df422013-05-06 17:53:48 +0400283
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200284 if (gpio_is_valid(gpiomtd->plat.gpio_nwp)) {
Alexander Shiyan283df422013-05-06 17:53:48 +0400285 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_nwp,
286 "NAND NWP");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200287 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400288 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200289 }
Alexander Shiyan283df422013-05-06 17:53:48 +0400290
291 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_ale, "NAND ALE");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200292 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400293 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200294 gpio_direction_output(gpiomtd->plat.gpio_ale, 0);
Alexander Shiyan283df422013-05-06 17:53:48 +0400295
296 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_cle, "NAND CLE");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200297 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400298 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200299 gpio_direction_output(gpiomtd->plat.gpio_cle, 0);
Alexander Shiyan283df422013-05-06 17:53:48 +0400300
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400301 if (gpio_is_valid(gpiomtd->plat.gpio_rdy)) {
Alexander Shiyan283df422013-05-06 17:53:48 +0400302 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_rdy,
303 "NAND RDY");
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400304 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400305 return ret;
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400306 gpio_direction_input(gpiomtd->plat.gpio_rdy);
Alexander Shiyanc85d32d52013-05-06 17:53:49 +0400307 this->dev_ready = gpio_nand_devready;
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400308 }
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200309
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200310 this->IO_ADDR_W = this->IO_ADDR_R;
311 this->ecc.mode = NAND_ECC_SOFT;
312 this->options = gpiomtd->plat.options;
313 this->chip_delay = gpiomtd->plat.chip_delay;
314
315 /* install our routines */
316 this->cmd_ctrl = gpio_nand_cmd_ctrl;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200317
318 if (this->options & NAND_BUSWIDTH_16) {
319 this->read_buf = gpio_nand_readbuf16;
320 this->write_buf = gpio_nand_writebuf16;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200321 } else {
322 this->read_buf = gpio_nand_readbuf;
323 this->write_buf = gpio_nand_writebuf;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200324 }
325
326 /* set the mtd private data for the nand driver */
327 gpiomtd->mtd_info.priv = this;
328 gpiomtd->mtd_info.owner = THIS_MODULE;
329
Alexander Shiyan283df422013-05-06 17:53:48 +0400330 platform_set_drvdata(dev, gpiomtd);
331
332 if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
333 gpio_direction_output(gpiomtd->plat.gpio_nwp, 1);
334
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200335 if (nand_scan(&gpiomtd->mtd_info, 1)) {
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200336 ret = -ENXIO;
337 goto err_wp;
338 }
339
340 if (gpiomtd->plat.adjust_parts)
341 gpiomtd->plat.adjust_parts(&gpiomtd->plat,
342 gpiomtd->mtd_info.size);
343
Jamie Iles775c32202011-12-18 10:00:49 +0000344 ppdata.of_node = dev->dev.of_node;
345 ret = mtd_device_parse_register(&gpiomtd->mtd_info, NULL, &ppdata,
346 gpiomtd->plat.parts,
347 gpiomtd->plat.num_parts);
Alexander Shiyan283df422013-05-06 17:53:48 +0400348 if (!ret)
349 return 0;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200350
351err_wp:
352 if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
353 gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
Alexander Shiyan283df422013-05-06 17:53:48 +0400354
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200355 return ret;
356}
357
358static struct platform_driver gpio_nand_driver = {
359 .probe = gpio_nand_probe,
360 .remove = gpio_nand_remove,
361 .driver = {
362 .name = "gpio-nand",
Sachin Kamatb57d43f2013-03-14 15:37:03 +0530363 .of_match_table = of_match_ptr(gpio_nand_id_table),
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200364 },
365};
366
Sachin Kamat2fe87ae2012-09-05 15:31:32 +0530367module_platform_driver(gpio_nand_driver);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200368
369MODULE_LICENSE("GPL");
370MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
371MODULE_DESCRIPTION("GPIO NAND Driver");