blob: 4d1729853d1aface77da09b151869f162dab562d [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * platform.c - platform 'pseudo' bus for legacy devices
4 *
5 * Copyright (c) 2002-3 Patrick Mochel
6 * Copyright (c) 2002-3 Open Source Development Labs
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Please see Documentation/driver-model/platform.txt for more
9 * information.
10 */
11
Andrew Mortondaa41222009-08-06 16:00:44 -070012#include <linux/string.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010013#include <linux/platform_device.h>
Grant Likely05212152010-06-08 07:48:20 -060014#include <linux/of_device.h>
Rob Herring9ec36ca2014-04-23 17:57:41 -050015#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/dma-mapping.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -070019#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080021#include <linux/slab.h>
Magnus Damm9d730222009-08-20 20:25:32 +020022#include <linux/pm_runtime.h>
Ulf Hanssonf48c7672014-09-29 13:58:47 +020023#include <linux/pm_domain.h>
Jean Delvare689ae232012-07-27 22:14:59 +020024#include <linux/idr.h>
Mika Westerberg91e56872012-10-31 22:45:02 +010025#include <linux/acpi.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020026#include <linux/clk/clk-conf.h>
Kim Phillips3d713e02014-06-02 19:42:58 -050027#include <linux/limits.h>
Mika Westerberg00bbc1d2015-11-30 17:11:38 +020028#include <linux/property.h>
Qian Cai967d3012019-01-03 15:29:05 -080029#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010031#include "base.h"
Rafael J. Wysockibed2b422012-08-06 01:45:11 +020032#include "power/power.h"
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010033
Jean Delvare689ae232012-07-27 22:14:59 +020034/* For automatically allocated device IDs */
35static DEFINE_IDA(platform_devid_ida);
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037struct device platform_bus = {
Kay Sievers1e0b2cf2008-10-30 01:36:48 +010038 .init_name = "platform",
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
Dmitry Torokhova96b2042005-12-10 01:36:28 -050040EXPORT_SYMBOL_GPL(platform_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/**
Kumar Galaa77ce812011-06-10 01:52:57 -050043 * arch_setup_pdev_archdata - Allow manipulation of archdata before its used
Randy Dunlap7de636f2011-07-27 12:11:25 -070044 * @pdev: platform device
Kumar Galaa77ce812011-06-10 01:52:57 -050045 *
46 * This is called before platform_device_add() such that any pdev_archdata may
47 * be setup before the platform_notifier is called. So if a user needs to
48 * manipulate any relevant information in the pdev_archdata they can do:
49 *
Sebastian Andrzej Siewiorb1d6d822012-10-29 18:04:53 +010050 * platform_device_alloc()
Fabio Porcedda0258e182013-03-26 10:35:16 +010051 * ... manipulate ...
52 * platform_device_add()
Kumar Galaa77ce812011-06-10 01:52:57 -050053 *
54 * And if they don't care they can just call platform_device_register() and
55 * everything will just work out.
56 */
57void __weak arch_setup_pdev_archdata(struct platform_device *pdev)
58{
59}
60
61/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080062 * platform_get_resource - get a resource for a device
63 * @dev: platform device
64 * @type: resource type
65 * @num: resource index
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080067struct resource *platform_get_resource(struct platform_device *dev,
68 unsigned int type, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 int i;
71
72 for (i = 0; i < dev->num_resources; i++) {
73 struct resource *r = &dev->resource[i];
74
Magnus Dammc9f66162008-10-15 22:05:15 -070075 if (type == resource_type(r) && num-- == 0)
76 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
78 return NULL;
79}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050080EXPORT_SYMBOL_GPL(platform_get_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/**
Bartosz Golaszewski7945f922019-02-20 11:12:39 +000083 * devm_platform_ioremap_resource - call devm_ioremap_resource() for a platform
84 * device
85 *
86 * @pdev: platform device to use both for memory resource lookup as well as
Bartosz Golaszewski7067c962019-04-01 10:16:35 +020087 * resource management
Bartosz Golaszewski7945f922019-02-20 11:12:39 +000088 * @index: resource index
89 */
Bartosz Golaszewski837ccda2019-02-21 17:26:27 +010090#ifdef CONFIG_HAS_IOMEM
Bartosz Golaszewski7945f922019-02-20 11:12:39 +000091void __iomem *devm_platform_ioremap_resource(struct platform_device *pdev,
92 unsigned int index)
93{
94 struct resource *res;
95
96 res = platform_get_resource(pdev, IORESOURCE_MEM, index);
97 return devm_ioremap_resource(&pdev->dev, res);
98}
99EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource);
Bartosz Golaszewski837ccda2019-02-21 17:26:27 +0100100#endif /* CONFIG_HAS_IOMEM */
Bartosz Golaszewski7945f922019-02-20 11:12:39 +0000101
102/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800103 * platform_get_irq - get an IRQ for a device
104 * @dev: platform device
105 * @num: IRQ number index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
107int platform_get_irq(struct platform_device *dev, unsigned int num)
108{
Andreas Larsson5cf8f7d2012-10-29 23:26:56 +0000109#ifdef CONFIG_SPARC
110 /* sparc does not have irqs represented as IORESOURCE_IRQ resources */
111 if (!dev || num >= dev->archdata.num_irqs)
112 return -ENXIO;
113 return dev->archdata.irqs[num];
114#else
Rob Herring9ec36ca2014-04-23 17:57:41 -0500115 struct resource *r;
Guenter Roeckaff008a2014-06-17 15:51:02 -0700116 if (IS_ENABLED(CONFIG_OF_IRQ) && dev->dev.of_node) {
117 int ret;
118
119 ret = of_irq_get(dev->dev.of_node, num);
Sergei Shtylyove330b9a2016-07-04 01:04:24 +0300120 if (ret > 0 || ret == -EPROBE_DEFER)
Guenter Roeckaff008a2014-06-17 15:51:02 -0700121 return ret;
122 }
Rob Herring9ec36ca2014-04-23 17:57:41 -0500123
124 r = platform_get_resource(dev, IORESOURCE_IRQ, num);
Agustin Vega-Friasd44fa3d2017-02-02 18:23:58 -0500125 if (has_acpi_companion(&dev->dev)) {
126 if (r && r->flags & IORESOURCE_DISABLED) {
127 int ret;
128
129 ret = acpi_irq_get(ACPI_HANDLE(&dev->dev), num, r);
130 if (ret)
131 return ret;
132 }
133 }
134
Linus Walleij7085a742015-02-18 17:12:18 +0100135 /*
136 * The resources may pass trigger flags to the irqs that need
137 * to be set up. It so happens that the trigger flags for
138 * IORESOURCE_BITS correspond 1-to-1 to the IRQF_TRIGGER*
139 * settings.
140 */
Guenter Roeck60ca5e02016-09-13 20:32:44 -0700141 if (r && r->flags & IORESOURCE_BITS) {
142 struct irq_data *irqd;
143
144 irqd = irq_get_irq_data(r->start);
145 if (!irqd)
146 return -ENXIO;
147 irqd_set_trigger_type(irqd, r->flags & IORESOURCE_BITS);
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Enrico Granatadaaef252019-02-11 11:01:12 -0800150 if (r)
151 return r->start;
152
153 /*
154 * For the index 0 interrupt, allow falling back to GpioInt
155 * resources. While a device could have both Interrupt and GpioInt
156 * resources, making this fallback ambiguous, in many common cases
157 * the device will only expose one IRQ, and this fallback
158 * allows a common code path across either kind of resource.
159 */
160 if (num == 0 && has_acpi_companion(&dev->dev))
161 return acpi_dev_gpio_irq_get(ACPI_COMPANION(&dev->dev), num);
162
163 return -ENXIO;
Andreas Larsson5cf8f7d2012-10-29 23:26:56 +0000164#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500166EXPORT_SYMBOL_GPL(platform_get_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168/**
Stephen Boyd4b835552016-01-06 17:12:47 -0800169 * platform_irq_count - Count the number of IRQs a platform device uses
170 * @dev: platform device
171 *
172 * Return: Number of IRQs a platform device uses or EPROBE_DEFER
173 */
174int platform_irq_count(struct platform_device *dev)
175{
176 int ret, nr = 0;
177
178 while ((ret = platform_get_irq(dev, nr)) >= 0)
179 nr++;
180
181 if (ret == -EPROBE_DEFER)
182 return ret;
183
184 return nr;
185}
186EXPORT_SYMBOL_GPL(platform_irq_count);
187
188/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800189 * platform_get_resource_byname - get a resource for a device by name
190 * @dev: platform device
191 * @type: resource type
192 * @name: resource name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800194struct resource *platform_get_resource_byname(struct platform_device *dev,
Linus Walleijc0afe7b2009-04-27 02:38:16 +0200195 unsigned int type,
196 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int i;
199
200 for (i = 0; i < dev->num_resources; i++) {
201 struct resource *r = &dev->resource[i];
202
Peter Ujfalusi1b8cb922012-08-23 17:10:00 +0300203 if (unlikely(!r->name))
204 continue;
205
Magnus Dammc9f66162008-10-15 22:05:15 -0700206 if (type == resource_type(r) && !strcmp(r->name, name))
207 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209 return NULL;
210}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500211EXPORT_SYMBOL_GPL(platform_get_resource_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/**
Wolfram Sangd6ff8552012-11-13 17:47:13 +0100214 * platform_get_irq_byname - get an IRQ for a device by name
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800215 * @dev: platform device
216 * @name: IRQ name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 */
Linus Walleijc0afe7b2009-04-27 02:38:16 +0200218int platform_get_irq_byname(struct platform_device *dev, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Grygorii Strashkoad696742014-05-20 13:42:02 +0300220 struct resource *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Guenter Roeckaff008a2014-06-17 15:51:02 -0700222 if (IS_ENABLED(CONFIG_OF_IRQ) && dev->dev.of_node) {
223 int ret;
224
225 ret = of_irq_get_byname(dev->dev.of_node, name);
Sergei Shtylyove330b9a2016-07-04 01:04:24 +0300226 if (ret > 0 || ret == -EPROBE_DEFER)
Guenter Roeckaff008a2014-06-17 15:51:02 -0700227 return ret;
228 }
Grygorii Strashkoad696742014-05-20 13:42:02 +0300229
230 r = platform_get_resource_byname(dev, IORESOURCE_IRQ, name);
David Vrabel305b3222006-01-19 17:52:27 +0000231 return r ? r->start : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500233EXPORT_SYMBOL_GPL(platform_get_irq_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800236 * platform_add_devices - add a numbers of platform devices
237 * @devs: array of platform devices to add
238 * @num: number of platform devices in array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
240int platform_add_devices(struct platform_device **devs, int num)
241{
242 int i, ret = 0;
243
244 for (i = 0; i < num; i++) {
245 ret = platform_device_register(devs[i]);
246 if (ret) {
247 while (--i >= 0)
248 platform_device_unregister(devs[i]);
249 break;
250 }
251 }
252
253 return ret;
254}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500255EXPORT_SYMBOL_GPL(platform_add_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Russell King37c12e72005-11-05 21:19:33 +0000257struct platform_object {
258 struct platform_device pdev;
Yann Droneaud1cec24c2014-05-30 22:02:47 +0200259 char name[];
Russell King37c12e72005-11-05 21:19:33 +0000260};
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000263 * platform_device_put - destroy a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800264 * @pdev: platform device to free
Russell King37c12e72005-11-05 21:19:33 +0000265 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800266 * Free all memory associated with a platform device. This function must
267 * _only_ be externally called in error cases. All other usage is a bug.
Russell King37c12e72005-11-05 21:19:33 +0000268 */
269void platform_device_put(struct platform_device *pdev)
270{
Andy Shevchenko99fef582018-12-03 20:21:41 +0200271 if (!IS_ERR_OR_NULL(pdev))
Russell King37c12e72005-11-05 21:19:33 +0000272 put_device(&pdev->dev);
273}
274EXPORT_SYMBOL_GPL(platform_device_put);
275
276static void platform_device_release(struct device *dev)
277{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800278 struct platform_object *pa = container_of(dev, struct platform_object,
279 pdev.dev);
Russell King37c12e72005-11-05 21:19:33 +0000280
Grant Likely7096d042010-10-20 11:45:13 -0600281 of_device_node_put(&pa->pdev.dev);
Russell King37c12e72005-11-05 21:19:33 +0000282 kfree(pa->pdev.dev.platform_data);
Samuel Ortize710d7d2011-04-08 00:43:01 +0200283 kfree(pa->pdev.mfd_cell);
Russell King37c12e72005-11-05 21:19:33 +0000284 kfree(pa->pdev.resource);
Kim Phillips3d713e02014-06-02 19:42:58 -0500285 kfree(pa->pdev.driver_override);
Russell King37c12e72005-11-05 21:19:33 +0000286 kfree(pa);
287}
288
289/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000290 * platform_device_alloc - create a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800291 * @name: base name of the device we're adding
292 * @id: instance id
Russell King37c12e72005-11-05 21:19:33 +0000293 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800294 * Create a platform device object which can have other objects attached
295 * to it, and which will have attached objects freed when it is released.
Russell King37c12e72005-11-05 21:19:33 +0000296 */
Jean Delvare1359555e2007-09-09 12:54:16 +0200297struct platform_device *platform_device_alloc(const char *name, int id)
Russell King37c12e72005-11-05 21:19:33 +0000298{
299 struct platform_object *pa;
300
Yann Droneaud1cec24c2014-05-30 22:02:47 +0200301 pa = kzalloc(sizeof(*pa) + strlen(name) + 1, GFP_KERNEL);
Russell King37c12e72005-11-05 21:19:33 +0000302 if (pa) {
303 strcpy(pa->name, name);
304 pa->pdev.name = pa->name;
305 pa->pdev.id = id;
306 device_initialize(&pa->pdev.dev);
307 pa->pdev.dev.release = platform_device_release;
Kumar Galaa77ce812011-06-10 01:52:57 -0500308 arch_setup_pdev_archdata(&pa->pdev);
Russell King37c12e72005-11-05 21:19:33 +0000309 }
310
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500311 return pa ? &pa->pdev : NULL;
Russell King37c12e72005-11-05 21:19:33 +0000312}
313EXPORT_SYMBOL_GPL(platform_device_alloc);
314
315/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000316 * platform_device_add_resources - add resources to a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800317 * @pdev: platform device allocated by platform_device_alloc to add resources to
318 * @res: set of resources that needs to be allocated for the device
319 * @num: number of resources
Russell King37c12e72005-11-05 21:19:33 +0000320 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800321 * Add a copy of the resources to the platform device. The memory
322 * associated with the resources will be freed when the platform device is
323 * released.
Russell King37c12e72005-11-05 21:19:33 +0000324 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800325int platform_device_add_resources(struct platform_device *pdev,
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100326 const struct resource *res, unsigned int num)
Russell King37c12e72005-11-05 21:19:33 +0000327{
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200328 struct resource *r = NULL;
Russell King37c12e72005-11-05 21:19:33 +0000329
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200330 if (res) {
331 r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
332 if (!r)
333 return -ENOMEM;
Russell King37c12e72005-11-05 21:19:33 +0000334 }
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200335
Uwe Kleine-König4a03d6f2011-04-20 09:44:45 +0200336 kfree(pdev->resource);
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200337 pdev->resource = r;
338 pdev->num_resources = num;
339 return 0;
Russell King37c12e72005-11-05 21:19:33 +0000340}
341EXPORT_SYMBOL_GPL(platform_device_add_resources);
342
343/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000344 * platform_device_add_data - add platform-specific data to a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800345 * @pdev: platform device allocated by platform_device_alloc to add resources to
346 * @data: platform specific data for this platform device
347 * @size: size of platform specific data
Russell King37c12e72005-11-05 21:19:33 +0000348 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800349 * Add a copy of platform specific data to the platform device's
350 * platform_data pointer. The memory associated with the platform data
351 * will be freed when the platform device is released.
Russell King37c12e72005-11-05 21:19:33 +0000352 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800353int platform_device_add_data(struct platform_device *pdev, const void *data,
354 size_t size)
Russell King37c12e72005-11-05 21:19:33 +0000355{
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200356 void *d = NULL;
Russell King37c12e72005-11-05 21:19:33 +0000357
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200358 if (data) {
359 d = kmemdup(data, size, GFP_KERNEL);
360 if (!d)
361 return -ENOMEM;
Russell King37c12e72005-11-05 21:19:33 +0000362 }
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200363
Uwe Kleine-König251e0312011-04-20 09:44:43 +0200364 kfree(pdev->dev.platform_data);
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200365 pdev->dev.platform_data = d;
366 return 0;
Russell King37c12e72005-11-05 21:19:33 +0000367}
368EXPORT_SYMBOL_GPL(platform_device_add_data);
369
370/**
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200371 * platform_device_add_properties - add built-in properties to a platform device
372 * @pdev: platform device to add properties to
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300373 * @properties: null terminated array of properties to add
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200374 *
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300375 * The function will take deep copy of @properties and attach the copy to the
376 * platform device. The memory associated with properties will be freed when the
377 * platform device is released.
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200378 */
379int platform_device_add_properties(struct platform_device *pdev,
Jan Kiszka277036f2017-06-02 07:43:27 +0200380 const struct property_entry *properties)
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200381{
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300382 return device_add_properties(&pdev->dev, properties);
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200383}
384EXPORT_SYMBOL_GPL(platform_device_add_properties);
385
386/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800387 * platform_device_add - add a platform device to device hierarchy
388 * @pdev: platform device we're adding
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800390 * This is part 2 of platform_device_register(), though may be called
391 * separately _iff_ pdev was allocated by platform_device_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Russell King37c12e72005-11-05 21:19:33 +0000393int platform_device_add(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Jean Delvare689ae232012-07-27 22:14:59 +0200395 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (!pdev)
398 return -EINVAL;
399
400 if (!pdev->dev.parent)
401 pdev->dev.parent = &platform_bus;
402
403 pdev->dev.bus = &platform_bus_type;
404
Jean Delvare689ae232012-07-27 22:14:59 +0200405 switch (pdev->id) {
406 default:
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100407 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);
Jean Delvare689ae232012-07-27 22:14:59 +0200408 break;
409 case PLATFORM_DEVID_NONE:
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700410 dev_set_name(&pdev->dev, "%s", pdev->name);
Jean Delvare689ae232012-07-27 22:14:59 +0200411 break;
412 case PLATFORM_DEVID_AUTO:
413 /*
414 * Automatically allocated device ID. We mark it as such so
415 * that we remember it must be freed, and we append a suffix
416 * to avoid namespace collision with explicit IDs.
417 */
418 ret = ida_simple_get(&platform_devid_ida, 0, 0, GFP_KERNEL);
419 if (ret < 0)
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700420 goto err_out;
Jean Delvare689ae232012-07-27 22:14:59 +0200421 pdev->id = ret;
422 pdev->id_auto = true;
423 dev_set_name(&pdev->dev, "%s.%d.auto", pdev->name, pdev->id);
424 break;
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 for (i = 0; i < pdev->num_resources; i++) {
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700428 struct resource *p, *r = &pdev->resource[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 if (r->name == NULL)
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100431 r->name = dev_name(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 p = r->parent;
434 if (!p) {
Greg Kroah-Hartman0e6c8612015-06-10 08:38:29 -0700435 if (resource_type(r) == IORESOURCE_MEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 p = &iomem_resource;
Greg Kroah-Hartman0e6c8612015-06-10 08:38:29 -0700437 else if (resource_type(r) == IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 p = &ioport_resource;
439 }
440
Andy Shevchenko25ebcb72019-04-04 11:11:58 +0300441 if (p) {
442 ret = insert_resource(p, r);
443 if (ret) {
444 dev_err(&pdev->dev, "failed to claim resource %d: %pR\n", i, r);
445 goto failed;
446 }
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
450 pr_debug("Registering platform device '%s'. Parent at %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100451 dev_name(&pdev->dev), dev_name(pdev->dev.parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Russell Kinge3915532006-05-06 08:15:26 +0100453 ret = device_add(&pdev->dev);
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700454 if (ret == 0)
455 return ret;
456
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700457 failed:
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700458 if (pdev->id_auto) {
459 ida_simple_remove(&platform_devid_ida, pdev->id);
460 pdev->id = PLATFORM_DEVID_AUTO;
461 }
462
463 while (--i >= 0) {
464 struct resource *r = &pdev->resource[i];
Grant Likely7f5dcaf2015-06-07 15:20:11 +0100465 if (r->parent)
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700466 release_resource(r);
467 }
Magnus Dammc9f66162008-10-15 22:05:15 -0700468
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700469 err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return ret;
471}
Russell King37c12e72005-11-05 21:19:33 +0000472EXPORT_SYMBOL_GPL(platform_device_add);
473
474/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800475 * platform_device_del - remove a platform-level device
476 * @pdev: platform device we're removing
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500477 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800478 * Note that this function will also release all memory- and port-based
479 * resources owned by the device (@dev->resource). This function must
480 * _only_ be externally called in error cases. All other usage is a bug.
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500481 */
482void platform_device_del(struct platform_device *pdev)
483{
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700484 int i;
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500485
Andy Shevchenko99fef582018-12-03 20:21:41 +0200486 if (!IS_ERR_OR_NULL(pdev)) {
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700487 device_del(&pdev->dev);
488
489 if (pdev->id_auto) {
490 ida_simple_remove(&platform_devid_ida, pdev->id);
491 pdev->id = PLATFORM_DEVID_AUTO;
492 }
493
494 for (i = 0; i < pdev->num_resources; i++) {
495 struct resource *r = &pdev->resource[i];
Grant Likely7f5dcaf2015-06-07 15:20:11 +0100496 if (r->parent)
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700497 release_resource(r);
498 }
499 }
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500500}
501EXPORT_SYMBOL_GPL(platform_device_del);
502
503/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800504 * platform_device_register - add a platform-level device
505 * @pdev: platform device we're adding
Russell King37c12e72005-11-05 21:19:33 +0000506 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800507int platform_device_register(struct platform_device *pdev)
Russell King37c12e72005-11-05 21:19:33 +0000508{
509 device_initialize(&pdev->dev);
Kumar Galaa77ce812011-06-10 01:52:57 -0500510 arch_setup_pdev_archdata(pdev);
Russell King37c12e72005-11-05 21:19:33 +0000511 return platform_device_add(pdev);
512}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500513EXPORT_SYMBOL_GPL(platform_device_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800516 * platform_device_unregister - unregister a platform-level device
517 * @pdev: platform device we're unregistering
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800519 * Unregistration is done in 2 steps. First we release all resources
520 * and remove it from the subsystem, then we drop reference count by
521 * calling platform_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800523void platform_device_unregister(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500525 platform_device_del(pdev);
526 platform_device_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500528EXPORT_SYMBOL_GPL(platform_device_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/**
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200531 * platform_device_register_full - add a platform-level device with
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200532 * resources and platform-specific data
533 *
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200534 * @pdevinfo: data used to create device
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700535 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200536 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700537 */
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200538struct platform_device *platform_device_register_full(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +0100539 const struct platform_device_info *pdevinfo)
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700540{
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200541 int ret = -ENOMEM;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700542 struct platform_device *pdev;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700543
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200544 pdev = platform_device_alloc(pdevinfo->name, pdevinfo->id);
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200545 if (!pdev)
Johannes Berg36cf3b12019-03-01 13:24:47 +0100546 return ERR_PTR(-ENOMEM);
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700547
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200548 pdev->dev.parent = pdevinfo->parent;
Rafael J. Wysockice793482015-03-16 23:49:03 +0100549 pdev->dev.fwnode = pdevinfo->fwnode;
Mans Rullgard2c1ea6a2019-02-21 11:29:35 +0000550 pdev->dev.of_node = of_node_get(to_of_node(pdev->dev.fwnode));
551 pdev->dev.of_node_reused = pdevinfo->of_node_reused;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700552
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200553 if (pdevinfo->dma_mask) {
554 /*
555 * This memory isn't freed when the device is put,
556 * I don't have a nice idea for that though. Conceptually
557 * dma_mask in struct device should not be a pointer.
558 * See http://thread.gmane.org/gmane.linux.kernel.pci/9081
559 */
560 pdev->dev.dma_mask =
561 kmalloc(sizeof(*pdev->dev.dma_mask), GFP_KERNEL);
562 if (!pdev->dev.dma_mask)
563 goto err;
564
Qian Cai967d3012019-01-03 15:29:05 -0800565 kmemleak_ignore(pdev->dev.dma_mask);
566
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200567 *pdev->dev.dma_mask = pdevinfo->dma_mask;
568 pdev->dev.coherent_dma_mask = pdevinfo->dma_mask;
569 }
570
571 ret = platform_device_add_resources(pdev,
572 pdevinfo->res, pdevinfo->num_res);
Anton Vorontsov807508c2010-09-07 17:31:54 +0400573 if (ret)
574 goto err;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700575
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200576 ret = platform_device_add_data(pdev,
577 pdevinfo->data, pdevinfo->size_data);
Anton Vorontsov807508c2010-09-07 17:31:54 +0400578 if (ret)
579 goto err;
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200580
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300581 if (pdevinfo->properties) {
582 ret = platform_device_add_properties(pdev,
583 pdevinfo->properties);
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200584 if (ret)
585 goto err;
586 }
587
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200588 ret = platform_device_add(pdev);
589 if (ret) {
590err:
Rafael J. Wysocki7b199812013-11-11 22:41:56 +0100591 ACPI_COMPANION_SET(&pdev->dev, NULL);
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200592 kfree(pdev->dev.dma_mask);
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200593 platform_device_put(pdev);
594 return ERR_PTR(ret);
595 }
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700596
597 return pdev;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700598}
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200599EXPORT_SYMBOL_GPL(platform_device_register_full);
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700600
Russell King00d3dcd2005-11-09 17:23:39 +0000601static int platform_drv_probe(struct device *_dev)
602{
603 struct platform_driver *drv = to_platform_driver(_dev->driver);
604 struct platform_device *dev = to_platform_device(_dev);
Rafael J. Wysocki94d76d52012-11-26 10:04:53 +0100605 int ret;
Russell King00d3dcd2005-11-09 17:23:39 +0000606
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200607 ret = of_clk_set_defaults(_dev->of_node, false);
608 if (ret < 0)
609 return ret;
610
Ulf Hanssoncb518412014-09-19 20:27:38 +0200611 ret = dev_pm_domain_attach(_dev, true);
Ulf Hansson88a97692018-04-26 10:53:06 +0200612 if (ret)
613 goto out;
614
615 if (drv->probe) {
616 ret = drv->probe(dev);
617 if (ret)
618 dev_pm_domain_detach(_dev, true);
Ulf Hanssoncb518412014-09-19 20:27:38 +0200619 }
Rafael J. Wysocki94d76d52012-11-26 10:04:53 +0100620
Ulf Hansson88a97692018-04-26 10:53:06 +0200621out:
Johan Hovold3f9120b2013-09-23 16:27:26 +0200622 if (drv->prevent_deferred_probe && ret == -EPROBE_DEFER) {
623 dev_warn(_dev, "probe deferral not supported\n");
624 ret = -ENXIO;
625 }
626
Rafael J. Wysocki94d76d52012-11-26 10:04:53 +0100627 return ret;
Russell King00d3dcd2005-11-09 17:23:39 +0000628}
629
David Brownellc67334f2006-11-16 23:28:47 -0800630static int platform_drv_probe_fail(struct device *_dev)
631{
632 return -ENXIO;
633}
634
Russell King00d3dcd2005-11-09 17:23:39 +0000635static int platform_drv_remove(struct device *_dev)
636{
637 struct platform_driver *drv = to_platform_driver(_dev->driver);
638 struct platform_device *dev = to_platform_device(_dev);
Uwe Kleine-Königb8b2c7d2015-08-07 07:19:22 +0200639 int ret = 0;
Russell King00d3dcd2005-11-09 17:23:39 +0000640
Uwe Kleine-Königb8b2c7d2015-08-07 07:19:22 +0200641 if (drv->remove)
642 ret = drv->remove(dev);
Ulf Hanssoncb518412014-09-19 20:27:38 +0200643 dev_pm_domain_detach(_dev, true);
Rafael J. Wysocki94d76d52012-11-26 10:04:53 +0100644
645 return ret;
Russell King00d3dcd2005-11-09 17:23:39 +0000646}
647
648static void platform_drv_shutdown(struct device *_dev)
649{
650 struct platform_driver *drv = to_platform_driver(_dev->driver);
651 struct platform_device *dev = to_platform_device(_dev);
652
Uwe Kleine-Königb8b2c7d2015-08-07 07:19:22 +0200653 if (drv->shutdown)
654 drv->shutdown(dev);
Russell King00d3dcd2005-11-09 17:23:39 +0000655}
656
Russell King00d3dcd2005-11-09 17:23:39 +0000657/**
Libo Chen94470572013-05-25 12:40:50 +0800658 * __platform_driver_register - register a driver for platform-level devices
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800659 * @drv: platform driver structure
Randy Dunlap08801f92013-07-14 17:43:06 -0700660 * @owner: owning module/driver
Russell King00d3dcd2005-11-09 17:23:39 +0000661 */
Libo Chen94470572013-05-25 12:40:50 +0800662int __platform_driver_register(struct platform_driver *drv,
663 struct module *owner)
Russell King00d3dcd2005-11-09 17:23:39 +0000664{
Libo Chen94470572013-05-25 12:40:50 +0800665 drv->driver.owner = owner;
Russell King00d3dcd2005-11-09 17:23:39 +0000666 drv->driver.bus = &platform_bus_type;
Uwe Kleine-Königb8b2c7d2015-08-07 07:19:22 +0200667 drv->driver.probe = platform_drv_probe;
668 drv->driver.remove = platform_drv_remove;
669 drv->driver.shutdown = platform_drv_shutdown;
Magnus Damm783ea7d2009-06-04 22:13:33 +0200670
Russell King00d3dcd2005-11-09 17:23:39 +0000671 return driver_register(&drv->driver);
672}
Libo Chen94470572013-05-25 12:40:50 +0800673EXPORT_SYMBOL_GPL(__platform_driver_register);
Russell King00d3dcd2005-11-09 17:23:39 +0000674
675/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000676 * platform_driver_unregister - unregister a driver for platform-level devices
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800677 * @drv: platform driver structure
Russell King00d3dcd2005-11-09 17:23:39 +0000678 */
679void platform_driver_unregister(struct platform_driver *drv)
680{
681 driver_unregister(&drv->driver);
682}
683EXPORT_SYMBOL_GPL(platform_driver_unregister);
684
David Brownellc67334f2006-11-16 23:28:47 -0800685/**
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100686 * __platform_driver_probe - register driver for non-hotpluggable device
David Brownellc67334f2006-11-16 23:28:47 -0800687 * @drv: platform driver structure
Johan Hovold3f9120b2013-09-23 16:27:26 +0200688 * @probe: the driver probe routine, probably from an __init section
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100689 * @module: module which will be the owner of the driver
David Brownellc67334f2006-11-16 23:28:47 -0800690 *
691 * Use this instead of platform_driver_register() when you know the device
692 * is not hotpluggable and has already been registered, and you want to
693 * remove its run-once probe() infrastructure from memory after the driver
694 * has bound to the device.
695 *
696 * One typical use for this would be with drivers for controllers integrated
697 * into system-on-chip processors, where the controller devices have been
698 * configured as part of board setup.
699 *
Johan Hovold3f9120b2013-09-23 16:27:26 +0200700 * Note that this is incompatible with deferred probing.
Fabio Porcedda647c86d2013-03-26 10:35:15 +0100701 *
David Brownellc67334f2006-11-16 23:28:47 -0800702 * Returns zero if the driver registered and bound to a device, else returns
703 * a negative error code and with the driver not registered.
704 */
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100705int __init_or_module __platform_driver_probe(struct platform_driver *drv,
706 int (*probe)(struct platform_device *), struct module *module)
David Brownellc67334f2006-11-16 23:28:47 -0800707{
708 int retval, code;
709
Dmitry Torokhov5c36eb22015-03-30 16:20:07 -0700710 if (drv->driver.probe_type == PROBE_PREFER_ASYNCHRONOUS) {
711 pr_err("%s: drivers registered with %s can not be probed asynchronously\n",
712 drv->driver.name, __func__);
713 return -EINVAL;
714 }
715
716 /*
717 * We have to run our probes synchronously because we check if
718 * we find any devices to bind to and exit with error if there
719 * are any.
720 */
721 drv->driver.probe_type = PROBE_FORCE_SYNCHRONOUS;
722
Johan Hovold3f9120b2013-09-23 16:27:26 +0200723 /*
724 * Prevent driver from requesting probe deferral to avoid further
725 * futile probe attempts.
726 */
727 drv->prevent_deferred_probe = true;
728
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700729 /* make sure driver won't have bind/unbind attributes */
730 drv->driver.suppress_bind_attrs = true;
731
David Brownellc67334f2006-11-16 23:28:47 -0800732 /* temporary section violation during probe() */
733 drv->probe = probe;
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100734 retval = code = __platform_driver_register(drv, module);
David Brownellc67334f2006-11-16 23:28:47 -0800735
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700736 /*
737 * Fixup that section violation, being paranoid about code scanning
David Brownellc67334f2006-11-16 23:28:47 -0800738 * the list of drivers in order to probe new devices. Check to see
739 * if the probe was successful, and make sure any forced probes of
740 * new devices fail.
741 */
Patrick Pannutod79d3242010-08-06 17:12:41 -0700742 spin_lock(&drv->driver.bus->p->klist_drivers.k_lock);
David Brownellc67334f2006-11-16 23:28:47 -0800743 drv->probe = NULL;
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800744 if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list))
David Brownellc67334f2006-11-16 23:28:47 -0800745 retval = -ENODEV;
746 drv->driver.probe = platform_drv_probe_fail;
Patrick Pannutod79d3242010-08-06 17:12:41 -0700747 spin_unlock(&drv->driver.bus->p->klist_drivers.k_lock);
David Brownellc67334f2006-11-16 23:28:47 -0800748
749 if (code != retval)
750 platform_driver_unregister(drv);
751 return retval;
752}
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100753EXPORT_SYMBOL_GPL(__platform_driver_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800755/**
Wolfram Sang291f6532014-10-28 17:40:42 +0100756 * __platform_create_bundle - register driver and create corresponding device
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800757 * @driver: platform driver structure
758 * @probe: the driver probe routine, probably from an __init section
759 * @res: set of resources that needs to be allocated for the device
760 * @n_res: number of resources
761 * @data: platform specific data for this platform device
762 * @size: size of platform specific data
Wolfram Sang291f6532014-10-28 17:40:42 +0100763 * @module: module which will be the owner of the driver
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800764 *
765 * Use this in legacy-style modules that probe hardware directly and
766 * register a single platform device and corresponding platform driver.
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200767 *
768 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800769 */
Wolfram Sang291f6532014-10-28 17:40:42 +0100770struct platform_device * __init_or_module __platform_create_bundle(
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800771 struct platform_driver *driver,
772 int (*probe)(struct platform_device *),
773 struct resource *res, unsigned int n_res,
Wolfram Sang291f6532014-10-28 17:40:42 +0100774 const void *data, size_t size, struct module *module)
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800775{
776 struct platform_device *pdev;
777 int error;
778
779 pdev = platform_device_alloc(driver->driver.name, -1);
780 if (!pdev) {
781 error = -ENOMEM;
782 goto err_out;
783 }
784
Anton Vorontsov807508c2010-09-07 17:31:54 +0400785 error = platform_device_add_resources(pdev, res, n_res);
786 if (error)
787 goto err_pdev_put;
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800788
Anton Vorontsov807508c2010-09-07 17:31:54 +0400789 error = platform_device_add_data(pdev, data, size);
790 if (error)
791 goto err_pdev_put;
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800792
793 error = platform_device_add(pdev);
794 if (error)
795 goto err_pdev_put;
796
Wolfram Sang291f6532014-10-28 17:40:42 +0100797 error = __platform_driver_probe(driver, probe, module);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800798 if (error)
799 goto err_pdev_del;
800
801 return pdev;
802
803err_pdev_del:
804 platform_device_del(pdev);
805err_pdev_put:
806 platform_device_put(pdev);
807err_out:
808 return ERR_PTR(error);
809}
Wolfram Sang291f6532014-10-28 17:40:42 +0100810EXPORT_SYMBOL_GPL(__platform_create_bundle);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800811
Thierry Redingdbe22562015-09-25 17:29:04 +0200812/**
813 * __platform_register_drivers - register an array of platform drivers
814 * @drivers: an array of drivers to register
815 * @count: the number of drivers to register
816 * @owner: module owning the drivers
817 *
818 * Registers platform drivers specified by an array. On failure to register a
819 * driver, all previously registered drivers will be unregistered. Callers of
820 * this API should use platform_unregister_drivers() to unregister drivers in
821 * the reverse order.
822 *
823 * Returns: 0 on success or a negative error code on failure.
824 */
825int __platform_register_drivers(struct platform_driver * const *drivers,
826 unsigned int count, struct module *owner)
827{
828 unsigned int i;
829 int err;
830
831 for (i = 0; i < count; i++) {
832 pr_debug("registering platform driver %ps\n", drivers[i]);
833
834 err = __platform_driver_register(drivers[i], owner);
835 if (err < 0) {
836 pr_err("failed to register platform driver %ps: %d\n",
837 drivers[i], err);
838 goto error;
839 }
840 }
841
842 return 0;
843
844error:
845 while (i--) {
846 pr_debug("unregistering platform driver %ps\n", drivers[i]);
847 platform_driver_unregister(drivers[i]);
848 }
849
850 return err;
851}
852EXPORT_SYMBOL_GPL(__platform_register_drivers);
853
854/**
855 * platform_unregister_drivers - unregister an array of platform drivers
856 * @drivers: an array of drivers to unregister
857 * @count: the number of drivers to unregister
858 *
859 * Unegisters platform drivers specified by an array. This is typically used
860 * to complement an earlier call to platform_register_drivers(). Drivers are
861 * unregistered in the reverse order in which they were registered.
862 */
863void platform_unregister_drivers(struct platform_driver * const *drivers,
864 unsigned int count)
865{
866 while (count--) {
867 pr_debug("unregistering platform driver %ps\n", drivers[count]);
868 platform_driver_unregister(drivers[count]);
869 }
870}
871EXPORT_SYMBOL_GPL(platform_unregister_drivers);
872
David Brownella0245f72006-05-29 10:37:33 -0700873/* modalias support enables more hands-off userspace setup:
874 * (a) environment variable lets new-style hotplug events work once system is
875 * fully running: "modprobe $MODALIAS"
876 * (b) sysfs attribute lets new-style coldplug recover from hotplug events
877 * mishandled before system is fully running: "modprobe $(cat modalias)"
878 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800879static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
880 char *buf)
David Brownella0245f72006-05-29 10:37:33 -0700881{
882 struct platform_device *pdev = to_platform_device(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800883 int len;
884
Rob Herring0634c292017-03-22 09:16:27 -0500885 len = of_device_modalias(dev, buf, PAGE_SIZE);
Zhang Ruib9f73062014-01-14 16:46:38 +0800886 if (len != -ENODEV)
887 return len;
888
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800889 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
890 if (len != -ENODEV)
891 return len;
892
893 len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name);
David Brownella0245f72006-05-29 10:37:33 -0700894
895 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
896}
Greg Kroah-Hartmand06262e2013-08-23 14:24:37 -0700897static DEVICE_ATTR_RO(modalias);
David Brownella0245f72006-05-29 10:37:33 -0700898
Kim Phillips3d713e02014-06-02 19:42:58 -0500899static ssize_t driver_override_store(struct device *dev,
900 struct device_attribute *attr,
901 const char *buf, size_t count)
902{
903 struct platform_device *pdev = to_platform_device(dev);
Adrian Salido626553972017-04-25 16:55:26 -0700904 char *driver_override, *old, *cp;
Kim Phillips3d713e02014-06-02 19:42:58 -0500905
Nicolai Stangebf563b02017-09-11 09:45:42 +0200906 /* We need to keep extra room for a newline */
907 if (count >= (PAGE_SIZE - 1))
Kim Phillips3d713e02014-06-02 19:42:58 -0500908 return -EINVAL;
909
910 driver_override = kstrndup(buf, count, GFP_KERNEL);
911 if (!driver_override)
912 return -ENOMEM;
913
914 cp = strchr(driver_override, '\n');
915 if (cp)
916 *cp = '\0';
917
Adrian Salido626553972017-04-25 16:55:26 -0700918 device_lock(dev);
919 old = pdev->driver_override;
Kim Phillips3d713e02014-06-02 19:42:58 -0500920 if (strlen(driver_override)) {
921 pdev->driver_override = driver_override;
922 } else {
923 kfree(driver_override);
924 pdev->driver_override = NULL;
925 }
Adrian Salido626553972017-04-25 16:55:26 -0700926 device_unlock(dev);
Kim Phillips3d713e02014-06-02 19:42:58 -0500927
928 kfree(old);
929
930 return count;
931}
932
933static ssize_t driver_override_show(struct device *dev,
934 struct device_attribute *attr, char *buf)
935{
936 struct platform_device *pdev = to_platform_device(dev);
Adrian Salido626553972017-04-25 16:55:26 -0700937 ssize_t len;
Kim Phillips3d713e02014-06-02 19:42:58 -0500938
Adrian Salido626553972017-04-25 16:55:26 -0700939 device_lock(dev);
940 len = sprintf(buf, "%s\n", pdev->driver_override);
941 device_unlock(dev);
942 return len;
Kim Phillips3d713e02014-06-02 19:42:58 -0500943}
944static DEVICE_ATTR_RW(driver_override);
945
946
Greg Kroah-Hartmand06262e2013-08-23 14:24:37 -0700947static struct attribute *platform_dev_attrs[] = {
948 &dev_attr_modalias.attr,
Kim Phillips3d713e02014-06-02 19:42:58 -0500949 &dev_attr_driver_override.attr,
Greg Kroah-Hartmand06262e2013-08-23 14:24:37 -0700950 NULL,
David Brownella0245f72006-05-29 10:37:33 -0700951};
Greg Kroah-Hartmand06262e2013-08-23 14:24:37 -0700952ATTRIBUTE_GROUPS(platform_dev);
David Brownella0245f72006-05-29 10:37:33 -0700953
Kay Sievers7eff2e72007-08-14 15:15:12 +0200954static int platform_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownella0245f72006-05-29 10:37:33 -0700955{
956 struct platform_device *pdev = to_platform_device(dev);
Grant Likelyeca39302010-06-08 07:48:21 -0600957 int rc;
958
959 /* Some devices have extra OF data and an OF-style MODALIAS */
Fabio Porcedda0258e182013-03-26 10:35:16 +0100960 rc = of_device_uevent_modalias(dev, env);
Grant Likelyeca39302010-06-08 07:48:21 -0600961 if (rc != -ENODEV)
962 return rc;
David Brownella0245f72006-05-29 10:37:33 -0700963
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800964 rc = acpi_device_uevent_modalias(dev, env);
965 if (rc != -ENODEV)
966 return rc;
967
Eric Miao57fee4a2009-02-04 11:52:40 +0800968 add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX,
Sebastian Andrzej Siewior0a268132011-08-15 16:51:22 +0200969 pdev->name);
David Brownella0245f72006-05-29 10:37:33 -0700970 return 0;
971}
972
Eric Miao57fee4a2009-02-04 11:52:40 +0800973static const struct platform_device_id *platform_match_id(
Uwe Kleine-König831fad22010-01-26 09:35:00 +0100974 const struct platform_device_id *id,
Eric Miao57fee4a2009-02-04 11:52:40 +0800975 struct platform_device *pdev)
976{
977 while (id->name[0]) {
978 if (strcmp(pdev->name, id->name) == 0) {
979 pdev->id_entry = id;
980 return id;
981 }
982 id++;
983 }
984 return NULL;
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800988 * platform_match - bind platform device to platform driver.
989 * @dev: device.
990 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800992 * Platform device IDs are assumed to be encoded like this:
993 * "<name><instance>", where <name> is a short description of the type of
994 * device, like "pci" or "floppy", and <instance> is the enumerated
995 * instance of the device, like '0' or '42'. Driver IDs are simply
996 * "<name>". So, extract the <name> from the platform_device structure,
997 * and compare it against the name of the driver. Return whether they match
998 * or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -08001000static int platform_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Eric Miao71b3e0c2009-01-31 22:47:44 +08001002 struct platform_device *pdev = to_platform_device(dev);
Eric Miao57fee4a2009-02-04 11:52:40 +08001003 struct platform_driver *pdrv = to_platform_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Kim Phillips3d713e02014-06-02 19:42:58 -05001005 /* When driver_override is set, only bind to the matching driver */
1006 if (pdev->driver_override)
1007 return !strcmp(pdev->driver_override, drv->name);
1008
Grant Likely05212152010-06-08 07:48:20 -06001009 /* Attempt an OF style match first */
1010 if (of_driver_match_device(dev, drv))
1011 return 1;
1012
Mika Westerberg91e56872012-10-31 22:45:02 +01001013 /* Then try ACPI style match */
1014 if (acpi_driver_match_device(dev, drv))
1015 return 1;
1016
Grant Likely05212152010-06-08 07:48:20 -06001017 /* Then try to match against the id table */
Eric Miao57fee4a2009-02-04 11:52:40 +08001018 if (pdrv->id_table)
1019 return platform_match_id(pdrv->id_table, pdev) != NULL;
1020
1021 /* fall-back to driver name match */
Kay Sievers1e0b2cf2008-10-30 01:36:48 +01001022 return (strcmp(pdev->name, drv->name) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001025#ifdef CONFIG_PM_SLEEP
1026
1027static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Magnus Damm783ea7d2009-06-04 22:13:33 +02001029 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1030 struct platform_device *pdev = to_platform_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 int ret = 0;
1032
Magnus Damm783ea7d2009-06-04 22:13:33 +02001033 if (dev->driver && pdrv->suspend)
1034 ret = pdrv->suspend(pdev, mesg);
David Brownell386415d82006-09-03 13:16:45 -07001035
1036 return ret;
1037}
1038
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001039static int platform_legacy_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Magnus Damm783ea7d2009-06-04 22:13:33 +02001041 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1042 struct platform_device *pdev = to_platform_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 int ret = 0;
1044
Magnus Damm783ea7d2009-06-04 22:13:33 +02001045 if (dev->driver && pdrv->resume)
1046 ret = pdrv->resume(pdev);
Russell King9480e302005-10-28 09:52:56 -07001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return ret;
1049}
1050
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001051#endif /* CONFIG_PM_SLEEP */
Magnus Damm9d730222009-08-20 20:25:32 +02001052
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001053#ifdef CONFIG_SUSPEND
1054
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001055int platform_pm_suspend(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001056{
1057 struct device_driver *drv = dev->driver;
1058 int ret = 0;
1059
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001060 if (!drv)
1061 return 0;
1062
1063 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001064 if (drv->pm->suspend)
1065 ret = drv->pm->suspend(dev);
1066 } else {
1067 ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
1068 }
1069
1070 return ret;
1071}
1072
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001073int platform_pm_resume(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001074{
1075 struct device_driver *drv = dev->driver;
1076 int ret = 0;
1077
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001078 if (!drv)
1079 return 0;
1080
1081 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001082 if (drv->pm->resume)
1083 ret = drv->pm->resume(dev);
1084 } else {
1085 ret = platform_legacy_resume(dev);
1086 }
1087
1088 return ret;
1089}
1090
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001091#endif /* CONFIG_SUSPEND */
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001092
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +02001093#ifdef CONFIG_HIBERNATE_CALLBACKS
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001094
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001095int platform_pm_freeze(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001096{
1097 struct device_driver *drv = dev->driver;
1098 int ret = 0;
1099
1100 if (!drv)
1101 return 0;
1102
1103 if (drv->pm) {
1104 if (drv->pm->freeze)
1105 ret = drv->pm->freeze(dev);
1106 } else {
1107 ret = platform_legacy_suspend(dev, PMSG_FREEZE);
1108 }
1109
1110 return ret;
1111}
1112
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001113int platform_pm_thaw(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001114{
1115 struct device_driver *drv = dev->driver;
1116 int ret = 0;
1117
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001118 if (!drv)
1119 return 0;
1120
1121 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001122 if (drv->pm->thaw)
1123 ret = drv->pm->thaw(dev);
1124 } else {
1125 ret = platform_legacy_resume(dev);
1126 }
1127
1128 return ret;
1129}
1130
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001131int platform_pm_poweroff(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001132{
1133 struct device_driver *drv = dev->driver;
1134 int ret = 0;
1135
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001136 if (!drv)
1137 return 0;
1138
1139 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001140 if (drv->pm->poweroff)
1141 ret = drv->pm->poweroff(dev);
1142 } else {
1143 ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
1144 }
1145
1146 return ret;
1147}
1148
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001149int platform_pm_restore(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001150{
1151 struct device_driver *drv = dev->driver;
1152 int ret = 0;
1153
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001154 if (!drv)
1155 return 0;
1156
1157 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001158 if (drv->pm->restore)
1159 ret = drv->pm->restore(dev);
1160 } else {
1161 ret = platform_legacy_resume(dev);
1162 }
1163
1164 return ret;
1165}
1166
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001167#endif /* CONFIG_HIBERNATE_CALLBACKS */
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001168
Nipun Gupta07397df2018-04-28 08:21:58 +05301169int platform_dma_configure(struct device *dev)
1170{
1171 enum dev_dma_attr attr;
1172 int ret = 0;
1173
1174 if (dev->of_node) {
Christoph Hellwig3d6ce862018-05-03 16:25:08 +02001175 ret = of_dma_configure(dev, dev->of_node, true);
Nipun Gupta07397df2018-04-28 08:21:58 +05301176 } else if (has_acpi_companion(dev)) {
1177 attr = acpi_get_dma_attr(to_acpi_device_node(dev->fwnode));
Robin Murphye5361ca2018-12-06 13:20:49 -08001178 ret = acpi_dma_configure(dev, attr);
Nipun Gupta07397df2018-04-28 08:21:58 +05301179 }
1180
1181 return ret;
1182}
1183
Dmitry Torokhovd9ab7712009-07-22 00:37:25 +02001184static const struct dev_pm_ops platform_dev_pm_ops = {
Rafael J. Wysocki8b313a32011-04-29 00:36:32 +02001185 .runtime_suspend = pm_generic_runtime_suspend,
1186 .runtime_resume = pm_generic_runtime_resume,
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001187 USE_PLATFORM_PM_SLEEP_OPS
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001188};
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190struct bus_type platform_bus_type = {
1191 .name = "platform",
Greg Kroah-Hartmand06262e2013-08-23 14:24:37 -07001192 .dev_groups = platform_dev_groups,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 .match = platform_match,
David Brownella0245f72006-05-29 10:37:33 -07001194 .uevent = platform_uevent,
Nipun Gupta07397df2018-04-28 08:21:58 +05301195 .dma_configure = platform_dma_configure,
Magnus Damm9d730222009-08-20 20:25:32 +02001196 .pm = &platform_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197};
Dmitry Torokhova96b2042005-12-10 01:36:28 -05001198EXPORT_SYMBOL_GPL(platform_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200int __init platform_bus_init(void)
1201{
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001202 int error;
1203
Magnus Damm13977092009-03-30 14:37:25 -07001204 early_platform_cleanup();
1205
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001206 error = device_register(&platform_bus);
Arvind Yadavc8ae1672018-03-11 11:25:49 +05301207 if (error) {
1208 put_device(&platform_bus);
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001209 return error;
Arvind Yadavc8ae1672018-03-11 11:25:49 +05301210 }
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001211 error = bus_register(&platform_bus_type);
1212 if (error)
1213 device_unregister(&platform_bus);
Pantelis Antoniou801d7282014-10-28 22:36:01 +02001214 of_platform_register_reconfig_notifier();
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001215 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Magnus Damm13977092009-03-30 14:37:25 -07001218static __initdata LIST_HEAD(early_platform_driver_list);
1219static __initdata LIST_HEAD(early_platform_device_list);
1220
1221/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001222 * early_platform_driver_register - register early platform driver
Randy Dunlapd86c1302009-04-21 07:22:53 -07001223 * @epdrv: early_platform driver structure
Magnus Damm13977092009-03-30 14:37:25 -07001224 * @buf: string passed from early_param()
Magnus Damm4d26e1392010-03-10 20:50:38 +09001225 *
1226 * Helper function for early_platform_init() / early_platform_init_buffer()
Magnus Damm13977092009-03-30 14:37:25 -07001227 */
1228int __init early_platform_driver_register(struct early_platform_driver *epdrv,
1229 char *buf)
1230{
Magnus Dammc60e0502009-11-27 17:38:51 +09001231 char *tmp;
Magnus Damm13977092009-03-30 14:37:25 -07001232 int n;
1233
1234 /* Simply add the driver to the end of the global list.
1235 * Drivers will by default be put on the list in compiled-in order.
1236 */
1237 if (!epdrv->list.next) {
1238 INIT_LIST_HEAD(&epdrv->list);
1239 list_add_tail(&epdrv->list, &early_platform_driver_list);
1240 }
1241
1242 /* If the user has specified device then make sure the driver
1243 * gets prioritized. The driver of the last device specified on
1244 * command line will be put first on the list.
1245 */
1246 n = strlen(epdrv->pdrv->driver.name);
1247 if (buf && !strncmp(buf, epdrv->pdrv->driver.name, n)) {
1248 list_move(&epdrv->list, &early_platform_driver_list);
1249
Magnus Dammc60e0502009-11-27 17:38:51 +09001250 /* Allow passing parameters after device name */
1251 if (buf[n] == '\0' || buf[n] == ',')
Magnus Damm13977092009-03-30 14:37:25 -07001252 epdrv->requested_id = -1;
Magnus Dammc60e0502009-11-27 17:38:51 +09001253 else {
1254 epdrv->requested_id = simple_strtoul(&buf[n + 1],
1255 &tmp, 10);
1256
1257 if (buf[n] != '.' || (tmp == &buf[n + 1])) {
1258 epdrv->requested_id = EARLY_PLATFORM_ID_ERROR;
1259 n = 0;
1260 } else
1261 n += strcspn(&buf[n + 1], ",") + 1;
1262 }
1263
1264 if (buf[n] == ',')
1265 n++;
1266
1267 if (epdrv->bufsize) {
1268 memcpy(epdrv->buffer, &buf[n],
1269 min_t(int, epdrv->bufsize, strlen(&buf[n]) + 1));
1270 epdrv->buffer[epdrv->bufsize - 1] = '\0';
1271 }
Magnus Damm13977092009-03-30 14:37:25 -07001272 }
1273
1274 return 0;
1275}
1276
1277/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001278 * early_platform_add_devices - adds a number of early platform devices
Magnus Damm13977092009-03-30 14:37:25 -07001279 * @devs: array of early platform devices to add
1280 * @num: number of early platform devices in array
Magnus Damm4d26e1392010-03-10 20:50:38 +09001281 *
1282 * Used by early architecture code to register early platform devices and
1283 * their platform data.
Magnus Damm13977092009-03-30 14:37:25 -07001284 */
1285void __init early_platform_add_devices(struct platform_device **devs, int num)
1286{
1287 struct device *dev;
1288 int i;
1289
1290 /* simply add the devices to list */
1291 for (i = 0; i < num; i++) {
1292 dev = &devs[i]->dev;
1293
1294 if (!dev->devres_head.next) {
Rafael J. Wysockibed2b422012-08-06 01:45:11 +02001295 pm_runtime_early_init(dev);
Magnus Damm13977092009-03-30 14:37:25 -07001296 INIT_LIST_HEAD(&dev->devres_head);
1297 list_add_tail(&dev->devres_head,
1298 &early_platform_device_list);
1299 }
1300 }
1301}
1302
1303/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001304 * early_platform_driver_register_all - register early platform drivers
Magnus Damm13977092009-03-30 14:37:25 -07001305 * @class_str: string to identify early platform driver class
Magnus Damm4d26e1392010-03-10 20:50:38 +09001306 *
1307 * Used by architecture code to register all early platform drivers
1308 * for a certain class. If omitted then only early platform drivers
1309 * with matching kernel command line class parameters will be registered.
Magnus Damm13977092009-03-30 14:37:25 -07001310 */
1311void __init early_platform_driver_register_all(char *class_str)
1312{
1313 /* The "class_str" parameter may or may not be present on the kernel
1314 * command line. If it is present then there may be more than one
1315 * matching parameter.
1316 *
1317 * Since we register our early platform drivers using early_param()
1318 * we need to make sure that they also get registered in the case
1319 * when the parameter is missing from the kernel command line.
1320 *
1321 * We use parse_early_options() to make sure the early_param() gets
1322 * called at least once. The early_param() may be called more than
1323 * once since the name of the preferred device may be specified on
1324 * the kernel command line. early_platform_driver_register() handles
1325 * this case for us.
1326 */
1327 parse_early_options(class_str);
1328}
1329
1330/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001331 * early_platform_match - find early platform device matching driver
Randy Dunlapd86c1302009-04-21 07:22:53 -07001332 * @epdrv: early platform driver structure
Magnus Damm13977092009-03-30 14:37:25 -07001333 * @id: id to match against
1334 */
Hanjun Guoa8257912013-08-17 20:42:25 +08001335static struct platform_device * __init
Magnus Damm13977092009-03-30 14:37:25 -07001336early_platform_match(struct early_platform_driver *epdrv, int id)
1337{
1338 struct platform_device *pd;
1339
1340 list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1341 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1342 if (pd->id == id)
1343 return pd;
1344
1345 return NULL;
1346}
1347
1348/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001349 * early_platform_left - check if early platform driver has matching devices
Randy Dunlapd86c1302009-04-21 07:22:53 -07001350 * @epdrv: early platform driver structure
Magnus Damm13977092009-03-30 14:37:25 -07001351 * @id: return true if id or above exists
1352 */
Hanjun Guoa8257912013-08-17 20:42:25 +08001353static int __init early_platform_left(struct early_platform_driver *epdrv,
Magnus Damm13977092009-03-30 14:37:25 -07001354 int id)
1355{
1356 struct platform_device *pd;
1357
1358 list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1359 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1360 if (pd->id >= id)
1361 return 1;
1362
1363 return 0;
1364}
1365
1366/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001367 * early_platform_driver_probe_id - probe drivers matching class_str and id
Magnus Damm13977092009-03-30 14:37:25 -07001368 * @class_str: string to identify early platform driver class
1369 * @id: id to match against
1370 * @nr_probe: number of platform devices to successfully probe before exiting
1371 */
1372static int __init early_platform_driver_probe_id(char *class_str,
1373 int id,
1374 int nr_probe)
1375{
1376 struct early_platform_driver *epdrv;
1377 struct platform_device *match;
1378 int match_id;
1379 int n = 0;
1380 int left = 0;
1381
1382 list_for_each_entry(epdrv, &early_platform_driver_list, list) {
1383 /* only use drivers matching our class_str */
1384 if (strcmp(class_str, epdrv->class_str))
1385 continue;
1386
1387 if (id == -2) {
1388 match_id = epdrv->requested_id;
1389 left = 1;
1390
1391 } else {
1392 match_id = id;
1393 left += early_platform_left(epdrv, id);
1394
1395 /* skip requested id */
1396 switch (epdrv->requested_id) {
1397 case EARLY_PLATFORM_ID_ERROR:
1398 case EARLY_PLATFORM_ID_UNSET:
1399 break;
1400 default:
1401 if (epdrv->requested_id == id)
1402 match_id = EARLY_PLATFORM_ID_UNSET;
1403 }
1404 }
1405
1406 switch (match_id) {
1407 case EARLY_PLATFORM_ID_ERROR:
Fabio Porcedda0258e182013-03-26 10:35:16 +01001408 pr_warn("%s: unable to parse %s parameter\n",
1409 class_str, epdrv->pdrv->driver.name);
Magnus Damm13977092009-03-30 14:37:25 -07001410 /* fall-through */
1411 case EARLY_PLATFORM_ID_UNSET:
1412 match = NULL;
1413 break;
1414 default:
1415 match = early_platform_match(epdrv, match_id);
1416 }
1417
1418 if (match) {
Paul Mundta636ee72010-03-09 06:57:53 +00001419 /*
1420 * Set up a sensible init_name to enable
1421 * dev_name() and others to be used before the
1422 * rest of the driver core is initialized.
1423 */
Paul Mundt06fe53b2010-05-13 17:56:56 +09001424 if (!match->dev.init_name && slab_is_available()) {
Paul Mundta636ee72010-03-09 06:57:53 +00001425 if (match->id != -1)
Paul Mundtbd050862010-03-29 15:51:35 +09001426 match->dev.init_name =
1427 kasprintf(GFP_KERNEL, "%s.%d",
1428 match->name,
1429 match->id);
Paul Mundta636ee72010-03-09 06:57:53 +00001430 else
Paul Mundtbd050862010-03-29 15:51:35 +09001431 match->dev.init_name =
1432 kasprintf(GFP_KERNEL, "%s",
1433 match->name);
Paul Mundta636ee72010-03-09 06:57:53 +00001434
Paul Mundta636ee72010-03-09 06:57:53 +00001435 if (!match->dev.init_name)
1436 return -ENOMEM;
1437 }
Paul Mundtbd050862010-03-29 15:51:35 +09001438
Magnus Damm13977092009-03-30 14:37:25 -07001439 if (epdrv->pdrv->probe(match))
Fabio Porcedda0258e182013-03-26 10:35:16 +01001440 pr_warn("%s: unable to probe %s early.\n",
1441 class_str, match->name);
Magnus Damm13977092009-03-30 14:37:25 -07001442 else
1443 n++;
1444 }
1445
1446 if (n >= nr_probe)
1447 break;
1448 }
1449
1450 if (left)
1451 return n;
1452 else
1453 return -ENODEV;
1454}
1455
1456/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001457 * early_platform_driver_probe - probe a class of registered drivers
Magnus Damm13977092009-03-30 14:37:25 -07001458 * @class_str: string to identify early platform driver class
1459 * @nr_probe: number of platform devices to successfully probe before exiting
1460 * @user_only: only probe user specified early platform devices
Magnus Damm4d26e1392010-03-10 20:50:38 +09001461 *
1462 * Used by architecture code to probe registered early platform drivers
1463 * within a certain class. For probe to happen a registered early platform
1464 * device matching a registered early platform driver is needed.
Magnus Damm13977092009-03-30 14:37:25 -07001465 */
1466int __init early_platform_driver_probe(char *class_str,
1467 int nr_probe,
1468 int user_only)
1469{
1470 int k, n, i;
1471
1472 n = 0;
1473 for (i = -2; n < nr_probe; i++) {
1474 k = early_platform_driver_probe_id(class_str, i, nr_probe - n);
1475
1476 if (k < 0)
1477 break;
1478
1479 n += k;
1480
1481 if (user_only)
1482 break;
1483 }
1484
1485 return n;
1486}
1487
1488/**
1489 * early_platform_cleanup - clean up early platform code
1490 */
1491void __init early_platform_cleanup(void)
1492{
1493 struct platform_device *pd, *pd2;
1494
1495 /* clean up the devres list used to chain devices */
1496 list_for_each_entry_safe(pd, pd2, &early_platform_device_list,
1497 dev.devres_head) {
1498 list_del(&pd->dev.devres_head);
1499 memset(&pd->dev.devres_head, 0, sizeof(pd->dev.devres_head));
1500 }
1501}
1502