blob: 328e02ee3d8e44f0c4e7ae49bc4671b83e41f388 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand/sharpsl.c
3 *
4 * Copyright (C) 2004 Richard Purdie
5 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Based on Sharp's NAND driver sharp_sl.c
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 version 2 as
10 * published by the Free Software Foundation.
11 *
12 */
13
14#include <linux/genhd.h>
15#include <linux/slab.h>
16#include <linux/module.h>
17#include <linux/delay.h>
18#include <linux/mtd/mtd.h>
19#include <linux/mtd/nand.h>
20#include <linux/mtd/nand_ecc.h>
21#include <linux/mtd/partitions.h>
22#include <linux/interrupt.h>
Dmitry Baryshkov26615242008-10-16 12:08:14 +040023#include <linux/platform_device.h>
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/io.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/mach-types.h>
28
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +040029struct sharpsl_nand {
30 struct mtd_info mtd;
31 struct nand_chip chip;
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040032
33 void __iomem *io;
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +040034};
35
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040036#define mtd_to_sharpsl(_mtd) container_of(_mtd, struct sharpsl_nand, mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* register offset */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040039#define ECCLPLB 0x00 /* line parity 7 - 0 bit */
40#define ECCLPUB 0x04 /* line parity 15 - 8 bit */
41#define ECCCP 0x08 /* column parity 5 - 0 bit */
42#define ECCCNTR 0x0C /* ECC byte counter */
43#define ECCCLRR 0x10 /* cleare ECC */
44#define FLASHIO 0x14 /* Flash I/O */
45#define FLASHCTL 0x18 /* Flash Control */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/* Flash control bit */
48#define FLRYBY (1 << 5)
49#define FLCE1 (1 << 4)
50#define FLWP (1 << 3)
51#define FLALE (1 << 2)
52#define FLCLE (1 << 1)
53#define FLCE0 (1 << 0)
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * Define partitions for flash device
57 */
58#define DEFAULT_NUM_PARTITIONS 3
59
60static int nr_partitions;
61static struct mtd_partition sharpsl_nand_default_partition_info[] = {
62 {
David Woodhousee0c7d762006-05-13 18:07:53 +010063 .name = "System Area",
64 .offset = 0,
65 .size = 7 * 1024 * 1024,
66 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 {
David Woodhousee0c7d762006-05-13 18:07:53 +010068 .name = "Root Filesystem",
69 .offset = 7 * 1024 * 1024,
70 .size = 30 * 1024 * 1024,
71 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 {
David Woodhousee0c7d762006-05-13 18:07:53 +010073 .name = "Home Filesystem",
74 .offset = MTDPART_OFS_APPEND,
75 .size = MTDPART_SIZ_FULL,
76 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000079/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * hardware specific access to control-lines
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020081 * ctrl:
Richard Purdie6a5a297c2006-07-15 13:05:24 +010082 * NAND_CNE: bit 0 -> ! bit 0 & 4
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020083 * NAND_CLE: bit 1 -> bit 1
84 * NAND_ALE: bit 2 -> bit 2
85 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020087static void sharpsl_nand_hwcontrol(struct mtd_info *mtd, int cmd,
88 unsigned int ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040090 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020091 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020093 if (ctrl & NAND_CTRL_CHANGE) {
94 unsigned char bits = ctrl & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020096 bits |= (ctrl & 0x01) << 4;
Richard Purdie6a5a297c2006-07-15 13:05:24 +010097
98 bits ^= 0x11;
99
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400100 writeb((readb(sharpsl->io + FLASHCTL) & ~0x17) | bits, sharpsl->io + FLASHCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200102
103 if (cmd != NAND_CMD_NONE)
104 writeb(cmd, chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
108
109static struct nand_bbt_descr sharpsl_bbt = {
110 .options = 0,
111 .offs = 4,
112 .len = 2,
113 .pattern = scan_ff_pattern
114};
115
Richard Purdie87c146d2005-11-03 11:36:45 +0000116static struct nand_bbt_descr sharpsl_akita_bbt = {
117 .options = 0,
118 .offs = 4,
119 .len = 1,
120 .pattern = scan_ff_pattern
121};
122
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200123static struct nand_ecclayout akita_oobinfo = {
Richard Purdie87c146d2005-11-03 11:36:45 +0000124 .eccbytes = 24,
125 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +0100126 0x5, 0x1, 0x2, 0x3, 0x6, 0x7, 0x15, 0x11,
127 0x12, 0x13, 0x16, 0x17, 0x25, 0x21, 0x22, 0x23,
128 0x26, 0x27, 0x35, 0x31, 0x32, 0x33, 0x36, 0x37},
129 .oobfree = {{0x08, 0x09}}
Richard Purdie87c146d2005-11-03 11:36:45 +0000130};
131
David Woodhousee0c7d762006-05-13 18:07:53 +0100132static int sharpsl_nand_dev_ready(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400134 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
135 return !((readb(sharpsl->io + FLASHCTL) & FLRYBY) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
David Woodhousee0c7d762006-05-13 18:07:53 +0100138static void sharpsl_nand_enable_hwecc(struct mtd_info *mtd, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400140 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
141 writeb(0, sharpsl->io + ECCCLRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
David Woodhousee0c7d762006-05-13 18:07:53 +0100144static int sharpsl_nand_calculate_ecc(struct mtd_info *mtd, const u_char * dat, u_char * ecc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400146 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
147 ecc_code[0] = ~readb(sharpsl->io + ECCLPUB);
148 ecc_code[1] = ~readb(sharpsl->io + ECCLPLB);
149 ecc_code[2] = (~readb(sharpsl->io + ECCCP) << 2) | 0x03;
150 return readb(sharpsl->io + ECCCNTR) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#ifdef CONFIG_MTD_PARTITIONS
154const char *part_probes[] = { "cmdlinepart", NULL };
155#endif
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
158 * Main initialization routine
159 */
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400160static int __devinit sharpsl_nand_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct nand_chip *this;
David Woodhousee0c7d762006-05-13 18:07:53 +0100163 struct mtd_partition *sharpsl_partition_info;
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400164 struct resource *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int err = 0;
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400166 struct sharpsl_nand *sharpsl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* Allocate memory for MTD device structure and private data */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400169 sharpsl = kzalloc(sizeof(struct sharpsl_nand), GFP_KERNEL);
170 if (!sharpsl) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100171 printk("Unable to allocate SharpSL NAND MTD device structure.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return -ENOMEM;
173 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000174
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400175 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
176 if (!r) {
177 dev_err(&pdev->dev, "no io memory resource defined!\n");
178 err = -ENODEV;
179 goto err_get_res;
180 }
181
Joe Perches8e87d782008-02-03 17:22:34 +0200182 /* map physical address */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400183 sharpsl->io = ioremap(r->start, resource_size(r));
184 if (!sharpsl->io) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 printk("ioremap to access Sharp SL NAND chip failed\n");
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400186 err = -EIO;
187 goto err_ioremap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 /* Get pointer to private data */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400191 this = (struct nand_chip *)(&sharpsl->chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 /* Link the private data with the MTD structure */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400194 sharpsl->mtd.priv = this;
195 sharpsl->mtd.owner = THIS_MODULE;
196
197 platform_set_drvdata(pdev, sharpsl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
200 * PXA initialize
201 */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400202 writeb(readb(sharpsl->io + FLASHCTL) | FLWP, sharpsl->io + FLASHCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 /* Set address of NAND IO lines */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400205 this->IO_ADDR_R = sharpsl->io + FLASHIO;
206 this->IO_ADDR_W = sharpsl->io + FLASHIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* Set address of hardware control function */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200208 this->cmd_ctrl = sharpsl_nand_hwcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 this->dev_ready = sharpsl_nand_dev_ready;
210 /* 15 us command delay time */
211 this->chip_delay = 15;
212 /* set eccmode using hardware ECC */
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200213 this->ecc.mode = NAND_ECC_HW;
214 this->ecc.size = 256;
215 this->ecc.bytes = 3;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000216 this->badblock_pattern = &sharpsl_bbt;
Richard Purdie87c146d2005-11-03 11:36:45 +0000217 if (machine_is_akita() || machine_is_borzoi()) {
218 this->badblock_pattern = &sharpsl_akita_bbt;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200219 this->ecc.layout = &akita_oobinfo;
Richard Purdie87c146d2005-11-03 11:36:45 +0000220 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200221 this->ecc.hwctl = sharpsl_nand_enable_hwecc;
222 this->ecc.calculate = sharpsl_nand_calculate_ecc;
223 this->ecc.correct = nand_correct_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* Scan to find existence of the device */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400226 err = nand_scan(&sharpsl->mtd, 1);
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400227 if (err)
228 goto err_scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /* Register the partitions */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400231 sharpsl->mtd.name = "sharpsl-nand";
232 nr_partitions = parse_mtd_partitions(&sharpsl->mtd, part_probes, &sharpsl_partition_info, 0);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (nr_partitions <= 0) {
235 nr_partitions = DEFAULT_NUM_PARTITIONS;
236 sharpsl_partition_info = sharpsl_nand_default_partition_info;
237 if (machine_is_poodle()) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100238 sharpsl_partition_info[1].size = 22 * 1024 * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 } else if (machine_is_corgi() || machine_is_shepherd()) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100240 sharpsl_partition_info[1].size = 25 * 1024 * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 } else if (machine_is_husky()) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100242 sharpsl_partition_info[1].size = 53 * 1024 * 1024;
Richard Purdie62052d42005-09-16 19:27:31 -0700243 } else if (machine_is_spitz()) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100244 sharpsl_partition_info[1].size = 5 * 1024 * 1024;
Richard Purdie62052d42005-09-16 19:27:31 -0700245 } else if (machine_is_akita()) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100246 sharpsl_partition_info[1].size = 58 * 1024 * 1024;
Richard Purdie62052d42005-09-16 19:27:31 -0700247 } else if (machine_is_borzoi()) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100248 sharpsl_partition_info[1].size = 32 * 1024 * 1024;
Richard Purdie62052d42005-09-16 19:27:31 -0700249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400252 add_mtd_partitions(&sharpsl->mtd, sharpsl_partition_info, nr_partitions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 /* Return happy */
255 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +0100256
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400257err_scan:
258 platform_set_drvdata(pdev, NULL);
259 iounmap(sharpsl->io);
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400260err_ioremap:
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400261err_get_res:
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400262 kfree(sharpsl);
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400263 return err;
264}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/*
267 * Clean up routine
268 */
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400269static int __devexit sharpsl_nand_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400271 struct sharpsl_nand *sharpsl = platform_get_drvdata(pdev);
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* Release resources, unregister device */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400274 nand_release(&sharpsl->mtd);
275
276 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400278 iounmap(sharpsl->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* Free the MTD device structure */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400281 kfree(sharpsl);
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400282
283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
David Woodhousee0c7d762006-05-13 18:07:53 +0100285
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400286static struct platform_driver sharpsl_nand_driver = {
287 .driver = {
288 .name = "sharpsl-nand",
289 .owner = THIS_MODULE,
290 },
291 .probe = sharpsl_nand_probe,
292 .remove = __devexit_p(sharpsl_nand_remove),
293};
294
295static struct resource sharpsl_nand_resources[] = {
296 {
297 .start = 0x0C000000,
298 .end = 0x0C000FFF,
299 .flags = IORESOURCE_MEM,
300 },
301};
302
303static struct platform_device sharpsl_nand_device = {
304 .name = "sharpsl-nand",
305 .id = -1,
306 .resource = sharpsl_nand_resources,
307 .num_resources = ARRAY_SIZE(sharpsl_nand_resources),
308};
309
310static int __init sharpsl_nand_init(void)
311{
312 platform_device_register(&sharpsl_nand_device);
313 return platform_driver_register(&sharpsl_nand_driver);
314}
315module_init(sharpsl_nand_init);
316
317static void __exit sharpsl_nand_exit(void)
318{
319 platform_driver_unregister(&sharpsl_nand_driver);
320 platform_device_unregister(&sharpsl_nand_device);
321}
322module_exit(sharpsl_nand_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324MODULE_LICENSE("GPL");
325MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>");
326MODULE_DESCRIPTION("Device specific logic for NAND flash on Sharp SL-C7xx Series");