1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
4 * <benh@kernel.crashing.org>
5 * and Arnd Bergmann, IBM Corp.
6 * Merged from powerpc/kernel/of_platform.c and
7 * sparc{,64}/kernel/of_device.c by Stephen Rothwell
8 */
9
10 #define pr_fmt(fmt) "OF: " fmt
11
12 #include <linux/errno.h>
13 #include <linux/module.h>
14 #include <linux/amba/bus.h>
15 #include <linux/device.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/slab.h>
18 #include <linux/of_address.h>
19 #include <linux/of_device.h>
20 #include <linux/of_irq.h>
21 #include <linux/of_platform.h>
22 #include <linux/platform_device.h>
23
24 const struct of_device_id of_default_bus_match_table[] = {
25 { .compatible = "simple-bus", },
26 { .compatible = "simple-mfd", },
27 { .compatible = "isa", },
28 #ifdef CONFIG_ARM_AMBA
29 { .compatible = "arm,amba-bus", },
30 #endif /* CONFIG_ARM_AMBA */
31 {} /* Empty terminated list */
32 };
33
34 static const struct of_device_id of_skipped_node_table[] = {
35 { .compatible = "operating-points-v2", },
36 {} /* Empty terminated list */
37 };
38
39 /**
40 * of_find_device_by_node - Find the platform_device associated with a node
41 * @np: Pointer to device tree node
42 *
43 * Takes a reference to the embedded struct device which needs to be dropped
44 * after use.
45 *
46 * Return: platform_device pointer, or NULL if not found
47 */
of_find_device_by_node(struct device_node * np)48 struct platform_device *of_find_device_by_node(struct device_node *np)
49 {
50 struct device *dev;
51
52 dev = bus_find_device_by_of_node(&platform_bus_type, np);
53 return dev ? to_platform_device(dev) : NULL;
54 }
55 EXPORT_SYMBOL(of_find_device_by_node);
56
57 #ifdef CONFIG_OF_ADDRESS
58 /*
59 * The following routines scan a subtree and registers a device for
60 * each applicable node.
61 *
62 * Note: sparc doesn't use these routines because it has a different
63 * mechanism for creating devices from device tree nodes.
64 */
65
66 /**
67 * of_device_make_bus_id - Use the device node data to assign a unique name
68 * @dev: pointer to device structure that is linked to a device tree node
69 *
70 * This routine will first try using the translated bus address to
71 * derive a unique name. If it cannot, then it will prepend names from
72 * parent nodes until a unique name can be derived.
73 */
of_device_make_bus_id(struct device * dev)74 static void of_device_make_bus_id(struct device *dev)
75 {
76 struct device_node *node = dev->of_node;
77 const __be32 *reg;
78 u64 addr;
79 u32 mask;
80
81 /* Construct the name, using parent nodes if necessary to ensure uniqueness */
82 while (node->parent) {
83 /*
84 * If the address can be translated, then that is as much
85 * uniqueness as we need. Make it the first component and return
86 */
87 reg = of_get_property(node, "reg", NULL);
88 if (reg && (addr = of_translate_address(node, reg)) != OF_BAD_ADDR) {
89 if (!of_property_read_u32(node, "mask", &mask))
90 dev_set_name(dev, dev_name(dev) ? "%llx.%x.%pOFn:%s" : "%llx.%x.%pOFn",
91 addr, ffs(mask) - 1, node, dev_name(dev));
92
93 else
94 dev_set_name(dev, dev_name(dev) ? "%llx.%pOFn:%s" : "%llx.%pOFn",
95 addr, node, dev_name(dev));
96 return;
97 }
98
99 /* format arguments only used if dev_name() resolves to NULL */
100 dev_set_name(dev, dev_name(dev) ? "%s:%s" : "%s",
101 kbasename(node->full_name), dev_name(dev));
102 node = node->parent;
103 }
104 }
105
106 /**
107 * of_device_alloc - Allocate and initialize an of_device
108 * @np: device node to assign to device
109 * @bus_id: Name to assign to the device. May be null to use default name.
110 * @parent: Parent device.
111 */
of_device_alloc(struct device_node * np,const char * bus_id,struct device * parent)112 struct platform_device *of_device_alloc(struct device_node *np,
113 const char *bus_id,
114 struct device *parent)
115 {
116 struct platform_device *dev;
117 int rc, i, num_reg = 0, num_irq;
118 struct resource *res, temp_res;
119
120 dev = platform_device_alloc("", PLATFORM_DEVID_NONE);
121 if (!dev)
122 return NULL;
123
124 /* count the io and irq resources */
125 while (of_address_to_resource(np, num_reg, &temp_res) == 0)
126 num_reg++;
127 num_irq = of_irq_count(np);
128
129 /* Populate the resource table */
130 if (num_irq || num_reg) {
131 res = kcalloc(num_irq + num_reg, sizeof(*res), GFP_KERNEL);
132 if (!res) {
133 platform_device_put(dev);
134 return NULL;
135 }
136
137 dev->num_resources = num_reg + num_irq;
138 dev->resource = res;
139 for (i = 0; i < num_reg; i++, res++) {
140 rc = of_address_to_resource(np, i, res);
141 WARN_ON(rc);
142 }
143 if (of_irq_to_resource_table(np, res, num_irq) != num_irq)
144 pr_debug("not all legacy IRQ resources mapped for %pOFn\n",
145 np);
146 }
147
148 dev->dev.of_node = of_node_get(np);
149 dev->dev.fwnode = &np->fwnode;
150 dev->dev.parent = parent ? : &platform_bus;
151
152 if (bus_id)
153 dev_set_name(&dev->dev, "%s", bus_id);
154 else
155 of_device_make_bus_id(&dev->dev);
156
157 return dev;
158 }
159 EXPORT_SYMBOL(of_device_alloc);
160
161 /**
162 * of_platform_device_create_pdata - Alloc, initialize and register an of_device
163 * @np: pointer to node to create device for
164 * @bus_id: name to assign device
165 * @platform_data: pointer to populate platform_data pointer with
166 * @parent: Linux device model parent device.
167 *
168 * Return: Pointer to created platform device, or NULL if a device was not
169 * registered. Unavailable devices will not get registered.
170 */
of_platform_device_create_pdata(struct device_node * np,const char * bus_id,void * platform_data,struct device * parent)171 static struct platform_device *of_platform_device_create_pdata(
172 struct device_node *np,
173 const char *bus_id,
174 void *platform_data,
175 struct device *parent)
176 {
177 struct platform_device *dev;
178
179 if (!of_device_is_available(np) ||
180 of_node_test_and_set_flag(np, OF_POPULATED))
181 return NULL;
182
183 dev = of_device_alloc(np, bus_id, parent);
184 if (!dev)
185 goto err_clear_flag;
186
187 dev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
188 if (!dev->dev.dma_mask)
189 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
190 dev->dev.bus = &platform_bus_type;
191 dev->dev.platform_data = platform_data;
192 of_msi_configure(&dev->dev, dev->dev.of_node);
193
194 if (of_device_add(dev) != 0) {
195 platform_device_put(dev);
196 goto err_clear_flag;
197 }
198
199 return dev;
200
201 err_clear_flag:
202 of_node_clear_flag(np, OF_POPULATED);
203 return NULL;
204 }
205
206 /**
207 * of_platform_device_create - Alloc, initialize and register an of_device
208 * @np: pointer to node to create device for
209 * @bus_id: name to assign device
210 * @parent: Linux device model parent device.
211 *
212 * Return: Pointer to created platform device, or NULL if a device was not
213 * registered. Unavailable devices will not get registered.
214 */
of_platform_device_create(struct device_node * np,const char * bus_id,struct device * parent)215 struct platform_device *of_platform_device_create(struct device_node *np,
216 const char *bus_id,
217 struct device *parent)
218 {
219 return of_platform_device_create_pdata(np, bus_id, NULL, parent);
220 }
221 EXPORT_SYMBOL(of_platform_device_create);
222
223 #ifdef CONFIG_ARM_AMBA
of_amba_device_create(struct device_node * node,const char * bus_id,void * platform_data,struct device * parent)224 static struct amba_device *of_amba_device_create(struct device_node *node,
225 const char *bus_id,
226 void *platform_data,
227 struct device *parent)
228 {
229 struct amba_device *dev;
230 const void *prop;
231 int ret;
232
233 pr_debug("Creating amba device %pOF\n", node);
234
235 if (!of_device_is_available(node) ||
236 of_node_test_and_set_flag(node, OF_POPULATED))
237 return NULL;
238
239 dev = amba_device_alloc(NULL, 0, 0);
240 if (!dev)
241 goto err_clear_flag;
242
243 /* AMBA devices only support a single DMA mask */
244 dev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
245 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
246
247 /* setup generic device info */
248 dev->dev.of_node = of_node_get(node);
249 dev->dev.fwnode = &node->fwnode;
250 dev->dev.parent = parent ? : &platform_bus;
251 dev->dev.platform_data = platform_data;
252 if (bus_id)
253 dev_set_name(&dev->dev, "%s", bus_id);
254 else
255 of_device_make_bus_id(&dev->dev);
256
257 /* Allow the HW Peripheral ID to be overridden */
258 prop = of_get_property(node, "arm,primecell-periphid", NULL);
259 if (prop)
260 dev->periphid = of_read_ulong(prop, 1);
261
262 ret = of_address_to_resource(node, 0, &dev->res);
263 if (ret) {
264 pr_err("amba: of_address_to_resource() failed (%d) for %pOF\n",
265 ret, node);
266 goto err_free;
267 }
268
269 ret = amba_device_add(dev, &iomem_resource);
270 if (ret) {
271 pr_err("amba_device_add() failed (%d) for %pOF\n",
272 ret, node);
273 goto err_free;
274 }
275
276 return dev;
277
278 err_free:
279 amba_device_put(dev);
280 err_clear_flag:
281 of_node_clear_flag(node, OF_POPULATED);
282 return NULL;
283 }
284 #else /* CONFIG_ARM_AMBA */
of_amba_device_create(struct device_node * node,const char * bus_id,void * platform_data,struct device * parent)285 static struct amba_device *of_amba_device_create(struct device_node *node,
286 const char *bus_id,
287 void *platform_data,
288 struct device *parent)
289 {
290 return NULL;
291 }
292 #endif /* CONFIG_ARM_AMBA */
293
294 /*
295 * of_dev_lookup() - Given a device node, lookup the preferred Linux name
296 */
of_dev_lookup(const struct of_dev_auxdata * lookup,struct device_node * np)297 static const struct of_dev_auxdata *of_dev_lookup(const struct of_dev_auxdata *lookup,
298 struct device_node *np)
299 {
300 const struct of_dev_auxdata *auxdata;
301 struct resource res;
302 int compatible = 0;
303
304 if (!lookup)
305 return NULL;
306
307 auxdata = lookup;
308 for (; auxdata->compatible; auxdata++) {
309 if (!of_device_is_compatible(np, auxdata->compatible))
310 continue;
311 compatible++;
312 if (!of_address_to_resource(np, 0, &res))
313 if (res.start != auxdata->phys_addr)
314 continue;
315 pr_debug("%pOF: devname=%s\n", np, auxdata->name);
316 return auxdata;
317 }
318
319 if (!compatible)
320 return NULL;
321
322 /* Try compatible match if no phys_addr and name are specified */
323 auxdata = lookup;
324 for (; auxdata->compatible; auxdata++) {
325 if (!of_device_is_compatible(np, auxdata->compatible))
326 continue;
327 if (!auxdata->phys_addr && !auxdata->name) {
328 pr_debug("%pOF: compatible match\n", np);
329 return auxdata;
330 }
331 }
332
333 return NULL;
334 }
335
336 /**
337 * of_platform_bus_create() - Create a device for a node and its children.
338 * @bus: device node of the bus to instantiate
339 * @matches: match table for bus nodes
340 * @lookup: auxdata table for matching id and platform_data with device nodes
341 * @parent: parent for new device, or NULL for top level.
342 * @strict: require compatible property
343 *
344 * Creates a platform_device for the provided device_node, and optionally
345 * recursively create devices for all the child nodes.
346 */
of_platform_bus_create(struct device_node * bus,const struct of_device_id * matches,const struct of_dev_auxdata * lookup,struct device * parent,bool strict)347 static int of_platform_bus_create(struct device_node *bus,
348 const struct of_device_id *matches,
349 const struct of_dev_auxdata *lookup,
350 struct device *parent, bool strict)
351 {
352 const struct of_dev_auxdata *auxdata;
353 struct device_node *child;
354 struct platform_device *dev;
355 const char *bus_id = NULL;
356 void *platform_data = NULL;
357 int rc = 0;
358
359 /* Make sure it has a compatible property */
360 if (strict && (!of_get_property(bus, "compatible", NULL))) {
361 pr_debug("%s() - skipping %pOF, no compatible prop\n",
362 __func__, bus);
363 return 0;
364 }
365
366 /* Skip nodes for which we don't want to create devices */
367 if (unlikely(of_match_node(of_skipped_node_table, bus))) {
368 pr_debug("%s() - skipping %pOF node\n", __func__, bus);
369 return 0;
370 }
371
372 if (of_node_check_flag(bus, OF_POPULATED_BUS)) {
373 pr_debug("%s() - skipping %pOF, already populated\n",
374 __func__, bus);
375 return 0;
376 }
377
378 auxdata = of_dev_lookup(lookup, bus);
379 if (auxdata) {
380 bus_id = auxdata->name;
381 platform_data = auxdata->platform_data;
382 }
383
384 if (of_device_is_compatible(bus, "arm,primecell")) {
385 /*
386 * Don't return an error here to keep compatibility with older
387 * device tree files.
388 */
389 of_amba_device_create(bus, bus_id, platform_data, parent);
390 return 0;
391 }
392
393 dev = of_platform_device_create_pdata(bus, bus_id, platform_data, parent);
394 if (!dev || !of_match_node(matches, bus))
395 return 0;
396
397 for_each_child_of_node(bus, child) {
398 pr_debug(" create child: %pOF\n", child);
399 rc = of_platform_bus_create(child, matches, lookup, &dev->dev, strict);
400 if (rc) {
401 of_node_put(child);
402 break;
403 }
404 }
405 of_node_set_flag(bus, OF_POPULATED_BUS);
406 return rc;
407 }
408
409 /**
410 * of_platform_bus_probe() - Probe the device-tree for platform buses
411 * @root: parent of the first level to probe or NULL for the root of the tree
412 * @matches: match table for bus nodes
413 * @parent: parent to hook devices from, NULL for toplevel
414 *
415 * Note that children of the provided root are not instantiated as devices
416 * unless the specified root itself matches the bus list and is not NULL.
417 */
of_platform_bus_probe(struct device_node * root,const struct of_device_id * matches,struct device * parent)418 int of_platform_bus_probe(struct device_node *root,
419 const struct of_device_id *matches,
420 struct device *parent)
421 {
422 struct device_node *child;
423 int rc = 0;
424
425 root = root ? of_node_get(root) : of_find_node_by_path("/");
426 if (!root)
427 return -EINVAL;
428
429 pr_debug("%s()\n", __func__);
430 pr_debug(" starting at: %pOF\n", root);
431
432 /* Do a self check of bus type, if there's a match, create children */
433 if (of_match_node(matches, root)) {
434 rc = of_platform_bus_create(root, matches, NULL, parent, false);
435 } else for_each_child_of_node(root, child) {
436 if (!of_match_node(matches, child))
437 continue;
438 rc = of_platform_bus_create(child, matches, NULL, parent, false);
439 if (rc) {
440 of_node_put(child);
441 break;
442 }
443 }
444
445 of_node_put(root);
446 return rc;
447 }
448 EXPORT_SYMBOL(of_platform_bus_probe);
449
450 /**
451 * of_platform_populate() - Populate platform_devices from device tree data
452 * @root: parent of the first level to probe or NULL for the root of the tree
453 * @matches: match table, NULL to use the default
454 * @lookup: auxdata table for matching id and platform_data with device nodes
455 * @parent: parent to hook devices from, NULL for toplevel
456 *
457 * Similar to of_platform_bus_probe(), this function walks the device tree
458 * and creates devices from nodes. It differs in that it follows the modern
459 * convention of requiring all device nodes to have a 'compatible' property,
460 * and it is suitable for creating devices which are children of the root
461 * node (of_platform_bus_probe will only create children of the root which
462 * are selected by the @matches argument).
463 *
464 * New board support should be using this function instead of
465 * of_platform_bus_probe().
466 *
467 * Return: 0 on success, < 0 on failure.
468 */
of_platform_populate(struct device_node * root,const struct of_device_id * matches,const struct of_dev_auxdata * lookup,struct device * parent)469 int of_platform_populate(struct device_node *root,
470 const struct of_device_id *matches,
471 const struct of_dev_auxdata *lookup,
472 struct device *parent)
473 {
474 struct device_node *child;
475 int rc = 0;
476
477 root = root ? of_node_get(root) : of_find_node_by_path("/");
478 if (!root)
479 return -EINVAL;
480
481 pr_debug("%s()\n", __func__);
482 pr_debug(" starting at: %pOF\n", root);
483
484 device_links_supplier_sync_state_pause();
485 for_each_child_of_node(root, child) {
486 rc = of_platform_bus_create(child, matches, lookup, parent, true);
487 if (rc) {
488 of_node_put(child);
489 break;
490 }
491 }
492 device_links_supplier_sync_state_resume();
493
494 of_node_set_flag(root, OF_POPULATED_BUS);
495
496 of_node_put(root);
497 return rc;
498 }
499 EXPORT_SYMBOL_GPL(of_platform_populate);
500
of_platform_default_populate(struct device_node * root,const struct of_dev_auxdata * lookup,struct device * parent)501 int of_platform_default_populate(struct device_node *root,
502 const struct of_dev_auxdata *lookup,
503 struct device *parent)
504 {
505 return of_platform_populate(root, of_default_bus_match_table, lookup,
506 parent);
507 }
508 EXPORT_SYMBOL_GPL(of_platform_default_populate);
509
510 #ifndef CONFIG_PPC
511 static const struct of_device_id reserved_mem_matches[] = {
512 { .compatible = "qcom,rmtfs-mem" },
513 { .compatible = "qcom,cmd-db" },
514 { .compatible = "qcom,smem" },
515 { .compatible = "ramoops" },
516 { .compatible = "nvmem-rmem" },
517 {}
518 };
519
of_platform_default_populate_init(void)520 static int __init of_platform_default_populate_init(void)
521 {
522 struct device_node *node;
523
524 device_links_supplier_sync_state_pause();
525
526 if (!of_have_populated_dt())
527 return -ENODEV;
528
529 /*
530 * Handle certain compatibles explicitly, since we don't want to create
531 * platform_devices for every node in /reserved-memory with a
532 * "compatible",
533 */
534 for_each_matching_node(node, reserved_mem_matches)
535 of_platform_device_create(node, NULL, NULL);
536
537 node = of_find_node_by_path("/firmware");
538 if (node) {
539 of_platform_populate(node, NULL, NULL, NULL);
540 of_node_put(node);
541 }
542
543 /* Populate everything else. */
544 of_platform_default_populate(NULL, NULL, NULL);
545
546 return 0;
547 }
548 arch_initcall_sync(of_platform_default_populate_init);
549
of_platform_sync_state_init(void)550 static int __init of_platform_sync_state_init(void)
551 {
552 device_links_supplier_sync_state_resume();
553 return 0;
554 }
555 late_initcall_sync(of_platform_sync_state_init);
556 #endif
557
of_platform_device_destroy(struct device * dev,void * data)558 int of_platform_device_destroy(struct device *dev, void *data)
559 {
560 /* Do not touch devices not populated from the device tree */
561 if (!dev->of_node || !of_node_check_flag(dev->of_node, OF_POPULATED))
562 return 0;
563
564 /* Recurse for any nodes that were treated as busses */
565 if (of_node_check_flag(dev->of_node, OF_POPULATED_BUS))
566 device_for_each_child(dev, NULL, of_platform_device_destroy);
567
568 of_node_clear_flag(dev->of_node, OF_POPULATED);
569 of_node_clear_flag(dev->of_node, OF_POPULATED_BUS);
570
571 if (dev->bus == &platform_bus_type)
572 platform_device_unregister(to_platform_device(dev));
573 #ifdef CONFIG_ARM_AMBA
574 else if (dev->bus == &amba_bustype)
575 amba_device_unregister(to_amba_device(dev));
576 #endif
577
578 return 0;
579 }
580 EXPORT_SYMBOL_GPL(of_platform_device_destroy);
581
582 /**
583 * of_platform_depopulate() - Remove devices populated from device tree
584 * @parent: device which children will be removed
585 *
586 * Complementary to of_platform_populate(), this function removes children
587 * of the given device (and, recurrently, their children) that have been
588 * created from their respective device tree nodes (and only those,
589 * leaving others - eg. manually created - unharmed).
590 */
of_platform_depopulate(struct device * parent)591 void of_platform_depopulate(struct device *parent)
592 {
593 if (parent->of_node && of_node_check_flag(parent->of_node, OF_POPULATED_BUS)) {
594 device_for_each_child_reverse(parent, NULL, of_platform_device_destroy);
595 of_node_clear_flag(parent->of_node, OF_POPULATED_BUS);
596 }
597 }
598 EXPORT_SYMBOL_GPL(of_platform_depopulate);
599
devm_of_platform_populate_release(struct device * dev,void * res)600 static void devm_of_platform_populate_release(struct device *dev, void *res)
601 {
602 of_platform_depopulate(*(struct device **)res);
603 }
604
605 /**
606 * devm_of_platform_populate() - Populate platform_devices from device tree data
607 * @dev: device that requested to populate from device tree data
608 *
609 * Similar to of_platform_populate(), but will automatically call
610 * of_platform_depopulate() when the device is unbound from the bus.
611 *
612 * Return: 0 on success, < 0 on failure.
613 */
devm_of_platform_populate(struct device * dev)614 int devm_of_platform_populate(struct device *dev)
615 {
616 struct device **ptr;
617 int ret;
618
619 if (!dev)
620 return -EINVAL;
621
622 ptr = devres_alloc(devm_of_platform_populate_release,
623 sizeof(*ptr), GFP_KERNEL);
624 if (!ptr)
625 return -ENOMEM;
626
627 ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
628 if (ret) {
629 devres_free(ptr);
630 } else {
631 *ptr = dev;
632 devres_add(dev, ptr);
633 }
634
635 return ret;
636 }
637 EXPORT_SYMBOL_GPL(devm_of_platform_populate);
638
devm_of_platform_match(struct device * dev,void * res,void * data)639 static int devm_of_platform_match(struct device *dev, void *res, void *data)
640 {
641 struct device **ptr = res;
642
643 if (!ptr) {
644 WARN_ON(!ptr);
645 return 0;
646 }
647
648 return *ptr == data;
649 }
650
651 /**
652 * devm_of_platform_depopulate() - Remove devices populated from device tree
653 * @dev: device that requested to depopulate from device tree data
654 *
655 * Complementary to devm_of_platform_populate(), this function removes children
656 * of the given device (and, recurrently, their children) that have been
657 * created from their respective device tree nodes (and only those,
658 * leaving others - eg. manually created - unharmed).
659 */
devm_of_platform_depopulate(struct device * dev)660 void devm_of_platform_depopulate(struct device *dev)
661 {
662 int ret;
663
664 ret = devres_release(dev, devm_of_platform_populate_release,
665 devm_of_platform_match, dev);
666
667 WARN_ON(ret);
668 }
669 EXPORT_SYMBOL_GPL(devm_of_platform_depopulate);
670
671 #ifdef CONFIG_OF_DYNAMIC
of_platform_notify(struct notifier_block * nb,unsigned long action,void * arg)672 static int of_platform_notify(struct notifier_block *nb,
673 unsigned long action, void *arg)
674 {
675 struct of_reconfig_data *rd = arg;
676 struct platform_device *pdev_parent, *pdev;
677 bool children_left;
678
679 switch (of_reconfig_get_state_change(action, rd)) {
680 case OF_RECONFIG_CHANGE_ADD:
681 /* verify that the parent is a bus */
682 if (!of_node_check_flag(rd->dn->parent, OF_POPULATED_BUS))
683 return NOTIFY_OK; /* not for us */
684
685 /* already populated? (driver using of_populate manually) */
686 if (of_node_check_flag(rd->dn, OF_POPULATED))
687 return NOTIFY_OK;
688
689 /* pdev_parent may be NULL when no bus platform device */
690 pdev_parent = of_find_device_by_node(rd->dn->parent);
691 pdev = of_platform_device_create(rd->dn, NULL,
692 pdev_parent ? &pdev_parent->dev : NULL);
693 platform_device_put(pdev_parent);
694
695 if (pdev == NULL) {
696 pr_err("%s: failed to create for '%pOF'\n",
697 __func__, rd->dn);
698 /* of_platform_device_create tosses the error code */
699 return notifier_from_errno(-EINVAL);
700 }
701 break;
702
703 case OF_RECONFIG_CHANGE_REMOVE:
704
705 /* already depopulated? */
706 if (!of_node_check_flag(rd->dn, OF_POPULATED))
707 return NOTIFY_OK;
708
709 /* find our device by node */
710 pdev = of_find_device_by_node(rd->dn);
711 if (pdev == NULL)
712 return NOTIFY_OK; /* no? not meant for us */
713
714 /* unregister takes one ref away */
715 of_platform_device_destroy(&pdev->dev, &children_left);
716
717 /* and put the reference of the find */
718 platform_device_put(pdev);
719 break;
720 }
721
722 return NOTIFY_OK;
723 }
724
725 static struct notifier_block platform_of_notifier = {
726 .notifier_call = of_platform_notify,
727 };
728
of_platform_register_reconfig_notifier(void)729 void of_platform_register_reconfig_notifier(void)
730 {
731 WARN_ON(of_reconfig_notifier_register(&platform_of_notifier));
732 }
733 #endif /* CONFIG_OF_DYNAMIC */
734
735 #endif /* CONFIG_OF_ADDRESS */
736