diff options
author | Tim Bird <tbird20d@gmail.com> | 2014-04-28 16:34:20 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-04-30 11:29:51 -0500 |
commit | 30bf8667cef5655ddfaedf043f13d03606844213 (patch) | |
tree | 6a1a3b176f6d2078d04b838830fd5b56a2384de0 /include/linux/usb | |
parent | 9f27984b9e098ce0a35b210ec0315c76108494e4 (diff) | |
download | linux-stable-30bf8667cef5655ddfaedf043f13d03606844213.tar.gz linux-stable-30bf8667cef5655ddfaedf043f13d03606844213.tar.bz2 linux-stable-30bf8667cef5655ddfaedf043f13d03606844213.zip |
usb: phy: msm: Select secondary PHY via TCSR
Select the secondary PHY using the TCSR register, if phy-num=1
in the DTS (or phy_number is set in the platform data). The
SOC has 2 PHYs which can be used with the OTG port, and this
code allows configuring the correct one.
Note: This resolves the problem I was seeing where I couldn't
get the USB driver working at all on a dragonboard, from cold
boot. This patch depends on patch 5/14 from Ivan's msm USB
patch set. It does not use DT for the register address, as
there's no evidence that this address changes between SoC
versions.
Signed-off-by: Tim Bird <tim.bird@sonymobile.com>
Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/msm_hsusb_hw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/usb/msm_hsusb_hw.h b/include/linux/usb/msm_hsusb_hw.h index 98d3dd8976e5..a29f6030afb1 100644 --- a/include/linux/usb/msm_hsusb_hw.h +++ b/include/linux/usb/msm_hsusb_hw.h @@ -16,6 +16,9 @@ #ifndef __LINUX_USB_GADGET_MSM72K_UDC_H__ #define __LINUX_USB_GADGET_MSM72K_UDC_H__ +/* USB phy selector - in TCSR address range */ +#define USB2_PHY_SEL 0xfd4ab000 + #define USB_AHBBURST (MSM_USB_BASE + 0x0090) #define USB_AHBMODE (MSM_USB_BASE + 0x0098) #define USB_CAPLENGTH (MSM_USB_BASE + 0x0100) /* 8 bit */ |