2 * platform_device.h - generic, centralized driver model
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 *,
51 unsigned int, unsigned int);
52 extern int platform_get_irq(struct platform_device *, unsigned int);
53 extern struct resource *platform_get_resource_byname(struct platform_device *,
56 extern int platform_get_irq_byname(struct platform_device *, const char *);
57 extern int platform_add_devices(struct platform_device **, int);
59 struct platform_device_info {
60 struct device *parent;
61 struct acpi_dev_node acpi_node;
66 const struct resource *res;
73 extern struct platform_device *platform_device_register_full(
74 const struct platform_device_info *pdevinfo);
77 * platform_device_register_resndata - add a platform-level device with
78 * resources and platform-specific data
80 * @parent: parent device for the device we're adding
81 * @name: base name of the device we're adding
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
88 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
90 static inline struct platform_device *platform_device_register_resndata(
91 struct device *parent, const char *name, int id,
92 const struct resource *res, unsigned int num,
93 const void *data, size_t size) {
95 struct platform_device_info pdevinfo = {
106 return platform_device_register_full(&pdevinfo);
110 * platform_device_register_simple - add a platform-level device and its resources
111 * @name: base name of the device we're adding
113 * @res: set of resources that needs to be allocated for the device
114 * @num: number of resources
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
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
129 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
131 static inline struct platform_device *platform_device_register_simple(
132 const char *name, int id,
133 const struct resource *res, unsigned int num)
135 return platform_device_register_resndata(NULL, name, id,
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
144 * @data: platform specific data for this platform device
145 * @size: size of platform specific data
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
153 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
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)
159 return platform_device_register_resndata(parent, name, id,
160 NULL, 0, data, size);
163 extern struct platform_device *platform_device_alloc(const char *name, int id);
164 extern int platform_device_add_resources(struct platform_device *pdev,
165 const struct resource *res,
167 extern int platform_device_add_data(struct platform_device *pdev,
168 const void *data, size_t size);
169 extern int platform_device_add(struct platform_device *pdev);
170 extern void platform_device_del(struct platform_device *pdev);
171 extern void platform_device_put(struct platform_device *pdev);
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;
180 const struct platform_device_id *id_table;
183 extern int platform_driver_register(struct platform_driver *);
184 extern void platform_driver_unregister(struct platform_driver *);
186 /* non-hotpluggable platform devices may use this so that probe() and
187 * its support may live in __init sections, conserving runtime memory.
189 extern int platform_driver_probe(struct platform_driver *driver,
190 int (*probe)(struct platform_device *));
192 static inline void *platform_get_drvdata(const struct platform_device *pdev)
194 return dev_get_drvdata(&pdev->dev);
197 static inline void platform_set_drvdata(struct platform_device *pdev,
200 dev_set_drvdata(&pdev->dev, data);
203 /* module_platform_driver() - Helper macro for drivers that don't do
204 * anything special in module init/exit. This eliminates a lot of
205 * boilerplate. Each module may only use this macro once, and
206 * calling it replaces module_init() and module_exit()
208 #define module_platform_driver(__platform_driver) \
209 module_driver(__platform_driver, platform_driver_register, \
210 platform_driver_unregister)
212 /* module_platform_driver_probe() - 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()
217 #define module_platform_driver_probe(__platform_driver, __platform_probe) \
218 static int __init __platform_driver##_init(void) \
220 return platform_driver_probe(&(__platform_driver), \
223 module_init(__platform_driver##_init); \
224 static void __exit __platform_driver##_exit(void) \
226 platform_driver_unregister(&(__platform_driver)); \
228 module_exit(__platform_driver##_exit);
230 extern struct platform_device *platform_create_bundle(
231 struct platform_driver *driver, int (*probe)(struct platform_device *),
232 struct resource *res, unsigned int n_res,
233 const void *data, size_t size);
235 /* early platform driver interface */
236 struct early_platform_driver {
237 const char *class_str;
238 struct platform_driver *pdrv;
239 struct list_head list;
245 #define EARLY_PLATFORM_ID_UNSET -2
246 #define EARLY_PLATFORM_ID_ERROR -3
248 extern int early_platform_driver_register(struct early_platform_driver *epdrv,
250 extern void early_platform_add_devices(struct platform_device **devs, int num);
252 static inline int is_early_platform_device(struct platform_device *pdev)
254 return !pdev->dev.driver;
257 extern void early_platform_driver_register_all(char *class_str);
258 extern int early_platform_driver_probe(char *class_str,
259 int nr_probe, int user_only);
260 extern void early_platform_cleanup(void);
262 #define early_platform_init(class_string, platdrv) \
263 early_platform_init_buffer(class_string, platdrv, NULL, 0)
266 #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
267 static __initdata struct early_platform_driver early_driver = { \
268 .class_str = class_string, \
272 .requested_id = EARLY_PLATFORM_ID_UNSET, \
274 static int __init early_platform_driver_setup_func(char *buffer) \
276 return early_platform_driver_register(&early_driver, buffer); \
278 early_param(class_string, early_platform_driver_setup_func)
280 #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
281 static inline char *early_platform_driver_setup_func(void) \
283 return bufsiz ? buf : NULL; \
287 #ifdef CONFIG_SUSPEND
288 extern int platform_pm_suspend(struct device *dev);
289 extern int platform_pm_resume(struct device *dev);
291 #define platform_pm_suspend NULL
292 #define platform_pm_resume NULL
295 #ifdef CONFIG_HIBERNATE_CALLBACKS
296 extern int platform_pm_freeze(struct device *dev);
297 extern int platform_pm_thaw(struct device *dev);
298 extern int platform_pm_poweroff(struct device *dev);
299 extern int platform_pm_restore(struct device *dev);
301 #define platform_pm_freeze NULL
302 #define platform_pm_thaw NULL
303 #define platform_pm_poweroff NULL
304 #define platform_pm_restore NULL
307 #ifdef CONFIG_PM_SLEEP
308 #define USE_PLATFORM_PM_SLEEP_OPS \
309 .suspend = platform_pm_suspend, \
310 .resume = platform_pm_resume, \
311 .freeze = platform_pm_freeze, \
312 .thaw = platform_pm_thaw, \
313 .poweroff = platform_pm_poweroff, \
314 .restore = platform_pm_restore,
316 #define USE_PLATFORM_PM_SLEEP_OPS
319 #endif /* _PLATFORM_DEVICE_H_ */