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