blob: 476b5a5baf251a0781a0843fcead65baab0f83c6 [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;
139
140 if (pdev->num_resources != 2) {
141 pr_debug("hcd probe: invalid num_resources");
142 return -ENODEV;
143 }
144
David Brownell0365ee02006-06-19 14:27:20 -0700145 if ((pdev->resource[0].flags != IORESOURCE_MEM)
146 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
Andrew Victor39a269c2006-01-22 10:32:13 -0800147 pr_debug("hcd probe: invalid resource type\n");
148 return -ENODEV;
149 }
150
David Brownell0365ee02006-06-19 14:27:20 -0700151 hcd = usb_create_hcd(driver, &pdev->dev, "at91");
Andrew Victor39a269c2006-01-22 10:32:13 -0800152 if (!hcd)
153 return -ENOMEM;
154 hcd->rsrc_start = pdev->resource[0].start;
Nicolas Ferre7a82f612012-05-09 10:49:41 +0200155 hcd->rsrc_len = resource_size(&pdev->resource[0]);
Andrew Victor39a269c2006-01-22 10:32:13 -0800156
157 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
158 pr_debug("request_mem_region failed\n");
159 retval = -EBUSY;
160 goto err1;
161 }
162
163 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
164 if (!hcd->regs) {
165 pr_debug("ioremap failed\n");
166 retval = -EIO;
167 goto err2;
168 }
169
170 iclk = clk_get(&pdev->dev, "ohci_clk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100171 if (IS_ERR(iclk)) {
172 dev_err(&pdev->dev, "failed to get ohci_clk\n");
173 retval = PTR_ERR(iclk);
174 goto err3;
175 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800176 fclk = clk_get(&pdev->dev, "uhpck");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100177 if (IS_ERR(fclk)) {
178 dev_err(&pdev->dev, "failed to get uhpck\n");
179 retval = PTR_ERR(fclk);
180 goto err4;
181 }
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200182 hclk = clk_get(&pdev->dev, "hclk");
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100183 if (IS_ERR(hclk)) {
184 dev_err(&pdev->dev, "failed to get hclk\n");
185 retval = PTR_ERR(hclk);
186 goto err5;
187 }
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200188 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
189 uclk = clk_get(&pdev->dev, "usb_clk");
190 if (IS_ERR(uclk)) {
191 dev_err(&pdev->dev, "failed to get uclk\n");
192 retval = PTR_ERR(uclk);
193 goto err6;
194 }
195 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800196
Manjunath Goudare3825b42013-09-21 16:38:42 +0530197 board = hcd->self.controller->platform_data;
198 ohci = hcd_to_ohci(hcd);
199 ohci->num_ports = board->ports;
Andrew Victor39a269c2006-01-22 10:32:13 -0800200 at91_start_hc(pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800201
Nicolas Ferre2f2cac32009-07-27 14:59:24 -0700202 retval = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_SHARED);
Andrew Victor39a269c2006-01-22 10:32:13 -0800203 if (retval == 0)
204 return retval;
205
206 /* Error handling */
207 at91_stop_hc(pdev);
208
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200209 if (IS_ENABLED(CONFIG_COMMON_CLK))
210 clk_put(uclk);
211 err6:
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200212 clk_put(hclk);
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100213 err5:
Andrew Victor39a269c2006-01-22 10:32:13 -0800214 clk_put(fclk);
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100215 err4:
Andrew Victor39a269c2006-01-22 10:32:13 -0800216 clk_put(iclk);
217
Jean-Christophe PLAGNIOL-VILLARD68134632011-12-08 16:32:00 +0100218 err3:
Andrew Victor39a269c2006-01-22 10:32:13 -0800219 iounmap(hcd->regs);
220
221 err2:
222 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
223
224 err1:
225 usb_put_hcd(hcd);
226 return retval;
227}
228
229
Andrew Victor39a269c2006-01-22 10:32:13 -0800230/* may be called with controller, bus, and devices active */
231
232/**
David Brownell0365ee02006-06-19 14:27:20 -0700233 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
Andrew Victor39a269c2006-01-22 10:32:13 -0800234 * @dev: USB Host Controller being removed
235 * Context: !in_interrupt()
236 *
237 * Reverses the effect of usb_hcd_at91_probe(), first invoking
238 * the HCD's stop() method. It is always called from a thread
David Brownell0365ee02006-06-19 14:27:20 -0700239 * context, "rmmod" or something similar.
Andrew Victor39a269c2006-01-22 10:32:13 -0800240 *
241 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500242static void usb_hcd_at91_remove(struct usb_hcd *hcd,
David Brownell0365ee02006-06-19 14:27:20 -0700243 struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800244{
245 usb_remove_hcd(hcd);
246 at91_stop_hc(pdev);
247 iounmap(hcd->regs);
David Brownell68ba61b2006-04-02 20:26:21 -0800248 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700249 usb_put_hcd(hcd);
Andrew Victor39a269c2006-01-22 10:32:13 -0800250
Boris BREZILLON6b0a1cf2013-08-01 19:09:13 +0200251 if (IS_ENABLED(CONFIG_COMMON_CLK))
252 clk_put(uclk);
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200253 clk_put(hclk);
David Brownell68ba61b2006-04-02 20:26:21 -0800254 clk_put(fclk);
255 clk_put(iclk);
Andrew Victored077bb2007-02-16 10:18:58 -0800256 fclk = iclk = hclk = NULL;
Andrew Victor39a269c2006-01-22 10:32:13 -0800257}
258
259/*-------------------------------------------------------------------------*/
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200260static void ohci_at91_usb_set_power(struct at91_usbh_data *pdata, int port, int enable)
261{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100262 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200263 return;
264
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800265 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100266 return;
267
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100268 gpio_set_value(pdata->vbus_pin[port],
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100269 pdata->vbus_pin_active_low[port] ^ enable);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200270}
271
272static int ohci_at91_usb_get_power(struct at91_usbh_data *pdata, int port)
273{
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100274 if (!valid_port(port))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200275 return -EINVAL;
276
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800277 if (!gpio_is_valid(pdata->vbus_pin[port]))
Jean-Christophe PLAGNIOL-VILLARD770f0ba2011-11-12 16:46:13 +0100278 return -EINVAL;
279
Jean-Christophe PLAGNIOL-VILLARD8134ff52011-12-08 16:32:01 +0100280 return gpio_get_value(pdata->vbus_pin[port]) ^
Nicolas Ferre1e7caf82012-03-21 14:38:55 +0100281 pdata->vbus_pin_active_low[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200282}
283
284/*
285 * Update the status data from the hub with the over-current indicator change.
286 */
287static int ohci_at91_hub_status_data(struct usb_hcd *hcd, char *buf)
288{
Manjunath Goudare3825b42013-09-21 16:38:42 +0530289 struct at91_usbh_data *pdata = hcd->self.controller->platform_data;
290 int length = orig_ohci_hub_status_data(hcd, buf);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200291 int port;
292
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100293 at91_for_each_port(port) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200294 if (pdata->overcurrent_changed[port]) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100295 if (!length)
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200296 length = 1;
297 buf[0] |= 1 << (port + 1);
298 }
299 }
300
301 return length;
302}
303
304/*
305 * Look at the control requests to the root hub and see if we need to override.
306 */
307static int ohci_at91_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
308 u16 wIndex, char *buf, u16 wLength)
309{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900310 struct at91_usbh_data *pdata = dev_get_platdata(hcd->self.controller);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200311 struct usb_hub_descriptor *desc;
312 int ret = -EINVAL;
313 u32 *data = (u32 *)buf;
314
315 dev_dbg(hcd->self.controller,
316 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
317 hcd, typeReq, wValue, wIndex, buf, wLength);
318
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100319 wIndex--;
320
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200321 switch (typeReq) {
322 case SetPortFeature:
323 if (wValue == USB_PORT_FEAT_POWER) {
324 dev_dbg(hcd->self.controller, "SetPortFeat: POWER\n");
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100325 if (valid_port(wIndex)) {
326 ohci_at91_usb_set_power(pdata, wIndex, 1);
327 ret = 0;
328 }
329
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200330 goto out;
331 }
332 break;
333
334 case ClearPortFeature:
335 switch (wValue) {
336 case USB_PORT_FEAT_C_OVER_CURRENT:
337 dev_dbg(hcd->self.controller,
338 "ClearPortFeature: C_OVER_CURRENT\n");
339
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100340 if (valid_port(wIndex)) {
341 pdata->overcurrent_changed[wIndex] = 0;
342 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200343 }
344
345 goto out;
346
347 case USB_PORT_FEAT_OVER_CURRENT:
348 dev_dbg(hcd->self.controller,
349 "ClearPortFeature: OVER_CURRENT\n");
350
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100351 if (valid_port(wIndex))
352 pdata->overcurrent_status[wIndex] = 0;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200353
354 goto out;
355
356 case USB_PORT_FEAT_POWER:
357 dev_dbg(hcd->self.controller,
358 "ClearPortFeature: POWER\n");
359
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100360 if (valid_port(wIndex)) {
361 ohci_at91_usb_set_power(pdata, wIndex, 0);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200362 return 0;
363 }
364 }
365 break;
366 }
367
Manjunath Goudare3825b42013-09-21 16:38:42 +0530368 ret = orig_ohci_hub_control(hcd, typeReq, wValue, wIndex + 1,
369 buf, wLength);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200370 if (ret)
371 goto out;
372
373 switch (typeReq) {
374 case GetHubDescriptor:
375
376 /* update the hub's descriptor */
377
378 desc = (struct usb_hub_descriptor *)buf;
379
380 dev_dbg(hcd->self.controller, "wHubCharacteristics 0x%04x\n",
381 desc->wHubCharacteristics);
382
383 /* remove the old configurations for power-switching, and
384 * over-current protection, and insert our new configuration
385 */
386
387 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
388 desc->wHubCharacteristics |= cpu_to_le16(0x0001);
389
390 if (pdata->overcurrent_supported) {
391 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
392 desc->wHubCharacteristics |= cpu_to_le16(0x0008|0x0001);
393 }
394
395 dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",
396 desc->wHubCharacteristics);
397
398 return ret;
399
400 case GetPortStatus:
401 /* check port status */
402
403 dev_dbg(hcd->self.controller, "GetPortStatus(%d)\n", wIndex);
404
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100405 if (valid_port(wIndex)) {
406 if (!ohci_at91_usb_get_power(pdata, wIndex))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200407 *data &= ~cpu_to_le32(RH_PS_PPS);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200408
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100409 if (pdata->overcurrent_changed[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200410 *data |= cpu_to_le32(RH_PS_OCIC);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200411
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100412 if (pdata->overcurrent_status[wIndex])
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200413 *data |= cpu_to_le32(RH_PS_POCI);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200414 }
415 }
416
417 out:
418 return ret;
419}
420
Andrew Victor39a269c2006-01-22 10:32:13 -0800421/*-------------------------------------------------------------------------*/
422
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200423static irqreturn_t ohci_hcd_at91_overcurrent_irq(int irq, void *data)
424{
425 struct platform_device *pdev = data;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900426 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200427 int val, gpio, port;
428
429 /* From the GPIO notifying the over-current situation, find
430 * out the corresponding port */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100431 at91_for_each_port(port) {
Joachim Eastwood01bb6502012-09-23 22:56:00 +0200432 if (gpio_is_valid(pdata->overcurrent_pin[port]) &&
433 gpio_to_irq(pdata->overcurrent_pin[port]) == irq) {
Nicolas Ferree4499072012-02-11 14:23:06 +0100434 gpio = pdata->overcurrent_pin[port];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200435 break;
Nicolas Ferree4499072012-02-11 14:23:06 +0100436 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200437 }
438
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100439 if (port == AT91_MAX_USBH_PORTS) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200440 dev_err(& pdev->dev, "overcurrent interrupt from unknown GPIO\n");
441 return IRQ_HANDLED;
442 }
443
444 val = gpio_get_value(gpio);
445
446 /* When notified of an over-current situation, disable power
447 on the corresponding port, and mark this port in
448 over-current. */
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100449 if (!val) {
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200450 ohci_at91_usb_set_power(pdata, port, 0);
451 pdata->overcurrent_status[port] = 1;
452 pdata->overcurrent_changed[port] = 1;
453 }
454
455 dev_dbg(& pdev->dev, "overcurrent situation %s\n",
456 val ? "exited" : "notified");
457
458 return IRQ_HANDLED;
459}
460
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800461#ifdef CONFIG_OF
462static const struct of_device_id at91_ohci_dt_ids[] = {
463 { .compatible = "atmel,at91rm9200-ohci" },
464 { /* sentinel */ }
465};
466
467MODULE_DEVICE_TABLE(of, at91_ohci_dt_ids);
468
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500469static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800470{
471 struct device_node *np = pdev->dev.of_node;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100472 int i, gpio;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800473 enum of_gpio_flags flags;
474 struct at91_usbh_data *pdata;
475 u32 ports;
476
477 if (!np)
478 return 0;
479
480 /* Right now device-tree probed devices don't get dma_mask set.
481 * Since shared usb code relies on it, set it here for now.
482 * Once we have dma capability bindings this can go away.
483 */
484 if (!pdev->dev.dma_mask)
Stephen Warren3b9561e2013-05-07 16:53:52 -0600485 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
486 if (!pdev->dev.coherent_dma_mask)
487 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800488
489 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
490 if (!pdata)
491 return -ENOMEM;
492
493 if (!of_property_read_u32(np, "num-ports", &ports))
494 pdata->ports = ports;
495
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100496 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800497 gpio = of_get_named_gpio_flags(np, "atmel,vbus-gpio", i, &flags);
498 pdata->vbus_pin[i] = gpio;
499 if (!gpio_is_valid(gpio))
500 continue;
501 pdata->vbus_pin_active_low[i] = flags & OF_GPIO_ACTIVE_LOW;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800502 }
503
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100504 at91_for_each_port(i)
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100505 pdata->overcurrent_pin[i] =
506 of_get_named_gpio_flags(np, "atmel,oc-gpio", i, &flags);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800507
508 pdev->dev.platform_data = pdata;
509
510 return 0;
511}
512#else
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500513static int ohci_at91_of_init(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800514{
515 return 0;
516}
517#endif
518
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200519/*-------------------------------------------------------------------------*/
520
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500521static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800522{
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800523 struct at91_usbh_data *pdata;
David Brownell4bde4a42007-12-27 11:19:49 -0800524 int i;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100525 int gpio;
526 int ret;
David Brownell4bde4a42007-12-27 11:19:49 -0800527
Nicolas Ferre1887ab2b2012-03-28 11:49:01 +0200528 ret = ohci_at91_of_init(pdev);
529 if (ret)
530 return ret;
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800531
Jingoo Hand4f09e22013-07-30 19:59:40 +0900532 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800533
David Brownell4bde4a42007-12-27 11:19:49 -0800534 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100535 at91_for_each_port(i) {
Nicolas Ferre6fffb772012-08-29 11:49:18 +0200536 /*
537 * do not configure PIO if not in relation with
538 * real USB port on board
539 */
540 if (i >= pdata->ports) {
541 pdata->vbus_pin[i] = -EINVAL;
542 pdata->overcurrent_pin[i] = -EINVAL;
543 break;
544 }
545
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800546 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800547 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100548 gpio = pdata->vbus_pin[i];
549
550 ret = gpio_request(gpio, "ohci_vbus");
551 if (ret) {
552 dev_err(&pdev->dev,
553 "can't request vbus gpio %d\n", gpio);
554 continue;
555 }
556 ret = gpio_direction_output(gpio,
557 !pdata->vbus_pin_active_low[i]);
558 if (ret) {
559 dev_err(&pdev->dev,
560 "can't put vbus gpio %d as output %d\n",
561 gpio, !pdata->vbus_pin_active_low[i]);
562 gpio_free(gpio);
563 continue;
564 }
565
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200566 ohci_at91_usb_set_power(pdata, i, 1);
567 }
568
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100569 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800570 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200571 continue;
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100572 gpio = pdata->overcurrent_pin[i];
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200573
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100574 ret = gpio_request(gpio, "ohci_overcurrent");
575 if (ret) {
576 dev_err(&pdev->dev,
577 "can't request overcurrent gpio %d\n",
578 gpio);
579 continue;
580 }
581
582 ret = gpio_direction_input(gpio);
583 if (ret) {
584 dev_err(&pdev->dev,
585 "can't configure overcurrent gpio %d as input\n",
586 gpio);
587 gpio_free(gpio);
588 continue;
589 }
590
591 ret = request_irq(gpio_to_irq(gpio),
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200592 ohci_hcd_at91_overcurrent_irq,
593 IRQF_SHARED, "ohci_overcurrent", pdev);
594 if (ret) {
Nicolas Ferreaaf9f5f2012-03-21 16:58:11 +0100595 gpio_free(gpio);
596 dev_err(&pdev->dev,
597 "can't get gpio IRQ for overcurrent\n");
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200598 }
David Brownell4bde4a42007-12-27 11:19:49 -0800599 }
600 }
601
David Brownell0365ee02006-06-19 14:27:20 -0700602 device_init_wakeup(&pdev->dev, 1);
603 return usb_hcd_at91_probe(&ohci_at91_hc_driver, pdev);
Andrew Victor39a269c2006-01-22 10:32:13 -0800604}
605
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500606static int ohci_hcd_at91_drv_remove(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800607{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900608 struct at91_usbh_data *pdata = dev_get_platdata(&pdev->dev);
David Brownell4bde4a42007-12-27 11:19:49 -0800609 int i;
610
611 if (pdata) {
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100612 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800613 if (!gpio_is_valid(pdata->vbus_pin[i]))
David Brownell4bde4a42007-12-27 11:19:49 -0800614 continue;
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200615 ohci_at91_usb_set_power(pdata, i, 0);
David Brownell4bde4a42007-12-27 11:19:49 -0800616 gpio_free(pdata->vbus_pin[i]);
617 }
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200618
Nicolas Ferre0ee6d1e2012-03-21 16:53:09 +0100619 at91_for_each_port(i) {
Jean-Christophe PLAGNIOL-VILLARD8a7a49d2011-09-19 15:32:23 +0800620 if (!gpio_is_valid(pdata->overcurrent_pin[i]))
Thomas Petazzoniaa6e52a2011-07-13 11:29:17 +0200621 continue;
622 free_irq(gpio_to_irq(pdata->overcurrent_pin[i]), pdev);
623 gpio_free(pdata->overcurrent_pin[i]);
624 }
David Brownell4bde4a42007-12-27 11:19:49 -0800625 }
626
David Brownell0365ee02006-06-19 14:27:20 -0700627 device_init_wakeup(&pdev->dev, 0);
Pete Zaitcev421b4bf2008-06-01 14:38:43 -0700628 usb_hcd_at91_remove(platform_get_drvdata(pdev), pdev);
629 return 0;
Andrew Victor39a269c2006-01-22 10:32:13 -0800630}
631
632#ifdef CONFIG_PM
Andrew Victor39a269c2006-01-22 10:32:13 -0800633
David Brownell68ba61b2006-04-02 20:26:21 -0800634static int
David Brownell0365ee02006-06-19 14:27:20 -0700635ohci_hcd_at91_drv_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownell68ba61b2006-04-02 20:26:21 -0800636{
David Brownell0365ee02006-06-19 14:27:20 -0700637 struct usb_hcd *hcd = platform_get_drvdata(pdev);
638 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
639
640 if (device_may_wakeup(&pdev->dev))
641 enable_irq_wake(hcd->irq);
David Brownell0365ee02006-06-19 14:27:20 -0700642
643 /*
644 * The integrated transceivers seem unable to notice disconnect,
645 * reconnect, or wakeup without the 48 MHz clock active. so for
646 * correctness, always discard connection state (using reset).
647 *
648 * REVISIT: some boards will be able to turn VBUS off...
649 */
650 if (at91_suspend_entering_slow_clock()) {
Manjunath Goudare3825b42013-09-21 16:38:42 +0530651 ohci->hc_control = ohci_readl(ohci, &ohci->regs->control);
652 ohci->hc_control &= OHCI_CTRL_RWC;
653 ohci_writel(ohci, ohci->hc_control, &ohci->regs->control);
654 ohci->rh_state = OHCI_RH_HALTED;
655
Patrice Vilchez869aa982010-04-28 13:45:40 +0200656 /* flush the writes */
657 (void) ohci_readl (ohci, &ohci->regs->control);
Andrew Victored077bb2007-02-16 10:18:58 -0800658 at91_stop_clock();
David Brownell0365ee02006-06-19 14:27:20 -0700659 }
Andrew Victor39a269c2006-01-22 10:32:13 -0800660
661 return 0;
662}
663
David Brownell0365ee02006-06-19 14:27:20 -0700664static int ohci_hcd_at91_drv_resume(struct platform_device *pdev)
Andrew Victor39a269c2006-01-22 10:32:13 -0800665{
Marc Pignat6dde8962007-01-09 14:00:11 -0800666 struct usb_hcd *hcd = platform_get_drvdata(pdev);
667
668 if (device_may_wakeup(&pdev->dev))
669 disable_irq_wake(hcd->irq);
670
Andrew Victored077bb2007-02-16 10:18:58 -0800671 if (!clocked)
672 at91_start_clock();
Andrew Victor39a269c2006-01-22 10:32:13 -0800673
Florian Fainellicfa49b42012-10-08 15:11:29 +0200674 ohci_resume(hcd, false);
Andrew Victor39a269c2006-01-22 10:32:13 -0800675 return 0;
676}
677#else
678#define ohci_hcd_at91_drv_suspend NULL
679#define ohci_hcd_at91_drv_resume NULL
680#endif
681
Andrew Victor39a269c2006-01-22 10:32:13 -0800682static struct platform_driver ohci_hcd_at91_driver = {
683 .probe = ohci_hcd_at91_drv_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500684 .remove = ohci_hcd_at91_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700685 .shutdown = usb_hcd_platform_shutdown,
Andrew Victor39a269c2006-01-22 10:32:13 -0800686 .suspend = ohci_hcd_at91_drv_suspend,
687 .resume = ohci_hcd_at91_drv_resume,
688 .driver = {
David Brownell0365ee02006-06-19 14:27:20 -0700689 .name = "at91_ohci",
Andrew Victor39a269c2006-01-22 10:32:13 -0800690 .owner = THIS_MODULE,
Jean-Christophe PLAGNIOL-VILLARD24197302011-11-21 06:55:18 +0800691 .of_match_table = of_match_ptr(at91_ohci_dt_ids),
Andrew Victor39a269c2006-01-22 10:32:13 -0800692 },
693};
Manjunath Goudare3825b42013-09-21 16:38:42 +0530694
695static int __init ohci_at91_init(void)
696{
697 if (usb_disabled())
698 return -ENODEV;
699
700 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
701 ohci_init_driver(&ohci_at91_hc_driver, NULL);
702
703 /*
704 * The Atmel HW has some unusual quirks, which require Atmel-specific
705 * workarounds. We override certain hc_driver functions here to
706 * achieve that. We explicitly do not enhance ohci_driver_overrides to
707 * allow this more easily, since this is an unusual case, and we don't
708 * want to encourage others to override these functions by making it
709 * too easy.
710 */
711
712 orig_ohci_hub_control = ohci_at91_hc_driver.hub_control;
713 orig_ohci_hub_status_data = ohci_at91_hc_driver.hub_status_data;
714
715 ohci_at91_hc_driver.hub_status_data = ohci_at91_hub_status_data;
716 ohci_at91_hc_driver.hub_control = ohci_at91_hub_control;
717
718 return platform_driver_register(&ohci_hcd_at91_driver);
719}
720module_init(ohci_at91_init);
721
722static void __exit ohci_at91_cleanup(void)
723{
724 platform_driver_unregister(&ohci_hcd_at91_driver);
725}
726module_exit(ohci_at91_cleanup);
727
728MODULE_DESCRIPTION(DRIVER_DESC);
729MODULE_LICENSE("GPL");
730MODULE_ALIAS("platform:at91_ohci");