2 * Normal mappings of chips in physical memory
4 * Copyright (C) 2003 MontaVista Software Inc.
5 * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
7 * 031022 - [jsun] add run-time configure and partition setup
10 #include <linux/module.h>
11 #include <linux/types.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/slab.h>
15 #include <linux/device.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>
20 #include <linux/mtd/physmap.h>
21 #include <linux/mtd/concat.h>
24 #define MAX_RESOURCES 4
26 struct physmap_flash_info {
27 struct mtd_info *mtd[MAX_RESOURCES];
28 struct mtd_info *cmtd;
29 struct map_info map[MAX_RESOURCES];
31 #ifdef CONFIG_MTD_PARTITIONS
33 struct mtd_partition *parts;
37 static int physmap_flash_remove(struct platform_device *dev)
39 struct physmap_flash_info *info;
40 struct physmap_flash_data *physmap_data;
43 info = platform_get_drvdata(dev);
46 platform_set_drvdata(dev, NULL);
48 physmap_data = dev->dev.platform_data;
50 #ifdef CONFIG_MTD_CONCAT
51 if (info->cmtd != info->mtd[0]) {
52 del_mtd_device(info->cmtd);
53 mtd_concat_destroy(info->cmtd);
57 for (i = 0; i < MAX_RESOURCES; i++) {
58 if (info->mtd[i] != NULL) {
59 #ifdef CONFIG_MTD_PARTITIONS
61 del_mtd_partitions(info->mtd[i]);
63 } else if (physmap_data->nr_parts) {
64 del_mtd_partitions(info->mtd[i]);
66 del_mtd_device(info->mtd[i]);
69 del_mtd_device(info->mtd[i]);
71 map_destroy(info->mtd[i]);
74 if (info->map[i].virt != NULL)
75 iounmap(info->map[i].virt);
78 if (info->res != NULL) {
79 release_resource(info->res);
86 static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", "map_rom", NULL };
87 #ifdef CONFIG_MTD_PARTITIONS
88 static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", NULL };
91 static int physmap_flash_probe(struct platform_device *dev)
93 struct physmap_flash_data *physmap_data;
94 struct physmap_flash_info *info;
95 const char **probe_type;
98 int devices_found = 0;
100 physmap_data = dev->dev.platform_data;
101 if (physmap_data == NULL)
104 info = kzalloc(sizeof(struct physmap_flash_info), GFP_KERNEL);
110 platform_set_drvdata(dev, info);
112 for (i = 0; i < dev->num_resources; i++) {
113 printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
114 (unsigned long long)(dev->resource[i].end - dev->resource[i].start + 1),
115 (unsigned long long)dev->resource[i].start);
117 info->res = request_mem_region(dev->resource[i].start,
118 dev->resource[i].end - dev->resource[i].start + 1,
120 if (info->res == NULL) {
121 dev_err(&dev->dev, "Could not reserve memory region\n");
126 info->map[i].name = dev->dev.bus_id;
127 info->map[i].phys = dev->resource[i].start;
128 info->map[i].size = dev->resource[i].end - dev->resource[i].start + 1;
129 info->map[i].bankwidth = physmap_data->width;
130 info->map[i].set_vpp = physmap_data->set_vpp;
132 info->map[i].virt = ioremap(info->map[i].phys, info->map[i].size);
133 if (info->map[i].virt == NULL) {
134 dev_err(&dev->dev, "Failed to ioremap flash region\n");
139 simple_map_init(&info->map[i]);
141 probe_type = rom_probe_types;
142 for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
143 info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
144 if (info->mtd[i] == NULL) {
145 dev_err(&dev->dev, "map_probe failed\n");
151 info->mtd[i]->owner = THIS_MODULE;
154 if (devices_found == 1) {
155 info->cmtd = info->mtd[0];
156 } else if (devices_found > 1) {
158 * We detected multiple devices. Concatenate them together.
160 #ifdef CONFIG_MTD_CONCAT
161 info->cmtd = mtd_concat_create(info->mtd, devices_found, dev->dev.bus_id);
162 if (info->cmtd == NULL)
165 printk(KERN_ERR "physmap-flash: multiple devices "
166 "found but MTD concat support disabled.\n");
173 #ifdef CONFIG_MTD_PARTITIONS
174 err = parse_mtd_partitions(info->cmtd, part_probe_types, &info->parts, 0);
176 add_mtd_partitions(info->cmtd, info->parts, err);
180 if (physmap_data->nr_parts) {
181 printk(KERN_NOTICE "Using physmap partition information\n");
182 add_mtd_partitions(info->cmtd, physmap_data->parts,
183 physmap_data->nr_parts);
188 add_mtd_device(info->cmtd);
192 physmap_flash_remove(dev);
197 static int physmap_flash_suspend(struct platform_device *dev, pm_message_t state)
199 struct physmap_flash_info *info = platform_get_drvdata(dev);
203 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
204 if (info->mtd[i]->suspend) {
205 ret = info->mtd[i]->suspend(info->mtd[i]);
212 for (--i; i >= 0; --i)
213 if (info->mtd[i]->suspend) {
214 BUG_ON(!info->mtd[i]->resume);
215 info->mtd[i]->resume(info->mtd[i]);
221 static int physmap_flash_resume(struct platform_device *dev)
223 struct physmap_flash_info *info = platform_get_drvdata(dev);
226 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
227 if (info->mtd[i]->resume)
228 info->mtd[i]->resume(info->mtd[i]);
233 static void physmap_flash_shutdown(struct platform_device *dev)
235 struct physmap_flash_info *info = platform_get_drvdata(dev);
238 for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
239 if (info->mtd[i]->suspend && info->mtd[i]->resume)
240 if (info->mtd[i]->suspend(info->mtd[i]) == 0)
241 info->mtd[i]->resume(info->mtd[i]);
244 #define physmap_flash_suspend NULL
245 #define physmap_flash_resume NULL
246 #define physmap_flash_shutdown NULL
249 static struct platform_driver physmap_flash_driver = {
250 .probe = physmap_flash_probe,
251 .remove = physmap_flash_remove,
252 .suspend = physmap_flash_suspend,
253 .resume = physmap_flash_resume,
254 .shutdown = physmap_flash_shutdown,
256 .name = "physmap-flash",
257 .owner = THIS_MODULE,
262 #ifdef CONFIG_MTD_PHYSMAP_LEN
263 #if CONFIG_MTD_PHYSMAP_LEN != 0
264 #warning using PHYSMAP compat code
265 #define PHYSMAP_COMPAT
269 #ifdef PHYSMAP_COMPAT
270 static struct physmap_flash_data physmap_flash_data = {
271 .width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
274 static struct resource physmap_flash_resource = {
275 .start = CONFIG_MTD_PHYSMAP_START,
276 .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
277 .flags = IORESOURCE_MEM,
280 static struct platform_device physmap_flash = {
281 .name = "physmap-flash",
284 .platform_data = &physmap_flash_data,
287 .resource = &physmap_flash_resource,
290 void physmap_configure(unsigned long addr, unsigned long size,
291 int bankwidth, void (*set_vpp)(struct map_info *, int))
293 physmap_flash_resource.start = addr;
294 physmap_flash_resource.end = addr + size - 1;
295 physmap_flash_data.width = bankwidth;
296 physmap_flash_data.set_vpp = set_vpp;
299 #ifdef CONFIG_MTD_PARTITIONS
300 void physmap_set_partitions(struct mtd_partition *parts, int num_parts)
302 physmap_flash_data.nr_parts = num_parts;
303 physmap_flash_data.parts = parts;
308 static int __init physmap_init(void)
312 err = platform_driver_register(&physmap_flash_driver);
313 #ifdef PHYSMAP_COMPAT
315 platform_device_register(&physmap_flash);
321 static void __exit physmap_exit(void)
323 #ifdef PHYSMAP_COMPAT
324 platform_device_unregister(&physmap_flash);
326 platform_driver_unregister(&physmap_flash_driver);
329 module_init(physmap_init);
330 module_exit(physmap_exit);
332 MODULE_LICENSE("GPL");
333 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
334 MODULE_DESCRIPTION("Generic configurable MTD map driver");
336 /* legacy platform drivers can't hotplug or coldplg */
337 #ifndef PHYSMAP_COMPAT
338 /* work with hotplug and coldplug */
339 MODULE_ALIAS("platform:physmap-flash");