2 * Flash memory access on Alchemy Pb1xxx boards
4 * (C) 2001 Pete Popov <ppopov@mvista.com>
6 * $Id: pb1xxx-flash.c,v 1.14 2004/11/04 13:24:15 gleixner 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>
22 #define DBG(x...) printk(x)
27 #ifdef CONFIG_MIPS_PB1000
29 #define WINDOW_ADDR 0x1F800000
30 #define WINDOW_SIZE 0x800000
32 static struct mtd_partition pb1xxx_partitions[] = {
37 .mask_flags = MTD_WRITEABLE},
46 .mask_flags = MTD_WRITEABLE},
53 #elif defined(CONFIG_MIPS_PB1500) || defined(CONFIG_MIPS_PB1100)
55 #if defined(CONFIG_MTD_PB1500_BOOT) && defined(CONFIG_MTD_PB1500_USER)
56 /* both 32MB banks will be used. Combine the first 32MB bank and the
57 * first 28MB of the second bank together into a single jffs/jffs2
60 #define WINDOW_ADDR 0x1C000000
61 #define WINDOW_SIZE 0x4000000
62 static struct mtd_partition pb1xxx_partitions[] = {
71 .mask_flags = MTD_WRITEABLE
78 #elif defined(CONFIG_MTD_PB1500_BOOT) && !defined(CONFIG_MTD_PB1500_USER)
79 #define WINDOW_ADDR 0x1E000000
80 #define WINDOW_SIZE 0x2000000
81 static struct mtd_partition pb1xxx_partitions[] = {
90 .mask_flags = MTD_WRITEABLE
97 #elif !defined(CONFIG_MTD_PB1500_BOOT) && defined(CONFIG_MTD_PB1500_USER)
98 #define WINDOW_ADDR 0x1C000000
99 #define WINDOW_SIZE 0x2000000
100 static struct mtd_partition pb1xxx_partitions[] = {
106 .name = "raw kernel",
112 #error MTD_PB1500 define combo error /* should never happen */
115 #error Unsupported board
118 #define NAME "Pb1x00 Linux Flash"
119 #define PADDR WINDOW_ADDR
121 #define SIZE WINDOW_SIZE
124 static struct map_info pb1xxx_mtd_map = {
127 .bankwidth = BUSWIDTH,
131 static struct mtd_info *pb1xxx_mtd;
133 int __init pb1xxx_mtd_init(void)
135 struct mtd_partition *parts;
140 * Static partition definition selection
142 part_type = "static";
143 parts = pb1xxx_partitions;
144 nb_parts = ARRAY_SIZE(pb1xxx_partitions);
147 * Now let's probe for the actual flash. Do it here since
148 * specific machine settings might have been set above.
150 printk(KERN_NOTICE "Pb1xxx flash: probing %d-bit flash bus\n",
152 pb1xxx_mtd_map.virt = ioremap(WINDOW_ADDR, WINDOW_SIZE);
154 simple_map_init(&pb1xxx_mtd_map);
156 pb1xxx_mtd = do_map_probe("cfi_probe", &pb1xxx_mtd_map);
157 if (!pb1xxx_mtd) return -ENXIO;
158 pb1xxx_mtd->owner = THIS_MODULE;
160 add_mtd_partitions(pb1xxx_mtd, parts, nb_parts);
164 static void __exit pb1xxx_mtd_cleanup(void)
167 del_mtd_partitions(pb1xxx_mtd);
168 map_destroy(pb1xxx_mtd);
169 iounmap((void *) pb1xxx_mtd_map.virt);
173 module_init(pb1xxx_mtd_init);
174 module_exit(pb1xxx_mtd_cleanup);
176 MODULE_AUTHOR("Pete Popov");
177 MODULE_DESCRIPTION("Pb1xxx CFI map driver");
178 MODULE_LICENSE("GPL");