ar71xx: fold 641-MIPS-ath79-fix-AR934x-OTP-offsets.patch into the patch that it fixes
[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 @@ -656,6 +656,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 @@ -685,6 +686,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,51 @@ 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 ar933x_ci_usb_setup(void)
50 +{
51 + struct ci_hdrc_platform_data ci_pdata;
52 + enum usb_dr_mode dr_mode;
53 + u32 bootstrap;
54 +
55 + bootstrap = ath79_reset_rr(AR933X_RESET_REG_BOOTSTRAP);
56 + if (bootstrap & AR933X_BOOTSTRAP_USB_MODE_HOST) {
57 + dr_mode = USB_DR_MODE_HOST;
58 + } else {
59 + dr_mode = USB_DR_MODE_PERIPHERAL;
60 + ar933x_usb_setup_ctrl_config();
61 + }
62 +
63 + memset(&ci_pdata, 0, sizeof(ci_pdata));
64 + ci_pdata.name = "ci_hdrc_ar933x";
65 + ci_pdata.capoffset = DEF_CAPOFFSET;
66 + ci_pdata.dr_mode = dr_mode;
67 + ci_pdata.flags = CI_HDRC_DUAL_ROLE_NOT_OTG | CI_HDRC_DP_ALWAYS_PULLUP;
68 + ci_pdata.vbus_extcon.edev = ERR_PTR(-ENODEV);
69 + ci_pdata.id_extcon.edev = ERR_PTR(-ENODEV);
70 + ci_pdata.itc_setting = 1;
71 +
72 + platform_device_register_simple("usb_phy_generic",
73 + PLATFORM_DEVID_AUTO, NULL, 0);
74 +
75 + ath79_usb_register("ci_hdrc", -1,
76 + AR933X_EHCI_BASE, AR933X_EHCI_SIZE,
77 + ATH79_CPU_IRQ(3),
78 + &ci_pdata, sizeof(ci_pdata));
79 +}
80 +
81 static void __init ar933x_usb_setup(void)
82 {
83 ath79_device_reset_set(AR933X_RESET_USBSUS_OVERRIDE);
84 @@ -185,6 +233,8 @@ static void __init ar933x_usb_setup(void
85 AR933X_EHCI_BASE, AR933X_EHCI_SIZE,
86 ATH79_CPU_IRQ(3),
87 &ath79_ehci_pdata_v2, sizeof(ath79_ehci_pdata_v2));
88 +
89 + ar933x_ci_usb_setup();
90 }
91
92 static void enable_tx_tx_idp_violation_fix(unsigned base)