2 * platform_device.h - generic, centralized driver model
4 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
6 * This file is released under the GPLv2
8 * See Documentation/driver-model/ for more information.
11 #ifndef _PLATFORM_DEVICE_H_
12 #define _PLATFORM_DEVICE_H_
14 #include <linux/device.h>
15 #include <linux/mod_devicetable.h>
17 #define PLATFORM_DEVID_NONE (-1)
18 #define PLATFORM_DEVID_AUTO (-2)
21 struct property_entry
;
23 struct platform_device
{
29 struct resource
*resource
;
31 const struct platform_device_id
*id_entry
;
32 char *driver_override
; /* Driver name to force a match */
34 /* MFD cell pointer */
35 struct mfd_cell
*mfd_cell
;
37 /* arch specific additions */
38 struct pdev_archdata archdata
;
41 #define platform_get_device_id(pdev) ((pdev)->id_entry)
43 #define to_platform_device(x) container_of((x), struct platform_device, dev)
45 extern int platform_device_register(struct platform_device
*);
46 extern void platform_device_unregister(struct platform_device
*);
48 extern struct bus_type platform_bus_type
;
49 extern struct device platform_bus
;
51 extern void arch_setup_pdev_archdata(struct platform_device
*);
52 extern struct resource
*platform_get_resource(struct platform_device
*,
53 unsigned int, unsigned int);
54 extern int platform_get_irq(struct platform_device
*, unsigned int);
55 extern int platform_irq_count(struct platform_device
*);
56 extern struct resource
*platform_get_resource_byname(struct platform_device
*,
59 extern int platform_get_irq_byname(struct platform_device
*, const char *);
60 extern int platform_add_devices(struct platform_device
**, int);
62 struct platform_device_info
{
63 struct device
*parent
;
64 struct fwnode_handle
*fwnode
;
69 const struct resource
*res
;
76 struct property_entry
*properties
;
78 extern struct platform_device
*platform_device_register_full(
79 const struct platform_device_info
*pdevinfo
);
82 * platform_device_register_resndata - add a platform-level device with
83 * resources and platform-specific data
85 * @parent: parent device for the device we're adding
86 * @name: base name of the device we're adding
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
93 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
95 static inline struct platform_device
*platform_device_register_resndata(
96 struct device
*parent
, const char *name
, int id
,
97 const struct resource
*res
, unsigned int num
,
98 const void *data
, size_t size
) {
100 struct platform_device_info pdevinfo
= {
111 return platform_device_register_full(&pdevinfo
);
115 * platform_device_register_simple - add a platform-level device and its resources
116 * @name: base name of the device we're adding
118 * @res: set of resources that needs to be allocated for the device
119 * @num: number of resources
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
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
134 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
136 static inline struct platform_device
*platform_device_register_simple(
137 const char *name
, int id
,
138 const struct resource
*res
, unsigned int num
)
140 return platform_device_register_resndata(NULL
, name
, id
,
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
149 * @data: platform specific data for this platform device
150 * @size: size of platform specific data
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
158 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
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
)
164 return platform_device_register_resndata(parent
, name
, id
,
165 NULL
, 0, data
, size
);
168 extern struct platform_device
*platform_device_alloc(const char *name
, int id
);
169 extern int platform_device_add_resources(struct platform_device
*pdev
,
170 const struct resource
*res
,
172 extern int platform_device_add_data(struct platform_device
*pdev
,
173 const void *data
, size_t size
);
174 extern int platform_device_add_properties(struct platform_device
*pdev
,
175 const struct property_entry
*properties
);
176 extern int platform_device_add(struct platform_device
*pdev
);
177 extern void platform_device_del(struct platform_device
*pdev
);
178 extern void platform_device_put(struct platform_device
*pdev
);
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
;
187 const struct platform_device_id
*id_table
;
188 bool prevent_deferred_probe
;
191 #define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
195 * use a macro to avoid include chaining to get THIS_MODULE
197 #define platform_driver_register(drv) \
198 __platform_driver_register(drv, THIS_MODULE)
199 extern int __platform_driver_register(struct platform_driver
*,
201 extern void platform_driver_unregister(struct platform_driver
*);
203 /* non-hotpluggable platform devices may use this so that probe() and
204 * its support may live in __init sections, conserving runtime memory.
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
);
211 static inline void *platform_get_drvdata(const struct platform_device
*pdev
)
213 return dev_get_drvdata(&pdev
->dev
);
216 static inline void platform_set_drvdata(struct platform_device
*pdev
,
219 dev_set_drvdata(&pdev
->dev
, data
);
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()
227 #define module_platform_driver(__platform_driver) \
228 module_driver(__platform_driver, platform_driver_register, \
229 platform_driver_unregister)
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.
237 #define builtin_platform_driver(__platform_driver) \
238 builtin_driver(__platform_driver, platform_driver_register)
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()
245 #define module_platform_driver_probe(__platform_driver, __platform_probe) \
246 static int __init __platform_driver##_init(void) \
248 return platform_driver_probe(&(__platform_driver), \
251 module_init(__platform_driver##_init); \
252 static void __exit __platform_driver##_exit(void) \
254 platform_driver_unregister(&(__platform_driver)); \
256 module_exit(__platform_driver##_exit);
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.
264 #define builtin_platform_driver_probe(__platform_driver, __platform_probe) \
265 static int __init __platform_driver##_init(void) \
267 return platform_driver_probe(&(__platform_driver), \
270 device_initcall(__platform_driver##_init); \
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(
275 struct platform_driver
*driver
, int (*probe
)(struct platform_device
*),
276 struct resource
*res
, unsigned int n_res
,
277 const void *data
, size_t size
, struct module
*module
);
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
,
284 #define platform_register_drivers(drivers, count) \
285 __platform_register_drivers(drivers, count, THIS_MODULE)
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
;
297 #define EARLY_PLATFORM_ID_UNSET -2
298 #define EARLY_PLATFORM_ID_ERROR -3
300 extern int early_platform_driver_register(struct early_platform_driver
*epdrv
,
302 extern void early_platform_add_devices(struct platform_device
**devs
, int num
);
304 static inline int is_early_platform_device(struct platform_device
*pdev
)
306 return !pdev
->dev
.driver
;
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);
314 #define early_platform_init(class_string, platdrv) \
315 early_platform_init_buffer(class_string, platdrv, NULL, 0)
318 #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
319 static __initdata struct early_platform_driver early_driver = { \
320 .class_str = class_string, \
324 .requested_id = EARLY_PLATFORM_ID_UNSET, \
326 static int __init early_platform_driver_setup_func(char *buffer) \
328 return early_platform_driver_register(&early_driver, buffer); \
330 early_param(class_string, early_platform_driver_setup_func)
332 #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
333 static inline char *early_platform_driver_setup_func(void) \
335 return bufsiz ? buf : NULL; \
339 #ifdef CONFIG_SUSPEND
340 extern int platform_pm_suspend(struct device
*dev
);
341 extern int platform_pm_resume(struct device
*dev
);
343 #define platform_pm_suspend NULL
344 #define platform_pm_resume NULL
347 #ifdef CONFIG_HIBERNATE_CALLBACKS
348 extern int platform_pm_freeze(struct device
*dev
);
349 extern int platform_pm_thaw(struct device
*dev
);
350 extern int platform_pm_poweroff(struct device
*dev
);
351 extern int platform_pm_restore(struct device
*dev
);
353 #define platform_pm_freeze NULL
354 #define platform_pm_thaw NULL
355 #define platform_pm_poweroff NULL
356 #define platform_pm_restore NULL
359 #ifdef CONFIG_PM_SLEEP
360 #define USE_PLATFORM_PM_SLEEP_OPS \
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, \
366 .restore = platform_pm_restore,
368 #define USE_PLATFORM_PM_SLEEP_OPS
371 #endif /* _PLATFORM_DEVICE_H_ */