diff mbox series

[v3,04/30] sunxi: musb: Hack dynamic fifo support for H3 OTG

Message ID 1517156391-11353-5-git-send-email-jagan@amarulasolutions.com
State New
Headers show
Series [v3,01/30] sunxi: h3: Sync OTG and HCI nodes from Linux DT | expand

Commit Message

Jagan Teki Jan. 28, 2018, 4:19 p.m. UTC
From: Jun Nie <jun.nie@linaro.org>

Like other Allwinner SoC, the H3 is missing the config register
from the musb hardware block. Use a known working value for it
like other SoC.

Signed-off-by: Jun Nie <jun.nie@linaro.org>
Reviewed-by: Jagan Teki <jagan@openedev.com>
[jagan: remove 4/8] from commit header]
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
 drivers/usb/musb-new/musb_regs.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/usb/musb-new/musb_regs.h b/drivers/usb/musb-new/musb_regs.h
index a3cc38e..8a357ed 100644
--- a/drivers/usb/musb-new/musb_regs.h
+++ b/drivers/usb/musb-new/musb_regs.h
@@ -432,7 +432,8 @@  static inline u8 musb_read_ulpi_buscontrol(void __iomem *mbase)
 
 static inline u8 musb_read_configdata(void __iomem *mbase)
 {
-#if defined CONFIG_MACH_SUN8I_A33 || defined CONFIG_MACH_SUN8I_A83T
+#if defined(CONFIG_MACH_SUN8I_A33) || defined(CONFIG_MACH_SUN8I_A83T) || \
+	defined(CONFIG_MACH_SUNXI_H3_H5)
 	/* <Sigh> allwinner saves a reg, and we need to hardcode this */
 	return 0xde;
 #else