mtd: fsl_upm.c: use mtd_device_parse_register
[cascardo/linux.git] / drivers / mtd / nand / fsl_upm.c
1 /*
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>
16 #include <linux/delay.h>
17 #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 <linux/slab.h>
25 #include <asm/fsl_lbc.h>
26
27 #define FSL_UPM_WAIT_RUN_PATTERN  0x1
28 #define FSL_UPM_WAIT_WRITE_BYTE   0x2
29 #define FSL_UPM_WAIT_WRITE_BUFFER 0x4
30
31 struct fsl_upm_nand {
32         struct device *dev;
33         struct mtd_info mtd;
34         struct nand_chip chip;
35         int last_ctrl;
36         struct mtd_partition *parts;
37         struct fsl_upm upm;
38         uint8_t upm_addr_offset;
39         uint8_t upm_cmd_offset;
40         void __iomem *io_base;
41         int rnb_gpio[NAND_MAX_CHIPS];
42         uint32_t mchip_offsets[NAND_MAX_CHIPS];
43         uint32_t mchip_count;
44         uint32_t mchip_number;
45         int chip_delay;
46         uint32_t wait_flags;
47 };
48
49 static inline struct fsl_upm_nand *to_fsl_upm_nand(struct mtd_info *mtdinfo)
50 {
51         return container_of(mtdinfo, struct fsl_upm_nand, mtd);
52 }
53
54 static int fun_chip_ready(struct mtd_info *mtd)
55 {
56         struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
57
58         if (gpio_get_value(fun->rnb_gpio[fun->mchip_number]))
59                 return 1;
60
61         dev_vdbg(fun->dev, "busy\n");
62         return 0;
63 }
64
65 static void fun_wait_rnb(struct fsl_upm_nand *fun)
66 {
67         if (fun->rnb_gpio[fun->mchip_number] >= 0) {
68                 int cnt = 1000000;
69
70                 while (--cnt && !fun_chip_ready(&fun->mtd))
71                         cpu_relax();
72                 if (!cnt)
73                         dev_err(fun->dev, "tired waiting for RNB\n");
74         } else {
75                 ndelay(100);
76         }
77 }
78
79 static void fun_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
80 {
81         struct nand_chip *chip = mtd->priv;
82         struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
83         u32 mar;
84
85         if (!(ctrl & fun->last_ctrl)) {
86                 fsl_upm_end_pattern(&fun->upm);
87
88                 if (cmd == NAND_CMD_NONE)
89                         return;
90
91                 fun->last_ctrl = ctrl & (NAND_ALE | NAND_CLE);
92         }
93
94         if (ctrl & NAND_CTRL_CHANGE) {
95                 if (ctrl & NAND_ALE)
96                         fsl_upm_start_pattern(&fun->upm, fun->upm_addr_offset);
97                 else if (ctrl & NAND_CLE)
98                         fsl_upm_start_pattern(&fun->upm, fun->upm_cmd_offset);
99         }
100
101         mar = (cmd << (32 - fun->upm.width)) |
102                 fun->mchip_offsets[fun->mchip_number];
103         fsl_upm_run_pattern(&fun->upm, chip->IO_ADDR_R, mar);
104
105         if (fun->wait_flags & FSL_UPM_WAIT_RUN_PATTERN)
106                 fun_wait_rnb(fun);
107 }
108
109 static void fun_select_chip(struct mtd_info *mtd, int mchip_nr)
110 {
111         struct nand_chip *chip = mtd->priv;
112         struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
113
114         if (mchip_nr == -1) {
115                 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
116         } else if (mchip_nr >= 0 && mchip_nr < NAND_MAX_CHIPS) {
117                 fun->mchip_number = mchip_nr;
118                 chip->IO_ADDR_R = fun->io_base + fun->mchip_offsets[mchip_nr];
119                 chip->IO_ADDR_W = chip->IO_ADDR_R;
120         } else {
121                 BUG();
122         }
123 }
124
125 static uint8_t fun_read_byte(struct mtd_info *mtd)
126 {
127         struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
128
129         return in_8(fun->chip.IO_ADDR_R);
130 }
131
132 static void fun_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
133 {
134         struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
135         int i;
136
137         for (i = 0; i < len; i++)
138                 buf[i] = in_8(fun->chip.IO_ADDR_R);
139 }
140
141 static void fun_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
142 {
143         struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
144         int i;
145
146         for (i = 0; i < len; i++) {
147                 out_8(fun->chip.IO_ADDR_W, buf[i]);
148                 if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BYTE)
149                         fun_wait_rnb(fun);
150         }
151         if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BUFFER)
152                 fun_wait_rnb(fun);
153 }
154
155 static int __devinit fun_chip_init(struct fsl_upm_nand *fun,
156                                    const struct device_node *upm_np,
157                                    const struct resource *io_res)
158 {
159         int ret;
160         struct device_node *flash_np;
161         struct mtd_part_parser_data ppdata;
162
163         fun->chip.IO_ADDR_R = fun->io_base;
164         fun->chip.IO_ADDR_W = fun->io_base;
165         fun->chip.cmd_ctrl = fun_cmd_ctrl;
166         fun->chip.chip_delay = fun->chip_delay;
167         fun->chip.read_byte = fun_read_byte;
168         fun->chip.read_buf = fun_read_buf;
169         fun->chip.write_buf = fun_write_buf;
170         fun->chip.ecc.mode = NAND_ECC_SOFT;
171         if (fun->mchip_count > 1)
172                 fun->chip.select_chip = fun_select_chip;
173
174         if (fun->rnb_gpio[0] >= 0)
175                 fun->chip.dev_ready = fun_chip_ready;
176
177         fun->mtd.priv = &fun->chip;
178         fun->mtd.owner = THIS_MODULE;
179
180         flash_np = of_get_next_child(upm_np, NULL);
181         if (!flash_np)
182                 return -ENODEV;
183
184         fun->mtd.name = kasprintf(GFP_KERNEL, "0x%llx.%s", (u64)io_res->start,
185                                   flash_np->name);
186         if (!fun->mtd.name) {
187                 ret = -ENOMEM;
188                 goto err;
189         }
190
191         ret = nand_scan(&fun->mtd, fun->mchip_count);
192         if (ret)
193                 goto err;
194
195         ppdata.of_node = flash_np;
196         ret = mtd_device_parse_register(&fun->mtd, NULL, &ppdata, NULL, 0);
197 err:
198         of_node_put(flash_np);
199         return ret;
200 }
201
202 static int __devinit fun_probe(struct platform_device *ofdev)
203 {
204         struct fsl_upm_nand *fun;
205         struct resource io_res;
206         const __be32 *prop;
207         int rnb_gpio;
208         int ret;
209         int size;
210         int i;
211
212         fun = kzalloc(sizeof(*fun), GFP_KERNEL);
213         if (!fun)
214                 return -ENOMEM;
215
216         ret = of_address_to_resource(ofdev->dev.of_node, 0, &io_res);
217         if (ret) {
218                 dev_err(&ofdev->dev, "can't get IO base\n");
219                 goto err1;
220         }
221
222         ret = fsl_upm_find(io_res.start, &fun->upm);
223         if (ret) {
224                 dev_err(&ofdev->dev, "can't find UPM\n");
225                 goto err1;
226         }
227
228         prop = of_get_property(ofdev->dev.of_node, "fsl,upm-addr-offset",
229                                &size);
230         if (!prop || size != sizeof(uint32_t)) {
231                 dev_err(&ofdev->dev, "can't get UPM address offset\n");
232                 ret = -EINVAL;
233                 goto err1;
234         }
235         fun->upm_addr_offset = *prop;
236
237         prop = of_get_property(ofdev->dev.of_node, "fsl,upm-cmd-offset", &size);
238         if (!prop || size != sizeof(uint32_t)) {
239                 dev_err(&ofdev->dev, "can't get UPM command offset\n");
240                 ret = -EINVAL;
241                 goto err1;
242         }
243         fun->upm_cmd_offset = *prop;
244
245         prop = of_get_property(ofdev->dev.of_node,
246                                "fsl,upm-addr-line-cs-offsets", &size);
247         if (prop && (size / sizeof(uint32_t)) > 0) {
248                 fun->mchip_count = size / sizeof(uint32_t);
249                 if (fun->mchip_count >= NAND_MAX_CHIPS) {
250                         dev_err(&ofdev->dev, "too much multiple chips\n");
251                         goto err1;
252                 }
253                 for (i = 0; i < fun->mchip_count; i++)
254                         fun->mchip_offsets[i] = be32_to_cpu(prop[i]);
255         } else {
256                 fun->mchip_count = 1;
257         }
258
259         for (i = 0; i < fun->mchip_count; i++) {
260                 fun->rnb_gpio[i] = -1;
261                 rnb_gpio = of_get_gpio(ofdev->dev.of_node, i);
262                 if (rnb_gpio >= 0) {
263                         ret = gpio_request(rnb_gpio, dev_name(&ofdev->dev));
264                         if (ret) {
265                                 dev_err(&ofdev->dev,
266                                         "can't request RNB gpio #%d\n", i);
267                                 goto err2;
268                         }
269                         gpio_direction_input(rnb_gpio);
270                         fun->rnb_gpio[i] = rnb_gpio;
271                 } else if (rnb_gpio == -EINVAL) {
272                         dev_err(&ofdev->dev, "RNB gpio #%d is invalid\n", i);
273                         goto err2;
274                 }
275         }
276
277         prop = of_get_property(ofdev->dev.of_node, "chip-delay", NULL);
278         if (prop)
279                 fun->chip_delay = be32_to_cpup(prop);
280         else
281                 fun->chip_delay = 50;
282
283         prop = of_get_property(ofdev->dev.of_node, "fsl,upm-wait-flags", &size);
284         if (prop && size == sizeof(uint32_t))
285                 fun->wait_flags = be32_to_cpup(prop);
286         else
287                 fun->wait_flags = FSL_UPM_WAIT_RUN_PATTERN |
288                                   FSL_UPM_WAIT_WRITE_BYTE;
289
290         fun->io_base = devm_ioremap_nocache(&ofdev->dev, io_res.start,
291                                             resource_size(&io_res));
292         if (!fun->io_base) {
293                 ret = -ENOMEM;
294                 goto err2;
295         }
296
297         fun->dev = &ofdev->dev;
298         fun->last_ctrl = NAND_CLE;
299
300         ret = fun_chip_init(fun, ofdev->dev.of_node, &io_res);
301         if (ret)
302                 goto err2;
303
304         dev_set_drvdata(&ofdev->dev, fun);
305
306         return 0;
307 err2:
308         for (i = 0; i < fun->mchip_count; i++) {
309                 if (fun->rnb_gpio[i] < 0)
310                         break;
311                 gpio_free(fun->rnb_gpio[i]);
312         }
313 err1:
314         kfree(fun);
315
316         return ret;
317 }
318
319 static int __devexit fun_remove(struct platform_device *ofdev)
320 {
321         struct fsl_upm_nand *fun = dev_get_drvdata(&ofdev->dev);
322         int i;
323
324         nand_release(&fun->mtd);
325         kfree(fun->mtd.name);
326
327         for (i = 0; i < fun->mchip_count; i++) {
328                 if (fun->rnb_gpio[i] < 0)
329                         break;
330                 gpio_free(fun->rnb_gpio[i]);
331         }
332
333         kfree(fun);
334
335         return 0;
336 }
337
338 static const struct of_device_id of_fun_match[] = {
339         { .compatible = "fsl,upm-nand" },
340         {},
341 };
342 MODULE_DEVICE_TABLE(of, of_fun_match);
343
344 static struct platform_driver of_fun_driver = {
345         .driver = {
346                 .name = "fsl,upm-nand",
347                 .owner = THIS_MODULE,
348                 .of_match_table = of_fun_match,
349         },
350         .probe          = fun_probe,
351         .remove         = __devexit_p(fun_remove),
352 };
353
354 static int __init fun_module_init(void)
355 {
356         return platform_driver_register(&of_fun_driver);
357 }
358 module_init(fun_module_init);
359
360 static void __exit fun_module_exit(void)
361 {
362         platform_driver_unregister(&of_fun_driver);
363 }
364 module_exit(fun_module_exit);
365
366 MODULE_LICENSE("GPL");
367 MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
368 MODULE_DESCRIPTION("Driver for NAND chips working through Freescale "
369                    "LocalBus User-Programmable Machine");