blob: f8ce79b446ed8278a20bab97ec1160eca2f2b52d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Woodhouse151e7652006-05-14 01:51:54 +01007 * Copyright (C) 2002 Marius Gröger (mag@sysgo.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Copyright (c) 2001 Thomas Gleixner (gleixner@autronix.de)
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * Overview:
15 * This is a device driver for the NAND flash device found on the
16 * iPAQ h1910 board which utilizes the Samsung K9F2808 part. This is
17 * a 128Mibit (16MiB x 8 bits) NAND flash device.
18 */
19
20#include <linux/slab.h>
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/mtd/mtd.h>
24#include <linux/mtd/nand.h>
25#include <linux/mtd/partitions.h>
26#include <asm/io.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h> /* for CLPS7111_VIRT_BASE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/sizes.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/h1900-gpio.h>
30#include <mach/ipaq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
33 * MTD structure for EDB7312 board
34 */
35static struct mtd_info *h1910_nand_mtd = NULL;
36
37/*
38 * Module stuff
39 */
40
41#ifdef CONFIG_MTD_PARTITIONS
42/*
43 * Define static partitions for flash device
44 */
45static struct mtd_partition partition_info[] = {
David Woodhousee0c7d762006-05-13 18:07:53 +010046 {name:"h1910 NAND Flash",
47 offset:0,
48 size:16 * 1024 * 1024}
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
David Woodhousee0c7d762006-05-13 18:07:53 +010050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define NUM_PARTITIONS 1
52
53#endif
54
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000055/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * hardware specific access to control-lines
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020057 *
58 * NAND_NCE: bit 0 - don't care
59 * NAND_CLE: bit 1 - address bit 2
60 * NAND_ALE: bit 2 - address bit 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020062static void h1910_hwcontrol(struct mtd_info *mtd, int cmd,
63 unsigned int ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020065 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000066
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020067 if (cmd != NAND_CMD_NONE)
68 writeb(cmd, chip->IO_ADDR_W | ((ctrl & 0x6) << 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71/*
72 * read device ready pin
73 */
74#if 0
75static int h1910_device_ready(struct mtd_info *mtd)
76{
77 return (GPLR(55) & GPIO_bit(55));
78}
79#endif
80
81/*
82 * Main initialization routine
83 */
David Woodhousee0c7d762006-05-13 18:07:53 +010084static int __init h1910_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 struct nand_chip *this;
87 const char *part_type = 0;
88 int mtd_parts_nb = 0;
89 struct mtd_partition *mtd_parts = 0;
90 void __iomem *nandaddr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!machine_is_h1900())
93 return -ENODEV;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000094
Russell King0c2e4b42005-11-17 16:46:41 +000095 nandaddr = ioremap(0x08000000, 0x1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (!nandaddr) {
97 printk("Failed to ioremap nand flash.\n");
98 return -ENOMEM;
99 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* Allocate memory for MTD device structure and private data */
David Woodhousee0c7d762006-05-13 18:07:53 +0100102 h1910_nand_mtd = kmalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (!h1910_nand_mtd) {
104 printk("Unable to allocate h1910 NAND MTD device structure.\n");
David Woodhousee0c7d762006-05-13 18:07:53 +0100105 iounmap((void *)nandaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return -ENOMEM;
107 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* Get pointer to private data */
David Woodhousee0c7d762006-05-13 18:07:53 +0100110 this = (struct nand_chip *)(&h1910_nand_mtd[1]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 /* Initialize structures */
David Woodhousee0c7d762006-05-13 18:07:53 +0100113 memset(h1910_nand_mtd, 0, sizeof(struct mtd_info));
114 memset(this, 0, sizeof(struct nand_chip));
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* Link the private data with the MTD structure */
117 h1910_nand_mtd->priv = this;
David Woodhouse552d9202006-05-14 01:20:46 +0100118 h1910_nand_mtd->owner = THIS_MODULE;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /*
121 * Enable VPEN
122 */
123 GPSR(37) = GPIO_bit(37);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* insert callbacks */
126 this->IO_ADDR_R = nandaddr;
127 this->IO_ADDR_W = nandaddr;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200128 this->cmd_ctrl = h1910_hwcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 this->dev_ready = NULL; /* unknown whether that was correct or not so we will just do it like this */
130 /* 15 us command delay time */
131 this->chip_delay = 50;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200132 this->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 this->options = NAND_NO_AUTOINCR;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /* Scan to find existence of the device */
David Woodhousee0c7d762006-05-13 18:07:53 +0100136 if (nand_scan(h1910_nand_mtd, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 printk(KERN_NOTICE "No NAND device - returning -ENXIO\n");
David Woodhousee0c7d762006-05-13 18:07:53 +0100138 kfree(h1910_nand_mtd);
139 iounmap((void *)nandaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return -ENXIO;
141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#ifdef CONFIG_MTD_CMDLINE_PARTS
David Woodhousee0c7d762006-05-13 18:07:53 +0100143 mtd_parts_nb = parse_cmdline_partitions(h1910_nand_mtd, &mtd_parts, "h1910-nand");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (mtd_parts_nb > 0)
David Woodhousee0c7d762006-05-13 18:07:53 +0100145 part_type = "command line";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100147 mtd_parts_nb = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#endif
David Woodhousee0c7d762006-05-13 18:07:53 +0100149 if (mtd_parts_nb == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 mtd_parts = partition_info;
151 mtd_parts_nb = NUM_PARTITIONS;
152 part_type = "static";
153 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* Register the partitions */
156 printk(KERN_NOTICE "Using %s partition definition\n", part_type);
157 add_mtd_partitions(h1910_nand_mtd, mtd_parts, mtd_parts_nb);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* Return happy */
160 return 0;
161}
David Woodhousee0c7d762006-05-13 18:07:53 +0100162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163module_init(h1910_init);
164
165/*
166 * Clean up routine
167 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100168static void __exit h1910_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
David Woodhousee0c7d762006-05-13 18:07:53 +0100170 struct nand_chip *this = (struct nand_chip *)&h1910_nand_mtd[1];
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* Release resources, unregister device */
David Woodhousee0c7d762006-05-13 18:07:53 +0100173 nand_release(h1910_nand_mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /* Release io resource */
David Woodhousee0c7d762006-05-13 18:07:53 +0100176 iounmap((void *)this->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* Free the MTD device structure */
David Woodhousee0c7d762006-05-13 18:07:53 +0100179 kfree(h1910_nand_mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
David Woodhousee0c7d762006-05-13 18:07:53 +0100181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182module_exit(h1910_cleanup);
183
184MODULE_LICENSE("GPL");
185MODULE_AUTHOR("Joshua Wise <joshua at joshuawise dot com>");
186MODULE_DESCRIPTION("NAND flash driver for iPAQ h1910");