Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 1 | /* |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 2 | * Copyright © 2009 Nuvoton technology corporation. |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 3 | * |
| 4 | * Wan ZongShun <mcuos.com@gmail.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation;version 2 of the License. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #include <linux/slab.h> |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 13 | #include <linux/module.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/io.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/delay.h> |
| 18 | #include <linux/clk.h> |
| 19 | #include <linux/err.h> |
| 20 | |
| 21 | #include <linux/mtd/mtd.h> |
| 22 | #include <linux/mtd/nand.h> |
| 23 | #include <linux/mtd/partitions.h> |
| 24 | |
| 25 | #define REG_FMICSR 0x00 |
| 26 | #define REG_SMCSR 0xa0 |
| 27 | #define REG_SMISR 0xac |
| 28 | #define REG_SMCMD 0xb0 |
| 29 | #define REG_SMADDR 0xb4 |
| 30 | #define REG_SMDATA 0xb8 |
| 31 | |
| 32 | #define RESET_FMI 0x01 |
| 33 | #define NAND_EN 0x08 |
| 34 | #define READYBUSY (0x01 << 18) |
| 35 | |
| 36 | #define SWRST 0x01 |
| 37 | #define PSIZE (0x01 << 3) |
| 38 | #define DMARWEN (0x03 << 1) |
| 39 | #define BUSWID (0x01 << 4) |
| 40 | #define ECC4EN (0x01 << 5) |
| 41 | #define WP (0x01 << 24) |
| 42 | #define NANDCS (0x01 << 25) |
| 43 | #define ENDADDR (0x01 << 31) |
| 44 | |
| 45 | #define read_data_reg(dev) \ |
| 46 | __raw_readl((dev)->reg + REG_SMDATA) |
| 47 | |
| 48 | #define write_data_reg(dev, val) \ |
| 49 | __raw_writel((val), (dev)->reg + REG_SMDATA) |
| 50 | |
| 51 | #define write_cmd_reg(dev, val) \ |
| 52 | __raw_writel((val), (dev)->reg + REG_SMCMD) |
| 53 | |
| 54 | #define write_addr_reg(dev, val) \ |
| 55 | __raw_writel((val), (dev)->reg + REG_SMADDR) |
| 56 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 57 | struct nuc900_nand { |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 58 | struct mtd_info mtd; |
| 59 | struct nand_chip chip; |
| 60 | void __iomem *reg; |
| 61 | struct clk *clk; |
| 62 | spinlock_t lock; |
| 63 | }; |
| 64 | |
| 65 | static const struct mtd_partition partitions[] = { |
| 66 | { |
| 67 | .name = "NAND FS 0", |
| 68 | .offset = 0, |
| 69 | .size = 8 * 1024 * 1024 |
| 70 | }, |
| 71 | { |
| 72 | .name = "NAND FS 1", |
| 73 | .offset = MTDPART_OFS_APPEND, |
| 74 | .size = MTDPART_SIZ_FULL |
| 75 | } |
| 76 | }; |
| 77 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 78 | static unsigned char nuc900_nand_read_byte(struct mtd_info *mtd) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 79 | { |
| 80 | unsigned char ret; |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 81 | struct nuc900_nand *nand; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 82 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 83 | nand = container_of(mtd, struct nuc900_nand, mtd); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 84 | |
| 85 | ret = (unsigned char)read_data_reg(nand); |
| 86 | |
| 87 | return ret; |
| 88 | } |
| 89 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 90 | static void nuc900_nand_read_buf(struct mtd_info *mtd, |
| 91 | unsigned char *buf, int len) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 92 | { |
| 93 | int i; |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 94 | struct nuc900_nand *nand; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 95 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 96 | nand = container_of(mtd, struct nuc900_nand, mtd); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 97 | |
| 98 | for (i = 0; i < len; i++) |
| 99 | buf[i] = (unsigned char)read_data_reg(nand); |
| 100 | } |
| 101 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 102 | static void nuc900_nand_write_buf(struct mtd_info *mtd, |
| 103 | const unsigned char *buf, int len) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 104 | { |
| 105 | int i; |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 106 | struct nuc900_nand *nand; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 107 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 108 | nand = container_of(mtd, struct nuc900_nand, mtd); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 109 | |
| 110 | for (i = 0; i < len; i++) |
| 111 | write_data_reg(nand, buf[i]); |
| 112 | } |
| 113 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 114 | static int nuc900_check_rb(struct nuc900_nand *nand) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 115 | { |
| 116 | unsigned int val; |
| 117 | spin_lock(&nand->lock); |
| 118 | val = __raw_readl(REG_SMISR); |
| 119 | val &= READYBUSY; |
| 120 | spin_unlock(&nand->lock); |
| 121 | |
| 122 | return val; |
| 123 | } |
| 124 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 125 | static int nuc900_nand_devready(struct mtd_info *mtd) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 126 | { |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 127 | struct nuc900_nand *nand; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 128 | int ready; |
| 129 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 130 | nand = container_of(mtd, struct nuc900_nand, mtd); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 131 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 132 | ready = (nuc900_check_rb(nand)) ? 1 : 0; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 133 | return ready; |
| 134 | } |
| 135 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 136 | static void nuc900_nand_command_lp(struct mtd_info *mtd, unsigned int command, |
| 137 | int column, int page_addr) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 138 | { |
| 139 | register struct nand_chip *chip = mtd->priv; |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 140 | struct nuc900_nand *nand; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 141 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 142 | nand = container_of(mtd, struct nuc900_nand, mtd); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 143 | |
| 144 | if (command == NAND_CMD_READOOB) { |
| 145 | column += mtd->writesize; |
| 146 | command = NAND_CMD_READ0; |
| 147 | } |
| 148 | |
| 149 | write_cmd_reg(nand, command & 0xff); |
| 150 | |
| 151 | if (column != -1 || page_addr != -1) { |
| 152 | |
| 153 | if (column != -1) { |
Brian Norris | 3dad234 | 2014-01-29 14:08:12 -0800 | [diff] [blame] | 154 | if (chip->options & NAND_BUSWIDTH_16 && |
| 155 | !nand_opcode_8bits(command)) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 156 | column >>= 1; |
| 157 | write_addr_reg(nand, column); |
| 158 | write_addr_reg(nand, column >> 8 | ENDADDR); |
| 159 | } |
| 160 | if (page_addr != -1) { |
| 161 | write_addr_reg(nand, page_addr); |
| 162 | |
| 163 | if (chip->chipsize > (128 << 20)) { |
| 164 | write_addr_reg(nand, page_addr >> 8); |
| 165 | write_addr_reg(nand, page_addr >> 16 | ENDADDR); |
| 166 | } else { |
| 167 | write_addr_reg(nand, page_addr >> 8 | ENDADDR); |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | switch (command) { |
| 173 | case NAND_CMD_CACHEDPROG: |
| 174 | case NAND_CMD_PAGEPROG: |
| 175 | case NAND_CMD_ERASE1: |
| 176 | case NAND_CMD_ERASE2: |
| 177 | case NAND_CMD_SEQIN: |
| 178 | case NAND_CMD_RNDIN: |
| 179 | case NAND_CMD_STATUS: |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 180 | return; |
| 181 | |
| 182 | case NAND_CMD_RESET: |
| 183 | if (chip->dev_ready) |
| 184 | break; |
| 185 | udelay(chip->chip_delay); |
| 186 | |
| 187 | write_cmd_reg(nand, NAND_CMD_STATUS); |
| 188 | write_cmd_reg(nand, command); |
| 189 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 190 | while (!nuc900_check_rb(nand)) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 191 | ; |
| 192 | |
| 193 | return; |
| 194 | |
| 195 | case NAND_CMD_RNDOUT: |
| 196 | write_cmd_reg(nand, NAND_CMD_RNDOUTSTART); |
| 197 | return; |
| 198 | |
| 199 | case NAND_CMD_READ0: |
| 200 | |
| 201 | write_cmd_reg(nand, NAND_CMD_READSTART); |
| 202 | default: |
| 203 | |
| 204 | if (!chip->dev_ready) { |
| 205 | udelay(chip->chip_delay); |
| 206 | return; |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | /* Apply this short delay always to ensure that we do wait tWB in |
| 211 | * any case on any machine. */ |
| 212 | ndelay(100); |
| 213 | |
| 214 | while (!chip->dev_ready(mtd)) |
| 215 | ; |
| 216 | } |
| 217 | |
| 218 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 219 | static void nuc900_nand_enable(struct nuc900_nand *nand) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 220 | { |
| 221 | unsigned int val; |
| 222 | spin_lock(&nand->lock); |
| 223 | __raw_writel(RESET_FMI, (nand->reg + REG_FMICSR)); |
| 224 | |
| 225 | val = __raw_readl(nand->reg + REG_FMICSR); |
| 226 | |
| 227 | if (!(val & NAND_EN)) |
Dan Carpenter | c69dbbf | 2014-02-17 23:03:08 +0300 | [diff] [blame^] | 228 | __raw_writel(val | NAND_EN, nand->reg + REG_FMICSR); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 229 | |
| 230 | val = __raw_readl(nand->reg + REG_SMCSR); |
| 231 | |
| 232 | val &= ~(SWRST|PSIZE|DMARWEN|BUSWID|ECC4EN|NANDCS); |
| 233 | val |= WP; |
| 234 | |
| 235 | __raw_writel(val, nand->reg + REG_SMCSR); |
| 236 | |
| 237 | spin_unlock(&nand->lock); |
| 238 | } |
| 239 | |
Bill Pemberton | 06f2551 | 2012-11-19 13:23:07 -0500 | [diff] [blame] | 240 | static int nuc900_nand_probe(struct platform_device *pdev) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 241 | { |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 242 | struct nuc900_nand *nuc900_nand; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 243 | struct nand_chip *chip; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 244 | struct resource *res; |
| 245 | |
Jingoo Han | e8009ca | 2013-12-26 10:44:59 +0900 | [diff] [blame] | 246 | nuc900_nand = devm_kzalloc(&pdev->dev, sizeof(struct nuc900_nand), |
| 247 | GFP_KERNEL); |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 248 | if (!nuc900_nand) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 249 | return -ENOMEM; |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 250 | chip = &(nuc900_nand->chip); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 251 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 252 | nuc900_nand->mtd.priv = chip; |
| 253 | nuc900_nand->mtd.owner = THIS_MODULE; |
| 254 | spin_lock_init(&nuc900_nand->lock); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 255 | |
Jingoo Han | e8009ca | 2013-12-26 10:44:59 +0900 | [diff] [blame] | 256 | nuc900_nand->clk = devm_clk_get(&pdev->dev, NULL); |
| 257 | if (IS_ERR(nuc900_nand->clk)) |
| 258 | return -ENOENT; |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 259 | clk_enable(nuc900_nand->clk); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 260 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 261 | chip->cmdfunc = nuc900_nand_command_lp; |
| 262 | chip->dev_ready = nuc900_nand_devready; |
| 263 | chip->read_byte = nuc900_nand_read_byte; |
| 264 | chip->write_buf = nuc900_nand_write_buf; |
| 265 | chip->read_buf = nuc900_nand_read_buf; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 266 | chip->chip_delay = 50; |
| 267 | chip->options = 0; |
| 268 | chip->ecc.mode = NAND_ECC_SOFT; |
| 269 | |
| 270 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Jingoo Han | e8009ca | 2013-12-26 10:44:59 +0900 | [diff] [blame] | 271 | nuc900_nand->reg = devm_ioremap_resource(&pdev->dev, res); |
| 272 | if (IS_ERR(nuc900_nand->reg)) |
| 273 | return PTR_ERR(nuc900_nand->reg); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 274 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 275 | nuc900_nand_enable(nuc900_nand); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 276 | |
Jingoo Han | e8009ca | 2013-12-26 10:44:59 +0900 | [diff] [blame] | 277 | if (nand_scan(&(nuc900_nand->mtd), 1)) |
| 278 | return -ENXIO; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 279 | |
Jamie Iles | ee0e87b | 2011-05-23 10:23:40 +0100 | [diff] [blame] | 280 | mtd_device_register(&(nuc900_nand->mtd), partitions, |
| 281 | ARRAY_SIZE(partitions)); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 282 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 283 | platform_set_drvdata(pdev, nuc900_nand); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 284 | |
Jingoo Han | e8009ca | 2013-12-26 10:44:59 +0900 | [diff] [blame] | 285 | return 0; |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 286 | } |
| 287 | |
Bill Pemberton | 810b7e0 | 2012-11-19 13:26:04 -0500 | [diff] [blame] | 288 | static int nuc900_nand_remove(struct platform_device *pdev) |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 289 | { |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 290 | struct nuc900_nand *nuc900_nand = platform_get_drvdata(pdev); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 291 | |
Axel Lin | 43c6871 | 2011-06-03 09:51:53 +0800 | [diff] [blame] | 292 | nand_release(&nuc900_nand->mtd); |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 293 | clk_disable(nuc900_nand->clk); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 294 | |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 295 | return 0; |
| 296 | } |
| 297 | |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 298 | static struct platform_driver nuc900_nand_driver = { |
| 299 | .probe = nuc900_nand_probe, |
Bill Pemberton | 5153b88 | 2012-11-19 13:21:24 -0500 | [diff] [blame] | 300 | .remove = nuc900_nand_remove, |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 301 | .driver = { |
Wan ZongShun | 49f37b7 | 2010-01-01 18:03:47 +0800 | [diff] [blame] | 302 | .name = "nuc900-fmi", |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 303 | .owner = THIS_MODULE, |
| 304 | }, |
| 305 | }; |
| 306 | |
Axel Lin | f99640d | 2011-11-27 20:45:03 +0800 | [diff] [blame] | 307 | module_platform_driver(nuc900_nand_driver); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 308 | |
| 309 | MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>"); |
David Woodhouse | bb6a7755 | 2010-01-01 12:16:47 +0000 | [diff] [blame] | 310 | MODULE_DESCRIPTION("w90p910/NUC9xx nand driver!"); |
Wan ZongShun | 8bff82c | 2009-07-10 15:17:27 +0800 | [diff] [blame] | 311 | MODULE_LICENSE("GPL"); |
Wan ZongShun | 49f37b7 | 2010-01-01 18:03:47 +0800 | [diff] [blame] | 312 | MODULE_ALIAS("platform:nuc900-fmi"); |