blob: 5352e74b92e2112c273c4e0a2c43387a8bd0a105 [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
132 /* Don't need to set host mode here. It will be done by tdi_reset() */
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800133
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800134 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800135 if (retval != 0)
Jingoo Han7667fe62013-12-11 16:18:53 +0900136 goto err2;
Peter Chen3c9740a2013-11-05 10:46:02 +0800137 device_wakeup_enable(hcd->self.controller);
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200138
139#ifdef CONFIG_USB_OTG
140 if (pdata->operating_mode == FSL_USB2_DR_OTG) {
141 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
142
Antoine Tenart3d46e732014-09-24 23:05:50 +0400143 hcd->usb_phy = usb_get_phy(USB_PHY_TYPE_USB2);
Richard Zhaoc2e935a2012-06-13 20:34:12 +0800144 dev_dbg(&pdev->dev, "hcd=0x%p ehci=0x%p, phy=0x%p\n",
Antoine Tenart3d46e732014-09-24 23:05:50 +0400145 hcd, ehci, hcd->usb_phy);
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200146
Antoine Tenart3d46e732014-09-24 23:05:50 +0400147 if (!IS_ERR_OR_NULL(hcd->usb_phy)) {
148 retval = otg_set_host(hcd->usb_phy->otg,
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200149 &ehci_to_hcd(ehci)->self);
150 if (retval) {
Antoine Tenart3d46e732014-09-24 23:05:50 +0400151 usb_put_phy(hcd->usb_phy);
Jingoo Han7667fe62013-12-11 16:18:53 +0900152 goto err2;
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200153 }
154 } else {
Richard Zhaoc2e935a2012-06-13 20:34:12 +0800155 dev_err(&pdev->dev, "can't find phy\n");
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200156 retval = -ENODEV;
Jingoo Han7667fe62013-12-11 16:18:53 +0900157 goto err2;
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200158 }
159 }
160#endif
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800161 return retval;
162
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800163 err2:
164 usb_put_hcd(hcd);
165 err1:
Kay Sievers7071a3c2008-05-02 06:02:41 +0200166 dev_err(&pdev->dev, "init %s fail, %d\n", dev_name(&pdev->dev), retval);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200167 if (pdata->exit)
168 pdata->exit(pdev);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800169 return retval;
170}
171
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800172static int ehci_fsl_setup_phy(struct usb_hcd *hcd,
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200173 enum fsl_usb2_phy_modes phy_mode,
174 unsigned int port_offset)
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800175{
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800176 u32 portsc;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530177 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Shengzhou Liu28c56ea2012-02-16 18:02:20 +0800178 void __iomem *non_ehci = hcd->regs;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530179 struct device *dev = hcd->self.controller;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900180 struct fsl_usb2_platform_data *pdata = dev_get_platdata(dev);
Anatolij Gustschinf941f692012-04-10 10:48:11 +0200181
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530182 if (pdata->controller_ver < 0) {
183 dev_warn(hcd->self.controller, "Could not get controller version\n");
Ben Collinsd479c912012-10-19 10:24:12 -0400184 return -ENODEV;
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530185 }
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200186
187 portsc = ehci_readl(ehci, &ehci->regs->port_status[port_offset]);
188 portsc &= ~(PORT_PTS_MSK | PORT_PTS_PTW);
189
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800190 switch (phy_mode) {
191 case FSL_USB2_PHY_ULPI:
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100192 if (pdata->have_sysif_regs && pdata->controller_ver) {
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530193 /* controller version 1.6 or above */
Ramneek Mehreshad1260e2013-09-16 15:11:33 +0530194 clrbits32(non_ehci + FSL_SOC_USB_CTRL, UTMI_PHY_EN);
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800195 setbits32(non_ehci + FSL_SOC_USB_CTRL,
Ramneek Mehreshad1260e2013-09-16 15:11:33 +0530196 ULPI_PHY_CLK_SEL | USB_CTRL_USB_EN);
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530197 }
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800198 portsc |= PORT_PTS_ULPI;
199 break;
200 case FSL_USB2_PHY_SERIAL:
201 portsc |= PORT_PTS_SERIAL;
202 break;
203 case FSL_USB2_PHY_UTMI_WIDE:
204 portsc |= PORT_PTS_PTW;
205 /* fall through */
206 case FSL_USB2_PHY_UTMI:
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100207 if (pdata->have_sysif_regs && pdata->controller_ver) {
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530208 /* controller version 1.6 or above */
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800209 setbits32(non_ehci + FSL_SOC_USB_CTRL, UTMI_PHY_EN);
Ramneek Mehresh58c559e2012-03-20 10:35:50 +0530210 mdelay(FSL_UTMI_PHY_DLY); /* Delay for UTMI PHY CLK to
211 become stable - 10ms*/
212 }
Shengzhou Liu28c56ea2012-02-16 18:02:20 +0800213 /* enable UTMI PHY */
Anatolij Gustschinf941f692012-04-10 10:48:11 +0200214 if (pdata->have_sysif_regs)
215 setbits32(non_ehci + FSL_SOC_USB_CTRL,
216 CTRL_UTMI_PHY_EN);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800217 portsc |= PORT_PTS_UTMI;
218 break;
219 case FSL_USB2_PHY_NONE:
220 break;
221 }
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800222
Nikita Yushchenkod183c812014-04-28 19:23:44 +0400223 if (pdata->have_sysif_regs &&
224 pdata->controller_ver > FSL_USB_VER_1_6 &&
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100225 (phy_mode == FSL_USB2_PHY_ULPI)) {
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800226 /* check PHY_CLK_VALID to get phy clk valid */
Shengzhou Liueee41b42013-09-02 13:25:52 +0800227 if (!(spin_event_timeout(in_be32(non_ehci + FSL_SOC_USB_CTRL) &
228 PHY_CLK_VALID, FSL_USB_PHY_CLK_TIMEOUT, 0) ||
229 in_be32(non_ehci + FSL_SOC_USB_PRICTRL))) {
Jingoo Hanf4fbb6d2013-12-10 21:17:54 +0900230 dev_warn(hcd->self.controller, "USB PHY clock invalid\n");
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800231 return -EINVAL;
232 }
233 }
234
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100235 ehci_writel(ehci, portsc, &ehci->regs->port_status[port_offset]);
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800236
Anatolij Gustschinf66dea72012-12-04 14:24:30 +0100237 if (phy_mode != FSL_USB2_PHY_ULPI && pdata->have_sysif_regs)
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800238 setbits32(non_ehci + FSL_SOC_USB_CTRL, USB_CTRL_USB_EN);
239
240 return 0;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800241}
242
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800243static int ehci_fsl_usb_setup(struct ehci_hcd *ehci)
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800244{
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200245 struct usb_hcd *hcd = ehci_to_hcd(ehci);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800246 struct fsl_usb2_platform_data *pdata;
247 void __iomem *non_ehci = hcd->regs;
248
Jingoo Hand4f09e22013-07-30 19:59:40 +0900249 pdata = dev_get_platdata(hcd->self.controller);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200250
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200251 if (pdata->have_sysif_regs) {
Pan Jiafei4c954322012-02-17 13:57:16 +0800252 /*
253 * Turn on cache snooping hardware, since some PowerPC platforms
254 * wholly rely on hardware to deal with cache coherent
255 */
256
257 /* Setup Snooping for all the 4GB space */
258 /* SNOOP1 starts from 0x0, size 2G */
259 out_be32(non_ehci + FSL_SOC_USB_SNOOP1, 0x0 | SNOOP_SIZE_2GB);
260 /* SNOOP2 starts from 0x80000000, size 2G */
261 out_be32(non_ehci + FSL_SOC_USB_SNOOP2, 0x80000000 | SNOOP_SIZE_2GB);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200262 }
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800263
Li Yangba029782007-05-11 17:09:55 +0800264 if ((pdata->operating_mode == FSL_USB2_DR_HOST) ||
265 (pdata->operating_mode == FSL_USB2_DR_OTG))
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800266 if (ehci_fsl_setup_phy(hcd, pdata->phy_mode, 0))
267 return -EINVAL;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800268
269 if (pdata->operating_mode == FSL_USB2_MPH_HOST) {
Kumar Gala8cd42e92006-01-20 13:57:52 -0800270 unsigned int chip, rev, svr;
271
272 svr = mfspr(SPRN_SVR);
273 chip = svr >> 16;
274 rev = (svr >> 4) & 0xf;
275
276 /* Deal with USB Erratum #14 on MPC834x Rev 1.0 & 1.1 chips */
277 if ((rev == 1) && (chip >= 0x8050) && (chip <= 0x8055))
278 ehci->has_fsl_port_bug = 1;
279
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800280 if (pdata->port_enables & FSL_USB2_PORT0_ENABLED)
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800281 if (ehci_fsl_setup_phy(hcd, pdata->phy_mode, 0))
282 return -EINVAL;
283
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800284 if (pdata->port_enables & FSL_USB2_PORT1_ENABLED)
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800285 if (ehci_fsl_setup_phy(hcd, pdata->phy_mode, 1))
286 return -EINVAL;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800287 }
288
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200289 if (pdata->have_sysif_regs) {
Kumar Gala08d76602012-07-10 06:58:48 -0500290#ifdef CONFIG_FSL_SOC_BOOKE
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200291 out_be32(non_ehci + FSL_SOC_USB_PRICTRL, 0x00000008);
292 out_be32(non_ehci + FSL_SOC_USB_AGECNTTHRSH, 0x00000080);
Srikanth Srinivasan4f534252008-07-02 02:14:33 -0500293#else
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200294 out_be32(non_ehci + FSL_SOC_USB_PRICTRL, 0x0000000c);
295 out_be32(non_ehci + FSL_SOC_USB_AGECNTTHRSH, 0x00000040);
Srikanth Srinivasan4f534252008-07-02 02:14:33 -0500296#endif
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200297 out_be32(non_ehci + FSL_SOC_USB_SICTRL, 0x00000001);
298 }
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800299
300 return 0;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800301}
302
303/* called after powerup, by probe or system-pm "wakeup" */
304static int ehci_fsl_reinit(struct ehci_hcd *ehci)
305{
Shengzhou Liu3735ba82012-08-22 18:17:00 +0800306 if (ehci_fsl_usb_setup(ehci))
307 return -EINVAL;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800308
309 return 0;
310}
311
312/* called during probe() after chip reset completes */
313static int ehci_fsl_setup(struct usb_hcd *hcd)
314{
315 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
316 int retval;
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200317 struct fsl_usb2_platform_data *pdata;
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100318 struct device *dev;
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200319
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100320 dev = hcd->self.controller;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900321 pdata = dev_get_platdata(hcd->self.controller);
Anatolij Gustschin230f7ed2010-09-28 20:55:21 +0200322 ehci->big_endian_desc = pdata->big_endian_desc;
323 ehci->big_endian_mmio = pdata->big_endian_mmio;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800324
325 /* EHCI registers start at offset 0x100 */
326 ehci->caps = hcd->regs + 0x100;
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800327
Christian Engelmayere6604a72013-04-03 12:18:51 +0200328#ifdef CONFIG_PPC_83xx
329 /*
330 * Deal with MPC834X that need port power to be cycled after the power
331 * fault condition is removed. Otherwise the state machine does not
332 * reflect PORTSC[CSC] correctly.
333 */
334 ehci->need_oc_pp_cycle = 1;
335#endif
336
Matthieu CASTET65fd4272010-09-06 18:26:56 +0200337 hcd->has_tt = 1;
338
Alan Stern1a49e2a2012-07-09 15:55:14 -0400339 retval = ehci_setup(hcd);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800340 if (retval)
341 return retval;
342
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100343 if (of_device_is_compatible(dev->parent->of_node,
344 "fsl,mpc5121-usb2-dr")) {
345 /*
346 * set SBUSCFG:AHBBRST so that control msgs don't
347 * fail when doing heavy PATA writes.
348 */
349 ehci_writel(ehci, SBUSCFG_INCR8,
350 hcd->regs + FSL_SOC_USB_SBUSCFG);
351 }
352
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800353 retval = ehci_fsl_reinit(ehci);
354 return retval;
355}
356
Anton Vorontsov1af10772009-12-14 18:41:12 +0300357struct ehci_fsl {
358 struct ehci_hcd ehci;
359
360#ifdef CONFIG_PM
361 /* Saved USB PHY settings, need to restore after deep sleep. */
362 u32 usb_ctrl;
363#endif
364};
365
366#ifdef CONFIG_PM
367
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200368#ifdef CONFIG_PPC_MPC512x
369static int ehci_fsl_mpc512x_drv_suspend(struct device *dev)
370{
371 struct usb_hcd *hcd = dev_get_drvdata(dev);
372 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900373 struct fsl_usb2_platform_data *pdata = dev_get_platdata(dev);
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200374 u32 tmp;
375
Oliver Neukum1c201632013-11-18 13:23:16 +0100376#ifdef CONFIG_DYNAMIC_DEBUG
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200377 u32 mode = ehci_readl(ehci, hcd->regs + FSL_SOC_USB_USBMODE);
378 mode &= USBMODE_CM_MASK;
379 tmp = ehci_readl(ehci, hcd->regs + 0x140); /* usbcmd */
380
381 dev_dbg(dev, "suspend=%d already_suspended=%d "
382 "mode=%d usbcmd %08x\n", pdata->suspended,
383 pdata->already_suspended, mode, tmp);
384#endif
385
386 /*
387 * If the controller is already suspended, then this must be a
388 * PM suspend. Remember this fact, so that we will leave the
389 * controller suspended at PM resume time.
390 */
391 if (pdata->suspended) {
392 dev_dbg(dev, "already suspended, leaving early\n");
393 pdata->already_suspended = 1;
394 return 0;
395 }
396
397 dev_dbg(dev, "suspending...\n");
398
Alan Sterne8799902011-08-18 16:31:30 -0400399 ehci->rh_state = EHCI_RH_SUSPENDED;
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200400 dev->power.power_state = PMSG_SUSPEND;
401
402 /* ignore non-host interrupts */
403 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
404
405 /* stop the controller */
406 tmp = ehci_readl(ehci, &ehci->regs->command);
407 tmp &= ~CMD_RUN;
408 ehci_writel(ehci, tmp, &ehci->regs->command);
409
410 /* save EHCI registers */
411 pdata->pm_command = ehci_readl(ehci, &ehci->regs->command);
412 pdata->pm_command &= ~CMD_RUN;
413 pdata->pm_status = ehci_readl(ehci, &ehci->regs->status);
414 pdata->pm_intr_enable = ehci_readl(ehci, &ehci->regs->intr_enable);
415 pdata->pm_frame_index = ehci_readl(ehci, &ehci->regs->frame_index);
416 pdata->pm_segment = ehci_readl(ehci, &ehci->regs->segment);
417 pdata->pm_frame_list = ehci_readl(ehci, &ehci->regs->frame_list);
418 pdata->pm_async_next = ehci_readl(ehci, &ehci->regs->async_next);
419 pdata->pm_configured_flag =
420 ehci_readl(ehci, &ehci->regs->configured_flag);
421 pdata->pm_portsc = ehci_readl(ehci, &ehci->regs->port_status[0]);
422 pdata->pm_usbgenctrl = ehci_readl(ehci,
423 hcd->regs + FSL_SOC_USB_USBGENCTRL);
424
425 /* clear the W1C bits */
426 pdata->pm_portsc &= cpu_to_hc32(ehci, ~PORT_RWC_BITS);
427
428 pdata->suspended = 1;
429
430 /* clear PP to cut power to the port */
431 tmp = ehci_readl(ehci, &ehci->regs->port_status[0]);
432 tmp &= ~PORT_POWER;
433 ehci_writel(ehci, tmp, &ehci->regs->port_status[0]);
434
435 return 0;
436}
437
438static int ehci_fsl_mpc512x_drv_resume(struct device *dev)
439{
440 struct usb_hcd *hcd = dev_get_drvdata(dev);
441 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900442 struct fsl_usb2_platform_data *pdata = dev_get_platdata(dev);
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200443 u32 tmp;
444
445 dev_dbg(dev, "suspend=%d already_suspended=%d\n",
446 pdata->suspended, pdata->already_suspended);
447
448 /*
449 * If the controller was already suspended at suspend time,
450 * then don't resume it now.
451 */
452 if (pdata->already_suspended) {
453 dev_dbg(dev, "already suspended, leaving early\n");
454 pdata->already_suspended = 0;
455 return 0;
456 }
457
458 if (!pdata->suspended) {
459 dev_dbg(dev, "not suspended, leaving early\n");
460 return 0;
461 }
462
463 pdata->suspended = 0;
464
465 dev_dbg(dev, "resuming...\n");
466
467 /* set host mode */
468 tmp = USBMODE_CM_HOST | (pdata->es ? USBMODE_ES : 0);
469 ehci_writel(ehci, tmp, hcd->regs + FSL_SOC_USB_USBMODE);
470
471 ehci_writel(ehci, pdata->pm_usbgenctrl,
472 hcd->regs + FSL_SOC_USB_USBGENCTRL);
473 ehci_writel(ehci, ISIPHYCTRL_PXE | ISIPHYCTRL_PHYE,
474 hcd->regs + FSL_SOC_USB_ISIPHYCTRL);
475
Anatolij Gustschin761bbcb2012-01-24 22:17:38 +0100476 ehci_writel(ehci, SBUSCFG_INCR8, hcd->regs + FSL_SOC_USB_SBUSCFG);
477
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200478 /* restore EHCI registers */
479 ehci_writel(ehci, pdata->pm_command, &ehci->regs->command);
480 ehci_writel(ehci, pdata->pm_intr_enable, &ehci->regs->intr_enable);
481 ehci_writel(ehci, pdata->pm_frame_index, &ehci->regs->frame_index);
482 ehci_writel(ehci, pdata->pm_segment, &ehci->regs->segment);
483 ehci_writel(ehci, pdata->pm_frame_list, &ehci->regs->frame_list);
484 ehci_writel(ehci, pdata->pm_async_next, &ehci->regs->async_next);
485 ehci_writel(ehci, pdata->pm_configured_flag,
486 &ehci->regs->configured_flag);
487 ehci_writel(ehci, pdata->pm_portsc, &ehci->regs->port_status[0]);
488
489 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Sterne8799902011-08-18 16:31:30 -0400490 ehci->rh_state = EHCI_RH_RUNNING;
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200491 dev->power.power_state = PMSG_ON;
492
493 tmp = ehci_readl(ehci, &ehci->regs->command);
494 tmp |= CMD_RUN;
495 ehci_writel(ehci, tmp, &ehci->regs->command);
496
497 usb_hcd_resume_root_hub(hcd);
498
499 return 0;
500}
501#else
502static inline int ehci_fsl_mpc512x_drv_suspend(struct device *dev)
503{
504 return 0;
505}
506
507static inline int ehci_fsl_mpc512x_drv_resume(struct device *dev)
508{
509 return 0;
510}
511#endif /* CONFIG_PPC_MPC512x */
512
Anton Vorontsov1af10772009-12-14 18:41:12 +0300513static struct ehci_fsl *hcd_to_ehci_fsl(struct usb_hcd *hcd)
514{
515 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
516
517 return container_of(ehci, struct ehci_fsl, ehci);
518}
519
520static int ehci_fsl_drv_suspend(struct device *dev)
521{
522 struct usb_hcd *hcd = dev_get_drvdata(dev);
523 struct ehci_fsl *ehci_fsl = hcd_to_ehci_fsl(hcd);
524 void __iomem *non_ehci = hcd->regs;
525
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200526 if (of_device_is_compatible(dev->parent->of_node,
527 "fsl,mpc5121-usb2-dr")) {
528 return ehci_fsl_mpc512x_drv_suspend(dev);
529 }
530
Alan Stern41472002010-06-25 14:02:14 -0400531 ehci_prepare_ports_for_controller_suspend(hcd_to_ehci(hcd),
532 device_may_wakeup(dev));
Anton Vorontsov1af10772009-12-14 18:41:12 +0300533 if (!fsl_deep_sleep())
534 return 0;
535
536 ehci_fsl->usb_ctrl = in_be32(non_ehci + FSL_SOC_USB_CTRL);
537 return 0;
538}
539
540static int ehci_fsl_drv_resume(struct device *dev)
541{
542 struct usb_hcd *hcd = dev_get_drvdata(dev);
543 struct ehci_fsl *ehci_fsl = hcd_to_ehci_fsl(hcd);
544 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
545 void __iomem *non_ehci = hcd->regs;
546
Anatolij Gustschin13b7ee2a2011-04-18 22:01:55 +0200547 if (of_device_is_compatible(dev->parent->of_node,
548 "fsl,mpc5121-usb2-dr")) {
549 return ehci_fsl_mpc512x_drv_resume(dev);
550 }
551
Alan Stern16032c42010-05-12 18:21:35 -0400552 ehci_prepare_ports_for_controller_resume(ehci);
Anton Vorontsov1af10772009-12-14 18:41:12 +0300553 if (!fsl_deep_sleep())
554 return 0;
555
556 usb_root_hub_lost_power(hcd->self.root_hub);
557
558 /* Restore USB PHY settings and enable the controller. */
559 out_be32(non_ehci + FSL_SOC_USB_CTRL, ehci_fsl->usb_ctrl);
560
561 ehci_reset(ehci);
562 ehci_fsl_reinit(ehci);
563
564 return 0;
565}
566
567static int ehci_fsl_drv_restore(struct device *dev)
568{
569 struct usb_hcd *hcd = dev_get_drvdata(dev);
570
571 usb_root_hub_lost_power(hcd->self.root_hub);
572 return 0;
573}
574
575static struct dev_pm_ops ehci_fsl_pm_ops = {
576 .suspend = ehci_fsl_drv_suspend,
577 .resume = ehci_fsl_drv_resume,
578 .restore = ehci_fsl_drv_restore,
579};
580
581#define EHCI_FSL_PM_OPS (&ehci_fsl_pm_ops)
582#else
583#define EHCI_FSL_PM_OPS NULL
584#endif /* CONFIG_PM */
585
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200586#ifdef CONFIG_USB_OTG
587static int ehci_start_port_reset(struct usb_hcd *hcd, unsigned port)
588{
589 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
590 u32 status;
591
592 if (!port)
593 return -EINVAL;
594
595 port--;
596
597 /* start port reset before HNP protocol time out */
598 status = readl(&ehci->regs->port_status[port]);
599 if (!(status & PORT_CONNECT))
600 return -ENODEV;
601
Petr Mladek37ebb542014-09-19 17:32:23 +0200602 /* hub_wq will finish the reset later */
Anatolij Gustschin83722bc2011-04-18 22:02:00 +0200603 if (ehci_is_TDI(ehci)) {
604 writel(PORT_RESET |
605 (status & ~(PORT_CSC | PORT_PEC | PORT_OCC)),
606 &ehci->regs->port_status[port]);
607 } else {
608 writel(PORT_RESET, &ehci->regs->port_status[port]);
609 }
610
611 return 0;
612}
613#else
614#define ehci_start_port_reset NULL
615#endif /* CONFIG_USB_OTG */
616
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530617static struct ehci_driver_overrides ehci_fsl_overrides __initdata = {
618 .extra_priv_size = sizeof(struct ehci_fsl),
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800619 .reset = ehci_fsl_setup,
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800620};
621
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530622/**
623 * fsl_ehci_drv_remove - shutdown processing for FSL-based HCDs
624 * @dev: USB Host Controller being removed
625 * Context: !in_interrupt()
626 *
627 * Reverses the effect of usb_hcd_fsl_probe().
628 *
629 */
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800630
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530631static int fsl_ehci_drv_remove(struct platform_device *pdev)
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800632{
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530633 struct fsl_usb2_platform_data *pdata = dev_get_platdata(&pdev->dev);
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800634 struct usb_hcd *hcd = platform_get_drvdata(pdev);
635
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530636 if (!IS_ERR_OR_NULL(hcd->usb_phy)) {
637 otg_set_host(hcd->usb_phy->otg, NULL);
638 usb_put_phy(hcd->usb_phy);
639 }
640
641 usb_remove_hcd(hcd);
642
643 /*
644 * do platform specific un-initialization:
645 * release iomux pins, disable clock, etc.
646 */
647 if (pdata->exit)
648 pdata->exit(pdev);
649 usb_put_hcd(hcd);
650
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800651 return 0;
652}
653
Kumar Gala01cced22006-04-11 10:07:16 -0500654static struct platform_driver ehci_fsl_driver = {
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530655 .probe = fsl_ehci_drv_probe,
656 .remove = fsl_ehci_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700657 .shutdown = usb_hcd_platform_shutdown,
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800658 .driver = {
Anton Vorontsov1af10772009-12-14 18:41:12 +0300659 .name = "fsl-ehci",
660 .pm = EHCI_FSL_PM_OPS,
David Brownell135db042008-02-11 18:40:46 -0800661 },
Randy Vinson80cb9ae2006-01-20 13:53:38 -0800662};
Ramneek Mehreshca07e1c2015-05-14 19:04:46 +0530663
664static int __init ehci_fsl_init(void)
665{
666 if (usb_disabled())
667 return -ENODEV;
668
669 pr_info(DRV_NAME ": " DRIVER_DESC "\n");
670
671 ehci_init_driver(&fsl_ehci_hc_driver, &ehci_fsl_overrides);
672
673 fsl_ehci_hc_driver.product_desc =
674 "Freescale On-Chip EHCI Host Controller";
675 fsl_ehci_hc_driver.start_port_reset = ehci_start_port_reset;
676
677
678 return platform_driver_register(&ehci_fsl_driver);
679}
680module_init(ehci_fsl_init);
681
682static void __exit ehci_fsl_cleanup(void)
683{
684 platform_driver_unregister(&ehci_fsl_driver);
685}
686module_exit(ehci_fsl_cleanup);
687
688MODULE_DESCRIPTION(DRIVER_DESC);
689MODULE_LICENSE("GPL");
690MODULE_ALIAS("platform:" DRV_NAME);