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