740ffec4ac96ddd9be74e005ba2101b5eaa13969
[openwrt/openwrt.git] / target / linux / ar71xx / patches-4.4 / 920-usb-chipidea-AR933x-platform-support.patch
1 --- a/arch/mips/include/asm/mach-ath79/ar71xx_regs.h
2 +++ b/arch/mips/include/asm/mach-ath79/ar71xx_regs.h
3 @@ -659,6 +659,7 @@
4
5 #define AR933X_BOOTSTRAP_MDIO_GPIO_EN BIT(18)
6 #define AR933X_BOOTSTRAP_EEPBUSY BIT(4)
7 +#define AR933X_BOOTSTRAP_USB_MODE_HOST BIT(3)
8 #define AR933X_BOOTSTRAP_REF_CLK_40 BIT(0)
9
10 #define AR934X_BOOTSTRAP_SW_OPTION8 BIT(23)
11 @@ -688,6 +689,8 @@
12
13 #define QCA956X_BOOTSTRAP_REF_CLK_40 BIT(2)
14
15 +#define AR933X_USB_CONFIG_HOST_ONLY BIT(8)
16 +
17 #define AR934X_PCIE_WMAC_INT_WMAC_MISC BIT(0)
18 #define AR934X_PCIE_WMAC_INT_WMAC_TX BIT(1)
19 #define AR934X_PCIE_WMAC_INT_WMAC_RXLP BIT(2)
20 --- a/arch/mips/ath79/dev-usb.c
21 +++ b/arch/mips/ath79/dev-usb.c
22 @@ -19,6 +19,9 @@
23 #include <linux/platform_device.h>
24 #include <linux/usb/ehci_pdriver.h>
25 #include <linux/usb/ohci_pdriver.h>
26 +#include <linux/usb/otg.h>
27 +#include <linux/usb/chipidea.h>
28 +#include <linux/usb/usb_phy_generic.h>
29
30 #include <asm/mach-ath79/ath79.h>
31 #include <asm/mach-ath79/ar71xx_regs.h>
32 @@ -170,6 +173,67 @@ static void __init ar913x_usb_setup(void
33 &ath79_ehci_pdata_v2, sizeof(ath79_ehci_pdata_v2));
34 }
35
36 +static void __init ar933x_usb_setup_ctrl_config(void)
37 +{
38 + void __iomem *usb_ctrl_base, *usb_config_reg;
39 + u32 usb_config;
40 +
41 + usb_ctrl_base = ioremap(AR71XX_USB_CTRL_BASE, AR71XX_USB_CTRL_SIZE);
42 + usb_config_reg = usb_ctrl_base + AR71XX_USB_CTRL_REG_CONFIG;
43 + usb_config = __raw_readl(usb_config_reg);
44 + usb_config &= ~AR933X_USB_CONFIG_HOST_ONLY;
45 + __raw_writel(usb_config, usb_config_reg);
46 + iounmap(usb_ctrl_base);
47 +}
48 +
49 +static void __init ar9xxx_ci_usb_setup(void)
50 +{
51 + struct ci_hdrc_platform_data ci_pdata;
52 + enum usb_dr_mode dr_mode;
53 + bool host_mode = true;
54 +
55 + if (soc_is_ar933x())
56 + host_mode = ath79_reset_rr(AR933X_RESET_REG_BOOTSTRAP) &
57 + AR933X_BOOTSTRAP_USB_MODE_HOST;
58 + else if (soc_is_ar934x() || soc_is_qca955x())
59 + host_mode = !(ath79_reset_rr(AR934X_RESET_REG_BOOTSTRAP) &
60 + AR934X_BOOTSTRAP_USB_MODE_DEVICE);
61 +
62 + if (host_mode) {
63 + dr_mode = USB_DR_MODE_HOST;
64 + } else {
65 + dr_mode = USB_DR_MODE_PERIPHERAL;
66 + if (soc_is_ar933x())
67 + ar933x_usb_setup_ctrl_config();
68 + }
69 +
70 + memset(&ci_pdata, 0, sizeof(ci_pdata));
71 + ci_pdata.name = "ci_hdrc_ar9xxx";
72 + ci_pdata.capoffset = DEF_CAPOFFSET;
73 + ci_pdata.dr_mode = dr_mode;
74 + ci_pdata.flags = CI_HDRC_DUAL_ROLE_NOT_OTG | CI_HDRC_DP_ALWAYS_PULLUP;
75 + ci_pdata.vbus_extcon.edev = ERR_PTR(-ENODEV);
76 + ci_pdata.id_extcon.edev = ERR_PTR(-ENODEV);
77 + ci_pdata.itc_setting = 1;
78 +
79 + platform_device_register_simple("usb_phy_generic",
80 + PLATFORM_DEVID_AUTO, NULL, 0);
81 +
82 + ath79_usb_register("ci_hdrc", -1,
83 + AR933X_EHCI_BASE, AR933X_EHCI_SIZE,
84 + ATH79_CPU_IRQ(3),
85 + &ci_pdata, sizeof(ci_pdata));
86 +
87 + if (!host_mode)
88 + return;
89 +
90 + ath79_usb_register("ehci-platform", -1,
91 + AR934X_EHCI_BASE, AR934X_EHCI_SIZE,
92 + ATH79_CPU_IRQ(3),
93 + &ath79_ehci_pdata_v2, sizeof(ath79_ehci_pdata_v2));
94 +
95 +}
96 +
97 static void __init ar933x_usb_setup(void)
98 {
99 ath79_device_reset_set(AR933X_RESET_USBSUS_OVERRIDE);
100 @@ -181,10 +245,7 @@ static void __init ar933x_usb_setup(void
101 ath79_device_reset_clear(AR933X_RESET_USB_PHY);
102 mdelay(10);
103
104 - ath79_usb_register("ehci-platform", -1,
105 - AR933X_EHCI_BASE, AR933X_EHCI_SIZE,
106 - ATH79_CPU_IRQ(3),
107 - &ath79_ehci_pdata_v2, sizeof(ath79_ehci_pdata_v2));
108 + ar9xxx_ci_usb_setup();
109 }
110
111 static void enable_tx_tx_idp_violation_fix(unsigned base)
112 @@ -230,10 +291,7 @@ static void __init ar934x_usb_setup(void
113 if (ath79_soc_rev >= 3)
114 ath79_ehci_pdata_v2.reset_notifier = ar934x_usb_reset_notifier;
115
116 - ath79_usb_register("ehci-platform", -1,
117 - AR934X_EHCI_BASE, AR934X_EHCI_SIZE,
118 - ATH79_CPU_IRQ(3),
119 - &ath79_ehci_pdata_v2, sizeof(ath79_ehci_pdata_v2));
120 + ar9xxx_ci_usb_setup();
121 }
122
123 static void __init qca953x_usb_setup(void)