Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/mtd/nand/sharpsl.c |
| 3 | * |
| 4 | * Copyright (C) 2004 Richard Purdie |
| 5 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * 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 Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 23 | #include <linux/platform_device.h> |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/io.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 26 | #include <mach/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <asm/mach-types.h> |
| 28 | |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 29 | struct sharpsl_nand { |
| 30 | struct mtd_info mtd; |
| 31 | struct nand_chip chip; |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 32 | |
| 33 | void __iomem *io; |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 34 | }; |
| 35 | |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 36 | #define mtd_to_sharpsl(_mtd) container_of(_mtd, struct sharpsl_nand, mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | /* register offset */ |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 39 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | * Define partitions for flash device |
| 57 | */ |
| 58 | #define DEFAULT_NUM_PARTITIONS 3 |
| 59 | |
| 60 | static int nr_partitions; |
| 61 | static struct mtd_partition sharpsl_nand_default_partition_info[] = { |
| 62 | { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 63 | .name = "System Area", |
| 64 | .offset = 0, |
| 65 | .size = 7 * 1024 * 1024, |
| 66 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 68 | .name = "Root Filesystem", |
| 69 | .offset = 7 * 1024 * 1024, |
| 70 | .size = 30 * 1024 * 1024, |
| 71 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 73 | .name = "Home Filesystem", |
| 74 | .offset = MTDPART_OFS_APPEND, |
| 75 | .size = MTDPART_SIZ_FULL, |
| 76 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 79 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | * hardware specific access to control-lines |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 81 | * ctrl: |
Richard Purdie | 6a5a297c | 2006-07-15 13:05:24 +0100 | [diff] [blame] | 82 | * NAND_CNE: bit 0 -> ! bit 0 & 4 |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 83 | * NAND_CLE: bit 1 -> bit 1 |
| 84 | * NAND_ALE: bit 2 -> bit 2 |
| 85 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 87 | static void sharpsl_nand_hwcontrol(struct mtd_info *mtd, int cmd, |
| 88 | unsigned int ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 90 | struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 91 | struct nand_chip *chip = mtd->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 93 | if (ctrl & NAND_CTRL_CHANGE) { |
| 94 | unsigned char bits = ctrl & 0x07; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 96 | bits |= (ctrl & 0x01) << 4; |
Richard Purdie | 6a5a297c | 2006-07-15 13:05:24 +0100 | [diff] [blame] | 97 | |
| 98 | bits ^= 0x11; |
| 99 | |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 100 | writeb((readb(sharpsl->io + FLASHCTL) & ~0x17) | bits, sharpsl->io + FLASHCTL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | } |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 102 | |
| 103 | if (cmd != NAND_CMD_NONE) |
| 104 | writeb(cmd, chip->IO_ADDR_W); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; |
| 108 | |
| 109 | static struct nand_bbt_descr sharpsl_bbt = { |
| 110 | .options = 0, |
| 111 | .offs = 4, |
| 112 | .len = 2, |
| 113 | .pattern = scan_ff_pattern |
| 114 | }; |
| 115 | |
Richard Purdie | 87c146d | 2005-11-03 11:36:45 +0000 | [diff] [blame] | 116 | static struct nand_bbt_descr sharpsl_akita_bbt = { |
| 117 | .options = 0, |
| 118 | .offs = 4, |
| 119 | .len = 1, |
| 120 | .pattern = scan_ff_pattern |
| 121 | }; |
| 122 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 123 | static struct nand_ecclayout akita_oobinfo = { |
Richard Purdie | 87c146d | 2005-11-03 11:36:45 +0000 | [diff] [blame] | 124 | .eccbytes = 24, |
| 125 | .eccpos = { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 126 | 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 Purdie | 87c146d | 2005-11-03 11:36:45 +0000 | [diff] [blame] | 130 | }; |
| 131 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 132 | static int sharpsl_nand_dev_ready(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 134 | struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd); |
| 135 | return !((readb(sharpsl->io + FLASHCTL) & FLRYBY) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 138 | static void sharpsl_nand_enable_hwecc(struct mtd_info *mtd, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 140 | struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd); |
| 141 | writeb(0, sharpsl->io + ECCCLRR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 144 | static int sharpsl_nand_calculate_ecc(struct mtd_info *mtd, const u_char * dat, u_char * ecc_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 146 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | #ifdef CONFIG_MTD_PARTITIONS |
| 154 | const char *part_probes[] = { "cmdlinepart", NULL }; |
| 155 | #endif |
| 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | /* |
| 158 | * Main initialization routine |
| 159 | */ |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 160 | static int __devinit sharpsl_nand_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
| 162 | struct nand_chip *this; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 163 | struct mtd_partition *sharpsl_partition_info; |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 164 | struct resource *r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | int err = 0; |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 166 | struct sharpsl_nand *sharpsl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | /* Allocate memory for MTD device structure and private data */ |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 169 | sharpsl = kzalloc(sizeof(struct sharpsl_nand), GFP_KERNEL); |
| 170 | if (!sharpsl) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 171 | printk("Unable to allocate SharpSL NAND MTD device structure.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return -ENOMEM; |
| 173 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 174 | |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 175 | 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 Perches | 8e87d78 | 2008-02-03 17:22:34 +0200 | [diff] [blame] | 182 | /* map physical address */ |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 183 | sharpsl->io = ioremap(r->start, resource_size(r)); |
| 184 | if (!sharpsl->io) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | printk("ioremap to access Sharp SL NAND chip failed\n"); |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 186 | err = -EIO; |
| 187 | goto err_ioremap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | /* Get pointer to private data */ |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 191 | this = (struct nand_chip *)(&sharpsl->chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
| 193 | /* Link the private data with the MTD structure */ |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 194 | sharpsl->mtd.priv = this; |
| 195 | sharpsl->mtd.owner = THIS_MODULE; |
| 196 | |
| 197 | platform_set_drvdata(pdev, sharpsl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | /* |
| 200 | * PXA initialize |
| 201 | */ |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 202 | writeb(readb(sharpsl->io + FLASHCTL) | FLWP, sharpsl->io + FLASHCTL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | /* Set address of NAND IO lines */ |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 205 | this->IO_ADDR_R = sharpsl->io + FLASHIO; |
| 206 | this->IO_ADDR_W = sharpsl->io + FLASHIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* Set address of hardware control function */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 208 | this->cmd_ctrl = sharpsl_nand_hwcontrol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | 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 Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 213 | this->ecc.mode = NAND_ECC_HW; |
| 214 | this->ecc.size = 256; |
| 215 | this->ecc.bytes = 3; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 216 | this->badblock_pattern = &sharpsl_bbt; |
Richard Purdie | 87c146d | 2005-11-03 11:36:45 +0000 | [diff] [blame] | 217 | if (machine_is_akita() || machine_is_borzoi()) { |
| 218 | this->badblock_pattern = &sharpsl_akita_bbt; |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 219 | this->ecc.layout = &akita_oobinfo; |
Richard Purdie | 87c146d | 2005-11-03 11:36:45 +0000 | [diff] [blame] | 220 | } |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 221 | this->ecc.hwctl = sharpsl_nand_enable_hwecc; |
| 222 | this->ecc.calculate = sharpsl_nand_calculate_ecc; |
| 223 | this->ecc.correct = nand_correct_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | /* Scan to find existence of the device */ |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 226 | err = nand_scan(&sharpsl->mtd, 1); |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 227 | if (err) |
| 228 | goto err_scan; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
| 230 | /* Register the partitions */ |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 231 | sharpsl->mtd.name = "sharpsl-nand"; |
| 232 | nr_partitions = parse_mtd_partitions(&sharpsl->mtd, part_probes, &sharpsl_partition_info, 0); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | 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 Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 238 | sharpsl_partition_info[1].size = 22 * 1024 * 1024; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } else if (machine_is_corgi() || machine_is_shepherd()) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 240 | sharpsl_partition_info[1].size = 25 * 1024 * 1024; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } else if (machine_is_husky()) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 242 | sharpsl_partition_info[1].size = 53 * 1024 * 1024; |
Richard Purdie | 62052d4 | 2005-09-16 19:27:31 -0700 | [diff] [blame] | 243 | } else if (machine_is_spitz()) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 244 | sharpsl_partition_info[1].size = 5 * 1024 * 1024; |
Richard Purdie | 62052d4 | 2005-09-16 19:27:31 -0700 | [diff] [blame] | 245 | } else if (machine_is_akita()) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 246 | sharpsl_partition_info[1].size = 58 * 1024 * 1024; |
Richard Purdie | 62052d4 | 2005-09-16 19:27:31 -0700 | [diff] [blame] | 247 | } else if (machine_is_borzoi()) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 248 | sharpsl_partition_info[1].size = 32 * 1024 * 1024; |
Richard Purdie | 62052d4 | 2005-09-16 19:27:31 -0700 | [diff] [blame] | 249 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 252 | add_mtd_partitions(&sharpsl->mtd, sharpsl_partition_info, nr_partitions); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | /* Return happy */ |
| 255 | return 0; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 256 | |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 257 | err_scan: |
| 258 | platform_set_drvdata(pdev, NULL); |
| 259 | iounmap(sharpsl->io); |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 260 | err_ioremap: |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 261 | err_get_res: |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 262 | kfree(sharpsl); |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 263 | return err; |
| 264 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * Clean up routine |
| 268 | */ |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 269 | static int __devexit sharpsl_nand_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 271 | struct sharpsl_nand *sharpsl = platform_get_drvdata(pdev); |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | /* Release resources, unregister device */ |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 274 | nand_release(&sharpsl->mtd); |
| 275 | |
| 276 | platform_set_drvdata(pdev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
Dmitry Baryshkov | a4e4f29 | 2008-10-16 17:58:18 +0400 | [diff] [blame^] | 278 | iounmap(sharpsl->io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
| 280 | /* Free the MTD device structure */ |
Dmitry Baryshkov | 2206ef1 | 2008-10-16 17:49:06 +0400 | [diff] [blame] | 281 | kfree(sharpsl); |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 282 | |
| 283 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 285 | |
Dmitry Baryshkov | 2661524 | 2008-10-16 12:08:14 +0400 | [diff] [blame] | 286 | static 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 | |
| 295 | static struct resource sharpsl_nand_resources[] = { |
| 296 | { |
| 297 | .start = 0x0C000000, |
| 298 | .end = 0x0C000FFF, |
| 299 | .flags = IORESOURCE_MEM, |
| 300 | }, |
| 301 | }; |
| 302 | |
| 303 | static 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 | |
| 310 | static int __init sharpsl_nand_init(void) |
| 311 | { |
| 312 | platform_device_register(&sharpsl_nand_device); |
| 313 | return platform_driver_register(&sharpsl_nand_driver); |
| 314 | } |
| 315 | module_init(sharpsl_nand_init); |
| 316 | |
| 317 | static void __exit sharpsl_nand_exit(void) |
| 318 | { |
| 319 | platform_driver_unregister(&sharpsl_nand_driver); |
| 320 | platform_device_unregister(&sharpsl_nand_device); |
| 321 | } |
| 322 | module_exit(sharpsl_nand_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
| 324 | MODULE_LICENSE("GPL"); |
| 325 | MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>"); |
| 326 | MODULE_DESCRIPTION("Device specific logic for NAND flash on Sharp SL-C7xx Series"); |