Linux Audio

Check our new training course

Loading...
v3.1
  1/*
  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>
 20#include <linux/init.h>
 21#include <linux/slab.h>
 22#include <linux/module.h>
 23#include <linux/platform_device.h>
 24#include <linux/gpio.h>
 25#include <linux/io.h>
 26#include <linux/mtd/mtd.h>
 27#include <linux/mtd/nand.h>
 28#include <linux/mtd/partitions.h>
 29#include <linux/mtd/nand-gpio.h>
 
 
 
 30
 31struct gpiomtd {
 32	void __iomem		*io_sync;
 33	struct mtd_info		mtd_info;
 34	struct nand_chip	nand_chip;
 35	struct gpio_nand_platdata plat;
 36};
 37
 38#define gpio_nand_getpriv(x) container_of(x, struct gpiomtd, mtd_info)
 
 
 
 39
 40
 41#ifdef CONFIG_ARM
 42/* gpio_nand_dosync()
 43 *
 44 * Make sure the GPIO state changes occur in-order with writes to NAND
 45 * memory region.
 46 * Needed on PXA due to bus-reordering within the SoC itself (see section on
 47 * I/O ordering in PXA manual (section 2.3, p35)
 48 */
 49static void gpio_nand_dosync(struct gpiomtd *gpiomtd)
 50{
 51	unsigned long tmp;
 52
 53	if (gpiomtd->io_sync) {
 54		/*
 55		 * Linux memory barriers don't cater for what's required here.
 56		 * What's required is what's here - a read from a separate
 57		 * region with a dependency on that read.
 58		 */
 59		tmp = readl(gpiomtd->io_sync);
 60		asm volatile("mov %1, %0\n" : "=r" (tmp) : "r" (tmp));
 61	}
 62}
 63#else
 64static inline void gpio_nand_dosync(struct gpiomtd *gpiomtd) {}
 65#endif
 66
 67static void gpio_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
 68{
 69	struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd);
 70
 71	gpio_nand_dosync(gpiomtd);
 72
 73	if (ctrl & NAND_CTRL_CHANGE) {
 74		gpio_set_value(gpiomtd->plat.gpio_nce, !(ctrl & NAND_NCE));
 75		gpio_set_value(gpiomtd->plat.gpio_cle, !!(ctrl & NAND_CLE));
 76		gpio_set_value(gpiomtd->plat.gpio_ale, !!(ctrl & NAND_ALE));
 77		gpio_nand_dosync(gpiomtd);
 78	}
 79	if (cmd == NAND_CMD_NONE)
 80		return;
 81
 82	writeb(cmd, gpiomtd->nand_chip.IO_ADDR_W);
 83	gpio_nand_dosync(gpiomtd);
 84}
 85
 86static void gpio_nand_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
 87{
 88	struct nand_chip *this = mtd->priv;
 89
 90	writesb(this->IO_ADDR_W, buf, len);
 91}
 92
 93static void gpio_nand_readbuf(struct mtd_info *mtd, u_char *buf, int len)
 94{
 95	struct nand_chip *this = mtd->priv;
 96
 97	readsb(this->IO_ADDR_R, buf, len);
 98}
 99
100static int gpio_nand_verifybuf(struct mtd_info *mtd, const u_char *buf, int len)
 
101{
102	struct nand_chip *this = mtd->priv;
103	unsigned char read, *p = (unsigned char *) buf;
104	int i, err = 0;
105
106	for (i = 0; i < len; i++) {
107		read = readb(this->IO_ADDR_R);
108		if (read != p[i]) {
109			pr_debug("%s: err at %d (read %04x vs %04x)\n",
110			       __func__, i, read, p[i]);
111			err = -EFAULT;
 
 
 
112		}
113	}
114	return err;
115}
116
117static void gpio_nand_writebuf16(struct mtd_info *mtd, const u_char *buf,
118				 int len)
119{
120	struct nand_chip *this = mtd->priv;
 
121
122	if (IS_ALIGNED((unsigned long)buf, 2)) {
123		writesw(this->IO_ADDR_W, buf, len>>1);
124	} else {
125		int i;
126		unsigned short *ptr = (unsigned short *)buf;
127
128		for (i = 0; i < len; i += 2, ptr++)
129			writew(*ptr, this->IO_ADDR_W);
130	}
131}
132
133static void gpio_nand_readbuf16(struct mtd_info *mtd, u_char *buf, int len)
134{
135	struct nand_chip *this = mtd->priv;
 
136
137	if (IS_ALIGNED((unsigned long)buf, 2)) {
138		readsw(this->IO_ADDR_R, buf, len>>1);
139	} else {
140		int i;
141		unsigned short *ptr = (unsigned short *)buf;
142
143		for (i = 0; i < len; i += 2, ptr++)
144			*ptr = readw(this->IO_ADDR_R);
145	}
146}
 
 
 
147
148static int gpio_nand_verifybuf16(struct mtd_info *mtd, const u_char *buf,
149				 int len)
 
 
 
150{
151	struct nand_chip *this = mtd->priv;
152	unsigned short read, *p = (unsigned short *) buf;
153	int i, err = 0;
154	len >>= 1;
155
156	for (i = 0; i < len; i++) {
157		read = readw(this->IO_ADDR_R);
158		if (read != p[i]) {
159			pr_debug("%s: err at %d (read %04x vs %04x)\n",
160			       __func__, i, read, p[i]);
161			err = -EFAULT;
162		}
163	}
164	return err;
165}
166
167
168static int gpio_nand_devready(struct mtd_info *mtd)
169{
170	struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd);
171	return gpio_get_value(gpiomtd->plat.gpio_rdy);
172}
 
173
174static int __devexit gpio_nand_remove(struct platform_device *dev)
 
175{
176	struct gpiomtd *gpiomtd = platform_get_drvdata(dev);
177	struct resource *res;
178
179	nand_release(&gpiomtd->mtd_info);
 
180
181	res = platform_get_resource(dev, IORESOURCE_MEM, 1);
182	iounmap(gpiomtd->io_sync);
183	if (res)
184		release_mem_region(res->start, resource_size(res));
185
186	res = platform_get_resource(dev, IORESOURCE_MEM, 0);
187	iounmap(gpiomtd->nand_chip.IO_ADDR_R);
188	release_mem_region(res->start, resource_size(res));
189
190	if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
191		gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
192	gpio_set_value(gpiomtd->plat.gpio_nce, 1);
193
194	gpio_free(gpiomtd->plat.gpio_cle);
195	gpio_free(gpiomtd->plat.gpio_ale);
196	gpio_free(gpiomtd->plat.gpio_nce);
197	if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
198		gpio_free(gpiomtd->plat.gpio_nwp);
199	gpio_free(gpiomtd->plat.gpio_rdy);
200
201	kfree(gpiomtd);
 
202
203	return 0;
204}
205
206static void __iomem *request_and_remap(struct resource *res, size_t size,
207					const char *name, int *err)
208{
209	void __iomem *ptr;
210
211	if (!request_mem_region(res->start, resource_size(res), name)) {
212		*err = -EBUSY;
213		return NULL;
214	}
215
216	ptr = ioremap(res->start, size);
217	if (!ptr) {
218		release_mem_region(res->start, resource_size(res));
219		*err = -ENOMEM;
220	}
221	return ptr;
222}
223
224static int __devinit gpio_nand_probe(struct platform_device *dev)
225{
226	struct gpiomtd *gpiomtd;
227	struct nand_chip *this;
228	struct resource *res0, *res1;
229	int ret;
230
231	if (!dev->dev.platform_data)
232		return -EINVAL;
233
234	res0 = platform_get_resource(dev, IORESOURCE_MEM, 0);
235	if (!res0)
236		return -EINVAL;
237
238	gpiomtd = kzalloc(sizeof(*gpiomtd), GFP_KERNEL);
239	if (gpiomtd == NULL) {
240		dev_err(&dev->dev, "failed to create NAND MTD\n");
241		return -ENOMEM;
242	}
243
244	this = &gpiomtd->nand_chip;
245	this->IO_ADDR_R = request_and_remap(res0, 2, "NAND", &ret);
246	if (!this->IO_ADDR_R) {
247		dev_err(&dev->dev, "unable to map NAND\n");
248		goto err_map;
249	}
250
251	res1 = platform_get_resource(dev, IORESOURCE_MEM, 1);
252	if (res1) {
253		gpiomtd->io_sync = request_and_remap(res1, 4, "NAND sync", &ret);
254		if (!gpiomtd->io_sync) {
255			dev_err(&dev->dev, "unable to map sync NAND\n");
256			goto err_sync;
257		}
 
 
 
258	}
259
260	memcpy(&gpiomtd->plat, dev->dev.platform_data, sizeof(gpiomtd->plat));
 
 
261
262	ret = gpio_request(gpiomtd->plat.gpio_nce, "NAND NCE");
263	if (ret)
264		goto err_nce;
265	gpio_direction_output(gpiomtd->plat.gpio_nce, 1);
 
266	if (gpio_is_valid(gpiomtd->plat.gpio_nwp)) {
267		ret = gpio_request(gpiomtd->plat.gpio_nwp, "NAND NWP");
 
268		if (ret)
269			goto err_nwp;
270		gpio_direction_output(gpiomtd->plat.gpio_nwp, 1);
271	}
272	ret = gpio_request(gpiomtd->plat.gpio_ale, "NAND ALE");
 
273	if (ret)
274		goto err_ale;
275	gpio_direction_output(gpiomtd->plat.gpio_ale, 0);
276	ret = gpio_request(gpiomtd->plat.gpio_cle, "NAND CLE");
 
277	if (ret)
278		goto err_cle;
279	gpio_direction_output(gpiomtd->plat.gpio_cle, 0);
280	ret = gpio_request(gpiomtd->plat.gpio_rdy, "NAND RDY");
281	if (ret)
282		goto err_rdy;
283	gpio_direction_input(gpiomtd->plat.gpio_rdy);
284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
286	this->IO_ADDR_W  = this->IO_ADDR_R;
287	this->ecc.mode   = NAND_ECC_SOFT;
288	this->options    = gpiomtd->plat.options;
289	this->chip_delay = gpiomtd->plat.chip_delay;
290
291	/* install our routines */
292	this->cmd_ctrl   = gpio_nand_cmd_ctrl;
293	this->dev_ready  = gpio_nand_devready;
294
295	if (this->options & NAND_BUSWIDTH_16) {
296		this->read_buf   = gpio_nand_readbuf16;
297		this->write_buf  = gpio_nand_writebuf16;
298		this->verify_buf = gpio_nand_verifybuf16;
299	} else {
300		this->read_buf   = gpio_nand_readbuf;
301		this->write_buf  = gpio_nand_writebuf;
302		this->verify_buf = gpio_nand_verifybuf;
303	}
304
305	/* set the mtd private data for the nand driver */
306	gpiomtd->mtd_info.priv = this;
307	gpiomtd->mtd_info.owner = THIS_MODULE;
308
309	if (nand_scan(&gpiomtd->mtd_info, 1)) {
310		dev_err(&dev->dev, "no nand chips found?\n");
 
 
311		ret = -ENXIO;
312		goto err_wp;
313	}
314
315	if (gpiomtd->plat.adjust_parts)
316		gpiomtd->plat.adjust_parts(&gpiomtd->plat,
317					   gpiomtd->mtd_info.size);
318
319	mtd_device_register(&gpiomtd->mtd_info, gpiomtd->plat.parts,
320			    gpiomtd->plat.num_parts);
321	platform_set_drvdata(dev, gpiomtd);
322
323	return 0;
 
 
 
324
325err_wp:
326	if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
327		gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
328	gpio_free(gpiomtd->plat.gpio_rdy);
329err_rdy:
330	gpio_free(gpiomtd->plat.gpio_cle);
331err_cle:
332	gpio_free(gpiomtd->plat.gpio_ale);
333err_ale:
334	if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
335		gpio_free(gpiomtd->plat.gpio_nwp);
336err_nwp:
337	gpio_free(gpiomtd->plat.gpio_nce);
338err_nce:
339	iounmap(gpiomtd->io_sync);
340	if (res1)
341		release_mem_region(res1->start, resource_size(res1));
342err_sync:
343	iounmap(gpiomtd->nand_chip.IO_ADDR_R);
344	release_mem_region(res0->start, resource_size(res0));
345err_map:
346	kfree(gpiomtd);
347	return ret;
348}
349
350static struct platform_driver gpio_nand_driver = {
351	.probe		= gpio_nand_probe,
352	.remove		= gpio_nand_remove,
353	.driver		= {
354		.name	= "gpio-nand",
 
355	},
356};
357
358static int __init gpio_nand_init(void)
359{
360	printk(KERN_INFO "GPIO NAND driver, © 2004 Simtec Electronics\n");
361
362	return platform_driver_register(&gpio_nand_driver);
363}
364
365static void __exit gpio_nand_exit(void)
366{
367	platform_driver_unregister(&gpio_nand_driver);
368}
369
370module_init(gpio_nand_init);
371module_exit(gpio_nand_exit);
372
373MODULE_LICENSE("GPL");
374MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
375MODULE_DESCRIPTION("GPIO NAND Driver");
v4.6
  1/*
  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 flash that uses a memory mapped interface to
 12 * read/write the NAND commands and data, and GPIO pins for control signals
 13 * (the DT binding refers to this as "GPIO assisted NAND flash")
 14 *
 15 * This program is free software; you can redistribute it and/or modify
 16 * it under the terms of the GNU General Public License version 2 as
 17 * published by the Free Software Foundation.
 18 *
 19 */
 20
 21#include <linux/kernel.h>
 22#include <linux/err.h>
 23#include <linux/slab.h>
 24#include <linux/module.h>
 25#include <linux/platform_device.h>
 26#include <linux/gpio.h>
 27#include <linux/io.h>
 28#include <linux/mtd/mtd.h>
 29#include <linux/mtd/nand.h>
 30#include <linux/mtd/partitions.h>
 31#include <linux/mtd/nand-gpio.h>
 32#include <linux/of.h>
 33#include <linux/of_address.h>
 34#include <linux/of_gpio.h>
 35
 36struct gpiomtd {
 37	void __iomem		*io_sync;
 
 38	struct nand_chip	nand_chip;
 39	struct gpio_nand_platdata plat;
 40};
 41
 42static inline struct gpiomtd *gpio_nand_getpriv(struct mtd_info *mtd)
 43{
 44	return container_of(mtd_to_nand(mtd), struct gpiomtd, nand_chip);
 45}
 46
 47
 48#ifdef CONFIG_ARM
 49/* gpio_nand_dosync()
 50 *
 51 * Make sure the GPIO state changes occur in-order with writes to NAND
 52 * memory region.
 53 * Needed on PXA due to bus-reordering within the SoC itself (see section on
 54 * I/O ordering in PXA manual (section 2.3, p35)
 55 */
 56static void gpio_nand_dosync(struct gpiomtd *gpiomtd)
 57{
 58	unsigned long tmp;
 59
 60	if (gpiomtd->io_sync) {
 61		/*
 62		 * Linux memory barriers don't cater for what's required here.
 63		 * What's required is what's here - a read from a separate
 64		 * region with a dependency on that read.
 65		 */
 66		tmp = readl(gpiomtd->io_sync);
 67		asm volatile("mov %1, %0\n" : "=r" (tmp) : "r" (tmp));
 68	}
 69}
 70#else
 71static inline void gpio_nand_dosync(struct gpiomtd *gpiomtd) {}
 72#endif
 73
 74static void gpio_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
 75{
 76	struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd);
 77
 78	gpio_nand_dosync(gpiomtd);
 79
 80	if (ctrl & NAND_CTRL_CHANGE) {
 81		gpio_set_value(gpiomtd->plat.gpio_nce, !(ctrl & NAND_NCE));
 82		gpio_set_value(gpiomtd->plat.gpio_cle, !!(ctrl & NAND_CLE));
 83		gpio_set_value(gpiomtd->plat.gpio_ale, !!(ctrl & NAND_ALE));
 84		gpio_nand_dosync(gpiomtd);
 85	}
 86	if (cmd == NAND_CMD_NONE)
 87		return;
 88
 89	writeb(cmd, gpiomtd->nand_chip.IO_ADDR_W);
 90	gpio_nand_dosync(gpiomtd);
 91}
 92
 93static int gpio_nand_devready(struct mtd_info *mtd)
 94{
 95	struct gpiomtd *gpiomtd = gpio_nand_getpriv(mtd);
 96
 97	return gpio_get_value(gpiomtd->plat.gpio_rdy);
 98}
 99
100#ifdef CONFIG_OF
101static const struct of_device_id gpio_nand_id_table[] = {
102	{ .compatible = "gpio-control-nand" },
103	{}
104};
105MODULE_DEVICE_TABLE(of, gpio_nand_id_table);
106
107static int gpio_nand_get_config_of(const struct device *dev,
108				   struct gpio_nand_platdata *plat)
109{
110	u32 val;
 
 
111
112	if (!dev->of_node)
113		return -ENODEV;
114
115	if (!of_property_read_u32(dev->of_node, "bank-width", &val)) {
116		if (val == 2) {
117			plat->options |= NAND_BUSWIDTH_16;
118		} else if (val != 1) {
119			dev_err(dev, "invalid bank-width %u\n", val);
120			return -EINVAL;
121		}
122	}
 
 
123
124	plat->gpio_rdy = of_get_gpio(dev->of_node, 0);
125	plat->gpio_nce = of_get_gpio(dev->of_node, 1);
126	plat->gpio_ale = of_get_gpio(dev->of_node, 2);
127	plat->gpio_cle = of_get_gpio(dev->of_node, 3);
128	plat->gpio_nwp = of_get_gpio(dev->of_node, 4);
129
130	if (!of_property_read_u32(dev->of_node, "chip-delay", &val))
131		plat->chip_delay = val;
 
 
 
132
133	return 0;
 
 
134}
135
136static struct resource *gpio_nand_get_io_sync_of(struct platform_device *pdev)
137{
138	struct resource *r;
139	u64 addr;
140
141	if (of_property_read_u64(pdev->dev.of_node,
142				       "gpio-control-nand,io-sync-reg", &addr))
143		return NULL;
 
 
144
145	r = devm_kzalloc(&pdev->dev, sizeof(*r), GFP_KERNEL);
146	if (!r)
147		return NULL;
148
149	r->start = addr;
150	r->end = r->start + 0x3;
151	r->flags = IORESOURCE_MEM;
152
153	return r;
154}
155#else /* CONFIG_OF */
156static inline int gpio_nand_get_config_of(const struct device *dev,
157					  struct gpio_nand_platdata *plat)
158{
159	return -ENOSYS;
 
 
 
 
 
 
 
 
 
 
 
 
 
160}
161
162static inline struct resource *
163gpio_nand_get_io_sync_of(struct platform_device *pdev)
164{
165	return NULL;
 
166}
167#endif /* CONFIG_OF */
168
169static inline int gpio_nand_get_config(const struct device *dev,
170				       struct gpio_nand_platdata *plat)
171{
172	int ret = gpio_nand_get_config_of(dev, plat);
 
173
174	if (!ret)
175		return ret;
176
177	if (dev_get_platdata(dev)) {
178		memcpy(plat, dev_get_platdata(dev), sizeof(*plat));
179		return 0;
180	}
 
 
 
 
181
182	return -EINVAL;
183}
 
184
185static inline struct resource *
186gpio_nand_get_io_sync(struct platform_device *pdev)
187{
188	struct resource *r = gpio_nand_get_io_sync_of(pdev);
 
 
189
190	if (r)
191		return r;
192
193	return platform_get_resource(pdev, IORESOURCE_MEM, 1);
194}
195
196static int gpio_nand_remove(struct platform_device *pdev)
 
197{
198	struct gpiomtd *gpiomtd = platform_get_drvdata(pdev);
199
200	nand_release(nand_to_mtd(&gpiomtd->nand_chip));
 
 
 
201
202	if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
203		gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
204	gpio_set_value(gpiomtd->plat.gpio_nce, 1);
205
206	return 0;
 
207}
208
209static int gpio_nand_probe(struct platform_device *pdev)
210{
211	struct gpiomtd *gpiomtd;
212	struct nand_chip *chip;
213	struct mtd_info *mtd;
214	struct resource *res;
215	int ret = 0;
 
 
216
217	if (!pdev->dev.of_node && !dev_get_platdata(&pdev->dev))
 
218		return -EINVAL;
219
220	gpiomtd = devm_kzalloc(&pdev->dev, sizeof(*gpiomtd), GFP_KERNEL);
221	if (!gpiomtd)
 
222		return -ENOMEM;
 
223
224	chip = &gpiomtd->nand_chip;
 
 
 
 
 
225
226	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
227	chip->IO_ADDR_R = devm_ioremap_resource(&pdev->dev, res);
228	if (IS_ERR(chip->IO_ADDR_R))
229		return PTR_ERR(chip->IO_ADDR_R);
230
231	res = gpio_nand_get_io_sync(pdev);
232	if (res) {
233		gpiomtd->io_sync = devm_ioremap_resource(&pdev->dev, res);
234		if (IS_ERR(gpiomtd->io_sync))
235			return PTR_ERR(gpiomtd->io_sync);
236	}
237
238	ret = gpio_nand_get_config(&pdev->dev, &gpiomtd->plat);
239	if (ret)
240		return ret;
241
242	ret = devm_gpio_request(&pdev->dev, gpiomtd->plat.gpio_nce, "NAND NCE");
243	if (ret)
244		return ret;
245	gpio_direction_output(gpiomtd->plat.gpio_nce, 1);
246
247	if (gpio_is_valid(gpiomtd->plat.gpio_nwp)) {
248		ret = devm_gpio_request(&pdev->dev, gpiomtd->plat.gpio_nwp,
249					"NAND NWP");
250		if (ret)
251			return ret;
 
252	}
253
254	ret = devm_gpio_request(&pdev->dev, gpiomtd->plat.gpio_ale, "NAND ALE");
255	if (ret)
256		return ret;
257	gpio_direction_output(gpiomtd->plat.gpio_ale, 0);
258
259	ret = devm_gpio_request(&pdev->dev, gpiomtd->plat.gpio_cle, "NAND CLE");
260	if (ret)
261		return ret;
262	gpio_direction_output(gpiomtd->plat.gpio_cle, 0);
 
 
 
 
263
264	if (gpio_is_valid(gpiomtd->plat.gpio_rdy)) {
265		ret = devm_gpio_request(&pdev->dev, gpiomtd->plat.gpio_rdy,
266					"NAND RDY");
267		if (ret)
268			return ret;
269		gpio_direction_input(gpiomtd->plat.gpio_rdy);
270		chip->dev_ready = gpio_nand_devready;
271	}
272
273	nand_set_flash_node(chip, pdev->dev.of_node);
274	chip->IO_ADDR_W		= chip->IO_ADDR_R;
275	chip->ecc.mode		= NAND_ECC_SOFT;
276	chip->options		= gpiomtd->plat.options;
277	chip->chip_delay	= gpiomtd->plat.chip_delay;
278	chip->cmd_ctrl		= gpio_nand_cmd_ctrl;
279
280	mtd			= nand_to_mtd(chip);
281	mtd->dev.parent		= &pdev->dev;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
283	platform_set_drvdata(pdev, gpiomtd);
 
 
284
285	if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
286		gpio_direction_output(gpiomtd->plat.gpio_nwp, 1);
287
288	if (nand_scan(mtd, 1)) {
289		ret = -ENXIO;
290		goto err_wp;
291	}
292
293	if (gpiomtd->plat.adjust_parts)
294		gpiomtd->plat.adjust_parts(&gpiomtd->plat, mtd->size);
 
 
 
 
 
295
296	ret = mtd_device_register(mtd, gpiomtd->plat.parts,
297				  gpiomtd->plat.num_parts);
298	if (!ret)
299		return 0;
300
301err_wp:
302	if (gpio_is_valid(gpiomtd->plat.gpio_nwp))
303		gpio_set_value(gpiomtd->plat.gpio_nwp, 0);
304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305	return ret;
306}
307
308static struct platform_driver gpio_nand_driver = {
309	.probe		= gpio_nand_probe,
310	.remove		= gpio_nand_remove,
311	.driver		= {
312		.name	= "gpio-nand",
313		.of_match_table = of_match_ptr(gpio_nand_id_table),
314	},
315};
316
317module_platform_driver(gpio_nand_driver);
 
 
 
 
 
 
 
 
 
 
 
 
 
318
319MODULE_LICENSE("GPL");
320MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
321MODULE_DESCRIPTION("GPIO NAND Driver");