summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mxs/usb-imx28.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-05-23 13:12:42 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-06-30 12:47:15 +0200
commite0ef3e6c7fda75ba8701de0ac37f3b1d5af56b5c (patch)
treecaf026e776db2accde83fcf20cedb7edf3ab8907 /arch/arm/mach-mxs/usb-imx28.c
parent1e8c05e402db8de75e3169e53bb9747df7dffa61 (diff)
downloadbarebox-e0ef3e6c7fda75ba8701de0ac37f3b1d5af56b5c.tar.gz
barebox-e0ef3e6c7fda75ba8701de0ac37f3b1d5af56b5c.tar.xz
ARM i.MX28 usb: Add USBPHY support
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mxs/usb-imx28.c')
-rw-r--r--arch/arm/mach-mxs/usb-imx28.c101
1 files changed, 101 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/usb-imx28.c b/arch/arm/mach-mxs/usb-imx28.c
new file mode 100644
index 0000000000..61d59c3616
--- /dev/null
+++ b/arch/arm/mach-mxs/usb-imx28.c
@@ -0,0 +1,101 @@
+/*
+ * i.MX28 USBPHY setup
+ *
+ * Copyright 2011 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+#include <common.h>
+#include <io.h>
+#include <errno.h>
+#include <mach/imx-regs.h>
+
+#define POWER_CTRL (IMX_POWER_BASE + 0x0)
+#define POWER_CTRL_CLKGATE 0x40000000
+
+#define POWER_STS (IMX_POWER_BASE + 0xc0)
+#define POWER_STS_VBUSVALID 0x00000002
+#define POWER_STS_BVALID 0x00000004
+#define POWER_STS_AVALID 0x00000008
+
+#define POWER_DEBUG (IMX_POWER_BASE + 0x110)
+#define POWER_DEBUG_BVALIDPIOLOCK 0x00000002
+#define POWER_DEBUG_AVALIDPIOLOCK 0x00000004
+#define POWER_DEBUG_VBUSVALIDPIOLOCK 0x00000008
+
+#define USBPHY_PWD 0x0
+
+#define USBPHY_CTRL 0x30
+#define USBPHY_CTRL_SFTRST (1 << 31)
+#define USBPHY_CTRL_CLKGATE (1 << 30)
+#define USBPHY_CTRL_ENUTMILEVEL3 (1 << 15)
+#define USBPHY_CTRL_ENUTMILEVEL2 (1 << 14)
+
+#define CLK_PLL0CTRL0 (IMX_CCM_BASE + 0x0)
+#define CLK_PLL1CTRL0 (IMX_CCM_BASE + 0x20)
+#define PLLCTRL0_EN_USB_CLKS (1 << 18)
+
+#define DIGCTRL_CTRL (IMX_DIGCTL_BASE + 0x0)
+#define DIGCTL_CTRL_USB0_CLKGATE (1 << 2)
+#define DIGCTL_CTRL_USB1_CLKGATE (1 << 16)
+
+#define SET 0x4
+#define CLR 0x8
+
+static void imx28_usb_phy_reset(void __iomem *phybase)
+{
+ /* Reset USBPHY module */
+ writel(USBPHY_CTRL_SFTRST, phybase + USBPHY_CTRL + SET);
+ udelay(10);
+ writel(USBPHY_CTRL_CLKGATE | USBPHY_CTRL_SFTRST,
+ phybase + USBPHY_CTRL + CLR);
+}
+
+static void imx28_usb_phy_enable(void __iomem *phybase)
+{
+ /* Power up the PHY */
+ writel(0, phybase + USBPHY_PWD);
+
+ writel(USBPHY_CTRL_ENUTMILEVEL3 | USBPHY_CTRL_ENUTMILEVEL2 | 1,
+ phybase + USBPHY_CTRL + SET);
+}
+
+int imx28_usb_phy0_enable(void)
+{
+ imx28_usb_phy_reset((void *)IMX_USBPHY0_BASE);
+
+ /* Turn on the USB clocks */
+ writel(PLLCTRL0_EN_USB_CLKS, CLK_PLL0CTRL0 + SET);
+
+ writel(DIGCTL_CTRL_USB0_CLKGATE, DIGCTRL_CTRL + CLR);
+
+ imx28_usb_phy_enable((void *)IMX_USBPHY0_BASE);
+
+ return 0;
+}
+
+int imx28_usb_phy1_enable(void)
+{
+ imx28_usb_phy_reset((void *)IMX_USBPHY1_BASE);
+
+ /* Turn on the USB clocks */
+ writel(PLLCTRL0_EN_USB_CLKS, CLK_PLL1CTRL0 + SET);
+
+ writel(DIGCTL_CTRL_USB1_CLKGATE, DIGCTRL_CTRL + CLR);
+
+ imx28_usb_phy_enable((void *)IMX_USBPHY1_BASE);
+
+ return 0;
+}