Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * platform.c - platform 'pseudo' bus for legacy devices |
| 3 | * |
| 4 | * Copyright (c) 2002-3 Patrick Mochel |
| 5 | * Copyright (c) 2002-3 Open Source Development Labs |
| 6 | * |
| 7 | * This file is released under the GPLv2 |
| 8 | * |
| 9 | * Please see Documentation/driver-model/platform.txt for more |
| 10 | * information. |
| 11 | */ |
| 12 | |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 13 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/dma-mapping.h> |
| 17 | #include <linux/bootmem.h> |
| 18 | #include <linux/err.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 19 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Ben Dooks | a1bdc7a | 2005-10-13 17:54:41 +0100 | [diff] [blame] | 21 | #include "base.h" |
| 22 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 23 | #define to_platform_driver(drv) (container_of((drv), struct platform_driver, \ |
| 24 | driver)) |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | struct device platform_bus = { |
| 27 | .bus_id = "platform", |
| 28 | }; |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 29 | EXPORT_SYMBOL_GPL(platform_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 32 | * platform_get_resource - get a resource for a device |
| 33 | * @dev: platform device |
| 34 | * @type: resource type |
| 35 | * @num: resource index |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 37 | struct resource *platform_get_resource(struct platform_device *dev, |
| 38 | unsigned int type, unsigned int num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { |
| 40 | int i; |
| 41 | |
| 42 | for (i = 0; i < dev->num_resources; i++) { |
| 43 | struct resource *r = &dev->resource[i]; |
| 44 | |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame^] | 45 | if (type == resource_type(r) && num-- == 0) |
| 46 | return r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | } |
| 48 | return NULL; |
| 49 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 50 | EXPORT_SYMBOL_GPL(platform_get_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 53 | * platform_get_irq - get an IRQ for a device |
| 54 | * @dev: platform device |
| 55 | * @num: IRQ number index |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | */ |
| 57 | int platform_get_irq(struct platform_device *dev, unsigned int num) |
| 58 | { |
| 59 | struct resource *r = platform_get_resource(dev, IORESOURCE_IRQ, num); |
| 60 | |
David Vrabel | 305b322 | 2006-01-19 17:52:27 +0000 | [diff] [blame] | 61 | return r ? r->start : -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 63 | EXPORT_SYMBOL_GPL(platform_get_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 66 | * platform_get_resource_byname - get a resource for a device by name |
| 67 | * @dev: platform device |
| 68 | * @type: resource type |
| 69 | * @name: resource name |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 71 | struct resource *platform_get_resource_byname(struct platform_device *dev, |
| 72 | unsigned int type, char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
| 74 | int i; |
| 75 | |
| 76 | for (i = 0; i < dev->num_resources; i++) { |
| 77 | struct resource *r = &dev->resource[i]; |
| 78 | |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame^] | 79 | if (type == resource_type(r) && !strcmp(r->name, name)) |
| 80 | return r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | return NULL; |
| 83 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 84 | EXPORT_SYMBOL_GPL(platform_get_resource_byname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 87 | * platform_get_irq - get an IRQ for a device |
| 88 | * @dev: platform device |
| 89 | * @name: IRQ name |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | */ |
| 91 | int platform_get_irq_byname(struct platform_device *dev, char *name) |
| 92 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 93 | struct resource *r = platform_get_resource_byname(dev, IORESOURCE_IRQ, |
| 94 | name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
David Vrabel | 305b322 | 2006-01-19 17:52:27 +0000 | [diff] [blame] | 96 | return r ? r->start : -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 98 | EXPORT_SYMBOL_GPL(platform_get_irq_byname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 101 | * platform_add_devices - add a numbers of platform devices |
| 102 | * @devs: array of platform devices to add |
| 103 | * @num: number of platform devices in array |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | */ |
| 105 | int platform_add_devices(struct platform_device **devs, int num) |
| 106 | { |
| 107 | int i, ret = 0; |
| 108 | |
| 109 | for (i = 0; i < num; i++) { |
| 110 | ret = platform_device_register(devs[i]); |
| 111 | if (ret) { |
| 112 | while (--i >= 0) |
| 113 | platform_device_unregister(devs[i]); |
| 114 | break; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | return ret; |
| 119 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 120 | EXPORT_SYMBOL_GPL(platform_add_devices); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 122 | struct platform_object { |
| 123 | struct platform_device pdev; |
| 124 | char name[1]; |
| 125 | }; |
| 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 128 | * platform_device_put |
| 129 | * @pdev: platform device to free |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 130 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 131 | * Free all memory associated with a platform device. This function must |
| 132 | * _only_ be externally called in error cases. All other usage is a bug. |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 133 | */ |
| 134 | void platform_device_put(struct platform_device *pdev) |
| 135 | { |
| 136 | if (pdev) |
| 137 | put_device(&pdev->dev); |
| 138 | } |
| 139 | EXPORT_SYMBOL_GPL(platform_device_put); |
| 140 | |
| 141 | static void platform_device_release(struct device *dev) |
| 142 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 143 | struct platform_object *pa = container_of(dev, struct platform_object, |
| 144 | pdev.dev); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 145 | |
| 146 | kfree(pa->pdev.dev.platform_data); |
| 147 | kfree(pa->pdev.resource); |
| 148 | kfree(pa); |
| 149 | } |
| 150 | |
| 151 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 152 | * platform_device_alloc |
| 153 | * @name: base name of the device we're adding |
| 154 | * @id: instance id |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 155 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 156 | * Create a platform device object which can have other objects attached |
| 157 | * to it, and which will have attached objects freed when it is released. |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 158 | */ |
Jean Delvare | 1359555e | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 159 | struct platform_device *platform_device_alloc(const char *name, int id) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 160 | { |
| 161 | struct platform_object *pa; |
| 162 | |
| 163 | pa = kzalloc(sizeof(struct platform_object) + strlen(name), GFP_KERNEL); |
| 164 | if (pa) { |
| 165 | strcpy(pa->name, name); |
| 166 | pa->pdev.name = pa->name; |
| 167 | pa->pdev.id = id; |
| 168 | device_initialize(&pa->pdev.dev); |
| 169 | pa->pdev.dev.release = platform_device_release; |
| 170 | } |
| 171 | |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 172 | return pa ? &pa->pdev : NULL; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 173 | } |
| 174 | EXPORT_SYMBOL_GPL(platform_device_alloc); |
| 175 | |
| 176 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 177 | * platform_device_add_resources |
| 178 | * @pdev: platform device allocated by platform_device_alloc to add resources to |
| 179 | * @res: set of resources that needs to be allocated for the device |
| 180 | * @num: number of resources |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 181 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 182 | * Add a copy of the resources to the platform device. The memory |
| 183 | * associated with the resources will be freed when the platform device is |
| 184 | * released. |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 185 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 186 | int platform_device_add_resources(struct platform_device *pdev, |
| 187 | struct resource *res, unsigned int num) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 188 | { |
| 189 | struct resource *r; |
| 190 | |
| 191 | r = kmalloc(sizeof(struct resource) * num, GFP_KERNEL); |
| 192 | if (r) { |
| 193 | memcpy(r, res, sizeof(struct resource) * num); |
| 194 | pdev->resource = r; |
| 195 | pdev->num_resources = num; |
| 196 | } |
| 197 | return r ? 0 : -ENOMEM; |
| 198 | } |
| 199 | EXPORT_SYMBOL_GPL(platform_device_add_resources); |
| 200 | |
| 201 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 202 | * platform_device_add_data |
| 203 | * @pdev: platform device allocated by platform_device_alloc to add resources to |
| 204 | * @data: platform specific data for this platform device |
| 205 | * @size: size of platform specific data |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 206 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 207 | * Add a copy of platform specific data to the platform device's |
| 208 | * platform_data pointer. The memory associated with the platform data |
| 209 | * will be freed when the platform device is released. |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 210 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 211 | int platform_device_add_data(struct platform_device *pdev, const void *data, |
| 212 | size_t size) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 213 | { |
| 214 | void *d; |
| 215 | |
| 216 | d = kmalloc(size, GFP_KERNEL); |
| 217 | if (d) { |
| 218 | memcpy(d, data, size); |
| 219 | pdev->dev.platform_data = d; |
| 220 | } |
| 221 | return d ? 0 : -ENOMEM; |
| 222 | } |
| 223 | EXPORT_SYMBOL_GPL(platform_device_add_data); |
| 224 | |
| 225 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 226 | * platform_device_add - add a platform device to device hierarchy |
| 227 | * @pdev: platform device we're adding |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 229 | * This is part 2 of platform_device_register(), though may be called |
| 230 | * separately _iff_ pdev was allocated by platform_device_alloc(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | */ |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 232 | int platform_device_add(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
| 234 | int i, ret = 0; |
| 235 | |
| 236 | if (!pdev) |
| 237 | return -EINVAL; |
| 238 | |
| 239 | if (!pdev->dev.parent) |
| 240 | pdev->dev.parent = &platform_bus; |
| 241 | |
| 242 | pdev->dev.bus = &platform_bus_type; |
| 243 | |
| 244 | if (pdev->id != -1) |
Jean Delvare | 1359555e | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 245 | snprintf(pdev->dev.bus_id, BUS_ID_SIZE, "%s.%d", pdev->name, |
| 246 | pdev->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | else |
| 248 | strlcpy(pdev->dev.bus_id, pdev->name, BUS_ID_SIZE); |
| 249 | |
| 250 | for (i = 0; i < pdev->num_resources; i++) { |
| 251 | struct resource *p, *r = &pdev->resource[i]; |
| 252 | |
| 253 | if (r->name == NULL) |
| 254 | r->name = pdev->dev.bus_id; |
| 255 | |
| 256 | p = r->parent; |
| 257 | if (!p) { |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame^] | 258 | if (resource_type(r) == IORESOURCE_MEM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | p = &iomem_resource; |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame^] | 260 | else if (resource_type(r) == IORESOURCE_IO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | p = &ioport_resource; |
| 262 | } |
| 263 | |
Kumar Gala | d960bb4 | 2005-11-28 10:15:39 -0600 | [diff] [blame] | 264 | if (p && insert_resource(p, r)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | printk(KERN_ERR |
| 266 | "%s: failed to claim resource %d\n", |
| 267 | pdev->dev.bus_id, i); |
| 268 | ret = -EBUSY; |
| 269 | goto failed; |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | pr_debug("Registering platform device '%s'. Parent at %s\n", |
| 274 | pdev->dev.bus_id, pdev->dev.parent->bus_id); |
| 275 | |
Russell King | e391553 | 2006-05-06 08:15:26 +0100 | [diff] [blame] | 276 | ret = device_add(&pdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | if (ret == 0) |
| 278 | return ret; |
| 279 | |
| 280 | failed: |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame^] | 281 | while (--i >= 0) { |
| 282 | struct resource *r = &pdev->resource[i]; |
| 283 | unsigned long type = resource_type(r); |
| 284 | |
| 285 | if (type == IORESOURCE_MEM || type == IORESOURCE_IO) |
| 286 | release_resource(r); |
| 287 | } |
| 288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | return ret; |
| 290 | } |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 291 | EXPORT_SYMBOL_GPL(platform_device_add); |
| 292 | |
| 293 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 294 | * platform_device_del - remove a platform-level device |
| 295 | * @pdev: platform device we're removing |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 296 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 297 | * Note that this function will also release all memory- and port-based |
| 298 | * resources owned by the device (@dev->resource). This function must |
| 299 | * _only_ be externally called in error cases. All other usage is a bug. |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 300 | */ |
| 301 | void platform_device_del(struct platform_device *pdev) |
| 302 | { |
| 303 | int i; |
| 304 | |
| 305 | if (pdev) { |
Jean Delvare | dc4c15d | 2007-05-02 20:55:54 +0200 | [diff] [blame] | 306 | device_del(&pdev->dev); |
| 307 | |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 308 | for (i = 0; i < pdev->num_resources; i++) { |
| 309 | struct resource *r = &pdev->resource[i]; |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame^] | 310 | unsigned long type = resource_type(r); |
| 311 | |
| 312 | if (type == IORESOURCE_MEM || type == IORESOURCE_IO) |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 313 | release_resource(r); |
| 314 | } |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | EXPORT_SYMBOL_GPL(platform_device_del); |
| 318 | |
| 319 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 320 | * platform_device_register - add a platform-level device |
| 321 | * @pdev: platform device we're adding |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 322 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 323 | int platform_device_register(struct platform_device *pdev) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 324 | { |
| 325 | device_initialize(&pdev->dev); |
| 326 | return platform_device_add(pdev); |
| 327 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 328 | EXPORT_SYMBOL_GPL(platform_device_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
| 330 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 331 | * platform_device_unregister - unregister a platform-level device |
| 332 | * @pdev: platform device we're unregistering |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 334 | * Unregistration is done in 2 steps. First we release all resources |
| 335 | * and remove it from the subsystem, then we drop reference count by |
| 336 | * calling platform_device_put(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 338 | void platform_device_unregister(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | { |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 340 | platform_device_del(pdev); |
| 341 | platform_device_put(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 343 | EXPORT_SYMBOL_GPL(platform_device_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 346 | * platform_device_register_simple |
| 347 | * @name: base name of the device we're adding |
| 348 | * @id: instance id |
| 349 | * @res: set of resources that needs to be allocated for the device |
| 350 | * @num: number of resources |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 352 | * This function creates a simple platform device that requires minimal |
| 353 | * resource and memory management. Canned release function freeing memory |
| 354 | * allocated for the device allows drivers using such devices to be |
| 355 | * unloaded without waiting for the last reference to the device to be |
| 356 | * dropped. |
David Brownell | 49a4ec1 | 2007-05-08 00:29:39 -0700 | [diff] [blame] | 357 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 358 | * This interface is primarily intended for use with legacy drivers which |
| 359 | * probe hardware directly. Because such drivers create sysfs device nodes |
| 360 | * themselves, rather than letting system infrastructure handle such device |
| 361 | * enumeration tasks, they don't fully conform to the Linux driver model. |
| 362 | * In particular, when such drivers are built as modules, they can't be |
| 363 | * "hotplugged". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 365 | struct platform_device *platform_device_register_simple(const char *name, |
| 366 | int id, |
| 367 | struct resource *res, |
| 368 | unsigned int num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | { |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 370 | struct platform_device *pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | int retval; |
| 372 | |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 373 | pdev = platform_device_alloc(name, id); |
| 374 | if (!pdev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | retval = -ENOMEM; |
| 376 | goto error; |
| 377 | } |
| 378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | if (num) { |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 380 | retval = platform_device_add_resources(pdev, res, num); |
| 381 | if (retval) |
| 382 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 385 | retval = platform_device_add(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | if (retval) |
| 387 | goto error; |
| 388 | |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 389 | return pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
| 391 | error: |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 392 | platform_device_put(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | return ERR_PTR(retval); |
| 394 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 395 | EXPORT_SYMBOL_GPL(platform_device_register_simple); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 397 | static int platform_drv_probe(struct device *_dev) |
| 398 | { |
| 399 | struct platform_driver *drv = to_platform_driver(_dev->driver); |
| 400 | struct platform_device *dev = to_platform_device(_dev); |
| 401 | |
| 402 | return drv->probe(dev); |
| 403 | } |
| 404 | |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 405 | static int platform_drv_probe_fail(struct device *_dev) |
| 406 | { |
| 407 | return -ENXIO; |
| 408 | } |
| 409 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 410 | static int platform_drv_remove(struct device *_dev) |
| 411 | { |
| 412 | struct platform_driver *drv = to_platform_driver(_dev->driver); |
| 413 | struct platform_device *dev = to_platform_device(_dev); |
| 414 | |
| 415 | return drv->remove(dev); |
| 416 | } |
| 417 | |
| 418 | static void platform_drv_shutdown(struct device *_dev) |
| 419 | { |
| 420 | struct platform_driver *drv = to_platform_driver(_dev->driver); |
| 421 | struct platform_device *dev = to_platform_device(_dev); |
| 422 | |
| 423 | drv->shutdown(dev); |
| 424 | } |
| 425 | |
| 426 | static int platform_drv_suspend(struct device *_dev, pm_message_t state) |
| 427 | { |
| 428 | struct platform_driver *drv = to_platform_driver(_dev->driver); |
| 429 | struct platform_device *dev = to_platform_device(_dev); |
| 430 | |
| 431 | return drv->suspend(dev, state); |
| 432 | } |
| 433 | |
| 434 | static int platform_drv_resume(struct device *_dev) |
| 435 | { |
| 436 | struct platform_driver *drv = to_platform_driver(_dev->driver); |
| 437 | struct platform_device *dev = to_platform_device(_dev); |
| 438 | |
| 439 | return drv->resume(dev); |
| 440 | } |
| 441 | |
| 442 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 443 | * platform_driver_register |
| 444 | * @drv: platform driver structure |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 445 | */ |
| 446 | int platform_driver_register(struct platform_driver *drv) |
| 447 | { |
| 448 | drv->driver.bus = &platform_bus_type; |
| 449 | if (drv->probe) |
| 450 | drv->driver.probe = platform_drv_probe; |
| 451 | if (drv->remove) |
| 452 | drv->driver.remove = platform_drv_remove; |
| 453 | if (drv->shutdown) |
| 454 | drv->driver.shutdown = platform_drv_shutdown; |
| 455 | if (drv->suspend) |
| 456 | drv->driver.suspend = platform_drv_suspend; |
| 457 | if (drv->resume) |
| 458 | drv->driver.resume = platform_drv_resume; |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 459 | if (drv->pm) |
| 460 | drv->driver.pm = &drv->pm->base; |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 461 | return driver_register(&drv->driver); |
| 462 | } |
| 463 | EXPORT_SYMBOL_GPL(platform_driver_register); |
| 464 | |
| 465 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 466 | * platform_driver_unregister |
| 467 | * @drv: platform driver structure |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 468 | */ |
| 469 | void platform_driver_unregister(struct platform_driver *drv) |
| 470 | { |
| 471 | driver_unregister(&drv->driver); |
| 472 | } |
| 473 | EXPORT_SYMBOL_GPL(platform_driver_unregister); |
| 474 | |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 475 | /** |
| 476 | * platform_driver_probe - register driver for non-hotpluggable device |
| 477 | * @drv: platform driver structure |
| 478 | * @probe: the driver probe routine, probably from an __init section |
| 479 | * |
| 480 | * Use this instead of platform_driver_register() when you know the device |
| 481 | * is not hotpluggable and has already been registered, and you want to |
| 482 | * remove its run-once probe() infrastructure from memory after the driver |
| 483 | * has bound to the device. |
| 484 | * |
| 485 | * One typical use for this would be with drivers for controllers integrated |
| 486 | * into system-on-chip processors, where the controller devices have been |
| 487 | * configured as part of board setup. |
| 488 | * |
| 489 | * Returns zero if the driver registered and bound to a device, else returns |
| 490 | * a negative error code and with the driver not registered. |
| 491 | */ |
Andrew Morton | c63e078 | 2006-12-04 14:56:36 -0800 | [diff] [blame] | 492 | int __init_or_module platform_driver_probe(struct platform_driver *drv, |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 493 | int (*probe)(struct platform_device *)) |
| 494 | { |
| 495 | int retval, code; |
| 496 | |
| 497 | /* temporary section violation during probe() */ |
| 498 | drv->probe = probe; |
| 499 | retval = code = platform_driver_register(drv); |
| 500 | |
| 501 | /* Fixup that section violation, being paranoid about code scanning |
| 502 | * the list of drivers in order to probe new devices. Check to see |
| 503 | * if the probe was successful, and make sure any forced probes of |
| 504 | * new devices fail. |
| 505 | */ |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 506 | spin_lock(&platform_bus_type.p->klist_drivers.k_lock); |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 507 | drv->probe = NULL; |
Greg Kroah-Hartman | e5dd127 | 2007-11-28 15:59:15 -0800 | [diff] [blame] | 508 | if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list)) |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 509 | retval = -ENODEV; |
| 510 | drv->driver.probe = platform_drv_probe_fail; |
Greg Kroah-Hartman | c6f7e72 | 2007-11-01 19:41:16 -0700 | [diff] [blame] | 511 | spin_unlock(&platform_bus_type.p->klist_drivers.k_lock); |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 512 | |
| 513 | if (code != retval) |
| 514 | platform_driver_unregister(drv); |
| 515 | return retval; |
| 516 | } |
| 517 | EXPORT_SYMBOL_GPL(platform_driver_probe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 519 | /* modalias support enables more hands-off userspace setup: |
| 520 | * (a) environment variable lets new-style hotplug events work once system is |
| 521 | * fully running: "modprobe $MODALIAS" |
| 522 | * (b) sysfs attribute lets new-style coldplug recover from hotplug events |
| 523 | * mishandled before system is fully running: "modprobe $(cat modalias)" |
| 524 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 525 | static ssize_t modalias_show(struct device *dev, struct device_attribute *a, |
| 526 | char *buf) |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 527 | { |
| 528 | struct platform_device *pdev = to_platform_device(dev); |
Kay Sievers | 43cc71e | 2007-08-18 04:40:39 +0200 | [diff] [blame] | 529 | int len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name); |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 530 | |
| 531 | return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len; |
| 532 | } |
| 533 | |
| 534 | static struct device_attribute platform_dev_attrs[] = { |
| 535 | __ATTR_RO(modalias), |
| 536 | __ATTR_NULL, |
| 537 | }; |
| 538 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 539 | static int platform_uevent(struct device *dev, struct kobj_uevent_env *env) |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 540 | { |
| 541 | struct platform_device *pdev = to_platform_device(dev); |
| 542 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 543 | add_uevent_var(env, "MODALIAS=platform:%s", pdev->name); |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 544 | return 0; |
| 545 | } |
| 546 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 548 | * platform_match - bind platform device to platform driver. |
| 549 | * @dev: device. |
| 550 | * @drv: driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 552 | * Platform device IDs are assumed to be encoded like this: |
| 553 | * "<name><instance>", where <name> is a short description of the type of |
| 554 | * device, like "pci" or "floppy", and <instance> is the enumerated |
| 555 | * instance of the device, like '0' or '42'. Driver IDs are simply |
| 556 | * "<name>". So, extract the <name> from the platform_device structure, |
| 557 | * and compare it against the name of the driver. Return whether they match |
| 558 | * or not. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 560 | static int platform_match(struct device *dev, struct device_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 562 | struct platform_device *pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 564 | pdev = container_of(dev, struct platform_device, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | return (strncmp(pdev->name, drv->name, BUS_ID_SIZE) == 0); |
| 566 | } |
| 567 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 568 | #ifdef CONFIG_PM_SLEEP |
| 569 | |
| 570 | static int platform_legacy_suspend(struct device *dev, pm_message_t mesg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | { |
| 572 | int ret = 0; |
| 573 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 574 | if (dev->driver && dev->driver->suspend) |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 575 | ret = dev->driver->suspend(dev, mesg); |
| 576 | |
| 577 | return ret; |
| 578 | } |
| 579 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 580 | static int platform_legacy_suspend_late(struct device *dev, pm_message_t mesg) |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 581 | { |
| 582 | struct platform_driver *drv = to_platform_driver(dev->driver); |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 583 | struct platform_device *pdev; |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 584 | int ret = 0; |
| 585 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 586 | pdev = container_of(dev, struct platform_device, dev); |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 587 | if (dev->driver && drv->suspend_late) |
| 588 | ret = drv->suspend_late(pdev, mesg); |
| 589 | |
| 590 | return ret; |
| 591 | } |
| 592 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 593 | static int platform_legacy_resume_early(struct device *dev) |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 594 | { |
| 595 | struct platform_driver *drv = to_platform_driver(dev->driver); |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 596 | struct platform_device *pdev; |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 597 | int ret = 0; |
| 598 | |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 599 | pdev = container_of(dev, struct platform_device, dev); |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 600 | if (dev->driver && drv->resume_early) |
| 601 | ret = drv->resume_early(pdev); |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | return ret; |
| 604 | } |
| 605 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 606 | static int platform_legacy_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | { |
| 608 | int ret = 0; |
| 609 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 610 | if (dev->driver && dev->driver->resume) |
| 611 | ret = dev->driver->resume(dev); |
| 612 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | return ret; |
| 614 | } |
| 615 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 616 | static int platform_pm_prepare(struct device *dev) |
| 617 | { |
| 618 | struct device_driver *drv = dev->driver; |
| 619 | int ret = 0; |
| 620 | |
| 621 | if (drv && drv->pm && drv->pm->prepare) |
| 622 | ret = drv->pm->prepare(dev); |
| 623 | |
| 624 | return ret; |
| 625 | } |
| 626 | |
| 627 | static void platform_pm_complete(struct device *dev) |
| 628 | { |
| 629 | struct device_driver *drv = dev->driver; |
| 630 | |
| 631 | if (drv && drv->pm && drv->pm->complete) |
| 632 | drv->pm->complete(dev); |
| 633 | } |
| 634 | |
| 635 | #ifdef CONFIG_SUSPEND |
| 636 | |
| 637 | static int platform_pm_suspend(struct device *dev) |
| 638 | { |
| 639 | struct device_driver *drv = dev->driver; |
| 640 | int ret = 0; |
| 641 | |
| 642 | if (drv && drv->pm) { |
| 643 | if (drv->pm->suspend) |
| 644 | ret = drv->pm->suspend(dev); |
| 645 | } else { |
| 646 | ret = platform_legacy_suspend(dev, PMSG_SUSPEND); |
| 647 | } |
| 648 | |
| 649 | return ret; |
| 650 | } |
| 651 | |
| 652 | static int platform_pm_suspend_noirq(struct device *dev) |
| 653 | { |
| 654 | struct platform_driver *pdrv; |
| 655 | int ret = 0; |
| 656 | |
| 657 | if (!dev->driver) |
| 658 | return 0; |
| 659 | |
| 660 | pdrv = to_platform_driver(dev->driver); |
| 661 | if (pdrv->pm) { |
| 662 | if (pdrv->pm->suspend_noirq) |
| 663 | ret = pdrv->pm->suspend_noirq(dev); |
| 664 | } else { |
| 665 | ret = platform_legacy_suspend_late(dev, PMSG_SUSPEND); |
| 666 | } |
| 667 | |
| 668 | return ret; |
| 669 | } |
| 670 | |
| 671 | static int platform_pm_resume(struct device *dev) |
| 672 | { |
| 673 | struct device_driver *drv = dev->driver; |
| 674 | int ret = 0; |
| 675 | |
| 676 | if (drv && drv->pm) { |
| 677 | if (drv->pm->resume) |
| 678 | ret = drv->pm->resume(dev); |
| 679 | } else { |
| 680 | ret = platform_legacy_resume(dev); |
| 681 | } |
| 682 | |
| 683 | return ret; |
| 684 | } |
| 685 | |
| 686 | static int platform_pm_resume_noirq(struct device *dev) |
| 687 | { |
| 688 | struct platform_driver *pdrv; |
| 689 | int ret = 0; |
| 690 | |
| 691 | if (!dev->driver) |
| 692 | return 0; |
| 693 | |
| 694 | pdrv = to_platform_driver(dev->driver); |
| 695 | if (pdrv->pm) { |
| 696 | if (pdrv->pm->resume_noirq) |
| 697 | ret = pdrv->pm->resume_noirq(dev); |
| 698 | } else { |
| 699 | ret = platform_legacy_resume_early(dev); |
| 700 | } |
| 701 | |
| 702 | return ret; |
| 703 | } |
| 704 | |
| 705 | #else /* !CONFIG_SUSPEND */ |
| 706 | |
| 707 | #define platform_pm_suspend NULL |
| 708 | #define platform_pm_resume NULL |
| 709 | #define platform_pm_suspend_noirq NULL |
| 710 | #define platform_pm_resume_noirq NULL |
| 711 | |
| 712 | #endif /* !CONFIG_SUSPEND */ |
| 713 | |
| 714 | #ifdef CONFIG_HIBERNATION |
| 715 | |
| 716 | static int platform_pm_freeze(struct device *dev) |
| 717 | { |
| 718 | struct device_driver *drv = dev->driver; |
| 719 | int ret = 0; |
| 720 | |
| 721 | if (!drv) |
| 722 | return 0; |
| 723 | |
| 724 | if (drv->pm) { |
| 725 | if (drv->pm->freeze) |
| 726 | ret = drv->pm->freeze(dev); |
| 727 | } else { |
| 728 | ret = platform_legacy_suspend(dev, PMSG_FREEZE); |
| 729 | } |
| 730 | |
| 731 | return ret; |
| 732 | } |
| 733 | |
| 734 | static int platform_pm_freeze_noirq(struct device *dev) |
| 735 | { |
| 736 | struct platform_driver *pdrv; |
| 737 | int ret = 0; |
| 738 | |
| 739 | if (!dev->driver) |
| 740 | return 0; |
| 741 | |
| 742 | pdrv = to_platform_driver(dev->driver); |
| 743 | if (pdrv->pm) { |
| 744 | if (pdrv->pm->freeze_noirq) |
| 745 | ret = pdrv->pm->freeze_noirq(dev); |
| 746 | } else { |
| 747 | ret = platform_legacy_suspend_late(dev, PMSG_FREEZE); |
| 748 | } |
| 749 | |
| 750 | return ret; |
| 751 | } |
| 752 | |
| 753 | static int platform_pm_thaw(struct device *dev) |
| 754 | { |
| 755 | struct device_driver *drv = dev->driver; |
| 756 | int ret = 0; |
| 757 | |
| 758 | if (drv && drv->pm) { |
| 759 | if (drv->pm->thaw) |
| 760 | ret = drv->pm->thaw(dev); |
| 761 | } else { |
| 762 | ret = platform_legacy_resume(dev); |
| 763 | } |
| 764 | |
| 765 | return ret; |
| 766 | } |
| 767 | |
| 768 | static int platform_pm_thaw_noirq(struct device *dev) |
| 769 | { |
| 770 | struct platform_driver *pdrv; |
| 771 | int ret = 0; |
| 772 | |
| 773 | if (!dev->driver) |
| 774 | return 0; |
| 775 | |
| 776 | pdrv = to_platform_driver(dev->driver); |
| 777 | if (pdrv->pm) { |
| 778 | if (pdrv->pm->thaw_noirq) |
| 779 | ret = pdrv->pm->thaw_noirq(dev); |
| 780 | } else { |
| 781 | ret = platform_legacy_resume_early(dev); |
| 782 | } |
| 783 | |
| 784 | return ret; |
| 785 | } |
| 786 | |
| 787 | static int platform_pm_poweroff(struct device *dev) |
| 788 | { |
| 789 | struct device_driver *drv = dev->driver; |
| 790 | int ret = 0; |
| 791 | |
| 792 | if (drv && drv->pm) { |
| 793 | if (drv->pm->poweroff) |
| 794 | ret = drv->pm->poweroff(dev); |
| 795 | } else { |
| 796 | ret = platform_legacy_suspend(dev, PMSG_HIBERNATE); |
| 797 | } |
| 798 | |
| 799 | return ret; |
| 800 | } |
| 801 | |
| 802 | static int platform_pm_poweroff_noirq(struct device *dev) |
| 803 | { |
| 804 | struct platform_driver *pdrv; |
| 805 | int ret = 0; |
| 806 | |
| 807 | if (!dev->driver) |
| 808 | return 0; |
| 809 | |
| 810 | pdrv = to_platform_driver(dev->driver); |
| 811 | if (pdrv->pm) { |
| 812 | if (pdrv->pm->poweroff_noirq) |
| 813 | ret = pdrv->pm->poweroff_noirq(dev); |
| 814 | } else { |
| 815 | ret = platform_legacy_suspend_late(dev, PMSG_HIBERNATE); |
| 816 | } |
| 817 | |
| 818 | return ret; |
| 819 | } |
| 820 | |
| 821 | static int platform_pm_restore(struct device *dev) |
| 822 | { |
| 823 | struct device_driver *drv = dev->driver; |
| 824 | int ret = 0; |
| 825 | |
| 826 | if (drv && drv->pm) { |
| 827 | if (drv->pm->restore) |
| 828 | ret = drv->pm->restore(dev); |
| 829 | } else { |
| 830 | ret = platform_legacy_resume(dev); |
| 831 | } |
| 832 | |
| 833 | return ret; |
| 834 | } |
| 835 | |
| 836 | static int platform_pm_restore_noirq(struct device *dev) |
| 837 | { |
| 838 | struct platform_driver *pdrv; |
| 839 | int ret = 0; |
| 840 | |
| 841 | if (!dev->driver) |
| 842 | return 0; |
| 843 | |
| 844 | pdrv = to_platform_driver(dev->driver); |
| 845 | if (pdrv->pm) { |
| 846 | if (pdrv->pm->restore_noirq) |
| 847 | ret = pdrv->pm->restore_noirq(dev); |
| 848 | } else { |
| 849 | ret = platform_legacy_resume_early(dev); |
| 850 | } |
| 851 | |
| 852 | return ret; |
| 853 | } |
| 854 | |
| 855 | #else /* !CONFIG_HIBERNATION */ |
| 856 | |
| 857 | #define platform_pm_freeze NULL |
| 858 | #define platform_pm_thaw NULL |
| 859 | #define platform_pm_poweroff NULL |
| 860 | #define platform_pm_restore NULL |
| 861 | #define platform_pm_freeze_noirq NULL |
| 862 | #define platform_pm_thaw_noirq NULL |
| 863 | #define platform_pm_poweroff_noirq NULL |
| 864 | #define platform_pm_restore_noirq NULL |
| 865 | |
| 866 | #endif /* !CONFIG_HIBERNATION */ |
| 867 | |
| 868 | struct pm_ext_ops platform_pm_ops = { |
| 869 | .base = { |
| 870 | .prepare = platform_pm_prepare, |
| 871 | .complete = platform_pm_complete, |
| 872 | .suspend = platform_pm_suspend, |
| 873 | .resume = platform_pm_resume, |
| 874 | .freeze = platform_pm_freeze, |
| 875 | .thaw = platform_pm_thaw, |
| 876 | .poweroff = platform_pm_poweroff, |
| 877 | .restore = platform_pm_restore, |
| 878 | }, |
| 879 | .suspend_noirq = platform_pm_suspend_noirq, |
| 880 | .resume_noirq = platform_pm_resume_noirq, |
| 881 | .freeze_noirq = platform_pm_freeze_noirq, |
| 882 | .thaw_noirq = platform_pm_thaw_noirq, |
| 883 | .poweroff_noirq = platform_pm_poweroff_noirq, |
| 884 | .restore_noirq = platform_pm_restore_noirq, |
| 885 | }; |
| 886 | |
| 887 | #define PLATFORM_PM_OPS_PTR &platform_pm_ops |
| 888 | |
| 889 | #else /* !CONFIG_PM_SLEEP */ |
| 890 | |
| 891 | #define PLATFORM_PM_OPS_PTR NULL |
| 892 | |
| 893 | #endif /* !CONFIG_PM_SLEEP */ |
| 894 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | struct bus_type platform_bus_type = { |
| 896 | .name = "platform", |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 897 | .dev_attrs = platform_dev_attrs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | .match = platform_match, |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 899 | .uevent = platform_uevent, |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 900 | .pm = PLATFORM_PM_OPS_PTR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | }; |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 902 | EXPORT_SYMBOL_GPL(platform_bus_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | |
| 904 | int __init platform_bus_init(void) |
| 905 | { |
Cornelia Huck | fbfb144 | 2006-11-27 10:35:08 +0100 | [diff] [blame] | 906 | int error; |
| 907 | |
| 908 | error = device_register(&platform_bus); |
| 909 | if (error) |
| 910 | return error; |
| 911 | error = bus_register(&platform_bus_type); |
| 912 | if (error) |
| 913 | device_unregister(&platform_bus); |
| 914 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | #ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK |
| 918 | u64 dma_get_required_mask(struct device *dev) |
| 919 | { |
| 920 | u32 low_totalram = ((max_pfn - 1) << PAGE_SHIFT); |
| 921 | u32 high_totalram = ((max_pfn - 1) >> (32 - PAGE_SHIFT)); |
| 922 | u64 mask; |
| 923 | |
| 924 | if (!high_totalram) { |
| 925 | /* convert to mask just covering totalram */ |
| 926 | low_totalram = (1 << (fls(low_totalram) - 1)); |
| 927 | low_totalram += low_totalram - 1; |
| 928 | mask = low_totalram; |
| 929 | } else { |
| 930 | high_totalram = (1 << (fls(high_totalram) - 1)); |
| 931 | high_totalram += high_totalram - 1; |
| 932 | mask = (((u64)high_totalram) << 32) + 0xffffffff; |
| 933 | } |
James Bottomley | e88a0c2 | 2008-03-09 11:57:56 -0500 | [diff] [blame] | 934 | return mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | } |
| 936 | EXPORT_SYMBOL_GPL(dma_get_required_mask); |
| 937 | #endif |