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