diff options
author | Tom Rini <trini@konsulko.com> | 2024-09-02 16:03:02 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-02 16:03:02 -0600 |
commit | 11beb9fe0fec534e1f50ef2a1ace924afebc392d (patch) | |
tree | 0f8d9b2a3cf28660a6b36ed886c574631e7e5261 /drivers/usb | |
parent | b977af178fd79bf31b69f9a777d0adb9d564c531 (diff) | |
parent | d1349097222b5a3264f614b3e4fe672e0df26435 (diff) | |
download | u-boot-11beb9fe0fec534e1f50ef2a1ace924afebc392d.tar.gz |
Merge tag 'u-boot-imx-next-20240902' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into nextWIP/02Sep2024-next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/22211
- Enable SPI NOR flash support and MTD partitions for phycore_imx8mp.
- Convert mx6slevk to OF_UPSTREAM and watchdog DM.
- Cleanup some mx5/mx6 USB options.
- Make PLL settings configurable at board level.
- Set CONFIG_SPL_LOAD_FIT_ADDRESS for verdin-imx8m/p.
- Make the mxc-gpio reading state of GPIO pins in output mode to be
consistent with the Linux kernel.
- Add HUK derivation support for ELE AHAB.
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/ehci-mx5.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-mx5.c b/drivers/usb/host/ehci-mx5.c index 44912de7787..d8f521befe1 100644 --- a/drivers/usb/host/ehci-mx5.c +++ b/drivers/usb/host/ehci-mx5.c @@ -79,6 +79,10 @@ /* USB_CTRL_1 */ #define MXC_USB_CTRL_UH1_EXT_CLK_EN (1 << 25) +#ifndef CFG_MXC_USB_PORTSC +#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) +#endif + int mxc_set_usbcontrol(int port, unsigned int flags) { unsigned int v; |