blob: 1b4e086c33a0d5400442198bac244579c85033c5 [file] [log] [blame]
Tony Prisk100d4592012-07-21 22:58:53 +12001/*
2 * Generic UHCI HCD (Host Controller Driver) for Platform Devices
3 *
4 * Copyright (c) 2011 Tony Prisk <linux@prisktech.co.nz>
5 *
6 * This file is based on uhci-grlib.c
7 * (C) Copyright 2004-2007 Alan Stern, stern@rowland.harvard.edu
8 */
9
10#include <linux/of.h>
Himangi Saraogi96ae5712014-06-12 00:48:44 +053011#include <linux/device.h>
Tony Prisk100d4592012-07-21 22:58:53 +120012#include <linux/platform_device.h>
13
14static int uhci_platform_init(struct usb_hcd *hcd)
15{
16 struct uhci_hcd *uhci = hcd_to_uhci(hcd);
17
Benjamin Herrenschmidt4642d342017-05-23 10:44:05 +100018 /* Probe number of ports if not already provided by DT */
19 if (!uhci->rh_numports)
20 uhci->rh_numports = uhci_count_ports(hcd);
Tony Prisk100d4592012-07-21 22:58:53 +120021
22 /* Set up pointers to to generic functions */
23 uhci->reset_hc = uhci_generic_reset_hc;
24 uhci->check_and_reset_hc = uhci_generic_check_and_reset_hc;
25
26 /* No special actions need to be taken for the functions below */
27 uhci->configure_hc = NULL;
28 uhci->resume_detect_interrupts_are_broken = NULL;
29 uhci->global_suspend_mode_is_broken = NULL;
30
31 /* Reset if the controller isn't already safely quiescent. */
32 check_and_reset_hc(uhci);
33 return 0;
34}
35
36static const struct hc_driver uhci_platform_hc_driver = {
37 .description = hcd_name,
38 .product_desc = "Generic UHCI Host Controller",
39 .hcd_priv_size = sizeof(struct uhci_hcd),
40
41 /* Generic hardware linkage */
42 .irq = uhci_irq,
43 .flags = HCD_MEMORY | HCD_USB11,
44
45 /* Basic lifecycle operations */
46 .reset = uhci_platform_init,
47 .start = uhci_start,
48#ifdef CONFIG_PM
49 .pci_suspend = NULL,
50 .pci_resume = NULL,
51 .bus_suspend = uhci_rh_suspend,
52 .bus_resume = uhci_rh_resume,
53#endif
54 .stop = uhci_stop,
55
56 .urb_enqueue = uhci_urb_enqueue,
57 .urb_dequeue = uhci_urb_dequeue,
58
59 .endpoint_disable = uhci_hcd_endpoint_disable,
60 .get_frame_number = uhci_hcd_get_frame_number,
61
62 .hub_status_data = uhci_hub_status_data,
63 .hub_control = uhci_hub_control,
64};
65
Bill Pemberton41ac7b32012-11-19 13:21:48 -050066static int uhci_hcd_platform_probe(struct platform_device *pdev)
Tony Prisk100d4592012-07-21 22:58:53 +120067{
Benjamin Herrenschmidt4642d342017-05-23 10:44:05 +100068 struct device_node *np = pdev->dev.of_node;
Tony Prisk100d4592012-07-21 22:58:53 +120069 struct usb_hcd *hcd;
70 struct uhci_hcd *uhci;
71 struct resource *res;
72 int ret;
73
74 if (usb_disabled())
75 return -ENODEV;
76
Tony Prisk09eeffb2012-10-14 16:22:34 +130077 /*
78 * Right now device-tree probed devices don't get dma_mask set.
79 * Since shared usb code relies on it, set it here for now.
80 * Once we have dma capability bindings this can go away.
81 */
Russell Kinge1fd7342013-06-27 12:36:37 +010082 ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +010083 if (ret)
84 return ret;
Tony Prisk09eeffb2012-10-14 16:22:34 +130085
Tony Prisk100d4592012-07-21 22:58:53 +120086 hcd = usb_create_hcd(&uhci_platform_hc_driver, &pdev->dev,
87 pdev->name);
88 if (!hcd)
89 return -ENOMEM;
90
91 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Himangi Saraogi96ae5712014-06-12 00:48:44 +053092 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
93 if (IS_ERR(hcd->regs)) {
94 ret = PTR_ERR(hcd->regs);
Tony Prisk100d4592012-07-21 22:58:53 +120095 goto err_rmr;
96 }
Varka Bhadram6827f7e2014-11-04 07:17:10 +053097 hcd->rsrc_start = res->start;
98 hcd->rsrc_len = resource_size(res);
99
Tony Prisk100d4592012-07-21 22:58:53 +1200100 uhci = hcd_to_uhci(hcd);
101
102 uhci->regs = hcd->regs;
103
Benjamin Herrenschmidt4642d342017-05-23 10:44:05 +1000104 /* Grab some things from the device-tree */
105 if (np) {
106 u32 num_ports;
107
108 if (of_property_read_u32(np, "#ports", &num_ports) == 0) {
109 uhci->rh_numports = num_ports;
110 dev_info(&pdev->dev,
111 "Detected %d ports from device-tree\n",
112 num_ports);
113 }
114 if (of_device_is_compatible(np, "aspeed,ast2400-uhci") ||
115 of_device_is_compatible(np, "aspeed,ast2500-uhci")) {
116 uhci->is_aspeed = 1;
117 dev_info(&pdev->dev,
118 "Enabled Aspeed implementation workarounds\n");
119 }
120 }
Michael Opdenacker2b4ef832013-10-06 08:47:55 +0200121 ret = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_SHARED);
Tony Prisk100d4592012-07-21 22:58:53 +1200122 if (ret)
Himangi Saraogi96ae5712014-06-12 00:48:44 +0530123 goto err_rmr;
Tony Prisk100d4592012-07-21 22:58:53 +1200124
Peter Chen3c9740a2013-11-05 10:46:02 +0800125 device_wakeup_enable(hcd->self.controller);
Tony Prisk100d4592012-07-21 22:58:53 +1200126 return 0;
127
Tony Prisk100d4592012-07-21 22:58:53 +1200128err_rmr:
129 usb_put_hcd(hcd);
130
131 return ret;
132}
133
134static int uhci_hcd_platform_remove(struct platform_device *pdev)
135{
136 struct usb_hcd *hcd = platform_get_drvdata(pdev);
137
138 usb_remove_hcd(hcd);
Tony Prisk100d4592012-07-21 22:58:53 +1200139 usb_put_hcd(hcd);
Tony Prisk100d4592012-07-21 22:58:53 +1200140
141 return 0;
142}
143
144/* Make sure the controller is quiescent and that we're not using it
145 * any more. This is mainly for the benefit of programs which, like kexec,
146 * expect the hardware to be idle: not doing DMA or generating IRQs.
147 *
148 * This routine may be called in a damaged or failing kernel. Hence we
149 * do not acquire the spinlock before shutting down the controller.
150 */
151static void uhci_hcd_platform_shutdown(struct platform_device *op)
152{
Jingoo Han477527b2013-05-23 19:18:39 +0900153 struct usb_hcd *hcd = platform_get_drvdata(op);
Tony Prisk100d4592012-07-21 22:58:53 +1200154
155 uhci_hc_died(hcd_to_uhci(hcd));
156}
157
158static const struct of_device_id platform_uhci_ids[] = {
Hans de Goedee16fa442014-02-11 17:54:45 +0100159 { .compatible = "generic-uhci", },
Tony Prisk100d4592012-07-21 22:58:53 +1200160 { .compatible = "platform-uhci", },
161 {}
162};
Luis de Bethencourte2f39512015-09-19 14:10:59 +0100163MODULE_DEVICE_TABLE(of, platform_uhci_ids);
Tony Prisk100d4592012-07-21 22:58:53 +1200164
165static struct platform_driver uhci_platform_driver = {
166 .probe = uhci_hcd_platform_probe,
167 .remove = uhci_hcd_platform_remove,
168 .shutdown = uhci_hcd_platform_shutdown,
169 .driver = {
170 .name = "platform-uhci",
Sachin Kamat5d689162013-05-21 17:17:21 +0530171 .of_match_table = platform_uhci_ids,
Tony Prisk100d4592012-07-21 22:58:53 +1200172 },
173};