blob: 2d0ee5e3127c161d4e903c25ac78b57323de7979 [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
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100155 hcd = usb_create_hcd(driver, 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
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100161 hcd->regs = devm_ioremap_resource(dev, res);
162 if (IS_ERR(hcd->regs)) {
163 retval = PTR_ERR(hcd->regs);
164 goto err;
Andrew Victor39a269c2006-01-22 10:32:13 -0800165 }
166
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100167 iclk = devm_clk_get(dev, "ohci_clk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100168 if (IS_ERR(iclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100169 dev_err(dev, "failed to get ohci_clk\n");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100170 retval = PTR_ERR(iclk);
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100171 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100172 }
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100173 fclk = devm_clk_get(dev, "uhpck");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100174 if (IS_ERR(fclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100175 dev_err(dev, "failed to get uhpck\n");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100176 retval = PTR_ERR(fclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100177 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100178 }
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100179 hclk = devm_clk_get(dev, "hclk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100180 if (IS_ERR(hclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100181 dev_err(dev, "failed to get hclk\n");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100182 retval = PTR_ERR(hclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100183 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100184 }
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200185 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100186 uclk = devm_clk_get(dev, "usb_clk");
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200187 if (IS_ERR(uclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100188 dev_err(dev, "failed to get uclk\n");
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200189 retval = PTR_ERR(uclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100190 goto err;
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200191 }
192 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800193
Manjunath Goudare3825b42013-09-21 16:38:42 +0530194 board = hcd->self.controller->platform_data;
195 ohci = hcd_to_ohci(hcd);
196 ohci->num_ports = board->ports;
Andrew Victor39a269c2006-01-22 10:32:13 -0800197 at91_start_hc(pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800198
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100199 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
Andrew Victor39a269c2006-01-22 10:32:13 -0800200 if (retval == 0)
Peter Chen3c9740a2013-11-05 10:46:02 +0800201 device_wakeup_enable(hcd->self.controller);
Andrew Victor39a269c2006-01-22 10:32:13 -0800202 return retval;
Peter Chen3c9740a2013-11-05 10:46:02 +0800203 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800204
205 /* Error handling */
206 at91_stop_hc(pdev);
207
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100208 err:
Andrew Victor39a269c2006-01-22 10:32:13 -0800209 usb_put_hcd(hcd);
210 return retval;
211}
212
213
Andrew Victor39a269c2006-01-22 10:32:13 -0800214/* may be called with controller, bus, and devices active */
215
216/**
David Brownell0365ee02006-06-19 14:27:20 -0700217 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800218 * @dev: USB Host Controller being removed
219 * Context: !in_interrupt()
220 *
221 * Reverses the effect of usb_hcd_at91_probe(), first invoking
222 * the HCD's stop() method. It is always called from a thread
David Brownell0365ee02006-06-19 14:27:20 -0700223 * context, "rmmod" or something similar.
Andrew Victor39a269c2006-01-22 10:32:13 -0800224 *
225 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500226static void usb_hcd_at91_remove(struct usb_hcd *hcd,
David Brownell0365ee02006-06-19 14:27:20 -0700227 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800228{
229 usb_remove_hcd(hcd);
230 at91_stop_hc(pdev);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700231 usb_put_hcd(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -0800232}
233
234/*-------------------------------------------------------------------------*/
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200235static void ohci_at91_usb_set_power(struct at91_usbh_data *pdata, int port, int enable)
236{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100237 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200238 return;
239
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800240 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100241 return;
242
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100243 gpio_set_value(pdata->vbus_pin[port],
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100244 pdata->vbus_pin_active_low[port] ^ enable);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200245}
246
247static int ohci_at91_usb_get_power(struct at91_usbh_data *pdata, int port)
248{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100249 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200250 return -EINVAL;
251
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800252 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100253 return -EINVAL;
254
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100255 return gpio_get_value(pdata->vbus_pin[port]) ^
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100256 pdata->vbus_pin_active_low[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200257}
258
259/*
260 * Update the status data from the hub with the over-current indicator change.
261 */
262static int ohci_at91_hub_status_data(struct usb_hcd *hcd, char *buf)
263{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530264 struct at91_usbh_data *pdata = hcd->self.controller->platform_data;
265 int length = orig_ohci_hub_status_data(hcd, buf);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200266 int port;
267
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100268 at91_for_each_port(port) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200269 if (pdata->overcurrent_changed[port]) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100270 if (!length)
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200271 length = 1;
272 buf[0] |= 1 << (port + 1);
273 }
274 }
275
276 return length;
277}
278
279/*
280 * Look at the control requests to the root hub and see if we need to override.
281 */
282static int ohci_at91_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
283 u16 wIndex, char *buf, u16 wLength)
284{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900285 struct at91_usbh_data *pdata = dev_get_platdata(hcd->self.controller);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200286 struct usb_hub_descriptor *desc;
287 int ret = -EINVAL;
288 u32 *data = (u32 *)buf;
289
290 dev_dbg(hcd->self.controller,
291 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
292 hcd, typeReq, wValue, wIndex, buf, wLength);
293
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100294 wIndex--;
295
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200296 switch (typeReq) {
297 case SetPortFeature:
298 if (wValue == USB_PORT_FEAT_POWER) {
299 dev_dbg(hcd->self.controller, "SetPortFeat: POWER\n");
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100300 if (valid_port(wIndex)) {
301 ohci_at91_usb_set_power(pdata, wIndex, 1);
302 ret = 0;
303 }
304
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200305 goto out;
306 }
307 break;
308
309 case ClearPortFeature:
310 switch (wValue) {
311 case USB_PORT_FEAT_C_OVER_CURRENT:
312 dev_dbg(hcd->self.controller,
313 "ClearPortFeature: C_OVER_CURRENT\n");
314
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100315 if (valid_port(wIndex)) {
316 pdata->overcurrent_changed[wIndex] = 0;
317 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200318 }
319
320 goto out;
321
322 case USB_PORT_FEAT_OVER_CURRENT:
323 dev_dbg(hcd->self.controller,
324 "ClearPortFeature: OVER_CURRENT\n");
325
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100326 if (valid_port(wIndex))
327 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200328
329 goto out;
330
331 case USB_PORT_FEAT_POWER:
332 dev_dbg(hcd->self.controller,
333 "ClearPortFeature: POWER\n");
334
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100335 if (valid_port(wIndex)) {
336 ohci_at91_usb_set_power(pdata, wIndex, 0);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200337 return 0;
338 }
339 }
340 break;
341 }
342
Manjunath Goudare3825b42013-09-21 16:38:42 +0530343 ret = orig_ohci_hub_control(hcd, typeReq, wValue, wIndex + 1,
344 buf, wLength);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200345 if (ret)
346 goto out;
347
348 switch (typeReq) {
349 case GetHubDescriptor:
350
351 /* update the hub's descriptor */
352
353 desc = (struct usb_hub_descriptor *)buf;
354
355 dev_dbg(hcd->self.controller, "wHubCharacteristics 0x%04x\n",
356 desc->wHubCharacteristics);
357
358 /* remove the old configurations for power-switching, and
359 * over-current protection, and insert our new configuration
360 */
361
362 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
363 desc->wHubCharacteristics |= cpu_to_le16(0x0001);
364
365 if (pdata->overcurrent_supported) {
366 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
367 desc->wHubCharacteristics |= cpu_to_le16(0x0008|0x0001);
368 }
369
370 dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",
371 desc->wHubCharacteristics);
372
373 return ret;
374
375 case GetPortStatus:
376 /* check port status */
377
378 dev_dbg(hcd->self.controller, "GetPortStatus(%d)\n", wIndex);
379
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100380 if (valid_port(wIndex)) {
381 if (!ohci_at91_usb_get_power(pdata, wIndex))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200382 *data &= ~cpu_to_le32(RH_PS_PPS);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200383
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100384 if (pdata->overcurrent_changed[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200385 *data |= cpu_to_le32(RH_PS_OCIC);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200386
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100387 if (pdata->overcurrent_status[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200388 *data |= cpu_to_le32(RH_PS_POCI);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200389 }
390 }
391
392 out:
393 return ret;
394}
395
Andrew Victor39a269c2006-01-22 10:32:13 -0800396/*-------------------------------------------------------------------------*/
397
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200398static irqreturn_t ohci_hcd_at91_overcurrent_irq(int irq, void *data)
399{
400 struct platform_device *pdev = data;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900401 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200402 int val, gpio, port;
403
404 /* From the GPIO notifying the over-current situation, find
405 * out the corresponding port */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100406 at91_for_each_port(port) {
Joachim Eastwood01bb6502012-09-23 22:56:00 +0200407 if (gpio_is_valid(pdata->overcurrent_pin[port]) &&
408 gpio_to_irq(pdata->overcurrent_pin[port]) == irq) {
Nicolas Ferree4499072012-02-11 14:23:06 +0100409 gpio = pdata->overcurrent_pin[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200410 break;
Nicolas Ferree4499072012-02-11 14:23:06 +0100411 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200412 }
413
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100414 if (port == AT91_MAX_USBH_PORTS) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200415 dev_err(& pdev->dev, "overcurrent interrupt from unknown GPIO\n");
416 return IRQ_HANDLED;
417 }
418
419 val = gpio_get_value(gpio);
420
421 /* When notified of an over-current situation, disable power
422 on the corresponding port, and mark this port in
423 over-current. */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100424 if (!val) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200425 ohci_at91_usb_set_power(pdata, port, 0);
426 pdata->overcurrent_status[port] = 1;
427 pdata->overcurrent_changed[port] = 1;
428 }
429
430 dev_dbg(& pdev->dev, "overcurrent situation %s\n",
431 val ? "exited" : "notified");
432
433 return IRQ_HANDLED;
434}
435
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800436#ifdef CONFIG_OF
437static const struct of_device_id at91_ohci_dt_ids[] = {
438 { .compatible = "atmel,at91rm9200-ohci" },
439 { /* sentinel */ }
440};
441
442MODULE_DEVICE_TABLE(of, at91_ohci_dt_ids);
443
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500444static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800445{
446 struct device_node *np = pdev->dev.of_node;
Russell King22d9d8e2013-06-10 16:28:49 +0100447 int i, gpio, ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800448 enum of_gpio_flags flags;
449 struct at91_usbh_data *pdata;
450 u32 ports;
451
452 if (!np)
453 return 0;
454
455 /* Right now device-tree probed devices don't get dma_mask set.
456 * Since shared usb code relies on it, set it here for now.
457 * Once we have dma capability bindings this can go away.
458 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100459 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100460 if (ret)
461 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800462
463 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
464 if (!pdata)
465 return -ENOMEM;
466
467 if (!of_property_read_u32(np, "num-ports", &ports))
468 pdata->ports = ports;
469
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100470 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800471 gpio = of_get_named_gpio_flags(np, "atmel,vbus-gpio", i, &flags);
472 pdata->vbus_pin[i] = gpio;
473 if (!gpio_is_valid(gpio))
474 continue;
475 pdata->vbus_pin_active_low[i] = flags & OF_GPIO_ACTIVE_LOW;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800476 }
477
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100478 at91_for_each_port(i)
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100479 pdata->overcurrent_pin[i] =
480 of_get_named_gpio_flags(np, "atmel,oc-gpio", i, &flags);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800481
482 pdev->dev.platform_data = pdata;
483
484 return 0;
485}
486#else
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500487static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800488{
489 return 0;
490}
491#endif
492
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200493/*-------------------------------------------------------------------------*/
494
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500495static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800496{
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800497 struct at91_usbh_data *pdata;
David Brownell4bde4a42007-12-27 11:19:49 -0800498 int i;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100499 int gpio;
500 int ret;
David Brownell4bde4a42007-12-27 11:19:49 -0800501
Nicolas Ferre1887ab2b2012-03-28 11:49:01 +0200502 ret = ohci_at91_of_init(pdev);
503 if (ret)
504 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800505
Jingoo Hand4f09e22013-07-30 19:59:40 +0900506 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800507
David Brownell4bde4a42007-12-27 11:19:49 -0800508 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100509 at91_for_each_port(i) {
Nicolas Ferre6fffb772012-08-29 11:49:18 +0200510 /*
511 * do not configure PIO if not in relation with
512 * real USB port on board
513 */
514 if (i >= pdata->ports) {
515 pdata->vbus_pin[i] = -EINVAL;
516 pdata->overcurrent_pin[i] = -EINVAL;
517 break;
518 }
519
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800520 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800521 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100522 gpio = pdata->vbus_pin[i];
523
524 ret = gpio_request(gpio, "ohci_vbus");
525 if (ret) {
526 dev_err(&pdev->dev,
527 "can't request vbus gpio %d\n", gpio);
528 continue;
529 }
530 ret = gpio_direction_output(gpio,
531 !pdata->vbus_pin_active_low[i]);
532 if (ret) {
533 dev_err(&pdev->dev,
534 "can't put vbus gpio %d as output %d\n",
535 gpio, !pdata->vbus_pin_active_low[i]);
536 gpio_free(gpio);
537 continue;
538 }
539
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200540 ohci_at91_usb_set_power(pdata, i, 1);
541 }
542
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100543 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800544 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200545 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100546 gpio = pdata->overcurrent_pin[i];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200547
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100548 ret = gpio_request(gpio, "ohci_overcurrent");
549 if (ret) {
550 dev_err(&pdev->dev,
551 "can't request overcurrent gpio %d\n",
552 gpio);
553 continue;
554 }
555
556 ret = gpio_direction_input(gpio);
557 if (ret) {
558 dev_err(&pdev->dev,
559 "can't configure overcurrent gpio %d as input\n",
560 gpio);
561 gpio_free(gpio);
562 continue;
563 }
564
565 ret = request_irq(gpio_to_irq(gpio),
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200566 ohci_hcd_at91_overcurrent_irq,
567 IRQF_SHARED, "ohci_overcurrent", pdev);
568 if (ret) {
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100569 gpio_free(gpio);
570 dev_err(&pdev->dev,
571 "can't get gpio IRQ for overcurrent\n");
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200572 }
David Brownell4bde4a42007-12-27 11:19:49 -0800573 }
574 }
575
David Brownell0365ee02006-06-19 14:27:20 -0700576 device_init_wakeup(&pdev->dev, 1);
577 return usb_hcd_at91_probe(&ohci_at91_hc_driver, pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800578}
579
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500580static int ohci_hcd_at91_drv_remove(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800581{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900582 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
David Brownell4bde4a42007-12-27 11:19:49 -0800583 int i;
584
585 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100586 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800587 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800588 continue;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200589 ohci_at91_usb_set_power(pdata, i, 0);
David Brownell4bde4a42007-12-27 11:19:49 -0800590 gpio_free(pdata->vbus_pin[i]);
591 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200592
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100593 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800594 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200595 continue;
596 free_irq(gpio_to_irq(pdata->overcurrent_pin[i]), pdev);
597 gpio_free(pdata->overcurrent_pin[i]);
598 }
David Brownell4bde4a42007-12-27 11:19:49 -0800599 }
600
David Brownell0365ee02006-06-19 14:27:20 -0700601 device_init_wakeup(&pdev->dev, 0);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700602 usb_hcd_at91_remove(platform_get_drvdata(pdev), pdev);
603 return 0;
Andrew Victor39a269c2006-01-22 10:32:13 -0800604}
605
606#ifdef CONFIG_PM
Andrew Victor39a269c2006-01-22 10:32:13 -0800607
David Brownell68ba61b2006-04-02 20:26:21 -0800608static int
David Brownell0365ee02006-06-19 14:27:20 -0700609ohci_hcd_at91_drv_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownell68ba61b2006-04-02 20:26:21 -0800610{
David Brownell0365ee02006-06-19 14:27:20 -0700611 struct usb_hcd *hcd = platform_get_drvdata(pdev);
612 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Majunath Goudara9d38402013-11-13 17:40:17 +0530613 bool do_wakeup = device_may_wakeup(&pdev->dev);
614 int ret;
David Brownell0365ee02006-06-19 14:27:20 -0700615
Majunath Goudara9d38402013-11-13 17:40:17 +0530616 if (do_wakeup)
David Brownell0365ee02006-06-19 14:27:20 -0700617 enable_irq_wake(hcd->irq);
David Brownell0365ee02006-06-19 14:27:20 -0700618
Majunath Goudara9d38402013-11-13 17:40:17 +0530619 ret = ohci_suspend(hcd, do_wakeup);
620 if (ret) {
621 disable_irq_wake(hcd->irq);
622 return ret;
623 }
David Brownell0365ee02006-06-19 14:27:20 -0700624 /*
625 * The integrated transceivers seem unable to notice disconnect,
626 * reconnect, or wakeup without the 48 MHz clock active. so for
627 * correctness, always discard connection state (using reset).
628 *
629 * REVISIT: some boards will be able to turn VBUS off...
630 */
631 if (at91_suspend_entering_slow_clock()) {
Manjunath Goudare3825b42013-09-21 16:38:42 +0530632 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
633 ohci->hc_control &= OHCI_CTRL_RWC;
634 ohci_writel(ohci, ohci->hc_control, &ohci->regs->control);
635 ohci->rh_state = OHCI_RH_HALTED;
636
Patrice Vilchez869aa982010-04-28 13:45:40 +0200637 /* flush the writes */
638 (void) ohci_readl (ohci, &ohci->regs->control);
Andrew Victored077bb2007-02-16 10:18:58 -0800639 at91_stop_clock();
David Brownell0365ee02006-06-19 14:27:20 -0700640 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800641
Majunath Goudara9d38402013-11-13 17:40:17 +0530642 return ret;
Andrew Victor39a269c2006-01-22 10:32:13 -0800643}
644
David Brownell0365ee02006-06-19 14:27:20 -0700645static int ohci_hcd_at91_drv_resume(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800646{
Marc Pignat6dde8962007-01-09 14:00:11 -0800647 struct usb_hcd *hcd = platform_get_drvdata(pdev);
648
649 if (device_may_wakeup(&pdev->dev))
650 disable_irq_wake(hcd->irq);
651
Andrew Victored077bb2007-02-16 10:18:58 -0800652 if (!clocked)
653 at91_start_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -0800654
Florian Fainellicfa49b42012-10-08 15:11:29 +0200655 ohci_resume(hcd, false);
Andrew Victor39a269c2006-01-22 10:32:13 -0800656 return 0;
657}
658#else
659#define ohci_hcd_at91_drv_suspend NULL
660#define ohci_hcd_at91_drv_resume NULL
661#endif
662
Andrew Victor39a269c2006-01-22 10:32:13 -0800663static struct platform_driver ohci_hcd_at91_driver = {
664 .probe = ohci_hcd_at91_drv_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500665 .remove = ohci_hcd_at91_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700666 .shutdown = usb_hcd_platform_shutdown,
Andrew Victor39a269c2006-01-22 10:32:13 -0800667 .suspend = ohci_hcd_at91_drv_suspend,
668 .resume = ohci_hcd_at91_drv_resume,
669 .driver = {
David Brownell0365ee02006-06-19 14:27:20 -0700670 .name = "at91_ohci",
Andrew Victor39a269c2006-01-22 10:32:13 -0800671 .owner = THIS_MODULE,
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800672 .of_match_table = of_match_ptr(at91_ohci_dt_ids),
Andrew Victor39a269c2006-01-22 10:32:13 -0800673 },
674};
Manjunath Goudare3825b42013-09-21 16:38:42 +0530675
676static int __init ohci_at91_init(void)
677{
678 if (usb_disabled())
679 return -ENODEV;
680
681 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
682 ohci_init_driver(&ohci_at91_hc_driver, NULL);
683
684 /*
685 * The Atmel HW has some unusual quirks, which require Atmel-specific
686 * workarounds. We override certain hc_driver functions here to
687 * achieve that. We explicitly do not enhance ohci_driver_overrides to
688 * allow this more easily, since this is an unusual case, and we don't
689 * want to encourage others to override these functions by making it
690 * too easy.
691 */
692
693 orig_ohci_hub_control = ohci_at91_hc_driver.hub_control;
694 orig_ohci_hub_status_data = ohci_at91_hc_driver.hub_status_data;
695
696 ohci_at91_hc_driver.hub_status_data = ohci_at91_hub_status_data;
697 ohci_at91_hc_driver.hub_control = ohci_at91_hub_control;
698
699 return platform_driver_register(&ohci_hcd_at91_driver);
700}
701module_init(ohci_at91_init);
702
703static void __exit ohci_at91_cleanup(void)
704{
705 platform_driver_unregister(&ohci_hcd_at91_driver);
706}
707module_exit(ohci_at91_cleanup);
708
709MODULE_DESCRIPTION(DRIVER_DESC);
710MODULE_LICENSE("GPL");
711MODULE_ALIAS("platform:at91_ohci");