HMIBSC board has hardwired support for 2 USB host LAN75XX ethernet adaptors. So enable corresponding driver in u-boot.
Steps to test networking: hmibsc => setenv bootfile fitImage hmibsc => setenv serverip 192.168.1.24 hmibsc => usb start starting USB... Bus ehci@78d9000: USB EHCI 1.00 scanning bus ehci@78d9000 for devices... 5 USB Device(s) found scanning usb for storage devices... 1 Storage Device(s) found hmibsc => dhcp lan75xx_eth Waiting for PHY auto negotiation to complete......... TIMEOUT ! phy_startup failed lan75xx_eth Waiting for PHY auto negotiation to complete....... done BOOTP broadcast 1 BOOTP broadcast 2 *** Unhandled DHCP Option in OFFER/ACK: 125 *** Unhandled DHCP Option in OFFER/ACK: 125 DHCP client bound to address 192.168.1.22 (6220 ms) Using lan75xx_eth device TFTP from server 192.168.1.24; our IP address is 192.168.1.22 Filename 'fitImage'. Load address: 0x90000000 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################ 5.2 MiB/s done Bytes transferred = 30992680 (1d8e928 hex) Signed-off-by: Sumit Garg <sumit.g...@linaro.org> --- configs/hmibsc_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/hmibsc_defconfig b/configs/hmibsc_defconfig index 656c9c6d0d6..dd3d18a5953 100644 --- a/configs/hmibsc_defconfig +++ b/configs/hmibsc_defconfig @@ -71,6 +71,8 @@ CONFIG_USB_ETHER_ASIX=y CONFIG_USB_ETHER_ASIX88179=y CONFIG_USB_ETHER_MCS7830=y CONFIG_USB_ETHER_SMSC95XX=y +CONFIG_PHYLIB=y +CONFIG_USB_ETHER_LAN75XX=y CONFIG_USB_GADGET=y CONFIG_USB_GADGET_VENDOR_NUM=0x18d1 CONFIG_USB_GADGET_PRODUCT_NUM=0xd00d -- 2.34.1