blob: dba40b1c41dc1b0445bf23fe1f5775defee7b4a8 [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;
Mika Westerberg00bbc1d2015-11-30 17:11:38 +020021struct property_set;
Samuel Ortize710d7d2011-04-08 00:43:01 +020022
Russell Kingbbbf5082005-10-29 22:17:58 +010023struct platform_device {
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010024 const char *name;
Jean Delvare1359555e2007-09-09 12:54:16 +020025 int id;
Jean Delvare689ae232012-07-27 22:14:59 +020026 bool id_auto;
Russell Kingbbbf5082005-10-29 22:17:58 +010027 struct device dev;
28 u32 num_resources;
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010029 struct resource *resource;
Eric Miao57fee4a2009-02-04 11:52:40 +080030
Eric Miao3d03ba42010-01-01 15:43:28 +080031 const struct platform_device_id *id_entry;
Kim Phillips3d713e02014-06-02 19:42:58 -050032 char *driver_override; /* Driver name to force a match */
Magnus Dammd7aacad2009-07-08 13:21:31 +020033
Samuel Ortize710d7d2011-04-08 00:43:01 +020034 /* MFD cell pointer */
35 struct mfd_cell *mfd_cell;
36
Magnus Dammd7aacad2009-07-08 13:21:31 +020037 /* arch specific additions */
38 struct pdev_archdata archdata;
Russell Kingbbbf5082005-10-29 22:17:58 +010039};
40
Eric Miao57fee4a2009-02-04 11:52:40 +080041#define platform_get_device_id(pdev) ((pdev)->id_entry)
42
Russell Kingbbbf5082005-10-29 22:17:58 +010043#define to_platform_device(x) container_of((x), struct platform_device, dev)
44
45extern int platform_device_register(struct platform_device *);
46extern void platform_device_unregister(struct platform_device *);
47
48extern struct bus_type platform_bus_type;
49extern struct device platform_bus;
50
Kumar Galaa77ce812011-06-10 01:52:57 -050051extern void arch_setup_pdev_archdata(struct platform_device *);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010052extern struct resource *platform_get_resource(struct platform_device *,
53 unsigned int, unsigned int);
Russell Kingbbbf5082005-10-29 22:17:58 +010054extern int platform_get_irq(struct platform_device *, unsigned int);
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;
Mika Westerberg00bbc1d2015-11-30 17:11:38 +020074
75 const struct property_set *pset;
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020076};
77extern struct platform_device *platform_device_register_full(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +010078 const struct platform_device_info *pdevinfo);
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020079
80/**
81 * platform_device_register_resndata - add a platform-level device with
82 * resources and platform-specific data
83 *
84 * @parent: parent device for the device we're adding
85 * @name: base name of the device we're adding
86 * @id: instance id
87 * @res: set of resources that needs to be allocated for the device
88 * @num: number of resources
89 * @data: platform specific data for this platform device
90 * @size: size of platform specific data
91 *
92 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
93 */
94static inline struct platform_device *platform_device_register_resndata(
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +020095 struct device *parent, const char *name, int id,
96 const struct resource *res, unsigned int num,
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020097 const void *data, size_t size) {
98
99 struct platform_device_info pdevinfo = {
100 .parent = parent,
101 .name = name,
102 .id = id,
103 .res = res,
104 .num_res = num,
105 .data = data,
106 .size_data = size,
107 .dma_mask = 0,
108 };
109
110 return platform_device_register_full(&pdevinfo);
111}
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200112
113/**
114 * platform_device_register_simple - add a platform-level device and its resources
115 * @name: base name of the device we're adding
116 * @id: instance id
117 * @res: set of resources that needs to be allocated for the device
118 * @num: number of resources
119 *
120 * This function creates a simple platform device that requires minimal
121 * resource and memory management. Canned release function freeing memory
122 * allocated for the device allows drivers using such devices to be
123 * unloaded without waiting for the last reference to the device to be
124 * dropped.
125 *
126 * This interface is primarily intended for use with legacy drivers which
127 * probe hardware directly. Because such drivers create sysfs device nodes
128 * themselves, rather than letting system infrastructure handle such device
129 * enumeration tasks, they don't fully conform to the Linux driver model.
130 * In particular, when such drivers are built as modules, they can't be
131 * "hotplugged".
132 *
133 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
134 */
135static inline struct platform_device *platform_device_register_simple(
136 const char *name, int id,
137 const struct resource *res, unsigned int num)
138{
139 return platform_device_register_resndata(NULL, name, id,
140 res, num, NULL, 0);
141}
142
143/**
144 * platform_device_register_data - add a platform-level device with platform-specific data
145 * @parent: parent device for the device we're adding
146 * @name: base name of the device we're adding
147 * @id: instance id
148 * @data: platform specific data for this platform device
149 * @size: size of platform specific data
150 *
151 * This function creates a simple platform device that requires minimal
152 * resource and memory management. Canned release function freeing memory
153 * allocated for the device allows drivers using such devices to be
154 * unloaded without waiting for the last reference to the device to be
155 * dropped.
156 *
157 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
158 */
159static inline struct platform_device *platform_device_register_data(
160 struct device *parent, const char *name, int id,
161 const void *data, size_t size)
162{
163 return platform_device_register_resndata(parent, name, id,
164 NULL, 0, data, size);
165}
Russell Kingbbbf5082005-10-29 22:17:58 +0100166
Jean Delvare1359555e2007-09-09 12:54:16 +0200167extern struct platform_device *platform_device_alloc(const char *name, int id);
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100168extern int platform_device_add_resources(struct platform_device *pdev,
169 const struct resource *res,
170 unsigned int num);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100171extern int platform_device_add_data(struct platform_device *pdev,
172 const void *data, size_t size);
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200173extern int platform_device_add_properties(struct platform_device *pdev,
174 const struct property_set *pset);
Russell King37c12e72005-11-05 21:19:33 +0000175extern int platform_device_add(struct platform_device *pdev);
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500176extern void platform_device_del(struct platform_device *pdev);
Russell King37c12e72005-11-05 21:19:33 +0000177extern void platform_device_put(struct platform_device *pdev);
178
Russell King00d3dcd2005-11-09 17:23:39 +0000179struct platform_driver {
180 int (*probe)(struct platform_device *);
181 int (*remove)(struct platform_device *);
182 void (*shutdown)(struct platform_device *);
183 int (*suspend)(struct platform_device *, pm_message_t state);
184 int (*resume)(struct platform_device *);
185 struct device_driver driver;
Uwe Kleine-König831fad22010-01-26 09:35:00 +0100186 const struct platform_device_id *id_table;
Johan Hovold3f9120b2013-09-23 16:27:26 +0200187 bool prevent_deferred_probe;
Russell King00d3dcd2005-11-09 17:23:39 +0000188};
189
Rob Herring10dbc5e2013-04-21 16:38:31 -0500190#define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
191 driver))
192
Libo Chen94470572013-05-25 12:40:50 +0800193/*
194 * use a macro to avoid include chaining to get THIS_MODULE
195 */
196#define platform_driver_register(drv) \
197 __platform_driver_register(drv, THIS_MODULE)
198extern int __platform_driver_register(struct platform_driver *,
199 struct module *);
Russell King00d3dcd2005-11-09 17:23:39 +0000200extern void platform_driver_unregister(struct platform_driver *);
201
David Brownellc67334f2006-11-16 23:28:47 -0800202/* non-hotpluggable platform devices may use this so that probe() and
203 * its support may live in __init sections, conserving runtime memory.
204 */
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100205#define platform_driver_probe(drv, probe) \
206 __platform_driver_probe(drv, probe, THIS_MODULE)
207extern int __platform_driver_probe(struct platform_driver *driver,
208 int (*probe)(struct platform_device *), struct module *module);
David Brownellc67334f2006-11-16 23:28:47 -0800209
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100210static inline void *platform_get_drvdata(const struct platform_device *pdev)
211{
212 return dev_get_drvdata(&pdev->dev);
213}
214
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100215static inline void platform_set_drvdata(struct platform_device *pdev,
216 void *data)
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100217{
218 dev_set_drvdata(&pdev->dev, data);
219}
Russell King00d3dcd2005-11-09 17:23:39 +0000220
Grant Likely940ab882011-10-05 11:29:49 -0600221/* module_platform_driver() - Helper macro for drivers that don't do
222 * anything special in module init/exit. This eliminates a lot of
223 * boilerplate. Each module may only use this macro once, and
224 * calling it replaces module_init() and module_exit()
225 */
226#define module_platform_driver(__platform_driver) \
Lars-Peter Clausen907d0ed2011-11-16 10:13:35 +0100227 module_driver(__platform_driver, platform_driver_register, \
228 platform_driver_unregister)
Grant Likely940ab882011-10-05 11:29:49 -0600229
Paul Gortmakerf309d442015-05-01 20:10:57 -0400230/* builtin_platform_driver() - Helper macro for builtin drivers that
231 * don't do anything special in driver init. This eliminates some
232 * boilerplate. Each driver may only use this macro once, and
233 * calling it replaces device_initcall(). Note this is meant to be
234 * a parallel of module_platform_driver() above, but w/o _exit stuff.
235 */
236#define builtin_platform_driver(__platform_driver) \
237 builtin_driver(__platform_driver, platform_driver_register)
238
Fabio Porceddabab734f2013-01-09 12:15:26 +0100239/* module_platform_driver_probe() - Helper macro for drivers that don't do
240 * anything special in module init/exit. This eliminates a lot of
241 * boilerplate. Each module may only use this macro once, and
242 * calling it replaces module_init() and module_exit()
243 */
244#define module_platform_driver_probe(__platform_driver, __platform_probe) \
245static int __init __platform_driver##_init(void) \
246{ \
247 return platform_driver_probe(&(__platform_driver), \
248 __platform_probe); \
249} \
250module_init(__platform_driver##_init); \
251static void __exit __platform_driver##_exit(void) \
252{ \
253 platform_driver_unregister(&(__platform_driver)); \
254} \
255module_exit(__platform_driver##_exit);
256
Paul Gortmakerf309d442015-05-01 20:10:57 -0400257/* builtin_platform_driver_probe() - Helper macro for drivers that don't do
258 * anything special in device init. This eliminates some boilerplate. Each
259 * driver may only use this macro once, and using it replaces device_initcall.
260 * This is meant to be a parallel of module_platform_driver_probe above, but
261 * without the __exit parts.
262 */
263#define builtin_platform_driver_probe(__platform_driver, __platform_probe) \
264static int __init __platform_driver##_init(void) \
265{ \
266 return platform_driver_probe(&(__platform_driver), \
267 __platform_probe); \
268} \
269device_initcall(__platform_driver##_init); \
270
Wolfram Sang291f6532014-10-28 17:40:42 +0100271#define platform_create_bundle(driver, probe, res, n_res, data, size) \
272 __platform_create_bundle(driver, probe, res, n_res, data, size, THIS_MODULE)
273extern struct platform_device *__platform_create_bundle(
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100274 struct platform_driver *driver, int (*probe)(struct platform_device *),
275 struct resource *res, unsigned int n_res,
Wolfram Sang291f6532014-10-28 17:40:42 +0100276 const void *data, size_t size, struct module *module);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800277
Thierry Redingdbe22562015-09-25 17:29:04 +0200278int __platform_register_drivers(struct platform_driver * const *drivers,
279 unsigned int count, struct module *owner);
280void platform_unregister_drivers(struct platform_driver * const *drivers,
281 unsigned int count);
282
283#define platform_register_drivers(drivers, count) \
284 __platform_register_drivers(drivers, count, THIS_MODULE)
285
Magnus Damm13977092009-03-30 14:37:25 -0700286/* early platform driver interface */
287struct early_platform_driver {
288 const char *class_str;
289 struct platform_driver *pdrv;
290 struct list_head list;
291 int requested_id;
Magnus Dammc60e0502009-11-27 17:38:51 +0900292 char *buffer;
293 int bufsize;
Magnus Damm13977092009-03-30 14:37:25 -0700294};
295
296#define EARLY_PLATFORM_ID_UNSET -2
297#define EARLY_PLATFORM_ID_ERROR -3
298
299extern int early_platform_driver_register(struct early_platform_driver *epdrv,
300 char *buf);
301extern void early_platform_add_devices(struct platform_device **devs, int num);
302
303static inline int is_early_platform_device(struct platform_device *pdev)
304{
305 return !pdev->dev.driver;
306}
307
308extern void early_platform_driver_register_all(char *class_str);
309extern int early_platform_driver_probe(char *class_str,
310 int nr_probe, int user_only);
311extern void early_platform_cleanup(void);
312
Magnus Dammc60e0502009-11-27 17:38:51 +0900313#define early_platform_init(class_string, platdrv) \
314 early_platform_init_buffer(class_string, platdrv, NULL, 0)
Magnus Damm13977092009-03-30 14:37:25 -0700315
316#ifndef MODULE
Magnus Dammc60e0502009-11-27 17:38:51 +0900317#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
Magnus Damm13977092009-03-30 14:37:25 -0700318static __initdata struct early_platform_driver early_driver = { \
319 .class_str = class_string, \
Magnus Dammc60e0502009-11-27 17:38:51 +0900320 .buffer = buf, \
321 .bufsize = bufsiz, \
322 .pdrv = platdrv, \
Magnus Damm13977092009-03-30 14:37:25 -0700323 .requested_id = EARLY_PLATFORM_ID_UNSET, \
324}; \
Magnus Dammc60e0502009-11-27 17:38:51 +0900325static int __init early_platform_driver_setup_func(char *buffer) \
Magnus Damm13977092009-03-30 14:37:25 -0700326{ \
Magnus Dammc60e0502009-11-27 17:38:51 +0900327 return early_platform_driver_register(&early_driver, buffer); \
Magnus Damm13977092009-03-30 14:37:25 -0700328} \
329early_param(class_string, early_platform_driver_setup_func)
330#else /* MODULE */
Magnus Dammc60e0502009-11-27 17:38:51 +0900331#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
332static inline char *early_platform_driver_setup_func(void) \
333{ \
334 return bufsiz ? buf : NULL; \
335}
Magnus Damm13977092009-03-30 14:37:25 -0700336#endif /* MODULE */
337
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200338#ifdef CONFIG_SUSPEND
339extern int platform_pm_suspend(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200340extern int platform_pm_resume(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200341#else
342#define platform_pm_suspend NULL
343#define platform_pm_resume NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200344#endif
345
346#ifdef CONFIG_HIBERNATE_CALLBACKS
347extern int platform_pm_freeze(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200348extern int platform_pm_thaw(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200349extern int platform_pm_poweroff(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200350extern int platform_pm_restore(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200351#else
352#define platform_pm_freeze NULL
353#define platform_pm_thaw NULL
354#define platform_pm_poweroff NULL
355#define platform_pm_restore NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200356#endif
357
358#ifdef CONFIG_PM_SLEEP
359#define USE_PLATFORM_PM_SLEEP_OPS \
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200360 .suspend = platform_pm_suspend, \
361 .resume = platform_pm_resume, \
362 .freeze = platform_pm_freeze, \
363 .thaw = platform_pm_thaw, \
364 .poweroff = platform_pm_poweroff, \
Rafael J. Wysocki9b39e732011-12-18 00:34:24 +0100365 .restore = platform_pm_restore,
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200366#else
367#define USE_PLATFORM_PM_SLEEP_OPS
368#endif
369
Russell Kingbbbf5082005-10-29 22:17:58 +0100370#endif /* _PLATFORM_DEVICE_H_ */