diff options
author | Tom Rini <trini@konsulko.com> | 2021-09-23 08:30:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-09-23 08:30:22 -0400 |
commit | 014166c5610e6a17636b359c379506cf339b4f46 (patch) | |
tree | cd8be5e61c792ba194c2bcf4fd7f40c470455efa /drivers/usb/common/common.c | |
parent | a49930f4c6ed5dcbf5127f7bf6d189afa92bffb3 (diff) | |
parent | 53eed9adfac17921511ebf9e00c429bcb385d231 (diff) | |
download | u-boot-014166c5610e6a17636b359c379506cf339b4f46.tar.gz |
Merge branch 'master' of git://source.denx.de/u-boot-usb
Late bunch of USB fixes (incl. the xhci usb 3.1 support)
Diffstat (limited to 'drivers/usb/common/common.c')
-rw-r--r-- | drivers/usb/common/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/common/common.c b/drivers/usb/common/common.c index 2a47f40bbab..43564c9fbaf 100644 --- a/drivers/usb/common/common.c +++ b/drivers/usb/common/common.c @@ -80,6 +80,9 @@ static const char *const usbphy_modes[] = { [USBPHY_INTERFACE_MODE_UNKNOWN] = "", [USBPHY_INTERFACE_MODE_UTMI] = "utmi", [USBPHY_INTERFACE_MODE_UTMIW] = "utmi_wide", + [USBPHY_INTERFACE_MODE_ULPI] = "ulpi", + [USBPHY_INTERFACE_MODE_SERIAL] = "serial", + [USBPHY_INTERFACE_MODE_HSIC] = "hsic", }; enum usb_phy_interface usb_get_phy_mode(ofnode node) |