Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 1 | /* |
| 2 | * platform_device.h - generic, centralized driver model |
| 3 | * |
| 4 | * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org> |
| 5 | * |
| 6 | * This file is released under the GPLv2 |
| 7 | * |
| 8 | * See Documentation/driver-model/ for more information. |
| 9 | */ |
| 10 | |
| 11 | #ifndef _PLATFORM_DEVICE_H_ |
| 12 | #define _PLATFORM_DEVICE_H_ |
| 13 | |
| 14 | #include <linux/device.h> |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 15 | #include <linux/mod_devicetable.h> |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 16 | |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 17 | #define PLATFORM_DEVID_NONE (-1) |
| 18 | #define PLATFORM_DEVID_AUTO (-2) |
| 19 | |
Samuel Ortiz | e710d7d | 2011-04-08 00:43:01 +0200 | [diff] [blame] | 20 | struct mfd_cell; |
| 21 | |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 22 | struct platform_device { |
Fabio Porcedda | 6ae07f2 | 2013-03-26 10:35:17 +0100 | [diff] [blame] | 23 | const char *name; |
Jean Delvare | 1359555e | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 24 | int id; |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 25 | bool id_auto; |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 26 | struct device dev; |
| 27 | u32 num_resources; |
Fabio Porcedda | 6ae07f2 | 2013-03-26 10:35:17 +0100 | [diff] [blame] | 28 | struct resource *resource; |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 29 | |
Eric Miao | 3d03ba4 | 2010-01-01 15:43:28 +0800 | [diff] [blame] | 30 | const struct platform_device_id *id_entry; |
Magnus Damm | d7aacad | 2009-07-08 13:21:31 +0200 | [diff] [blame] | 31 | |
Samuel Ortiz | e710d7d | 2011-04-08 00:43:01 +0200 | [diff] [blame] | 32 | /* MFD cell pointer */ |
| 33 | struct mfd_cell *mfd_cell; |
| 34 | |
Magnus Damm | d7aacad | 2009-07-08 13:21:31 +0200 | [diff] [blame] | 35 | /* arch specific additions */ |
| 36 | struct pdev_archdata archdata; |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 37 | }; |
| 38 | |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 39 | #define platform_get_device_id(pdev) ((pdev)->id_entry) |
| 40 | |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 41 | #define to_platform_device(x) container_of((x), struct platform_device, dev) |
| 42 | |
| 43 | extern int platform_device_register(struct platform_device *); |
| 44 | extern void platform_device_unregister(struct platform_device *); |
| 45 | |
| 46 | extern struct bus_type platform_bus_type; |
| 47 | extern struct device platform_bus; |
| 48 | |
Kumar Gala | a77ce81 | 2011-06-10 01:52:57 -0500 | [diff] [blame] | 49 | extern void arch_setup_pdev_archdata(struct platform_device *); |
Fabio Porcedda | 6ae07f2 | 2013-03-26 10:35:17 +0100 | [diff] [blame] | 50 | extern struct resource *platform_get_resource(struct platform_device *, |
| 51 | unsigned int, unsigned int); |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 52 | extern int platform_get_irq(struct platform_device *, unsigned int); |
Fabio Porcedda | 6ae07f2 | 2013-03-26 10:35:17 +0100 | [diff] [blame] | 53 | extern struct resource *platform_get_resource_byname(struct platform_device *, |
| 54 | unsigned int, |
| 55 | const char *); |
Linus Walleij | c0afe7b | 2009-04-27 02:38:16 +0200 | [diff] [blame] | 56 | extern int platform_get_irq_byname(struct platform_device *, const char *); |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 57 | extern int platform_add_devices(struct platform_device **, int); |
| 58 | |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 59 | struct platform_device_info { |
| 60 | struct device *parent; |
Rafael J. Wysocki | 863f9f3 | 2012-11-21 00:21:59 +0100 | [diff] [blame] | 61 | struct acpi_dev_node acpi_node; |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 62 | |
| 63 | const char *name; |
| 64 | int id; |
| 65 | |
| 66 | const struct resource *res; |
| 67 | unsigned int num_res; |
| 68 | |
| 69 | const void *data; |
| 70 | size_t size_data; |
| 71 | u64 dma_mask; |
| 72 | }; |
| 73 | extern struct platform_device *platform_device_register_full( |
Uwe Kleine-König | 5a3072b | 2011-12-08 22:53:29 +0100 | [diff] [blame] | 74 | const struct platform_device_info *pdevinfo); |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 75 | |
| 76 | /** |
| 77 | * platform_device_register_resndata - add a platform-level device with |
| 78 | * resources and platform-specific data |
| 79 | * |
| 80 | * @parent: parent device for the device we're adding |
| 81 | * @name: base name of the device we're adding |
| 82 | * @id: instance id |
| 83 | * @res: set of resources that needs to be allocated for the device |
| 84 | * @num: number of resources |
| 85 | * @data: platform specific data for this platform device |
| 86 | * @size: size of platform specific data |
| 87 | * |
| 88 | * Returns &struct platform_device pointer on success, or ERR_PTR() on error. |
| 89 | */ |
| 90 | static inline struct platform_device *platform_device_register_resndata( |
Uwe Kleine-König | 44f28bd | 2010-06-21 16:11:44 +0200 | [diff] [blame] | 91 | struct device *parent, const char *name, int id, |
| 92 | const struct resource *res, unsigned int num, |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 93 | const void *data, size_t size) { |
| 94 | |
| 95 | struct platform_device_info pdevinfo = { |
| 96 | .parent = parent, |
| 97 | .name = name, |
| 98 | .id = id, |
| 99 | .res = res, |
| 100 | .num_res = num, |
| 101 | .data = data, |
| 102 | .size_data = size, |
| 103 | .dma_mask = 0, |
| 104 | }; |
| 105 | |
| 106 | return platform_device_register_full(&pdevinfo); |
| 107 | } |
Uwe Kleine-König | 44f28bd | 2010-06-21 16:11:44 +0200 | [diff] [blame] | 108 | |
| 109 | /** |
| 110 | * platform_device_register_simple - add a platform-level device and its resources |
| 111 | * @name: base name of the device we're adding |
| 112 | * @id: instance id |
| 113 | * @res: set of resources that needs to be allocated for the device |
| 114 | * @num: number of resources |
| 115 | * |
| 116 | * This function creates a simple platform device that requires minimal |
| 117 | * resource and memory management. Canned release function freeing memory |
| 118 | * allocated for the device allows drivers using such devices to be |
| 119 | * unloaded without waiting for the last reference to the device to be |
| 120 | * dropped. |
| 121 | * |
| 122 | * This interface is primarily intended for use with legacy drivers which |
| 123 | * probe hardware directly. Because such drivers create sysfs device nodes |
| 124 | * themselves, rather than letting system infrastructure handle such device |
| 125 | * enumeration tasks, they don't fully conform to the Linux driver model. |
| 126 | * In particular, when such drivers are built as modules, they can't be |
| 127 | * "hotplugged". |
| 128 | * |
| 129 | * Returns &struct platform_device pointer on success, or ERR_PTR() on error. |
| 130 | */ |
| 131 | static inline struct platform_device *platform_device_register_simple( |
| 132 | const char *name, int id, |
| 133 | const struct resource *res, unsigned int num) |
| 134 | { |
| 135 | return platform_device_register_resndata(NULL, name, id, |
| 136 | res, num, NULL, 0); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * platform_device_register_data - add a platform-level device with platform-specific data |
| 141 | * @parent: parent device for the device we're adding |
| 142 | * @name: base name of the device we're adding |
| 143 | * @id: instance id |
| 144 | * @data: platform specific data for this platform device |
| 145 | * @size: size of platform specific data |
| 146 | * |
| 147 | * This function creates a simple platform device that requires minimal |
| 148 | * resource and memory management. Canned release function freeing memory |
| 149 | * allocated for the device allows drivers using such devices to be |
| 150 | * unloaded without waiting for the last reference to the device to be |
| 151 | * dropped. |
| 152 | * |
| 153 | * Returns &struct platform_device pointer on success, or ERR_PTR() on error. |
| 154 | */ |
| 155 | static inline struct platform_device *platform_device_register_data( |
| 156 | struct device *parent, const char *name, int id, |
| 157 | const void *data, size_t size) |
| 158 | { |
| 159 | return platform_device_register_resndata(parent, name, id, |
| 160 | NULL, 0, data, size); |
| 161 | } |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 162 | |
Jean Delvare | 1359555e | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 163 | extern struct platform_device *platform_device_alloc(const char *name, int id); |
Geert Uytterhoeven | 0b7f1a7 | 2009-01-28 21:01:02 +0100 | [diff] [blame] | 164 | extern int platform_device_add_resources(struct platform_device *pdev, |
| 165 | const struct resource *res, |
| 166 | unsigned int num); |
Fabio Porcedda | 6ae07f2 | 2013-03-26 10:35:17 +0100 | [diff] [blame] | 167 | extern int platform_device_add_data(struct platform_device *pdev, |
| 168 | const void *data, size_t size); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 169 | extern int platform_device_add(struct platform_device *pdev); |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 170 | extern void platform_device_del(struct platform_device *pdev); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 171 | extern void platform_device_put(struct platform_device *pdev); |
| 172 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 173 | struct platform_driver { |
| 174 | int (*probe)(struct platform_device *); |
| 175 | int (*remove)(struct platform_device *); |
| 176 | void (*shutdown)(struct platform_device *); |
| 177 | int (*suspend)(struct platform_device *, pm_message_t state); |
| 178 | int (*resume)(struct platform_device *); |
| 179 | struct device_driver driver; |
Uwe Kleine-König | 831fad2 | 2010-01-26 09:35:00 +0100 | [diff] [blame] | 180 | const struct platform_device_id *id_table; |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 181 | }; |
| 182 | |
Rob Herring | 10dbc5e | 2013-04-21 16:38:31 -0500 | [diff] [blame] | 183 | #define to_platform_driver(drv) (container_of((drv), struct platform_driver, \ |
| 184 | driver)) |
| 185 | |
Libo Chen | 9447057 | 2013-05-25 12:40:50 +0800 | [diff] [blame] | 186 | /* |
| 187 | * use a macro to avoid include chaining to get THIS_MODULE |
| 188 | */ |
| 189 | #define platform_driver_register(drv) \ |
| 190 | __platform_driver_register(drv, THIS_MODULE) |
| 191 | extern int __platform_driver_register(struct platform_driver *, |
| 192 | struct module *); |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 193 | extern void platform_driver_unregister(struct platform_driver *); |
| 194 | |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 195 | /* non-hotpluggable platform devices may use this so that probe() and |
| 196 | * its support may live in __init sections, conserving runtime memory. |
| 197 | */ |
| 198 | extern int platform_driver_probe(struct platform_driver *driver, |
| 199 | int (*probe)(struct platform_device *)); |
| 200 | |
Marc Kleine-Budde | 71d6429 | 2011-02-16 23:23:27 +0100 | [diff] [blame] | 201 | static inline void *platform_get_drvdata(const struct platform_device *pdev) |
| 202 | { |
| 203 | return dev_get_drvdata(&pdev->dev); |
| 204 | } |
| 205 | |
Fabio Porcedda | 6ae07f2 | 2013-03-26 10:35:17 +0100 | [diff] [blame] | 206 | static inline void platform_set_drvdata(struct platform_device *pdev, |
| 207 | void *data) |
Marc Kleine-Budde | 71d6429 | 2011-02-16 23:23:27 +0100 | [diff] [blame] | 208 | { |
| 209 | dev_set_drvdata(&pdev->dev, data); |
| 210 | } |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 211 | |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 212 | /* module_platform_driver() - Helper macro for drivers that don't do |
| 213 | * anything special in module init/exit. This eliminates a lot of |
| 214 | * boilerplate. Each module may only use this macro once, and |
| 215 | * calling it replaces module_init() and module_exit() |
| 216 | */ |
| 217 | #define module_platform_driver(__platform_driver) \ |
Lars-Peter Clausen | 907d0ed | 2011-11-16 10:13:35 +0100 | [diff] [blame] | 218 | module_driver(__platform_driver, platform_driver_register, \ |
| 219 | platform_driver_unregister) |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 220 | |
Fabio Porcedda | bab734f | 2013-01-09 12:15:26 +0100 | [diff] [blame] | 221 | /* module_platform_driver_probe() - Helper macro for drivers that don't do |
| 222 | * anything special in module init/exit. This eliminates a lot of |
| 223 | * boilerplate. Each module may only use this macro once, and |
| 224 | * calling it replaces module_init() and module_exit() |
| 225 | */ |
| 226 | #define module_platform_driver_probe(__platform_driver, __platform_probe) \ |
| 227 | static int __init __platform_driver##_init(void) \ |
| 228 | { \ |
| 229 | return platform_driver_probe(&(__platform_driver), \ |
| 230 | __platform_probe); \ |
| 231 | } \ |
| 232 | module_init(__platform_driver##_init); \ |
| 233 | static void __exit __platform_driver##_exit(void) \ |
| 234 | { \ |
| 235 | platform_driver_unregister(&(__platform_driver)); \ |
| 236 | } \ |
| 237 | module_exit(__platform_driver##_exit); |
| 238 | |
Fabio Porcedda | 6ae07f2 | 2013-03-26 10:35:17 +0100 | [diff] [blame] | 239 | extern struct platform_device *platform_create_bundle( |
| 240 | struct platform_driver *driver, int (*probe)(struct platform_device *), |
| 241 | struct resource *res, unsigned int n_res, |
| 242 | const void *data, size_t size); |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 243 | |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 244 | /* early platform driver interface */ |
| 245 | struct early_platform_driver { |
| 246 | const char *class_str; |
| 247 | struct platform_driver *pdrv; |
| 248 | struct list_head list; |
| 249 | int requested_id; |
Magnus Damm | c60e050 | 2009-11-27 17:38:51 +0900 | [diff] [blame] | 250 | char *buffer; |
| 251 | int bufsize; |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | #define EARLY_PLATFORM_ID_UNSET -2 |
| 255 | #define EARLY_PLATFORM_ID_ERROR -3 |
| 256 | |
| 257 | extern int early_platform_driver_register(struct early_platform_driver *epdrv, |
| 258 | char *buf); |
| 259 | extern void early_platform_add_devices(struct platform_device **devs, int num); |
| 260 | |
| 261 | static inline int is_early_platform_device(struct platform_device *pdev) |
| 262 | { |
| 263 | return !pdev->dev.driver; |
| 264 | } |
| 265 | |
| 266 | extern void early_platform_driver_register_all(char *class_str); |
| 267 | extern int early_platform_driver_probe(char *class_str, |
| 268 | int nr_probe, int user_only); |
| 269 | extern void early_platform_cleanup(void); |
| 270 | |
Magnus Damm | c60e050 | 2009-11-27 17:38:51 +0900 | [diff] [blame] | 271 | #define early_platform_init(class_string, platdrv) \ |
| 272 | early_platform_init_buffer(class_string, platdrv, NULL, 0) |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 273 | |
| 274 | #ifndef MODULE |
Magnus Damm | c60e050 | 2009-11-27 17:38:51 +0900 | [diff] [blame] | 275 | #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \ |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 276 | static __initdata struct early_platform_driver early_driver = { \ |
| 277 | .class_str = class_string, \ |
Magnus Damm | c60e050 | 2009-11-27 17:38:51 +0900 | [diff] [blame] | 278 | .buffer = buf, \ |
| 279 | .bufsize = bufsiz, \ |
| 280 | .pdrv = platdrv, \ |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 281 | .requested_id = EARLY_PLATFORM_ID_UNSET, \ |
| 282 | }; \ |
Magnus Damm | c60e050 | 2009-11-27 17:38:51 +0900 | [diff] [blame] | 283 | static int __init early_platform_driver_setup_func(char *buffer) \ |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 284 | { \ |
Magnus Damm | c60e050 | 2009-11-27 17:38:51 +0900 | [diff] [blame] | 285 | return early_platform_driver_register(&early_driver, buffer); \ |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 286 | } \ |
| 287 | early_param(class_string, early_platform_driver_setup_func) |
| 288 | #else /* MODULE */ |
Magnus Damm | c60e050 | 2009-11-27 17:38:51 +0900 | [diff] [blame] | 289 | #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \ |
| 290 | static inline char *early_platform_driver_setup_func(void) \ |
| 291 | { \ |
| 292 | return bufsiz ? buf : NULL; \ |
| 293 | } |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 294 | #endif /* MODULE */ |
| 295 | |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 296 | #ifdef CONFIG_SUSPEND |
| 297 | extern int platform_pm_suspend(struct device *dev); |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 298 | extern int platform_pm_resume(struct device *dev); |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 299 | #else |
| 300 | #define platform_pm_suspend NULL |
| 301 | #define platform_pm_resume NULL |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 302 | #endif |
| 303 | |
| 304 | #ifdef CONFIG_HIBERNATE_CALLBACKS |
| 305 | extern int platform_pm_freeze(struct device *dev); |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 306 | extern int platform_pm_thaw(struct device *dev); |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 307 | extern int platform_pm_poweroff(struct device *dev); |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 308 | extern int platform_pm_restore(struct device *dev); |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 309 | #else |
| 310 | #define platform_pm_freeze NULL |
| 311 | #define platform_pm_thaw NULL |
| 312 | #define platform_pm_poweroff NULL |
| 313 | #define platform_pm_restore NULL |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 314 | #endif |
| 315 | |
| 316 | #ifdef CONFIG_PM_SLEEP |
| 317 | #define USE_PLATFORM_PM_SLEEP_OPS \ |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 318 | .suspend = platform_pm_suspend, \ |
| 319 | .resume = platform_pm_resume, \ |
| 320 | .freeze = platform_pm_freeze, \ |
| 321 | .thaw = platform_pm_thaw, \ |
| 322 | .poweroff = platform_pm_poweroff, \ |
Rafael J. Wysocki | 9b39e73 | 2011-12-18 00:34:24 +0100 | [diff] [blame] | 323 | .restore = platform_pm_restore, |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 324 | #else |
| 325 | #define USE_PLATFORM_PM_SLEEP_OPS |
| 326 | #endif |
| 327 | |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 328 | #endif /* _PLATFORM_DEVICE_H_ */ |