blob: 23752fd5bc590d40e7ac5fb15ad93af05d9e6882 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Anton Vorontsov5c249c52008-03-11 22:33:13 +030025#include <asm/fsl_lbc.h>
26
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +020027#define FSL_UPM_WAIT_RUN_PATTERN 0x1
28#define FSL_UPM_WAIT_WRITE_BYTE 0x2
29#define FSL_UPM_WAIT_WRITE_BUFFER 0x4
30
Anton Vorontsov5c249c52008-03-11 22:33:13 +030031struct fsl_upm_nand {
32 struct device *dev;
33 struct mtd_info mtd;
34 struct nand_chip chip;
35 int last_ctrl;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030036 struct mtd_partition *parts;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030037 struct fsl_upm upm;
38 uint8_t upm_addr_offset;
39 uint8_t upm_cmd_offset;
40 void __iomem *io_base;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020041 int rnb_gpio[NAND_MAX_CHIPS];
42 uint32_t mchip_offsets[NAND_MAX_CHIPS];
43 uint32_t mchip_count;
44 uint32_t mchip_number;
Wolfgang Grandegger13f53692008-06-09 10:19:08 +020045 int chip_delay;
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +020046 uint32_t wait_flags;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030047};
48
Ferenc Wagnerb92b5c42010-03-23 18:08:16 +010049static 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}
Anton Vorontsov5c249c52008-03-11 22:33:13 +030053
54static int fun_chip_ready(struct mtd_info *mtd)
55{
56 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
57
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020058 if (gpio_get_value(fun->rnb_gpio[fun->mchip_number]))
Anton Vorontsov5c249c52008-03-11 22:33:13 +030059 return 1;
60
61 dev_vdbg(fun->dev, "busy\n");
62 return 0;
63}
64
65static void fun_wait_rnb(struct fsl_upm_nand *fun)
66{
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020067 if (fun->rnb_gpio[fun->mchip_number] >= 0) {
68 int cnt = 1000000;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030069
Anton Vorontsov5c249c52008-03-11 22:33:13 +030070 while (--cnt && !fun_chip_ready(&fun->mtd))
71 cpu_relax();
Wolfgang Grandegger13f53692008-06-09 10:19:08 +020072 if (!cnt)
73 dev_err(fun->dev, "tired waiting for RNB\n");
74 } else {
75 ndelay(100);
Anton Vorontsov5c249c52008-03-11 22:33:13 +030076 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +030077}
78
79static void fun_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
80{
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020081 struct nand_chip *chip = mtd->priv;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030082 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020083 u32 mar;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030084
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
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200101 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);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300104
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200105 if (fun->wait_flags & FSL_UPM_WAIT_RUN_PATTERN)
106 fun_wait_rnb(fun);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300107}
108
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200109static 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);
Roel Kluin35016dd2009-11-03 20:49:18 +0100116 } else if (mchip_nr >= 0 && mchip_nr < NAND_MAX_CHIPS) {
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200117 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
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300125static 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
132static 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
141static 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]);
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200148 if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BYTE)
149 fun_wait_rnb(fun);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300150 }
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200151 if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BUFFER)
152 fun_wait_rnb(fun);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300153}
154
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400155static int __devinit fun_chip_init(struct fsl_upm_nand *fun,
156 const struct device_node *upm_np,
157 const struct resource *io_res)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300158{
159 int ret;
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400160 struct device_node *flash_np;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300161 static const char *part_types[] = { "cmdlinepart", NULL, };
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300162
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;
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200166 fun->chip.chip_delay = fun->chip_delay;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300167 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;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200171 if (fun->mchip_count > 1)
172 fun->chip.select_chip = fun_select_chip;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300173
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200174 if (fun->rnb_gpio[0] >= 0)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300175 fun->chip.dev_ready = fun_chip_ready;
176
177 fun->mtd.priv = &fun->chip;
178 fun->mtd.owner = THIS_MODULE;
179
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400180 flash_np = of_get_next_child(upm_np, NULL);
181 if (!flash_np)
182 return -ENODEV;
183
Roy Zang0eecf4b2010-09-08 16:47:55 +0800184 fun->mtd.name = kasprintf(GFP_KERNEL, "0x%llx.%s", (u64)io_res->start,
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400185 flash_np->name);
186 if (!fun->mtd.name) {
187 ret = -ENOMEM;
188 goto err;
189 }
190
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200191 ret = nand_scan(&fun->mtd, fun->mchip_count);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300192 if (ret)
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400193 goto err;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300194
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300195 ret = parse_mtd_partitions(&fun->mtd, part_types, &fun->parts, 0);
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400196
197#ifdef CONFIG_MTD_OF_PARTS
Wolfgang Grandegger29b65862008-11-27 09:46:13 +0000198 if (ret == 0) {
199 ret = of_mtd_parse_partitions(fun->dev, flash_np, &fun->parts);
200 if (ret < 0)
201 goto err;
202 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300203#endif
Jamie Iles13c41db2011-05-23 10:23:22 +0100204 ret = mtd_device_register(&fun->mtd, fun->parts, ret);
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400205err:
206 of_node_put(flash_np);
207 return ret;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300208}
209
Grant Likely1c48a5c2011-02-17 02:43:24 -0700210static int __devinit fun_probe(struct platform_device *ofdev)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300211{
212 struct fsl_upm_nand *fun;
213 struct resource io_res;
Ian Munsie766f2712010-10-01 17:06:08 +1000214 const __be32 *prop;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200215 int rnb_gpio;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300216 int ret;
217 int size;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200218 int i;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300219
220 fun = kzalloc(sizeof(*fun), GFP_KERNEL);
221 if (!fun)
222 return -ENOMEM;
223
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200224 ret = of_address_to_resource(ofdev->dev.of_node, 0, &io_res);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300225 if (ret) {
226 dev_err(&ofdev->dev, "can't get IO base\n");
227 goto err1;
228 }
229
230 ret = fsl_upm_find(io_res.start, &fun->upm);
231 if (ret) {
232 dev_err(&ofdev->dev, "can't find UPM\n");
233 goto err1;
234 }
235
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200236 prop = of_get_property(ofdev->dev.of_node, "fsl,upm-addr-offset",
237 &size);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300238 if (!prop || size != sizeof(uint32_t)) {
239 dev_err(&ofdev->dev, "can't get UPM address offset\n");
240 ret = -EINVAL;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200241 goto err1;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300242 }
243 fun->upm_addr_offset = *prop;
244
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200245 prop = of_get_property(ofdev->dev.of_node, "fsl,upm-cmd-offset", &size);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300246 if (!prop || size != sizeof(uint32_t)) {
247 dev_err(&ofdev->dev, "can't get UPM command offset\n");
248 ret = -EINVAL;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200249 goto err1;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300250 }
251 fun->upm_cmd_offset = *prop;
252
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200253 prop = of_get_property(ofdev->dev.of_node,
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200254 "fsl,upm-addr-line-cs-offsets", &size);
255 if (prop && (size / sizeof(uint32_t)) > 0) {
256 fun->mchip_count = size / sizeof(uint32_t);
257 if (fun->mchip_count >= NAND_MAX_CHIPS) {
258 dev_err(&ofdev->dev, "too much multiple chips\n");
259 goto err1;
260 }
261 for (i = 0; i < fun->mchip_count; i++)
Ian Munsie766f2712010-10-01 17:06:08 +1000262 fun->mchip_offsets[i] = be32_to_cpu(prop[i]);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200263 } else {
264 fun->mchip_count = 1;
265 }
266
267 for (i = 0; i < fun->mchip_count; i++) {
268 fun->rnb_gpio[i] = -1;
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200269 rnb_gpio = of_get_gpio(ofdev->dev.of_node, i);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200270 if (rnb_gpio >= 0) {
271 ret = gpio_request(rnb_gpio, dev_name(&ofdev->dev));
272 if (ret) {
273 dev_err(&ofdev->dev,
274 "can't request RNB gpio #%d\n", i);
275 goto err2;
276 }
277 gpio_direction_input(rnb_gpio);
278 fun->rnb_gpio[i] = rnb_gpio;
279 } else if (rnb_gpio == -EINVAL) {
280 dev_err(&ofdev->dev, "RNB gpio #%d is invalid\n", i);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300281 goto err2;
282 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300283 }
284
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200285 prop = of_get_property(ofdev->dev.of_node, "chip-delay", NULL);
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200286 if (prop)
Ian Munsie766f2712010-10-01 17:06:08 +1000287 fun->chip_delay = be32_to_cpup(prop);
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200288 else
289 fun->chip_delay = 50;
290
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200291 prop = of_get_property(ofdev->dev.of_node, "fsl,upm-wait-flags", &size);
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200292 if (prop && size == sizeof(uint32_t))
Ian Munsie766f2712010-10-01 17:06:08 +1000293 fun->wait_flags = be32_to_cpup(prop);
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200294 else
295 fun->wait_flags = FSL_UPM_WAIT_RUN_PATTERN |
296 FSL_UPM_WAIT_WRITE_BYTE;
297
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300298 fun->io_base = devm_ioremap_nocache(&ofdev->dev, io_res.start,
H Hartley Sweeten58e6a842009-12-14 16:22:49 -0500299 resource_size(&io_res));
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300300 if (!fun->io_base) {
301 ret = -ENOMEM;
302 goto err2;
303 }
304
305 fun->dev = &ofdev->dev;
306 fun->last_ctrl = NAND_CLE;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300307
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200308 ret = fun_chip_init(fun, ofdev->dev.of_node, &io_res);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300309 if (ret)
310 goto err2;
311
312 dev_set_drvdata(&ofdev->dev, fun);
313
314 return 0;
315err2:
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200316 for (i = 0; i < fun->mchip_count; i++) {
317 if (fun->rnb_gpio[i] < 0)
318 break;
319 gpio_free(fun->rnb_gpio[i]);
320 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300321err1:
322 kfree(fun);
323
324 return ret;
325}
326
Grant Likely2dc11582010-08-06 09:25:50 -0600327static int __devexit fun_remove(struct platform_device *ofdev)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300328{
329 struct fsl_upm_nand *fun = dev_get_drvdata(&ofdev->dev);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200330 int i;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300331
332 nand_release(&fun->mtd);
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400333 kfree(fun->mtd.name);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300334
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200335 for (i = 0; i < fun->mchip_count; i++) {
336 if (fun->rnb_gpio[i] < 0)
337 break;
338 gpio_free(fun->rnb_gpio[i]);
339 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300340
341 kfree(fun);
342
343 return 0;
344}
345
Márton Némethb2d4fba2010-01-09 15:10:46 +0100346static const struct of_device_id of_fun_match[] = {
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300347 { .compatible = "fsl,upm-nand" },
348 {},
349};
350MODULE_DEVICE_TABLE(of, of_fun_match);
351
Grant Likely1c48a5c2011-02-17 02:43:24 -0700352static struct platform_driver of_fun_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700353 .driver = {
354 .name = "fsl,upm-nand",
355 .owner = THIS_MODULE,
356 .of_match_table = of_fun_match,
357 },
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300358 .probe = fun_probe,
359 .remove = __devexit_p(fun_remove),
360};
361
362static int __init fun_module_init(void)
363{
Grant Likely1c48a5c2011-02-17 02:43:24 -0700364 return platform_driver_register(&of_fun_driver);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300365}
366module_init(fun_module_init);
367
368static void __exit fun_module_exit(void)
369{
Grant Likely1c48a5c2011-02-17 02:43:24 -0700370 platform_driver_unregister(&of_fun_driver);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300371}
372module_exit(fun_module_exit);
373
374MODULE_LICENSE("GPL");
375MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
376MODULE_DESCRIPTION("Driver for NAND chips working through Freescale "
377 "LocalBus User-Programmable Machine");