Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 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> |
Wolfgang Grandegger | 13f5369 | 2008-06-09 10:19:08 +0200 | [diff] [blame] | 16 | #include <linux/delay.h> |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 25 | #include <asm/fsl_lbc.h> |
| 26 | |
Wolfgang Grandegger | ade92a6 | 2009-03-30 12:02:43 +0200 | [diff] [blame] | 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 | |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 31 | struct fsl_upm_nand { |
| 32 | struct device *dev; |
| 33 | struct mtd_info mtd; |
| 34 | struct nand_chip chip; |
| 35 | int last_ctrl; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 36 | struct mtd_partition *parts; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 37 | struct fsl_upm upm; |
| 38 | uint8_t upm_addr_offset; |
| 39 | uint8_t upm_cmd_offset; |
| 40 | void __iomem *io_base; |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 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; |
Wolfgang Grandegger | 13f5369 | 2008-06-09 10:19:08 +0200 | [diff] [blame] | 45 | int chip_delay; |
Wolfgang Grandegger | ade92a6 | 2009-03-30 12:02:43 +0200 | [diff] [blame] | 46 | uint32_t wait_flags; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 47 | }; |
| 48 | |
Ferenc Wagner | b92b5c4 | 2010-03-23 18:08:16 +0100 | [diff] [blame] | 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 | } |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 53 | |
| 54 | static int fun_chip_ready(struct mtd_info *mtd) |
| 55 | { |
| 56 | struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd); |
| 57 | |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 58 | if (gpio_get_value(fun->rnb_gpio[fun->mchip_number])) |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 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 | { |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 67 | if (fun->rnb_gpio[fun->mchip_number] >= 0) { |
| 68 | int cnt = 1000000; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 69 | |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 70 | while (--cnt && !fun_chip_ready(&fun->mtd)) |
| 71 | cpu_relax(); |
Wolfgang Grandegger | 13f5369 | 2008-06-09 10:19:08 +0200 | [diff] [blame] | 72 | if (!cnt) |
| 73 | dev_err(fun->dev, "tired waiting for RNB\n"); |
| 74 | } else { |
| 75 | ndelay(100); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 76 | } |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static void fun_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl) |
| 80 | { |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 81 | struct nand_chip *chip = mtd->priv; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 82 | struct fsl_upm_nand *fun = to_fsl_upm_nand(mtd); |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 83 | u32 mar; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 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 | |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 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); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 104 | |
Wolfgang Grandegger | ade92a6 | 2009-03-30 12:02:43 +0200 | [diff] [blame] | 105 | if (fun->wait_flags & FSL_UPM_WAIT_RUN_PATTERN) |
| 106 | fun_wait_rnb(fun); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 107 | } |
| 108 | |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 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); |
Roel Kluin | 35016dd | 2009-11-03 20:49:18 +0100 | [diff] [blame] | 116 | } else if (mchip_nr >= 0 && mchip_nr < NAND_MAX_CHIPS) { |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 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 | |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 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]); |
Wolfgang Grandegger | ade92a6 | 2009-03-30 12:02:43 +0200 | [diff] [blame] | 148 | if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BYTE) |
| 149 | fun_wait_rnb(fun); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 150 | } |
Wolfgang Grandegger | ade92a6 | 2009-03-30 12:02:43 +0200 | [diff] [blame] | 151 | if (fun->wait_flags & FSL_UPM_WAIT_WRITE_BUFFER) |
| 152 | fun_wait_rnb(fun); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 153 | } |
| 154 | |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 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) |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 158 | { |
| 159 | int ret; |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 160 | struct device_node *flash_np; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 161 | |
| 162 | fun->chip.IO_ADDR_R = fun->io_base; |
| 163 | fun->chip.IO_ADDR_W = fun->io_base; |
| 164 | fun->chip.cmd_ctrl = fun_cmd_ctrl; |
Wolfgang Grandegger | 13f5369 | 2008-06-09 10:19:08 +0200 | [diff] [blame] | 165 | fun->chip.chip_delay = fun->chip_delay; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 166 | fun->chip.read_byte = fun_read_byte; |
| 167 | fun->chip.read_buf = fun_read_buf; |
| 168 | fun->chip.write_buf = fun_write_buf; |
| 169 | fun->chip.ecc.mode = NAND_ECC_SOFT; |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 170 | if (fun->mchip_count > 1) |
| 171 | fun->chip.select_chip = fun_select_chip; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 172 | |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 173 | if (fun->rnb_gpio[0] >= 0) |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 174 | fun->chip.dev_ready = fun_chip_ready; |
| 175 | |
| 176 | fun->mtd.priv = &fun->chip; |
| 177 | fun->mtd.owner = THIS_MODULE; |
| 178 | |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 179 | flash_np = of_get_next_child(upm_np, NULL); |
| 180 | if (!flash_np) |
| 181 | return -ENODEV; |
| 182 | |
Roy Zang | 0eecf4b | 2010-09-08 16:47:55 +0800 | [diff] [blame] | 183 | fun->mtd.name = kasprintf(GFP_KERNEL, "0x%llx.%s", (u64)io_res->start, |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 184 | flash_np->name); |
| 185 | if (!fun->mtd.name) { |
| 186 | ret = -ENOMEM; |
| 187 | goto err; |
| 188 | } |
| 189 | |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 190 | ret = nand_scan(&fun->mtd, fun->mchip_count); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 191 | if (ret) |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 192 | goto err; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 193 | |
Dmitry Eremin-Solenikov | a8e0832 | 2011-05-29 20:16:56 +0400 | [diff] [blame] | 194 | ret = parse_mtd_partitions(&fun->mtd, NULL, &fun->parts, 0); |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 195 | |
| 196 | #ifdef CONFIG_MTD_OF_PARTS |
Wolfgang Grandegger | 29b6586 | 2008-11-27 09:46:13 +0000 | [diff] [blame] | 197 | if (ret == 0) { |
| 198 | ret = of_mtd_parse_partitions(fun->dev, flash_np, &fun->parts); |
| 199 | if (ret < 0) |
| 200 | goto err; |
| 201 | } |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 202 | #endif |
Jamie Iles | 13c41db | 2011-05-23 10:23:22 +0100 | [diff] [blame] | 203 | ret = mtd_device_register(&fun->mtd, fun->parts, ret); |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 204 | err: |
| 205 | of_node_put(flash_np); |
| 206 | return ret; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 207 | } |
| 208 | |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 209 | static int __devinit fun_probe(struct platform_device *ofdev) |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 210 | { |
| 211 | struct fsl_upm_nand *fun; |
| 212 | struct resource io_res; |
Ian Munsie | 766f271 | 2010-10-01 17:06:08 +1000 | [diff] [blame] | 213 | const __be32 *prop; |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 214 | int rnb_gpio; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 215 | int ret; |
| 216 | int size; |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 217 | int i; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 218 | |
| 219 | fun = kzalloc(sizeof(*fun), GFP_KERNEL); |
| 220 | if (!fun) |
| 221 | return -ENOMEM; |
| 222 | |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 223 | ret = of_address_to_resource(ofdev->dev.of_node, 0, &io_res); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 224 | if (ret) { |
| 225 | dev_err(&ofdev->dev, "can't get IO base\n"); |
| 226 | goto err1; |
| 227 | } |
| 228 | |
| 229 | ret = fsl_upm_find(io_res.start, &fun->upm); |
| 230 | if (ret) { |
| 231 | dev_err(&ofdev->dev, "can't find UPM\n"); |
| 232 | goto err1; |
| 233 | } |
| 234 | |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 235 | prop = of_get_property(ofdev->dev.of_node, "fsl,upm-addr-offset", |
| 236 | &size); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 237 | if (!prop || size != sizeof(uint32_t)) { |
| 238 | dev_err(&ofdev->dev, "can't get UPM address offset\n"); |
| 239 | ret = -EINVAL; |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 240 | goto err1; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 241 | } |
| 242 | fun->upm_addr_offset = *prop; |
| 243 | |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 244 | prop = of_get_property(ofdev->dev.of_node, "fsl,upm-cmd-offset", &size); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 245 | if (!prop || size != sizeof(uint32_t)) { |
| 246 | dev_err(&ofdev->dev, "can't get UPM command offset\n"); |
| 247 | ret = -EINVAL; |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 248 | goto err1; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 249 | } |
| 250 | fun->upm_cmd_offset = *prop; |
| 251 | |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 252 | prop = of_get_property(ofdev->dev.of_node, |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 253 | "fsl,upm-addr-line-cs-offsets", &size); |
| 254 | if (prop && (size / sizeof(uint32_t)) > 0) { |
| 255 | fun->mchip_count = size / sizeof(uint32_t); |
| 256 | if (fun->mchip_count >= NAND_MAX_CHIPS) { |
| 257 | dev_err(&ofdev->dev, "too much multiple chips\n"); |
| 258 | goto err1; |
| 259 | } |
| 260 | for (i = 0; i < fun->mchip_count; i++) |
Ian Munsie | 766f271 | 2010-10-01 17:06:08 +1000 | [diff] [blame] | 261 | fun->mchip_offsets[i] = be32_to_cpu(prop[i]); |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 262 | } else { |
| 263 | fun->mchip_count = 1; |
| 264 | } |
| 265 | |
| 266 | for (i = 0; i < fun->mchip_count; i++) { |
| 267 | fun->rnb_gpio[i] = -1; |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 268 | rnb_gpio = of_get_gpio(ofdev->dev.of_node, i); |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 269 | if (rnb_gpio >= 0) { |
| 270 | ret = gpio_request(rnb_gpio, dev_name(&ofdev->dev)); |
| 271 | if (ret) { |
| 272 | dev_err(&ofdev->dev, |
| 273 | "can't request RNB gpio #%d\n", i); |
| 274 | goto err2; |
| 275 | } |
| 276 | gpio_direction_input(rnb_gpio); |
| 277 | fun->rnb_gpio[i] = rnb_gpio; |
| 278 | } else if (rnb_gpio == -EINVAL) { |
| 279 | dev_err(&ofdev->dev, "RNB gpio #%d is invalid\n", i); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 280 | goto err2; |
| 281 | } |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 282 | } |
| 283 | |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 284 | prop = of_get_property(ofdev->dev.of_node, "chip-delay", NULL); |
Wolfgang Grandegger | 13f5369 | 2008-06-09 10:19:08 +0200 | [diff] [blame] | 285 | if (prop) |
Ian Munsie | 766f271 | 2010-10-01 17:06:08 +1000 | [diff] [blame] | 286 | fun->chip_delay = be32_to_cpup(prop); |
Wolfgang Grandegger | 13f5369 | 2008-06-09 10:19:08 +0200 | [diff] [blame] | 287 | else |
| 288 | fun->chip_delay = 50; |
| 289 | |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 290 | prop = of_get_property(ofdev->dev.of_node, "fsl,upm-wait-flags", &size); |
Wolfgang Grandegger | ade92a6 | 2009-03-30 12:02:43 +0200 | [diff] [blame] | 291 | if (prop && size == sizeof(uint32_t)) |
Ian Munsie | 766f271 | 2010-10-01 17:06:08 +1000 | [diff] [blame] | 292 | fun->wait_flags = be32_to_cpup(prop); |
Wolfgang Grandegger | ade92a6 | 2009-03-30 12:02:43 +0200 | [diff] [blame] | 293 | else |
| 294 | fun->wait_flags = FSL_UPM_WAIT_RUN_PATTERN | |
| 295 | FSL_UPM_WAIT_WRITE_BYTE; |
| 296 | |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 297 | fun->io_base = devm_ioremap_nocache(&ofdev->dev, io_res.start, |
H Hartley Sweeten | 58e6a84 | 2009-12-14 16:22:49 -0500 | [diff] [blame] | 298 | resource_size(&io_res)); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 299 | if (!fun->io_base) { |
| 300 | ret = -ENOMEM; |
| 301 | goto err2; |
| 302 | } |
| 303 | |
| 304 | fun->dev = &ofdev->dev; |
| 305 | fun->last_ctrl = NAND_CLE; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 306 | |
Anatolij Gustschin | c8a4d0f | 2010-06-03 02:37:17 +0200 | [diff] [blame] | 307 | ret = fun_chip_init(fun, ofdev->dev.of_node, &io_res); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 308 | if (ret) |
| 309 | goto err2; |
| 310 | |
| 311 | dev_set_drvdata(&ofdev->dev, fun); |
| 312 | |
| 313 | return 0; |
| 314 | err2: |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 315 | for (i = 0; i < fun->mchip_count; i++) { |
| 316 | if (fun->rnb_gpio[i] < 0) |
| 317 | break; |
| 318 | gpio_free(fun->rnb_gpio[i]); |
| 319 | } |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 320 | err1: |
| 321 | kfree(fun); |
| 322 | |
| 323 | return ret; |
| 324 | } |
| 325 | |
Grant Likely | 2dc1158 | 2010-08-06 09:25:50 -0600 | [diff] [blame] | 326 | static int __devexit fun_remove(struct platform_device *ofdev) |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 327 | { |
| 328 | struct fsl_upm_nand *fun = dev_get_drvdata(&ofdev->dev); |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 329 | int i; |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 330 | |
| 331 | nand_release(&fun->mtd); |
Anton Vorontsov | 95ebffd | 2008-09-18 20:50:26 +0400 | [diff] [blame] | 332 | kfree(fun->mtd.name); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 333 | |
Wolfgang Grandegger | b6e0e8c | 2009-03-30 12:02:42 +0200 | [diff] [blame] | 334 | for (i = 0; i < fun->mchip_count; i++) { |
| 335 | if (fun->rnb_gpio[i] < 0) |
| 336 | break; |
| 337 | gpio_free(fun->rnb_gpio[i]); |
| 338 | } |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 339 | |
| 340 | kfree(fun); |
| 341 | |
| 342 | return 0; |
| 343 | } |
| 344 | |
Márton Németh | b2d4fba | 2010-01-09 15:10:46 +0100 | [diff] [blame] | 345 | static const struct of_device_id of_fun_match[] = { |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 346 | { .compatible = "fsl,upm-nand" }, |
| 347 | {}, |
| 348 | }; |
| 349 | MODULE_DEVICE_TABLE(of, of_fun_match); |
| 350 | |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 351 | static struct platform_driver of_fun_driver = { |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 352 | .driver = { |
| 353 | .name = "fsl,upm-nand", |
| 354 | .owner = THIS_MODULE, |
| 355 | .of_match_table = of_fun_match, |
| 356 | }, |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 357 | .probe = fun_probe, |
| 358 | .remove = __devexit_p(fun_remove), |
| 359 | }; |
| 360 | |
| 361 | static int __init fun_module_init(void) |
| 362 | { |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 363 | return platform_driver_register(&of_fun_driver); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 364 | } |
| 365 | module_init(fun_module_init); |
| 366 | |
| 367 | static void __exit fun_module_exit(void) |
| 368 | { |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 369 | platform_driver_unregister(&of_fun_driver); |
Anton Vorontsov | 5c249c5 | 2008-03-11 22:33:13 +0300 | [diff] [blame] | 370 | } |
| 371 | module_exit(fun_module_exit); |
| 372 | |
| 373 | MODULE_LICENSE("GPL"); |
| 374 | MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>"); |
| 375 | MODULE_DESCRIPTION("Driver for NAND chips working through Freescale " |
| 376 | "LocalBus User-Programmable Machine"); |