blob: 6abd019c76f8eff7d92cd71aa83c9e6d8b2ab471 [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);
Stephen Boyd4b835552016-01-06 17:12:47 -080054extern int platform_irq_count(struct platform_device *);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010055extern struct resource *platform_get_resource_byname(struct platform_device *,
56 unsigned int,
57 const char *);
Linus Walleijc0afe7b2009-04-27 02:38:16 +020058extern int platform_get_irq_byname(struct platform_device *, const char *);
Russell Kingbbbf5082005-10-29 22:17:58 +010059extern int platform_add_devices(struct platform_device **, int);
60
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020061struct platform_device_info {
62 struct device *parent;
Rafael J. Wysockice793482015-03-16 23:49:03 +010063 struct fwnode_handle *fwnode;
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020064
65 const char *name;
66 int id;
67
68 const struct resource *res;
69 unsigned int num_res;
70
71 const void *data;
72 size_t size_data;
73 u64 dma_mask;
74};
75extern struct platform_device *platform_device_register_full(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +010076 const struct platform_device_info *pdevinfo);
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020077
78/**
79 * platform_device_register_resndata - add a platform-level device with
80 * resources and platform-specific data
81 *
82 * @parent: parent device for the device we're adding
83 * @name: base name of the device we're adding
84 * @id: instance id
85 * @res: set of resources that needs to be allocated for the device
86 * @num: number of resources
87 * @data: platform specific data for this platform device
88 * @size: size of platform specific data
89 *
90 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
91 */
92static inline struct platform_device *platform_device_register_resndata(
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +020093 struct device *parent, const char *name, int id,
94 const struct resource *res, unsigned int num,
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020095 const void *data, size_t size) {
96
97 struct platform_device_info pdevinfo = {
98 .parent = parent,
99 .name = name,
100 .id = id,
101 .res = res,
102 .num_res = num,
103 .data = data,
104 .size_data = size,
105 .dma_mask = 0,
106 };
107
108 return platform_device_register_full(&pdevinfo);
109}
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200110
111/**
112 * platform_device_register_simple - add a platform-level device and its resources
113 * @name: base name of the device we're adding
114 * @id: instance id
115 * @res: set of resources that needs to be allocated for the device
116 * @num: number of resources
117 *
118 * This function creates a simple platform device that requires minimal
119 * resource and memory management. Canned release function freeing memory
120 * allocated for the device allows drivers using such devices to be
121 * unloaded without waiting for the last reference to the device to be
122 * dropped.
123 *
124 * This interface is primarily intended for use with legacy drivers which
125 * probe hardware directly. Because such drivers create sysfs device nodes
126 * themselves, rather than letting system infrastructure handle such device
127 * enumeration tasks, they don't fully conform to the Linux driver model.
128 * In particular, when such drivers are built as modules, they can't be
129 * "hotplugged".
130 *
131 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
132 */
133static inline struct platform_device *platform_device_register_simple(
134 const char *name, int id,
135 const struct resource *res, unsigned int num)
136{
137 return platform_device_register_resndata(NULL, name, id,
138 res, num, NULL, 0);
139}
140
141/**
142 * platform_device_register_data - add a platform-level device with platform-specific data
143 * @parent: parent device for the device we're adding
144 * @name: base name of the device we're adding
145 * @id: instance id
146 * @data: platform specific data for this platform device
147 * @size: size of platform specific data
148 *
149 * This function creates a simple platform device that requires minimal
150 * resource and memory management. Canned release function freeing memory
151 * allocated for the device allows drivers using such devices to be
152 * unloaded without waiting for the last reference to the device to be
153 * dropped.
154 *
155 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
156 */
157static inline struct platform_device *platform_device_register_data(
158 struct device *parent, const char *name, int id,
159 const void *data, size_t size)
160{
161 return platform_device_register_resndata(parent, name, id,
162 NULL, 0, data, size);
163}
Russell Kingbbbf5082005-10-29 22:17:58 +0100164
Jean Delvare1359555e2007-09-09 12:54:16 +0200165extern struct platform_device *platform_device_alloc(const char *name, int id);
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100166extern int platform_device_add_resources(struct platform_device *pdev,
167 const struct resource *res,
168 unsigned int num);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100169extern int platform_device_add_data(struct platform_device *pdev,
170 const void *data, size_t size);
Russell King37c12e72005-11-05 21:19:33 +0000171extern int platform_device_add(struct platform_device *pdev);
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500172extern void platform_device_del(struct platform_device *pdev);
Russell King37c12e72005-11-05 21:19:33 +0000173extern void platform_device_put(struct platform_device *pdev);
174
Russell King00d3dcd2005-11-09 17:23:39 +0000175struct platform_driver {
176 int (*probe)(struct platform_device *);
177 int (*remove)(struct platform_device *);
178 void (*shutdown)(struct platform_device *);
179 int (*suspend)(struct platform_device *, pm_message_t state);
180 int (*resume)(struct platform_device *);
181 struct device_driver driver;
Uwe Kleine-König831fad22010-01-26 09:35:00 +0100182 const struct platform_device_id *id_table;
Johan Hovold3f9120b2013-09-23 16:27:26 +0200183 bool prevent_deferred_probe;
Russell King00d3dcd2005-11-09 17:23:39 +0000184};
185
Rob Herring10dbc5e2013-04-21 16:38:31 -0500186#define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
187 driver))
188
Libo Chen94470572013-05-25 12:40:50 +0800189/*
190 * use a macro to avoid include chaining to get THIS_MODULE
191 */
192#define platform_driver_register(drv) \
193 __platform_driver_register(drv, THIS_MODULE)
194extern int __platform_driver_register(struct platform_driver *,
195 struct module *);
Russell King00d3dcd2005-11-09 17:23:39 +0000196extern void platform_driver_unregister(struct platform_driver *);
197
David Brownellc67334f2006-11-16 23:28:47 -0800198/* non-hotpluggable platform devices may use this so that probe() and
199 * its support may live in __init sections, conserving runtime memory.
200 */
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100201#define platform_driver_probe(drv, probe) \
202 __platform_driver_probe(drv, probe, THIS_MODULE)
203extern int __platform_driver_probe(struct platform_driver *driver,
204 int (*probe)(struct platform_device *), struct module *module);
David Brownellc67334f2006-11-16 23:28:47 -0800205
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100206static inline void *platform_get_drvdata(const struct platform_device *pdev)
207{
208 return dev_get_drvdata(&pdev->dev);
209}
210
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100211static inline void platform_set_drvdata(struct platform_device *pdev,
212 void *data)
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100213{
214 dev_set_drvdata(&pdev->dev, data);
215}
Russell King00d3dcd2005-11-09 17:23:39 +0000216
Grant Likely940ab882011-10-05 11:29:49 -0600217/* module_platform_driver() - Helper macro for drivers that don't do
218 * anything special in module init/exit. This eliminates a lot of
219 * boilerplate. Each module may only use this macro once, and
220 * calling it replaces module_init() and module_exit()
221 */
222#define module_platform_driver(__platform_driver) \
Lars-Peter Clausen907d0ed2011-11-16 10:13:35 +0100223 module_driver(__platform_driver, platform_driver_register, \
224 platform_driver_unregister)
Grant Likely940ab882011-10-05 11:29:49 -0600225
Paul Gortmakerf309d442015-05-01 20:10:57 -0400226/* builtin_platform_driver() - Helper macro for builtin drivers that
227 * don't do anything special in driver init. This eliminates some
228 * boilerplate. Each driver may only use this macro once, and
229 * calling it replaces device_initcall(). Note this is meant to be
230 * a parallel of module_platform_driver() above, but w/o _exit stuff.
231 */
232#define builtin_platform_driver(__platform_driver) \
233 builtin_driver(__platform_driver, platform_driver_register)
234
Fabio Porceddabab734f2013-01-09 12:15:26 +0100235/* module_platform_driver_probe() - Helper macro for drivers that don't do
236 * anything special in module init/exit. This eliminates a lot of
237 * boilerplate. Each module may only use this macro once, and
238 * calling it replaces module_init() and module_exit()
239 */
240#define module_platform_driver_probe(__platform_driver, __platform_probe) \
241static int __init __platform_driver##_init(void) \
242{ \
243 return platform_driver_probe(&(__platform_driver), \
244 __platform_probe); \
245} \
246module_init(__platform_driver##_init); \
247static void __exit __platform_driver##_exit(void) \
248{ \
249 platform_driver_unregister(&(__platform_driver)); \
250} \
251module_exit(__platform_driver##_exit);
252
Paul Gortmakerf309d442015-05-01 20:10:57 -0400253/* builtin_platform_driver_probe() - Helper macro for drivers that don't do
254 * anything special in device init. This eliminates some boilerplate. Each
255 * driver may only use this macro once, and using it replaces device_initcall.
256 * This is meant to be a parallel of module_platform_driver_probe above, but
257 * without the __exit parts.
258 */
259#define builtin_platform_driver_probe(__platform_driver, __platform_probe) \
260static int __init __platform_driver##_init(void) \
261{ \
262 return platform_driver_probe(&(__platform_driver), \
263 __platform_probe); \
264} \
265device_initcall(__platform_driver##_init); \
266
Wolfram Sang291f6532014-10-28 17:40:42 +0100267#define platform_create_bundle(driver, probe, res, n_res, data, size) \
268 __platform_create_bundle(driver, probe, res, n_res, data, size, THIS_MODULE)
269extern struct platform_device *__platform_create_bundle(
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100270 struct platform_driver *driver, int (*probe)(struct platform_device *),
271 struct resource *res, unsigned int n_res,
Wolfram Sang291f6532014-10-28 17:40:42 +0100272 const void *data, size_t size, struct module *module);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800273
Thierry Redingdbe22562015-09-25 17:29:04 +0200274int __platform_register_drivers(struct platform_driver * const *drivers,
275 unsigned int count, struct module *owner);
276void platform_unregister_drivers(struct platform_driver * const *drivers,
277 unsigned int count);
278
279#define platform_register_drivers(drivers, count) \
280 __platform_register_drivers(drivers, count, THIS_MODULE)
281
Magnus Damm13977092009-03-30 14:37:25 -0700282/* early platform driver interface */
283struct early_platform_driver {
284 const char *class_str;
285 struct platform_driver *pdrv;
286 struct list_head list;
287 int requested_id;
Magnus Dammc60e0502009-11-27 17:38:51 +0900288 char *buffer;
289 int bufsize;
Magnus Damm13977092009-03-30 14:37:25 -0700290};
291
292#define EARLY_PLATFORM_ID_UNSET -2
293#define EARLY_PLATFORM_ID_ERROR -3
294
295extern int early_platform_driver_register(struct early_platform_driver *epdrv,
296 char *buf);
297extern void early_platform_add_devices(struct platform_device **devs, int num);
298
299static inline int is_early_platform_device(struct platform_device *pdev)
300{
301 return !pdev->dev.driver;
302}
303
304extern void early_platform_driver_register_all(char *class_str);
305extern int early_platform_driver_probe(char *class_str,
306 int nr_probe, int user_only);
307extern void early_platform_cleanup(void);
308
Magnus Dammc60e0502009-11-27 17:38:51 +0900309#define early_platform_init(class_string, platdrv) \
310 early_platform_init_buffer(class_string, platdrv, NULL, 0)
Magnus Damm13977092009-03-30 14:37:25 -0700311
312#ifndef MODULE
Magnus Dammc60e0502009-11-27 17:38:51 +0900313#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
Magnus Damm13977092009-03-30 14:37:25 -0700314static __initdata struct early_platform_driver early_driver = { \
315 .class_str = class_string, \
Magnus Dammc60e0502009-11-27 17:38:51 +0900316 .buffer = buf, \
317 .bufsize = bufsiz, \
318 .pdrv = platdrv, \
Magnus Damm13977092009-03-30 14:37:25 -0700319 .requested_id = EARLY_PLATFORM_ID_UNSET, \
320}; \
Magnus Dammc60e0502009-11-27 17:38:51 +0900321static int __init early_platform_driver_setup_func(char *buffer) \
Magnus Damm13977092009-03-30 14:37:25 -0700322{ \
Magnus Dammc60e0502009-11-27 17:38:51 +0900323 return early_platform_driver_register(&early_driver, buffer); \
Magnus Damm13977092009-03-30 14:37:25 -0700324} \
325early_param(class_string, early_platform_driver_setup_func)
326#else /* MODULE */
Magnus Dammc60e0502009-11-27 17:38:51 +0900327#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
328static inline char *early_platform_driver_setup_func(void) \
329{ \
330 return bufsiz ? buf : NULL; \
331}
Magnus Damm13977092009-03-30 14:37:25 -0700332#endif /* MODULE */
333
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200334#ifdef CONFIG_SUSPEND
335extern int platform_pm_suspend(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200336extern int platform_pm_resume(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200337#else
338#define platform_pm_suspend NULL
339#define platform_pm_resume NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200340#endif
341
342#ifdef CONFIG_HIBERNATE_CALLBACKS
343extern int platform_pm_freeze(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200344extern int platform_pm_thaw(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200345extern int platform_pm_poweroff(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200346extern int platform_pm_restore(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200347#else
348#define platform_pm_freeze NULL
349#define platform_pm_thaw NULL
350#define platform_pm_poweroff NULL
351#define platform_pm_restore NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200352#endif
353
354#ifdef CONFIG_PM_SLEEP
355#define USE_PLATFORM_PM_SLEEP_OPS \
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200356 .suspend = platform_pm_suspend, \
357 .resume = platform_pm_resume, \
358 .freeze = platform_pm_freeze, \
359 .thaw = platform_pm_thaw, \
360 .poweroff = platform_pm_poweroff, \
Rafael J. Wysocki9b39e732011-12-18 00:34:24 +0100361 .restore = platform_pm_restore,
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200362#else
363#define USE_PLATFORM_PM_SLEEP_OPS
364#endif
365
Russell Kingbbbf5082005-10-29 22:17:58 +0100366#endif /* _PLATFORM_DEVICE_H_ */