xref: /linux/drivers/of/platform.c (revision fdaf9a5840acaab18694a19e0eb0aa51162eeeed)
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  */
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  */
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  */
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  */
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  */
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
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 */
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  */
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  */
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  */
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  */
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 
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 = "phram" },
513 	{ .compatible = "qcom,rmtfs-mem" },
514 	{ .compatible = "qcom,cmd-db" },
515 	{ .compatible = "qcom,smem" },
516 	{ .compatible = "ramoops" },
517 	{ .compatible = "nvmem-rmem" },
518 	{ .compatible = "google,open-dice" },
519 	{}
520 };
521 
522 static int __init of_platform_default_populate_init(void)
523 {
524 	struct device_node *node;
525 
526 	device_links_supplier_sync_state_pause();
527 
528 	if (!of_have_populated_dt())
529 		return -ENODEV;
530 
531 	/*
532 	 * Handle certain compatibles explicitly, since we don't want to create
533 	 * platform_devices for every node in /reserved-memory with a
534 	 * "compatible",
535 	 */
536 	for_each_matching_node(node, reserved_mem_matches)
537 		of_platform_device_create(node, NULL, NULL);
538 
539 	node = of_find_node_by_path("/firmware");
540 	if (node) {
541 		of_platform_populate(node, NULL, NULL, NULL);
542 		of_node_put(node);
543 	}
544 
545 	node = of_get_compatible_child(of_chosen, "simple-framebuffer");
546 	of_platform_device_create(node, NULL, NULL);
547 	of_node_put(node);
548 
549 	/* Populate everything else. */
550 	of_platform_default_populate(NULL, NULL, NULL);
551 
552 	return 0;
553 }
554 arch_initcall_sync(of_platform_default_populate_init);
555 
556 static int __init of_platform_sync_state_init(void)
557 {
558 	device_links_supplier_sync_state_resume();
559 	return 0;
560 }
561 late_initcall_sync(of_platform_sync_state_init);
562 #endif
563 
564 int of_platform_device_destroy(struct device *dev, void *data)
565 {
566 	/* Do not touch devices not populated from the device tree */
567 	if (!dev->of_node || !of_node_check_flag(dev->of_node, OF_POPULATED))
568 		return 0;
569 
570 	/* Recurse for any nodes that were treated as busses */
571 	if (of_node_check_flag(dev->of_node, OF_POPULATED_BUS))
572 		device_for_each_child(dev, NULL, of_platform_device_destroy);
573 
574 	of_node_clear_flag(dev->of_node, OF_POPULATED);
575 	of_node_clear_flag(dev->of_node, OF_POPULATED_BUS);
576 
577 	if (dev->bus == &platform_bus_type)
578 		platform_device_unregister(to_platform_device(dev));
579 #ifdef CONFIG_ARM_AMBA
580 	else if (dev->bus == &amba_bustype)
581 		amba_device_unregister(to_amba_device(dev));
582 #endif
583 
584 	return 0;
585 }
586 EXPORT_SYMBOL_GPL(of_platform_device_destroy);
587 
588 /**
589  * of_platform_depopulate() - Remove devices populated from device tree
590  * @parent: device which children will be removed
591  *
592  * Complementary to of_platform_populate(), this function removes children
593  * of the given device (and, recurrently, their children) that have been
594  * created from their respective device tree nodes (and only those,
595  * leaving others - eg. manually created - unharmed).
596  */
597 void of_platform_depopulate(struct device *parent)
598 {
599 	if (parent->of_node && of_node_check_flag(parent->of_node, OF_POPULATED_BUS)) {
600 		device_for_each_child_reverse(parent, NULL, of_platform_device_destroy);
601 		of_node_clear_flag(parent->of_node, OF_POPULATED_BUS);
602 	}
603 }
604 EXPORT_SYMBOL_GPL(of_platform_depopulate);
605 
606 static void devm_of_platform_populate_release(struct device *dev, void *res)
607 {
608 	of_platform_depopulate(*(struct device **)res);
609 }
610 
611 /**
612  * devm_of_platform_populate() - Populate platform_devices from device tree data
613  * @dev: device that requested to populate from device tree data
614  *
615  * Similar to of_platform_populate(), but will automatically call
616  * of_platform_depopulate() when the device is unbound from the bus.
617  *
618  * Return: 0 on success, < 0 on failure.
619  */
620 int devm_of_platform_populate(struct device *dev)
621 {
622 	struct device **ptr;
623 	int ret;
624 
625 	if (!dev)
626 		return -EINVAL;
627 
628 	ptr = devres_alloc(devm_of_platform_populate_release,
629 			   sizeof(*ptr), GFP_KERNEL);
630 	if (!ptr)
631 		return -ENOMEM;
632 
633 	ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
634 	if (ret) {
635 		devres_free(ptr);
636 	} else {
637 		*ptr = dev;
638 		devres_add(dev, ptr);
639 	}
640 
641 	return ret;
642 }
643 EXPORT_SYMBOL_GPL(devm_of_platform_populate);
644 
645 static int devm_of_platform_match(struct device *dev, void *res, void *data)
646 {
647 	struct device **ptr = res;
648 
649 	if (!ptr) {
650 		WARN_ON(!ptr);
651 		return 0;
652 	}
653 
654 	return *ptr == data;
655 }
656 
657 /**
658  * devm_of_platform_depopulate() - Remove devices populated from device tree
659  * @dev: device that requested to depopulate from device tree data
660  *
661  * Complementary to devm_of_platform_populate(), this function removes children
662  * of the given device (and, recurrently, their children) that have been
663  * created from their respective device tree nodes (and only those,
664  * leaving others - eg. manually created - unharmed).
665  */
666 void devm_of_platform_depopulate(struct device *dev)
667 {
668 	int ret;
669 
670 	ret = devres_release(dev, devm_of_platform_populate_release,
671 			     devm_of_platform_match, dev);
672 
673 	WARN_ON(ret);
674 }
675 EXPORT_SYMBOL_GPL(devm_of_platform_depopulate);
676 
677 #ifdef CONFIG_OF_DYNAMIC
678 static int of_platform_notify(struct notifier_block *nb,
679 				unsigned long action, void *arg)
680 {
681 	struct of_reconfig_data *rd = arg;
682 	struct platform_device *pdev_parent, *pdev;
683 	bool children_left;
684 
685 	switch (of_reconfig_get_state_change(action, rd)) {
686 	case OF_RECONFIG_CHANGE_ADD:
687 		/* verify that the parent is a bus */
688 		if (!of_node_check_flag(rd->dn->parent, OF_POPULATED_BUS))
689 			return NOTIFY_OK;	/* not for us */
690 
691 		/* already populated? (driver using of_populate manually) */
692 		if (of_node_check_flag(rd->dn, OF_POPULATED))
693 			return NOTIFY_OK;
694 
695 		/* pdev_parent may be NULL when no bus platform device */
696 		pdev_parent = of_find_device_by_node(rd->dn->parent);
697 		pdev = of_platform_device_create(rd->dn, NULL,
698 				pdev_parent ? &pdev_parent->dev : NULL);
699 		platform_device_put(pdev_parent);
700 
701 		if (pdev == NULL) {
702 			pr_err("%s: failed to create for '%pOF'\n",
703 					__func__, rd->dn);
704 			/* of_platform_device_create tosses the error code */
705 			return notifier_from_errno(-EINVAL);
706 		}
707 		break;
708 
709 	case OF_RECONFIG_CHANGE_REMOVE:
710 
711 		/* already depopulated? */
712 		if (!of_node_check_flag(rd->dn, OF_POPULATED))
713 			return NOTIFY_OK;
714 
715 		/* find our device by node */
716 		pdev = of_find_device_by_node(rd->dn);
717 		if (pdev == NULL)
718 			return NOTIFY_OK;	/* no? not meant for us */
719 
720 		/* unregister takes one ref away */
721 		of_platform_device_destroy(&pdev->dev, &children_left);
722 
723 		/* and put the reference of the find */
724 		platform_device_put(pdev);
725 		break;
726 	}
727 
728 	return NOTIFY_OK;
729 }
730 
731 static struct notifier_block platform_of_notifier = {
732 	.notifier_call = of_platform_notify,
733 };
734 
735 void of_platform_register_reconfig_notifier(void)
736 {
737 	WARN_ON(of_reconfig_notifier_register(&platform_of_notifier));
738 }
739 #endif /* CONFIG_OF_DYNAMIC */
740 
741 #endif /* CONFIG_OF_ADDRESS */
742