1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <linux/pci.h>
24
25#include "xhci.h"
26
27
28#define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73
29#define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000
30
31static const char hcd_name[] = "xhci_hcd";
32
33
34static int xhci_pci_reinit(struct xhci_hcd *xhci, struct pci_dev *pdev)
35{
36
37
38
39
40
41
42
43 if (!pci_set_mwi(pdev))
44 xhci_dbg(xhci, "MWI active\n");
45
46 xhci_dbg(xhci, "Finished xhci_pci_reinit\n");
47 return 0;
48}
49
50
51static int xhci_pci_setup(struct usb_hcd *hcd)
52{
53 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
54 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
55 int retval;
56
57 hcd->self.sg_tablesize = TRBS_PER_SEGMENT - 2;
58
59 xhci->cap_regs = hcd->regs;
60 xhci->op_regs = hcd->regs +
61 HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase));
62 xhci->run_regs = hcd->regs +
63 (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
64
65 xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1);
66 xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2);
67 xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
68 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase);
69 xhci->hci_version = HC_VERSION(xhci->hcc_params);
70 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
71 xhci_print_registers(xhci);
72
73
74 if (pdev->vendor == PCI_VENDOR_ID_FRESCO_LOGIC &&
75 pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK &&
76 pdev->revision == 0x0) {
77 xhci->quirks |= XHCI_RESET_EP_QUIRK;
78 xhci_dbg(xhci, "QUIRK: Fresco Logic xHC needs configure"
79 " endpoint cmd after reset endpoint\n");
80 }
81
82
83 retval = xhci_halt(xhci);
84 if (retval)
85 return retval;
86
87 xhci_dbg(xhci, "Resetting HCD\n");
88
89 retval = xhci_reset(xhci);
90 if (retval)
91 return retval;
92 xhci_dbg(xhci, "Reset complete\n");
93
94 xhci_dbg(xhci, "Calling HCD init\n");
95
96 retval = xhci_init(hcd);
97 if (retval)
98 return retval;
99 xhci_dbg(xhci, "Called HCD init\n");
100
101 pci_read_config_byte(pdev, XHCI_SBRN_OFFSET, &xhci->sbrn);
102 xhci_dbg(xhci, "Got SBRN %u\n", (unsigned int) xhci->sbrn);
103
104
105 return xhci_pci_reinit(xhci, pdev);
106}
107
108static const struct hc_driver xhci_pci_hc_driver = {
109 .description = hcd_name,
110 .product_desc = "xHCI Host Controller",
111 .hcd_priv_size = sizeof(struct xhci_hcd),
112
113
114
115
116 .irq = xhci_irq,
117 .flags = HCD_MEMORY | HCD_USB3,
118
119
120
121
122 .reset = xhci_pci_setup,
123 .start = xhci_run,
124
125 .stop = xhci_stop,
126 .shutdown = xhci_shutdown,
127
128
129
130
131 .urb_enqueue = xhci_urb_enqueue,
132 .urb_dequeue = xhci_urb_dequeue,
133 .alloc_dev = xhci_alloc_dev,
134 .free_dev = xhci_free_dev,
135 .add_endpoint = xhci_add_endpoint,
136 .drop_endpoint = xhci_drop_endpoint,
137 .endpoint_reset = xhci_endpoint_reset,
138 .check_bandwidth = xhci_check_bandwidth,
139 .reset_bandwidth = xhci_reset_bandwidth,
140 .address_device = xhci_address_device,
141 .update_hub_device = xhci_update_hub_device,
142 .reset_device = xhci_reset_device,
143
144
145
146
147 .get_frame_number = xhci_get_frame,
148
149
150 .hub_control = xhci_hub_control,
151 .hub_status_data = xhci_hub_status_data,
152};
153
154
155
156
157static const struct pci_device_id pci_ids[] = { {
158
159 PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_XHCI, ~0),
160 .driver_data = (unsigned long) &xhci_pci_hc_driver,
161 },
162 { }
163};
164MODULE_DEVICE_TABLE(pci, pci_ids);
165
166
167static struct pci_driver xhci_pci_driver = {
168 .name = (char *) hcd_name,
169 .id_table = pci_ids,
170
171 .probe = usb_hcd_pci_probe,
172 .remove = usb_hcd_pci_remove,
173
174
175 .shutdown = usb_hcd_pci_shutdown,
176};
177
178int xhci_register_pci()
179{
180 return pci_register_driver(&xhci_pci_driver);
181}
182
183void xhci_unregister_pci()
184{
185 pci_unregister_driver(&xhci_pci_driver);
186}
187