blob: 312c285862459b6902d73c8814396833deb65b59 [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
Mike Rapoportaaf7ea22008-10-15 08:38:49 +020090static int gpio_nand_devready(struct mtd_info *mtd)
91{
92 struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd);
Alexander Shiyan18afbc52012-10-17 10:08:27 +040093
Alexander Shiyanc85d32d52013-05-06 17:53:49 +040094 return gpio_get_value(gpiomtd->plat.gpio_rdy);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +020095}
96
Jamie Iles775c32202011-12-18 10:00:49 +000097#ifdef CONFIG_OF
98static const struct of_device_id gpio_nand_id_table[] = {
99 { .compatible = "gpio-control-nand" },
100 {}
101};
102MODULE_DEVICE_TABLE(of, gpio_nand_id_table);
103
104static int gpio_nand_get_config_of(const struct device *dev,
105 struct gpio_nand_platdata *plat)
106{
107 u32 val;
108
Alexander Shiyanee4f3662013-05-06 17:53:50 +0400109 if (!dev->of_node)
110 return -ENODEV;
111
Jamie Iles775c32202011-12-18 10:00:49 +0000112 if (!of_property_read_u32(dev->of_node, "bank-width", &val)) {
113 if (val == 2) {
114 plat->options |= NAND_BUSWIDTH_16;
115 } else if (val != 1) {
116 dev_err(dev, "invalid bank-width %u\n", val);
117 return -EINVAL;
118 }
119 }
120
121 plat->gpio_rdy = of_get_gpio(dev->of_node, 0);
122 plat->gpio_nce = of_get_gpio(dev->of_node, 1);
123 plat->gpio_ale = of_get_gpio(dev->of_node, 2);
124 plat->gpio_cle = of_get_gpio(dev->of_node, 3);
125 plat->gpio_nwp = of_get_gpio(dev->of_node, 4);
126
127 if (!of_property_read_u32(dev->of_node, "chip-delay", &val))
128 plat->chip_delay = val;
129
130 return 0;
131}
132
133static struct resource *gpio_nand_get_io_sync_of(struct platform_device *pdev)
134{
135 struct resource *r = devm_kzalloc(&pdev->dev, sizeof(*r), GFP_KERNEL);
136 u64 addr;
137
138 if (!r || of_property_read_u64(pdev->dev.of_node,
139 "gpio-control-nand,io-sync-reg", &addr))
140 return NULL;
141
142 r->start = addr;
143 r->end = r->start + 0x3;
144 r->flags = IORESOURCE_MEM;
145
146 return r;
147}
148#else /* CONFIG_OF */
Jamie Iles775c32202011-12-18 10:00:49 +0000149static inline int gpio_nand_get_config_of(const struct device *dev,
150 struct gpio_nand_platdata *plat)
151{
152 return -ENOSYS;
153}
154
155static inline struct resource *
156gpio_nand_get_io_sync_of(struct platform_device *pdev)
157{
158 return NULL;
159}
160#endif /* CONFIG_OF */
161
162static inline int gpio_nand_get_config(const struct device *dev,
163 struct gpio_nand_platdata *plat)
164{
165 int ret = gpio_nand_get_config_of(dev, plat);
166
167 if (!ret)
168 return ret;
169
170 if (dev->platform_data) {
171 memcpy(plat, dev->platform_data, sizeof(*plat));
172 return 0;
173 }
174
175 return -EINVAL;
176}
177
178static inline struct resource *
179gpio_nand_get_io_sync(struct platform_device *pdev)
180{
181 struct resource *r = gpio_nand_get_io_sync_of(pdev);
182
183 if (r)
184 return r;
185
186 return platform_get_resource(pdev, IORESOURCE_MEM, 1);
187}
188
Bill Pemberton810b7e02012-11-19 13:26:04 -0500189static int gpio_nand_remove(struct platform_device *dev)
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200190{
191 struct gpiomtd *gpiomtd = platform_get_drvdata(dev);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200192
193 nand_release(&gpiomtd->mtd_info);
194
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200195 if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
196 gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
197 gpio_set_value(gpiomtd->plat.gpio_nce, 1);
198
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200199 return 0;
200}
201
Bill Pemberton06f25512012-11-19 13:23:07 -0500202static int gpio_nand_probe(struct platform_device *dev)
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200203{
204 struct gpiomtd *gpiomtd;
205 struct nand_chip *this;
Alexander Shiyan283df422013-05-06 17:53:48 +0400206 struct resource *res;
Jamie Iles775c32202011-12-18 10:00:49 +0000207 struct mtd_part_parser_data ppdata = {};
208 int ret = 0;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200209
Jamie Iles775c32202011-12-18 10:00:49 +0000210 if (!dev->dev.of_node && !dev->dev.platform_data)
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200211 return -EINVAL;
212
Sachin Kamatb60c7242013-03-14 15:37:02 +0530213 gpiomtd = devm_kzalloc(&dev->dev, sizeof(*gpiomtd), GFP_KERNEL);
Alexander Shiyan283df422013-05-06 17:53:48 +0400214 if (!gpiomtd) {
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200215 dev_err(&dev->dev, "failed to create NAND MTD\n");
216 return -ENOMEM;
217 }
218
219 this = &gpiomtd->nand_chip;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200220
Alexander Shiyan283df422013-05-06 17:53:48 +0400221 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
222 this->IO_ADDR_R = devm_ioremap_resource(&dev->dev, res);
223 if (IS_ERR(this->IO_ADDR_R))
224 return PTR_ERR(this->IO_ADDR_R);
225
226 res = gpio_nand_get_io_sync(dev);
227 if (res) {
228 gpiomtd->io_sync = devm_ioremap_resource(&dev->dev, res);
229 if (IS_ERR(gpiomtd->io_sync))
230 return PTR_ERR(gpiomtd->io_sync);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200231 }
232
Jamie Iles775c32202011-12-18 10:00:49 +0000233 ret = gpio_nand_get_config(&dev->dev, &gpiomtd->plat);
234 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400235 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200236
Alexander Shiyan283df422013-05-06 17:53:48 +0400237 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_nce, "NAND NCE");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200238 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400239 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200240 gpio_direction_output(gpiomtd->plat.gpio_nce, 1);
Alexander Shiyan283df422013-05-06 17:53:48 +0400241
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200242 if (gpio_is_valid(gpiomtd->plat.gpio_nwp)) {
Alexander Shiyan283df422013-05-06 17:53:48 +0400243 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_nwp,
244 "NAND NWP");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200245 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400246 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200247 }
Alexander Shiyan283df422013-05-06 17:53:48 +0400248
249 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_ale, "NAND ALE");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200250 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400251 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200252 gpio_direction_output(gpiomtd->plat.gpio_ale, 0);
Alexander Shiyan283df422013-05-06 17:53:48 +0400253
254 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_cle, "NAND CLE");
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200255 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400256 return ret;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200257 gpio_direction_output(gpiomtd->plat.gpio_cle, 0);
Alexander Shiyan283df422013-05-06 17:53:48 +0400258
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400259 if (gpio_is_valid(gpiomtd->plat.gpio_rdy)) {
Alexander Shiyan283df422013-05-06 17:53:48 +0400260 ret = devm_gpio_request(&dev->dev, gpiomtd->plat.gpio_rdy,
261 "NAND RDY");
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400262 if (ret)
Alexander Shiyan283df422013-05-06 17:53:48 +0400263 return ret;
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400264 gpio_direction_input(gpiomtd->plat.gpio_rdy);
Alexander Shiyanc85d32d52013-05-06 17:53:49 +0400265 this->dev_ready = gpio_nand_devready;
Alexander Shiyan18afbc52012-10-17 10:08:27 +0400266 }
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200267
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200268 this->IO_ADDR_W = this->IO_ADDR_R;
269 this->ecc.mode = NAND_ECC_SOFT;
270 this->options = gpiomtd->plat.options;
271 this->chip_delay = gpiomtd->plat.chip_delay;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200272 this->cmd_ctrl = gpio_nand_cmd_ctrl;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200273
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200274 gpiomtd->mtd_info.priv = this;
275 gpiomtd->mtd_info.owner = THIS_MODULE;
276
Alexander Shiyan283df422013-05-06 17:53:48 +0400277 platform_set_drvdata(dev, gpiomtd);
278
279 if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
280 gpio_direction_output(gpiomtd->plat.gpio_nwp, 1);
281
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200282 if (nand_scan(&gpiomtd->mtd_info, 1)) {
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200283 ret = -ENXIO;
284 goto err_wp;
285 }
286
287 if (gpiomtd->plat.adjust_parts)
288 gpiomtd->plat.adjust_parts(&gpiomtd->plat,
289 gpiomtd->mtd_info.size);
290
Jamie Iles775c32202011-12-18 10:00:49 +0000291 ppdata.of_node = dev->dev.of_node;
292 ret = mtd_device_parse_register(&gpiomtd->mtd_info, NULL, &ppdata,
293 gpiomtd->plat.parts,
294 gpiomtd->plat.num_parts);
Alexander Shiyan283df422013-05-06 17:53:48 +0400295 if (!ret)
296 return 0;
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200297
298err_wp:
299 if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
300 gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
Alexander Shiyan283df422013-05-06 17:53:48 +0400301
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200302 return ret;
303}
304
305static struct platform_driver gpio_nand_driver = {
306 .probe = gpio_nand_probe,
307 .remove = gpio_nand_remove,
308 .driver = {
309 .name = "gpio-nand",
Sachin Kamatb57d43f2013-03-14 15:37:03 +0530310 .of_match_table = of_match_ptr(gpio_nand_id_table),
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200311 },
312};
313
Sachin Kamat2fe87ae2012-09-05 15:31:32 +0530314module_platform_driver(gpio_nand_driver);
Mike Rapoportaaf7ea22008-10-15 08:38:49 +0200315
316MODULE_LICENSE("GPL");
317MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
318MODULE_DESCRIPTION("GPIO NAND Driver");