blob: beb25f277889a6aed5ad676e328708782b07c18f [file] [log] [blame]
Thomas Gleixner55716d22019-06-01 10:08:42 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Russell Kingbbbf5082005-10-29 22:17:58 +01002/*
3 * platform_device.h - generic, centralized driver model
4 *
5 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
6 *
Russell Kingbbbf5082005-10-29 22:17:58 +01007 * See Documentation/driver-model/ for more information.
8 */
9
10#ifndef _PLATFORM_DEVICE_H_
11#define _PLATFORM_DEVICE_H_
12
13#include <linux/device.h>
14
Jean Delvare689ae232012-07-27 22:14:59 +020015#define PLATFORM_DEVID_NONE (-1)
16#define PLATFORM_DEVID_AUTO (-2)
17
Samuel Ortize710d7d2011-04-08 00:43:01 +020018struct mfd_cell;
Heikki Krogerusf4d05262016-03-29 14:52:23 +030019struct property_entry;
Randy Dunlapac316722018-06-19 22:47:28 -070020struct platform_device_id;
Samuel Ortize710d7d2011-04-08 00:43:01 +020021
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
Andy Shevchenko719cf712018-08-20 16:45:41 +030042#define dev_is_platform(dev) ((dev)->bus == &platform_bus_type)
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);
Bartosz Golaszewski7945f922019-02-20 11:12:39 +000054extern void __iomem *
55devm_platform_ioremap_resource(struct platform_device *pdev,
56 unsigned int index);
Russell Kingbbbf5082005-10-29 22:17:58 +010057extern int platform_get_irq(struct platform_device *, unsigned int);
Stephen Boyd4b835552016-01-06 17:12:47 -080058extern int platform_irq_count(struct platform_device *);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +010059extern struct resource *platform_get_resource_byname(struct platform_device *,
60 unsigned int,
61 const char *);
Linus Walleijc0afe7b2009-04-27 02:38:16 +020062extern int platform_get_irq_byname(struct platform_device *, const char *);
Russell Kingbbbf5082005-10-29 22:17:58 +010063extern int platform_add_devices(struct platform_device **, int);
64
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020065struct platform_device_info {
66 struct device *parent;
Rafael J. Wysockice793482015-03-16 23:49:03 +010067 struct fwnode_handle *fwnode;
Mans Rullgard2c1ea6a2019-02-21 11:29:35 +000068 bool of_node_reused;
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020069
70 const char *name;
71 int id;
72
73 const struct resource *res;
74 unsigned int num_res;
75
76 const void *data;
77 size_t size_data;
78 u64 dma_mask;
Mika Westerberg00bbc1d2015-11-30 17:11:38 +020079
Heikki Krogerusf4d05262016-03-29 14:52:23 +030080 struct property_entry *properties;
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020081};
82extern struct platform_device *platform_device_register_full(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +010083 const struct platform_device_info *pdevinfo);
Uwe Kleine-König01dcc602011-08-25 11:16:00 +020084
85/**
86 * platform_device_register_resndata - add a platform-level device with
87 * resources and platform-specific data
88 *
89 * @parent: parent device for the device we're adding
90 * @name: base name of the device we're adding
91 * @id: instance id
92 * @res: set of resources that needs to be allocated for the device
93 * @num: number of resources
94 * @data: platform specific data for this platform device
95 * @size: size of platform specific data
96 *
97 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
98 */
99static inline struct platform_device *platform_device_register_resndata(
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200100 struct device *parent, const char *name, int id,
101 const struct resource *res, unsigned int num,
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200102 const void *data, size_t size) {
103
104 struct platform_device_info pdevinfo = {
105 .parent = parent,
106 .name = name,
107 .id = id,
108 .res = res,
109 .num_res = num,
110 .data = data,
111 .size_data = size,
112 .dma_mask = 0,
113 };
114
115 return platform_device_register_full(&pdevinfo);
116}
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200117
118/**
119 * platform_device_register_simple - add a platform-level device and its resources
120 * @name: base name of the device we're adding
121 * @id: instance id
122 * @res: set of resources that needs to be allocated for the device
123 * @num: number of resources
124 *
125 * This function creates a simple platform device that requires minimal
126 * resource and memory management. Canned release function freeing memory
127 * allocated for the device allows drivers using such devices to be
128 * unloaded without waiting for the last reference to the device to be
129 * dropped.
130 *
131 * This interface is primarily intended for use with legacy drivers which
132 * probe hardware directly. Because such drivers create sysfs device nodes
133 * themselves, rather than letting system infrastructure handle such device
134 * enumeration tasks, they don't fully conform to the Linux driver model.
135 * In particular, when such drivers are built as modules, they can't be
136 * "hotplugged".
137 *
138 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
139 */
140static inline struct platform_device *platform_device_register_simple(
141 const char *name, int id,
142 const struct resource *res, unsigned int num)
143{
144 return platform_device_register_resndata(NULL, name, id,
145 res, num, NULL, 0);
146}
147
148/**
149 * platform_device_register_data - add a platform-level device with platform-specific data
150 * @parent: parent device for the device we're adding
151 * @name: base name of the device we're adding
152 * @id: instance id
153 * @data: platform specific data for this platform device
154 * @size: size of platform specific data
155 *
156 * This function creates a simple platform device that requires minimal
157 * resource and memory management. Canned release function freeing memory
158 * allocated for the device allows drivers using such devices to be
159 * unloaded without waiting for the last reference to the device to be
160 * dropped.
161 *
162 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
163 */
164static inline struct platform_device *platform_device_register_data(
165 struct device *parent, const char *name, int id,
166 const void *data, size_t size)
167{
168 return platform_device_register_resndata(parent, name, id,
169 NULL, 0, data, size);
170}
Russell Kingbbbf5082005-10-29 22:17:58 +0100171
Jean Delvare1359555e2007-09-09 12:54:16 +0200172extern struct platform_device *platform_device_alloc(const char *name, int id);
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100173extern int platform_device_add_resources(struct platform_device *pdev,
174 const struct resource *res,
175 unsigned int num);
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100176extern int platform_device_add_data(struct platform_device *pdev,
177 const void *data, size_t size);
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200178extern int platform_device_add_properties(struct platform_device *pdev,
Jan Kiszka277036f2017-06-02 07:43:27 +0200179 const struct property_entry *properties);
Russell King37c12e72005-11-05 21:19:33 +0000180extern int platform_device_add(struct platform_device *pdev);
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500181extern void platform_device_del(struct platform_device *pdev);
Russell King37c12e72005-11-05 21:19:33 +0000182extern void platform_device_put(struct platform_device *pdev);
183
Russell King00d3dcd2005-11-09 17:23:39 +0000184struct platform_driver {
185 int (*probe)(struct platform_device *);
186 int (*remove)(struct platform_device *);
187 void (*shutdown)(struct platform_device *);
188 int (*suspend)(struct platform_device *, pm_message_t state);
189 int (*resume)(struct platform_device *);
190 struct device_driver driver;
Uwe Kleine-König831fad22010-01-26 09:35:00 +0100191 const struct platform_device_id *id_table;
Johan Hovold3f9120b2013-09-23 16:27:26 +0200192 bool prevent_deferred_probe;
Russell King00d3dcd2005-11-09 17:23:39 +0000193};
194
Rob Herring10dbc5e2013-04-21 16:38:31 -0500195#define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
196 driver))
197
Libo Chen94470572013-05-25 12:40:50 +0800198/*
199 * use a macro to avoid include chaining to get THIS_MODULE
200 */
201#define platform_driver_register(drv) \
202 __platform_driver_register(drv, THIS_MODULE)
203extern int __platform_driver_register(struct platform_driver *,
204 struct module *);
Russell King00d3dcd2005-11-09 17:23:39 +0000205extern void platform_driver_unregister(struct platform_driver *);
206
David Brownellc67334f2006-11-16 23:28:47 -0800207/* non-hotpluggable platform devices may use this so that probe() and
208 * its support may live in __init sections, conserving runtime memory.
209 */
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100210#define platform_driver_probe(drv, probe) \
211 __platform_driver_probe(drv, probe, THIS_MODULE)
212extern int __platform_driver_probe(struct platform_driver *driver,
213 int (*probe)(struct platform_device *), struct module *module);
David Brownellc67334f2006-11-16 23:28:47 -0800214
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100215static inline void *platform_get_drvdata(const struct platform_device *pdev)
216{
217 return dev_get_drvdata(&pdev->dev);
218}
219
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100220static inline void platform_set_drvdata(struct platform_device *pdev,
221 void *data)
Marc Kleine-Budde71d64292011-02-16 23:23:27 +0100222{
223 dev_set_drvdata(&pdev->dev, data);
224}
Russell King00d3dcd2005-11-09 17:23:39 +0000225
Grant Likely940ab882011-10-05 11:29:49 -0600226/* module_platform_driver() - Helper macro for drivers that don't do
227 * anything special in module init/exit. This eliminates a lot of
228 * boilerplate. Each module may only use this macro once, and
229 * calling it replaces module_init() and module_exit()
230 */
231#define module_platform_driver(__platform_driver) \
Lars-Peter Clausen907d0ed2011-11-16 10:13:35 +0100232 module_driver(__platform_driver, platform_driver_register, \
233 platform_driver_unregister)
Grant Likely940ab882011-10-05 11:29:49 -0600234
Paul Gortmakerf309d442015-05-01 20:10:57 -0400235/* builtin_platform_driver() - Helper macro for builtin drivers that
236 * don't do anything special in driver init. This eliminates some
237 * boilerplate. Each driver may only use this macro once, and
238 * calling it replaces device_initcall(). Note this is meant to be
239 * a parallel of module_platform_driver() above, but w/o _exit stuff.
240 */
241#define builtin_platform_driver(__platform_driver) \
242 builtin_driver(__platform_driver, platform_driver_register)
243
Fabio Porceddabab734f2013-01-09 12:15:26 +0100244/* module_platform_driver_probe() - Helper macro for drivers that don't do
245 * anything special in module init/exit. This eliminates a lot of
246 * boilerplate. Each module may only use this macro once, and
247 * calling it replaces module_init() and module_exit()
248 */
249#define module_platform_driver_probe(__platform_driver, __platform_probe) \
250static int __init __platform_driver##_init(void) \
251{ \
252 return platform_driver_probe(&(__platform_driver), \
253 __platform_probe); \
254} \
255module_init(__platform_driver##_init); \
256static void __exit __platform_driver##_exit(void) \
257{ \
258 platform_driver_unregister(&(__platform_driver)); \
259} \
260module_exit(__platform_driver##_exit);
261
Paul Gortmakerf309d442015-05-01 20:10:57 -0400262/* builtin_platform_driver_probe() - Helper macro for drivers that don't do
263 * anything special in device init. This eliminates some boilerplate. Each
264 * driver may only use this macro once, and using it replaces device_initcall.
265 * This is meant to be a parallel of module_platform_driver_probe above, but
266 * without the __exit parts.
267 */
268#define builtin_platform_driver_probe(__platform_driver, __platform_probe) \
269static int __init __platform_driver##_init(void) \
270{ \
271 return platform_driver_probe(&(__platform_driver), \
272 __platform_probe); \
273} \
274device_initcall(__platform_driver##_init); \
275
Wolfram Sang291f6532014-10-28 17:40:42 +0100276#define platform_create_bundle(driver, probe, res, n_res, data, size) \
277 __platform_create_bundle(driver, probe, res, n_res, data, size, THIS_MODULE)
278extern struct platform_device *__platform_create_bundle(
Fabio Porcedda6ae07f22013-03-26 10:35:17 +0100279 struct platform_driver *driver, int (*probe)(struct platform_device *),
280 struct resource *res, unsigned int n_res,
Wolfram Sang291f6532014-10-28 17:40:42 +0100281 const void *data, size_t size, struct module *module);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800282
Thierry Redingdbe22562015-09-25 17:29:04 +0200283int __platform_register_drivers(struct platform_driver * const *drivers,
284 unsigned int count, struct module *owner);
285void platform_unregister_drivers(struct platform_driver * const *drivers,
286 unsigned int count);
287
288#define platform_register_drivers(drivers, count) \
289 __platform_register_drivers(drivers, count, THIS_MODULE)
290
Magnus Damm13977092009-03-30 14:37:25 -0700291/* early platform driver interface */
292struct early_platform_driver {
293 const char *class_str;
294 struct platform_driver *pdrv;
295 struct list_head list;
296 int requested_id;
Magnus Dammc60e0502009-11-27 17:38:51 +0900297 char *buffer;
298 int bufsize;
Magnus Damm13977092009-03-30 14:37:25 -0700299};
300
301#define EARLY_PLATFORM_ID_UNSET -2
302#define EARLY_PLATFORM_ID_ERROR -3
303
304extern int early_platform_driver_register(struct early_platform_driver *epdrv,
305 char *buf);
306extern void early_platform_add_devices(struct platform_device **devs, int num);
307
308static inline int is_early_platform_device(struct platform_device *pdev)
309{
310 return !pdev->dev.driver;
311}
312
313extern void early_platform_driver_register_all(char *class_str);
314extern int early_platform_driver_probe(char *class_str,
315 int nr_probe, int user_only);
316extern void early_platform_cleanup(void);
317
Magnus Dammc60e0502009-11-27 17:38:51 +0900318#define early_platform_init(class_string, platdrv) \
319 early_platform_init_buffer(class_string, platdrv, NULL, 0)
Magnus Damm13977092009-03-30 14:37:25 -0700320
321#ifndef MODULE
Magnus Dammc60e0502009-11-27 17:38:51 +0900322#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
Magnus Damm13977092009-03-30 14:37:25 -0700323static __initdata struct early_platform_driver early_driver = { \
324 .class_str = class_string, \
Magnus Dammc60e0502009-11-27 17:38:51 +0900325 .buffer = buf, \
326 .bufsize = bufsiz, \
327 .pdrv = platdrv, \
Magnus Damm13977092009-03-30 14:37:25 -0700328 .requested_id = EARLY_PLATFORM_ID_UNSET, \
329}; \
Magnus Dammc60e0502009-11-27 17:38:51 +0900330static int __init early_platform_driver_setup_func(char *buffer) \
Magnus Damm13977092009-03-30 14:37:25 -0700331{ \
Magnus Dammc60e0502009-11-27 17:38:51 +0900332 return early_platform_driver_register(&early_driver, buffer); \
Magnus Damm13977092009-03-30 14:37:25 -0700333} \
334early_param(class_string, early_platform_driver_setup_func)
335#else /* MODULE */
Magnus Dammc60e0502009-11-27 17:38:51 +0900336#define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \
337static inline char *early_platform_driver_setup_func(void) \
338{ \
339 return bufsiz ? buf : NULL; \
340}
Magnus Damm13977092009-03-30 14:37:25 -0700341#endif /* MODULE */
342
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200343#ifdef CONFIG_SUSPEND
344extern int platform_pm_suspend(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200345extern int platform_pm_resume(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200346#else
347#define platform_pm_suspend NULL
348#define platform_pm_resume NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200349#endif
350
351#ifdef CONFIG_HIBERNATE_CALLBACKS
352extern int platform_pm_freeze(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200353extern int platform_pm_thaw(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200354extern int platform_pm_poweroff(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200355extern int platform_pm_restore(struct device *dev);
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200356#else
357#define platform_pm_freeze NULL
358#define platform_pm_thaw NULL
359#define platform_pm_poweroff NULL
360#define platform_pm_restore NULL
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200361#endif
362
Nipun Gupta07397df2018-04-28 08:21:58 +0530363extern int platform_dma_configure(struct device *dev);
364
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200365#ifdef CONFIG_PM_SLEEP
366#define USE_PLATFORM_PM_SLEEP_OPS \
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200367 .suspend = platform_pm_suspend, \
368 .resume = platform_pm_resume, \
369 .freeze = platform_pm_freeze, \
370 .thaw = platform_pm_thaw, \
371 .poweroff = platform_pm_poweroff, \
Rafael J. Wysocki9b39e732011-12-18 00:34:24 +0100372 .restore = platform_pm_restore,
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200373#else
374#define USE_PLATFORM_PM_SLEEP_OPS
375#endif
376
Russell Kingbbbf5082005-10-29 22:17:58 +0100377#endif /* _PLATFORM_DEVICE_H_ */