2 * MTD map driver for flash on the DC21285 (the StrongARM-110 companion chip)
4 * (C) 2000 Nicolas Pitre <nico@cam.org>
8 * $Id: dc21285.c,v 1.24 2005/11/07 11:14:26 gleixner Exp $
10 #include <linux/module.h>
11 #include <linux/types.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/delay.h>
15 #include <linux/slab.h>
17 #include <linux/mtd/mtd.h>
18 #include <linux/mtd/map.h>
19 #include <linux/mtd/partitions.h>
22 #include <asm/hardware/dec21285.h>
23 #include <asm/mach-types.h>
26 static struct mtd_info
*dc21285_mtd
;
28 #ifdef CONFIG_ARCH_NETWINDER
30 * This is really ugly, but it seams to be the only
31 * realiable way to do it, as the cpld state machine
32 * is unpredictible. So we have a 25us penalty per
35 static void nw_en_write(void)
37 extern spinlock_t gpio_lock
;
41 * we want to write a bit pattern XXX1 to Xilinx to enable
42 * the write gate, which will be open for about the next 2ms.
44 spin_lock_irqsave(&gpio_lock
, flags
);
46 spin_unlock_irqrestore(&gpio_lock
, flags
);
49 * let the ISA bus to catch on...
54 #define nw_en_write() do { } while (0)
57 static map_word
dc21285_read8(struct map_info
*map
, unsigned long ofs
)
60 val
.x
[0] = *(uint8_t*)(map
->virt
+ ofs
);
64 static map_word
dc21285_read16(struct map_info
*map
, unsigned long ofs
)
67 val
.x
[0] = *(uint16_t*)(map
->virt
+ ofs
);
71 static map_word
dc21285_read32(struct map_info
*map
, unsigned long ofs
)
74 val
.x
[0] = *(uint32_t*)(map
->virt
+ ofs
);
78 static void dc21285_copy_from(struct map_info
*map
, void *to
, unsigned long from
, ssize_t len
)
80 memcpy(to
, (void*)(map
->virt
+ from
), len
);
83 static void dc21285_write8(struct map_info
*map
, const map_word d
, unsigned long adr
)
85 if (machine_is_netwinder())
87 *CSR_ROMWRITEREG
= adr
& 3;
89 *(uint8_t*)(map
->virt
+ adr
) = d
.x
[0];
92 static void dc21285_write16(struct map_info
*map
, const map_word d
, unsigned long adr
)
94 if (machine_is_netwinder())
96 *CSR_ROMWRITEREG
= adr
& 3;
98 *(uint16_t*)(map
->virt
+ adr
) = d
.x
[0];
101 static void dc21285_write32(struct map_info
*map
, const map_word d
, unsigned long adr
)
103 if (machine_is_netwinder())
105 *(uint32_t*)(map
->virt
+ adr
) = d
.x
[0];
108 static void dc21285_copy_to_32(struct map_info
*map
, unsigned long to
, const void *from
, ssize_t len
)
112 d
.x
[0] = *((uint32_t*)from
);
113 dc21285_write32(map
, d
, to
);
120 static void dc21285_copy_to_16(struct map_info
*map
, unsigned long to
, const void *from
, ssize_t len
)
124 d
.x
[0] = *((uint16_t*)from
);
125 dc21285_write16(map
, d
, to
);
132 static void dc21285_copy_to_8(struct map_info
*map
, unsigned long to
, const void *from
, ssize_t len
)
135 d
.x
[0] = *((uint8_t*)from
);
136 dc21285_write8(map
, d
, to
);
142 static struct map_info dc21285_map
= {
143 .name
= "DC21285 flash",
145 .size
= 16*1024*1024,
146 .copy_from
= dc21285_copy_from
,
150 /* Partition stuff */
151 #ifdef CONFIG_MTD_PARTITIONS
152 static struct mtd_partition
*dc21285_parts
;
153 static const char *probes
[] = { "RedBoot", "cmdlinepart", NULL
};
156 static int __init
init_dc21285(void)
159 #ifdef CONFIG_MTD_PARTITIONS
163 /* Determine bankwidth */
164 switch (*CSR_SA110_CNTL
& (3<<14)) {
165 case SA110_CNTL_ROMWIDTH_8
:
166 dc21285_map
.bankwidth
= 1;
167 dc21285_map
.read
= dc21285_read8
;
168 dc21285_map
.write
= dc21285_write8
;
169 dc21285_map
.copy_to
= dc21285_copy_to_8
;
171 case SA110_CNTL_ROMWIDTH_16
:
172 dc21285_map
.bankwidth
= 2;
173 dc21285_map
.read
= dc21285_read16
;
174 dc21285_map
.write
= dc21285_write16
;
175 dc21285_map
.copy_to
= dc21285_copy_to_16
;
177 case SA110_CNTL_ROMWIDTH_32
:
178 dc21285_map
.bankwidth
= 4;
179 dc21285_map
.read
= dc21285_read32
;
180 dc21285_map
.write
= dc21285_write32
;
181 dc21285_map
.copy_to
= dc21285_copy_to_32
;
184 printk (KERN_ERR
"DC21285 flash: undefined bankwidth\n");
187 printk (KERN_NOTICE
"DC21285 flash support (%d-bit bankwidth)\n",
188 dc21285_map
.bankwidth
*8);
190 /* Let's map the flash area */
191 dc21285_map
.virt
= ioremap(DC21285_FLASH
, 16*1024*1024);
192 if (!dc21285_map
.virt
) {
193 printk("Failed to ioremap\n");
197 if (machine_is_ebsa285()) {
198 dc21285_mtd
= do_map_probe("cfi_probe", &dc21285_map
);
200 dc21285_mtd
= do_map_probe("jedec_probe", &dc21285_map
);
204 iounmap(dc21285_map
.virt
);
208 dc21285_mtd
->owner
= THIS_MODULE
;
210 #ifdef CONFIG_MTD_PARTITIONS
211 nrparts
= parse_mtd_partitions(dc21285_mtd
, probes
, &dc21285_parts
, 0);
213 add_mtd_partitions(dc21285_mtd
, dc21285_parts
, nrparts
);
216 add_mtd_device(dc21285_mtd
);
218 if(machine_is_ebsa285()) {
220 * Flash timing is determined with bits 19-16 of the
221 * CSR_SA110_CNTL. The value is the number of wait cycles, or
222 * 0 for 16 cycles (the default). Cycles are 20 ns.
223 * Here we use 7 for 140 ns flash chips.
226 *CSR_SA110_CNTL
= ((*CSR_SA110_CNTL
& ~0x000f0000) | (7 << 16));
228 *CSR_SA110_CNTL
= ((*CSR_SA110_CNTL
& ~0x00f00000) | (7 << 20));
230 *CSR_SA110_CNTL
= ((*CSR_SA110_CNTL
& ~0x0f000000) | (7 << 24));
236 static void __exit
cleanup_dc21285(void)
238 #ifdef CONFIG_MTD_PARTITIONS
240 del_mtd_partitions(dc21285_mtd
);
241 kfree(dc21285_parts
);
244 del_mtd_device(dc21285_mtd
);
246 map_destroy(dc21285_mtd
);
247 iounmap(dc21285_map
.virt
);
250 module_init(init_dc21285
);
251 module_exit(cleanup_dc21285
);
254 MODULE_LICENSE("GPL");
255 MODULE_AUTHOR("Nicolas Pitre <nico@cam.org>");
256 MODULE_DESCRIPTION("MTD map driver for DC21285 boards");