blob: 8c356af79409f9ef4647d141bc6aa5146791496b [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
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h>
David Brownell4bde4a42007-12-27 11:19:49 -080028#include <asm/gpio.h>
29
Russell Kinga09e64f2008-08-05 16:14:15 +010030#include <mach/cpu.h>
Andrew Victor39a269c2006-01-22 10:32:13 -080031
Manjunath Goudare3825b42013-09-21 16:38:42 +053032
33#include "ohci.h"
Andrew Victor39a269c2006-01-22 10:32:13 -080034
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +010035#define valid_port(index) ((index) >= 0 && (index) < AT91_MAX_USBH_PORTS)
36#define at91_for_each_port(index) \
37 for ((index) = 0; (index) < AT91_MAX_USBH_PORTS; (index)++)
38
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +020039/* interface, function and usb clocks; sometimes also an AHB clock */
40static struct clk *iclk, *fclk, *uclk, *hclk;
Manjunath Goudare3825b42013-09-21 16:38:42 +053041/* interface and function clocks; sometimes also an AHB clock */
42
43#define DRIVER_DESC "OHCI Atmel driver"
44
45static const char hcd_name[] = "ohci-atmel";
46
47static struct hc_driver __read_mostly ohci_at91_hc_driver;
David Brownell0365ee02006-06-19 14:27:20 -070048static int clocked;
Manjunath Goudare3825b42013-09-21 16:38:42 +053049static int (*orig_ohci_hub_control)(struct usb_hcd *hcd, u16 typeReq,
50 u16 wValue, u16 wIndex, char *buf, u16 wLength);
51static int (*orig_ohci_hub_status_data)(struct usb_hcd *hcd, char *buf);
Andrew Victor39a269c2006-01-22 10:32:13 -080052
53extern int usb_disabled(void);
54
55/*-------------------------------------------------------------------------*/
56
Andrew Victored077bb2007-02-16 10:18:58 -080057static void at91_start_clock(void)
58{
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +020059 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
60 clk_set_rate(uclk, 48000000);
61 clk_prepare_enable(uclk);
62 }
Boris BREZILLON8e82d8d2013-06-19 13:21:08 +020063 clk_prepare_enable(hclk);
64 clk_prepare_enable(iclk);
65 clk_prepare_enable(fclk);
Andrew Victored077bb2007-02-16 10:18:58 -080066 clocked = 1;
67}
68
69static void at91_stop_clock(void)
70{
Boris BREZILLON8e82d8d2013-06-19 13:21:08 +020071 clk_disable_unprepare(fclk);
72 clk_disable_unprepare(iclk);
73 clk_disable_unprepare(hclk);
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +020074 if (IS_ENABLED(CONFIG_COMMON_CLK))
75 clk_disable_unprepare(uclk);
Andrew Victored077bb2007-02-16 10:18:58 -080076 clocked = 0;
77}
78
Andrew Victor39a269c2006-01-22 10:32:13 -080079static void at91_start_hc(struct platform_device *pdev)
80{
81 struct usb_hcd *hcd = platform_get_drvdata(pdev);
82 struct ohci_regs __iomem *regs = hcd->regs;
83
David Brownell0365ee02006-06-19 14:27:20 -070084 dev_dbg(&pdev->dev, "start\n");
Andrew Victor39a269c2006-01-22 10:32:13 -080085
86 /*
87 * Start the USB clocks.
88 */
Andrew Victored077bb2007-02-16 10:18:58 -080089 at91_start_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -080090
91 /*
92 * The USB host controller must remain in reset.
93 */
94 writel(0, &regs->control);
95}
96
97static void at91_stop_hc(struct platform_device *pdev)
98{
99 struct usb_hcd *hcd = platform_get_drvdata(pdev);
100 struct ohci_regs __iomem *regs = hcd->regs;
101
David Brownell0365ee02006-06-19 14:27:20 -0700102 dev_dbg(&pdev->dev, "stop\n");
Andrew Victor39a269c2006-01-22 10:32:13 -0800103
104 /*
105 * Put the USB host controller into reset.
106 */
107 writel(0, &regs->control);
108
109 /*
110 * Stop the USB clocks.
111 */
Andrew Victored077bb2007-02-16 10:18:58 -0800112 at91_stop_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -0800113}
114
115
116/*-------------------------------------------------------------------------*/
117
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500118static void usb_hcd_at91_remove (struct usb_hcd *, struct platform_device *);
Andrew Victor39a269c2006-01-22 10:32:13 -0800119
120/* configure so an HC device and id are always provided */
121/* always called with process context; sleeping is OK */
122
123
124/**
David Brownell0365ee02006-06-19 14:27:20 -0700125 * usb_hcd_at91_probe - initialize AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800126 * Context: !in_interrupt()
127 *
128 * Allocates basic resources for this USB host controller, and
129 * then invokes the start() method for the HCD associated with it
130 * through the hotplug entry's driver_data.
Andrew Victor39a269c2006-01-22 10:32:13 -0800131 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500132static int usb_hcd_at91_probe(const struct hc_driver *driver,
David Brownell0365ee02006-06-19 14:27:20 -0700133 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800134{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530135 struct at91_usbh_data *board;
136 struct ohci_hcd *ohci;
Andrew Victor39a269c2006-01-22 10:32:13 -0800137 int retval;
138 struct usb_hcd *hcd = NULL;
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100139 struct device *dev = &pdev->dev;
140 struct resource *res;
141 int irq;
Andrew Victor39a269c2006-01-22 10:32:13 -0800142
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100143 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
144 if (!res) {
145 dev_dbg(dev, "hcd probe: missing memory resource\n");
146 return -ENXIO;
Andrew Victor39a269c2006-01-22 10:32:13 -0800147 }
148
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100149 irq = platform_get_irq(pdev, 0);
150 if (irq < 0) {
151 dev_dbg(dev, "hcd probe: missing irq resource\n");
152 return irq;
Andrew Victor39a269c2006-01-22 10:32:13 -0800153 }
154
David Brownell0365ee02006-06-19 14:27:20 -0700155 hcd = usb_create_hcd(driver, &pdev->dev, "at91");
Andrew Victor39a269c2006-01-22 10:32:13 -0800156 if (!hcd)
157 return -ENOMEM;
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100158 hcd->rsrc_start = res->start;
159 hcd->rsrc_len = resource_size(res);
Andrew Victor39a269c2006-01-22 10:32:13 -0800160
161 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
162 pr_debug("request_mem_region failed\n");
163 retval = -EBUSY;
164 goto err1;
165 }
166
167 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
168 if (!hcd->regs) {
169 pr_debug("ioremap failed\n");
170 retval = -EIO;
171 goto err2;
172 }
173
174 iclk = clk_get(&pdev->dev, "ohci_clk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100175 if (IS_ERR(iclk)) {
176 dev_err(&pdev->dev, "failed to get ohci_clk\n");
177 retval = PTR_ERR(iclk);
178 goto err3;
179 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800180 fclk = clk_get(&pdev->dev, "uhpck");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100181 if (IS_ERR(fclk)) {
182 dev_err(&pdev->dev, "failed to get uhpck\n");
183 retval = PTR_ERR(fclk);
184 goto err4;
185 }
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200186 hclk = clk_get(&pdev->dev, "hclk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100187 if (IS_ERR(hclk)) {
188 dev_err(&pdev->dev, "failed to get hclk\n");
189 retval = PTR_ERR(hclk);
190 goto err5;
191 }
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200192 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
193 uclk = clk_get(&pdev->dev, "usb_clk");
194 if (IS_ERR(uclk)) {
195 dev_err(&pdev->dev, "failed to get uclk\n");
196 retval = PTR_ERR(uclk);
197 goto err6;
198 }
199 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800200
Manjunath Goudare3825b42013-09-21 16:38:42 +0530201 board = hcd->self.controller->platform_data;
202 ohci = hcd_to_ohci(hcd);
203 ohci->num_ports = board->ports;
Andrew Victor39a269c2006-01-22 10:32:13 -0800204 at91_start_hc(pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800205
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100206 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
Andrew Victor39a269c2006-01-22 10:32:13 -0800207 if (retval == 0)
208 return retval;
209
210 /* Error handling */
211 at91_stop_hc(pdev);
212
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200213 if (IS_ENABLED(CONFIG_COMMON_CLK))
214 clk_put(uclk);
215 err6:
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200216 clk_put(hclk);
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100217 err5:
Andrew Victor39a269c2006-01-22 10:32:13 -0800218 clk_put(fclk);
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100219 err4:
Andrew Victor39a269c2006-01-22 10:32:13 -0800220 clk_put(iclk);
221
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100222 err3:
Andrew Victor39a269c2006-01-22 10:32:13 -0800223 iounmap(hcd->regs);
224
225 err2:
226 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
227
228 err1:
229 usb_put_hcd(hcd);
230 return retval;
231}
232
233
Andrew Victor39a269c2006-01-22 10:32:13 -0800234/* may be called with controller, bus, and devices active */
235
236/**
David Brownell0365ee02006-06-19 14:27:20 -0700237 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800238 * @dev: USB Host Controller being removed
239 * Context: !in_interrupt()
240 *
241 * Reverses the effect of usb_hcd_at91_probe(), first invoking
242 * the HCD's stop() method. It is always called from a thread
David Brownell0365ee02006-06-19 14:27:20 -0700243 * context, "rmmod" or something similar.
Andrew Victor39a269c2006-01-22 10:32:13 -0800244 *
245 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500246static void usb_hcd_at91_remove(struct usb_hcd *hcd,
David Brownell0365ee02006-06-19 14:27:20 -0700247 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800248{
249 usb_remove_hcd(hcd);
250 at91_stop_hc(pdev);
251 iounmap(hcd->regs);
David Brownell68ba61b2006-04-02 20:26:21 -0800252 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700253 usb_put_hcd(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -0800254
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200255 if (IS_ENABLED(CONFIG_COMMON_CLK))
256 clk_put(uclk);
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200257 clk_put(hclk);
David Brownell68ba61b2006-04-02 20:26:21 -0800258 clk_put(fclk);
259 clk_put(iclk);
Andrew Victored077bb2007-02-16 10:18:58 -0800260 fclk = iclk = hclk = NULL;
Andrew Victor39a269c2006-01-22 10:32:13 -0800261}
262
263/*-------------------------------------------------------------------------*/
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200264static void ohci_at91_usb_set_power(struct at91_usbh_data *pdata, int port, int enable)
265{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100266 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200267 return;
268
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800269 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100270 return;
271
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100272 gpio_set_value(pdata->vbus_pin[port],
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100273 pdata->vbus_pin_active_low[port] ^ enable);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200274}
275
276static int ohci_at91_usb_get_power(struct at91_usbh_data *pdata, int port)
277{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100278 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200279 return -EINVAL;
280
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800281 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100282 return -EINVAL;
283
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100284 return gpio_get_value(pdata->vbus_pin[port]) ^
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100285 pdata->vbus_pin_active_low[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200286}
287
288/*
289 * Update the status data from the hub with the over-current indicator change.
290 */
291static int ohci_at91_hub_status_data(struct usb_hcd *hcd, char *buf)
292{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530293 struct at91_usbh_data *pdata = hcd->self.controller->platform_data;
294 int length = orig_ohci_hub_status_data(hcd, buf);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200295 int port;
296
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100297 at91_for_each_port(port) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200298 if (pdata->overcurrent_changed[port]) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100299 if (!length)
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200300 length = 1;
301 buf[0] |= 1 << (port + 1);
302 }
303 }
304
305 return length;
306}
307
308/*
309 * Look at the control requests to the root hub and see if we need to override.
310 */
311static int ohci_at91_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
312 u16 wIndex, char *buf, u16 wLength)
313{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900314 struct at91_usbh_data *pdata = dev_get_platdata(hcd->self.controller);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200315 struct usb_hub_descriptor *desc;
316 int ret = -EINVAL;
317 u32 *data = (u32 *)buf;
318
319 dev_dbg(hcd->self.controller,
320 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
321 hcd, typeReq, wValue, wIndex, buf, wLength);
322
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100323 wIndex--;
324
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200325 switch (typeReq) {
326 case SetPortFeature:
327 if (wValue == USB_PORT_FEAT_POWER) {
328 dev_dbg(hcd->self.controller, "SetPortFeat: POWER\n");
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100329 if (valid_port(wIndex)) {
330 ohci_at91_usb_set_power(pdata, wIndex, 1);
331 ret = 0;
332 }
333
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200334 goto out;
335 }
336 break;
337
338 case ClearPortFeature:
339 switch (wValue) {
340 case USB_PORT_FEAT_C_OVER_CURRENT:
341 dev_dbg(hcd->self.controller,
342 "ClearPortFeature: C_OVER_CURRENT\n");
343
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100344 if (valid_port(wIndex)) {
345 pdata->overcurrent_changed[wIndex] = 0;
346 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200347 }
348
349 goto out;
350
351 case USB_PORT_FEAT_OVER_CURRENT:
352 dev_dbg(hcd->self.controller,
353 "ClearPortFeature: OVER_CURRENT\n");
354
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100355 if (valid_port(wIndex))
356 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200357
358 goto out;
359
360 case USB_PORT_FEAT_POWER:
361 dev_dbg(hcd->self.controller,
362 "ClearPortFeature: POWER\n");
363
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100364 if (valid_port(wIndex)) {
365 ohci_at91_usb_set_power(pdata, wIndex, 0);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200366 return 0;
367 }
368 }
369 break;
370 }
371
Manjunath Goudare3825b42013-09-21 16:38:42 +0530372 ret = orig_ohci_hub_control(hcd, typeReq, wValue, wIndex + 1,
373 buf, wLength);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200374 if (ret)
375 goto out;
376
377 switch (typeReq) {
378 case GetHubDescriptor:
379
380 /* update the hub's descriptor */
381
382 desc = (struct usb_hub_descriptor *)buf;
383
384 dev_dbg(hcd->self.controller, "wHubCharacteristics 0x%04x\n",
385 desc->wHubCharacteristics);
386
387 /* remove the old configurations for power-switching, and
388 * over-current protection, and insert our new configuration
389 */
390
391 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
392 desc->wHubCharacteristics |= cpu_to_le16(0x0001);
393
394 if (pdata->overcurrent_supported) {
395 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
396 desc->wHubCharacteristics |= cpu_to_le16(0x0008|0x0001);
397 }
398
399 dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",
400 desc->wHubCharacteristics);
401
402 return ret;
403
404 case GetPortStatus:
405 /* check port status */
406
407 dev_dbg(hcd->self.controller, "GetPortStatus(%d)\n", wIndex);
408
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100409 if (valid_port(wIndex)) {
410 if (!ohci_at91_usb_get_power(pdata, wIndex))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200411 *data &= ~cpu_to_le32(RH_PS_PPS);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200412
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100413 if (pdata->overcurrent_changed[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200414 *data |= cpu_to_le32(RH_PS_OCIC);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200415
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100416 if (pdata->overcurrent_status[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200417 *data |= cpu_to_le32(RH_PS_POCI);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200418 }
419 }
420
421 out:
422 return ret;
423}
424
Andrew Victor39a269c2006-01-22 10:32:13 -0800425/*-------------------------------------------------------------------------*/
426
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200427static irqreturn_t ohci_hcd_at91_overcurrent_irq(int irq, void *data)
428{
429 struct platform_device *pdev = data;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900430 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200431 int val, gpio, port;
432
433 /* From the GPIO notifying the over-current situation, find
434 * out the corresponding port */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100435 at91_for_each_port(port) {
Joachim Eastwood01bb6502012-09-23 22:56:00 +0200436 if (gpio_is_valid(pdata->overcurrent_pin[port]) &&
437 gpio_to_irq(pdata->overcurrent_pin[port]) == irq) {
Nicolas Ferree4499072012-02-11 14:23:06 +0100438 gpio = pdata->overcurrent_pin[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200439 break;
Nicolas Ferree4499072012-02-11 14:23:06 +0100440 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200441 }
442
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100443 if (port == AT91_MAX_USBH_PORTS) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200444 dev_err(& pdev->dev, "overcurrent interrupt from unknown GPIO\n");
445 return IRQ_HANDLED;
446 }
447
448 val = gpio_get_value(gpio);
449
450 /* When notified of an over-current situation, disable power
451 on the corresponding port, and mark this port in
452 over-current. */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100453 if (!val) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200454 ohci_at91_usb_set_power(pdata, port, 0);
455 pdata->overcurrent_status[port] = 1;
456 pdata->overcurrent_changed[port] = 1;
457 }
458
459 dev_dbg(& pdev->dev, "overcurrent situation %s\n",
460 val ? "exited" : "notified");
461
462 return IRQ_HANDLED;
463}
464
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800465#ifdef CONFIG_OF
466static const struct of_device_id at91_ohci_dt_ids[] = {
467 { .compatible = "atmel,at91rm9200-ohci" },
468 { /* sentinel */ }
469};
470
471MODULE_DEVICE_TABLE(of, at91_ohci_dt_ids);
472
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500473static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800474{
475 struct device_node *np = pdev->dev.of_node;
Russell King22d9d8e2013-06-10 16:28:49 +0100476 int i, gpio, ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800477 enum of_gpio_flags flags;
478 struct at91_usbh_data *pdata;
479 u32 ports;
480
481 if (!np)
482 return 0;
483
484 /* Right now device-tree probed devices don't get dma_mask set.
485 * Since shared usb code relies on it, set it here for now.
486 * Once we have dma capability bindings this can go away.
487 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100488 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100489 if (ret)
490 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800491
492 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
493 if (!pdata)
494 return -ENOMEM;
495
496 if (!of_property_read_u32(np, "num-ports", &ports))
497 pdata->ports = ports;
498
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100499 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800500 gpio = of_get_named_gpio_flags(np, "atmel,vbus-gpio", i, &flags);
501 pdata->vbus_pin[i] = gpio;
502 if (!gpio_is_valid(gpio))
503 continue;
504 pdata->vbus_pin_active_low[i] = flags & OF_GPIO_ACTIVE_LOW;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800505 }
506
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100507 at91_for_each_port(i)
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100508 pdata->overcurrent_pin[i] =
509 of_get_named_gpio_flags(np, "atmel,oc-gpio", i, &flags);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800510
511 pdev->dev.platform_data = pdata;
512
513 return 0;
514}
515#else
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500516static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800517{
518 return 0;
519}
520#endif
521
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200522/*-------------------------------------------------------------------------*/
523
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500524static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800525{
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800526 struct at91_usbh_data *pdata;
David Brownell4bde4a42007-12-27 11:19:49 -0800527 int i;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100528 int gpio;
529 int ret;
David Brownell4bde4a42007-12-27 11:19:49 -0800530
Nicolas Ferre1887ab2b2012-03-28 11:49:01 +0200531 ret = ohci_at91_of_init(pdev);
532 if (ret)
533 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800534
Jingoo Hand4f09e22013-07-30 19:59:40 +0900535 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800536
David Brownell4bde4a42007-12-27 11:19:49 -0800537 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100538 at91_for_each_port(i) {
Nicolas Ferre6fffb772012-08-29 11:49:18 +0200539 /*
540 * do not configure PIO if not in relation with
541 * real USB port on board
542 */
543 if (i >= pdata->ports) {
544 pdata->vbus_pin[i] = -EINVAL;
545 pdata->overcurrent_pin[i] = -EINVAL;
546 break;
547 }
548
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800549 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800550 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100551 gpio = pdata->vbus_pin[i];
552
553 ret = gpio_request(gpio, "ohci_vbus");
554 if (ret) {
555 dev_err(&pdev->dev,
556 "can't request vbus gpio %d\n", gpio);
557 continue;
558 }
559 ret = gpio_direction_output(gpio,
560 !pdata->vbus_pin_active_low[i]);
561 if (ret) {
562 dev_err(&pdev->dev,
563 "can't put vbus gpio %d as output %d\n",
564 gpio, !pdata->vbus_pin_active_low[i]);
565 gpio_free(gpio);
566 continue;
567 }
568
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200569 ohci_at91_usb_set_power(pdata, i, 1);
570 }
571
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100572 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800573 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200574 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100575 gpio = pdata->overcurrent_pin[i];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200576
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100577 ret = gpio_request(gpio, "ohci_overcurrent");
578 if (ret) {
579 dev_err(&pdev->dev,
580 "can't request overcurrent gpio %d\n",
581 gpio);
582 continue;
583 }
584
585 ret = gpio_direction_input(gpio);
586 if (ret) {
587 dev_err(&pdev->dev,
588 "can't configure overcurrent gpio %d as input\n",
589 gpio);
590 gpio_free(gpio);
591 continue;
592 }
593
594 ret = request_irq(gpio_to_irq(gpio),
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200595 ohci_hcd_at91_overcurrent_irq,
596 IRQF_SHARED, "ohci_overcurrent", pdev);
597 if (ret) {
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100598 gpio_free(gpio);
599 dev_err(&pdev->dev,
600 "can't get gpio IRQ for overcurrent\n");
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200601 }
David Brownell4bde4a42007-12-27 11:19:49 -0800602 }
603 }
604
David Brownell0365ee02006-06-19 14:27:20 -0700605 device_init_wakeup(&pdev->dev, 1);
606 return usb_hcd_at91_probe(&ohci_at91_hc_driver, pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800607}
608
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500609static int ohci_hcd_at91_drv_remove(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800610{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900611 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
David Brownell4bde4a42007-12-27 11:19:49 -0800612 int i;
613
614 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100615 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800616 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800617 continue;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200618 ohci_at91_usb_set_power(pdata, i, 0);
David Brownell4bde4a42007-12-27 11:19:49 -0800619 gpio_free(pdata->vbus_pin[i]);
620 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200621
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100622 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800623 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200624 continue;
625 free_irq(gpio_to_irq(pdata->overcurrent_pin[i]), pdev);
626 gpio_free(pdata->overcurrent_pin[i]);
627 }
David Brownell4bde4a42007-12-27 11:19:49 -0800628 }
629
David Brownell0365ee02006-06-19 14:27:20 -0700630 device_init_wakeup(&pdev->dev, 0);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700631 usb_hcd_at91_remove(platform_get_drvdata(pdev), pdev);
632 return 0;
Andrew Victor39a269c2006-01-22 10:32:13 -0800633}
634
635#ifdef CONFIG_PM
Andrew Victor39a269c2006-01-22 10:32:13 -0800636
David Brownell68ba61b2006-04-02 20:26:21 -0800637static int
David Brownell0365ee02006-06-19 14:27:20 -0700638ohci_hcd_at91_drv_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownell68ba61b2006-04-02 20:26:21 -0800639{
David Brownell0365ee02006-06-19 14:27:20 -0700640 struct usb_hcd *hcd = platform_get_drvdata(pdev);
641 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
642
Greg Kroah-Hartman118cb992013-10-14 10:18:55 -0700643 if (device_may_wakeup(&pdev->dev))
David Brownell0365ee02006-06-19 14:27:20 -0700644 enable_irq_wake(hcd->irq);
David Brownell0365ee02006-06-19 14:27:20 -0700645
646 /*
647 * The integrated transceivers seem unable to notice disconnect,
648 * reconnect, or wakeup without the 48 MHz clock active. so for
649 * correctness, always discard connection state (using reset).
650 *
651 * REVISIT: some boards will be able to turn VBUS off...
652 */
653 if (at91_suspend_entering_slow_clock()) {
Manjunath Goudare3825b42013-09-21 16:38:42 +0530654 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
655 ohci->hc_control &= OHCI_CTRL_RWC;
656 ohci_writel(ohci, ohci->hc_control, &ohci->regs->control);
657 ohci->rh_state = OHCI_RH_HALTED;
658
Patrice Vilchez869aa982010-04-28 13:45:40 +0200659 /* flush the writes */
660 (void) ohci_readl (ohci, &ohci->regs->control);
Andrew Victored077bb2007-02-16 10:18:58 -0800661 at91_stop_clock();
David Brownell0365ee02006-06-19 14:27:20 -0700662 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800663
Greg Kroah-Hartman118cb992013-10-14 10:18:55 -0700664 return 0;
Andrew Victor39a269c2006-01-22 10:32:13 -0800665}
666
David Brownell0365ee02006-06-19 14:27:20 -0700667static int ohci_hcd_at91_drv_resume(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800668{
Marc Pignat6dde8962007-01-09 14:00:11 -0800669 struct usb_hcd *hcd = platform_get_drvdata(pdev);
670
671 if (device_may_wakeup(&pdev->dev))
672 disable_irq_wake(hcd->irq);
673
Andrew Victored077bb2007-02-16 10:18:58 -0800674 if (!clocked)
675 at91_start_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -0800676
Florian Fainellicfa49b42012-10-08 15:11:29 +0200677 ohci_resume(hcd, false);
Andrew Victor39a269c2006-01-22 10:32:13 -0800678 return 0;
679}
680#else
681#define ohci_hcd_at91_drv_suspend NULL
682#define ohci_hcd_at91_drv_resume NULL
683#endif
684
Andrew Victor39a269c2006-01-22 10:32:13 -0800685static struct platform_driver ohci_hcd_at91_driver = {
686 .probe = ohci_hcd_at91_drv_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500687 .remove = ohci_hcd_at91_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700688 .shutdown = usb_hcd_platform_shutdown,
Andrew Victor39a269c2006-01-22 10:32:13 -0800689 .suspend = ohci_hcd_at91_drv_suspend,
690 .resume = ohci_hcd_at91_drv_resume,
691 .driver = {
David Brownell0365ee02006-06-19 14:27:20 -0700692 .name = "at91_ohci",
Andrew Victor39a269c2006-01-22 10:32:13 -0800693 .owner = THIS_MODULE,
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800694 .of_match_table = of_match_ptr(at91_ohci_dt_ids),
Andrew Victor39a269c2006-01-22 10:32:13 -0800695 },
696};
Manjunath Goudare3825b42013-09-21 16:38:42 +0530697
698static int __init ohci_at91_init(void)
699{
700 if (usb_disabled())
701 return -ENODEV;
702
703 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
704 ohci_init_driver(&ohci_at91_hc_driver, NULL);
705
706 /*
707 * The Atmel HW has some unusual quirks, which require Atmel-specific
708 * workarounds. We override certain hc_driver functions here to
709 * achieve that. We explicitly do not enhance ohci_driver_overrides to
710 * allow this more easily, since this is an unusual case, and we don't
711 * want to encourage others to override these functions by making it
712 * too easy.
713 */
714
715 orig_ohci_hub_control = ohci_at91_hc_driver.hub_control;
716 orig_ohci_hub_status_data = ohci_at91_hc_driver.hub_status_data;
717
718 ohci_at91_hc_driver.hub_status_data = ohci_at91_hub_status_data;
719 ohci_at91_hc_driver.hub_control = ohci_at91_hub_control;
720
721 return platform_driver_register(&ohci_hcd_at91_driver);
722}
723module_init(ohci_at91_init);
724
725static void __exit ohci_at91_cleanup(void)
726{
727 platform_driver_unregister(&ohci_hcd_at91_driver);
728}
729module_exit(ohci_at91_cleanup);
730
731MODULE_DESCRIPTION(DRIVER_DESC);
732MODULE_LICENSE("GPL");
733MODULE_ALIAS("platform:at91_ohci");