blob: 716aa8be1d6f6aa1ebab3be946cd1c55f2f4e944 [file] [log] [blame]
Randy Vinson80cb9ae2006-01-20 13:53:38 -08001/*
Anton Vorontsov1af10772009-12-14 18:41:12 +03002 * Copyright 2005-2009 MontaVista Software, Inc.
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +05303 * Copyright 2008,2012,2015 Freescale Semiconductor, Inc.
Randy Vinson80cb9ae2006-01-20 13:53:38 -08004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * Ported to 834x by Randy Vinson <rvinson@mvista.com> using code provided
20 * by Hunter Wu.
Anton Vorontsov1af10772009-12-14 18:41:12 +030021 * Power Management support by Dave Liu <daveliu@freescale.com>,
22 * Jerry Huang <Chang-Ming.Huang@freescale.com> and
23 * Anton Vorontsov <avorontsov@ru.mvista.com>.
Randy Vinson80cb9ae2006-01-20 13:53:38 -080024 */
25
Anton Vorontsov1af10772009-12-14 18:41:12 +030026#include <linux/kernel.h>
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +053027#include <linux/module.h>
Anton Vorontsov1af10772009-12-14 18:41:12 +030028#include <linux/types.h>
29#include <linux/delay.h>
30#include <linux/pm.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053031#include <linux/err.h>
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +053032#include <linux/usb.h>
33#include <linux/usb/ehci_def.h>
34#include <linux/usb/hcd.h>
35#include <linux/usb/otg.h>
Randy Vinson80cb9ae2006-01-20 13:53:38 -080036#include <linux/platform_device.h>
37#include <linux/fsl_devices.h>
38
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +053039#include "ehci.h"
Randy Vinson80cb9ae2006-01-20 13:53:38 -080040#include "ehci-fsl.h"
41
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +053042#define DRIVER_DESC "Freescale EHCI Host controller driver"
43#define DRV_NAME "ehci-fsl"
44
45static struct hc_driver __read_mostly fsl_ehci_hc_driver;
46
Randy Vinson80cb9ae2006-01-20 13:53:38 -080047/* configure so an HC device and id are always provided */
48/* always called with process context; sleeping is OK */
49
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +053050/*
51 * fsl_ehci_drv_probe - initialize FSL-based HCDs
Randy Vinson80cb9ae2006-01-20 13:53:38 -080052 * @pdev: USB Host Controller being probed
53 * Context: !in_interrupt()
54 *
55 * Allocates basic resources for this USB host controller.
56 *
57 */
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +053058static int fsl_ehci_drv_probe(struct platform_device *pdev)
Randy Vinson80cb9ae2006-01-20 13:53:38 -080059{
60 struct fsl_usb2_platform_data *pdata;
61 struct usb_hcd *hcd;
62 struct resource *res;
63 int irq;
64 int retval;
Randy Vinson80cb9ae2006-01-20 13:53:38 -080065
66 pr_debug("initializing FSL-SOC USB Controller\n");
67
68 /* Need platform data for setup */
Jingoo Han37c3a3c2013-09-09 14:04:44 +090069 pdata = dev_get_platdata(&pdev->dev);
Randy Vinson80cb9ae2006-01-20 13:53:38 -080070 if (!pdata) {
71 dev_err(&pdev->dev,
Kay Sievers7071a3c2008-05-02 06:02:41 +020072 "No platform data for %s.\n", dev_name(&pdev->dev));
Randy Vinson80cb9ae2006-01-20 13:53:38 -080073 return -ENODEV;
74 }
75
76 /*
77 * This is a host mode driver, verify that we're supposed to be
78 * in host mode.
79 */
80 if (!((pdata->operating_mode == FSL_USB2_DR_HOST) ||
Li Yangba029782007-05-11 17:09:55 +080081 (pdata->operating_mode == FSL_USB2_MPH_HOST) ||
82 (pdata->operating_mode == FSL_USB2_DR_OTG))) {
Randy Vinson80cb9ae2006-01-20 13:53:38 -080083 dev_err(&pdev->dev,
84 "Non Host Mode configured for %s. Wrong driver linked.\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +020085 dev_name(&pdev->dev));
Randy Vinson80cb9ae2006-01-20 13:53:38 -080086 return -ENODEV;
87 }
88
89 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
90 if (!res) {
91 dev_err(&pdev->dev,
92 "Found HC with no IRQ. Check %s setup!\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +020093 dev_name(&pdev->dev));
Randy Vinson80cb9ae2006-01-20 13:53:38 -080094 return -ENODEV;
95 }
96 irq = res->start;
97
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +053098 hcd = usb_create_hcd(&fsl_ehci_hc_driver, &pdev->dev,
99 dev_name(&pdev->dev));
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800100 if (!hcd) {
101 retval = -ENOMEM;
102 goto err1;
103 }
104
105 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jingoo Han7667fe62013-12-11 16:18:53 +0900106 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
107 if (IS_ERR(hcd->regs)) {
108 retval = PTR_ERR(hcd->regs);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800109 goto err2;
110 }
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800111
Varka Bhadramce98f542014-11-04 07:51:32 +0530112 hcd->rsrc_start = res->start;
113 hcd->rsrc_len = resource_size(res);
114
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200115 pdata->regs = hcd->regs;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800116
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200117 if (pdata->power_budget)
118 hcd->power_budget = pdata->power_budget;
119
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200120 /*
121 * do platform specific init: check the clock, grab/config pins, etc.
122 */
123 if (pdata->init && pdata->init(pdev)) {
124 retval = -ENODEV;
Jingoo Han7667fe62013-12-11 16:18:53 +0900125 goto err2;
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200126 }
127
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200128 /* Enable USB controller, 83xx or 8536 */
Ramneek Mehreshad1260e2013-09-16 15:11:33 +0530129 if (pdata->have_sysif_regs && pdata->controller_ver < FSL_USB_VER_1_6)
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200130 setbits32(hcd->regs + FSL_SOC_USB_CTRL, 0x4);
131
Nikhil Badola523f1de2015-06-15 15:47:29 +0530132 /*
133 * Enable UTMI phy and program PTS field in UTMI mode before asserting
134 * controller reset for USB Controller version 2.5
135 */
136 if (pdata->has_fsl_erratum_a007792) {
137 writel_be(CTRL_UTMI_PHY_EN, hcd->regs + FSL_SOC_USB_CTRL);
138 writel(PORT_PTS_UTMI, hcd->regs + FSL_SOC_USB_PORTSC1);
139 }
140
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200141 /* Don't need to set host mode here. It will be done by tdi_reset() */
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800142
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800143 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800144 if (retval != 0)
Jingoo Han7667fe62013-12-11 16:18:53 +0900145 goto err2;
Peter Chen3c9740a2013-11-05 10:46:02 +0800146 device_wakeup_enable(hcd->self.controller);
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200147
148#ifdef CONFIG_USB_OTG
149 if (pdata->operating_mode == FSL_USB2_DR_OTG) {
150 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
151
Antoine Tenart3d46e732014-09-24 23:05:50 +0400152 hcd->usb_phy = usb_get_phy(USB_PHY_TYPE_USB2);
Richard Zhaoc2e935a2012-06-13 20:34:12 +0800153 dev_dbg(&pdev->dev, "hcd=0x%p ehci=0x%p, phy=0x%p\n",
Antoine Tenart3d46e732014-09-24 23:05:50 +0400154 hcd, ehci, hcd->usb_phy);
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200155
Antoine Tenart3d46e732014-09-24 23:05:50 +0400156 if (!IS_ERR_OR_NULL(hcd->usb_phy)) {
157 retval = otg_set_host(hcd->usb_phy->otg,
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200158 &ehci_to_hcd(ehci)->self);
159 if (retval) {
Antoine Tenart3d46e732014-09-24 23:05:50 +0400160 usb_put_phy(hcd->usb_phy);
Jingoo Han7667fe62013-12-11 16:18:53 +0900161 goto err2;
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200162 }
163 } else {
Richard Zhaoc2e935a2012-06-13 20:34:12 +0800164 dev_err(&pdev->dev, "can't find phy\n");
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200165 retval = -ENODEV;
Jingoo Han7667fe62013-12-11 16:18:53 +0900166 goto err2;
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200167 }
168 }
169#endif
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800170 return retval;
171
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800172 err2:
173 usb_put_hcd(hcd);
174 err1:
Kay Sievers7071a3c2008-05-02 06:02:41 +0200175 dev_err(&pdev->dev, "init %s fail, %d\n", dev_name(&pdev->dev), retval);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200176 if (pdata->exit)
177 pdata->exit(pdev);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800178 return retval;
179}
180
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800181static int ehci_fsl_setup_phy(struct usb_hcd *hcd,
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200182 enum fsl_usb2_phy_modes phy_mode,
183 unsigned int port_offset)
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800184{
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800185 u32 portsc;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530186 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Shengzhou Liu28c56ea2012-02-16 18:02:20 +0800187 void __iomem *non_ehci = hcd->regs;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530188 struct device *dev = hcd->self.controller;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900189 struct fsl_usb2_platform_data *pdata = dev_get_platdata(dev);
Anatolij Gustschinf941f692012-04-10 10:48:11 +0200190
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530191 if (pdata->controller_ver < 0) {
192 dev_warn(hcd->self.controller, "Could not get controller version\n");
Ben Collinsd479c912012-10-19 10:24:12 -0400193 return -ENODEV;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530194 }
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200195
196 portsc = ehci_readl(ehci, &ehci->regs->port_status[port_offset]);
197 portsc &= ~(PORT_PTS_MSK | PORT_PTS_PTW);
198
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800199 switch (phy_mode) {
200 case FSL_USB2_PHY_ULPI:
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100201 if (pdata->have_sysif_regs && pdata->controller_ver) {
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530202 /* controller version 1.6 or above */
Ramneek Mehreshad1260e2013-09-16 15:11:33 +0530203 clrbits32(non_ehci + FSL_SOC_USB_CTRL, UTMI_PHY_EN);
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800204 setbits32(non_ehci + FSL_SOC_USB_CTRL,
Ramneek Mehreshad1260e2013-09-16 15:11:33 +0530205 ULPI_PHY_CLK_SEL | USB_CTRL_USB_EN);
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530206 }
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800207 portsc |= PORT_PTS_ULPI;
208 break;
209 case FSL_USB2_PHY_SERIAL:
210 portsc |= PORT_PTS_SERIAL;
211 break;
212 case FSL_USB2_PHY_UTMI_WIDE:
213 portsc |= PORT_PTS_PTW;
214 /* fall through */
215 case FSL_USB2_PHY_UTMI:
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100216 if (pdata->have_sysif_regs && pdata->controller_ver) {
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530217 /* controller version 1.6 or above */
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800218 setbits32(non_ehci + FSL_SOC_USB_CTRL, UTMI_PHY_EN);
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530219 mdelay(FSL_UTMI_PHY_DLY); /* Delay for UTMI PHY CLK to
220 become stable - 10ms*/
221 }
Shengzhou Liu28c56ea2012-02-16 18:02:20 +0800222 /* enable UTMI PHY */
Anatolij Gustschinf941f692012-04-10 10:48:11 +0200223 if (pdata->have_sysif_regs)
224 setbits32(non_ehci + FSL_SOC_USB_CTRL,
225 CTRL_UTMI_PHY_EN);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800226 portsc |= PORT_PTS_UTMI;
227 break;
228 case FSL_USB2_PHY_NONE:
229 break;
230 }
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800231
Nikita Yushchenkod183c812014-04-28 19:23:44 +0400232 if (pdata->have_sysif_regs &&
233 pdata->controller_ver > FSL_USB_VER_1_6 &&
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100234 (phy_mode == FSL_USB2_PHY_ULPI)) {
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800235 /* check PHY_CLK_VALID to get phy clk valid */
Shengzhou Liueee41b42013-09-02 13:25:52 +0800236 if (!(spin_event_timeout(in_be32(non_ehci + FSL_SOC_USB_CTRL) &
237 PHY_CLK_VALID, FSL_USB_PHY_CLK_TIMEOUT, 0) ||
238 in_be32(non_ehci + FSL_SOC_USB_PRICTRL))) {
Jingoo Hanf4fbb6d2013-12-10 21:17:54 +0900239 dev_warn(hcd->self.controller, "USB PHY clock invalid\n");
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800240 return -EINVAL;
241 }
242 }
243
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100244 ehci_writel(ehci, portsc, &ehci->regs->port_status[port_offset]);
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800245
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100246 if (phy_mode != FSL_USB2_PHY_ULPI && pdata->have_sysif_regs)
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800247 setbits32(non_ehci + FSL_SOC_USB_CTRL, USB_CTRL_USB_EN);
248
249 return 0;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800250}
251
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800252static int ehci_fsl_usb_setup(struct ehci_hcd *ehci)
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800253{
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200254 struct usb_hcd *hcd = ehci_to_hcd(ehci);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800255 struct fsl_usb2_platform_data *pdata;
256 void __iomem *non_ehci = hcd->regs;
257
Jingoo Hand4f09e22013-07-30 19:59:40 +0900258 pdata = dev_get_platdata(hcd->self.controller);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200259
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200260 if (pdata->have_sysif_regs) {
Pan Jiafei4c954322012-02-17 13:57:16 +0800261 /*
262 * Turn on cache snooping hardware, since some PowerPC platforms
263 * wholly rely on hardware to deal with cache coherent
264 */
265
266 /* Setup Snooping for all the 4GB space */
267 /* SNOOP1 starts from 0x0, size 2G */
268 out_be32(non_ehci + FSL_SOC_USB_SNOOP1, 0x0 | SNOOP_SIZE_2GB);
269 /* SNOOP2 starts from 0x80000000, size 2G */
270 out_be32(non_ehci + FSL_SOC_USB_SNOOP2, 0x80000000 | SNOOP_SIZE_2GB);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200271 }
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800272
Li Yangba029782007-05-11 17:09:55 +0800273 if ((pdata->operating_mode == FSL_USB2_DR_HOST) ||
274 (pdata->operating_mode == FSL_USB2_DR_OTG))
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800275 if (ehci_fsl_setup_phy(hcd, pdata->phy_mode, 0))
276 return -EINVAL;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800277
278 if (pdata->operating_mode == FSL_USB2_MPH_HOST) {
Kumar Gala8cd42e92006-01-20 13:57:52 -0800279 unsigned int chip, rev, svr;
280
281 svr = mfspr(SPRN_SVR);
282 chip = svr >> 16;
283 rev = (svr >> 4) & 0xf;
284
285 /* Deal with USB Erratum #14 on MPC834x Rev 1.0 & 1.1 chips */
286 if ((rev == 1) && (chip >= 0x8050) && (chip <= 0x8055))
287 ehci->has_fsl_port_bug = 1;
288
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800289 if (pdata->port_enables & FSL_USB2_PORT0_ENABLED)
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800290 if (ehci_fsl_setup_phy(hcd, pdata->phy_mode, 0))
291 return -EINVAL;
292
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800293 if (pdata->port_enables & FSL_USB2_PORT1_ENABLED)
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800294 if (ehci_fsl_setup_phy(hcd, pdata->phy_mode, 1))
295 return -EINVAL;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800296 }
297
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200298 if (pdata->have_sysif_regs) {
Kumar Gala08d76602012-07-10 06:58:48 -0500299#ifdef CONFIG_FSL_SOC_BOOKE
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200300 out_be32(non_ehci + FSL_SOC_USB_PRICTRL, 0x00000008);
301 out_be32(non_ehci + FSL_SOC_USB_AGECNTTHRSH, 0x00000080);
Srikanth Srinivasan4f534252008-07-02 02:14:33 -0500302#else
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200303 out_be32(non_ehci + FSL_SOC_USB_PRICTRL, 0x0000000c);
304 out_be32(non_ehci + FSL_SOC_USB_AGECNTTHRSH, 0x00000040);
Srikanth Srinivasan4f534252008-07-02 02:14:33 -0500305#endif
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200306 out_be32(non_ehci + FSL_SOC_USB_SICTRL, 0x00000001);
307 }
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800308
309 return 0;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800310}
311
312/* called after powerup, by probe or system-pm "wakeup" */
313static int ehci_fsl_reinit(struct ehci_hcd *ehci)
314{
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800315 if (ehci_fsl_usb_setup(ehci))
316 return -EINVAL;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800317
318 return 0;
319}
320
321/* called during probe() after chip reset completes */
322static int ehci_fsl_setup(struct usb_hcd *hcd)
323{
324 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
325 int retval;
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200326 struct fsl_usb2_platform_data *pdata;
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100327 struct device *dev;
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200328
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100329 dev = hcd->self.controller;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900330 pdata = dev_get_platdata(hcd->self.controller);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200331 ehci->big_endian_desc = pdata->big_endian_desc;
332 ehci->big_endian_mmio = pdata->big_endian_mmio;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800333
334 /* EHCI registers start at offset 0x100 */
335 ehci->caps = hcd->regs + 0x100;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800336
Christian Engelmayere6604a72013-04-03 12:18:51 +0200337#ifdef CONFIG_PPC_83xx
338 /*
339 * Deal with MPC834X that need port power to be cycled after the power
340 * fault condition is removed. Otherwise the state machine does not
341 * reflect PORTSC[CSC] correctly.
342 */
343 ehci->need_oc_pp_cycle = 1;
344#endif
345
Matthieu CASTET65fd4272010-09-06 18:26:56 +0200346 hcd->has_tt = 1;
347
Alan Stern1a49e2a2012-07-09 15:55:14 -0400348 retval = ehci_setup(hcd);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800349 if (retval)
350 return retval;
351
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100352 if (of_device_is_compatible(dev->parent->of_node,
353 "fsl,mpc5121-usb2-dr")) {
354 /*
355 * set SBUSCFG:AHBBRST so that control msgs don't
356 * fail when doing heavy PATA writes.
357 */
358 ehci_writel(ehci, SBUSCFG_INCR8,
359 hcd->regs + FSL_SOC_USB_SBUSCFG);
360 }
361
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800362 retval = ehci_fsl_reinit(ehci);
363 return retval;
364}
365
Anton Vorontsov1af10772009-12-14 18:41:12 +0300366struct ehci_fsl {
367 struct ehci_hcd ehci;
368
369#ifdef CONFIG_PM
370 /* Saved USB PHY settings, need to restore after deep sleep. */
371 u32 usb_ctrl;
372#endif
373};
374
375#ifdef CONFIG_PM
376
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200377#ifdef CONFIG_PPC_MPC512x
378static int ehci_fsl_mpc512x_drv_suspend(struct device *dev)
379{
380 struct usb_hcd *hcd = dev_get_drvdata(dev);
381 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900382 struct fsl_usb2_platform_data *pdata = dev_get_platdata(dev);
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200383 u32 tmp;
384
Oliver Neukum1c201632013-11-18 13:23:16 +0100385#ifdef CONFIG_DYNAMIC_DEBUG
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200386 u32 mode = ehci_readl(ehci, hcd->regs + FSL_SOC_USB_USBMODE);
387 mode &= USBMODE_CM_MASK;
388 tmp = ehci_readl(ehci, hcd->regs + 0x140); /* usbcmd */
389
390 dev_dbg(dev, "suspend=%d already_suspended=%d "
391 "mode=%d usbcmd %08x\n", pdata->suspended,
392 pdata->already_suspended, mode, tmp);
393#endif
394
395 /*
396 * If the controller is already suspended, then this must be a
397 * PM suspend. Remember this fact, so that we will leave the
398 * controller suspended at PM resume time.
399 */
400 if (pdata->suspended) {
401 dev_dbg(dev, "already suspended, leaving early\n");
402 pdata->already_suspended = 1;
403 return 0;
404 }
405
406 dev_dbg(dev, "suspending...\n");
407
Alan Sterne8799902011-08-18 16:31:30 -0400408 ehci->rh_state = EHCI_RH_SUSPENDED;
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200409 dev->power.power_state = PMSG_SUSPEND;
410
411 /* ignore non-host interrupts */
412 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
413
414 /* stop the controller */
415 tmp = ehci_readl(ehci, &ehci->regs->command);
416 tmp &= ~CMD_RUN;
417 ehci_writel(ehci, tmp, &ehci->regs->command);
418
419 /* save EHCI registers */
420 pdata->pm_command = ehci_readl(ehci, &ehci->regs->command);
421 pdata->pm_command &= ~CMD_RUN;
422 pdata->pm_status = ehci_readl(ehci, &ehci->regs->status);
423 pdata->pm_intr_enable = ehci_readl(ehci, &ehci->regs->intr_enable);
424 pdata->pm_frame_index = ehci_readl(ehci, &ehci->regs->frame_index);
425 pdata->pm_segment = ehci_readl(ehci, &ehci->regs->segment);
426 pdata->pm_frame_list = ehci_readl(ehci, &ehci->regs->frame_list);
427 pdata->pm_async_next = ehci_readl(ehci, &ehci->regs->async_next);
428 pdata->pm_configured_flag =
429 ehci_readl(ehci, &ehci->regs->configured_flag);
430 pdata->pm_portsc = ehci_readl(ehci, &ehci->regs->port_status[0]);
431 pdata->pm_usbgenctrl = ehci_readl(ehci,
432 hcd->regs + FSL_SOC_USB_USBGENCTRL);
433
434 /* clear the W1C bits */
435 pdata->pm_portsc &= cpu_to_hc32(ehci, ~PORT_RWC_BITS);
436
437 pdata->suspended = 1;
438
439 /* clear PP to cut power to the port */
440 tmp = ehci_readl(ehci, &ehci->regs->port_status[0]);
441 tmp &= ~PORT_POWER;
442 ehci_writel(ehci, tmp, &ehci->regs->port_status[0]);
443
444 return 0;
445}
446
447static int ehci_fsl_mpc512x_drv_resume(struct device *dev)
448{
449 struct usb_hcd *hcd = dev_get_drvdata(dev);
450 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900451 struct fsl_usb2_platform_data *pdata = dev_get_platdata(dev);
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200452 u32 tmp;
453
454 dev_dbg(dev, "suspend=%d already_suspended=%d\n",
455 pdata->suspended, pdata->already_suspended);
456
457 /*
458 * If the controller was already suspended at suspend time,
459 * then don't resume it now.
460 */
461 if (pdata->already_suspended) {
462 dev_dbg(dev, "already suspended, leaving early\n");
463 pdata->already_suspended = 0;
464 return 0;
465 }
466
467 if (!pdata->suspended) {
468 dev_dbg(dev, "not suspended, leaving early\n");
469 return 0;
470 }
471
472 pdata->suspended = 0;
473
474 dev_dbg(dev, "resuming...\n");
475
476 /* set host mode */
477 tmp = USBMODE_CM_HOST | (pdata->es ? USBMODE_ES : 0);
478 ehci_writel(ehci, tmp, hcd->regs + FSL_SOC_USB_USBMODE);
479
480 ehci_writel(ehci, pdata->pm_usbgenctrl,
481 hcd->regs + FSL_SOC_USB_USBGENCTRL);
482 ehci_writel(ehci, ISIPHYCTRL_PXE | ISIPHYCTRL_PHYE,
483 hcd->regs + FSL_SOC_USB_ISIPHYCTRL);
484
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100485 ehci_writel(ehci, SBUSCFG_INCR8, hcd->regs + FSL_SOC_USB_SBUSCFG);
486
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200487 /* restore EHCI registers */
488 ehci_writel(ehci, pdata->pm_command, &ehci->regs->command);
489 ehci_writel(ehci, pdata->pm_intr_enable, &ehci->regs->intr_enable);
490 ehci_writel(ehci, pdata->pm_frame_index, &ehci->regs->frame_index);
491 ehci_writel(ehci, pdata->pm_segment, &ehci->regs->segment);
492 ehci_writel(ehci, pdata->pm_frame_list, &ehci->regs->frame_list);
493 ehci_writel(ehci, pdata->pm_async_next, &ehci->regs->async_next);
494 ehci_writel(ehci, pdata->pm_configured_flag,
495 &ehci->regs->configured_flag);
496 ehci_writel(ehci, pdata->pm_portsc, &ehci->regs->port_status[0]);
497
498 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Sterne8799902011-08-18 16:31:30 -0400499 ehci->rh_state = EHCI_RH_RUNNING;
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200500 dev->power.power_state = PMSG_ON;
501
502 tmp = ehci_readl(ehci, &ehci->regs->command);
503 tmp |= CMD_RUN;
504 ehci_writel(ehci, tmp, &ehci->regs->command);
505
506 usb_hcd_resume_root_hub(hcd);
507
508 return 0;
509}
510#else
511static inline int ehci_fsl_mpc512x_drv_suspend(struct device *dev)
512{
513 return 0;
514}
515
516static inline int ehci_fsl_mpc512x_drv_resume(struct device *dev)
517{
518 return 0;
519}
520#endif /* CONFIG_PPC_MPC512x */
521
Anton Vorontsov1af10772009-12-14 18:41:12 +0300522static struct ehci_fsl *hcd_to_ehci_fsl(struct usb_hcd *hcd)
523{
524 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
525
526 return container_of(ehci, struct ehci_fsl, ehci);
527}
528
529static int ehci_fsl_drv_suspend(struct device *dev)
530{
531 struct usb_hcd *hcd = dev_get_drvdata(dev);
532 struct ehci_fsl *ehci_fsl = hcd_to_ehci_fsl(hcd);
533 void __iomem *non_ehci = hcd->regs;
534
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200535 if (of_device_is_compatible(dev->parent->of_node,
536 "fsl,mpc5121-usb2-dr")) {
537 return ehci_fsl_mpc512x_drv_suspend(dev);
538 }
539
Alan Stern41472002010-06-25 14:02:14 -0400540 ehci_prepare_ports_for_controller_suspend(hcd_to_ehci(hcd),
541 device_may_wakeup(dev));
Anton Vorontsov1af10772009-12-14 18:41:12 +0300542 if (!fsl_deep_sleep())
543 return 0;
544
545 ehci_fsl->usb_ctrl = in_be32(non_ehci + FSL_SOC_USB_CTRL);
546 return 0;
547}
548
549static int ehci_fsl_drv_resume(struct device *dev)
550{
551 struct usb_hcd *hcd = dev_get_drvdata(dev);
552 struct ehci_fsl *ehci_fsl = hcd_to_ehci_fsl(hcd);
553 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
554 void __iomem *non_ehci = hcd->regs;
555
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200556 if (of_device_is_compatible(dev->parent->of_node,
557 "fsl,mpc5121-usb2-dr")) {
558 return ehci_fsl_mpc512x_drv_resume(dev);
559 }
560
Alan Stern16032c42010-05-12 18:21:35 -0400561 ehci_prepare_ports_for_controller_resume(ehci);
Anton Vorontsov1af10772009-12-14 18:41:12 +0300562 if (!fsl_deep_sleep())
563 return 0;
564
565 usb_root_hub_lost_power(hcd->self.root_hub);
566
567 /* Restore USB PHY settings and enable the controller. */
568 out_be32(non_ehci + FSL_SOC_USB_CTRL, ehci_fsl->usb_ctrl);
569
570 ehci_reset(ehci);
571 ehci_fsl_reinit(ehci);
572
573 return 0;
574}
575
576static int ehci_fsl_drv_restore(struct device *dev)
577{
578 struct usb_hcd *hcd = dev_get_drvdata(dev);
579
580 usb_root_hub_lost_power(hcd->self.root_hub);
581 return 0;
582}
583
584static struct dev_pm_ops ehci_fsl_pm_ops = {
585 .suspend = ehci_fsl_drv_suspend,
586 .resume = ehci_fsl_drv_resume,
587 .restore = ehci_fsl_drv_restore,
588};
589
590#define EHCI_FSL_PM_OPS (&ehci_fsl_pm_ops)
591#else
592#define EHCI_FSL_PM_OPS NULL
593#endif /* CONFIG_PM */
594
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200595#ifdef CONFIG_USB_OTG
596static int ehci_start_port_reset(struct usb_hcd *hcd, unsigned port)
597{
598 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
599 u32 status;
600
601 if (!port)
602 return -EINVAL;
603
604 port--;
605
606 /* start port reset before HNP protocol time out */
607 status = readl(&ehci->regs->port_status[port]);
608 if (!(status & PORT_CONNECT))
609 return -ENODEV;
610
Petr Mladek37ebb542014-09-19 17:32:23 +0200611 /* hub_wq will finish the reset later */
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200612 if (ehci_is_TDI(ehci)) {
613 writel(PORT_RESET |
614 (status & ~(PORT_CSC | PORT_PEC | PORT_OCC)),
615 &ehci->regs->port_status[port]);
616 } else {
617 writel(PORT_RESET, &ehci->regs->port_status[port]);
618 }
619
620 return 0;
621}
622#else
623#define ehci_start_port_reset NULL
624#endif /* CONFIG_USB_OTG */
625
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530626static struct ehci_driver_overrides ehci_fsl_overrides __initdata = {
627 .extra_priv_size = sizeof(struct ehci_fsl),
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800628 .reset = ehci_fsl_setup,
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800629};
630
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530631/**
632 * fsl_ehci_drv_remove - shutdown processing for FSL-based HCDs
633 * @dev: USB Host Controller being removed
634 * Context: !in_interrupt()
635 *
636 * Reverses the effect of usb_hcd_fsl_probe().
637 *
638 */
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800639
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530640static int fsl_ehci_drv_remove(struct platform_device *pdev)
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800641{
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530642 struct fsl_usb2_platform_data *pdata = dev_get_platdata(&pdev->dev);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800643 struct usb_hcd *hcd = platform_get_drvdata(pdev);
644
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530645 if (!IS_ERR_OR_NULL(hcd->usb_phy)) {
646 otg_set_host(hcd->usb_phy->otg, NULL);
647 usb_put_phy(hcd->usb_phy);
648 }
649
650 usb_remove_hcd(hcd);
651
652 /*
653 * do platform specific un-initialization:
654 * release iomux pins, disable clock, etc.
655 */
656 if (pdata->exit)
657 pdata->exit(pdev);
658 usb_put_hcd(hcd);
659
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800660 return 0;
661}
662
Kumar Gala01cced22006-04-11 10:07:16 -0500663static struct platform_driver ehci_fsl_driver = {
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530664 .probe = fsl_ehci_drv_probe,
665 .remove = fsl_ehci_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700666 .shutdown = usb_hcd_platform_shutdown,
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800667 .driver = {
Anton Vorontsov1af10772009-12-14 18:41:12 +0300668 .name = "fsl-ehci",
669 .pm = EHCI_FSL_PM_OPS,
David Brownell135db042008-02-11 18:40:46 -0800670 },
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800671};
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530672
673static int __init ehci_fsl_init(void)
674{
675 if (usb_disabled())
676 return -ENODEV;
677
678 pr_info(DRV_NAME ": " DRIVER_DESC "\n");
679
680 ehci_init_driver(&fsl_ehci_hc_driver, &ehci_fsl_overrides);
681
682 fsl_ehci_hc_driver.product_desc =
683 "Freescale On-Chip EHCI Host Controller";
684 fsl_ehci_hc_driver.start_port_reset = ehci_start_port_reset;
685
686
687 return platform_driver_register(&ehci_fsl_driver);
688}
689module_init(ehci_fsl_init);
690
691static void __exit ehci_fsl_cleanup(void)
692{
693 platform_driver_unregister(&ehci_fsl_driver);
694}
695module_exit(ehci_fsl_cleanup);
696
697MODULE_DESCRIPTION(DRIVER_DESC);
698MODULE_LICENSE("GPL");
699MODULE_ALIAS("platform:" DRV_NAME);