blob: 15df00cceed91efe1cffe340e60eefa87d092828 [file] [log] [blame]
Andrew Victor39a269c2006-01-22 10:32:13 -08001/*
2 * OHCI HCD (Host Controller Driver) for USB.
3 *
4 * Copyright (C) 2004 SAN People (Pty) Ltd.
5 * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
6 *
David Brownell0365ee02006-06-19 14:27:20 -07007 * AT91 Bus Glue
Andrew Victor39a269c2006-01-22 10:32:13 -08008 *
9 * Based on fragments of 2.4 driver by Rick Bronson.
10 * Based on ohci-omap.c
11 *
12 * This file is licenced under the GPL.
13 */
14
15#include <linux/clk.h>
Manjunath Goudare3825b42013-09-21 16:38:42 +053016#include <linux/dma-mapping.h>
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +080017#include <linux/of_platform.h>
18#include <linux/of_gpio.h>
Manjunath Goudare3825b42013-09-21 16:38:42 +053019#include <linux/platform_device.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080020#include <linux/platform_data/atmel.h>
Manjunath Goudare3825b42013-09-21 16:38:42 +053021#include <linux/io.h>
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/usb.h>
25#include <linux/usb/hcd.h>
Andrew Victor39a269c2006-01-22 10:32:13 -080026
David Brownell4bde4a42007-12-27 11:19:49 -080027#include <asm/gpio.h>
28
Manjunath Goudare3825b42013-09-21 16:38:42 +053029#include "ohci.h"
Andrew Victor39a269c2006-01-22 10:32:13 -080030
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +010031#define valid_port(index) ((index) >= 0 && (index) < AT91_MAX_USBH_PORTS)
32#define at91_for_each_port(index) \
33 for ((index) = 0; (index) < AT91_MAX_USBH_PORTS; (index)++)
34
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +020035/* interface, function and usb clocks; sometimes also an AHB clock */
Sylvain Rochet1b207452015-01-20 14:39:02 +010036#define hcd_to_ohci_at91_priv(h) \
37 ((struct ohci_at91_priv *)hcd_to_ohci(h)->priv)
38
39struct ohci_at91_priv {
40 struct clk *iclk;
41 struct clk *fclk;
Sylvain Rochet1b207452015-01-20 14:39:02 +010042 struct clk *hclk;
43 bool clocked;
Sylvain Rochet1cee6b82015-01-20 14:39:04 +010044 bool wakeup; /* Saved wake-up state for resume */
Sylvain Rochet1b207452015-01-20 14:39:02 +010045};
Manjunath Goudare3825b42013-09-21 16:38:42 +053046/* interface and function clocks; sometimes also an AHB clock */
47
48#define DRIVER_DESC "OHCI Atmel driver"
49
50static const char hcd_name[] = "ohci-atmel";
51
52static struct hc_driver __read_mostly ohci_at91_hc_driver;
Sylvain Rochet1b207452015-01-20 14:39:02 +010053
54static const struct ohci_driver_overrides ohci_at91_drv_overrides __initconst = {
55 .extra_priv_size = sizeof(struct ohci_at91_priv),
56};
Andrew Victor39a269c2006-01-22 10:32:13 -080057
58extern int usb_disabled(void);
59
60/*-------------------------------------------------------------------------*/
61
Sylvain Rochet1b207452015-01-20 14:39:02 +010062static void at91_start_clock(struct ohci_at91_priv *ohci_at91)
Andrew Victored077bb2007-02-16 10:18:58 -080063{
Sylvain Rochet1cee6b82015-01-20 14:39:04 +010064 if (ohci_at91->clocked)
65 return;
Boris Brezillon963719c2015-03-17 17:15:47 +010066
67 clk_set_rate(ohci_at91->fclk, 48000000);
Sylvain Rochet1b207452015-01-20 14:39:02 +010068 clk_prepare_enable(ohci_at91->hclk);
69 clk_prepare_enable(ohci_at91->iclk);
70 clk_prepare_enable(ohci_at91->fclk);
71 ohci_at91->clocked = true;
Andrew Victored077bb2007-02-16 10:18:58 -080072}
73
Sylvain Rochet1b207452015-01-20 14:39:02 +010074static void at91_stop_clock(struct ohci_at91_priv *ohci_at91)
Andrew Victored077bb2007-02-16 10:18:58 -080075{
Sylvain Rochet1cee6b82015-01-20 14:39:04 +010076 if (!ohci_at91->clocked)
77 return;
Boris Brezillon963719c2015-03-17 17:15:47 +010078
Sylvain Rochet1b207452015-01-20 14:39:02 +010079 clk_disable_unprepare(ohci_at91->fclk);
80 clk_disable_unprepare(ohci_at91->iclk);
81 clk_disable_unprepare(ohci_at91->hclk);
Sylvain Rochet1b207452015-01-20 14:39:02 +010082 ohci_at91->clocked = false;
Andrew Victored077bb2007-02-16 10:18:58 -080083}
84
Andrew Victor39a269c2006-01-22 10:32:13 -080085static void at91_start_hc(struct platform_device *pdev)
86{
87 struct usb_hcd *hcd = platform_get_drvdata(pdev);
88 struct ohci_regs __iomem *regs = hcd->regs;
Sylvain Rochet1b207452015-01-20 14:39:02 +010089 struct ohci_at91_priv *ohci_at91 = hcd_to_ohci_at91_priv(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -080090
David Brownell0365ee02006-06-19 14:27:20 -070091 dev_dbg(&pdev->dev, "start\n");
Andrew Victor39a269c2006-01-22 10:32:13 -080092
93 /*
94 * Start the USB clocks.
95 */
Sylvain Rochet1b207452015-01-20 14:39:02 +010096 at91_start_clock(ohci_at91);
Andrew Victor39a269c2006-01-22 10:32:13 -080097
98 /*
99 * The USB host controller must remain in reset.
100 */
101 writel(0, &regs->control);
102}
103
104static void at91_stop_hc(struct platform_device *pdev)
105{
106 struct usb_hcd *hcd = platform_get_drvdata(pdev);
107 struct ohci_regs __iomem *regs = hcd->regs;
Sylvain Rochet1b207452015-01-20 14:39:02 +0100108 struct ohci_at91_priv *ohci_at91 = hcd_to_ohci_at91_priv(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -0800109
David Brownell0365ee02006-06-19 14:27:20 -0700110 dev_dbg(&pdev->dev, "stop\n");
Andrew Victor39a269c2006-01-22 10:32:13 -0800111
112 /*
113 * Put the USB host controller into reset.
114 */
115 writel(0, &regs->control);
116
117 /*
118 * Stop the USB clocks.
119 */
Sylvain Rochet1b207452015-01-20 14:39:02 +0100120 at91_stop_clock(ohci_at91);
Andrew Victor39a269c2006-01-22 10:32:13 -0800121}
122
123
124/*-------------------------------------------------------------------------*/
125
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500126static void usb_hcd_at91_remove (struct usb_hcd *, struct platform_device *);
Andrew Victor39a269c2006-01-22 10:32:13 -0800127
128/* configure so an HC device and id are always provided */
129/* always called with process context; sleeping is OK */
130
131
132/**
David Brownell0365ee02006-06-19 14:27:20 -0700133 * usb_hcd_at91_probe - initialize AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800134 * Context: !in_interrupt()
135 *
136 * Allocates basic resources for this USB host controller, and
137 * then invokes the start() method for the HCD associated with it
138 * through the hotplug entry's driver_data.
Andrew Victor39a269c2006-01-22 10:32:13 -0800139 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500140static int usb_hcd_at91_probe(const struct hc_driver *driver,
David Brownell0365ee02006-06-19 14:27:20 -0700141 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800142{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530143 struct at91_usbh_data *board;
144 struct ohci_hcd *ohci;
Andrew Victor39a269c2006-01-22 10:32:13 -0800145 int retval;
Sylvain Rochet3b3394a2015-01-20 14:39:03 +0100146 struct usb_hcd *hcd;
Sylvain Rochet1b207452015-01-20 14:39:02 +0100147 struct ohci_at91_priv *ohci_at91;
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100148 struct device *dev = &pdev->dev;
149 struct resource *res;
150 int irq;
Andrew Victor39a269c2006-01-22 10:32:13 -0800151
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100152 irq = platform_get_irq(pdev, 0);
153 if (irq < 0) {
154 dev_dbg(dev, "hcd probe: missing irq resource\n");
155 return irq;
Andrew Victor39a269c2006-01-22 10:32:13 -0800156 }
157
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100158 hcd = usb_create_hcd(driver, dev, "at91");
Andrew Victor39a269c2006-01-22 10:32:13 -0800159 if (!hcd)
160 return -ENOMEM;
Sylvain Rochet1b207452015-01-20 14:39:02 +0100161 ohci_at91 = hcd_to_ohci_at91_priv(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -0800162
Varka Bhadram04dc3152014-11-04 07:51:12 +0530163 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100164 hcd->regs = devm_ioremap_resource(dev, res);
165 if (IS_ERR(hcd->regs)) {
166 retval = PTR_ERR(hcd->regs);
167 goto err;
Andrew Victor39a269c2006-01-22 10:32:13 -0800168 }
Varka Bhadram04dc3152014-11-04 07:51:12 +0530169 hcd->rsrc_start = res->start;
170 hcd->rsrc_len = resource_size(res);
Andrew Victor39a269c2006-01-22 10:32:13 -0800171
Sylvain Rochet1b207452015-01-20 14:39:02 +0100172 ohci_at91->iclk = devm_clk_get(dev, "ohci_clk");
173 if (IS_ERR(ohci_at91->iclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100174 dev_err(dev, "failed to get ohci_clk\n");
Sylvain Rochet1b207452015-01-20 14:39:02 +0100175 retval = PTR_ERR(ohci_at91->iclk);
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100176 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100177 }
Sylvain Rochet1b207452015-01-20 14:39:02 +0100178 ohci_at91->fclk = devm_clk_get(dev, "uhpck");
179 if (IS_ERR(ohci_at91->fclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100180 dev_err(dev, "failed to get uhpck\n");
Sylvain Rochet1b207452015-01-20 14:39:02 +0100181 retval = PTR_ERR(ohci_at91->fclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100182 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100183 }
Sylvain Rochet1b207452015-01-20 14:39:02 +0100184 ohci_at91->hclk = devm_clk_get(dev, "hclk");
185 if (IS_ERR(ohci_at91->hclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100186 dev_err(dev, "failed to get hclk\n");
Sylvain Rochet1b207452015-01-20 14:39:02 +0100187 retval = PTR_ERR(ohci_at91->hclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100188 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100189 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800190
Manjunath Goudare3825b42013-09-21 16:38:42 +0530191 board = hcd->self.controller->platform_data;
192 ohci = hcd_to_ohci(hcd);
193 ohci->num_ports = board->ports;
Andrew Victor39a269c2006-01-22 10:32:13 -0800194 at91_start_hc(pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800195
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100196 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
Arnd Bergmann1f53b482014-01-07 12:54:58 +0100197 if (retval == 0) {
Peter Chen3c9740a2013-11-05 10:46:02 +0800198 device_wakeup_enable(hcd->self.controller);
Andrew Victor39a269c2006-01-22 10:32:13 -0800199 return retval;
Peter Chen3c9740a2013-11-05 10:46:02 +0800200 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800201
202 /* Error handling */
203 at91_stop_hc(pdev);
204
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100205 err:
Andrew Victor39a269c2006-01-22 10:32:13 -0800206 usb_put_hcd(hcd);
207 return retval;
208}
209
210
Andrew Victor39a269c2006-01-22 10:32:13 -0800211/* may be called with controller, bus, and devices active */
212
213/**
David Brownell0365ee02006-06-19 14:27:20 -0700214 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800215 * @dev: USB Host Controller being removed
216 * Context: !in_interrupt()
217 *
218 * Reverses the effect of usb_hcd_at91_probe(), first invoking
219 * the HCD's stop() method. It is always called from a thread
David Brownell0365ee02006-06-19 14:27:20 -0700220 * context, "rmmod" or something similar.
Andrew Victor39a269c2006-01-22 10:32:13 -0800221 *
222 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500223static void usb_hcd_at91_remove(struct usb_hcd *hcd,
David Brownell0365ee02006-06-19 14:27:20 -0700224 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800225{
226 usb_remove_hcd(hcd);
227 at91_stop_hc(pdev);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700228 usb_put_hcd(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -0800229}
230
231/*-------------------------------------------------------------------------*/
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200232static void ohci_at91_usb_set_power(struct at91_usbh_data *pdata, int port, int enable)
233{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100234 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200235 return;
236
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800237 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100238 return;
239
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100240 gpio_set_value(pdata->vbus_pin[port],
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100241 pdata->vbus_pin_active_low[port] ^ enable);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200242}
243
244static int ohci_at91_usb_get_power(struct at91_usbh_data *pdata, int port)
245{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100246 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200247 return -EINVAL;
248
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800249 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100250 return -EINVAL;
251
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100252 return gpio_get_value(pdata->vbus_pin[port]) ^
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100253 pdata->vbus_pin_active_low[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200254}
255
256/*
257 * Update the status data from the hub with the over-current indicator change.
258 */
259static int ohci_at91_hub_status_data(struct usb_hcd *hcd, char *buf)
260{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530261 struct at91_usbh_data *pdata = hcd->self.controller->platform_data;
Laurent Pinchart42b59eb2014-04-16 18:00:09 +0200262 int length = ohci_hub_status_data(hcd, buf);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200263 int port;
264
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100265 at91_for_each_port(port) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200266 if (pdata->overcurrent_changed[port]) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100267 if (!length)
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200268 length = 1;
269 buf[0] |= 1 << (port + 1);
270 }
271 }
272
273 return length;
274}
275
276/*
277 * Look at the control requests to the root hub and see if we need to override.
278 */
279static int ohci_at91_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
280 u16 wIndex, char *buf, u16 wLength)
281{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900282 struct at91_usbh_data *pdata = dev_get_platdata(hcd->self.controller);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200283 struct usb_hub_descriptor *desc;
284 int ret = -EINVAL;
285 u32 *data = (u32 *)buf;
286
287 dev_dbg(hcd->self.controller,
288 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
289 hcd, typeReq, wValue, wIndex, buf, wLength);
290
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100291 wIndex--;
292
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200293 switch (typeReq) {
294 case SetPortFeature:
295 if (wValue == USB_PORT_FEAT_POWER) {
296 dev_dbg(hcd->self.controller, "SetPortFeat: POWER\n");
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100297 if (valid_port(wIndex)) {
298 ohci_at91_usb_set_power(pdata, wIndex, 1);
299 ret = 0;
300 }
301
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200302 goto out;
303 }
304 break;
305
306 case ClearPortFeature:
307 switch (wValue) {
308 case USB_PORT_FEAT_C_OVER_CURRENT:
309 dev_dbg(hcd->self.controller,
310 "ClearPortFeature: C_OVER_CURRENT\n");
311
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100312 if (valid_port(wIndex)) {
313 pdata->overcurrent_changed[wIndex] = 0;
314 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200315 }
316
317 goto out;
318
319 case USB_PORT_FEAT_OVER_CURRENT:
320 dev_dbg(hcd->self.controller,
321 "ClearPortFeature: OVER_CURRENT\n");
322
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100323 if (valid_port(wIndex))
324 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200325
326 goto out;
327
328 case USB_PORT_FEAT_POWER:
329 dev_dbg(hcd->self.controller,
330 "ClearPortFeature: POWER\n");
331
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100332 if (valid_port(wIndex)) {
333 ohci_at91_usb_set_power(pdata, wIndex, 0);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200334 return 0;
335 }
336 }
337 break;
338 }
339
Laurent Pinchart42b59eb2014-04-16 18:00:09 +0200340 ret = ohci_hub_control(hcd, typeReq, wValue, wIndex + 1, buf, wLength);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200341 if (ret)
342 goto out;
343
344 switch (typeReq) {
345 case GetHubDescriptor:
346
347 /* update the hub's descriptor */
348
349 desc = (struct usb_hub_descriptor *)buf;
350
351 dev_dbg(hcd->self.controller, "wHubCharacteristics 0x%04x\n",
352 desc->wHubCharacteristics);
353
354 /* remove the old configurations for power-switching, and
355 * over-current protection, and insert our new configuration
356 */
357
358 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
Sergei Shtylyova9c49bc2015-01-19 01:39:44 +0300359 desc->wHubCharacteristics |=
360 cpu_to_le16(HUB_CHAR_INDV_PORT_LPSM);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200361
362 if (pdata->overcurrent_supported) {
363 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
Sergei Shtylyova9c49bc2015-01-19 01:39:44 +0300364 desc->wHubCharacteristics |=
365 cpu_to_le16(HUB_CHAR_INDV_PORT_OCPM);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200366 }
367
368 dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",
369 desc->wHubCharacteristics);
370
371 return ret;
372
373 case GetPortStatus:
374 /* check port status */
375
376 dev_dbg(hcd->self.controller, "GetPortStatus(%d)\n", wIndex);
377
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100378 if (valid_port(wIndex)) {
379 if (!ohci_at91_usb_get_power(pdata, wIndex))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200380 *data &= ~cpu_to_le32(RH_PS_PPS);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200381
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100382 if (pdata->overcurrent_changed[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200383 *data |= cpu_to_le32(RH_PS_OCIC);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200384
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100385 if (pdata->overcurrent_status[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200386 *data |= cpu_to_le32(RH_PS_POCI);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200387 }
388 }
389
390 out:
391 return ret;
392}
393
Andrew Victor39a269c2006-01-22 10:32:13 -0800394/*-------------------------------------------------------------------------*/
395
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200396static irqreturn_t ohci_hcd_at91_overcurrent_irq(int irq, void *data)
397{
398 struct platform_device *pdev = data;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900399 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200400 int val, gpio, port;
401
402 /* From the GPIO notifying the over-current situation, find
403 * out the corresponding port */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100404 at91_for_each_port(port) {
Joachim Eastwood01bb6502012-09-23 22:56:00 +0200405 if (gpio_is_valid(pdata->overcurrent_pin[port]) &&
406 gpio_to_irq(pdata->overcurrent_pin[port]) == irq) {
Nicolas Ferree4499072012-02-11 14:23:06 +0100407 gpio = pdata->overcurrent_pin[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200408 break;
Nicolas Ferree4499072012-02-11 14:23:06 +0100409 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200410 }
411
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100412 if (port == AT91_MAX_USBH_PORTS) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200413 dev_err(& pdev->dev, "overcurrent interrupt from unknown GPIO\n");
414 return IRQ_HANDLED;
415 }
416
417 val = gpio_get_value(gpio);
418
419 /* When notified of an over-current situation, disable power
420 on the corresponding port, and mark this port in
421 over-current. */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100422 if (!val) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200423 ohci_at91_usb_set_power(pdata, port, 0);
424 pdata->overcurrent_status[port] = 1;
425 pdata->overcurrent_changed[port] = 1;
426 }
427
428 dev_dbg(& pdev->dev, "overcurrent situation %s\n",
429 val ? "exited" : "notified");
430
431 return IRQ_HANDLED;
432}
433
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800434#ifdef CONFIG_OF
435static const struct of_device_id at91_ohci_dt_ids[] = {
436 { .compatible = "atmel,at91rm9200-ohci" },
437 { /* sentinel */ }
438};
439
440MODULE_DEVICE_TABLE(of, at91_ohci_dt_ids);
441
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500442static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800443{
444 struct device_node *np = pdev->dev.of_node;
Russell King22d9d8e2013-06-10 16:28:49 +0100445 int i, gpio, ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800446 enum of_gpio_flags flags;
447 struct at91_usbh_data *pdata;
448 u32 ports;
449
450 if (!np)
451 return 0;
452
453 /* Right now device-tree probed devices don't get dma_mask set.
454 * Since shared usb code relies on it, set it here for now.
455 * Once we have dma capability bindings this can go away.
456 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100457 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100458 if (ret)
459 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800460
461 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
462 if (!pdata)
463 return -ENOMEM;
464
465 if (!of_property_read_u32(np, "num-ports", &ports))
466 pdata->ports = ports;
467
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100468 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800469 gpio = of_get_named_gpio_flags(np, "atmel,vbus-gpio", i, &flags);
470 pdata->vbus_pin[i] = gpio;
471 if (!gpio_is_valid(gpio))
472 continue;
473 pdata->vbus_pin_active_low[i] = flags & OF_GPIO_ACTIVE_LOW;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800474 }
475
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100476 at91_for_each_port(i)
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100477 pdata->overcurrent_pin[i] =
478 of_get_named_gpio_flags(np, "atmel,oc-gpio", i, &flags);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800479
480 pdev->dev.platform_data = pdata;
481
482 return 0;
483}
484#else
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500485static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800486{
487 return 0;
488}
489#endif
490
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200491/*-------------------------------------------------------------------------*/
492
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500493static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800494{
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800495 struct at91_usbh_data *pdata;
David Brownell4bde4a42007-12-27 11:19:49 -0800496 int i;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100497 int gpio;
498 int ret;
David Brownell4bde4a42007-12-27 11:19:49 -0800499
Nicolas Ferre1887ab2b2012-03-28 11:49:01 +0200500 ret = ohci_at91_of_init(pdev);
501 if (ret)
502 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800503
Jingoo Hand4f09e22013-07-30 19:59:40 +0900504 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800505
David Brownell4bde4a42007-12-27 11:19:49 -0800506 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100507 at91_for_each_port(i) {
Nicolas Ferre6fffb772012-08-29 11:49:18 +0200508 /*
509 * do not configure PIO if not in relation with
510 * real USB port on board
511 */
512 if (i >= pdata->ports) {
513 pdata->vbus_pin[i] = -EINVAL;
514 pdata->overcurrent_pin[i] = -EINVAL;
515 break;
516 }
517
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800518 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800519 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100520 gpio = pdata->vbus_pin[i];
521
522 ret = gpio_request(gpio, "ohci_vbus");
523 if (ret) {
524 dev_err(&pdev->dev,
525 "can't request vbus gpio %d\n", gpio);
526 continue;
527 }
528 ret = gpio_direction_output(gpio,
529 !pdata->vbus_pin_active_low[i]);
530 if (ret) {
531 dev_err(&pdev->dev,
532 "can't put vbus gpio %d as output %d\n",
533 gpio, !pdata->vbus_pin_active_low[i]);
534 gpio_free(gpio);
535 continue;
536 }
537
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200538 ohci_at91_usb_set_power(pdata, i, 1);
539 }
540
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100541 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800542 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200543 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100544 gpio = pdata->overcurrent_pin[i];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200545
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100546 ret = gpio_request(gpio, "ohci_overcurrent");
547 if (ret) {
548 dev_err(&pdev->dev,
549 "can't request overcurrent gpio %d\n",
550 gpio);
551 continue;
552 }
553
554 ret = gpio_direction_input(gpio);
555 if (ret) {
556 dev_err(&pdev->dev,
557 "can't configure overcurrent gpio %d as input\n",
558 gpio);
559 gpio_free(gpio);
560 continue;
561 }
562
563 ret = request_irq(gpio_to_irq(gpio),
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200564 ohci_hcd_at91_overcurrent_irq,
565 IRQF_SHARED, "ohci_overcurrent", pdev);
566 if (ret) {
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100567 gpio_free(gpio);
568 dev_err(&pdev->dev,
569 "can't get gpio IRQ for overcurrent\n");
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200570 }
David Brownell4bde4a42007-12-27 11:19:49 -0800571 }
572 }
573
David Brownell0365ee02006-06-19 14:27:20 -0700574 device_init_wakeup(&pdev->dev, 1);
575 return usb_hcd_at91_probe(&ohci_at91_hc_driver, pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800576}
577
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500578static int ohci_hcd_at91_drv_remove(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800579{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900580 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
David Brownell4bde4a42007-12-27 11:19:49 -0800581 int i;
582
583 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100584 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800585 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800586 continue;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200587 ohci_at91_usb_set_power(pdata, i, 0);
David Brownell4bde4a42007-12-27 11:19:49 -0800588 gpio_free(pdata->vbus_pin[i]);
589 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200590
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100591 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800592 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200593 continue;
594 free_irq(gpio_to_irq(pdata->overcurrent_pin[i]), pdev);
595 gpio_free(pdata->overcurrent_pin[i]);
596 }
David Brownell4bde4a42007-12-27 11:19:49 -0800597 }
598
David Brownell0365ee02006-06-19 14:27:20 -0700599 device_init_wakeup(&pdev->dev, 0);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700600 usb_hcd_at91_remove(platform_get_drvdata(pdev), pdev);
601 return 0;
Andrew Victor39a269c2006-01-22 10:32:13 -0800602}
603
604#ifdef CONFIG_PM
Andrew Victor39a269c2006-01-22 10:32:13 -0800605
David Brownell68ba61b2006-04-02 20:26:21 -0800606static int
Sylvain Rochet94ac0e52015-01-20 14:39:00 +0100607ohci_hcd_at91_drv_suspend(struct device *dev)
David Brownell68ba61b2006-04-02 20:26:21 -0800608{
Sylvain Rochet94ac0e52015-01-20 14:39:00 +0100609 struct usb_hcd *hcd = dev_get_drvdata(dev);
David Brownell0365ee02006-06-19 14:27:20 -0700610 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Sylvain Rochet1b207452015-01-20 14:39:02 +0100611 struct ohci_at91_priv *ohci_at91 = hcd_to_ohci_at91_priv(hcd);
Majunath Goudara9d38402013-11-13 17:40:17 +0530612 int ret;
David Brownell0365ee02006-06-19 14:27:20 -0700613
Sylvain Rochet1cee6b82015-01-20 14:39:04 +0100614 /*
615 * Disable wakeup if we are going to sleep with slow clock mode
616 * enabled.
617 */
618 ohci_at91->wakeup = device_may_wakeup(dev)
619 && !at91_suspend_entering_slow_clock();
620
621 if (ohci_at91->wakeup)
David Brownell0365ee02006-06-19 14:27:20 -0700622 enable_irq_wake(hcd->irq);
David Brownell0365ee02006-06-19 14:27:20 -0700623
Sylvain Rochet1cee6b82015-01-20 14:39:04 +0100624 ret = ohci_suspend(hcd, ohci_at91->wakeup);
Majunath Goudara9d38402013-11-13 17:40:17 +0530625 if (ret) {
Sylvain Rochet1cee6b82015-01-20 14:39:04 +0100626 if (ohci_at91->wakeup)
627 disable_irq_wake(hcd->irq);
Majunath Goudara9d38402013-11-13 17:40:17 +0530628 return ret;
629 }
David Brownell0365ee02006-06-19 14:27:20 -0700630 /*
631 * The integrated transceivers seem unable to notice disconnect,
632 * reconnect, or wakeup without the 48 MHz clock active. so for
633 * correctness, always discard connection state (using reset).
634 *
635 * REVISIT: some boards will be able to turn VBUS off...
636 */
Sylvain Rochet1cee6b82015-01-20 14:39:04 +0100637 if (!ohci_at91->wakeup) {
Manjunath Goudare3825b42013-09-21 16:38:42 +0530638 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
639 ohci->hc_control &= OHCI_CTRL_RWC;
640 ohci_writel(ohci, ohci->hc_control, &ohci->regs->control);
641 ohci->rh_state = OHCI_RH_HALTED;
642
Patrice Vilchez869aa982010-04-28 13:45:40 +0200643 /* flush the writes */
644 (void) ohci_readl (ohci, &ohci->regs->control);
Sylvain Rochet1b207452015-01-20 14:39:02 +0100645 at91_stop_clock(ohci_at91);
David Brownell0365ee02006-06-19 14:27:20 -0700646 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800647
Majunath Goudara9d38402013-11-13 17:40:17 +0530648 return ret;
Andrew Victor39a269c2006-01-22 10:32:13 -0800649}
650
Sylvain Rochet94ac0e52015-01-20 14:39:00 +0100651static int ohci_hcd_at91_drv_resume(struct device *dev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800652{
Sylvain Rochet94ac0e52015-01-20 14:39:00 +0100653 struct usb_hcd *hcd = dev_get_drvdata(dev);
Sylvain Rochet1b207452015-01-20 14:39:02 +0100654 struct ohci_at91_priv *ohci_at91 = hcd_to_ohci_at91_priv(hcd);
Marc Pignat6dde8962007-01-09 14:00:11 -0800655
Sylvain Rochet1cee6b82015-01-20 14:39:04 +0100656 if (ohci_at91->wakeup)
Marc Pignat6dde8962007-01-09 14:00:11 -0800657 disable_irq_wake(hcd->irq);
658
Sylvain Rochet1cee6b82015-01-20 14:39:04 +0100659 at91_start_clock(ohci_at91);
Andrew Victor39a269c2006-01-22 10:32:13 -0800660
Florian Fainellicfa49b42012-10-08 15:11:29 +0200661 ohci_resume(hcd, false);
Andrew Victor39a269c2006-01-22 10:32:13 -0800662 return 0;
663}
Andrew Victor39a269c2006-01-22 10:32:13 -0800664#endif
665
Sylvain Rochet94ac0e52015-01-20 14:39:00 +0100666static SIMPLE_DEV_PM_OPS(ohci_hcd_at91_pm_ops, ohci_hcd_at91_drv_suspend,
667 ohci_hcd_at91_drv_resume);
668
Andrew Victor39a269c2006-01-22 10:32:13 -0800669static struct platform_driver ohci_hcd_at91_driver = {
670 .probe = ohci_hcd_at91_drv_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500671 .remove = ohci_hcd_at91_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700672 .shutdown = usb_hcd_platform_shutdown,
Andrew Victor39a269c2006-01-22 10:32:13 -0800673 .driver = {
David Brownell0365ee02006-06-19 14:27:20 -0700674 .name = "at91_ohci",
Sylvain Rochet94ac0e52015-01-20 14:39:00 +0100675 .pm = &ohci_hcd_at91_pm_ops,
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800676 .of_match_table = of_match_ptr(at91_ohci_dt_ids),
Andrew Victor39a269c2006-01-22 10:32:13 -0800677 },
678};
Manjunath Goudare3825b42013-09-21 16:38:42 +0530679
680static int __init ohci_at91_init(void)
681{
682 if (usb_disabled())
683 return -ENODEV;
684
685 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
Sylvain Rochet1b207452015-01-20 14:39:02 +0100686 ohci_init_driver(&ohci_at91_hc_driver, &ohci_at91_drv_overrides);
Manjunath Goudare3825b42013-09-21 16:38:42 +0530687
688 /*
689 * The Atmel HW has some unusual quirks, which require Atmel-specific
690 * workarounds. We override certain hc_driver functions here to
691 * achieve that. We explicitly do not enhance ohci_driver_overrides to
692 * allow this more easily, since this is an unusual case, and we don't
693 * want to encourage others to override these functions by making it
694 * too easy.
695 */
696
Manjunath Goudare3825b42013-09-21 16:38:42 +0530697 ohci_at91_hc_driver.hub_status_data = ohci_at91_hub_status_data;
698 ohci_at91_hc_driver.hub_control = ohci_at91_hub_control;
699
700 return platform_driver_register(&ohci_hcd_at91_driver);
701}
702module_init(ohci_at91_init);
703
704static void __exit ohci_at91_cleanup(void)
705{
706 platform_driver_unregister(&ohci_hcd_at91_driver);
707}
708module_exit(ohci_at91_cleanup);
709
710MODULE_DESCRIPTION(DRIVER_DESC);
711MODULE_LICENSE("GPL");
712MODULE_ALIAS("platform:at91_ohci");