Merge tag 'stable/for-linus-3.16-rc7-tag' of git://git.kernel.org/pub/scm/linux/kerne...
[deliverable/linux.git] / include / linux / platform_device.h
CommitLineData
bbbf508d
RK
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>
57fee4a5 15#include <linux/mod_devicetable.h>
bbbf508d 16
689ae231
JD
17#define PLATFORM_DEVID_NONE (-1)
18#define PLATFORM_DEVID_AUTO (-2)
19
e710d7d5
SO
20struct mfd_cell;
21
bbbf508d 22struct platform_device {
6ae07f27 23 const char *name;
1359555e 24 int id;
689ae231 25 bool id_auto;
bbbf508d
RK
26 struct device dev;
27 u32 num_resources;
6ae07f27 28 struct resource *resource;
57fee4a5 29
3d03ba4d 30 const struct platform_device_id *id_entry;
d7aacadd 31
e710d7d5
SO
32 /* MFD cell pointer */
33 struct mfd_cell *mfd_cell;
34
d7aacadd
MD
35 /* arch specific additions */
36 struct pdev_archdata archdata;
bbbf508d
RK
37};
38
57fee4a5
EM
39#define platform_get_device_id(pdev) ((pdev)->id_entry)
40
bbbf508d
RK
41#define to_platform_device(x) container_of((x), struct platform_device, dev)
42
43extern int platform_device_register(struct platform_device *);
44extern void platform_device_unregister(struct platform_device *);
45
46extern struct bus_type platform_bus_type;
47extern struct device platform_bus;
48
a77ce816 49extern void arch_setup_pdev_archdata(struct platform_device *);
6ae07f27
FP
50extern struct resource *platform_get_resource(struct platform_device *,
51 unsigned int, unsigned int);
bbbf508d 52extern int platform_get_irq(struct platform_device *, unsigned int);
6ae07f27
FP
53extern struct resource *platform_get_resource_byname(struct platform_device *,
54 unsigned int,
55 const char *);
c0afe7ba 56extern int platform_get_irq_byname(struct platform_device *, const char *);
bbbf508d
RK
57extern int platform_add_devices(struct platform_device **, int);
58
01dcc60a
UKK
59struct platform_device_info {
60 struct device *parent;
863f9f30 61 struct acpi_dev_node acpi_node;
01dcc60a
UKK
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};
73extern struct platform_device *platform_device_register_full(
5a3072be 74 const struct platform_device_info *pdevinfo);
01dcc60a
UKK
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 */
90static inline struct platform_device *platform_device_register_resndata(
44f28bde
UKK
91 struct device *parent, const char *name, int id,
92 const struct resource *res, unsigned int num,
01dcc60a
UKK
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}
44f28bde
UKK
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 */
131static 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 */
155static 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}
bbbf508d 162
1359555e 163extern struct platform_device *platform_device_alloc(const char *name, int id);
0b7f1a7e
GU
164extern int platform_device_add_resources(struct platform_device *pdev,
165 const struct resource *res,
166 unsigned int num);
6ae07f27
FP
167extern int platform_device_add_data(struct platform_device *pdev,
168 const void *data, size_t size);
37c12e74 169extern int platform_device_add(struct platform_device *pdev);
93ce3061 170extern void platform_device_del(struct platform_device *pdev);
37c12e74
RK
171extern void platform_device_put(struct platform_device *pdev);
172
00d3dcdd
RK
173struct 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;
831fad2f 180 const struct platform_device_id *id_table;
3f9120b0 181 bool prevent_deferred_probe;
00d3dcdd
RK
182};
183
10dbc5e3
RH
184#define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
185 driver))
186
9447057e
LC
187/*
188 * use a macro to avoid include chaining to get THIS_MODULE
189 */
190#define platform_driver_register(drv) \
191 __platform_driver_register(drv, THIS_MODULE)
192extern int __platform_driver_register(struct platform_driver *,
193 struct module *);
00d3dcdd
RK
194extern void platform_driver_unregister(struct platform_driver *);
195
c67334fb
DB
196/* non-hotpluggable platform devices may use this so that probe() and
197 * its support may live in __init sections, conserving runtime memory.
198 */
199extern int platform_driver_probe(struct platform_driver *driver,
200 int (*probe)(struct platform_device *));
201
71d64290
MKB
202static inline void *platform_get_drvdata(const struct platform_device *pdev)
203{
204 return dev_get_drvdata(&pdev->dev);
205}
206
6ae07f27
FP
207static inline void platform_set_drvdata(struct platform_device *pdev,
208 void *data)
71d64290
MKB
209{
210 dev_set_drvdata(&pdev->dev, data);
211}
00d3dcdd 212
940ab889
GL
213/* module_platform_driver() - Helper macro for drivers that don't do
214 * anything special in module init/exit. This eliminates a lot of
215 * boilerplate. Each module may only use this macro once, and
216 * calling it replaces module_init() and module_exit()
217 */
218#define module_platform_driver(__platform_driver) \
907d0ed1
LPC
219 module_driver(__platform_driver, platform_driver_register, \
220 platform_driver_unregister)
940ab889 221
bab734fc
FP
222/* module_platform_driver_probe() - 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_probe(__platform_driver, __platform_probe) \
228static int __init __platform_driver##_init(void) \
229{ \
230 return platform_driver_probe(&(__platform_driver), \
231 __platform_probe); \
232} \
233module_init(__platform_driver##_init); \
234static void __exit __platform_driver##_exit(void) \
235{ \
236 platform_driver_unregister(&(__platform_driver)); \
237} \
238module_exit(__platform_driver##_exit);
239
6ae07f27
FP
240extern struct platform_device *platform_create_bundle(
241 struct platform_driver *driver, int (*probe)(struct platform_device *),
242 struct resource *res, unsigned int n_res,
243 const void *data, size_t size);
ecdf6ceb 244
13977091
MD
245/* early platform driver interface */
246struct early_platform_driver {
247 const char *class_str;
248 struct platform_driver *pdrv;
249 struct list_head list;
250 int requested_id;
c60e0504
MD
251 char *buffer;
252 int bufsize;
13977091
MD
253};
254
255#define EARLY_PLATFORM_ID_UNSET -2
256#define EARLY_PLATFORM_ID_ERROR -3
257
258extern int early_platform_driver_register(struct early_platform_driver *epdrv,
259 char *buf);
260extern void early_platform_add_devices(struct platform_device **devs, int num);
261
262static inline int is_early_platform_device(struct platform_device *pdev)
263{
264 return !pdev->dev.driver;
265}
266
267extern void early_platform_driver_register_all(char *class_str);
268extern int early_platform_driver_probe(char *class_str,
269 int nr_probe, int user_only);
270extern void early_platform_cleanup(void);
271
c60e0504
MD
272#define early_platform_init(class_string, platdrv) \
273 early_platform_init_buffer(class_string, platdrv, NULL, 0)
13977091
MD
274
275#ifndef MODULE
c60e0504 276#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
13977091
MD
277static __initdata struct early_platform_driver early_driver = { \
278 .class_str = class_string, \
c60e0504
MD
279 .buffer = buf, \
280 .bufsize = bufsiz, \
281 .pdrv = platdrv, \
13977091
MD
282 .requested_id = EARLY_PLATFORM_ID_UNSET, \
283}; \
c60e0504 284static int __init early_platform_driver_setup_func(char *buffer) \
13977091 285{ \
c60e0504 286 return early_platform_driver_register(&early_driver, buffer); \
13977091
MD
287} \
288early_param(class_string, early_platform_driver_setup_func)
289#else /* MODULE */
c60e0504
MD
290#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
291static inline char *early_platform_driver_setup_func(void) \
292{ \
293 return bufsiz ? buf : NULL; \
294}
13977091
MD
295#endif /* MODULE */
296
69c9dd1e
RW
297#ifdef CONFIG_SUSPEND
298extern int platform_pm_suspend(struct device *dev);
69c9dd1e 299extern int platform_pm_resume(struct device *dev);
69c9dd1e
RW
300#else
301#define platform_pm_suspend NULL
302#define platform_pm_resume NULL
69c9dd1e
RW
303#endif
304
305#ifdef CONFIG_HIBERNATE_CALLBACKS
306extern int platform_pm_freeze(struct device *dev);
69c9dd1e 307extern int platform_pm_thaw(struct device *dev);
69c9dd1e 308extern int platform_pm_poweroff(struct device *dev);
69c9dd1e 309extern int platform_pm_restore(struct device *dev);
69c9dd1e
RW
310#else
311#define platform_pm_freeze NULL
312#define platform_pm_thaw NULL
313#define platform_pm_poweroff NULL
314#define platform_pm_restore NULL
69c9dd1e
RW
315#endif
316
317#ifdef CONFIG_PM_SLEEP
318#define USE_PLATFORM_PM_SLEEP_OPS \
69c9dd1e
RW
319 .suspend = platform_pm_suspend, \
320 .resume = platform_pm_resume, \
321 .freeze = platform_pm_freeze, \
322 .thaw = platform_pm_thaw, \
323 .poweroff = platform_pm_poweroff, \
9b39e73d 324 .restore = platform_pm_restore,
69c9dd1e
RW
325#else
326#define USE_PLATFORM_PM_SLEEP_OPS
327#endif
328
bbbf508d 329#endif /* _PLATFORM_DEVICE_H_ */
This page took 0.997966 seconds and 5 git commands to generate.