2 * Map driver for Intel XScale PXA2xx platforms.
4 * Author: Nicolas Pitre
5 * Copyright: (C) 2001 MontaVista Software Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/mtd/mtd.h>
18 #include <linux/mtd/map.h>
19 #include <linux/mtd/partitions.h>
22 #include <mach/hardware.h>
24 #include <asm/mach/flash.h>
26 #define CACHELINESIZE 32
28 static void pxa2xx_map_inval_cache(struct map_info
*map
, unsigned long from
,
31 unsigned long start
= (unsigned long)map
->cached
+ from
;
32 unsigned long end
= start
+ len
;
34 start
&= ~(CACHELINESIZE
- 1);
36 /* invalidate D cache line */
37 asm volatile ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start
));
38 start
+= CACHELINESIZE
;
42 struct pxa2xx_flash_info
{
43 struct mtd_partition
*parts
;
50 static const char *probes
[] = { "RedBoot", "cmdlinepart", NULL
};
53 static int __init
pxa2xx_flash_probe(struct platform_device
*pdev
)
55 struct flash_platform_data
*flash
= pdev
->dev
.platform_data
;
56 struct pxa2xx_flash_info
*info
;
57 struct mtd_partition
*parts
;
61 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
65 info
= kmalloc(sizeof(struct pxa2xx_flash_info
), GFP_KERNEL
);
69 memset(info
, 0, sizeof(struct pxa2xx_flash_info
));
70 info
->map
.name
= (char *) flash
->name
;
71 info
->map
.bankwidth
= flash
->width
;
72 info
->map
.phys
= res
->start
;
73 info
->map
.size
= res
->end
- res
->start
+ 1;
74 info
->parts
= flash
->parts
;
75 info
->nr_parts
= flash
->nr_parts
;
77 info
->map
.virt
= ioremap(info
->map
.phys
, info
->map
.size
);
78 if (!info
->map
.virt
) {
79 printk(KERN_WARNING
"Failed to ioremap %s\n",
84 ioremap_cached(info
->map
.phys
, info
->map
.size
);
85 if (!info
->map
.cached
)
86 printk(KERN_WARNING
"Failed to ioremap cached %s\n",
88 info
->map
.inval_cache
= pxa2xx_map_inval_cache
;
89 simple_map_init(&info
->map
);
92 "Probing %s at physical address 0x%08lx"
93 " (%d-bit bankwidth)\n",
94 info
->map
.name
, (unsigned long)info
->map
.phys
,
95 info
->map
.bankwidth
* 8);
97 info
->mtd
= do_map_probe(flash
->map_name
, &info
->map
);
100 iounmap((void *)info
->map
.virt
);
101 if (info
->map
.cached
)
102 iounmap(info
->map
.cached
);
105 info
->mtd
->owner
= THIS_MODULE
;
107 #ifdef CONFIG_MTD_PARTITIONS
108 ret
= parse_mtd_partitions(info
->mtd
, probes
, &parts
, 0);
111 info
->nr_parts
= ret
;
116 if (info
->nr_parts
) {
117 add_mtd_partitions(info
->mtd
, info
->parts
,
120 printk("Registering %s as whole device\n",
122 add_mtd_device(info
->mtd
);
125 platform_set_drvdata(pdev
, info
);
129 static int __devexit
pxa2xx_flash_remove(struct platform_device
*dev
)
131 struct pxa2xx_flash_info
*info
= platform_get_drvdata(dev
);
133 platform_set_drvdata(dev
, NULL
);
135 #ifdef CONFIG_MTD_PARTITIONS
137 del_mtd_partitions(info
->mtd
);
140 del_mtd_device(info
->mtd
);
142 map_destroy(info
->mtd
);
143 iounmap(info
->map
.virt
);
144 if (info
->map
.cached
)
145 iounmap(info
->map
.cached
);
152 static void pxa2xx_flash_shutdown(struct platform_device
*dev
)
154 struct pxa2xx_flash_info
*info
= platform_get_drvdata(dev
);
156 if (info
&& info
->mtd
->suspend(info
->mtd
) == 0)
157 info
->mtd
->resume(info
->mtd
);
160 #define pxa2xx_flash_shutdown NULL
163 static struct platform_driver pxa2xx_flash_driver
= {
165 .name
= "pxa2xx-flash",
166 .owner
= THIS_MODULE
,
168 .probe
= pxa2xx_flash_probe
,
169 .remove
= __devexit_p(pxa2xx_flash_remove
),
170 .shutdown
= pxa2xx_flash_shutdown
,
173 static int __init
init_pxa2xx_flash(void)
175 return platform_driver_register(&pxa2xx_flash_driver
);
178 static void __exit
cleanup_pxa2xx_flash(void)
180 platform_driver_unregister(&pxa2xx_flash_driver
);
183 module_init(init_pxa2xx_flash
);
184 module_exit(cleanup_pxa2xx_flash
);
186 MODULE_LICENSE("GPL");
187 MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net>");
188 MODULE_DESCRIPTION("MTD map driver for Intel XScale PXA2xx");