Searched refs:child_pre_probe (Results 1 – 20 of 20) sorted by relevance
/openbmc/u-boot/drivers/core/ |
H A D | root.c | 95 if (entry->child_pre_probe) in fix_drivers() 96 entry->child_pre_probe += gd->reloc_off; in fix_drivers() 125 if (entry->child_pre_probe) in fix_uclass() 126 entry->child_pre_probe += gd->reloc_off; in fix_uclass()
|
H A D | device.c | 400 if (dev->parent && dev->parent->driver->child_pre_probe) { in device_probe() 401 ret = dev->parent->driver->child_pre_probe(dev); in device_probe()
|
H A D | uclass.c | 717 if (uc_drv->child_pre_probe) in uclass_pre_probe_device() 718 return uc_drv->child_pre_probe(dev); in uclass_pre_probe_device()
|
/openbmc/u-boot/include/dm/ |
H A D | uclass.h | 97 int (*child_pre_probe)(struct udevice *dev); member
|
H A D | device.h | 247 int (*child_pre_probe)(struct udevice *dev); member
|
/openbmc/u-boot/test/dm/ |
H A D | bus.c | 105 .child_pre_probe = testbus_child_pre_probe, 113 .child_pre_probe = testbus_child_pre_probe_uclass,
|
/openbmc/u-boot/drivers/virtio/ |
H A D | virtio-uclass.c | 366 .child_pre_probe = virtio_uclass_child_pre_probe,
|
/openbmc/u-boot/drivers/spi/ |
H A D | bcm63xx_hsspi.c | 405 .child_pre_probe = bcm63xx_hsspi_child_pre_probe,
|
H A D | bcm63xx_spi.c | 424 .child_pre_probe = bcm63xx_spi_child_pre_probe,
|
H A D | spi-uclass.c | 472 .child_pre_probe = spi_child_pre_probe,
|
H A D | ti_qspi.c | 649 .child_pre_probe = ti_qspi_child_pre_probe,
|
H A D | fsl_dspi.c | 720 .child_pre_probe = fsl_dspi_child_pre_probe,
|
H A D | ich.c | 713 .child_pre_probe = ich_spi_child_pre_probe,
|
H A D | fsl_qspi.c | 1129 .child_pre_probe = fsl_qspi_child_pre_probe,
|
H A D | aspeed_spi.c | 1948 .child_pre_probe = aspeed_spi_child_pre_probe,
|
/openbmc/u-boot/common/ |
H A D | usb_hub.c | 964 .child_pre_probe = usb_child_pre_probe,
|
/openbmc/u-boot/drivers/usb/host/ |
H A D | usb-uclass.c | 798 .child_pre_probe = usb_child_pre_probe,
|
/openbmc/u-boot/doc/ |
H A D | README.virtio | 193 The child_post_bind(), child_pre_probe() and child_post_probe() methods of the
|
/openbmc/u-boot/doc/driver-model/ |
H A D | usb-info.txt | 229 child_pre_probe() method. This gets called before anything else and is
|
H A D | README.txt | 567 Also the bus driver can define the child_pre_probe() and child_post_remove() 573 The bus uclass can also provide a child_pre_probe() method. Very often it is
|