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