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/slab.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/mtd/mtd.h>
19 #include <linux/mtd/map.h>
20 #include <linux/mtd/partitions.h>
23 #include <mach/hardware.h>
25 #include <asm/mach/flash.h>
27 #define CACHELINESIZE 32
29 static void pxa2xx_map_inval_cache(struct map_info
*map
, unsigned long from
,
32 unsigned long start
= (unsigned long)map
->cached
+ from
;
33 unsigned long end
= start
+ len
;
35 start
&= ~(CACHELINESIZE
- 1);
37 /* invalidate D cache line */
38 asm volatile ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start
));
39 start
+= CACHELINESIZE
;
43 struct pxa2xx_flash_info
{
49 static const char *probes
[] = { "RedBoot", "cmdlinepart", NULL
};
52 static int pxa2xx_flash_probe(struct platform_device
*pdev
)
54 struct flash_platform_data
*flash
= pdev
->dev
.platform_data
;
55 struct pxa2xx_flash_info
*info
;
58 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
62 info
= kzalloc(sizeof(struct pxa2xx_flash_info
), GFP_KERNEL
);
66 info
->map
.name
= (char *) flash
->name
;
67 info
->map
.bankwidth
= flash
->width
;
68 info
->map
.phys
= res
->start
;
69 info
->map
.size
= resource_size(res
);
71 info
->map
.virt
= ioremap(info
->map
.phys
, info
->map
.size
);
72 if (!info
->map
.virt
) {
73 printk(KERN_WARNING
"Failed to ioremap %s\n",
78 ioremap_cached(info
->map
.phys
, info
->map
.size
);
79 if (!info
->map
.cached
)
80 printk(KERN_WARNING
"Failed to ioremap cached %s\n",
82 info
->map
.inval_cache
= pxa2xx_map_inval_cache
;
83 simple_map_init(&info
->map
);
86 "Probing %s at physical address 0x%08lx"
87 " (%d-bit bankwidth)\n",
88 info
->map
.name
, (unsigned long)info
->map
.phys
,
89 info
->map
.bankwidth
* 8);
91 info
->mtd
= do_map_probe(flash
->map_name
, &info
->map
);
94 iounmap((void *)info
->map
.virt
);
96 iounmap(info
->map
.cached
);
99 info
->mtd
->owner
= THIS_MODULE
;
101 mtd_device_parse_register(info
->mtd
, probes
, NULL
, flash
->parts
,
104 platform_set_drvdata(pdev
, info
);
108 static int pxa2xx_flash_remove(struct platform_device
*dev
)
110 struct pxa2xx_flash_info
*info
= platform_get_drvdata(dev
);
112 platform_set_drvdata(dev
, NULL
);
114 mtd_device_unregister(info
->mtd
);
116 map_destroy(info
->mtd
);
117 iounmap(info
->map
.virt
);
118 if (info
->map
.cached
)
119 iounmap(info
->map
.cached
);
125 static void pxa2xx_flash_shutdown(struct platform_device
*dev
)
127 struct pxa2xx_flash_info
*info
= platform_get_drvdata(dev
);
129 if (info
&& mtd_suspend(info
->mtd
) == 0)
130 mtd_resume(info
->mtd
);
133 #define pxa2xx_flash_shutdown NULL
136 static struct platform_driver pxa2xx_flash_driver
= {
138 .name
= "pxa2xx-flash",
139 .owner
= THIS_MODULE
,
141 .probe
= pxa2xx_flash_probe
,
142 .remove
= pxa2xx_flash_remove
,
143 .shutdown
= pxa2xx_flash_shutdown
,
146 module_platform_driver(pxa2xx_flash_driver
);
148 MODULE_LICENSE("GPL");
149 MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net>");
150 MODULE_DESCRIPTION("MTD map driver for Intel XScale PXA2xx");