blob: cafd12de72766f193ce409d46ac5ae9b3e9489a9 [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>
Rob Herring5af50732013-09-17 14:28:33 -050021#include <linux/of_address.h>
Anton Vorontsov5c249c52008-03-11 22:33:13 +030022#include <linux/of_platform.h>
23#include <linux/of_gpio.h>
24#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Anton Vorontsov5c249c52008-03-11 22:33:13 +030026#include <asm/fsl_lbc.h>
27
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +020028#define FSL_UPM_WAIT_RUN_PATTERN 0x1
29#define FSL_UPM_WAIT_WRITE_BYTE 0x2
30#define FSL_UPM_WAIT_WRITE_BUFFER 0x4
31
Anton Vorontsov5c249c52008-03-11 22:33:13 +030032struct fsl_upm_nand {
33 struct device *dev;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030034 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{
Boris BREZILLON478d51f2015-12-10 09:00:04 +010051 return container_of(mtd_to_nand(mtdinfo), struct fsl_upm_nand,
52 chip);
Ferenc Wagnerb92b5c42010-03-23 18:08:16 +010053}
Anton Vorontsov5c249c52008-03-11 22:33:13 +030054
55static int fun_chip_ready(struct mtd_info *mtd)
56{
57 struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd);
58
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020059 if (gpio_get_value(fun->rnb_gpio[fun->mchip_number]))
Anton Vorontsov5c249c52008-03-11 22:33:13 +030060 return 1;
61
62 dev_vdbg(fun->dev, "busy\n");
63 return 0;
64}
65
66static void fun_wait_rnb(struct fsl_upm_nand *fun)
67{
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020068 if (fun->rnb_gpio[fun->mchip_number] >= 0) {
Boris BREZILLON478d51f2015-12-10 09:00:04 +010069 struct mtd_info *mtd = nand_to_mtd(&fun->chip);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +020070 int cnt = 1000000;
Anton Vorontsov5c249c52008-03-11 22:33:13 +030071
Boris BREZILLON478d51f2015-12-10 09:00:04 +010072 while (--cnt && !fun_chip_ready(mtd))
Anton Vorontsov5c249c52008-03-11 22:33:13 +030073 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{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010083 struct nand_chip *chip = mtd_to_nand(mtd);
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{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100113 struct nand_chip *chip = mtd_to_nand(mtd);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200114 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
Bill Pemberton06f25512012-11-19 13:23:07 -0500157static int fun_chip_init(struct fsl_upm_nand *fun,
Greg Kroah-Hartmand8929942012-12-21 13:19:05 -0800158 const struct device_node *upm_np,
159 const struct resource *io_res)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300160{
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100161 struct mtd_info *mtd = nand_to_mtd(&fun->chip);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300162 int ret;
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400163 struct device_node *flash_np;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300164
165 fun->chip.IO_ADDR_R = fun->io_base;
166 fun->chip.IO_ADDR_W = fun->io_base;
167 fun->chip.cmd_ctrl = fun_cmd_ctrl;
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200168 fun->chip.chip_delay = fun->chip_delay;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300169 fun->chip.read_byte = fun_read_byte;
170 fun->chip.read_buf = fun_read_buf;
171 fun->chip.write_buf = fun_write_buf;
172 fun->chip.ecc.mode = NAND_ECC_SOFT;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200173 if (fun->mchip_count > 1)
174 fun->chip.select_chip = fun_select_chip;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300175
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200176 if (fun->rnb_gpio[0] >= 0)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300177 fun->chip.dev_ready = fun_chip_ready;
178
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100179 mtd->dev.parent = fun->dev;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300180
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400181 flash_np = of_get_next_child(upm_np, NULL);
182 if (!flash_np)
183 return -ENODEV;
184
Brian Norrisa61ae812015-10-30 20:33:25 -0700185 nand_set_flash_node(&fun->chip, flash_np);
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100186 mtd->name = kasprintf(GFP_KERNEL, "0x%llx.%s", (u64)io_res->start,
187 flash_np->name);
188 if (!mtd->name) {
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400189 ret = -ENOMEM;
190 goto err;
191 }
192
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100193 ret = nand_scan(mtd, fun->mchip_count);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300194 if (ret)
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400195 goto err;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300196
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100197 ret = mtd_device_register(mtd, NULL, 0);
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400198err:
199 of_node_put(flash_np);
Axel Lina751d312011-06-30 19:53:09 +0800200 if (ret)
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100201 kfree(mtd->name);
Anton Vorontsov95ebffd2008-09-18 20:50:26 +0400202 return ret;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300203}
204
Bill Pemberton06f25512012-11-19 13:23:07 -0500205static int fun_probe(struct platform_device *ofdev)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300206{
207 struct fsl_upm_nand *fun;
208 struct resource io_res;
Ian Munsie766f2712010-10-01 17:06:08 +1000209 const __be32 *prop;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200210 int rnb_gpio;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300211 int ret;
212 int size;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200213 int i;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300214
215 fun = kzalloc(sizeof(*fun), GFP_KERNEL);
216 if (!fun)
217 return -ENOMEM;
218
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200219 ret = of_address_to_resource(ofdev->dev.of_node, 0, &io_res);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300220 if (ret) {
221 dev_err(&ofdev->dev, "can't get IO base\n");
222 goto err1;
223 }
224
225 ret = fsl_upm_find(io_res.start, &fun->upm);
226 if (ret) {
227 dev_err(&ofdev->dev, "can't find UPM\n");
228 goto err1;
229 }
230
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200231 prop = of_get_property(ofdev->dev.of_node, "fsl,upm-addr-offset",
232 &size);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300233 if (!prop || size != sizeof(uint32_t)) {
234 dev_err(&ofdev->dev, "can't get UPM address offset\n");
235 ret = -EINVAL;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200236 goto err1;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300237 }
238 fun->upm_addr_offset = *prop;
239
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200240 prop = of_get_property(ofdev->dev.of_node, "fsl,upm-cmd-offset", &size);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300241 if (!prop || size != sizeof(uint32_t)) {
242 dev_err(&ofdev->dev, "can't get UPM command offset\n");
243 ret = -EINVAL;
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200244 goto err1;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300245 }
246 fun->upm_cmd_offset = *prop;
247
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200248 prop = of_get_property(ofdev->dev.of_node,
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200249 "fsl,upm-addr-line-cs-offsets", &size);
250 if (prop && (size / sizeof(uint32_t)) > 0) {
251 fun->mchip_count = size / sizeof(uint32_t);
252 if (fun->mchip_count >= NAND_MAX_CHIPS) {
253 dev_err(&ofdev->dev, "too much multiple chips\n");
254 goto err1;
255 }
256 for (i = 0; i < fun->mchip_count; i++)
Ian Munsie766f2712010-10-01 17:06:08 +1000257 fun->mchip_offsets[i] = be32_to_cpu(prop[i]);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200258 } else {
259 fun->mchip_count = 1;
260 }
261
262 for (i = 0; i < fun->mchip_count; i++) {
263 fun->rnb_gpio[i] = -1;
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200264 rnb_gpio = of_get_gpio(ofdev->dev.of_node, i);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200265 if (rnb_gpio >= 0) {
266 ret = gpio_request(rnb_gpio, dev_name(&ofdev->dev));
267 if (ret) {
268 dev_err(&ofdev->dev,
269 "can't request RNB gpio #%d\n", i);
270 goto err2;
271 }
272 gpio_direction_input(rnb_gpio);
273 fun->rnb_gpio[i] = rnb_gpio;
274 } else if (rnb_gpio == -EINVAL) {
275 dev_err(&ofdev->dev, "RNB gpio #%d is invalid\n", i);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300276 goto err2;
277 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300278 }
279
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200280 prop = of_get_property(ofdev->dev.of_node, "chip-delay", NULL);
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200281 if (prop)
Ian Munsie766f2712010-10-01 17:06:08 +1000282 fun->chip_delay = be32_to_cpup(prop);
Wolfgang Grandegger13f53692008-06-09 10:19:08 +0200283 else
284 fun->chip_delay = 50;
285
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200286 prop = of_get_property(ofdev->dev.of_node, "fsl,upm-wait-flags", &size);
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200287 if (prop && size == sizeof(uint32_t))
Ian Munsie766f2712010-10-01 17:06:08 +1000288 fun->wait_flags = be32_to_cpup(prop);
Wolfgang Grandeggerade92a62009-03-30 12:02:43 +0200289 else
290 fun->wait_flags = FSL_UPM_WAIT_RUN_PATTERN |
291 FSL_UPM_WAIT_WRITE_BYTE;
292
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300293 fun->io_base = devm_ioremap_nocache(&ofdev->dev, io_res.start,
H Hartley Sweeten58e6a842009-12-14 16:22:49 -0500294 resource_size(&io_res));
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300295 if (!fun->io_base) {
296 ret = -ENOMEM;
297 goto err2;
298 }
299
300 fun->dev = &ofdev->dev;
301 fun->last_ctrl = NAND_CLE;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300302
Anatolij Gustschinc8a4d0f2010-06-03 02:37:17 +0200303 ret = fun_chip_init(fun, ofdev->dev.of_node, &io_res);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300304 if (ret)
305 goto err2;
306
307 dev_set_drvdata(&ofdev->dev, fun);
308
309 return 0;
310err2:
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200311 for (i = 0; i < fun->mchip_count; i++) {
312 if (fun->rnb_gpio[i] < 0)
313 break;
314 gpio_free(fun->rnb_gpio[i]);
315 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300316err1:
317 kfree(fun);
318
319 return ret;
320}
321
Bill Pemberton810b7e02012-11-19 13:26:04 -0500322static int fun_remove(struct platform_device *ofdev)
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300323{
324 struct fsl_upm_nand *fun = dev_get_drvdata(&ofdev->dev);
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100325 struct mtd_info *mtd = nand_to_mtd(&fun->chip);
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200326 int i;
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300327
Boris BREZILLON478d51f2015-12-10 09:00:04 +0100328 nand_release(mtd);
329 kfree(mtd->name);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300330
Wolfgang Grandeggerb6e0e8c2009-03-30 12:02:42 +0200331 for (i = 0; i < fun->mchip_count; i++) {
332 if (fun->rnb_gpio[i] < 0)
333 break;
334 gpio_free(fun->rnb_gpio[i]);
335 }
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300336
337 kfree(fun);
338
339 return 0;
340}
341
Márton Némethb2d4fba2010-01-09 15:10:46 +0100342static const struct of_device_id of_fun_match[] = {
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300343 { .compatible = "fsl,upm-nand" },
344 {},
345};
346MODULE_DEVICE_TABLE(of, of_fun_match);
347
Grant Likely1c48a5c2011-02-17 02:43:24 -0700348static struct platform_driver of_fun_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700349 .driver = {
350 .name = "fsl,upm-nand",
Grant Likely40182942010-04-13 16:13:02 -0700351 .of_match_table = of_fun_match,
352 },
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300353 .probe = fun_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500354 .remove = fun_remove,
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300355};
356
Axel Linf99640d2011-11-27 20:45:03 +0800357module_platform_driver(of_fun_driver);
Anton Vorontsov5c249c52008-03-11 22:33:13 +0300358
359MODULE_LICENSE("GPL");
360MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
361MODULE_DESCRIPTION("Driver for NAND chips working through Freescale "
362 "LocalBus User-Programmable Machine");