blob: bba08f44cc97da8f881fba53a9d20c4e80ee2969 [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 {
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010023 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;
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010028 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;
Kim Phillips3d713e02014-06-02 19:42:58 -050031 char *driver_override; /* Driver name to force a match */
Magnus Dammd7aacad2009-07-08 13:21:31 +020032
Samuel Ortize710d7d2011-04-08 00:43:01 +020033 /* MFD cell pointer */
34 struct mfd_cell *mfd_cell;
35
Magnus Dammd7aacad2009-07-08 13:21:31 +020036 /* arch specific additions */
37 struct pdev_archdata archdata;
Russell Kingbbbf5082005-10-29 22:17:58 +010038};
39
Eric Miao57fee4a2009-02-04 11:52:40 +080040#define platform_get_device_id(pdev) ((pdev)->id_entry)
41
Russell Kingbbbf5082005-10-29 22:17:58 +010042#define to_platform_device(x) container_of((x), struct platform_device, dev)
43
44extern int platform_device_register(struct platform_device *);
45extern void platform_device_unregister(struct platform_device *);
46
47extern struct bus_type platform_bus_type;
48extern struct device platform_bus;
49
Kumar Galaa77ce812011-06-10 01:52:57 -050050extern void arch_setup_pdev_archdata(struct platform_device *);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010051extern struct resource *platform_get_resource(struct platform_device *,
52 unsigned int, unsigned int);
Russell Kingbbbf5082005-10-29 22:17:58 +010053extern int platform_get_irq(struct platform_device *, unsigned int);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010054extern struct resource *platform_get_resource_byname(struct platform_device *,
55 unsigned int,
56 const char *);
Linus Walleijc0afe7b2009-04-27 02:38:16 +020057extern int platform_get_irq_byname(struct platform_device *, const char *);
Russell Kingbbbf5082005-10-29 22:17:58 +010058extern int platform_add_devices(struct platform_device **, int);
59
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020060struct platform_device_info {
61 struct device *parent;
Rafael J. Wysockice793482015-03-16 23:49:03 +010062 struct fwnode_handle *fwnode;
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020063
64 const char *name;
65 int id;
66
67 const struct resource *res;
68 unsigned int num_res;
69
70 const void *data;
71 size_t size_data;
72 u64 dma_mask;
73};
74extern struct platform_device *platform_device_register_full(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +010075 const struct platform_device_info *pdevinfo);
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020076
77/**
78 * platform_device_register_resndata - add a platform-level device with
79 * resources and platform-specific data
80 *
81 * @parent: parent device for the device we're adding
82 * @name: base name of the device we're adding
83 * @id: instance id
84 * @res: set of resources that needs to be allocated for the device
85 * @num: number of resources
86 * @data: platform specific data for this platform device
87 * @size: size of platform specific data
88 *
89 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
90 */
91static inline struct platform_device *platform_device_register_resndata(
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +020092 struct device *parent, const char *name, int id,
93 const struct resource *res, unsigned int num,
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020094 const void *data, size_t size) {
95
96 struct platform_device_info pdevinfo = {
97 .parent = parent,
98 .name = name,
99 .id = id,
100 .res = res,
101 .num_res = num,
102 .data = data,
103 .size_data = size,
104 .dma_mask = 0,
105 };
106
107 return platform_device_register_full(&pdevinfo);
108}
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200109
110/**
111 * platform_device_register_simple - add a platform-level device and its resources
112 * @name: base name of the device we're adding
113 * @id: instance id
114 * @res: set of resources that needs to be allocated for the device
115 * @num: number of resources
116 *
117 * This function creates a simple platform device that requires minimal
118 * resource and memory management. Canned release function freeing memory
119 * allocated for the device allows drivers using such devices to be
120 * unloaded without waiting for the last reference to the device to be
121 * dropped.
122 *
123 * This interface is primarily intended for use with legacy drivers which
124 * probe hardware directly. Because such drivers create sysfs device nodes
125 * themselves, rather than letting system infrastructure handle such device
126 * enumeration tasks, they don't fully conform to the Linux driver model.
127 * In particular, when such drivers are built as modules, they can't be
128 * "hotplugged".
129 *
130 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
131 */
132static inline struct platform_device *platform_device_register_simple(
133 const char *name, int id,
134 const struct resource *res, unsigned int num)
135{
136 return platform_device_register_resndata(NULL, name, id,
137 res, num, NULL, 0);
138}
139
140/**
141 * platform_device_register_data - add a platform-level device with platform-specific data
142 * @parent: parent device for the device we're adding
143 * @name: base name of the device we're adding
144 * @id: instance id
145 * @data: platform specific data for this platform device
146 * @size: size of platform specific data
147 *
148 * This function creates a simple platform device that requires minimal
149 * resource and memory management. Canned release function freeing memory
150 * allocated for the device allows drivers using such devices to be
151 * unloaded without waiting for the last reference to the device to be
152 * dropped.
153 *
154 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
155 */
156static inline struct platform_device *platform_device_register_data(
157 struct device *parent, const char *name, int id,
158 const void *data, size_t size)
159{
160 return platform_device_register_resndata(parent, name, id,
161 NULL, 0, data, size);
162}
Russell Kingbbbf5082005-10-29 22:17:58 +0100163
Jean Delvare1359555e2007-09-09 12:54:16 +0200164extern struct platform_device *platform_device_alloc(const char *name, int id);
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100165extern int platform_device_add_resources(struct platform_device *pdev,
166 const struct resource *res,
167 unsigned int num);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100168extern int platform_device_add_data(struct platform_device *pdev,
169 const void *data, size_t size);
Russell King37c12e72005-11-05 21:19:33 +0000170extern int platform_device_add(struct platform_device *pdev);
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500171extern void platform_device_del(struct platform_device *pdev);
Russell King37c12e72005-11-05 21:19:33 +0000172extern void platform_device_put(struct platform_device *pdev);
173
Russell King00d3dcd2005-11-09 17:23:39 +0000174struct platform_driver {
175 int (*probe)(struct platform_device *);
176 int (*remove)(struct platform_device *);
177 void (*shutdown)(struct platform_device *);
178 int (*suspend)(struct platform_device *, pm_message_t state);
179 int (*resume)(struct platform_device *);
180 struct device_driver driver;
Uwe Kleine-König831fad22010-01-26 09:35:00 +0100181 const struct platform_device_id *id_table;
Johan Hovold3f9120b2013-09-23 16:27:26 +0200182 bool prevent_deferred_probe;
Russell King00d3dcd2005-11-09 17:23:39 +0000183};
184
Rob Herring10dbc5e2013-04-21 16:38:31 -0500185#define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
186 driver))
187
Libo Chen94470572013-05-25 12:40:50 +0800188/*
189 * use a macro to avoid include chaining to get THIS_MODULE
190 */
191#define platform_driver_register(drv) \
192 __platform_driver_register(drv, THIS_MODULE)
193extern int __platform_driver_register(struct platform_driver *,
194 struct module *);
Russell King00d3dcd2005-11-09 17:23:39 +0000195extern void platform_driver_unregister(struct platform_driver *);
196
David Brownellc67334f2006-11-16 23:28:47 -0800197/* non-hotpluggable platform devices may use this so that probe() and
198 * its support may live in __init sections, conserving runtime memory.
199 */
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100200#define platform_driver_probe(drv, probe) \
201 __platform_driver_probe(drv, probe, THIS_MODULE)
202extern int __platform_driver_probe(struct platform_driver *driver,
203 int (*probe)(struct platform_device *), struct module *module);
David Brownellc67334f2006-11-16 23:28:47 -0800204
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100205static inline void *platform_get_drvdata(const struct platform_device *pdev)
206{
207 return dev_get_drvdata(&pdev->dev);
208}
209
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100210static inline void platform_set_drvdata(struct platform_device *pdev,
211 void *data)
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100212{
213 dev_set_drvdata(&pdev->dev, data);
214}
Russell King00d3dcd2005-11-09 17:23:39 +0000215
Grant Likely940ab882011-10-05 11:29:49 -0600216/* module_platform_driver() - Helper macro for drivers that don't do
217 * anything special in module init/exit. This eliminates a lot of
218 * boilerplate. Each module may only use this macro once, and
219 * calling it replaces module_init() and module_exit()
220 */
221#define module_platform_driver(__platform_driver) \
Lars-Peter Clausen907d0ed2011-11-16 10:13:35 +0100222 module_driver(__platform_driver, platform_driver_register, \
223 platform_driver_unregister)
Grant Likely940ab882011-10-05 11:29:49 -0600224
Paul Gortmakerf309d442015-05-01 20:10:57 -0400225/* builtin_platform_driver() - Helper macro for builtin drivers that
226 * don't do anything special in driver init. This eliminates some
227 * boilerplate. Each driver may only use this macro once, and
228 * calling it replaces device_initcall(). Note this is meant to be
229 * a parallel of module_platform_driver() above, but w/o _exit stuff.
230 */
231#define builtin_platform_driver(__platform_driver) \
232 builtin_driver(__platform_driver, platform_driver_register)
233
Fabio Porceddabab734f2013-01-09 12:15:26 +0100234/* module_platform_driver_probe() - Helper macro for drivers that don't do
235 * anything special in module init/exit. This eliminates a lot of
236 * boilerplate. Each module may only use this macro once, and
237 * calling it replaces module_init() and module_exit()
238 */
239#define module_platform_driver_probe(__platform_driver, __platform_probe) \
240static int __init __platform_driver##_init(void) \
241{ \
242 return platform_driver_probe(&(__platform_driver), \
243 __platform_probe); \
244} \
245module_init(__platform_driver##_init); \
246static void __exit __platform_driver##_exit(void) \
247{ \
248 platform_driver_unregister(&(__platform_driver)); \
249} \
250module_exit(__platform_driver##_exit);
251
Paul Gortmakerf309d442015-05-01 20:10:57 -0400252/* builtin_platform_driver_probe() - Helper macro for drivers that don't do
253 * anything special in device init. This eliminates some boilerplate. Each
254 * driver may only use this macro once, and using it replaces device_initcall.
255 * This is meant to be a parallel of module_platform_driver_probe above, but
256 * without the __exit parts.
257 */
258#define builtin_platform_driver_probe(__platform_driver, __platform_probe) \
259static int __init __platform_driver##_init(void) \
260{ \
261 return platform_driver_probe(&(__platform_driver), \
262 __platform_probe); \
263} \
264device_initcall(__platform_driver##_init); \
265
Wolfram Sang291f6532014-10-28 17:40:42 +0100266#define platform_create_bundle(driver, probe, res, n_res, data, size) \
267 __platform_create_bundle(driver, probe, res, n_res, data, size, THIS_MODULE)
268extern struct platform_device *__platform_create_bundle(
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100269 struct platform_driver *driver, int (*probe)(struct platform_device *),
270 struct resource *res, unsigned int n_res,
Wolfram Sang291f6532014-10-28 17:40:42 +0100271 const void *data, size_t size, struct module *module);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800272
Magnus Damm13977092009-03-30 14:37:25 -0700273/* early platform driver interface */
274struct early_platform_driver {
275 const char *class_str;
276 struct platform_driver *pdrv;
277 struct list_head list;
278 int requested_id;
Magnus Dammc60e0502009-11-27 17:38:51 +0900279 char *buffer;
280 int bufsize;
Magnus Damm13977092009-03-30 14:37:25 -0700281};
282
283#define EARLY_PLATFORM_ID_UNSET -2
284#define EARLY_PLATFORM_ID_ERROR -3
285
286extern int early_platform_driver_register(struct early_platform_driver *epdrv,
287 char *buf);
288extern void early_platform_add_devices(struct platform_device **devs, int num);
289
290static inline int is_early_platform_device(struct platform_device *pdev)
291{
292 return !pdev->dev.driver;
293}
294
295extern void early_platform_driver_register_all(char *class_str);
296extern int early_platform_driver_probe(char *class_str,
297 int nr_probe, int user_only);
298extern void early_platform_cleanup(void);
299
Magnus Dammc60e0502009-11-27 17:38:51 +0900300#define early_platform_init(class_string, platdrv) \
301 early_platform_init_buffer(class_string, platdrv, NULL, 0)
Magnus Damm13977092009-03-30 14:37:25 -0700302
303#ifndef MODULE
Magnus Dammc60e0502009-11-27 17:38:51 +0900304#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
Magnus Damm13977092009-03-30 14:37:25 -0700305static __initdata struct early_platform_driver early_driver = { \
306 .class_str = class_string, \
Magnus Dammc60e0502009-11-27 17:38:51 +0900307 .buffer = buf, \
308 .bufsize = bufsiz, \
309 .pdrv = platdrv, \
Magnus Damm13977092009-03-30 14:37:25 -0700310 .requested_id = EARLY_PLATFORM_ID_UNSET, \
311}; \
Magnus Dammc60e0502009-11-27 17:38:51 +0900312static int __init early_platform_driver_setup_func(char *buffer) \
Magnus Damm13977092009-03-30 14:37:25 -0700313{ \
Magnus Dammc60e0502009-11-27 17:38:51 +0900314 return early_platform_driver_register(&early_driver, buffer); \
Magnus Damm13977092009-03-30 14:37:25 -0700315} \
316early_param(class_string, early_platform_driver_setup_func)
317#else /* MODULE */
Magnus Dammc60e0502009-11-27 17:38:51 +0900318#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
319static inline char *early_platform_driver_setup_func(void) \
320{ \
321 return bufsiz ? buf : NULL; \
322}
Magnus Damm13977092009-03-30 14:37:25 -0700323#endif /* MODULE */
324
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200325#ifdef CONFIG_SUSPEND
326extern int platform_pm_suspend(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200327extern int platform_pm_resume(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200328#else
329#define platform_pm_suspend NULL
330#define platform_pm_resume NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200331#endif
332
333#ifdef CONFIG_HIBERNATE_CALLBACKS
334extern int platform_pm_freeze(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200335extern int platform_pm_thaw(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200336extern int platform_pm_poweroff(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200337extern int platform_pm_restore(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200338#else
339#define platform_pm_freeze NULL
340#define platform_pm_thaw NULL
341#define platform_pm_poweroff NULL
342#define platform_pm_restore NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200343#endif
344
345#ifdef CONFIG_PM_SLEEP
346#define USE_PLATFORM_PM_SLEEP_OPS \
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200347 .suspend = platform_pm_suspend, \
348 .resume = platform_pm_resume, \
349 .freeze = platform_pm_freeze, \
350 .thaw = platform_pm_thaw, \
351 .poweroff = platform_pm_poweroff, \
Rafael J. Wysocki9b39e732011-12-18 00:34:24 +0100352 .restore = platform_pm_restore,
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200353#else
354#define USE_PLATFORM_PM_SLEEP_OPS
355#endif
356
Russell Kingbbbf5082005-10-29 22:17:58 +0100357#endif /* _PLATFORM_DEVICE_H_ */