Searched refs:UCLASS_USB (Results 1 – 25 of 38) sorted by relevance
12
/external/u-boot/test/dm/ |
D | usb.c | 23 ut_asserteq(-ENODEV, uclass_get_device_by_seq(UCLASS_USB, 0, &bus)); in dm_test_usb_base() 24 ut_assertok(uclass_get_device(UCLASS_USB, 0, &bus)); in dm_test_usb_base() 25 ut_asserteq(-ENODEV, uclass_get_device_by_seq(UCLASS_USB, 2, &bus)); in dm_test_usb_base()
|
/external/u-boot/drivers/usb/host/ |
D | usb-uclass.c | 170 ret = uclass_get(UCLASS_USB, &uc); in usb_stop() 250 ret = uclass_get(UCLASS_USB, &uc); in usb_init() 388 ret = uclass_find_device_by_seq(UCLASS_USB, 0, true, &dev); in usb_setup_ehci_gadget() 740 for (bus = dev; bus && device_get_uclass_id(bus) != UCLASS_USB; ) in usb_get_bus() 790 .id = UCLASS_USB,
|
D | xhci-pci.c | 55 .id = UCLASS_USB,
|
D | xhci-mvebu.c | 92 .id = UCLASS_USB,
|
D | ehci-zynq.c | 82 .id = UCLASS_USB,
|
D | ehci-atmel.c | 120 .id = UCLASS_USB,
|
D | xhci-zynqmp.c | 138 .id = UCLASS_USB,
|
D | ehci-pci.c | 136 .id = UCLASS_USB,
|
D | ehci-msm.c | 168 .id = UCLASS_USB,
|
D | xhci-rcar.c | 153 .id = UCLASS_USB,
|
D | xhci-rockchip.c | 177 .id = UCLASS_USB,
|
D | usb-sandbox.c | 152 .id = UCLASS_USB,
|
D | xhci-fsl.c | 166 .id = UCLASS_USB,
|
D | xhci-exynos5.c | 250 .id = UCLASS_USB,
|
D | ehci-marvell.c | 148 .id = UCLASS_USB,
|
D | ehci-sunxi.c | 196 .id = UCLASS_USB,
|
D | ohci-generic.c | 191 .id = UCLASS_USB,
|
D | ehci-generic.c | 206 .id = UCLASS_USB,
|
D | xhci-dwc3.c | 242 .id = UCLASS_USB,
|
D | ehci-exynos.c | 253 .id = UCLASS_USB,
|
D | ohci-sunxi.c | 225 .id = UCLASS_USB,
|
/external/u-boot/include/dm/ |
D | uclass-id.h | 86 UCLASS_USB, /* USB bus */ enumerator
|
/external/u-boot/drivers/usb/musb-new/ |
D | usb-compat.h | 83 if (device_get_uclass_id(udev->dev) == UCLASS_USB) in usb_dev_get_parent()
|
D | ti-musb.c | 196 .id = UCLASS_USB,
|
/external/u-boot/cmd/ |
D | usb.c | 374 if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) { 464 for (uclass_find_first_device(UCLASS_USB, &bus);
|
12