Merge branch 'core-objtool-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / drivers / base / platform.c
CommitLineData
989d42e8 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
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 *
fe34c89d 8 * Please see Documentation/driver-api/driver-model/platform.rst for more
1da177e4
LT
9 * information.
10 */
11
daa41226 12#include <linux/string.h>
d052d1be 13#include <linux/platform_device.h>
05212157 14#include <linux/of_device.h>
9ec36caf 15#include <linux/of_irq.h>
1da177e4
LT
16#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/dma-mapping.h>
57c8a661 19#include <linux/memblock.h>
1da177e4 20#include <linux/err.h>
4e57b681 21#include <linux/slab.h>
9d730229 22#include <linux/pm_runtime.h>
f48c767c 23#include <linux/pm_domain.h>
689ae231 24#include <linux/idr.h>
91e56878 25#include <linux/acpi.h>
86be408b 26#include <linux/clk/clk-conf.h>
3d713e0e 27#include <linux/limits.h>
00bbc1d8 28#include <linux/property.h>
967d3010 29#include <linux/kmemleak.h>
39cc539f 30#include <linux/types.h>
1da177e4 31
a1bdc7aa 32#include "base.h"
bed2b42d 33#include "power/power.h"
a1bdc7aa 34
689ae231
JD
35/* For automatically allocated device IDs */
36static DEFINE_IDA(platform_devid_ida);
37
1da177e4 38struct device platform_bus = {
1e0b2cf9 39 .init_name = "platform",
1da177e4 40};
a96b2042 41EXPORT_SYMBOL_GPL(platform_bus);
1da177e4
LT
42
43/**
4a3ad20c
GKH
44 * platform_get_resource - get a resource for a device
45 * @dev: platform device
46 * @type: resource type
47 * @num: resource index
1da177e4 48 */
4a3ad20c
GKH
49struct resource *platform_get_resource(struct platform_device *dev,
50 unsigned int type, unsigned int num)
1da177e4 51{
39cc539f 52 u32 i;
1da177e4
LT
53
54 for (i = 0; i < dev->num_resources; i++) {
55 struct resource *r = &dev->resource[i];
56
c9f66169
MD
57 if (type == resource_type(r) && num-- == 0)
58 return r;
1da177e4
LT
59 }
60 return NULL;
61}
a96b2042 62EXPORT_SYMBOL_GPL(platform_get_resource);
1da177e4 63
bb6243b4 64#ifdef CONFIG_HAS_IOMEM
890cc39a
DZ
65/**
66 * devm_platform_get_and_ioremap_resource - call devm_ioremap_resource() for a
67 * platform device and get resource
68 *
69 * @pdev: platform device to use both for memory resource lookup as well as
70 * resource management
71 * @index: resource index
72 * @res: optional output parameter to store a pointer to the obtained resource.
73 */
74void __iomem *
75devm_platform_get_and_ioremap_resource(struct platform_device *pdev,
76 unsigned int index, struct resource **res)
77{
78 struct resource *r;
79
80 r = platform_get_resource(pdev, IORESOURCE_MEM, index);
81 if (res)
82 *res = r;
83 return devm_ioremap_resource(&pdev->dev, r);
84}
85EXPORT_SYMBOL_GPL(devm_platform_get_and_ioremap_resource);
86
7945f929
BG
87/**
88 * devm_platform_ioremap_resource - call devm_ioremap_resource() for a platform
89 * device
90 *
91 * @pdev: platform device to use both for memory resource lookup as well as
7067c96e 92 * resource management
7945f929
BG
93 * @index: resource index
94 */
95void __iomem *devm_platform_ioremap_resource(struct platform_device *pdev,
96 unsigned int index)
97{
fd78901c 98 return devm_platform_get_and_ioremap_resource(pdev, index, NULL);
7945f929
BG
99}
100EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource);
bb6243b4
BG
101
102/**
103 * devm_platform_ioremap_resource_wc - write-combined variant of
104 * devm_platform_ioremap_resource()
105 *
106 * @pdev: platform device to use both for memory resource lookup as well as
107 * resource management
108 * @index: resource index
109 */
110void __iomem *devm_platform_ioremap_resource_wc(struct platform_device *pdev,
111 unsigned int index)
112{
113 struct resource *res;
114
115 res = platform_get_resource(pdev, IORESOURCE_MEM, index);
116 return devm_ioremap_resource_wc(&pdev->dev, res);
117}
c9c8641d
BG
118
119/**
120 * devm_platform_ioremap_resource_byname - call devm_ioremap_resource for
121 * a platform device, retrieve the
122 * resource by name
123 *
124 * @pdev: platform device to use both for memory resource lookup as well as
125 * resource management
126 * @name: name of the resource
127 */
128void __iomem *
129devm_platform_ioremap_resource_byname(struct platform_device *pdev,
130 const char *name)
131{
132 struct resource *res;
133
134 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
135 return devm_ioremap_resource(&pdev->dev, res);
136}
137EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource_byname);
837ccda3 138#endif /* CONFIG_HAS_IOMEM */
7945f929 139
ec4e2906
UKK
140/**
141 * platform_get_irq_optional - get an optional IRQ for a device
142 * @dev: platform device
143 * @num: IRQ number index
144 *
145 * Gets an IRQ for a platform device. Device drivers should check the return
146 * value for errors so as to not pass a negative integer value to the
147 * request_irq() APIs. This is the same as platform_get_irq(), except that it
148 * does not print an error message if an IRQ can not be obtained.
149 *
150 * Example:
151 * int irq = platform_get_irq_optional(pdev, 0);
152 * if (irq < 0)
153 * return irq;
154 *
155 * Return: IRQ number on success, negative error number on failure.
156 */
157int platform_get_irq_optional(struct platform_device *dev, unsigned int num)
1da177e4 158{
5cf8f7db
AL
159#ifdef CONFIG_SPARC
160 /* sparc does not have irqs represented as IORESOURCE_IRQ resources */
161 if (!dev || num >= dev->archdata.num_irqs)
162 return -ENXIO;
163 return dev->archdata.irqs[num];
164#else
9ec36caf 165 struct resource *r;
71564a26 166 int ret;
aff008ad 167
71564a26 168 if (IS_ENABLED(CONFIG_OF_IRQ) && dev->dev.of_node) {
aff008ad 169 ret = of_irq_get(dev->dev.of_node, num);
e330b9a6 170 if (ret > 0 || ret == -EPROBE_DEFER)
aff008ad
GR
171 return ret;
172 }
9ec36caf
RH
173
174 r = platform_get_resource(dev, IORESOURCE_IRQ, num);
d44fa3d4
AVF
175 if (has_acpi_companion(&dev->dev)) {
176 if (r && r->flags & IORESOURCE_DISABLED) {
d44fa3d4
AVF
177 ret = acpi_irq_get(ACPI_HANDLE(&dev->dev), num, r);
178 if (ret)
179 return ret;
180 }
181 }
182
7085a740
LW
183 /*
184 * The resources may pass trigger flags to the irqs that need
185 * to be set up. It so happens that the trigger flags for
186 * IORESOURCE_BITS correspond 1-to-1 to the IRQF_TRIGGER*
187 * settings.
188 */
60ca5e0d
GR
189 if (r && r->flags & IORESOURCE_BITS) {
190 struct irq_data *irqd;
191
192 irqd = irq_get_irq_data(r->start);
193 if (!irqd)
194 return -ENXIO;
195 irqd_set_trigger_type(irqd, r->flags & IORESOURCE_BITS);
196 }
1da177e4 197
daaef255
EG
198 if (r)
199 return r->start;
200
201 /*
202 * For the index 0 interrupt, allow falling back to GpioInt
203 * resources. While a device could have both Interrupt and GpioInt
204 * resources, making this fallback ambiguous, in many common cases
205 * the device will only expose one IRQ, and this fallback
206 * allows a common code path across either kind of resource.
207 */
46c42d84 208 if (num == 0 && has_acpi_companion(&dev->dev)) {
71564a26 209 ret = acpi_dev_gpio_irq_get(ACPI_COMPANION(&dev->dev), num);
46c42d84
BN
210 /* Our callers expect -ENXIO for missing IRQs. */
211 if (ret >= 0 || ret == -EPROBE_DEFER)
212 return ret;
213 }
daaef255
EG
214
215 return -ENXIO;
5cf8f7db 216#endif
1da177e4 217}
ec4e2906 218EXPORT_SYMBOL_GPL(platform_get_irq_optional);
7723f4c5
SB
219
220/**
221 * platform_get_irq - get an IRQ for a device
222 * @dev: platform device
223 * @num: IRQ number index
224 *
225 * Gets an IRQ for a platform device and prints an error message if finding the
226 * IRQ fails. Device drivers should check the return value for errors so as to
227 * not pass a negative integer value to the request_irq() APIs.
228 *
229 * Example:
230 * int irq = platform_get_irq(pdev, 0);
231 * if (irq < 0)
232 * return irq;
233 *
234 * Return: IRQ number on success, negative error number on failure.
235 */
236int platform_get_irq(struct platform_device *dev, unsigned int num)
237{
238 int ret;
239
ec4e2906 240 ret = platform_get_irq_optional(dev, num);
7723f4c5
SB
241 if (ret < 0 && ret != -EPROBE_DEFER)
242 dev_err(&dev->dev, "IRQ index %u not found\n", num);
243
244 return ret;
245}
a96b2042 246EXPORT_SYMBOL_GPL(platform_get_irq);
1da177e4 247
4b83555d
SB
248/**
249 * platform_irq_count - Count the number of IRQs a platform device uses
250 * @dev: platform device
251 *
252 * Return: Number of IRQs a platform device uses or EPROBE_DEFER
253 */
254int platform_irq_count(struct platform_device *dev)
255{
256 int ret, nr = 0;
257
ec4e2906 258 while ((ret = platform_get_irq_optional(dev, nr)) >= 0)
4b83555d
SB
259 nr++;
260
261 if (ret == -EPROBE_DEFER)
262 return ret;
263
264 return nr;
265}
266EXPORT_SYMBOL_GPL(platform_irq_count);
267
1da177e4 268/**
4a3ad20c
GKH
269 * platform_get_resource_byname - get a resource for a device by name
270 * @dev: platform device
271 * @type: resource type
272 * @name: resource name
1da177e4 273 */
4a3ad20c 274struct resource *platform_get_resource_byname(struct platform_device *dev,
c0afe7ba
LW
275 unsigned int type,
276 const char *name)
1da177e4 277{
39cc539f 278 u32 i;
1da177e4
LT
279
280 for (i = 0; i < dev->num_resources; i++) {
281 struct resource *r = &dev->resource[i];
282
1b8cb929
PU
283 if (unlikely(!r->name))
284 continue;
285
c9f66169
MD
286 if (type == resource_type(r) && !strcmp(r->name, name))
287 return r;
1da177e4
LT
288 }
289 return NULL;
290}
a96b2042 291EXPORT_SYMBOL_GPL(platform_get_resource_byname);
1da177e4 292
f1da567f
HG
293static int __platform_get_irq_byname(struct platform_device *dev,
294 const char *name)
1da177e4 295{
ad69674e 296 struct resource *r;
71564a26 297 int ret;
ad69674e 298
aff008ad 299 if (IS_ENABLED(CONFIG_OF_IRQ) && dev->dev.of_node) {
aff008ad 300 ret = of_irq_get_byname(dev->dev.of_node, name);
e330b9a6 301 if (ret > 0 || ret == -EPROBE_DEFER)
aff008ad
GR
302 return ret;
303 }
1da177e4 304
ad69674e 305 r = platform_get_resource_byname(dev, IORESOURCE_IRQ, name);
7723f4c5
SB
306 if (r)
307 return r->start;
308
7723f4c5 309 return -ENXIO;
1da177e4 310}
f1da567f
HG
311
312/**
313 * platform_get_irq_byname - get an IRQ for a device by name
314 * @dev: platform device
315 * @name: IRQ name
316 *
317 * Get an IRQ like platform_get_irq(), but then by name rather then by index.
318 *
319 * Return: IRQ number on success, negative error number on failure.
320 */
321int platform_get_irq_byname(struct platform_device *dev, const char *name)
322{
323 int ret;
324
325 ret = __platform_get_irq_byname(dev, name);
326 if (ret < 0 && ret != -EPROBE_DEFER)
327 dev_err(&dev->dev, "IRQ %s not found\n", name);
328
329 return ret;
330}
a96b2042 331EXPORT_SYMBOL_GPL(platform_get_irq_byname);
1da177e4 332
f1da567f
HG
333/**
334 * platform_get_irq_byname_optional - get an optional IRQ for a device by name
335 * @dev: platform device
336 * @name: IRQ name
337 *
338 * Get an optional IRQ by name like platform_get_irq_byname(). Except that it
339 * does not print an error message if an IRQ can not be obtained.
340 *
341 * Return: IRQ number on success, negative error number on failure.
342 */
343int platform_get_irq_byname_optional(struct platform_device *dev,
344 const char *name)
345{
346 return __platform_get_irq_byname(dev, name);
347}
348EXPORT_SYMBOL_GPL(platform_get_irq_byname_optional);
349
1da177e4 350/**
4a3ad20c
GKH
351 * platform_add_devices - add a numbers of platform devices
352 * @devs: array of platform devices to add
353 * @num: number of platform devices in array
1da177e4
LT
354 */
355int platform_add_devices(struct platform_device **devs, int num)
356{
357 int i, ret = 0;
358
359 for (i = 0; i < num; i++) {
360 ret = platform_device_register(devs[i]);
361 if (ret) {
362 while (--i >= 0)
363 platform_device_unregister(devs[i]);
364 break;
365 }
366 }
367
368 return ret;
369}
a96b2042 370EXPORT_SYMBOL_GPL(platform_add_devices);
1da177e4 371
37c12e74
RK
372struct platform_object {
373 struct platform_device pdev;
1cec24c5 374 char name[];
37c12e74
RK
375};
376
cdfee562
CH
377/*
378 * Set up default DMA mask for platform devices if the they weren't
379 * previously set by the architecture / DT.
380 */
381static void setup_pdev_dma_masks(struct platform_device *pdev)
382{
383 if (!pdev->dev.coherent_dma_mask)
384 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
e3a36eb6
CH
385 if (!pdev->dev.dma_mask) {
386 pdev->platform_dma_mask = DMA_BIT_MASK(32);
387 pdev->dev.dma_mask = &pdev->platform_dma_mask;
388 }
cdfee562
CH
389};
390
1da177e4 391/**
3c31f07a 392 * platform_device_put - destroy a platform device
4a3ad20c 393 * @pdev: platform device to free
37c12e74 394 *
4a3ad20c
GKH
395 * Free all memory associated with a platform device. This function must
396 * _only_ be externally called in error cases. All other usage is a bug.
37c12e74
RK
397 */
398void platform_device_put(struct platform_device *pdev)
399{
99fef587 400 if (!IS_ERR_OR_NULL(pdev))
37c12e74
RK
401 put_device(&pdev->dev);
402}
403EXPORT_SYMBOL_GPL(platform_device_put);
404
405static void platform_device_release(struct device *dev)
406{
4a3ad20c
GKH
407 struct platform_object *pa = container_of(dev, struct platform_object,
408 pdev.dev);
37c12e74 409
7096d042 410 of_device_node_put(&pa->pdev.dev);
37c12e74 411 kfree(pa->pdev.dev.platform_data);
e710d7d5 412 kfree(pa->pdev.mfd_cell);
37c12e74 413 kfree(pa->pdev.resource);
3d713e0e 414 kfree(pa->pdev.driver_override);
37c12e74
RK
415 kfree(pa);
416}
417
418/**
3c31f07a 419 * platform_device_alloc - create a platform device
4a3ad20c
GKH
420 * @name: base name of the device we're adding
421 * @id: instance id
37c12e74 422 *
4a3ad20c
GKH
423 * Create a platform device object which can have other objects attached
424 * to it, and which will have attached objects freed when it is released.
37c12e74 425 */
1359555e 426struct platform_device *platform_device_alloc(const char *name, int id)
37c12e74
RK
427{
428 struct platform_object *pa;
429
1cec24c5 430 pa = kzalloc(sizeof(*pa) + strlen(name) + 1, GFP_KERNEL);
37c12e74
RK
431 if (pa) {
432 strcpy(pa->name, name);
433 pa->pdev.name = pa->name;
434 pa->pdev.id = id;
435 device_initialize(&pa->pdev.dev);
436 pa->pdev.dev.release = platform_device_release;
cdfee562 437 setup_pdev_dma_masks(&pa->pdev);
37c12e74
RK
438 }
439
93ce3061 440 return pa ? &pa->pdev : NULL;
37c12e74
RK
441}
442EXPORT_SYMBOL_GPL(platform_device_alloc);
443
444/**
3c31f07a 445 * platform_device_add_resources - add resources to a platform device
4a3ad20c
GKH
446 * @pdev: platform device allocated by platform_device_alloc to add resources to
447 * @res: set of resources that needs to be allocated for the device
448 * @num: number of resources
37c12e74 449 *
4a3ad20c
GKH
450 * Add a copy of the resources to the platform device. The memory
451 * associated with the resources will be freed when the platform device is
452 * released.
37c12e74 453 */
4a3ad20c 454int platform_device_add_resources(struct platform_device *pdev,
0b7f1a7e 455 const struct resource *res, unsigned int num)
37c12e74 456{
cea89623 457 struct resource *r = NULL;
37c12e74 458
cea89623
UKK
459 if (res) {
460 r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
461 if (!r)
462 return -ENOMEM;
37c12e74 463 }
cea89623 464
4a03d6f7 465 kfree(pdev->resource);
cea89623
UKK
466 pdev->resource = r;
467 pdev->num_resources = num;
468 return 0;
37c12e74
RK
469}
470EXPORT_SYMBOL_GPL(platform_device_add_resources);
471
472/**
3c31f07a 473 * platform_device_add_data - add platform-specific data to a platform device
4a3ad20c
GKH
474 * @pdev: platform device allocated by platform_device_alloc to add resources to
475 * @data: platform specific data for this platform device
476 * @size: size of platform specific data
37c12e74 477 *
4a3ad20c
GKH
478 * Add a copy of platform specific data to the platform device's
479 * platform_data pointer. The memory associated with the platform data
480 * will be freed when the platform device is released.
37c12e74 481 */
4a3ad20c
GKH
482int platform_device_add_data(struct platform_device *pdev, const void *data,
483 size_t size)
37c12e74 484{
27a33f9e 485 void *d = NULL;
5cfc64ce 486
27a33f9e
UKK
487 if (data) {
488 d = kmemdup(data, size, GFP_KERNEL);
489 if (!d)
490 return -ENOMEM;
37c12e74 491 }
27a33f9e 492
251e031d 493 kfree(pdev->dev.platform_data);
27a33f9e
UKK
494 pdev->dev.platform_data = d;
495 return 0;
37c12e74
RK
496}
497EXPORT_SYMBOL_GPL(platform_device_add_data);
498
00bbc1d8
MW
499/**
500 * platform_device_add_properties - add built-in properties to a platform device
501 * @pdev: platform device to add properties to
f4d05266 502 * @properties: null terminated array of properties to add
00bbc1d8 503 *
f4d05266
HK
504 * The function will take deep copy of @properties and attach the copy to the
505 * platform device. The memory associated with properties will be freed when the
506 * platform device is released.
00bbc1d8
MW
507 */
508int platform_device_add_properties(struct platform_device *pdev,
277036f0 509 const struct property_entry *properties)
00bbc1d8 510{
f4d05266 511 return device_add_properties(&pdev->dev, properties);
00bbc1d8
MW
512}
513EXPORT_SYMBOL_GPL(platform_device_add_properties);
514
37c12e74 515/**
4a3ad20c
GKH
516 * platform_device_add - add a platform device to device hierarchy
517 * @pdev: platform device we're adding
1da177e4 518 *
4a3ad20c
GKH
519 * This is part 2 of platform_device_register(), though may be called
520 * separately _iff_ pdev was allocated by platform_device_alloc().
1da177e4 521 */
37c12e74 522int platform_device_add(struct platform_device *pdev)
1da177e4 523{
39cc539f
SS
524 u32 i;
525 int ret;
1da177e4
LT
526
527 if (!pdev)
528 return -EINVAL;
529
530 if (!pdev->dev.parent)
531 pdev->dev.parent = &platform_bus;
532
533 pdev->dev.bus = &platform_bus_type;
534
689ae231
JD
535 switch (pdev->id) {
536 default:
1e0b2cf9 537 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);
689ae231
JD
538 break;
539 case PLATFORM_DEVID_NONE:
acc0e90f 540 dev_set_name(&pdev->dev, "%s", pdev->name);
689ae231
JD
541 break;
542 case PLATFORM_DEVID_AUTO:
543 /*
544 * Automatically allocated device ID. We mark it as such so
545 * that we remember it must be freed, and we append a suffix
546 * to avoid namespace collision with explicit IDs.
547 */
548 ret = ida_simple_get(&platform_devid_ida, 0, 0, GFP_KERNEL);
549 if (ret < 0)
5da7f709 550 goto err_out;
689ae231
JD
551 pdev->id = ret;
552 pdev->id_auto = true;
553 dev_set_name(&pdev->dev, "%s.%d.auto", pdev->name, pdev->id);
554 break;
555 }
1da177e4
LT
556
557 for (i = 0; i < pdev->num_resources; i++) {
5da7f709 558 struct resource *p, *r = &pdev->resource[i];
1da177e4
LT
559
560 if (r->name == NULL)
1e0b2cf9 561 r->name = dev_name(&pdev->dev);
1da177e4
LT
562
563 p = r->parent;
564 if (!p) {
0e6c861f 565 if (resource_type(r) == IORESOURCE_MEM)
1da177e4 566 p = &iomem_resource;
0e6c861f 567 else if (resource_type(r) == IORESOURCE_IO)
1da177e4
LT
568 p = &ioport_resource;
569 }
570
25ebcb7d
AS
571 if (p) {
572 ret = insert_resource(p, r);
573 if (ret) {
574 dev_err(&pdev->dev, "failed to claim resource %d: %pR\n", i, r);
575 goto failed;
576 }
5da7f709 577 }
1da177e4
LT
578 }
579
580 pr_debug("Registering platform device '%s'. Parent at %s\n",
1e0b2cf9 581 dev_name(&pdev->dev), dev_name(pdev->dev.parent));
1da177e4 582
e3915532 583 ret = device_add(&pdev->dev);
8b2dceba
GKH
584 if (ret == 0)
585 return ret;
586
5da7f709 587 failed:
8b2dceba
GKH
588 if (pdev->id_auto) {
589 ida_simple_remove(&platform_devid_ida, pdev->id);
590 pdev->id = PLATFORM_DEVID_AUTO;
591 }
592
0707cfa5 593 while (i--) {
8b2dceba 594 struct resource *r = &pdev->resource[i];
7f5dcaf1 595 if (r->parent)
8b2dceba
GKH
596 release_resource(r);
597 }
c9f66169 598
5da7f709 599 err_out:
1da177e4
LT
600 return ret;
601}
37c12e74
RK
602EXPORT_SYMBOL_GPL(platform_device_add);
603
604/**
4a3ad20c
GKH
605 * platform_device_del - remove a platform-level device
606 * @pdev: platform device we're removing
1da177e4 607 *
4a3ad20c
GKH
608 * Note that this function will also release all memory- and port-based
609 * resources owned by the device (@dev->resource). This function must
610 * _only_ be externally called in error cases. All other usage is a bug.
1da177e4 611 */
93ce3061 612void platform_device_del(struct platform_device *pdev)
1da177e4 613{
39cc539f 614 u32 i;
c9f66169 615
99fef587 616 if (!IS_ERR_OR_NULL(pdev)) {
8b2dceba
GKH
617 device_del(&pdev->dev);
618
619 if (pdev->id_auto) {
620 ida_simple_remove(&platform_devid_ida, pdev->id);
621 pdev->id = PLATFORM_DEVID_AUTO;
622 }
623
624 for (i = 0; i < pdev->num_resources; i++) {
625 struct resource *r = &pdev->resource[i];
7f5dcaf1 626 if (r->parent)
8b2dceba
GKH
627 release_resource(r);
628 }
629 }
1da177e4 630}
93ce3061
DT
631EXPORT_SYMBOL_GPL(platform_device_del);
632
633/**
4a3ad20c
GKH
634 * platform_device_register - add a platform-level device
635 * @pdev: platform device we're adding
93ce3061 636 */
4a3ad20c 637int platform_device_register(struct platform_device *pdev)
93ce3061
DT
638{
639 device_initialize(&pdev->dev);
cdfee562 640 setup_pdev_dma_masks(pdev);
93ce3061
DT
641 return platform_device_add(pdev);
642}
a96b2042 643EXPORT_SYMBOL_GPL(platform_device_register);
93ce3061
DT
644
645/**
4a3ad20c
GKH
646 * platform_device_unregister - unregister a platform-level device
647 * @pdev: platform device we're unregistering
93ce3061 648 *
4a3ad20c
GKH
649 * Unregistration is done in 2 steps. First we release all resources
650 * and remove it from the subsystem, then we drop reference count by
651 * calling platform_device_put().
93ce3061 652 */
4a3ad20c 653void platform_device_unregister(struct platform_device *pdev)
93ce3061
DT
654{
655 platform_device_del(pdev);
656 platform_device_put(pdev);
657}
a96b2042 658EXPORT_SYMBOL_GPL(platform_device_unregister);
1da177e4 659
1da177e4 660/**
01dcc60a 661 * platform_device_register_full - add a platform-level device with
44f28bde 662 * resources and platform-specific data
49a4ec18 663 *
01dcc60a 664 * @pdevinfo: data used to create device
d8bf2540 665 *
f0eae0ed 666 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
d8bf2540 667 */
01dcc60a 668struct platform_device *platform_device_register_full(
5a3072be 669 const struct platform_device_info *pdevinfo)
d8bf2540 670{
44f28bde 671 int ret = -ENOMEM;
d8bf2540 672 struct platform_device *pdev;
d8bf2540 673
01dcc60a 674 pdev = platform_device_alloc(pdevinfo->name, pdevinfo->id);
44f28bde 675 if (!pdev)
36cf3b13 676 return ERR_PTR(-ENOMEM);
01dcc60a
UKK
677
678 pdev->dev.parent = pdevinfo->parent;
ce793486 679 pdev->dev.fwnode = pdevinfo->fwnode;
2c1ea6ab
MR
680 pdev->dev.of_node = of_node_get(to_of_node(pdev->dev.fwnode));
681 pdev->dev.of_node_reused = pdevinfo->of_node_reused;
01dcc60a
UKK
682
683 if (pdevinfo->dma_mask) {
e3a36eb6
CH
684 pdev->platform_dma_mask = pdevinfo->dma_mask;
685 pdev->dev.dma_mask = &pdev->platform_dma_mask;
01dcc60a
UKK
686 pdev->dev.coherent_dma_mask = pdevinfo->dma_mask;
687 }
d8bf2540 688
01dcc60a
UKK
689 ret = platform_device_add_resources(pdev,
690 pdevinfo->res, pdevinfo->num_res);
807508c8
AV
691 if (ret)
692 goto err;
44f28bde 693
01dcc60a
UKK
694 ret = platform_device_add_data(pdev,
695 pdevinfo->data, pdevinfo->size_data);
807508c8
AV
696 if (ret)
697 goto err;
d8bf2540 698
f4d05266
HK
699 if (pdevinfo->properties) {
700 ret = platform_device_add_properties(pdev,
701 pdevinfo->properties);
00bbc1d8
MW
702 if (ret)
703 goto err;
704 }
705
44f28bde
UKK
706 ret = platform_device_add(pdev);
707 if (ret) {
708err:
7b199811 709 ACPI_COMPANION_SET(&pdev->dev, NULL);
44f28bde
UKK
710 platform_device_put(pdev);
711 return ERR_PTR(ret);
712 }
d8bf2540
DB
713
714 return pdev;
d8bf2540 715}
01dcc60a 716EXPORT_SYMBOL_GPL(platform_device_register_full);
d8bf2540 717
00d3dcdd
RK
718static int platform_drv_probe(struct device *_dev)
719{
720 struct platform_driver *drv = to_platform_driver(_dev->driver);
721 struct platform_device *dev = to_platform_device(_dev);
94d76d5d 722 int ret;
00d3dcdd 723
86be408b
SN
724 ret = of_clk_set_defaults(_dev->of_node, false);
725 if (ret < 0)
726 return ret;
727
cb518413 728 ret = dev_pm_domain_attach(_dev, true);
88a9769e
UH
729 if (ret)
730 goto out;
731
732 if (drv->probe) {
733 ret = drv->probe(dev);
734 if (ret)
735 dev_pm_domain_detach(_dev, true);
cb518413 736 }
94d76d5d 737
88a9769e 738out:
3f9120b0
JH
739 if (drv->prevent_deferred_probe && ret == -EPROBE_DEFER) {
740 dev_warn(_dev, "probe deferral not supported\n");
741 ret = -ENXIO;
742 }
743
94d76d5d 744 return ret;
00d3dcdd
RK
745}
746
c67334fb
DB
747static int platform_drv_probe_fail(struct device *_dev)
748{
749 return -ENXIO;
750}
751
00d3dcdd
RK
752static int platform_drv_remove(struct device *_dev)
753{
754 struct platform_driver *drv = to_platform_driver(_dev->driver);
755 struct platform_device *dev = to_platform_device(_dev);
b8b2c7d8 756 int ret = 0;
00d3dcdd 757
b8b2c7d8
UKK
758 if (drv->remove)
759 ret = drv->remove(dev);
cb518413 760 dev_pm_domain_detach(_dev, true);
94d76d5d
RW
761
762 return ret;
00d3dcdd
RK
763}
764
765static void platform_drv_shutdown(struct device *_dev)
766{
767 struct platform_driver *drv = to_platform_driver(_dev->driver);
768 struct platform_device *dev = to_platform_device(_dev);
769
b8b2c7d8
UKK
770 if (drv->shutdown)
771 drv->shutdown(dev);
00d3dcdd
RK
772}
773
00d3dcdd 774/**
9447057e 775 * __platform_driver_register - register a driver for platform-level devices
4a3ad20c 776 * @drv: platform driver structure
08801f96 777 * @owner: owning module/driver
00d3dcdd 778 */
9447057e
LC
779int __platform_driver_register(struct platform_driver *drv,
780 struct module *owner)
00d3dcdd 781{
9447057e 782 drv->driver.owner = owner;
00d3dcdd 783 drv->driver.bus = &platform_bus_type;
b8b2c7d8
UKK
784 drv->driver.probe = platform_drv_probe;
785 drv->driver.remove = platform_drv_remove;
786 drv->driver.shutdown = platform_drv_shutdown;
783ea7d4 787
00d3dcdd
RK
788 return driver_register(&drv->driver);
789}
9447057e 790EXPORT_SYMBOL_GPL(__platform_driver_register);
00d3dcdd
RK
791
792/**
3c31f07a 793 * platform_driver_unregister - unregister a driver for platform-level devices
4a3ad20c 794 * @drv: platform driver structure
00d3dcdd
RK
795 */
796void platform_driver_unregister(struct platform_driver *drv)
797{
798 driver_unregister(&drv->driver);
799}
800EXPORT_SYMBOL_GPL(platform_driver_unregister);
801
c67334fb 802/**
c3b50dc2 803 * __platform_driver_probe - register driver for non-hotpluggable device
c67334fb 804 * @drv: platform driver structure
3f9120b0 805 * @probe: the driver probe routine, probably from an __init section
c3b50dc2 806 * @module: module which will be the owner of the driver
c67334fb
DB
807 *
808 * Use this instead of platform_driver_register() when you know the device
809 * is not hotpluggable and has already been registered, and you want to
810 * remove its run-once probe() infrastructure from memory after the driver
811 * has bound to the device.
812 *
813 * One typical use for this would be with drivers for controllers integrated
814 * into system-on-chip processors, where the controller devices have been
815 * configured as part of board setup.
816 *
3f9120b0 817 * Note that this is incompatible with deferred probing.
647c86d0 818 *
c67334fb
DB
819 * Returns zero if the driver registered and bound to a device, else returns
820 * a negative error code and with the driver not registered.
821 */
c3b50dc2
WS
822int __init_or_module __platform_driver_probe(struct platform_driver *drv,
823 int (*probe)(struct platform_device *), struct module *module)
c67334fb
DB
824{
825 int retval, code;
826
5c36eb2a
DT
827 if (drv->driver.probe_type == PROBE_PREFER_ASYNCHRONOUS) {
828 pr_err("%s: drivers registered with %s can not be probed asynchronously\n",
829 drv->driver.name, __func__);
830 return -EINVAL;
831 }
832
833 /*
834 * We have to run our probes synchronously because we check if
835 * we find any devices to bind to and exit with error if there
836 * are any.
837 */
838 drv->driver.probe_type = PROBE_FORCE_SYNCHRONOUS;
839
3f9120b0
JH
840 /*
841 * Prevent driver from requesting probe deferral to avoid further
842 * futile probe attempts.
843 */
844 drv->prevent_deferred_probe = true;
845
1a6f2a75
DT
846 /* make sure driver won't have bind/unbind attributes */
847 drv->driver.suppress_bind_attrs = true;
848
c67334fb
DB
849 /* temporary section violation during probe() */
850 drv->probe = probe;
c3b50dc2 851 retval = code = __platform_driver_register(drv, module);
c67334fb 852
1a6f2a75
DT
853 /*
854 * Fixup that section violation, being paranoid about code scanning
c67334fb
DB
855 * the list of drivers in order to probe new devices. Check to see
856 * if the probe was successful, and make sure any forced probes of
857 * new devices fail.
858 */
d79d3244 859 spin_lock(&drv->driver.bus->p->klist_drivers.k_lock);
c67334fb 860 drv->probe = NULL;
e5dd1278 861 if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list))
c67334fb
DB
862 retval = -ENODEV;
863 drv->driver.probe = platform_drv_probe_fail;
d79d3244 864 spin_unlock(&drv->driver.bus->p->klist_drivers.k_lock);
c67334fb
DB
865
866 if (code != retval)
867 platform_driver_unregister(drv);
868 return retval;
869}
c3b50dc2 870EXPORT_SYMBOL_GPL(__platform_driver_probe);
1da177e4 871
ecdf6ceb 872/**
291f653a 873 * __platform_create_bundle - register driver and create corresponding device
ecdf6ceb
DT
874 * @driver: platform driver structure
875 * @probe: the driver probe routine, probably from an __init section
876 * @res: set of resources that needs to be allocated for the device
877 * @n_res: number of resources
878 * @data: platform specific data for this platform device
879 * @size: size of platform specific data
291f653a 880 * @module: module which will be the owner of the driver
ecdf6ceb
DT
881 *
882 * Use this in legacy-style modules that probe hardware directly and
883 * register a single platform device and corresponding platform driver.
f0eae0ed
JN
884 *
885 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
ecdf6ceb 886 */
291f653a 887struct platform_device * __init_or_module __platform_create_bundle(
ecdf6ceb
DT
888 struct platform_driver *driver,
889 int (*probe)(struct platform_device *),
890 struct resource *res, unsigned int n_res,
291f653a 891 const void *data, size_t size, struct module *module)
ecdf6ceb
DT
892{
893 struct platform_device *pdev;
894 int error;
895
896 pdev = platform_device_alloc(driver->driver.name, -1);
897 if (!pdev) {
898 error = -ENOMEM;
899 goto err_out;
900 }
901
807508c8
AV
902 error = platform_device_add_resources(pdev, res, n_res);
903 if (error)
904 goto err_pdev_put;
ecdf6ceb 905
807508c8
AV
906 error = platform_device_add_data(pdev, data, size);
907 if (error)
908 goto err_pdev_put;
ecdf6ceb
DT
909
910 error = platform_device_add(pdev);
911 if (error)
912 goto err_pdev_put;
913
291f653a 914 error = __platform_driver_probe(driver, probe, module);
ecdf6ceb
DT
915 if (error)
916 goto err_pdev_del;
917
918 return pdev;
919
920err_pdev_del:
921 platform_device_del(pdev);
922err_pdev_put:
923 platform_device_put(pdev);
924err_out:
925 return ERR_PTR(error);
926}
291f653a 927EXPORT_SYMBOL_GPL(__platform_create_bundle);
ecdf6ceb 928
dbe2256d
TR
929/**
930 * __platform_register_drivers - register an array of platform drivers
931 * @drivers: an array of drivers to register
932 * @count: the number of drivers to register
933 * @owner: module owning the drivers
934 *
935 * Registers platform drivers specified by an array. On failure to register a
936 * driver, all previously registered drivers will be unregistered. Callers of
937 * this API should use platform_unregister_drivers() to unregister drivers in
938 * the reverse order.
939 *
940 * Returns: 0 on success or a negative error code on failure.
941 */
942int __platform_register_drivers(struct platform_driver * const *drivers,
943 unsigned int count, struct module *owner)
944{
945 unsigned int i;
946 int err;
947
948 for (i = 0; i < count; i++) {
949 pr_debug("registering platform driver %ps\n", drivers[i]);
950
951 err = __platform_driver_register(drivers[i], owner);
952 if (err < 0) {
953 pr_err("failed to register platform driver %ps: %d\n",
954 drivers[i], err);
955 goto error;
956 }
957 }
958
959 return 0;
960
961error:
962 while (i--) {
963 pr_debug("unregistering platform driver %ps\n", drivers[i]);
964 platform_driver_unregister(drivers[i]);
965 }
966
967 return err;
968}
969EXPORT_SYMBOL_GPL(__platform_register_drivers);
970
971/**
972 * platform_unregister_drivers - unregister an array of platform drivers
973 * @drivers: an array of drivers to unregister
974 * @count: the number of drivers to unregister
975 *
976 * Unegisters platform drivers specified by an array. This is typically used
977 * to complement an earlier call to platform_register_drivers(). Drivers are
978 * unregistered in the reverse order in which they were registered.
979 */
980void platform_unregister_drivers(struct platform_driver * const *drivers,
981 unsigned int count)
982{
983 while (count--) {
984 pr_debug("unregistering platform driver %ps\n", drivers[count]);
985 platform_driver_unregister(drivers[count]);
986 }
987}
988EXPORT_SYMBOL_GPL(platform_unregister_drivers);
989
a0245f7a
DB
990/* modalias support enables more hands-off userspace setup:
991 * (a) environment variable lets new-style hotplug events work once system is
992 * fully running: "modprobe $MODALIAS"
993 * (b) sysfs attribute lets new-style coldplug recover from hotplug events
994 * mishandled before system is fully running: "modprobe $(cat modalias)"
995 */
4a3ad20c
GKH
996static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
997 char *buf)
a0245f7a
DB
998{
999 struct platform_device *pdev = to_platform_device(dev);
8c4ff6d0
ZR
1000 int len;
1001
0634c295 1002 len = of_device_modalias(dev, buf, PAGE_SIZE);
b9f73067
ZR
1003 if (len != -ENODEV)
1004 return len;
1005
8c4ff6d0
ZR
1006 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
1007 if (len != -ENODEV)
1008 return len;
1009
391c0325 1010 len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name);
a0245f7a
DB
1011
1012 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
1013}
d06262e5 1014static DEVICE_ATTR_RO(modalias);
a0245f7a 1015
3d713e0e
KP
1016static ssize_t driver_override_store(struct device *dev,
1017 struct device_attribute *attr,
1018 const char *buf, size_t count)
1019{
1020 struct platform_device *pdev = to_platform_device(dev);
62655397 1021 char *driver_override, *old, *cp;
3d713e0e 1022
bf563b01
NS
1023 /* We need to keep extra room for a newline */
1024 if (count >= (PAGE_SIZE - 1))
3d713e0e
KP
1025 return -EINVAL;
1026
1027 driver_override = kstrndup(buf, count, GFP_KERNEL);
1028 if (!driver_override)
1029 return -ENOMEM;
1030
1031 cp = strchr(driver_override, '\n');
1032 if (cp)
1033 *cp = '\0';
1034
62655397
AS
1035 device_lock(dev);
1036 old = pdev->driver_override;
3d713e0e
KP
1037 if (strlen(driver_override)) {
1038 pdev->driver_override = driver_override;
1039 } else {
1040 kfree(driver_override);
1041 pdev->driver_override = NULL;
1042 }
62655397 1043 device_unlock(dev);
3d713e0e
KP
1044
1045 kfree(old);
1046
1047 return count;
1048}
1049
1050static ssize_t driver_override_show(struct device *dev,
1051 struct device_attribute *attr, char *buf)
1052{
1053 struct platform_device *pdev = to_platform_device(dev);
62655397 1054 ssize_t len;
3d713e0e 1055
62655397
AS
1056 device_lock(dev);
1057 len = sprintf(buf, "%s\n", pdev->driver_override);
1058 device_unlock(dev);
1059 return len;
3d713e0e
KP
1060}
1061static DEVICE_ATTR_RW(driver_override);
1062
1063
d06262e5
GKH
1064static struct attribute *platform_dev_attrs[] = {
1065 &dev_attr_modalias.attr,
3d713e0e 1066 &dev_attr_driver_override.attr,
d06262e5 1067 NULL,
a0245f7a 1068};
d06262e5 1069ATTRIBUTE_GROUPS(platform_dev);
a0245f7a 1070
7eff2e7a 1071static int platform_uevent(struct device *dev, struct kobj_uevent_env *env)
a0245f7a
DB
1072{
1073 struct platform_device *pdev = to_platform_device(dev);
eca39301
GL
1074 int rc;
1075
1076 /* Some devices have extra OF data and an OF-style MODALIAS */
0258e182 1077 rc = of_device_uevent_modalias(dev, env);
eca39301
GL
1078 if (rc != -ENODEV)
1079 return rc;
a0245f7a 1080
8c4ff6d0
ZR
1081 rc = acpi_device_uevent_modalias(dev, env);
1082 if (rc != -ENODEV)
1083 return rc;
1084
57fee4a5 1085 add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX,
391c0325 1086 pdev->name);
a0245f7a
DB
1087 return 0;
1088}
1089
57fee4a5 1090static const struct platform_device_id *platform_match_id(
831fad2f 1091 const struct platform_device_id *id,
57fee4a5
EM
1092 struct platform_device *pdev)
1093{
1094 while (id->name[0]) {
391c0325 1095 if (strcmp(pdev->name, id->name) == 0) {
57fee4a5
EM
1096 pdev->id_entry = id;
1097 return id;
1098 }
1099 id++;
1100 }
1101 return NULL;
1102}
1103
1da177e4 1104/**
4a3ad20c
GKH
1105 * platform_match - bind platform device to platform driver.
1106 * @dev: device.
1107 * @drv: driver.
1da177e4 1108 *
4a3ad20c
GKH
1109 * Platform device IDs are assumed to be encoded like this:
1110 * "<name><instance>", where <name> is a short description of the type of
1111 * device, like "pci" or "floppy", and <instance> is the enumerated
1112 * instance of the device, like '0' or '42'. Driver IDs are simply
1113 * "<name>". So, extract the <name> from the platform_device structure,
1114 * and compare it against the name of the driver. Return whether they match
1115 * or not.
1da177e4 1116 */
4a3ad20c 1117static int platform_match(struct device *dev, struct device_driver *drv)
1da177e4 1118{
71b3e0c1 1119 struct platform_device *pdev = to_platform_device(dev);
57fee4a5
EM
1120 struct platform_driver *pdrv = to_platform_driver(drv);
1121
3d713e0e
KP
1122 /* When driver_override is set, only bind to the matching driver */
1123 if (pdev->driver_override)
1124 return !strcmp(pdev->driver_override, drv->name);
1125
05212157
GL
1126 /* Attempt an OF style match first */
1127 if (of_driver_match_device(dev, drv))
1128 return 1;
1129
91e56878
MW
1130 /* Then try ACPI style match */
1131 if (acpi_driver_match_device(dev, drv))
1132 return 1;
1133
05212157 1134 /* Then try to match against the id table */
57fee4a5
EM
1135 if (pdrv->id_table)
1136 return platform_match_id(pdrv->id_table, pdev) != NULL;
1da177e4 1137
57fee4a5 1138 /* fall-back to driver name match */
391c0325 1139 return (strcmp(pdev->name, drv->name) == 0);
1da177e4
LT
1140}
1141
25e18499
RW
1142#ifdef CONFIG_PM_SLEEP
1143
1144static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
1da177e4 1145{
783ea7d4
MD
1146 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1147 struct platform_device *pdev = to_platform_device(dev);
1da177e4
LT
1148 int ret = 0;
1149
783ea7d4
MD
1150 if (dev->driver && pdrv->suspend)
1151 ret = pdrv->suspend(pdev, mesg);
386415d8
DB
1152
1153 return ret;
1154}
1155
25e18499 1156static int platform_legacy_resume(struct device *dev)
1da177e4 1157{
783ea7d4
MD
1158 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1159 struct platform_device *pdev = to_platform_device(dev);
1da177e4
LT
1160 int ret = 0;
1161
783ea7d4
MD
1162 if (dev->driver && pdrv->resume)
1163 ret = pdrv->resume(pdev);
9480e307 1164
1da177e4
LT
1165 return ret;
1166}
1167
69c9dd1e 1168#endif /* CONFIG_PM_SLEEP */
9d730229 1169
25e18499
RW
1170#ifdef CONFIG_SUSPEND
1171
69c9dd1e 1172int platform_pm_suspend(struct device *dev)
25e18499
RW
1173{
1174 struct device_driver *drv = dev->driver;
1175 int ret = 0;
1176
adf09493
RW
1177 if (!drv)
1178 return 0;
1179
1180 if (drv->pm) {
25e18499
RW
1181 if (drv->pm->suspend)
1182 ret = drv->pm->suspend(dev);
1183 } else {
1184 ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
1185 }
1186
1187 return ret;
1188}
1189
69c9dd1e 1190int platform_pm_resume(struct device *dev)
25e18499
RW
1191{
1192 struct device_driver *drv = dev->driver;
1193 int ret = 0;
1194
adf09493
RW
1195 if (!drv)
1196 return 0;
1197
1198 if (drv->pm) {
25e18499
RW
1199 if (drv->pm->resume)
1200 ret = drv->pm->resume(dev);
1201 } else {
1202 ret = platform_legacy_resume(dev);
1203 }
1204
1205 return ret;
1206}
1207
69c9dd1e 1208#endif /* CONFIG_SUSPEND */
25e18499 1209
1f112cee 1210#ifdef CONFIG_HIBERNATE_CALLBACKS
25e18499 1211
69c9dd1e 1212int platform_pm_freeze(struct device *dev)
25e18499
RW
1213{
1214 struct device_driver *drv = dev->driver;
1215 int ret = 0;
1216
1217 if (!drv)
1218 return 0;
1219
1220 if (drv->pm) {
1221 if (drv->pm->freeze)
1222 ret = drv->pm->freeze(dev);
1223 } else {
1224 ret = platform_legacy_suspend(dev, PMSG_FREEZE);
1225 }
1226
1227 return ret;
1228}
1229
69c9dd1e 1230int platform_pm_thaw(struct device *dev)
25e18499
RW
1231{
1232 struct device_driver *drv = dev->driver;
1233 int ret = 0;
1234
adf09493
RW
1235 if (!drv)
1236 return 0;
1237
1238 if (drv->pm) {
25e18499
RW
1239 if (drv->pm->thaw)
1240 ret = drv->pm->thaw(dev);
1241 } else {
1242 ret = platform_legacy_resume(dev);
1243 }
1244
1245 return ret;
1246}
1247
69c9dd1e 1248int platform_pm_poweroff(struct device *dev)
25e18499
RW
1249{
1250 struct device_driver *drv = dev->driver;
1251 int ret = 0;
1252
adf09493
RW
1253 if (!drv)
1254 return 0;
1255
1256 if (drv->pm) {
25e18499
RW
1257 if (drv->pm->poweroff)
1258 ret = drv->pm->poweroff(dev);
1259 } else {
1260 ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
1261 }
1262
1263 return ret;
1264}
1265
69c9dd1e 1266int platform_pm_restore(struct device *dev)
25e18499
RW
1267{
1268 struct device_driver *drv = dev->driver;
1269 int ret = 0;
1270
adf09493
RW
1271 if (!drv)
1272 return 0;
1273
1274 if (drv->pm) {
25e18499
RW
1275 if (drv->pm->restore)
1276 ret = drv->pm->restore(dev);
1277 } else {
1278 ret = platform_legacy_resume(dev);
1279 }
1280
1281 return ret;
1282}
1283
69c9dd1e 1284#endif /* CONFIG_HIBERNATE_CALLBACKS */
25e18499 1285
07397df2
NG
1286int platform_dma_configure(struct device *dev)
1287{
1288 enum dev_dma_attr attr;
1289 int ret = 0;
1290
1291 if (dev->of_node) {
3d6ce86e 1292 ret = of_dma_configure(dev, dev->of_node, true);
07397df2
NG
1293 } else if (has_acpi_companion(dev)) {
1294 attr = acpi_get_dma_attr(to_acpi_device_node(dev->fwnode));
e5361ca2 1295 ret = acpi_dma_configure(dev, attr);
07397df2
NG
1296 }
1297
1298 return ret;
1299}
1300
d9ab7716 1301static const struct dev_pm_ops platform_dev_pm_ops = {
8b313a38
RW
1302 .runtime_suspend = pm_generic_runtime_suspend,
1303 .runtime_resume = pm_generic_runtime_resume,
69c9dd1e 1304 USE_PLATFORM_PM_SLEEP_OPS
25e18499
RW
1305};
1306
1da177e4
LT
1307struct bus_type platform_bus_type = {
1308 .name = "platform",
d06262e5 1309 .dev_groups = platform_dev_groups,
1da177e4 1310 .match = platform_match,
a0245f7a 1311 .uevent = platform_uevent,
07397df2 1312 .dma_configure = platform_dma_configure,
9d730229 1313 .pm = &platform_dev_pm_ops,
1da177e4 1314};
a96b2042 1315EXPORT_SYMBOL_GPL(platform_bus_type);
1da177e4 1316
492c8872
ST
1317static inline int __platform_match(struct device *dev, const void *drv)
1318{
1319 return platform_match(dev, (struct device_driver *)drv);
1320}
1321
36f3313d
SP
1322/**
1323 * platform_find_device_by_driver - Find a platform device with a given
1324 * driver.
1325 * @start: The device to start the search from.
1326 * @drv: The device driver to look for.
1327 */
1328struct device *platform_find_device_by_driver(struct device *start,
1329 const struct device_driver *drv)
1330{
1331 return bus_find_device(&platform_bus_type, start, drv,
492c8872 1332 __platform_match);
36f3313d
SP
1333}
1334EXPORT_SYMBOL_GPL(platform_find_device_by_driver);
1335
eecd37e1
GR
1336void __weak __init early_platform_cleanup(void) { }
1337
1da177e4
LT
1338int __init platform_bus_init(void)
1339{
fbfb1445
CH
1340 int error;
1341
eecd37e1
GR
1342 early_platform_cleanup();
1343
fbfb1445 1344 error = device_register(&platform_bus);
c8ae1674
AY
1345 if (error) {
1346 put_device(&platform_bus);
fbfb1445 1347 return error;
c8ae1674 1348 }
fbfb1445
CH
1349 error = bus_register(&platform_bus_type);
1350 if (error)
1351 device_unregister(&platform_bus);
801d728c 1352 of_platform_register_reconfig_notifier();
fbfb1445 1353 return error;
1da177e4 1354}