Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Normal mappings of chips in physical memory |
| 3 | * |
| 4 | * Copyright (C) 2003 MontaVista Software Inc. |
| 5 | * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net |
| 6 | * |
| 7 | * 031022 - [jsun] add run-time configure and partition setup |
| 8 | */ |
| 9 | |
| 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> |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 15 | #include <linux/device.h> |
| 16 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/mtd/mtd.h> |
| 18 | #include <linux/mtd/map.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/mtd/partitions.h> |
Adrian Bunk | 2b9175c | 2005-11-29 14:49:38 +0000 | [diff] [blame] | 20 | #include <linux/mtd/physmap.h> |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 21 | #include <linux/mtd/concat.h> |
Atsushi Nemoto | 3136e90 | 2008-11-26 10:26:29 +0000 | [diff] [blame] | 22 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 24 | #define MAX_RESOURCES 4 |
| 25 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 26 | struct physmap_flash_info { |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 27 | struct mtd_info *mtd[MAX_RESOURCES]; |
| 28 | struct mtd_info *cmtd; |
| 29 | struct map_info map[MAX_RESOURCES]; |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 30 | int nr_parts; |
Atsushi Nemoto | e480814 | 2009-02-11 13:12:17 -0800 | [diff] [blame] | 31 | struct mtd_partition *parts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | }; |
| 33 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 34 | static int physmap_flash_remove(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 36 | struct physmap_flash_info *info; |
| 37 | struct physmap_flash_data *physmap_data; |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 38 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 40 | info = platform_get_drvdata(dev); |
| 41 | if (info == NULL) |
| 42 | return 0; |
| 43 | platform_set_drvdata(dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 45 | physmap_data = dev->dev.platform_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 47 | if (info->cmtd) { |
Jamie Iles | 984e6d8 | 2011-05-23 10:22:45 +0100 | [diff] [blame] | 48 | mtd_device_unregister(info->cmtd); |
| 49 | if (info->nr_parts) |
| 50 | kfree(info->parts); |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 51 | if (info->cmtd != info->mtd[0]) |
| 52 | mtd_concat_destroy(info->cmtd); |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 53 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 55 | for (i = 0; i < MAX_RESOURCES; i++) { |
Atsushi Nemoto | e480814 | 2009-02-11 13:12:17 -0800 | [diff] [blame] | 56 | if (info->mtd[i] != NULL) |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 57 | map_destroy(info->mtd[i]); |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 58 | } |
Marc Zyngier | b7281ca | 2011-05-18 10:51:48 +0100 | [diff] [blame] | 59 | |
| 60 | if (physmap_data->exit) |
| 61 | physmap_data->exit(dev); |
| 62 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 63 | return 0; |
| 64 | } |
| 65 | |
Marc Zyngier | 667f390 | 2011-05-18 10:51:55 +0100 | [diff] [blame] | 66 | static void physmap_set_vpp(struct map_info *map, int state) |
| 67 | { |
| 68 | struct platform_device *pdev; |
| 69 | struct physmap_flash_data *physmap_data; |
| 70 | |
| 71 | pdev = (struct platform_device *)map->map_priv_1; |
| 72 | physmap_data = pdev->dev.platform_data; |
| 73 | |
| 74 | if (physmap_data->set_vpp) |
| 75 | physmap_data->set_vpp(pdev, state); |
| 76 | } |
| 77 | |
Alexey Korolev | d814083 | 2008-12-16 18:22:39 +0000 | [diff] [blame] | 78 | static const char *rom_probe_types[] = { |
| 79 | "cfi_probe", |
| 80 | "jedec_probe", |
| 81 | "qinfo_probe", |
| 82 | "map_rom", |
| 83 | NULL }; |
Marc Zyngier | 667f390 | 2011-05-18 10:51:55 +0100 | [diff] [blame] | 84 | static const char *part_probe_types[] = { "cmdlinepart", "RedBoot", "afs", |
Marc Zyngier | b7281ca | 2011-05-18 10:51:48 +0100 | [diff] [blame] | 85 | NULL }; |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 86 | |
| 87 | static int physmap_flash_probe(struct platform_device *dev) |
| 88 | { |
| 89 | struct physmap_flash_data *physmap_data; |
| 90 | struct physmap_flash_info *info; |
| 91 | const char **probe_type; |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 92 | int err = 0; |
| 93 | int i; |
| 94 | int devices_found = 0; |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 95 | |
| 96 | physmap_data = dev->dev.platform_data; |
| 97 | if (physmap_data == NULL) |
| 98 | return -ENODEV; |
| 99 | |
Atsushi Nemoto | 3136e90 | 2008-11-26 10:26:29 +0000 | [diff] [blame] | 100 | info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info), |
| 101 | GFP_KERNEL); |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 102 | if (info == NULL) { |
| 103 | err = -ENOMEM; |
| 104 | goto err_out; |
| 105 | } |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 106 | |
Marc Zyngier | b7281ca | 2011-05-18 10:51:48 +0100 | [diff] [blame] | 107 | if (physmap_data->init) { |
| 108 | err = physmap_data->init(dev); |
| 109 | if (err) |
| 110 | goto err_out; |
| 111 | } |
| 112 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 113 | platform_set_drvdata(dev, info); |
| 114 | |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 115 | for (i = 0; i < dev->num_resources; i++) { |
| 116 | printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n", |
H Hartley Sweeten | 1d90d2c | 2010-06-14 11:57:54 -0500 | [diff] [blame] | 117 | (unsigned long long)resource_size(&dev->resource[i]), |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 118 | (unsigned long long)dev->resource[i].start); |
| 119 | |
Atsushi Nemoto | 3136e90 | 2008-11-26 10:26:29 +0000 | [diff] [blame] | 120 | if (!devm_request_mem_region(&dev->dev, |
| 121 | dev->resource[i].start, |
H Hartley Sweeten | 1d90d2c | 2010-06-14 11:57:54 -0500 | [diff] [blame] | 122 | resource_size(&dev->resource[i]), |
Kay Sievers | 160bbab | 2008-12-23 10:00:14 +0000 | [diff] [blame] | 123 | dev_name(&dev->dev))) { |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 124 | dev_err(&dev->dev, "Could not reserve memory region\n"); |
| 125 | err = -ENOMEM; |
| 126 | goto err_out; |
| 127 | } |
| 128 | |
Kay Sievers | 160bbab | 2008-12-23 10:00:14 +0000 | [diff] [blame] | 129 | info->map[i].name = dev_name(&dev->dev); |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 130 | info->map[i].phys = dev->resource[i].start; |
H Hartley Sweeten | 1d90d2c | 2010-06-14 11:57:54 -0500 | [diff] [blame] | 131 | info->map[i].size = resource_size(&dev->resource[i]); |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 132 | info->map[i].bankwidth = physmap_data->width; |
Marc Zyngier | 667f390 | 2011-05-18 10:51:55 +0100 | [diff] [blame] | 133 | info->map[i].set_vpp = physmap_set_vpp; |
Alexey Korolev | d814083 | 2008-12-16 18:22:39 +0000 | [diff] [blame] | 134 | info->map[i].pfow_base = physmap_data->pfow_base; |
Marc Zyngier | 667f390 | 2011-05-18 10:51:55 +0100 | [diff] [blame] | 135 | info->map[i].map_priv_1 = (unsigned long)dev; |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 136 | |
Atsushi Nemoto | 3136e90 | 2008-11-26 10:26:29 +0000 | [diff] [blame] | 137 | info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys, |
| 138 | info->map[i].size); |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 139 | if (info->map[i].virt == NULL) { |
| 140 | dev_err(&dev->dev, "Failed to ioremap flash region\n"); |
Roel Kluin | 895fb49 | 2009-11-11 21:47:06 +0100 | [diff] [blame] | 141 | err = -EIO; |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 142 | goto err_out; |
| 143 | } |
| 144 | |
| 145 | simple_map_init(&info->map[i]); |
| 146 | |
| 147 | probe_type = rom_probe_types; |
Barry Song | 78ef7fa | 2010-01-15 15:50:14 +0800 | [diff] [blame] | 148 | if (physmap_data->probe_type == NULL) { |
| 149 | for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++) |
| 150 | info->mtd[i] = do_map_probe(*probe_type, &info->map[i]); |
| 151 | } else |
| 152 | info->mtd[i] = do_map_probe(physmap_data->probe_type, &info->map[i]); |
| 153 | |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 154 | if (info->mtd[i] == NULL) { |
| 155 | dev_err(&dev->dev, "map_probe failed\n"); |
| 156 | err = -ENXIO; |
| 157 | goto err_out; |
| 158 | } else { |
| 159 | devices_found++; |
| 160 | } |
| 161 | info->mtd[i]->owner = THIS_MODULE; |
David Brownell | 87f39f0 | 2009-03-26 00:42:50 -0700 | [diff] [blame] | 162 | info->mtd[i]->dev.parent = &dev->dev; |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 163 | } |
| 164 | |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 165 | if (devices_found == 1) { |
| 166 | info->cmtd = info->mtd[0]; |
| 167 | } else if (devices_found > 1) { |
| 168 | /* |
| 169 | * We detected multiple devices. Concatenate them together. |
| 170 | */ |
Kay Sievers | 160bbab | 2008-12-23 10:00:14 +0000 | [diff] [blame] | 171 | info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev)); |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 172 | if (info->cmtd == NULL) |
| 173 | err = -ENXIO; |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 174 | } |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 175 | if (err) |
| 176 | goto err_out; |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 177 | |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 178 | err = parse_mtd_partitions(info->cmtd, part_probe_types, |
Jamie Iles | 984e6d8 | 2011-05-23 10:22:45 +0100 | [diff] [blame] | 179 | &info->parts, 0); |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 180 | if (err > 0) { |
Jamie Iles | 984e6d8 | 2011-05-23 10:22:45 +0100 | [diff] [blame] | 181 | mtd_device_register(info->cmtd, info->parts, err); |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 182 | info->nr_parts = err; |
| 183 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 186 | if (physmap_data->nr_parts) { |
| 187 | printk(KERN_NOTICE "Using physmap partition information\n"); |
Jamie Iles | 984e6d8 | 2011-05-23 10:22:45 +0100 | [diff] [blame] | 188 | mtd_device_register(info->cmtd, physmap_data->parts, |
| 189 | physmap_data->nr_parts); |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 190 | return 0; |
| 191 | } |
H Hartley Sweeten | 8ce110a | 2009-10-20 12:23:33 -0400 | [diff] [blame] | 192 | |
Jamie Iles | 984e6d8 | 2011-05-23 10:22:45 +0100 | [diff] [blame] | 193 | mtd_device_register(info->cmtd, NULL, 0); |
| 194 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 195 | return 0; |
| 196 | |
| 197 | err_out: |
| 198 | physmap_flash_remove(dev); |
| 199 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Lennert Buytenhek | 17c2dae | 2006-09-21 23:16:48 +0200 | [diff] [blame] | 202 | #ifdef CONFIG_PM |
Lennert Buytenhek | 17c2dae | 2006-09-21 23:16:48 +0200 | [diff] [blame] | 203 | static void physmap_flash_shutdown(struct platform_device *dev) |
| 204 | { |
| 205 | struct physmap_flash_info *info = platform_get_drvdata(dev); |
Stefan Roese | df66e71 | 2008-02-01 15:26:54 +0100 | [diff] [blame] | 206 | int i; |
| 207 | |
Anton Vorontsov | 4a5691c | 2008-03-28 14:16:09 -0700 | [diff] [blame] | 208 | for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++) |
Robert Jarzmik | 7b24919 | 2008-07-22 09:39:00 +0200 | [diff] [blame] | 209 | if (info->mtd[i]->suspend && info->mtd[i]->resume) |
| 210 | if (info->mtd[i]->suspend(info->mtd[i]) == 0) |
| 211 | info->mtd[i]->resume(info->mtd[i]); |
Lennert Buytenhek | 17c2dae | 2006-09-21 23:16:48 +0200 | [diff] [blame] | 212 | } |
akpm@linux-foundation.org | d547668 | 2008-02-03 12:56:03 -0800 | [diff] [blame] | 213 | #else |
akpm@linux-foundation.org | d547668 | 2008-02-03 12:56:03 -0800 | [diff] [blame] | 214 | #define physmap_flash_shutdown NULL |
Lennert Buytenhek | 17c2dae | 2006-09-21 23:16:48 +0200 | [diff] [blame] | 215 | #endif |
| 216 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 217 | static struct platform_driver physmap_flash_driver = { |
| 218 | .probe = physmap_flash_probe, |
| 219 | .remove = physmap_flash_remove, |
Lennert Buytenhek | 17c2dae | 2006-09-21 23:16:48 +0200 | [diff] [blame] | 220 | .shutdown = physmap_flash_shutdown, |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 221 | .driver = { |
| 222 | .name = "physmap-flash", |
Kay Sievers | 41d867c | 2008-04-18 13:44:26 -0700 | [diff] [blame] | 223 | .owner = THIS_MODULE, |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 224 | }, |
| 225 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | |
Mike Frysinger | dcb3e13 | 2008-12-01 14:23:40 -0800 | [diff] [blame] | 228 | #ifdef CONFIG_MTD_PHYSMAP_COMPAT |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 229 | static struct physmap_flash_data physmap_flash_data = { |
| 230 | .width = CONFIG_MTD_PHYSMAP_BANKWIDTH, |
| 231 | }; |
| 232 | |
| 233 | static struct resource physmap_flash_resource = { |
| 234 | .start = CONFIG_MTD_PHYSMAP_START, |
Sascha Hauer | 6d4f822 | 2006-06-27 14:38:15 +0100 | [diff] [blame] | 235 | .end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1, |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 236 | .flags = IORESOURCE_MEM, |
| 237 | }; |
| 238 | |
| 239 | static struct platform_device physmap_flash = { |
| 240 | .name = "physmap-flash", |
| 241 | .id = 0, |
| 242 | .dev = { |
| 243 | .platform_data = &physmap_flash_data, |
| 244 | }, |
| 245 | .num_resources = 1, |
| 246 | .resource = &physmap_flash_resource, |
| 247 | }; |
| 248 | |
| 249 | void physmap_configure(unsigned long addr, unsigned long size, |
| 250 | int bankwidth, void (*set_vpp)(struct map_info *, int)) |
| 251 | { |
| 252 | physmap_flash_resource.start = addr; |
| 253 | physmap_flash_resource.end = addr + size - 1; |
| 254 | physmap_flash_data.width = bankwidth; |
| 255 | physmap_flash_data.set_vpp = set_vpp; |
| 256 | } |
| 257 | |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 258 | void physmap_set_partitions(struct mtd_partition *parts, int num_parts) |
| 259 | { |
| 260 | physmap_flash_data.nr_parts = num_parts; |
| 261 | physmap_flash_data.parts = parts; |
| 262 | } |
| 263 | #endif |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 264 | |
| 265 | static int __init physmap_init(void) |
| 266 | { |
| 267 | int err; |
| 268 | |
| 269 | err = platform_driver_register(&physmap_flash_driver); |
Mike Frysinger | dcb3e13 | 2008-12-01 14:23:40 -0800 | [diff] [blame] | 270 | #ifdef CONFIG_MTD_PHYSMAP_COMPAT |
H Hartley Sweeten | 1ca5d2f | 2010-04-02 17:46:30 -0500 | [diff] [blame] | 271 | if (err == 0) { |
| 272 | err = platform_device_register(&physmap_flash); |
| 273 | if (err) |
| 274 | platform_driver_unregister(&physmap_flash_driver); |
| 275 | } |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 276 | #endif |
| 277 | |
| 278 | return err; |
| 279 | } |
| 280 | |
| 281 | static void __exit physmap_exit(void) |
| 282 | { |
Mike Frysinger | dcb3e13 | 2008-12-01 14:23:40 -0800 | [diff] [blame] | 283 | #ifdef CONFIG_MTD_PHYSMAP_COMPAT |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame] | 284 | platform_device_unregister(&physmap_flash); |
| 285 | #endif |
| 286 | platform_driver_unregister(&physmap_flash_driver); |
| 287 | } |
| 288 | |
| 289 | module_init(physmap_init); |
| 290 | module_exit(physmap_exit); |
| 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | MODULE_LICENSE("GPL"); |
| 293 | MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>"); |
| 294 | MODULE_DESCRIPTION("Generic configurable MTD map driver"); |
Kay Sievers | 41d867c | 2008-04-18 13:44:26 -0700 | [diff] [blame] | 295 | |
| 296 | /* legacy platform drivers can't hotplug or coldplg */ |
Mike Frysinger | dcb3e13 | 2008-12-01 14:23:40 -0800 | [diff] [blame] | 297 | #ifndef CONFIG_MTD_PHYSMAP_COMPAT |
Kay Sievers | 41d867c | 2008-04-18 13:44:26 -0700 | [diff] [blame] | 298 | /* work with hotplug and coldplug */ |
| 299 | MODULE_ALIAS("platform:physmap-flash"); |
| 300 | #endif |