blob: a9ded9a3c175824fd6052a6c06908068bc0c1d8b [file] [log] [blame]
Russell Kingbbbf5082005-10-29 22:17:58 +01001/*
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>
Eric Miao57fee4a2009-02-04 11:52:40 +080015#include <linux/mod_devicetable.h>
Russell Kingbbbf5082005-10-29 22:17:58 +010016
Jean Delvare689ae232012-07-27 22:14:59 +020017#define PLATFORM_DEVID_NONE (-1)
18#define PLATFORM_DEVID_AUTO (-2)
19
Samuel Ortize710d7d2011-04-08 00:43:01 +020020struct mfd_cell;
21
Russell Kingbbbf5082005-10-29 22:17:58 +010022struct platform_device {
23 const char * name;
Jean Delvare1359555e2007-09-09 12:54:16 +020024 int id;
Jean Delvare689ae232012-07-27 22:14:59 +020025 bool id_auto;
Russell Kingbbbf5082005-10-29 22:17:58 +010026 struct device dev;
27 u32 num_resources;
28 struct resource * resource;
Eric Miao57fee4a2009-02-04 11:52:40 +080029
Eric Miao3d03ba42010-01-01 15:43:28 +080030 const struct platform_device_id *id_entry;
Magnus Dammd7aacad2009-07-08 13:21:31 +020031
Samuel Ortize710d7d2011-04-08 00:43:01 +020032 /* MFD cell pointer */
33 struct mfd_cell *mfd_cell;
34
Magnus Dammd7aacad2009-07-08 13:21:31 +020035 /* arch specific additions */
36 struct pdev_archdata archdata;
Russell Kingbbbf5082005-10-29 22:17:58 +010037};
38
Eric Miao57fee4a2009-02-04 11:52:40 +080039#define platform_get_device_id(pdev) ((pdev)->id_entry)
40
Russell Kingbbbf5082005-10-29 22:17:58 +010041#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
Kumar Galaa77ce812011-06-10 01:52:57 -050049extern void arch_setup_pdev_archdata(struct platform_device *);
Russell Kingbbbf5082005-10-29 22:17:58 +010050extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int);
51extern int platform_get_irq(struct platform_device *, unsigned int);
Linus Walleijc0afe7b2009-04-27 02:38:16 +020052extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, const char *);
53extern int platform_get_irq_byname(struct platform_device *, const char *);
Russell Kingbbbf5082005-10-29 22:17:58 +010054extern int platform_add_devices(struct platform_device **, int);
55
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020056struct platform_device_info {
57 struct device *parent;
Rafael J. Wysocki863f9f32012-11-21 00:21:59 +010058 struct acpi_dev_node acpi_node;
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020059
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(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +010071 const struct platform_device_info *pdevinfo);
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020072
73/**
74 * platform_device_register_resndata - add a platform-level device with
75 * resources and platform-specific data
76 *
77 * @parent: parent device for the device we're adding
78 * @name: base name of the device we're adding
79 * @id: instance id
80 * @res: set of resources that needs to be allocated for the device
81 * @num: number of resources
82 * @data: platform specific data for this platform device
83 * @size: size of platform specific data
84 *
85 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
86 */
87static inline struct platform_device *platform_device_register_resndata(
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +020088 struct device *parent, const char *name, int id,
89 const struct resource *res, unsigned int num,
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020090 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}
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200105
106/**
107 * platform_device_register_simple - add a platform-level device and its resources
108 * @name: base name of the device we're adding
109 * @id: instance id
110 * @res: set of resources that needs to be allocated for the device
111 * @num: number of resources
112 *
113 * This function creates a simple platform device that requires minimal
114 * resource and memory management. Canned release function freeing memory
115 * allocated for the device allows drivers using such devices to be
116 * unloaded without waiting for the last reference to the device to be
117 * dropped.
118 *
119 * This interface is primarily intended for use with legacy drivers which
120 * probe hardware directly. Because such drivers create sysfs device nodes
121 * themselves, rather than letting system infrastructure handle such device
122 * enumeration tasks, they don't fully conform to the Linux driver model.
123 * In particular, when such drivers are built as modules, they can't be
124 * "hotplugged".
125 *
126 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
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 * platform_device_register_data - add a platform-level device with platform-specific data
138 * @parent: parent device for the device we're adding
139 * @name: base name of the device we're adding
140 * @id: instance id
141 * @data: platform specific data for this platform device
142 * @size: size of platform specific data
143 *
144 * This function creates a simple platform device that requires minimal
145 * resource and memory management. Canned release function freeing memory
146 * allocated for the device allows drivers using such devices to be
147 * unloaded without waiting for the last reference to the device to be
148 * dropped.
149 *
150 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
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}
Russell Kingbbbf5082005-10-29 22:17:58 +0100159
Jean Delvare1359555e2007-09-09 12:54:16 +0200160extern struct platform_device *platform_device_alloc(const char *name, int id);
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100161extern int platform_device_add_resources(struct platform_device *pdev,
162 const struct resource *res,
163 unsigned int num);
Scott Wood6eefd342006-12-04 14:57:19 -0800164extern int platform_device_add_data(struct platform_device *pdev, const void *data, size_t size);
Russell King37c12e72005-11-05 21:19:33 +0000165extern int platform_device_add(struct platform_device *pdev);
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500166extern void platform_device_del(struct platform_device *pdev);
Russell King37c12e72005-11-05 21:19:33 +0000167extern void platform_device_put(struct platform_device *pdev);
168
Russell King00d3dcd2005-11-09 17:23:39 +0000169struct 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;
Uwe Kleine-König831fad22010-01-26 09:35:00 +0100176 const struct platform_device_id *id_table;
Russell King00d3dcd2005-11-09 17:23:39 +0000177};
178
179extern int platform_driver_register(struct platform_driver *);
180extern void platform_driver_unregister(struct platform_driver *);
181
David Brownellc67334f2006-11-16 23:28:47 -0800182/* non-hotpluggable platform devices may use this so that probe() and
183 * its support may live in __init sections, conserving runtime memory.
184 */
185extern int platform_driver_probe(struct platform_driver *driver,
186 int (*probe)(struct platform_device *));
187
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100188static 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}
Russell King00d3dcd2005-11-09 17:23:39 +0000197
Grant Likely940ab882011-10-05 11:29:49 -0600198/* module_platform_driver() - Helper macro for drivers that don't do
199 * anything special in module init/exit. This eliminates a lot of
200 * boilerplate. Each module may only use this macro once, and
201 * calling it replaces module_init() and module_exit()
202 */
203#define module_platform_driver(__platform_driver) \
Lars-Peter Clausen907d0ed2011-11-16 10:13:35 +0100204 module_driver(__platform_driver, platform_driver_register, \
205 platform_driver_unregister)
Grant Likely940ab882011-10-05 11:29:49 -0600206
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800207extern 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
Magnus Damm13977092009-03-30 14:37:25 -0700212/* early platform driver interface */
213struct early_platform_driver {
214 const char *class_str;
215 struct platform_driver *pdrv;
216 struct list_head list;
217 int requested_id;
Magnus Dammc60e0502009-11-27 17:38:51 +0900218 char *buffer;
219 int bufsize;
Magnus Damm13977092009-03-30 14:37:25 -0700220};
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
Magnus Dammc60e0502009-11-27 17:38:51 +0900239#define early_platform_init(class_string, platdrv) \
240 early_platform_init_buffer(class_string, platdrv, NULL, 0)
Magnus Damm13977092009-03-30 14:37:25 -0700241
242#ifndef MODULE
Magnus Dammc60e0502009-11-27 17:38:51 +0900243#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
Magnus Damm13977092009-03-30 14:37:25 -0700244static __initdata struct early_platform_driver early_driver = { \
245 .class_str = class_string, \
Magnus Dammc60e0502009-11-27 17:38:51 +0900246 .buffer = buf, \
247 .bufsize = bufsiz, \
248 .pdrv = platdrv, \
Magnus Damm13977092009-03-30 14:37:25 -0700249 .requested_id = EARLY_PLATFORM_ID_UNSET, \
250}; \
Magnus Dammc60e0502009-11-27 17:38:51 +0900251static int __init early_platform_driver_setup_func(char *buffer) \
Magnus Damm13977092009-03-30 14:37:25 -0700252{ \
Magnus Dammc60e0502009-11-27 17:38:51 +0900253 return early_platform_driver_register(&early_driver, buffer); \
Magnus Damm13977092009-03-30 14:37:25 -0700254} \
255early_param(class_string, early_platform_driver_setup_func)
256#else /* MODULE */
Magnus Dammc60e0502009-11-27 17:38:51 +0900257#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}
Magnus Damm13977092009-03-30 14:37:25 -0700262#endif /* MODULE */
263
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200264#ifdef CONFIG_SUSPEND
265extern int platform_pm_suspend(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200266extern int platform_pm_resume(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200267#else
268#define platform_pm_suspend NULL
269#define platform_pm_resume NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200270#endif
271
272#ifdef CONFIG_HIBERNATE_CALLBACKS
273extern int platform_pm_freeze(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200274extern int platform_pm_thaw(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200275extern int platform_pm_poweroff(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200276extern int platform_pm_restore(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200277#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
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200282#endif
283
284#ifdef CONFIG_PM_SLEEP
285#define USE_PLATFORM_PM_SLEEP_OPS \
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200286 .suspend = platform_pm_suspend, \
287 .resume = platform_pm_resume, \
288 .freeze = platform_pm_freeze, \
289 .thaw = platform_pm_thaw, \
290 .poweroff = platform_pm_poweroff, \
Rafael J. Wysocki9b39e732011-12-18 00:34:24 +0100291 .restore = platform_pm_restore,
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200292#else
293#define USE_PLATFORM_PM_SLEEP_OPS
294#endif
295
Russell Kingbbbf5082005-10-29 22:17:58 +0100296#endif /* _PLATFORM_DEVICE_H_ */