| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  drivers/mtd/autcpu12.c | 
|  | 3 | * | 
|  | 4 | *  Copyright (c) 2002 Thomas Gleixner <tgxl@linutronix.de> | 
|  | 5 | * | 
|  | 6 | *  Derived from drivers/mtd/spia.c | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 7 | *	 Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com) | 
| Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 8 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * This program is free software; you can redistribute it and/or modify | 
|  | 10 | * it under the terms of the GNU General Public License version 2 as | 
|  | 11 | * published by the Free Software Foundation. | 
|  | 12 | * | 
|  | 13 | *  Overview: | 
|  | 14 | *   This is a device driver for the NAND flash device found on the | 
| Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 15 | *   autronix autcpu12 board, which is a SmartMediaCard. It supports | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | *   16MiB, 32MiB and 64MiB cards. | 
|  | 17 | * | 
|  | 18 | * | 
|  | 19 | *	02-12-2002 TG	Cleanup of module params | 
|  | 20 | * | 
| Joe Perches | 8e87d78 | 2008-02-03 17:22:34 +0200 | [diff] [blame] | 21 | *	02-20-2002 TG	adjusted for different rd/wr address support | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | *			added support for read device ready/busy line | 
|  | 23 | *			added page_cache | 
|  | 24 | * | 
|  | 25 | *	10-06-2002 TG	128K card support added | 
|  | 26 | */ | 
|  | 27 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/slab.h> | 
|  | 29 | #include <linux/init.h> | 
|  | 30 | #include <linux/module.h> | 
|  | 31 | #include <linux/mtd/mtd.h> | 
|  | 32 | #include <linux/mtd/nand.h> | 
|  | 33 | #include <linux/mtd/partitions.h> | 
|  | 34 | #include <asm/io.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 35 | #include <mach/hardware.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/sizes.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 37 | #include <mach/autcpu12.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 |  | 
|  | 39 | /* | 
|  | 40 | * MTD structure for AUTCPU12 board | 
|  | 41 | */ | 
|  | 42 | static struct mtd_info *autcpu12_mtd = NULL; | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 43 | static void __iomem *autcpu12_fio_base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 |  | 
|  | 45 | /* | 
|  | 46 | * Define partitions for flash devices | 
|  | 47 | */ | 
|  | 48 | static struct mtd_partition partition_info16k[] = { | 
|  | 49 | { .name		= "AUTCPU12 flash partition 1", | 
|  | 50 | .offset	= 0, | 
|  | 51 | .size		= 8 * SZ_1M }, | 
|  | 52 | { .name		= "AUTCPU12 flash partition 2", | 
|  | 53 | .offset	= 8 * SZ_1M, | 
|  | 54 | .size		= 8 * SZ_1M }, | 
|  | 55 | }; | 
|  | 56 |  | 
|  | 57 | static struct mtd_partition partition_info32k[] = { | 
|  | 58 | { .name		= "AUTCPU12 flash partition 1", | 
|  | 59 | .offset	= 0, | 
|  | 60 | .size		= 8 * SZ_1M }, | 
|  | 61 | { .name		= "AUTCPU12 flash partition 2", | 
|  | 62 | .offset	= 8 * SZ_1M, | 
|  | 63 | .size		= 24 * SZ_1M }, | 
|  | 64 | }; | 
|  | 65 |  | 
|  | 66 | static struct mtd_partition partition_info64k[] = { | 
|  | 67 | { .name		= "AUTCPU12 flash partition 1", | 
|  | 68 | .offset	= 0, | 
|  | 69 | .size		= 16 * SZ_1M }, | 
|  | 70 | { .name		= "AUTCPU12 flash partition 2", | 
|  | 71 | .offset	= 16 * SZ_1M, | 
|  | 72 | .size		= 48 * SZ_1M }, | 
|  | 73 | }; | 
|  | 74 |  | 
|  | 75 | static struct mtd_partition partition_info128k[] = { | 
|  | 76 | { .name		= "AUTCPU12 flash partition 1", | 
|  | 77 | .offset	= 0, | 
|  | 78 | .size		= 16 * SZ_1M }, | 
|  | 79 | { .name		= "AUTCPU12 flash partition 2", | 
|  | 80 | .offset	= 16 * SZ_1M, | 
|  | 81 | .size		= 112 * SZ_1M }, | 
|  | 82 | }; | 
|  | 83 |  | 
|  | 84 | #define NUM_PARTITIONS16K 2 | 
|  | 85 | #define NUM_PARTITIONS32K 2 | 
|  | 86 | #define NUM_PARTITIONS64K 2 | 
|  | 87 | #define NUM_PARTITIONS128K 2 | 
| Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 88 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | *	hardware specific access to control-lines | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 90 | * | 
|  | 91 | *	ALE bit 4 autcpu12_pedr | 
|  | 92 | *	CLE bit 5 autcpu12_pedr | 
|  | 93 | *	NCE bit 0 fio_ctrl | 
|  | 94 | * | 
|  | 95 | */ | 
|  | 96 | static void autcpu12_hwcontrol(struct mtd_info *mtd, int cmd, | 
|  | 97 | unsigned int ctrl) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 99 | struct nand_chip *chip = mtd->priv; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 |  | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 101 | if (ctrl & NAND_CTRL_CHANGE) { | 
| Yoann Padioleau | 632155e | 2007-06-01 00:46:35 -0700 | [diff] [blame] | 102 | void __iomem *addr; | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 103 | unsigned char bits; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 |  | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 105 | addr = CS89712_VIRT_BASE + AUTCPU12_SMC_PORT_OFFSET; | 
|  | 106 | bits = (ctrl & NAND_CLE) << 4; | 
|  | 107 | bits |= (ctrl & NAND_ALE) << 2; | 
|  | 108 | writeb((readb(addr) & ~0x30) | bits, addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 |  | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 110 | addr = autcpu12_fio_base + AUTCPU12_SMC_SELECT_OFFSET; | 
|  | 111 | writeb((readb(addr) & ~0x1) | (ctrl & NAND_NCE), addr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 113 |  | 
|  | 114 | if (cmd != NAND_CMD_NONE) | 
|  | 115 | writeb(cmd, chip->IO_ADDR_W); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } | 
|  | 117 |  | 
|  | 118 | /* | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 119 | *	read device ready pin | 
|  | 120 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | int autcpu12_device_ready(struct mtd_info *mtd) | 
|  | 122 | { | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 123 | void __iomem *addr = CS89712_VIRT_BASE + AUTCPU12_SMC_PORT_OFFSET; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 |  | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 125 | return readb(addr) & AUTCPU12_SMC_RDY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } | 
|  | 127 |  | 
|  | 128 | /* | 
|  | 129 | * Main initialization routine | 
|  | 130 | */ | 
| David Woodhouse | cead4db | 2006-05-16 13:54:50 +0100 | [diff] [blame] | 131 | static int __init autcpu12_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { | 
|  | 133 | struct nand_chip *this; | 
|  | 134 | int err = 0; | 
|  | 135 |  | 
|  | 136 | /* Allocate memory for MTD device structure and private data */ | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 137 | autcpu12_mtd = kmalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip), | 
|  | 138 | GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | if (!autcpu12_mtd) { | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 140 | printk("Unable to allocate AUTCPU12 NAND MTD device structure.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | err = -ENOMEM; | 
|  | 142 | goto out; | 
|  | 143 | } | 
|  | 144 |  | 
| Joe Perches | 8e87d78 | 2008-02-03 17:22:34 +0200 | [diff] [blame] | 145 | /* map physical address */ | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 146 | autcpu12_fio_base = ioremap(AUTCPU12_PHYS_SMC, SZ_1K); | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 147 | if (!autcpu12_fio_base) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | printk("Ioremap autcpu12 SmartMedia Card failed\n"); | 
|  | 149 | err = -EIO; | 
|  | 150 | goto out_mtd; | 
|  | 151 | } | 
|  | 152 |  | 
|  | 153 | /* Get pointer to private data */ | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 154 | this = (struct nand_chip *)(&autcpu12_mtd[1]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 |  | 
|  | 156 | /* Initialize structures */ | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 157 | memset(autcpu12_mtd, 0, sizeof(struct mtd_info)); | 
|  | 158 | memset(this, 0, sizeof(struct nand_chip)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 |  | 
|  | 160 | /* Link the private data with the MTD structure */ | 
|  | 161 | autcpu12_mtd->priv = this; | 
| David Woodhouse | 552d920 | 2006-05-14 01:20:46 +0100 | [diff] [blame] | 162 | autcpu12_mtd->owner = THIS_MODULE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 |  | 
|  | 164 | /* Set address of NAND IO lines */ | 
|  | 165 | this->IO_ADDR_R = autcpu12_fio_base; | 
|  | 166 | this->IO_ADDR_W = autcpu12_fio_base; | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 167 | this->cmd_ctrl = autcpu12_hwcontrol; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | this->dev_ready = autcpu12_device_ready; | 
|  | 169 | /* 20 us command delay time */ | 
| Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 170 | this->chip_delay = 20; | 
| Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 171 | this->ecc.mode = NAND_ECC_SOFT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 |  | 
|  | 173 | /* Enable the following for a flash based bad block table */ | 
|  | 174 | /* | 
| Brian Norris | bb9ebd4 | 2011-05-31 16:31:23 -0700 | [diff] [blame] | 175 | this->bbt_options = NAND_BBT_USE_FLASH; | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 176 | */ | 
| Brian Norris | bb9ebd4 | 2011-05-31 16:31:23 -0700 | [diff] [blame] | 177 | this->bbt_options = NAND_BBT_USE_FLASH; | 
| Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 178 |  | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 179 | /* Scan to find existence of the device */ | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 180 | if (nand_scan(autcpu12_mtd, 1)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | err = -ENXIO; | 
|  | 182 | goto out_ior; | 
|  | 183 | } | 
| Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 184 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | /* Register the partitions */ | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 186 | switch (autcpu12_mtd->size) { | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 187 | case SZ_16M: | 
| Jamie Iles | ee0e87b | 2011-05-23 10:23:40 +0100 | [diff] [blame] | 188 | mtd_device_register(autcpu12_mtd, partition_info16k, | 
|  | 189 | NUM_PARTITIONS16K); | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 190 | break; | 
|  | 191 | case SZ_32M: | 
| Jamie Iles | ee0e87b | 2011-05-23 10:23:40 +0100 | [diff] [blame] | 192 | mtd_device_register(autcpu12_mtd, partition_info32k, | 
|  | 193 | NUM_PARTITIONS32K); | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 194 | break; | 
|  | 195 | case SZ_64M: | 
| Jamie Iles | ee0e87b | 2011-05-23 10:23:40 +0100 | [diff] [blame] | 196 | mtd_device_register(autcpu12_mtd, partition_info64k, | 
|  | 197 | NUM_PARTITIONS64K); | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 198 | break; | 
|  | 199 | case SZ_128M: | 
| Jamie Iles | ee0e87b | 2011-05-23 10:23:40 +0100 | [diff] [blame] | 200 | mtd_device_register(autcpu12_mtd, partition_info128k, | 
|  | 201 | NUM_PARTITIONS128K); | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 202 | break; | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 203 | default: | 
|  | 204 | printk("Unsupported SmartMedia device\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | err = -ENXIO; | 
|  | 206 | goto out_ior; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } | 
|  | 208 | goto out; | 
|  | 209 |  | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 210 | out_ior: | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 211 | iounmap(autcpu12_fio_base); | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 212 | out_mtd: | 
|  | 213 | kfree(autcpu12_mtd); | 
|  | 214 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | return err; | 
|  | 216 | } | 
|  | 217 |  | 
|  | 218 | module_init(autcpu12_init); | 
|  | 219 |  | 
|  | 220 | /* | 
|  | 221 | * Clean up routine | 
|  | 222 | */ | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 223 | static void __exit autcpu12_cleanup(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { | 
|  | 225 | /* Release resources, unregister device */ | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 226 | nand_release(autcpu12_mtd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 |  | 
| Joe Perches | 8e87d78 | 2008-02-03 17:22:34 +0200 | [diff] [blame] | 228 | /* unmap physical address */ | 
| Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 229 | iounmap(autcpu12_fio_base); | 
| Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 230 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | /* Free the MTD device structure */ | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 232 | kfree(autcpu12_mtd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } | 
| David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 234 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | module_exit(autcpu12_cleanup); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 |  | 
|  | 237 | MODULE_LICENSE("GPL"); | 
|  | 238 | MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>"); | 
|  | 239 | MODULE_DESCRIPTION("Glue layer for SmartMediaCard on autronix autcpu12"); |