blob: b4e2ba47d7b5b5bdea23b2e76cf62ff21e3f53ea [file] [log] [blame]
Anton Vorontsov5c249c52008-03-11 22:33:13 +03001/*
2 * Freescale UPM NAND driver.
3 *
4 * Copyright © 2007-2008 MontaVista Software, Inc.
5 *
6 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/kernel.h>
15#include <linux/module.h>
Wolfgang Grandegger13f53692008-06-09 10:19:08 +020016#include <linux/delay.h>
Anton Vorontsov5c249c52008-03-11 22:33:13 +030017#include <linux/mtd/nand.h>
18#include <linux/mtd/nand_ecc.h>
19#include <linux/mtd/partitions.h>
20#include <linux/mtd/mtd.h>
21#include <linux/of_platform.h>
22#include <linux/of_gpio.h>
23#include <linux/io.h>
24#include <asm/fsl_lbc.h>
25
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +020026#define FSL_UPM_WAIT_RUN_PATTERN 0x1
27#define FSL_UPM_WAIT_WRITE_BYTE 0x2
28#define FSL_UPM_WAIT_WRITE_BUFFER 0x4
29
Anton Vorontsov5c249c52008-03-11 22:33:13 +030030struct fsl_upm_nand {
31 struct device *dev;
32 struct mtd_info mtd;
33 struct nand_chip chip;
34 int last_ctrl;
35#ifdef CONFIG_MTD_PARTITIONS
36 struct mtd_partition *parts;
37#endif
38
39 struct fsl_upm upm;
40 uint8_t upm_addr_offset;
41 uint8_t upm_cmd_offset;
42 void __iomem *io_base;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020043 int rnb_gpio[NAND_MAX_CHIPS];
44 uint32_t mchip_offsets[NAND_MAX_CHIPS];
45 uint32_t mchip_count;
46 uint32_t mchip_number;
Wolfgang Grandegger13f53692008-06-09 10:19:08 +020047 int chip_delay;
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +020048 uint32_t wait_flags;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030049};
50
Ferenc Wagnerb92b5c42010-03-23 18:08:16 +010051static inline struct fsl_upm_nand *to_fsl_upm_nand(struct mtd_info *mtdinfo)
52{
53 return container_of(mtdinfo, struct fsl_upm_nand, mtd);
54}
Anton Vorontsov5c249c52008-03-11 22:33:13 +030055
56static int fun_chip_ready(struct mtd_info *mtd)
57{
58 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
59
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020060 if (gpio_get_value(fun->rnb_gpio[fun->mchip_number]))
Anton Vorontsov5c249c52008-03-11 22:33:13 +030061 return 1;
62
63 dev_vdbg(fun->dev, "busy\n");
64 return 0;
65}
66
67static void fun_wait_rnb(struct fsl_upm_nand *fun)
68{
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020069 if (fun->rnb_gpio[fun->mchip_number] >= 0) {
70 int cnt = 1000000;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030071
Anton Vorontsov5c249c52008-03-11 22:33:13 +030072 while (--cnt && !fun_chip_ready(&fun->mtd))
73 cpu_relax();
Wolfgang Grandegger13f53692008-06-09 10:19:08 +020074 if (!cnt)
75 dev_err(fun->dev, "tired waiting for RNB\n");
76 } else {
77 ndelay(100);
Anton Vorontsov5c249c52008-03-11 22:33:13 +030078 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +030079}
80
81static void fun_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
82{
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020083 struct nand_chip *chip = mtd->priv;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030084 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020085 u32 mar;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030086
87 if (!(ctrl & fun->last_ctrl)) {
88 fsl_upm_end_pattern(&fun->upm);
89
90 if (cmd == NAND_CMD_NONE)
91 return;
92
93 fun->last_ctrl = ctrl & (NAND_ALE | NAND_CLE);
94 }
95
96 if (ctrl & NAND_CTRL_CHANGE) {
97 if (ctrl & NAND_ALE)
98 fsl_upm_start_pattern(&fun->upm, fun->upm_addr_offset);
99 else if (ctrl & NAND_CLE)
100 fsl_upm_start_pattern(&fun->upm, fun->upm_cmd_offset);
101 }
102
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200103 mar = (cmd << (32 - fun->upm.width)) |
104 fun->mchip_offsets[fun->mchip_number];
105 fsl_upm_run_pattern(&fun->upm, chip->IO_ADDR_R, mar);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300106
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200107 if (fun->wait_flags & FSL_UPM_WAIT_RUN_PATTERN)
108 fun_wait_rnb(fun);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300109}
110
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200111static void fun_select_chip(struct mtd_info *mtd, int mchip_nr)
112{
113 struct nand_chip *chip = mtd->priv;
114 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
115
116 if (mchip_nr == -1) {
117 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Roel Kluin35016dd2009-11-03 20:49:18 +0100118 } else if (mchip_nr >= 0 && mchip_nr < NAND_MAX_CHIPS) {
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200119 fun->mchip_number = mchip_nr;
120 chip->IO_ADDR_R = fun->io_base + fun->mchip_offsets[mchip_nr];
121 chip->IO_ADDR_W = chip->IO_ADDR_R;
122 } else {
123 BUG();
124 }
125}
126
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300127static uint8_t fun_read_byte(struct mtd_info *mtd)
128{
129 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
130
131 return in_8(fun->chip.IO_ADDR_R);
132}
133
134static void fun_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
135{
136 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
137 int i;
138
139 for (i = 0; i < len; i++)
140 buf[i] = in_8(fun->chip.IO_ADDR_R);
141}
142
143static void fun_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
144{
145 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
146 int i;
147
148 for (i = 0; i < len; i++) {
149 out_8(fun->chip.IO_ADDR_W, buf[i]);
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200150 if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BYTE)
151 fun_wait_rnb(fun);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300152 }
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200153 if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BUFFER)
154 fun_wait_rnb(fun);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300155}
156
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400157static int __devinit fun_chip_init(struct fsl_upm_nand *fun,
158 const struct device_node *upm_np,
159 const struct resource *io_res)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300160{
161 int ret;
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400162 struct device_node *flash_np;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300163#ifdef CONFIG_MTD_PARTITIONS
164 static const char *part_types[] = { "cmdlinepart", NULL, };
165#endif
166
167 fun->chip.IO_ADDR_R = fun->io_base;
168 fun->chip.IO_ADDR_W = fun->io_base;
169 fun->chip.cmd_ctrl = fun_cmd_ctrl;
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200170 fun->chip.chip_delay = fun->chip_delay;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300171 fun->chip.read_byte = fun_read_byte;
172 fun->chip.read_buf = fun_read_buf;
173 fun->chip.write_buf = fun_write_buf;
174 fun->chip.ecc.mode = NAND_ECC_SOFT;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200175 if (fun->mchip_count > 1)
176 fun->chip.select_chip = fun_select_chip;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300177
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200178 if (fun->rnb_gpio[0] >= 0)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300179 fun->chip.dev_ready = fun_chip_ready;
180
181 fun->mtd.priv = &fun->chip;
182 fun->mtd.owner = THIS_MODULE;
183
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400184 flash_np = of_get_next_child(upm_np, NULL);
185 if (!flash_np)
186 return -ENODEV;
187
188 fun->mtd.name = kasprintf(GFP_KERNEL, "%x.%s", io_res->start,
189 flash_np->name);
190 if (!fun->mtd.name) {
191 ret = -ENOMEM;
192 goto err;
193 }
194
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200195 ret = nand_scan(&fun->mtd, fun->mchip_count);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300196 if (ret)
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400197 goto err;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300198
199#ifdef CONFIG_MTD_PARTITIONS
200 ret = parse_mtd_partitions(&fun->mtd, part_types, &fun->parts, 0);
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400201
202#ifdef CONFIG_MTD_OF_PARTS
Wolfgang Grandegger29b65862008-11-27 09:46:13 +0000203 if (ret == 0) {
204 ret = of_mtd_parse_partitions(fun->dev, flash_np, &fun->parts);
205 if (ret < 0)
206 goto err;
207 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300208#endif
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400209 if (ret > 0)
210 ret = add_mtd_partitions(&fun->mtd, fun->parts, ret);
211 else
212#endif
213 ret = add_mtd_device(&fun->mtd);
214err:
215 of_node_put(flash_np);
216 return ret;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300217}
218
219static int __devinit fun_probe(struct of_device *ofdev,
220 const struct of_device_id *ofid)
221{
222 struct fsl_upm_nand *fun;
223 struct resource io_res;
224 const uint32_t *prop;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200225 int rnb_gpio;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300226 int ret;
227 int size;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200228 int i;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300229
230 fun = kzalloc(sizeof(*fun), GFP_KERNEL);
231 if (!fun)
232 return -ENOMEM;
233
234 ret = of_address_to_resource(ofdev->node, 0, &io_res);
235 if (ret) {
236 dev_err(&ofdev->dev, "can't get IO base\n");
237 goto err1;
238 }
239
240 ret = fsl_upm_find(io_res.start, &fun->upm);
241 if (ret) {
242 dev_err(&ofdev->dev, "can't find UPM\n");
243 goto err1;
244 }
245
246 prop = of_get_property(ofdev->node, "fsl,upm-addr-offset", &size);
247 if (!prop || size != sizeof(uint32_t)) {
248 dev_err(&ofdev->dev, "can't get UPM address offset\n");
249 ret = -EINVAL;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200250 goto err1;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300251 }
252 fun->upm_addr_offset = *prop;
253
254 prop = of_get_property(ofdev->node, "fsl,upm-cmd-offset", &size);
255 if (!prop || size != sizeof(uint32_t)) {
256 dev_err(&ofdev->dev, "can't get UPM command offset\n");
257 ret = -EINVAL;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200258 goto err1;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300259 }
260 fun->upm_cmd_offset = *prop;
261
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200262 prop = of_get_property(ofdev->node,
263 "fsl,upm-addr-line-cs-offsets", &size);
264 if (prop && (size / sizeof(uint32_t)) > 0) {
265 fun->mchip_count = size / sizeof(uint32_t);
266 if (fun->mchip_count >= NAND_MAX_CHIPS) {
267 dev_err(&ofdev->dev, "too much multiple chips\n");
268 goto err1;
269 }
270 for (i = 0; i < fun->mchip_count; i++)
271 fun->mchip_offsets[i] = prop[i];
272 } else {
273 fun->mchip_count = 1;
274 }
275
276 for (i = 0; i < fun->mchip_count; i++) {
277 fun->rnb_gpio[i] = -1;
278 rnb_gpio = of_get_gpio(ofdev->node, i);
279 if (rnb_gpio >= 0) {
280 ret = gpio_request(rnb_gpio, dev_name(&ofdev->dev));
281 if (ret) {
282 dev_err(&ofdev->dev,
283 "can't request RNB gpio #%d\n", i);
284 goto err2;
285 }
286 gpio_direction_input(rnb_gpio);
287 fun->rnb_gpio[i] = rnb_gpio;
288 } else if (rnb_gpio == -EINVAL) {
289 dev_err(&ofdev->dev, "RNB gpio #%d is invalid\n", i);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300290 goto err2;
291 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300292 }
293
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200294 prop = of_get_property(ofdev->node, "chip-delay", NULL);
295 if (prop)
296 fun->chip_delay = *prop;
297 else
298 fun->chip_delay = 50;
299
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200300 prop = of_get_property(ofdev->node, "fsl,upm-wait-flags", &size);
301 if (prop && size == sizeof(uint32_t))
302 fun->wait_flags = *prop;
303 else
304 fun->wait_flags = FSL_UPM_WAIT_RUN_PATTERN |
305 FSL_UPM_WAIT_WRITE_BYTE;
306
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300307 fun->io_base = devm_ioremap_nocache(&ofdev->dev, io_res.start,
H Hartley Sweeten58e6a842009-12-14 16:22:49 -0500308 resource_size(&io_res));
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300309 if (!fun->io_base) {
310 ret = -ENOMEM;
311 goto err2;
312 }
313
314 fun->dev = &ofdev->dev;
315 fun->last_ctrl = NAND_CLE;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300316
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400317 ret = fun_chip_init(fun, ofdev->node, &io_res);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300318 if (ret)
319 goto err2;
320
321 dev_set_drvdata(&ofdev->dev, fun);
322
323 return 0;
324err2:
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200325 for (i = 0; i < fun->mchip_count; i++) {
326 if (fun->rnb_gpio[i] < 0)
327 break;
328 gpio_free(fun->rnb_gpio[i]);
329 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300330err1:
331 kfree(fun);
332
333 return ret;
334}
335
336static int __devexit fun_remove(struct of_device *ofdev)
337{
338 struct fsl_upm_nand *fun = dev_get_drvdata(&ofdev->dev);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200339 int i;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300340
341 nand_release(&fun->mtd);
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400342 kfree(fun->mtd.name);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300343
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200344 for (i = 0; i < fun->mchip_count; i++) {
345 if (fun->rnb_gpio[i] < 0)
346 break;
347 gpio_free(fun->rnb_gpio[i]);
348 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300349
350 kfree(fun);
351
352 return 0;
353}
354
Márton Némethb2d4fba2010-01-09 15:10:46 +0100355static const struct of_device_id of_fun_match[] = {
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300356 { .compatible = "fsl,upm-nand" },
357 {},
358};
359MODULE_DEVICE_TABLE(of, of_fun_match);
360
361static struct of_platform_driver of_fun_driver = {
362 .name = "fsl,upm-nand",
363 .match_table = of_fun_match,
364 .probe = fun_probe,
365 .remove = __devexit_p(fun_remove),
366};
367
368static int __init fun_module_init(void)
369{
370 return of_register_platform_driver(&of_fun_driver);
371}
372module_init(fun_module_init);
373
374static void __exit fun_module_exit(void)
375{
376 of_unregister_platform_driver(&of_fun_driver);
377}
378module_exit(fun_module_exit);
379
380MODULE_LICENSE("GPL");
381MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
382MODULE_DESCRIPTION("Driver for NAND chips working through Freescale "
383 "LocalBus User-Programmable Machine");