blob: e95e41cf7378c722f3fdeceeed55bb9ffbadb100 [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 */
36static struct clk *iclk, *fclk, *uclk, *hclk;
Manjunath Goudare3825b42013-09-21 16:38:42 +053037/* interface and function clocks; sometimes also an AHB clock */
38
39#define DRIVER_DESC "OHCI Atmel driver"
40
41static const char hcd_name[] = "ohci-atmel";
42
43static struct hc_driver __read_mostly ohci_at91_hc_driver;
David Brownell0365ee02006-06-19 14:27:20 -070044static int clocked;
Andrew Victor39a269c2006-01-22 10:32:13 -080045
46extern int usb_disabled(void);
47
48/*-------------------------------------------------------------------------*/
49
Andrew Victored077bb2007-02-16 10:18:58 -080050static void at91_start_clock(void)
51{
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +020052 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
53 clk_set_rate(uclk, 48000000);
54 clk_prepare_enable(uclk);
55 }
Boris BREZILLON8e82d8d2013-06-19 13:21:08 +020056 clk_prepare_enable(hclk);
57 clk_prepare_enable(iclk);
58 clk_prepare_enable(fclk);
Andrew Victored077bb2007-02-16 10:18:58 -080059 clocked = 1;
60}
61
62static void at91_stop_clock(void)
63{
Boris BREZILLON8e82d8d2013-06-19 13:21:08 +020064 clk_disable_unprepare(fclk);
65 clk_disable_unprepare(iclk);
66 clk_disable_unprepare(hclk);
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +020067 if (IS_ENABLED(CONFIG_COMMON_CLK))
68 clk_disable_unprepare(uclk);
Andrew Victored077bb2007-02-16 10:18:58 -080069 clocked = 0;
70}
71
Andrew Victor39a269c2006-01-22 10:32:13 -080072static void at91_start_hc(struct platform_device *pdev)
73{
74 struct usb_hcd *hcd = platform_get_drvdata(pdev);
75 struct ohci_regs __iomem *regs = hcd->regs;
76
David Brownell0365ee02006-06-19 14:27:20 -070077 dev_dbg(&pdev->dev, "start\n");
Andrew Victor39a269c2006-01-22 10:32:13 -080078
79 /*
80 * Start the USB clocks.
81 */
Andrew Victored077bb2007-02-16 10:18:58 -080082 at91_start_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -080083
84 /*
85 * The USB host controller must remain in reset.
86 */
87 writel(0, &regs->control);
88}
89
90static void at91_stop_hc(struct platform_device *pdev)
91{
92 struct usb_hcd *hcd = platform_get_drvdata(pdev);
93 struct ohci_regs __iomem *regs = hcd->regs;
94
David Brownell0365ee02006-06-19 14:27:20 -070095 dev_dbg(&pdev->dev, "stop\n");
Andrew Victor39a269c2006-01-22 10:32:13 -080096
97 /*
98 * Put the USB host controller into reset.
99 */
100 writel(0, &regs->control);
101
102 /*
103 * Stop the USB clocks.
104 */
Andrew Victored077bb2007-02-16 10:18:58 -0800105 at91_stop_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -0800106}
107
108
109/*-------------------------------------------------------------------------*/
110
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500111static void usb_hcd_at91_remove (struct usb_hcd *, struct platform_device *);
Andrew Victor39a269c2006-01-22 10:32:13 -0800112
113/* configure so an HC device and id are always provided */
114/* always called with process context; sleeping is OK */
115
116
117/**
David Brownell0365ee02006-06-19 14:27:20 -0700118 * usb_hcd_at91_probe - initialize AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800119 * Context: !in_interrupt()
120 *
121 * Allocates basic resources for this USB host controller, and
122 * then invokes the start() method for the HCD associated with it
123 * through the hotplug entry's driver_data.
Andrew Victor39a269c2006-01-22 10:32:13 -0800124 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500125static int usb_hcd_at91_probe(const struct hc_driver *driver,
David Brownell0365ee02006-06-19 14:27:20 -0700126 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800127{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530128 struct at91_usbh_data *board;
129 struct ohci_hcd *ohci;
Andrew Victor39a269c2006-01-22 10:32:13 -0800130 int retval;
131 struct usb_hcd *hcd = NULL;
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100132 struct device *dev = &pdev->dev;
133 struct resource *res;
134 int irq;
Andrew Victor39a269c2006-01-22 10:32:13 -0800135
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100136 irq = platform_get_irq(pdev, 0);
137 if (irq < 0) {
138 dev_dbg(dev, "hcd probe: missing irq resource\n");
139 return irq;
Andrew Victor39a269c2006-01-22 10:32:13 -0800140 }
141
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100142 hcd = usb_create_hcd(driver, dev, "at91");
Andrew Victor39a269c2006-01-22 10:32:13 -0800143 if (!hcd)
144 return -ENOMEM;
Andrew Victor39a269c2006-01-22 10:32:13 -0800145
Varka Bhadram04dc3152014-11-04 07:51:12 +0530146 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100147 hcd->regs = devm_ioremap_resource(dev, res);
148 if (IS_ERR(hcd->regs)) {
149 retval = PTR_ERR(hcd->regs);
150 goto err;
Andrew Victor39a269c2006-01-22 10:32:13 -0800151 }
Varka Bhadram04dc3152014-11-04 07:51:12 +0530152 hcd->rsrc_start = res->start;
153 hcd->rsrc_len = resource_size(res);
Andrew Victor39a269c2006-01-22 10:32:13 -0800154
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100155 iclk = devm_clk_get(dev, "ohci_clk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100156 if (IS_ERR(iclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100157 dev_err(dev, "failed to get ohci_clk\n");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100158 retval = PTR_ERR(iclk);
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100159 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100160 }
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100161 fclk = devm_clk_get(dev, "uhpck");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100162 if (IS_ERR(fclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100163 dev_err(dev, "failed to get uhpck\n");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100164 retval = PTR_ERR(fclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100165 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100166 }
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100167 hclk = devm_clk_get(dev, "hclk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100168 if (IS_ERR(hclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100169 dev_err(dev, "failed to get hclk\n");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100170 retval = PTR_ERR(hclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100171 goto err;
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100172 }
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200173 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100174 uclk = devm_clk_get(dev, "usb_clk");
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200175 if (IS_ERR(uclk)) {
Boris BREZILLON5b218a02013-12-09 09:51:54 +0100176 dev_err(dev, "failed to get uclk\n");
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200177 retval = PTR_ERR(uclk);
Boris BREZILLONfc7a3252013-12-09 09:51:55 +0100178 goto err;
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200179 }
180 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800181
Manjunath Goudare3825b42013-09-21 16:38:42 +0530182 board = hcd->self.controller->platform_data;
183 ohci = hcd_to_ohci(hcd);
184 ohci->num_ports = board->ports;
Andrew Victor39a269c2006-01-22 10:32:13 -0800185 at91_start_hc(pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800186
Boris BREZILLONfb5f1832013-12-08 15:59:59 +0100187 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
Arnd Bergmann1f53b482014-01-07 12:54:58 +0100188 if (retval == 0) {
Peter Chen3c9740a2013-11-05 10:46:02 +0800189 device_wakeup_enable(hcd->self.controller);
Andrew Victor39a269c2006-01-22 10:32:13 -0800190 return retval;
Peter Chen3c9740a2013-11-05 10:46:02 +0800191 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800192
193 /* Error handling */
194 at91_stop_hc(pdev);
195
Boris BREZILLONcca2bbb2013-12-09 09:51:53 +0100196 err:
Andrew Victor39a269c2006-01-22 10:32:13 -0800197 usb_put_hcd(hcd);
198 return retval;
199}
200
201
Andrew Victor39a269c2006-01-22 10:32:13 -0800202/* may be called with controller, bus, and devices active */
203
204/**
David Brownell0365ee02006-06-19 14:27:20 -0700205 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800206 * @dev: USB Host Controller being removed
207 * Context: !in_interrupt()
208 *
209 * Reverses the effect of usb_hcd_at91_probe(), first invoking
210 * the HCD's stop() method. It is always called from a thread
David Brownell0365ee02006-06-19 14:27:20 -0700211 * context, "rmmod" or something similar.
Andrew Victor39a269c2006-01-22 10:32:13 -0800212 *
213 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500214static void usb_hcd_at91_remove(struct usb_hcd *hcd,
David Brownell0365ee02006-06-19 14:27:20 -0700215 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800216{
217 usb_remove_hcd(hcd);
218 at91_stop_hc(pdev);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700219 usb_put_hcd(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -0800220}
221
222/*-------------------------------------------------------------------------*/
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200223static void ohci_at91_usb_set_power(struct at91_usbh_data *pdata, int port, int enable)
224{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100225 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200226 return;
227
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800228 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100229 return;
230
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100231 gpio_set_value(pdata->vbus_pin[port],
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100232 pdata->vbus_pin_active_low[port] ^ enable);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200233}
234
235static int ohci_at91_usb_get_power(struct at91_usbh_data *pdata, int port)
236{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100237 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200238 return -EINVAL;
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 -EINVAL;
242
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100243 return gpio_get_value(pdata->vbus_pin[port]) ^
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100244 pdata->vbus_pin_active_low[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200245}
246
247/*
248 * Update the status data from the hub with the over-current indicator change.
249 */
250static int ohci_at91_hub_status_data(struct usb_hcd *hcd, char *buf)
251{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530252 struct at91_usbh_data *pdata = hcd->self.controller->platform_data;
Laurent Pinchart42b59eb2014-04-16 18:00:09 +0200253 int length = ohci_hub_status_data(hcd, buf);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200254 int port;
255
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100256 at91_for_each_port(port) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200257 if (pdata->overcurrent_changed[port]) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100258 if (!length)
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200259 length = 1;
260 buf[0] |= 1 << (port + 1);
261 }
262 }
263
264 return length;
265}
266
267/*
268 * Look at the control requests to the root hub and see if we need to override.
269 */
270static int ohci_at91_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
271 u16 wIndex, char *buf, u16 wLength)
272{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900273 struct at91_usbh_data *pdata = dev_get_platdata(hcd->self.controller);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200274 struct usb_hub_descriptor *desc;
275 int ret = -EINVAL;
276 u32 *data = (u32 *)buf;
277
278 dev_dbg(hcd->self.controller,
279 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
280 hcd, typeReq, wValue, wIndex, buf, wLength);
281
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100282 wIndex--;
283
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200284 switch (typeReq) {
285 case SetPortFeature:
286 if (wValue == USB_PORT_FEAT_POWER) {
287 dev_dbg(hcd->self.controller, "SetPortFeat: POWER\n");
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100288 if (valid_port(wIndex)) {
289 ohci_at91_usb_set_power(pdata, wIndex, 1);
290 ret = 0;
291 }
292
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200293 goto out;
294 }
295 break;
296
297 case ClearPortFeature:
298 switch (wValue) {
299 case USB_PORT_FEAT_C_OVER_CURRENT:
300 dev_dbg(hcd->self.controller,
301 "ClearPortFeature: C_OVER_CURRENT\n");
302
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100303 if (valid_port(wIndex)) {
304 pdata->overcurrent_changed[wIndex] = 0;
305 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200306 }
307
308 goto out;
309
310 case USB_PORT_FEAT_OVER_CURRENT:
311 dev_dbg(hcd->self.controller,
312 "ClearPortFeature: OVER_CURRENT\n");
313
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100314 if (valid_port(wIndex))
315 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200316
317 goto out;
318
319 case USB_PORT_FEAT_POWER:
320 dev_dbg(hcd->self.controller,
321 "ClearPortFeature: POWER\n");
322
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100323 if (valid_port(wIndex)) {
324 ohci_at91_usb_set_power(pdata, wIndex, 0);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200325 return 0;
326 }
327 }
328 break;
329 }
330
Laurent Pinchart42b59eb2014-04-16 18:00:09 +0200331 ret = ohci_hub_control(hcd, typeReq, wValue, wIndex + 1, buf, wLength);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200332 if (ret)
333 goto out;
334
335 switch (typeReq) {
336 case GetHubDescriptor:
337
338 /* update the hub's descriptor */
339
340 desc = (struct usb_hub_descriptor *)buf;
341
342 dev_dbg(hcd->self.controller, "wHubCharacteristics 0x%04x\n",
343 desc->wHubCharacteristics);
344
345 /* remove the old configurations for power-switching, and
346 * over-current protection, and insert our new configuration
347 */
348
349 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
Sergei Shtylyova9c49bc2015-01-19 01:39:44 +0300350 desc->wHubCharacteristics |=
351 cpu_to_le16(HUB_CHAR_INDV_PORT_LPSM);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200352
353 if (pdata->overcurrent_supported) {
354 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
Sergei Shtylyova9c49bc2015-01-19 01:39:44 +0300355 desc->wHubCharacteristics |=
356 cpu_to_le16(HUB_CHAR_INDV_PORT_OCPM);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200357 }
358
359 dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",
360 desc->wHubCharacteristics);
361
362 return ret;
363
364 case GetPortStatus:
365 /* check port status */
366
367 dev_dbg(hcd->self.controller, "GetPortStatus(%d)\n", wIndex);
368
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100369 if (valid_port(wIndex)) {
370 if (!ohci_at91_usb_get_power(pdata, wIndex))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200371 *data &= ~cpu_to_le32(RH_PS_PPS);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200372
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100373 if (pdata->overcurrent_changed[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200374 *data |= cpu_to_le32(RH_PS_OCIC);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200375
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100376 if (pdata->overcurrent_status[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200377 *data |= cpu_to_le32(RH_PS_POCI);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200378 }
379 }
380
381 out:
382 return ret;
383}
384
Andrew Victor39a269c2006-01-22 10:32:13 -0800385/*-------------------------------------------------------------------------*/
386
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200387static irqreturn_t ohci_hcd_at91_overcurrent_irq(int irq, void *data)
388{
389 struct platform_device *pdev = data;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900390 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200391 int val, gpio, port;
392
393 /* From the GPIO notifying the over-current situation, find
394 * out the corresponding port */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100395 at91_for_each_port(port) {
Joachim Eastwood01bb6502012-09-23 22:56:00 +0200396 if (gpio_is_valid(pdata->overcurrent_pin[port]) &&
397 gpio_to_irq(pdata->overcurrent_pin[port]) == irq) {
Nicolas Ferree4499072012-02-11 14:23:06 +0100398 gpio = pdata->overcurrent_pin[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200399 break;
Nicolas Ferree4499072012-02-11 14:23:06 +0100400 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200401 }
402
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100403 if (port == AT91_MAX_USBH_PORTS) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200404 dev_err(& pdev->dev, "overcurrent interrupt from unknown GPIO\n");
405 return IRQ_HANDLED;
406 }
407
408 val = gpio_get_value(gpio);
409
410 /* When notified of an over-current situation, disable power
411 on the corresponding port, and mark this port in
412 over-current. */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100413 if (!val) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200414 ohci_at91_usb_set_power(pdata, port, 0);
415 pdata->overcurrent_status[port] = 1;
416 pdata->overcurrent_changed[port] = 1;
417 }
418
419 dev_dbg(& pdev->dev, "overcurrent situation %s\n",
420 val ? "exited" : "notified");
421
422 return IRQ_HANDLED;
423}
424
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800425#ifdef CONFIG_OF
426static const struct of_device_id at91_ohci_dt_ids[] = {
427 { .compatible = "atmel,at91rm9200-ohci" },
428 { /* sentinel */ }
429};
430
431MODULE_DEVICE_TABLE(of, at91_ohci_dt_ids);
432
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500433static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800434{
435 struct device_node *np = pdev->dev.of_node;
Russell King22d9d8e2013-06-10 16:28:49 +0100436 int i, gpio, ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800437 enum of_gpio_flags flags;
438 struct at91_usbh_data *pdata;
439 u32 ports;
440
441 if (!np)
442 return 0;
443
444 /* Right now device-tree probed devices don't get dma_mask set.
445 * Since shared usb code relies on it, set it here for now.
446 * Once we have dma capability bindings this can go away.
447 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100448 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100449 if (ret)
450 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800451
452 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
453 if (!pdata)
454 return -ENOMEM;
455
456 if (!of_property_read_u32(np, "num-ports", &ports))
457 pdata->ports = ports;
458
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100459 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800460 gpio = of_get_named_gpio_flags(np, "atmel,vbus-gpio", i, &flags);
461 pdata->vbus_pin[i] = gpio;
462 if (!gpio_is_valid(gpio))
463 continue;
464 pdata->vbus_pin_active_low[i] = flags & OF_GPIO_ACTIVE_LOW;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800465 }
466
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100467 at91_for_each_port(i)
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100468 pdata->overcurrent_pin[i] =
469 of_get_named_gpio_flags(np, "atmel,oc-gpio", i, &flags);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800470
471 pdev->dev.platform_data = pdata;
472
473 return 0;
474}
475#else
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500476static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800477{
478 return 0;
479}
480#endif
481
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200482/*-------------------------------------------------------------------------*/
483
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500484static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800485{
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800486 struct at91_usbh_data *pdata;
David Brownell4bde4a42007-12-27 11:19:49 -0800487 int i;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100488 int gpio;
489 int ret;
David Brownell4bde4a42007-12-27 11:19:49 -0800490
Nicolas Ferre1887ab2b2012-03-28 11:49:01 +0200491 ret = ohci_at91_of_init(pdev);
492 if (ret)
493 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800494
Jingoo Hand4f09e22013-07-30 19:59:40 +0900495 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800496
David Brownell4bde4a42007-12-27 11:19:49 -0800497 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100498 at91_for_each_port(i) {
Nicolas Ferre6fffb772012-08-29 11:49:18 +0200499 /*
500 * do not configure PIO if not in relation with
501 * real USB port on board
502 */
503 if (i >= pdata->ports) {
504 pdata->vbus_pin[i] = -EINVAL;
505 pdata->overcurrent_pin[i] = -EINVAL;
506 break;
507 }
508
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800509 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800510 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100511 gpio = pdata->vbus_pin[i];
512
513 ret = gpio_request(gpio, "ohci_vbus");
514 if (ret) {
515 dev_err(&pdev->dev,
516 "can't request vbus gpio %d\n", gpio);
517 continue;
518 }
519 ret = gpio_direction_output(gpio,
520 !pdata->vbus_pin_active_low[i]);
521 if (ret) {
522 dev_err(&pdev->dev,
523 "can't put vbus gpio %d as output %d\n",
524 gpio, !pdata->vbus_pin_active_low[i]);
525 gpio_free(gpio);
526 continue;
527 }
528
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200529 ohci_at91_usb_set_power(pdata, i, 1);
530 }
531
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100532 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800533 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200534 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100535 gpio = pdata->overcurrent_pin[i];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200536
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100537 ret = gpio_request(gpio, "ohci_overcurrent");
538 if (ret) {
539 dev_err(&pdev->dev,
540 "can't request overcurrent gpio %d\n",
541 gpio);
542 continue;
543 }
544
545 ret = gpio_direction_input(gpio);
546 if (ret) {
547 dev_err(&pdev->dev,
548 "can't configure overcurrent gpio %d as input\n",
549 gpio);
550 gpio_free(gpio);
551 continue;
552 }
553
554 ret = request_irq(gpio_to_irq(gpio),
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200555 ohci_hcd_at91_overcurrent_irq,
556 IRQF_SHARED, "ohci_overcurrent", pdev);
557 if (ret) {
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100558 gpio_free(gpio);
559 dev_err(&pdev->dev,
560 "can't get gpio IRQ for overcurrent\n");
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200561 }
David Brownell4bde4a42007-12-27 11:19:49 -0800562 }
563 }
564
David Brownell0365ee02006-06-19 14:27:20 -0700565 device_init_wakeup(&pdev->dev, 1);
566 return usb_hcd_at91_probe(&ohci_at91_hc_driver, pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800567}
568
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500569static int ohci_hcd_at91_drv_remove(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800570{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900571 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
David Brownell4bde4a42007-12-27 11:19:49 -0800572 int i;
573
574 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100575 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800576 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800577 continue;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200578 ohci_at91_usb_set_power(pdata, i, 0);
David Brownell4bde4a42007-12-27 11:19:49 -0800579 gpio_free(pdata->vbus_pin[i]);
580 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200581
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100582 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800583 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200584 continue;
585 free_irq(gpio_to_irq(pdata->overcurrent_pin[i]), pdev);
586 gpio_free(pdata->overcurrent_pin[i]);
587 }
David Brownell4bde4a42007-12-27 11:19:49 -0800588 }
589
David Brownell0365ee02006-06-19 14:27:20 -0700590 device_init_wakeup(&pdev->dev, 0);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700591 usb_hcd_at91_remove(platform_get_drvdata(pdev), pdev);
592 return 0;
Andrew Victor39a269c2006-01-22 10:32:13 -0800593}
594
595#ifdef CONFIG_PM
Andrew Victor39a269c2006-01-22 10:32:13 -0800596
David Brownell68ba61b2006-04-02 20:26:21 -0800597static int
David Brownell0365ee02006-06-19 14:27:20 -0700598ohci_hcd_at91_drv_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownell68ba61b2006-04-02 20:26:21 -0800599{
David Brownell0365ee02006-06-19 14:27:20 -0700600 struct usb_hcd *hcd = platform_get_drvdata(pdev);
601 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
Majunath Goudara9d38402013-11-13 17:40:17 +0530602 bool do_wakeup = device_may_wakeup(&pdev->dev);
603 int ret;
David Brownell0365ee02006-06-19 14:27:20 -0700604
Majunath Goudara9d38402013-11-13 17:40:17 +0530605 if (do_wakeup)
David Brownell0365ee02006-06-19 14:27:20 -0700606 enable_irq_wake(hcd->irq);
David Brownell0365ee02006-06-19 14:27:20 -0700607
Majunath Goudara9d38402013-11-13 17:40:17 +0530608 ret = ohci_suspend(hcd, do_wakeup);
609 if (ret) {
610 disable_irq_wake(hcd->irq);
611 return ret;
612 }
David Brownell0365ee02006-06-19 14:27:20 -0700613 /*
614 * The integrated transceivers seem unable to notice disconnect,
615 * reconnect, or wakeup without the 48 MHz clock active. so for
616 * correctness, always discard connection state (using reset).
617 *
618 * REVISIT: some boards will be able to turn VBUS off...
619 */
620 if (at91_suspend_entering_slow_clock()) {
Manjunath Goudare3825b42013-09-21 16:38:42 +0530621 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
622 ohci->hc_control &= OHCI_CTRL_RWC;
623 ohci_writel(ohci, ohci->hc_control, &ohci->regs->control);
624 ohci->rh_state = OHCI_RH_HALTED;
625
Patrice Vilchez869aa982010-04-28 13:45:40 +0200626 /* flush the writes */
627 (void) ohci_readl (ohci, &ohci->regs->control);
Andrew Victored077bb2007-02-16 10:18:58 -0800628 at91_stop_clock();
David Brownell0365ee02006-06-19 14:27:20 -0700629 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800630
Majunath Goudara9d38402013-11-13 17:40:17 +0530631 return ret;
Andrew Victor39a269c2006-01-22 10:32:13 -0800632}
633
David Brownell0365ee02006-06-19 14:27:20 -0700634static int ohci_hcd_at91_drv_resume(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800635{
Marc Pignat6dde8962007-01-09 14:00:11 -0800636 struct usb_hcd *hcd = platform_get_drvdata(pdev);
637
638 if (device_may_wakeup(&pdev->dev))
639 disable_irq_wake(hcd->irq);
640
Andrew Victored077bb2007-02-16 10:18:58 -0800641 if (!clocked)
642 at91_start_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -0800643
Florian Fainellicfa49b42012-10-08 15:11:29 +0200644 ohci_resume(hcd, false);
Andrew Victor39a269c2006-01-22 10:32:13 -0800645 return 0;
646}
647#else
648#define ohci_hcd_at91_drv_suspend NULL
649#define ohci_hcd_at91_drv_resume NULL
650#endif
651
Andrew Victor39a269c2006-01-22 10:32:13 -0800652static struct platform_driver ohci_hcd_at91_driver = {
653 .probe = ohci_hcd_at91_drv_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500654 .remove = ohci_hcd_at91_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700655 .shutdown = usb_hcd_platform_shutdown,
Andrew Victor39a269c2006-01-22 10:32:13 -0800656 .suspend = ohci_hcd_at91_drv_suspend,
657 .resume = ohci_hcd_at91_drv_resume,
658 .driver = {
David Brownell0365ee02006-06-19 14:27:20 -0700659 .name = "at91_ohci",
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800660 .of_match_table = of_match_ptr(at91_ohci_dt_ids),
Andrew Victor39a269c2006-01-22 10:32:13 -0800661 },
662};
Manjunath Goudare3825b42013-09-21 16:38:42 +0530663
664static int __init ohci_at91_init(void)
665{
666 if (usb_disabled())
667 return -ENODEV;
668
669 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
670 ohci_init_driver(&ohci_at91_hc_driver, NULL);
671
672 /*
673 * The Atmel HW has some unusual quirks, which require Atmel-specific
674 * workarounds. We override certain hc_driver functions here to
675 * achieve that. We explicitly do not enhance ohci_driver_overrides to
676 * allow this more easily, since this is an unusual case, and we don't
677 * want to encourage others to override these functions by making it
678 * too easy.
679 */
680
Manjunath Goudare3825b42013-09-21 16:38:42 +0530681 ohci_at91_hc_driver.hub_status_data = ohci_at91_hub_status_data;
682 ohci_at91_hc_driver.hub_control = ohci_at91_hub_control;
683
684 return platform_driver_register(&ohci_hcd_at91_driver);
685}
686module_init(ohci_at91_init);
687
688static void __exit ohci_at91_cleanup(void)
689{
690 platform_driver_unregister(&ohci_hcd_at91_driver);
691}
692module_exit(ohci_at91_cleanup);
693
694MODULE_DESCRIPTION(DRIVER_DESC);
695MODULE_LICENSE("GPL");
696MODULE_ALIAS("platform:at91_ohci");