2 * Flash memory access on Alchemy Pb1xxx boards
4 * (C) 2001 Pete Popov <ppopov@mvista.com>
6 * $Id: pb1xxx-flash.c,v 1.11 2004/07/12 21:59:44 dwmw2 Exp $
9 #include <linux/config.h>
10 #include <linux/module.h>
11 #include <linux/types.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/map.h>
17 #include <linux/mtd/partitions.h>
20 #include <asm/au1000.h>
23 #define DBG(x...) printk(x)
28 #ifdef CONFIG_MIPS_PB1000
30 #define WINDOW_ADDR 0x1F800000
31 #define WINDOW_SIZE 0x800000
33 static struct mtd_partition pb1xxx_partitions
[] = {
38 .mask_flags
= MTD_WRITEABLE
},
47 .mask_flags
= MTD_WRITEABLE
},
54 #elif defined(CONFIG_MIPS_PB1500) || defined(CONFIG_MIPS_PB1100)
56 #if defined(CONFIG_MTD_PB1500_BOOT) && defined(CONFIG_MTD_PB1500_USER)
57 /* both 32MB banks will be used. Combine the first 32MB bank and the
58 * first 28MB of the second bank together into a single jffs/jffs2
61 #define WINDOW_ADDR 0x1C000000
62 #define WINDOW_SIZE 0x4000000
63 static struct mtd_partition pb1xxx_partitions
[] = {
72 .mask_flags
= MTD_WRITEABLE
79 #elif defined(CONFIG_MTD_PB1500_BOOT) && !defined(CONFIG_MTD_PB1500_USER)
80 #define WINDOW_ADDR 0x1E000000
81 #define WINDOW_SIZE 0x2000000
82 static struct mtd_partition pb1xxx_partitions
[] = {
91 .mask_flags
= MTD_WRITEABLE
98 #elif !defined(CONFIG_MTD_PB1500_BOOT) && defined(CONFIG_MTD_PB1500_USER)
99 #define WINDOW_ADDR 0x1C000000
100 #define WINDOW_SIZE 0x2000000
101 static struct mtd_partition pb1xxx_partitions
[] = {
107 .name
= "raw kernel",
113 #error MTD_PB1500 define combo error /* should never happen */
116 #error Unsupported board
119 #define NAME "Pb1x00 Linux Flash"
120 #define PADDR WINDOW_ADDR
122 #define SIZE WINDOW_SIZE
125 static struct map_info pb1xxx_mtd_map
= {
128 .bankwidth
= BUSWIDTH
,
132 static struct mtd_info
*pb1xxx_mtd
;
134 int __init
pb1xxx_mtd_init(void)
136 struct mtd_partition
*parts
;
141 * Static partition definition selection
143 part_type
= "static";
144 parts
= pb1xxx_partitions
;
145 nb_parts
= ARRAY_SIZE(pb1xxx_partitions
);
148 * Now let's probe for the actual flash. Do it here since
149 * specific machine settings might have been set above.
151 printk(KERN_NOTICE
"Pb1xxx flash: probing %d-bit flash bus\n",
153 pb1xxx_mtd_map
.virt
= (unsigned long)ioremap(WINDOW_ADDR
, WINDOW_SIZE
);
155 simple_map_init(&pb1xxx_mtd_map
);
157 pb1xxx_mtd
= do_map_probe("cfi_probe", &pb1xxx_mtd_map
);
158 if (!pb1xxx_mtd
) return -ENXIO
;
159 pb1xxx_mtd
->owner
= THIS_MODULE
;
161 add_mtd_partitions(pb1xxx_mtd
, parts
, nb_parts
);
165 static void __exit
pb1xxx_mtd_cleanup(void)
168 del_mtd_partitions(pb1xxx_mtd
);
169 map_destroy(pb1xxx_mtd
);
170 iounmap((void *) pb1xxx_mtd_map
.virt
);
174 module_init(pb1xxx_mtd_init
);
175 module_exit(pb1xxx_mtd_cleanup
);
177 MODULE_AUTHOR("Pete Popov");
178 MODULE_DESCRIPTION("Pb1xxx CFI map driver");
179 MODULE_LICENSE("GPL");