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)
22 struct platform_device
{
28 struct resource
* resource
;
30 const struct platform_device_id
*id_entry
;
32 /* MFD cell pointer */
33 struct mfd_cell
*mfd_cell
;
35 /* arch specific additions */
36 struct pdev_archdata archdata
;
39 #define platform_get_device_id(pdev) ((pdev)->id_entry)
41 #define to_platform_device(x) container_of((x), struct platform_device, dev)
43 extern int platform_device_register(struct platform_device
*);
44 extern void platform_device_unregister(struct platform_device
*);
46 extern struct bus_type platform_bus_type
;
47 extern struct device platform_bus
;
49 extern void arch_setup_pdev_archdata(struct platform_device
*);
50 extern struct resource
*platform_get_resource(struct platform_device
*, unsigned int, unsigned int);
51 extern int platform_get_irq(struct platform_device
*, unsigned int);
52 extern struct resource
*platform_get_resource_byname(struct platform_device
*, unsigned int, const char *);
53 extern int platform_get_irq_byname(struct platform_device
*, const char *);
54 extern int platform_add_devices(struct platform_device
**, int);
56 struct platform_device_info
{
57 struct device
*parent
;
62 const struct resource
*res
;
69 extern struct platform_device
*platform_device_register_full(
70 const struct platform_device_info
*pdevinfo
);
73 * platform_device_register_resndata - add a platform-level device with
74 * resources and platform-specific data
76 * @parent: parent device for the device we're adding
77 * @name: base name of the device we're adding
79 * @res: set of resources that needs to be allocated for the device
80 * @num: number of resources
81 * @data: platform specific data for this platform device
82 * @size: size of platform specific data
84 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
86 static inline struct platform_device
*platform_device_register_resndata(
87 struct device
*parent
, const char *name
, int id
,
88 const struct resource
*res
, unsigned int num
,
89 const void *data
, size_t size
) {
91 struct platform_device_info pdevinfo
= {
102 return platform_device_register_full(&pdevinfo
);
106 * platform_device_register_simple - add a platform-level device and its resources
107 * @name: base name of the device we're adding
109 * @res: set of resources that needs to be allocated for the device
110 * @num: number of resources
112 * This function creates a simple platform device that requires minimal
113 * resource and memory management. Canned release function freeing memory
114 * allocated for the device allows drivers using such devices to be
115 * unloaded without waiting for the last reference to the device to be
118 * This interface is primarily intended for use with legacy drivers which
119 * probe hardware directly. Because such drivers create sysfs device nodes
120 * themselves, rather than letting system infrastructure handle such device
121 * enumeration tasks, they don't fully conform to the Linux driver model.
122 * In particular, when such drivers are built as modules, they can't be
125 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
127 static inline struct platform_device
*platform_device_register_simple(
128 const char *name
, int id
,
129 const struct resource
*res
, unsigned int num
)
131 return platform_device_register_resndata(NULL
, name
, id
,
136 * platform_device_register_data - add a platform-level device with platform-specific data
137 * @parent: parent device for the device we're adding
138 * @name: base name of the device we're adding
140 * @data: platform specific data for this platform device
141 * @size: size of platform specific data
143 * This function creates a simple platform device that requires minimal
144 * resource and memory management. Canned release function freeing memory
145 * allocated for the device allows drivers using such devices to be
146 * unloaded without waiting for the last reference to the device to be
149 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
151 static inline struct platform_device
*platform_device_register_data(
152 struct device
*parent
, const char *name
, int id
,
153 const void *data
, size_t size
)
155 return platform_device_register_resndata(parent
, name
, id
,
156 NULL
, 0, data
, size
);
159 extern struct platform_device
*platform_device_alloc(const char *name
, int id
);
160 extern int platform_device_add_resources(struct platform_device
*pdev
,
161 const struct resource
*res
,
163 extern int platform_device_add_data(struct platform_device
*pdev
, const void *data
, size_t size
);
164 extern int platform_device_add(struct platform_device
*pdev
);
165 extern void platform_device_del(struct platform_device
*pdev
);
166 extern void platform_device_put(struct platform_device
*pdev
);
168 struct platform_driver
{
169 int (*probe
)(struct platform_device
*);
170 int (*remove
)(struct platform_device
*);
171 void (*shutdown
)(struct platform_device
*);
172 int (*suspend
)(struct platform_device
*, pm_message_t state
);
173 int (*resume
)(struct platform_device
*);
174 struct device_driver driver
;
175 const struct platform_device_id
*id_table
;
178 extern int platform_driver_register(struct platform_driver
*);
179 extern void platform_driver_unregister(struct platform_driver
*);
181 /* non-hotpluggable platform devices may use this so that probe() and
182 * its support may live in __init sections, conserving runtime memory.
184 extern int platform_driver_probe(struct platform_driver
*driver
,
185 int (*probe
)(struct platform_device
*));
187 static inline void *platform_get_drvdata(const struct platform_device
*pdev
)
189 return dev_get_drvdata(&pdev
->dev
);
192 static inline void platform_set_drvdata(struct platform_device
*pdev
, void *data
)
194 dev_set_drvdata(&pdev
->dev
, data
);
197 /* module_platform_driver() - Helper macro for drivers that don't do
198 * anything special in module init/exit. This eliminates a lot of
199 * boilerplate. Each module may only use this macro once, and
200 * calling it replaces module_init() and module_exit()
202 #define module_platform_driver(__platform_driver) \
203 module_driver(__platform_driver, platform_driver_register, \
204 platform_driver_unregister)
206 extern struct platform_device
*platform_create_bundle(struct platform_driver
*driver
,
207 int (*probe
)(struct platform_device
*),
208 struct resource
*res
, unsigned int n_res
,
209 const void *data
, size_t size
);
211 /* early platform driver interface */
212 struct early_platform_driver
{
213 const char *class_str
;
214 struct platform_driver
*pdrv
;
215 struct list_head list
;
221 #define EARLY_PLATFORM_ID_UNSET -2
222 #define EARLY_PLATFORM_ID_ERROR -3
224 extern int early_platform_driver_register(struct early_platform_driver
*epdrv
,
226 extern void early_platform_add_devices(struct platform_device
**devs
, int num
);
228 static inline int is_early_platform_device(struct platform_device
*pdev
)
230 return !pdev
->dev
.driver
;
233 extern void early_platform_driver_register_all(char *class_str
);
234 extern int early_platform_driver_probe(char *class_str
,
235 int nr_probe
, int user_only
);
236 extern void early_platform_cleanup(void);
238 #define early_platform_init(class_string, platdrv) \
239 early_platform_init_buffer(class_string, platdrv, NULL, 0)
242 #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
243 static __initdata struct early_platform_driver early_driver = { \
244 .class_str = class_string, \
248 .requested_id = EARLY_PLATFORM_ID_UNSET, \
250 static int __init early_platform_driver_setup_func(char *buffer) \
252 return early_platform_driver_register(&early_driver, buffer); \
254 early_param(class_string, early_platform_driver_setup_func)
256 #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
257 static inline char *early_platform_driver_setup_func(void) \
259 return bufsiz ? buf : NULL; \
263 #ifdef CONFIG_SUSPEND
264 extern int platform_pm_suspend(struct device
*dev
);
265 extern int platform_pm_resume(struct device
*dev
);
267 #define platform_pm_suspend NULL
268 #define platform_pm_resume NULL
271 #ifdef CONFIG_HIBERNATE_CALLBACKS
272 extern int platform_pm_freeze(struct device
*dev
);
273 extern int platform_pm_thaw(struct device
*dev
);
274 extern int platform_pm_poweroff(struct device
*dev
);
275 extern int platform_pm_restore(struct device
*dev
);
277 #define platform_pm_freeze NULL
278 #define platform_pm_thaw NULL
279 #define platform_pm_poweroff NULL
280 #define platform_pm_restore NULL
283 #ifdef CONFIG_PM_SLEEP
284 #define USE_PLATFORM_PM_SLEEP_OPS \
285 .suspend = platform_pm_suspend, \
286 .resume = platform_pm_resume, \
287 .freeze = platform_pm_freeze, \
288 .thaw = platform_pm_thaw, \
289 .poweroff = platform_pm_poweroff, \
290 .restore = platform_pm_restore,
292 #define USE_PLATFORM_PM_SLEEP_OPS
295 #endif /* _PLATFORM_DEVICE_H_ */