1
2
3
4
5
6
7
8
9
10
11#ifndef _PLATFORM_DEVICE_H_
12#define _PLATFORM_DEVICE_H_
13
14#include <linux/device.h>
15#include <linux/mod_devicetable.h>
16
17#define PLATFORM_DEVID_NONE (-1)
18#define PLATFORM_DEVID_AUTO (-2)
19
20struct mfd_cell;
21
22struct platform_device {
23 const char * name;
24 int id;
25 bool id_auto;
26 struct device dev;
27 u32 num_resources;
28 struct resource * resource;
29
30 const struct platform_device_id *id_entry;
31
32
33 struct mfd_cell *mfd_cell;
34
35
36 struct pdev_archdata archdata;
37};
38
39#define platform_get_device_id(pdev) ((pdev)->id_entry)
40
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
49extern void arch_setup_pdev_archdata(struct platform_device *);
50extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int);
51extern int platform_get_irq(struct platform_device *, unsigned int);
52extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, const char *);
53extern int platform_get_irq_byname(struct platform_device *, const char *);
54extern int platform_add_devices(struct platform_device **, int);
55
56struct platform_device_info {
57 struct device *parent;
58 struct acpi_dev_node acpi_node;
59
60 const char *name;
61 int id;
62
63 const struct resource *res;
64 unsigned int num_res;
65
66 const void *data;
67 size_t size_data;
68 u64 dma_mask;
69};
70extern struct platform_device *platform_device_register_full(
71 const struct platform_device_info *pdevinfo);
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87static inline struct platform_device *platform_device_register_resndata(
88 struct device *parent, const char *name, int id,
89 const struct resource *res, unsigned int num,
90 const void *data, size_t size) {
91
92 struct platform_device_info pdevinfo = {
93 .parent = parent,
94 .name = name,
95 .id = id,
96 .res = res,
97 .num_res = num,
98 .data = data,
99 .size_data = size,
100 .dma_mask = 0,
101 };
102
103 return platform_device_register_full(&pdevinfo);
104}
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128static inline struct platform_device *platform_device_register_simple(
129 const char *name, int id,
130 const struct resource *res, unsigned int num)
131{
132 return platform_device_register_resndata(NULL, name, id,
133 res, num, NULL, 0);
134}
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152static inline struct platform_device *platform_device_register_data(
153 struct device *parent, const char *name, int id,
154 const void *data, size_t size)
155{
156 return platform_device_register_resndata(parent, name, id,
157 NULL, 0, data, size);
158}
159
160extern struct platform_device *platform_device_alloc(const char *name, int id);
161extern int platform_device_add_resources(struct platform_device *pdev,
162 const struct resource *res,
163 unsigned int num);
164extern int platform_device_add_data(struct platform_device *pdev, const void *data, size_t size);
165extern int platform_device_add(struct platform_device *pdev);
166extern void platform_device_del(struct platform_device *pdev);
167extern void platform_device_put(struct platform_device *pdev);
168
169struct platform_driver {
170 int (*probe)(struct platform_device *);
171 int (*remove)(struct platform_device *);
172 void (*shutdown)(struct platform_device *);
173 int (*suspend)(struct platform_device *, pm_message_t state);
174 int (*resume)(struct platform_device *);
175 struct device_driver driver;
176 const struct platform_device_id *id_table;
177};
178
179extern int platform_driver_register(struct platform_driver *);
180extern void platform_driver_unregister(struct platform_driver *);
181
182
183
184
185extern int platform_driver_probe(struct platform_driver *driver,
186 int (*probe)(struct platform_device *));
187
188static inline void *platform_get_drvdata(const struct platform_device *pdev)
189{
190 return dev_get_drvdata(&pdev->dev);
191}
192
193static inline void platform_set_drvdata(struct platform_device *pdev, void *data)
194{
195 dev_set_drvdata(&pdev->dev, data);
196}
197
198
199
200
201
202
203#define module_platform_driver(__platform_driver) \
204 module_driver(__platform_driver, platform_driver_register, \
205 platform_driver_unregister)
206
207extern struct platform_device *platform_create_bundle(struct platform_driver *driver,
208 int (*probe)(struct platform_device *),
209 struct resource *res, unsigned int n_res,
210 const void *data, size_t size);
211
212
213struct early_platform_driver {
214 const char *class_str;
215 struct platform_driver *pdrv;
216 struct list_head list;
217 int requested_id;
218 char *buffer;
219 int bufsize;
220};
221
222#define EARLY_PLATFORM_ID_UNSET -2
223#define EARLY_PLATFORM_ID_ERROR -3
224
225extern int early_platform_driver_register(struct early_platform_driver *epdrv,
226 char *buf);
227extern void early_platform_add_devices(struct platform_device **devs, int num);
228
229static inline int is_early_platform_device(struct platform_device *pdev)
230{
231 return !pdev->dev.driver;
232}
233
234extern void early_platform_driver_register_all(char *class_str);
235extern int early_platform_driver_probe(char *class_str,
236 int nr_probe, int user_only);
237extern void early_platform_cleanup(void);
238
239#define early_platform_init(class_string, platdrv) \
240 early_platform_init_buffer(class_string, platdrv, NULL, 0)
241
242#ifndef MODULE
243#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
244static __initdata struct early_platform_driver early_driver = { \
245 .class_str = class_string, \
246 .buffer = buf, \
247 .bufsize = bufsiz, \
248 .pdrv = platdrv, \
249 .requested_id = EARLY_PLATFORM_ID_UNSET, \
250}; \
251static int __init early_platform_driver_setup_func(char *buffer) \
252{ \
253 return early_platform_driver_register(&early_driver, buffer); \
254} \
255early_param(class_string, early_platform_driver_setup_func)
256#else
257#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
258static inline char *early_platform_driver_setup_func(void) \
259{ \
260 return bufsiz ? buf : NULL; \
261}
262#endif
263
264#ifdef CONFIG_SUSPEND
265extern int platform_pm_suspend(struct device *dev);
266extern int platform_pm_resume(struct device *dev);
267#else
268#define platform_pm_suspend NULL
269#define platform_pm_resume NULL
270#endif
271
272#ifdef CONFIG_HIBERNATE_CALLBACKS
273extern int platform_pm_freeze(struct device *dev);
274extern int platform_pm_thaw(struct device *dev);
275extern int platform_pm_poweroff(struct device *dev);
276extern int platform_pm_restore(struct device *dev);
277#else
278#define platform_pm_freeze NULL
279#define platform_pm_thaw NULL
280#define platform_pm_poweroff NULL
281#define platform_pm_restore NULL
282#endif
283
284#ifdef CONFIG_PM_SLEEP
285#define USE_PLATFORM_PM_SLEEP_OPS \
286 .suspend = platform_pm_suspend, \
287 .resume = platform_pm_resume, \
288 .freeze = platform_pm_freeze, \
289 .thaw = platform_pm_thaw, \
290 .poweroff = platform_pm_poweroff, \
291 .restore = platform_pm_restore,
292#else
293#define USE_PLATFORM_PM_SLEEP_OPS
294#endif
295
296#endif
297