1 /*
2 * platform.c - platform 'pseudo' bus for legacy devices
3 *
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
6 *
7 * This file is released under the GPLv2
8 *
9 * Please see Documentation/driver-model/platform.txt for more
10 * information.
11 */
12
13 #include <linux/string.h>
14 #include <linux/platform_device.h>
15 #include <linux/of_device.h>
16 #include <linux/of_irq.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/bootmem.h>
21 #include <linux/err.h>
22 #include <linux/slab.h>
23 #include <linux/pm_runtime.h>
24 #include <linux/pm_domain.h>
25 #include <linux/idr.h>
26 #include <linux/acpi.h>
27 #include <linux/clk/clk-conf.h>
28 #include <linux/limits.h>
29 #include <linux/property.h>
30 #include <linux/kmemleak.h>
31 #include <linux/types.h>
32
33 #include "base.h"
34 #include "power/power.h"
35
36 /* For automatically allocated device IDs */
37 static DEFINE_IDA(platform_devid_ida);
38
39 struct device platform_bus = {
40 .init_name = "platform",
41 };
42 EXPORT_SYMBOL_GPL(platform_bus);
43
44 /**
45 * arch_setup_pdev_archdata - Allow manipulation of archdata before its used
46 * @pdev: platform device
47 *
48 * This is called before platform_device_add() such that any pdev_archdata may
49 * be setup before the platform_notifier is called. So if a user needs to
50 * manipulate any relevant information in the pdev_archdata they can do:
51 *
52 * platform_device_alloc()
53 * ... manipulate ...
54 * platform_device_add()
55 *
56 * And if they don't care they can just call platform_device_register() and
57 * everything will just work out.
58 */
arch_setup_pdev_archdata(struct platform_device * pdev)59 void __weak arch_setup_pdev_archdata(struct platform_device *pdev)
60 {
61 }
62
63 /**
64 * platform_get_resource - get a resource for a device
65 * @dev: platform device
66 * @type: resource type
67 * @num: resource index
68 */
platform_get_resource(struct platform_device * dev,unsigned int type,unsigned int num)69 struct resource *platform_get_resource(struct platform_device *dev,
70 unsigned int type, unsigned int num)
71 {
72 u32 i;
73
74 for (i = 0; i < dev->num_resources; i++) {
75 struct resource *r = &dev->resource[i];
76
77 if (type == resource_type(r) && num-- == 0)
78 return r;
79 }
80 return NULL;
81 }
82 EXPORT_SYMBOL_GPL(platform_get_resource);
83
84 /**
85 * platform_get_irq - get an IRQ for a device
86 * @dev: platform device
87 * @num: IRQ number index
88 */
platform_get_irq(struct platform_device * dev,unsigned int num)89 int platform_get_irq(struct platform_device *dev, unsigned int num)
90 {
91 #ifdef CONFIG_SPARC
92 /* sparc does not have irqs represented as IORESOURCE_IRQ resources */
93 if (!dev || num >= dev->archdata.num_irqs)
94 return -ENXIO;
95 return dev->archdata.irqs[num];
96 #else
97 struct resource *r;
98 if (IS_ENABLED(CONFIG_OF_IRQ) && dev->dev.of_node) {
99 int ret;
100
101 ret = of_irq_get(dev->dev.of_node, num);
102 if (ret > 0 || ret == -EPROBE_DEFER)
103 return ret;
104 }
105
106 r = platform_get_resource(dev, IORESOURCE_IRQ, num);
107 if (has_acpi_companion(&dev->dev)) {
108 if (r && r->flags & IORESOURCE_DISABLED) {
109 int ret;
110
111 ret = acpi_irq_get(ACPI_HANDLE(&dev->dev), num, r);
112 if (ret)
113 return ret;
114 }
115 }
116
117 /*
118 * The resources may pass trigger flags to the irqs that need
119 * to be set up. It so happens that the trigger flags for
120 * IORESOURCE_BITS correspond 1-to-1 to the IRQF_TRIGGER*
121 * settings.
122 */
123 if (r && r->flags & IORESOURCE_BITS) {
124 struct irq_data *irqd;
125
126 irqd = irq_get_irq_data(r->start);
127 if (!irqd)
128 return -ENXIO;
129 irqd_set_trigger_type(irqd, r->flags & IORESOURCE_BITS);
130 }
131
132 return r ? r->start : -ENXIO;
133 #endif
134 }
135 EXPORT_SYMBOL_GPL(platform_get_irq);
136
137 /**
138 * platform_irq_count - Count the number of IRQs a platform device uses
139 * @dev: platform device
140 *
141 * Return: Number of IRQs a platform device uses or EPROBE_DEFER
142 */
platform_irq_count(struct platform_device * dev)143 int platform_irq_count(struct platform_device *dev)
144 {
145 int ret, nr = 0;
146
147 while ((ret = platform_get_irq(dev, nr)) >= 0)
148 nr++;
149
150 if (ret == -EPROBE_DEFER)
151 return ret;
152
153 return nr;
154 }
155 EXPORT_SYMBOL_GPL(platform_irq_count);
156
157 /**
158 * platform_get_resource_byname - get a resource for a device by name
159 * @dev: platform device
160 * @type: resource type
161 * @name: resource name
162 */
platform_get_resource_byname(struct platform_device * dev,unsigned int type,const char * name)163 struct resource *platform_get_resource_byname(struct platform_device *dev,
164 unsigned int type,
165 const char *name)
166 {
167 u32 i;
168
169 for (i = 0; i < dev->num_resources; i++) {
170 struct resource *r = &dev->resource[i];
171
172 if (unlikely(!r->name))
173 continue;
174
175 if (type == resource_type(r) && !strcmp(r->name, name))
176 return r;
177 }
178 return NULL;
179 }
180 EXPORT_SYMBOL_GPL(platform_get_resource_byname);
181
182 /**
183 * platform_get_irq_byname - get an IRQ for a device by name
184 * @dev: platform device
185 * @name: IRQ name
186 */
platform_get_irq_byname(struct platform_device * dev,const char * name)187 int platform_get_irq_byname(struct platform_device *dev, const char *name)
188 {
189 struct resource *r;
190
191 if (IS_ENABLED(CONFIG_OF_IRQ) && dev->dev.of_node) {
192 int ret;
193
194 ret = of_irq_get_byname(dev->dev.of_node, name);
195 if (ret > 0 || ret == -EPROBE_DEFER)
196 return ret;
197 }
198
199 r = platform_get_resource_byname(dev, IORESOURCE_IRQ, name);
200 return r ? r->start : -ENXIO;
201 }
202 EXPORT_SYMBOL_GPL(platform_get_irq_byname);
203
204 /**
205 * platform_add_devices - add a numbers of platform devices
206 * @devs: array of platform devices to add
207 * @num: number of platform devices in array
208 */
platform_add_devices(struct platform_device ** devs,int num)209 int platform_add_devices(struct platform_device **devs, int num)
210 {
211 int i, ret = 0;
212
213 for (i = 0; i < num; i++) {
214 ret = platform_device_register(devs[i]);
215 if (ret) {
216 while (--i >= 0)
217 platform_device_unregister(devs[i]);
218 break;
219 }
220 }
221
222 return ret;
223 }
224 EXPORT_SYMBOL_GPL(platform_add_devices);
225
226 struct platform_object {
227 struct platform_device pdev;
228 char name[];
229 };
230
231 /**
232 * platform_device_put - destroy a platform device
233 * @pdev: platform device to free
234 *
235 * Free all memory associated with a platform device. This function must
236 * _only_ be externally called in error cases. All other usage is a bug.
237 */
platform_device_put(struct platform_device * pdev)238 void platform_device_put(struct platform_device *pdev)
239 {
240 if (pdev)
241 put_device(&pdev->dev);
242 }
243 EXPORT_SYMBOL_GPL(platform_device_put);
244
platform_device_release(struct device * dev)245 static void platform_device_release(struct device *dev)
246 {
247 struct platform_object *pa = container_of(dev, struct platform_object,
248 pdev.dev);
249
250 of_device_node_put(&pa->pdev.dev);
251 kfree(pa->pdev.dev.platform_data);
252 kfree(pa->pdev.mfd_cell);
253 kfree(pa->pdev.resource);
254 kfree(pa->pdev.driver_override);
255 kfree(pa);
256 }
257
258 /**
259 * platform_device_alloc - create a platform device
260 * @name: base name of the device we're adding
261 * @id: instance id
262 *
263 * Create a platform device object which can have other objects attached
264 * to it, and which will have attached objects freed when it is released.
265 */
platform_device_alloc(const char * name,int id)266 struct platform_device *platform_device_alloc(const char *name, int id)
267 {
268 struct platform_object *pa;
269
270 pa = kzalloc(sizeof(*pa) + strlen(name) + 1, GFP_KERNEL);
271 if (pa) {
272 strcpy(pa->name, name);
273 pa->pdev.name = pa->name;
274 pa->pdev.id = id;
275 device_initialize(&pa->pdev.dev);
276 pa->pdev.dev.release = platform_device_release;
277 arch_setup_pdev_archdata(&pa->pdev);
278 }
279
280 return pa ? &pa->pdev : NULL;
281 }
282 EXPORT_SYMBOL_GPL(platform_device_alloc);
283
284 /**
285 * platform_device_add_resources - add resources to a platform device
286 * @pdev: platform device allocated by platform_device_alloc to add resources to
287 * @res: set of resources that needs to be allocated for the device
288 * @num: number of resources
289 *
290 * Add a copy of the resources to the platform device. The memory
291 * associated with the resources will be freed when the platform device is
292 * released.
293 */
platform_device_add_resources(struct platform_device * pdev,const struct resource * res,unsigned int num)294 int platform_device_add_resources(struct platform_device *pdev,
295 const struct resource *res, unsigned int num)
296 {
297 struct resource *r = NULL;
298
299 if (res) {
300 r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
301 if (!r)
302 return -ENOMEM;
303 }
304
305 kfree(pdev->resource);
306 pdev->resource = r;
307 pdev->num_resources = num;
308 return 0;
309 }
310 EXPORT_SYMBOL_GPL(platform_device_add_resources);
311
312 /**
313 * platform_device_add_data - add platform-specific data to a platform device
314 * @pdev: platform device allocated by platform_device_alloc to add resources to
315 * @data: platform specific data for this platform device
316 * @size: size of platform specific data
317 *
318 * Add a copy of platform specific data to the platform device's
319 * platform_data pointer. The memory associated with the platform data
320 * will be freed when the platform device is released.
321 */
platform_device_add_data(struct platform_device * pdev,const void * data,size_t size)322 int platform_device_add_data(struct platform_device *pdev, const void *data,
323 size_t size)
324 {
325 void *d = NULL;
326
327 if (data) {
328 d = kmemdup(data, size, GFP_KERNEL);
329 if (!d)
330 return -ENOMEM;
331 }
332
333 kfree(pdev->dev.platform_data);
334 pdev->dev.platform_data = d;
335 return 0;
336 }
337 EXPORT_SYMBOL_GPL(platform_device_add_data);
338
339 /**
340 * platform_device_add_properties - add built-in properties to a platform device
341 * @pdev: platform device to add properties to
342 * @properties: null terminated array of properties to add
343 *
344 * The function will take deep copy of @properties and attach the copy to the
345 * platform device. The memory associated with properties will be freed when the
346 * platform device is released.
347 */
platform_device_add_properties(struct platform_device * pdev,const struct property_entry * properties)348 int platform_device_add_properties(struct platform_device *pdev,
349 const struct property_entry *properties)
350 {
351 return device_add_properties(&pdev->dev, properties);
352 }
353 EXPORT_SYMBOL_GPL(platform_device_add_properties);
354
355 /**
356 * platform_device_add - add a platform device to device hierarchy
357 * @pdev: platform device we're adding
358 *
359 * This is part 2 of platform_device_register(), though may be called
360 * separately _iff_ pdev was allocated by platform_device_alloc().
361 */
platform_device_add(struct platform_device * pdev)362 int platform_device_add(struct platform_device *pdev)
363 {
364 u32 i;
365 int ret;
366
367 if (!pdev)
368 return -EINVAL;
369
370 if (!pdev->dev.parent)
371 pdev->dev.parent = &platform_bus;
372
373 pdev->dev.bus = &platform_bus_type;
374
375 switch (pdev->id) {
376 default:
377 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);
378 break;
379 case PLATFORM_DEVID_NONE:
380 dev_set_name(&pdev->dev, "%s", pdev->name);
381 break;
382 case PLATFORM_DEVID_AUTO:
383 /*
384 * Automatically allocated device ID. We mark it as such so
385 * that we remember it must be freed, and we append a suffix
386 * to avoid namespace collision with explicit IDs.
387 */
388 ret = ida_simple_get(&platform_devid_ida, 0, 0, GFP_KERNEL);
389 if (ret < 0)
390 goto err_out;
391 pdev->id = ret;
392 pdev->id_auto = true;
393 dev_set_name(&pdev->dev, "%s.%d.auto", pdev->name, pdev->id);
394 break;
395 }
396
397 for (i = 0; i < pdev->num_resources; i++) {
398 struct resource *p, *r = &pdev->resource[i];
399
400 if (r->name == NULL)
401 r->name = dev_name(&pdev->dev);
402
403 p = r->parent;
404 if (!p) {
405 if (resource_type(r) == IORESOURCE_MEM)
406 p = &iomem_resource;
407 else if (resource_type(r) == IORESOURCE_IO)
408 p = &ioport_resource;
409 }
410
411 if (p && insert_resource(p, r)) {
412 dev_err(&pdev->dev, "failed to claim resource %d: %pR\n", i, r);
413 ret = -EBUSY;
414 goto failed;
415 }
416 }
417
418 pr_debug("Registering platform device '%s'. Parent at %s\n",
419 dev_name(&pdev->dev), dev_name(pdev->dev.parent));
420
421 ret = device_add(&pdev->dev);
422 if (ret == 0)
423 return ret;
424
425 failed:
426 if (pdev->id_auto) {
427 ida_simple_remove(&platform_devid_ida, pdev->id);
428 pdev->id = PLATFORM_DEVID_AUTO;
429 }
430
431 while (i--) {
432 struct resource *r = &pdev->resource[i];
433 if (r->parent)
434 release_resource(r);
435 }
436
437 err_out:
438 return ret;
439 }
440 EXPORT_SYMBOL_GPL(platform_device_add);
441
442 /**
443 * platform_device_del - remove a platform-level device
444 * @pdev: platform device we're removing
445 *
446 * Note that this function will also release all memory- and port-based
447 * resources owned by the device (@dev->resource). This function must
448 * _only_ be externally called in error cases. All other usage is a bug.
449 */
platform_device_del(struct platform_device * pdev)450 void platform_device_del(struct platform_device *pdev)
451 {
452 u32 i;
453
454 if (pdev) {
455 device_remove_properties(&pdev->dev);
456 device_del(&pdev->dev);
457
458 if (pdev->id_auto) {
459 ida_simple_remove(&platform_devid_ida, pdev->id);
460 pdev->id = PLATFORM_DEVID_AUTO;
461 }
462
463 for (i = 0; i < pdev->num_resources; i++) {
464 struct resource *r = &pdev->resource[i];
465 if (r->parent)
466 release_resource(r);
467 }
468 }
469 }
470 EXPORT_SYMBOL_GPL(platform_device_del);
471
472 /**
473 * platform_device_register - add a platform-level device
474 * @pdev: platform device we're adding
475 */
platform_device_register(struct platform_device * pdev)476 int platform_device_register(struct platform_device *pdev)
477 {
478 device_initialize(&pdev->dev);
479 arch_setup_pdev_archdata(pdev);
480 return platform_device_add(pdev);
481 }
482 EXPORT_SYMBOL_GPL(platform_device_register);
483
484 /**
485 * platform_device_unregister - unregister a platform-level device
486 * @pdev: platform device we're unregistering
487 *
488 * Unregistration is done in 2 steps. First we release all resources
489 * and remove it from the subsystem, then we drop reference count by
490 * calling platform_device_put().
491 */
platform_device_unregister(struct platform_device * pdev)492 void platform_device_unregister(struct platform_device *pdev)
493 {
494 platform_device_del(pdev);
495 platform_device_put(pdev);
496 }
497 EXPORT_SYMBOL_GPL(platform_device_unregister);
498
499 /**
500 * platform_device_register_full - add a platform-level device with
501 * resources and platform-specific data
502 *
503 * @pdevinfo: data used to create device
504 *
505 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
506 */
platform_device_register_full(const struct platform_device_info * pdevinfo)507 struct platform_device *platform_device_register_full(
508 const struct platform_device_info *pdevinfo)
509 {
510 int ret = -ENOMEM;
511 struct platform_device *pdev;
512
513 pdev = platform_device_alloc(pdevinfo->name, pdevinfo->id);
514 if (!pdev)
515 goto err_alloc;
516
517 pdev->dev.parent = pdevinfo->parent;
518 pdev->dev.fwnode = pdevinfo->fwnode;
519
520 if (pdevinfo->dma_mask) {
521 /*
522 * This memory isn't freed when the device is put,
523 * I don't have a nice idea for that though. Conceptually
524 * dma_mask in struct device should not be a pointer.
525 * See http://thread.gmane.org/gmane.linux.kernel.pci/9081
526 */
527 pdev->dev.dma_mask =
528 kmalloc(sizeof(*pdev->dev.dma_mask), GFP_KERNEL);
529 if (!pdev->dev.dma_mask)
530 goto err;
531
532 kmemleak_ignore(pdev->dev.dma_mask);
533
534 *pdev->dev.dma_mask = pdevinfo->dma_mask;
535 pdev->dev.coherent_dma_mask = pdevinfo->dma_mask;
536 }
537
538 ret = platform_device_add_resources(pdev,
539 pdevinfo->res, pdevinfo->num_res);
540 if (ret)
541 goto err;
542
543 ret = platform_device_add_data(pdev,
544 pdevinfo->data, pdevinfo->size_data);
545 if (ret)
546 goto err;
547
548 if (pdevinfo->properties) {
549 ret = platform_device_add_properties(pdev,
550 pdevinfo->properties);
551 if (ret)
552 goto err;
553 }
554
555 ret = platform_device_add(pdev);
556 if (ret) {
557 err:
558 ACPI_COMPANION_SET(&pdev->dev, NULL);
559 kfree(pdev->dev.dma_mask);
560
561 err_alloc:
562 platform_device_put(pdev);
563 return ERR_PTR(ret);
564 }
565
566 return pdev;
567 }
568 EXPORT_SYMBOL_GPL(platform_device_register_full);
569
platform_drv_probe(struct device * _dev)570 static int platform_drv_probe(struct device *_dev)
571 {
572 struct platform_driver *drv = to_platform_driver(_dev->driver);
573 struct platform_device *dev = to_platform_device(_dev);
574 int ret;
575
576 ret = of_clk_set_defaults(_dev->of_node, false);
577 if (ret < 0)
578 return ret;
579
580 ret = dev_pm_domain_attach(_dev, true);
581 if (ret != -EPROBE_DEFER) {
582 if (drv->probe) {
583 ret = drv->probe(dev);
584 if (ret)
585 dev_pm_domain_detach(_dev, true);
586 } else {
587 /* don't fail if just dev_pm_domain_attach failed */
588 ret = 0;
589 }
590 }
591
592 if (drv->prevent_deferred_probe && ret == -EPROBE_DEFER) {
593 dev_warn(_dev, "probe deferral not supported\n");
594 ret = -ENXIO;
595 }
596
597 return ret;
598 }
599
platform_drv_probe_fail(struct device * _dev)600 static int platform_drv_probe_fail(struct device *_dev)
601 {
602 return -ENXIO;
603 }
604
platform_drv_remove(struct device * _dev)605 static int platform_drv_remove(struct device *_dev)
606 {
607 struct platform_driver *drv = to_platform_driver(_dev->driver);
608 struct platform_device *dev = to_platform_device(_dev);
609 int ret = 0;
610
611 if (drv->remove)
612 ret = drv->remove(dev);
613 dev_pm_domain_detach(_dev, true);
614
615 return ret;
616 }
617
platform_drv_shutdown(struct device * _dev)618 static void platform_drv_shutdown(struct device *_dev)
619 {
620 struct platform_driver *drv = to_platform_driver(_dev->driver);
621 struct platform_device *dev = to_platform_device(_dev);
622
623 if (drv->shutdown)
624 drv->shutdown(dev);
625 }
626
627 /**
628 * __platform_driver_register - register a driver for platform-level devices
629 * @drv: platform driver structure
630 * @owner: owning module/driver
631 */
__platform_driver_register(struct platform_driver * drv,struct module * owner)632 int __platform_driver_register(struct platform_driver *drv,
633 struct module *owner)
634 {
635 drv->driver.owner = owner;
636 drv->driver.bus = &platform_bus_type;
637 drv->driver.probe = platform_drv_probe;
638 drv->driver.remove = platform_drv_remove;
639 drv->driver.shutdown = platform_drv_shutdown;
640
641 return driver_register(&drv->driver);
642 }
643 EXPORT_SYMBOL_GPL(__platform_driver_register);
644
645 /**
646 * platform_driver_unregister - unregister a driver for platform-level devices
647 * @drv: platform driver structure
648 */
platform_driver_unregister(struct platform_driver * drv)649 void platform_driver_unregister(struct platform_driver *drv)
650 {
651 driver_unregister(&drv->driver);
652 }
653 EXPORT_SYMBOL_GPL(platform_driver_unregister);
654
655 /**
656 * __platform_driver_probe - register driver for non-hotpluggable device
657 * @drv: platform driver structure
658 * @probe: the driver probe routine, probably from an __init section
659 * @module: module which will be the owner of the driver
660 *
661 * Use this instead of platform_driver_register() when you know the device
662 * is not hotpluggable and has already been registered, and you want to
663 * remove its run-once probe() infrastructure from memory after the driver
664 * has bound to the device.
665 *
666 * One typical use for this would be with drivers for controllers integrated
667 * into system-on-chip processors, where the controller devices have been
668 * configured as part of board setup.
669 *
670 * Note that this is incompatible with deferred probing.
671 *
672 * Returns zero if the driver registered and bound to a device, else returns
673 * a negative error code and with the driver not registered.
674 */
__platform_driver_probe(struct platform_driver * drv,int (* probe)(struct platform_device *),struct module * module)675 int __init_or_module __platform_driver_probe(struct platform_driver *drv,
676 int (*probe)(struct platform_device *), struct module *module)
677 {
678 int retval, code;
679
680 if (drv->driver.probe_type == PROBE_PREFER_ASYNCHRONOUS) {
681 pr_err("%s: drivers registered with %s can not be probed asynchronously\n",
682 drv->driver.name, __func__);
683 return -EINVAL;
684 }
685
686 /*
687 * We have to run our probes synchronously because we check if
688 * we find any devices to bind to and exit with error if there
689 * are any.
690 */
691 drv->driver.probe_type = PROBE_FORCE_SYNCHRONOUS;
692
693 /*
694 * Prevent driver from requesting probe deferral to avoid further
695 * futile probe attempts.
696 */
697 drv->prevent_deferred_probe = true;
698
699 /* make sure driver won't have bind/unbind attributes */
700 drv->driver.suppress_bind_attrs = true;
701
702 /* temporary section violation during probe() */
703 drv->probe = probe;
704 retval = code = __platform_driver_register(drv, module);
705
706 /*
707 * Fixup that section violation, being paranoid about code scanning
708 * the list of drivers in order to probe new devices. Check to see
709 * if the probe was successful, and make sure any forced probes of
710 * new devices fail.
711 */
712 spin_lock(&drv->driver.bus->p->klist_drivers.k_lock);
713 drv->probe = NULL;
714 if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list))
715 retval = -ENODEV;
716 drv->driver.probe = platform_drv_probe_fail;
717 spin_unlock(&drv->driver.bus->p->klist_drivers.k_lock);
718
719 if (code != retval)
720 platform_driver_unregister(drv);
721 return retval;
722 }
723 EXPORT_SYMBOL_GPL(__platform_driver_probe);
724
725 /**
726 * __platform_create_bundle - register driver and create corresponding device
727 * @driver: platform driver structure
728 * @probe: the driver probe routine, probably from an __init section
729 * @res: set of resources that needs to be allocated for the device
730 * @n_res: number of resources
731 * @data: platform specific data for this platform device
732 * @size: size of platform specific data
733 * @module: module which will be the owner of the driver
734 *
735 * Use this in legacy-style modules that probe hardware directly and
736 * register a single platform device and corresponding platform driver.
737 *
738 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
739 */
__platform_create_bundle(struct platform_driver * driver,int (* probe)(struct platform_device *),struct resource * res,unsigned int n_res,const void * data,size_t size,struct module * module)740 struct platform_device * __init_or_module __platform_create_bundle(
741 struct platform_driver *driver,
742 int (*probe)(struct platform_device *),
743 struct resource *res, unsigned int n_res,
744 const void *data, size_t size, struct module *module)
745 {
746 struct platform_device *pdev;
747 int error;
748
749 pdev = platform_device_alloc(driver->driver.name, -1);
750 if (!pdev) {
751 error = -ENOMEM;
752 goto err_out;
753 }
754
755 error = platform_device_add_resources(pdev, res, n_res);
756 if (error)
757 goto err_pdev_put;
758
759 error = platform_device_add_data(pdev, data, size);
760 if (error)
761 goto err_pdev_put;
762
763 error = platform_device_add(pdev);
764 if (error)
765 goto err_pdev_put;
766
767 error = __platform_driver_probe(driver, probe, module);
768 if (error)
769 goto err_pdev_del;
770
771 return pdev;
772
773 err_pdev_del:
774 platform_device_del(pdev);
775 err_pdev_put:
776 platform_device_put(pdev);
777 err_out:
778 return ERR_PTR(error);
779 }
780 EXPORT_SYMBOL_GPL(__platform_create_bundle);
781
782 /**
783 * __platform_register_drivers - register an array of platform drivers
784 * @drivers: an array of drivers to register
785 * @count: the number of drivers to register
786 * @owner: module owning the drivers
787 *
788 * Registers platform drivers specified by an array. On failure to register a
789 * driver, all previously registered drivers will be unregistered. Callers of
790 * this API should use platform_unregister_drivers() to unregister drivers in
791 * the reverse order.
792 *
793 * Returns: 0 on success or a negative error code on failure.
794 */
__platform_register_drivers(struct platform_driver * const * drivers,unsigned int count,struct module * owner)795 int __platform_register_drivers(struct platform_driver * const *drivers,
796 unsigned int count, struct module *owner)
797 {
798 unsigned int i;
799 int err;
800
801 for (i = 0; i < count; i++) {
802 pr_debug("registering platform driver %ps\n", drivers[i]);
803
804 err = __platform_driver_register(drivers[i], owner);
805 if (err < 0) {
806 pr_err("failed to register platform driver %ps: %d\n",
807 drivers[i], err);
808 goto error;
809 }
810 }
811
812 return 0;
813
814 error:
815 while (i--) {
816 pr_debug("unregistering platform driver %ps\n", drivers[i]);
817 platform_driver_unregister(drivers[i]);
818 }
819
820 return err;
821 }
822 EXPORT_SYMBOL_GPL(__platform_register_drivers);
823
824 /**
825 * platform_unregister_drivers - unregister an array of platform drivers
826 * @drivers: an array of drivers to unregister
827 * @count: the number of drivers to unregister
828 *
829 * Unegisters platform drivers specified by an array. This is typically used
830 * to complement an earlier call to platform_register_drivers(). Drivers are
831 * unregistered in the reverse order in which they were registered.
832 */
platform_unregister_drivers(struct platform_driver * const * drivers,unsigned int count)833 void platform_unregister_drivers(struct platform_driver * const *drivers,
834 unsigned int count)
835 {
836 while (count--) {
837 pr_debug("unregistering platform driver %ps\n", drivers[count]);
838 platform_driver_unregister(drivers[count]);
839 }
840 }
841 EXPORT_SYMBOL_GPL(platform_unregister_drivers);
842
843 /* modalias support enables more hands-off userspace setup:
844 * (a) environment variable lets new-style hotplug events work once system is
845 * fully running: "modprobe $MODALIAS"
846 * (b) sysfs attribute lets new-style coldplug recover from hotplug events
847 * mishandled before system is fully running: "modprobe $(cat modalias)"
848 */
modalias_show(struct device * dev,struct device_attribute * a,char * buf)849 static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
850 char *buf)
851 {
852 struct platform_device *pdev = to_platform_device(dev);
853 int len;
854
855 len = of_device_modalias(dev, buf, PAGE_SIZE);
856 if (len != -ENODEV)
857 return len;
858
859 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
860 if (len != -ENODEV)
861 return len;
862
863 len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name);
864
865 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
866 }
867 static DEVICE_ATTR_RO(modalias);
868
driver_override_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)869 static ssize_t driver_override_store(struct device *dev,
870 struct device_attribute *attr,
871 const char *buf, size_t count)
872 {
873 struct platform_device *pdev = to_platform_device(dev);
874 char *driver_override, *old, *cp;
875
876 /* We need to keep extra room for a newline */
877 if (count >= (PAGE_SIZE - 1))
878 return -EINVAL;
879
880 driver_override = kstrndup(buf, count, GFP_KERNEL);
881 if (!driver_override)
882 return -ENOMEM;
883
884 cp = strchr(driver_override, '\n');
885 if (cp)
886 *cp = '\0';
887
888 device_lock(dev);
889 old = pdev->driver_override;
890 if (strlen(driver_override)) {
891 pdev->driver_override = driver_override;
892 } else {
893 kfree(driver_override);
894 pdev->driver_override = NULL;
895 }
896 device_unlock(dev);
897
898 kfree(old);
899
900 return count;
901 }
902
driver_override_show(struct device * dev,struct device_attribute * attr,char * buf)903 static ssize_t driver_override_show(struct device *dev,
904 struct device_attribute *attr, char *buf)
905 {
906 struct platform_device *pdev = to_platform_device(dev);
907 ssize_t len;
908
909 device_lock(dev);
910 len = sprintf(buf, "%s\n", pdev->driver_override);
911 device_unlock(dev);
912 return len;
913 }
914 static DEVICE_ATTR_RW(driver_override);
915
916
917 static struct attribute *platform_dev_attrs[] = {
918 &dev_attr_modalias.attr,
919 &dev_attr_driver_override.attr,
920 NULL,
921 };
922 ATTRIBUTE_GROUPS(platform_dev);
923
platform_uevent(struct device * dev,struct kobj_uevent_env * env)924 static int platform_uevent(struct device *dev, struct kobj_uevent_env *env)
925 {
926 struct platform_device *pdev = to_platform_device(dev);
927 int rc;
928
929 /* Some devices have extra OF data and an OF-style MODALIAS */
930 rc = of_device_uevent_modalias(dev, env);
931 if (rc != -ENODEV)
932 return rc;
933
934 rc = acpi_device_uevent_modalias(dev, env);
935 if (rc != -ENODEV)
936 return rc;
937
938 add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX,
939 pdev->name);
940 return 0;
941 }
942
platform_match_id(const struct platform_device_id * id,struct platform_device * pdev)943 static const struct platform_device_id *platform_match_id(
944 const struct platform_device_id *id,
945 struct platform_device *pdev)
946 {
947 while (id->name[0]) {
948 if (strcmp(pdev->name, id->name) == 0) {
949 pdev->id_entry = id;
950 return id;
951 }
952 id++;
953 }
954 return NULL;
955 }
956
957 /**
958 * platform_match - bind platform device to platform driver.
959 * @dev: device.
960 * @drv: driver.
961 *
962 * Platform device IDs are assumed to be encoded like this:
963 * "<name><instance>", where <name> is a short description of the type of
964 * device, like "pci" or "floppy", and <instance> is the enumerated
965 * instance of the device, like '0' or '42'. Driver IDs are simply
966 * "<name>". So, extract the <name> from the platform_device structure,
967 * and compare it against the name of the driver. Return whether they match
968 * or not.
969 */
platform_match(struct device * dev,struct device_driver * drv)970 static int platform_match(struct device *dev, struct device_driver *drv)
971 {
972 struct platform_device *pdev = to_platform_device(dev);
973 struct platform_driver *pdrv = to_platform_driver(drv);
974
975 /* When driver_override is set, only bind to the matching driver */
976 if (pdev->driver_override)
977 return !strcmp(pdev->driver_override, drv->name);
978
979 /* Attempt an OF style match first */
980 if (of_driver_match_device(dev, drv))
981 return 1;
982
983 /* Then try ACPI style match */
984 if (acpi_driver_match_device(dev, drv))
985 return 1;
986
987 /* Then try to match against the id table */
988 if (pdrv->id_table)
989 return platform_match_id(pdrv->id_table, pdev) != NULL;
990
991 /* fall-back to driver name match */
992 return (strcmp(pdev->name, drv->name) == 0);
993 }
994
995 #ifdef CONFIG_PM_SLEEP
996
platform_legacy_suspend(struct device * dev,pm_message_t mesg)997 static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
998 {
999 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1000 struct platform_device *pdev = to_platform_device(dev);
1001 int ret = 0;
1002
1003 if (dev->driver && pdrv->suspend)
1004 ret = pdrv->suspend(pdev, mesg);
1005
1006 return ret;
1007 }
1008
platform_legacy_resume(struct device * dev)1009 static int platform_legacy_resume(struct device *dev)
1010 {
1011 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1012 struct platform_device *pdev = to_platform_device(dev);
1013 int ret = 0;
1014
1015 if (dev->driver && pdrv->resume)
1016 ret = pdrv->resume(pdev);
1017
1018 return ret;
1019 }
1020
1021 #endif /* CONFIG_PM_SLEEP */
1022
1023 #ifdef CONFIG_SUSPEND
1024
platform_pm_suspend(struct device * dev)1025 int platform_pm_suspend(struct device *dev)
1026 {
1027 struct device_driver *drv = dev->driver;
1028 int ret = 0;
1029
1030 if (!drv)
1031 return 0;
1032
1033 if (drv->pm) {
1034 if (drv->pm->suspend)
1035 ret = drv->pm->suspend(dev);
1036 } else {
1037 ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
1038 }
1039
1040 return ret;
1041 }
1042
platform_pm_resume(struct device * dev)1043 int platform_pm_resume(struct device *dev)
1044 {
1045 struct device_driver *drv = dev->driver;
1046 int ret = 0;
1047
1048 if (!drv)
1049 return 0;
1050
1051 if (drv->pm) {
1052 if (drv->pm->resume)
1053 ret = drv->pm->resume(dev);
1054 } else {
1055 ret = platform_legacy_resume(dev);
1056 }
1057
1058 return ret;
1059 }
1060
1061 #endif /* CONFIG_SUSPEND */
1062
1063 #ifdef CONFIG_HIBERNATE_CALLBACKS
1064
platform_pm_freeze(struct device * dev)1065 int platform_pm_freeze(struct device *dev)
1066 {
1067 struct device_driver *drv = dev->driver;
1068 int ret = 0;
1069
1070 if (!drv)
1071 return 0;
1072
1073 if (drv->pm) {
1074 if (drv->pm->freeze)
1075 ret = drv->pm->freeze(dev);
1076 } else {
1077 ret = platform_legacy_suspend(dev, PMSG_FREEZE);
1078 }
1079
1080 return ret;
1081 }
1082
platform_pm_thaw(struct device * dev)1083 int platform_pm_thaw(struct device *dev)
1084 {
1085 struct device_driver *drv = dev->driver;
1086 int ret = 0;
1087
1088 if (!drv)
1089 return 0;
1090
1091 if (drv->pm) {
1092 if (drv->pm->thaw)
1093 ret = drv->pm->thaw(dev);
1094 } else {
1095 ret = platform_legacy_resume(dev);
1096 }
1097
1098 return ret;
1099 }
1100
platform_pm_poweroff(struct device * dev)1101 int platform_pm_poweroff(struct device *dev)
1102 {
1103 struct device_driver *drv = dev->driver;
1104 int ret = 0;
1105
1106 if (!drv)
1107 return 0;
1108
1109 if (drv->pm) {
1110 if (drv->pm->poweroff)
1111 ret = drv->pm->poweroff(dev);
1112 } else {
1113 ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
1114 }
1115
1116 return ret;
1117 }
1118
platform_pm_restore(struct device * dev)1119 int platform_pm_restore(struct device *dev)
1120 {
1121 struct device_driver *drv = dev->driver;
1122 int ret = 0;
1123
1124 if (!drv)
1125 return 0;
1126
1127 if (drv->pm) {
1128 if (drv->pm->restore)
1129 ret = drv->pm->restore(dev);
1130 } else {
1131 ret = platform_legacy_resume(dev);
1132 }
1133
1134 return ret;
1135 }
1136
1137 #endif /* CONFIG_HIBERNATE_CALLBACKS */
1138
1139 static const struct dev_pm_ops platform_dev_pm_ops = {
1140 .runtime_suspend = pm_generic_runtime_suspend,
1141 .runtime_resume = pm_generic_runtime_resume,
1142 USE_PLATFORM_PM_SLEEP_OPS
1143 };
1144
1145 struct bus_type platform_bus_type = {
1146 .name = "platform",
1147 .dev_groups = platform_dev_groups,
1148 .match = platform_match,
1149 .uevent = platform_uevent,
1150 .pm = &platform_dev_pm_ops,
1151 };
1152 EXPORT_SYMBOL_GPL(platform_bus_type);
1153
platform_bus_init(void)1154 int __init platform_bus_init(void)
1155 {
1156 int error;
1157
1158 early_platform_cleanup();
1159
1160 error = device_register(&platform_bus);
1161 if (error)
1162 return error;
1163 error = bus_register(&platform_bus_type);
1164 if (error)
1165 device_unregister(&platform_bus);
1166 of_platform_register_reconfig_notifier();
1167 return error;
1168 }
1169
1170 #ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
dma_get_required_mask(struct device * dev)1171 u64 dma_get_required_mask(struct device *dev)
1172 {
1173 u32 low_totalram = ((max_pfn - 1) << PAGE_SHIFT);
1174 u32 high_totalram = ((max_pfn - 1) >> (32 - PAGE_SHIFT));
1175 u64 mask;
1176
1177 if (!high_totalram) {
1178 /* convert to mask just covering totalram */
1179 low_totalram = (1 << (fls(low_totalram) - 1));
1180 low_totalram += low_totalram - 1;
1181 mask = low_totalram;
1182 } else {
1183 high_totalram = (1 << (fls(high_totalram) - 1));
1184 high_totalram += high_totalram - 1;
1185 mask = (((u64)high_totalram) << 32) + 0xffffffff;
1186 }
1187 return mask;
1188 }
1189 EXPORT_SYMBOL_GPL(dma_get_required_mask);
1190 #endif
1191
1192 static __initdata LIST_HEAD(early_platform_driver_list);
1193 static __initdata LIST_HEAD(early_platform_device_list);
1194
1195 /**
1196 * early_platform_driver_register - register early platform driver
1197 * @epdrv: early_platform driver structure
1198 * @buf: string passed from early_param()
1199 *
1200 * Helper function for early_platform_init() / early_platform_init_buffer()
1201 */
early_platform_driver_register(struct early_platform_driver * epdrv,char * buf)1202 int __init early_platform_driver_register(struct early_platform_driver *epdrv,
1203 char *buf)
1204 {
1205 char *tmp;
1206 int n;
1207
1208 /* Simply add the driver to the end of the global list.
1209 * Drivers will by default be put on the list in compiled-in order.
1210 */
1211 if (!epdrv->list.next) {
1212 INIT_LIST_HEAD(&epdrv->list);
1213 list_add_tail(&epdrv->list, &early_platform_driver_list);
1214 }
1215
1216 /* If the user has specified device then make sure the driver
1217 * gets prioritized. The driver of the last device specified on
1218 * command line will be put first on the list.
1219 */
1220 n = strlen(epdrv->pdrv->driver.name);
1221 if (buf && !strncmp(buf, epdrv->pdrv->driver.name, n)) {
1222 list_move(&epdrv->list, &early_platform_driver_list);
1223
1224 /* Allow passing parameters after device name */
1225 if (buf[n] == '\0' || buf[n] == ',')
1226 epdrv->requested_id = -1;
1227 else {
1228 epdrv->requested_id = simple_strtoul(&buf[n + 1],
1229 &tmp, 10);
1230
1231 if (buf[n] != '.' || (tmp == &buf[n + 1])) {
1232 epdrv->requested_id = EARLY_PLATFORM_ID_ERROR;
1233 n = 0;
1234 } else
1235 n += strcspn(&buf[n + 1], ",") + 1;
1236 }
1237
1238 if (buf[n] == ',')
1239 n++;
1240
1241 if (epdrv->bufsize) {
1242 memcpy(epdrv->buffer, &buf[n],
1243 min_t(int, epdrv->bufsize, strlen(&buf[n]) + 1));
1244 epdrv->buffer[epdrv->bufsize - 1] = '\0';
1245 }
1246 }
1247
1248 return 0;
1249 }
1250
1251 /**
1252 * early_platform_add_devices - adds a number of early platform devices
1253 * @devs: array of early platform devices to add
1254 * @num: number of early platform devices in array
1255 *
1256 * Used by early architecture code to register early platform devices and
1257 * their platform data.
1258 */
early_platform_add_devices(struct platform_device ** devs,int num)1259 void __init early_platform_add_devices(struct platform_device **devs, int num)
1260 {
1261 struct device *dev;
1262 int i;
1263
1264 /* simply add the devices to list */
1265 for (i = 0; i < num; i++) {
1266 dev = &devs[i]->dev;
1267
1268 if (!dev->devres_head.next) {
1269 pm_runtime_early_init(dev);
1270 INIT_LIST_HEAD(&dev->devres_head);
1271 list_add_tail(&dev->devres_head,
1272 &early_platform_device_list);
1273 }
1274 }
1275 }
1276
1277 /**
1278 * early_platform_driver_register_all - register early platform drivers
1279 * @class_str: string to identify early platform driver class
1280 *
1281 * Used by architecture code to register all early platform drivers
1282 * for a certain class. If omitted then only early platform drivers
1283 * with matching kernel command line class parameters will be registered.
1284 */
early_platform_driver_register_all(char * class_str)1285 void __init early_platform_driver_register_all(char *class_str)
1286 {
1287 /* The "class_str" parameter may or may not be present on the kernel
1288 * command line. If it is present then there may be more than one
1289 * matching parameter.
1290 *
1291 * Since we register our early platform drivers using early_param()
1292 * we need to make sure that they also get registered in the case
1293 * when the parameter is missing from the kernel command line.
1294 *
1295 * We use parse_early_options() to make sure the early_param() gets
1296 * called at least once. The early_param() may be called more than
1297 * once since the name of the preferred device may be specified on
1298 * the kernel command line. early_platform_driver_register() handles
1299 * this case for us.
1300 */
1301 parse_early_options(class_str);
1302 }
1303
1304 /**
1305 * early_platform_match - find early platform device matching driver
1306 * @epdrv: early platform driver structure
1307 * @id: id to match against
1308 */
1309 static struct platform_device * __init
early_platform_match(struct early_platform_driver * epdrv,int id)1310 early_platform_match(struct early_platform_driver *epdrv, int id)
1311 {
1312 struct platform_device *pd;
1313
1314 list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1315 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1316 if (pd->id == id)
1317 return pd;
1318
1319 return NULL;
1320 }
1321
1322 /**
1323 * early_platform_left - check if early platform driver has matching devices
1324 * @epdrv: early platform driver structure
1325 * @id: return true if id or above exists
1326 */
early_platform_left(struct early_platform_driver * epdrv,int id)1327 static int __init early_platform_left(struct early_platform_driver *epdrv,
1328 int id)
1329 {
1330 struct platform_device *pd;
1331
1332 list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1333 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1334 if (pd->id >= id)
1335 return 1;
1336
1337 return 0;
1338 }
1339
1340 /**
1341 * early_platform_driver_probe_id - probe drivers matching class_str and id
1342 * @class_str: string to identify early platform driver class
1343 * @id: id to match against
1344 * @nr_probe: number of platform devices to successfully probe before exiting
1345 */
early_platform_driver_probe_id(char * class_str,int id,int nr_probe)1346 static int __init early_platform_driver_probe_id(char *class_str,
1347 int id,
1348 int nr_probe)
1349 {
1350 struct early_platform_driver *epdrv;
1351 struct platform_device *match;
1352 int match_id;
1353 int n = 0;
1354 int left = 0;
1355
1356 list_for_each_entry(epdrv, &early_platform_driver_list, list) {
1357 /* only use drivers matching our class_str */
1358 if (strcmp(class_str, epdrv->class_str))
1359 continue;
1360
1361 if (id == -2) {
1362 match_id = epdrv->requested_id;
1363 left = 1;
1364
1365 } else {
1366 match_id = id;
1367 left += early_platform_left(epdrv, id);
1368
1369 /* skip requested id */
1370 switch (epdrv->requested_id) {
1371 case EARLY_PLATFORM_ID_ERROR:
1372 case EARLY_PLATFORM_ID_UNSET:
1373 break;
1374 default:
1375 if (epdrv->requested_id == id)
1376 match_id = EARLY_PLATFORM_ID_UNSET;
1377 }
1378 }
1379
1380 switch (match_id) {
1381 case EARLY_PLATFORM_ID_ERROR:
1382 pr_warn("%s: unable to parse %s parameter\n",
1383 class_str, epdrv->pdrv->driver.name);
1384 /* fall-through */
1385 case EARLY_PLATFORM_ID_UNSET:
1386 match = NULL;
1387 break;
1388 default:
1389 match = early_platform_match(epdrv, match_id);
1390 }
1391
1392 if (match) {
1393 /*
1394 * Set up a sensible init_name to enable
1395 * dev_name() and others to be used before the
1396 * rest of the driver core is initialized.
1397 */
1398 if (!match->dev.init_name && slab_is_available()) {
1399 if (match->id != -1)
1400 match->dev.init_name =
1401 kasprintf(GFP_KERNEL, "%s.%d",
1402 match->name,
1403 match->id);
1404 else
1405 match->dev.init_name =
1406 kasprintf(GFP_KERNEL, "%s",
1407 match->name);
1408
1409 if (!match->dev.init_name)
1410 return -ENOMEM;
1411 }
1412
1413 if (epdrv->pdrv->probe(match))
1414 pr_warn("%s: unable to probe %s early.\n",
1415 class_str, match->name);
1416 else
1417 n++;
1418 }
1419
1420 if (n >= nr_probe)
1421 break;
1422 }
1423
1424 if (left)
1425 return n;
1426 else
1427 return -ENODEV;
1428 }
1429
1430 /**
1431 * early_platform_driver_probe - probe a class of registered drivers
1432 * @class_str: string to identify early platform driver class
1433 * @nr_probe: number of platform devices to successfully probe before exiting
1434 * @user_only: only probe user specified early platform devices
1435 *
1436 * Used by architecture code to probe registered early platform drivers
1437 * within a certain class. For probe to happen a registered early platform
1438 * device matching a registered early platform driver is needed.
1439 */
early_platform_driver_probe(char * class_str,int nr_probe,int user_only)1440 int __init early_platform_driver_probe(char *class_str,
1441 int nr_probe,
1442 int user_only)
1443 {
1444 int k, n, i;
1445
1446 n = 0;
1447 for (i = -2; n < nr_probe; i++) {
1448 k = early_platform_driver_probe_id(class_str, i, nr_probe - n);
1449
1450 if (k < 0)
1451 break;
1452
1453 n += k;
1454
1455 if (user_only)
1456 break;
1457 }
1458
1459 return n;
1460 }
1461
1462 /**
1463 * early_platform_cleanup - clean up early platform code
1464 */
early_platform_cleanup(void)1465 void __init early_platform_cleanup(void)
1466 {
1467 struct platform_device *pd, *pd2;
1468
1469 /* clean up the devres list used to chain devices */
1470 list_for_each_entry_safe(pd, pd2, &early_platform_device_list,
1471 dev.devres_head) {
1472 list_del(&pd->dev.devres_head);
1473 memset(&pd->dev.devres_head, 0, sizeof(pd->dev.devres_head));
1474 }
1475 }
1476
1477