]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
usb: ehci-mx5: Add a default for CFG_MXC_USB_PORTSC
authorFabio Estevam <festevam@denx.de>
Wed, 28 Aug 2024 13:25:27 +0000 (10:25 -0300)
committerFabio Estevam <festevam@gmail.com>
Sat, 31 Aug 2024 01:46:52 +0000 (22:46 -0300)
Just like drivers/usb/host/ehci-mx6.c, add a default for
drivers/usb/host/ehci-mx5.c.

The motivation for doing this is to remove CFG_MXC_USB_PORTSC
from board config files.

All the mx5 boards, with the exeption of mx51evk, define
CFG_MXC_USB_PORTSC as:

 #define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)

So move this definition as a default into ehci-mx5.c.

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Marek Vasut <marex@denx.de>
drivers/usb/host/ehci-mx5.c

index 44912de7787dc39b01771928985973a952ae6292..d8f521befe14e03ed3cc173de71ee2c4ea8b18f8 100644 (file)
 /* 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;