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