Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/mtd/nand/h1910.c |
| 3 | * |
| 4 | * Copyright (C) 2003 Joshua Wise (joshua@joshuawise.com) |
| 5 | * |
| 6 | * Derived from drivers/mtd/nand/edb7312.c |
David Woodhouse | 151e765 | 2006-05-14 01:51:54 +0100 | [diff] [blame^] | 7 | * Copyright (C) 2002 Marius Gröger (mag@sysgo.de) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Copyright (c) 2001 Thomas Gleixner (gleixner@autronix.de) |
| 9 | * |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 10 | * $Id: h1910.c,v 1.6 2005/11/07 11:14:30 gleixner Exp $ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License version 2 as |
| 14 | * published by the Free Software Foundation. |
| 15 | * |
| 16 | * Overview: |
| 17 | * This is a device driver for the NAND flash device found on the |
| 18 | * iPAQ h1910 board which utilizes the Samsung K9F2808 part. This is |
| 19 | * a 128Mibit (16MiB x 8 bits) NAND flash device. |
| 20 | */ |
| 21 | |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/mtd/mtd.h> |
| 26 | #include <linux/mtd/nand.h> |
| 27 | #include <linux/mtd/partitions.h> |
| 28 | #include <asm/io.h> |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 29 | #include <asm/arch/hardware.h> /* for CLPS7111_VIRT_BASE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/sizes.h> |
| 31 | #include <asm/arch/h1900-gpio.h> |
| 32 | #include <asm/arch/ipaq.h> |
| 33 | |
| 34 | /* |
| 35 | * MTD structure for EDB7312 board |
| 36 | */ |
| 37 | static struct mtd_info *h1910_nand_mtd = NULL; |
| 38 | |
| 39 | /* |
| 40 | * Module stuff |
| 41 | */ |
| 42 | |
| 43 | #ifdef CONFIG_MTD_PARTITIONS |
| 44 | /* |
| 45 | * Define static partitions for flash device |
| 46 | */ |
| 47 | static struct mtd_partition partition_info[] = { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 48 | {name:"h1910 NAND Flash", |
| 49 | offset:0, |
| 50 | size:16 * 1024 * 1024} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | }; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define NUM_PARTITIONS 1 |
| 54 | |
| 55 | #endif |
| 56 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 57 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * hardware specific access to control-lines |
| 59 | */ |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 60 | static void h1910_hwcontrol(struct mtd_info *mtd, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 62 | struct nand_chip *this = (struct nand_chip *)(mtd->priv); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 63 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 64 | switch (cmd) { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 65 | |
| 66 | case NAND_CTL_SETCLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | this->IO_ADDR_R |= (1 << 2); |
| 68 | this->IO_ADDR_W |= (1 << 2); |
| 69 | break; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 70 | case NAND_CTL_CLRCLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | this->IO_ADDR_R &= ~(1 << 2); |
| 72 | this->IO_ADDR_W &= ~(1 << 2); |
| 73 | break; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | case NAND_CTL_SETALE: |
| 76 | this->IO_ADDR_R |= (1 << 3); |
| 77 | this->IO_ADDR_W |= (1 << 3); |
| 78 | break; |
| 79 | case NAND_CTL_CLRALE: |
| 80 | this->IO_ADDR_R &= ~(1 << 3); |
| 81 | this->IO_ADDR_W &= ~(1 << 3); |
| 82 | break; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | case NAND_CTL_SETNCE: |
| 85 | break; |
| 86 | case NAND_CTL_CLRNCE: |
| 87 | break; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | * read device ready pin |
| 93 | */ |
| 94 | #if 0 |
| 95 | static int h1910_device_ready(struct mtd_info *mtd) |
| 96 | { |
| 97 | return (GPLR(55) & GPIO_bit(55)); |
| 98 | } |
| 99 | #endif |
| 100 | |
| 101 | /* |
| 102 | * Main initialization routine |
| 103 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 104 | static int __init h1910_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
| 106 | struct nand_chip *this; |
| 107 | const char *part_type = 0; |
| 108 | int mtd_parts_nb = 0; |
| 109 | struct mtd_partition *mtd_parts = 0; |
| 110 | void __iomem *nandaddr; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | if (!machine_is_h1900()) |
| 113 | return -ENODEV; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 114 | |
Russell King | 0c2e4b4 | 2005-11-17 16:46:41 +0000 | [diff] [blame] | 115 | nandaddr = ioremap(0x08000000, 0x1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | if (!nandaddr) { |
| 117 | printk("Failed to ioremap nand flash.\n"); |
| 118 | return -ENOMEM; |
| 119 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | /* Allocate memory for MTD device structure and private data */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 122 | h1910_nand_mtd = kmalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | if (!h1910_nand_mtd) { |
| 124 | printk("Unable to allocate h1910 NAND MTD device structure.\n"); |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 125 | iounmap((void *)nandaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | return -ENOMEM; |
| 127 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | /* Get pointer to private data */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 130 | this = (struct nand_chip *)(&h1910_nand_mtd[1]); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* Initialize structures */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 133 | memset(h1910_nand_mtd, 0, sizeof(struct mtd_info)); |
| 134 | memset(this, 0, sizeof(struct nand_chip)); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | /* Link the private data with the MTD structure */ |
| 137 | h1910_nand_mtd->priv = this; |
David Woodhouse | 552d920 | 2006-05-14 01:20:46 +0100 | [diff] [blame] | 138 | h1910_nand_mtd->owner = THIS_MODULE; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* |
| 141 | * Enable VPEN |
| 142 | */ |
| 143 | GPSR(37) = GPIO_bit(37); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | /* insert callbacks */ |
| 146 | this->IO_ADDR_R = nandaddr; |
| 147 | this->IO_ADDR_W = nandaddr; |
| 148 | this->hwcontrol = h1910_hwcontrol; |
| 149 | this->dev_ready = NULL; /* unknown whether that was correct or not so we will just do it like this */ |
| 150 | /* 15 us command delay time */ |
| 151 | this->chip_delay = 50; |
| 152 | this->eccmode = NAND_ECC_SOFT; |
| 153 | this->options = NAND_NO_AUTOINCR; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* Scan to find existence of the device */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 156 | if (nand_scan(h1910_nand_mtd, 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | printk(KERN_NOTICE "No NAND device - returning -ENXIO\n"); |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 158 | kfree(h1910_nand_mtd); |
| 159 | iounmap((void *)nandaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | return -ENXIO; |
| 161 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | #ifdef CONFIG_MTD_CMDLINE_PARTS |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 163 | mtd_parts_nb = parse_cmdline_partitions(h1910_nand_mtd, &mtd_parts, "h1910-nand"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | if (mtd_parts_nb > 0) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 165 | part_type = "command line"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | else |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 167 | mtd_parts_nb = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | #endif |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 169 | if (mtd_parts_nb == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | mtd_parts = partition_info; |
| 171 | mtd_parts_nb = NUM_PARTITIONS; |
| 172 | part_type = "static"; |
| 173 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* Register the partitions */ |
| 176 | printk(KERN_NOTICE "Using %s partition definition\n", part_type); |
| 177 | add_mtd_partitions(h1910_nand_mtd, mtd_parts, mtd_parts_nb); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | /* Return happy */ |
| 180 | return 0; |
| 181 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | module_init(h1910_init); |
| 184 | |
| 185 | /* |
| 186 | * Clean up routine |
| 187 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 188 | static void __exit h1910_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 190 | struct nand_chip *this = (struct nand_chip *)&h1910_nand_mtd[1]; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | /* Release resources, unregister device */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 193 | nand_release(h1910_nand_mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
| 195 | /* Release io resource */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 196 | iounmap((void *)this->IO_ADDR_W); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
| 198 | /* Free the MTD device structure */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 199 | kfree(h1910_nand_mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | module_exit(h1910_cleanup); |
| 203 | |
| 204 | MODULE_LICENSE("GPL"); |
| 205 | MODULE_AUTHOR("Joshua Wise <joshua at joshuawise dot com>"); |
| 206 | MODULE_DESCRIPTION("NAND flash driver for iPAQ h1910"); |