blob: 41d99f68426b12ba024b4eb11bf9c227f9405086 [file] [log] [blame]
Duncan Laurie2d9d39a2013-05-29 15:27:55 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Duncan Laurie2d9d39a2013-05-29 15:27:55 -070015 */
16
Duncan Laurie1f529082013-07-30 15:53:45 -070017#include <console/console.h>
18#include <delay.h>
Duncan Laurie2d9d39a2013-05-29 15:27:55 -070019#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
22#include <arch/io.h>
23#include "pch.h"
24
Stefan Reinauer6dbbe2e2013-10-17 17:00:26 -070025typedef struct southbridge_intel_lynxpoint_config config_t;
26
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080027static u8 *usb_xhci_mem_base(device_t dev)
Duncan Laurie1f529082013-07-30 15:53:45 -070028{
29 u32 mem_base = pci_read_config32(dev, PCI_BASE_ADDRESS_0);
30
31 /* Check if the controller is disabled or not present */
32 if (mem_base == 0 || mem_base == 0xffffffff)
33 return 0;
34
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080035 return (u8 *)(mem_base & ~0xf);
Duncan Laurie1f529082013-07-30 15:53:45 -070036}
37
Duncan Laurie1f529082013-07-30 15:53:45 -070038static int usb_xhci_port_count_usb3(device_t dev)
39{
40 if (pch_is_lp()) {
41 /* LynxPoint-LP has 4 SS ports */
42 return 4;
Duncan Laurie1f529082013-07-30 15:53:45 -070043 }
Elyes HAOUAS54f94242018-10-25 10:57:39 +020044 /* LynxPoint-H can have 0, 2, 4, or 6 SS ports */
45 u8 *mem_base = usb_xhci_mem_base(dev);
46 u32 fus = read32(mem_base + XHCI_USB3FUS);
47 fus >>= XHCI_USB3FUS_SS_SHIFT;
48 fus &= XHCI_USB3FUS_SS_MASK;
49 switch (fus) {
50 case 3: return 0;
51 case 2: return 2;
52 case 1: return 4;
53 case 0:
54 default: return 6;
55 }
Duncan Laurie1f529082013-07-30 15:53:45 -070056}
57
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080058static void usb_xhci_reset_status_usb3(u8 *mem_base, int port)
Duncan Laurie1f529082013-07-30 15:53:45 -070059{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080060 u8 *portsc = mem_base + XHCI_USB3_PORTSC(port);
Duncan Laurie0bf1dea2013-08-13 13:32:28 -070061 u32 status = read32(portsc);
62 /* Do not set Port Enabled/Disabled field */
63 status &= ~XHCI_USB3_PORTSC_PED;
64 /* Clear all change status bits */
65 status |= XHCI_USB3_PORTSC_CHST;
66 write32(portsc, status);
Duncan Laurie1f529082013-07-30 15:53:45 -070067}
68
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080069static void usb_xhci_reset_port_usb3(u8 *mem_base, int port)
Duncan Laurie1f529082013-07-30 15:53:45 -070070{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080071 u8 *portsc = mem_base + XHCI_USB3_PORTSC(port);
Duncan Laurie1f529082013-07-30 15:53:45 -070072 write32(portsc, read32(portsc) | XHCI_USB3_PORTSC_WPR);
73}
74
75#define XHCI_RESET_DELAY_US 1000 /* 1ms */
76#define XHCI_RESET_TIMEOUT 100 /* 100ms */
77
78/*
79 * 1) Wait until port is done polling
80 * 2) If port is disconnected
81 * a) Issue warm port reset
82 * b) Poll for warm reset complete
83 * c) Write 1 to port change status bits
84 */
Duncan Laurie16a0f5c2013-09-25 14:08:16 -070085static void usb_xhci_reset_usb3(device_t dev, int all)
Duncan Laurie1f529082013-07-30 15:53:45 -070086{
87 u32 status, port_disabled;
88 int timeout, port;
89 int port_count = usb_xhci_port_count_usb3(dev);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080090 u8 *mem_base = usb_xhci_mem_base(dev);
Duncan Laurie1f529082013-07-30 15:53:45 -070091
92 if (!mem_base || !port_count)
93 return;
94
95 /* Get mask of disabled ports */
96 port_disabled = pci_read_config32(dev, XHCI_USB3PDO);
97
98 /* Wait until all enabled ports are done polling */
99 for (timeout = XHCI_RESET_TIMEOUT; timeout; timeout--) {
100 int complete = 1;
101 for (port = 0; port < port_count; port++) {
102 /* Skip disabled ports */
103 if (port_disabled & (1 << port))
104 continue;
105 /* Read port link status field */
106 status = read32(mem_base + XHCI_USB3_PORTSC(port));
107 status &= XHCI_USB3_PORTSC_PLS;
108 if (status == XHCI_PLSR_POLLING)
109 complete = 0;
110 }
111 /* Exit if all ports not polling */
112 if (complete)
113 break;
114 udelay(XHCI_RESET_DELAY_US);
115 }
116
117 /* Reset all requested ports */
118 for (port = 0; port < port_count; port++) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800119 u8 *portsc = mem_base + XHCI_USB3_PORTSC(port);
Duncan Laurie1f529082013-07-30 15:53:45 -0700120 /* Skip disabled ports */
121 if (port_disabled & (1 << port))
122 continue;
123 status = read32(portsc) & XHCI_USB3_PORTSC_PLS;
124 /* Reset all or only disconnected ports */
Duncan Laurie32d2e2b2013-09-25 14:08:32 -0700125 if (all || (status == XHCI_PLSR_RXDETECT ||
126 status == XHCI_PLSR_POLLING))
Duncan Laurie16a0f5c2013-09-25 14:08:16 -0700127 usb_xhci_reset_port_usb3(mem_base, port);
128 else
129 port_disabled |= 1 << port;
Duncan Laurie1f529082013-07-30 15:53:45 -0700130 }
131
132 /* Wait for warm reset complete on all reset ports */
133 for (timeout = XHCI_RESET_TIMEOUT; timeout; timeout--) {
134 int complete = 1;
135 for (port = 0; port < port_count; port++) {
136 /* Only check ports that were reset */
137 if (port_disabled & (1 << port))
138 continue;
139 /* Check if warm reset is complete */
140 status = read32(mem_base + XHCI_USB3_PORTSC(port));
141 if (!(status & XHCI_USB3_PORTSC_WRC))
142 complete = 0;
143 }
144 /* Check for warm reset complete in any port */
145 if (complete)
146 break;
147 udelay(XHCI_RESET_DELAY_US);
148 }
149
150 /* Clear port change status bits */
151 for (port = 0; port < port_count; port++)
152 usb_xhci_reset_status_usb3(mem_base, port);
153}
154
Duncan Laurie32d2e2b2013-09-25 14:08:32 -0700155#ifdef __SMM__
156
Duncan Laurie1f529082013-07-30 15:53:45 -0700157/* Handler for XHCI controller on entry to S3/S4/S5 */
158void usb_xhci_sleep_prepare(device_t dev, u8 slp_typ)
159{
160 u16 reg16;
161 u32 reg32;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800162 u8 *mem_base = usb_xhci_mem_base(dev);
Duncan Laurie1f529082013-07-30 15:53:45 -0700163
Aaron Durbinda5f5092016-07-13 23:23:16 -0500164 if (!mem_base || slp_typ < ACPI_S3)
Duncan Laurie1f529082013-07-30 15:53:45 -0700165 return;
166
167 if (pch_is_lp()) {
168 /* Set D0 state */
169 reg16 = pci_read_config16(dev, XHCI_PWR_CTL_STS);
170 reg16 &= ~PWR_CTL_SET_MASK;
171 reg16 |= PWR_CTL_SET_D0;
172 pci_write_config16(dev, XHCI_PWR_CTL_STS, reg16);
173
174 /* Clear PCI 0xB0[14:13] */
175 reg32 = pci_read_config32(dev, 0xb0);
176 reg32 &= ~((1 << 14) | (1 << 13));
177 pci_write_config32(dev, 0xb0, reg32);
178
179 /* Clear MMIO 0x816c[14,2] */
180 reg32 = read32(mem_base + 0x816c);
181 reg32 &= ~((1 << 14) | (1 << 2));
182 write32(mem_base + 0x816c, reg32);
183
Duncan Laurie0bf1dea2013-08-13 13:32:28 -0700184 /* Reset disconnected USB3 ports */
Duncan Laurie16a0f5c2013-09-25 14:08:16 -0700185 usb_xhci_reset_usb3(dev, 0);
Duncan Laurie0bf1dea2013-08-13 13:32:28 -0700186
Duncan Laurie1f529082013-07-30 15:53:45 -0700187 /* Set MMIO 0x80e0[15] */
188 reg32 = read32(mem_base + 0x80e0);
189 reg32 |= (1 << 15);
190 write32(mem_base + 0x80e0, reg32);
191 }
192
193 /* Set D3Hot state and enable PME */
194 pci_or_config16(dev, XHCI_PWR_CTL_STS, PWR_CTL_SET_D3);
Duncan Laurie0bf1dea2013-08-13 13:32:28 -0700195 pci_or_config16(dev, XHCI_PWR_CTL_STS, PWR_CTL_STATUS_PME);
Duncan Laurie1f529082013-07-30 15:53:45 -0700196 pci_or_config16(dev, XHCI_PWR_CTL_STS, PWR_CTL_ENABLE_PME);
197}
198
Duncan Laurie911cedf2013-07-30 16:05:55 -0700199/* Route all ports to XHCI controller */
200void usb_xhci_route_all(void)
201{
202 u32 port_mask, route;
203 u16 reg16;
204
205 /* Skip if EHCI is already disabled */
206 if (RCBA32(FD) & PCH_DISABLE_EHCI1)
207 return;
208
209 /* Set D0 state */
210 reg16 = pci_read_config16(PCH_XHCI_DEV, XHCI_PWR_CTL_STS);
211 reg16 &= ~PWR_CTL_SET_MASK;
212 reg16 |= PWR_CTL_SET_D0;
213 pci_write_config16(PCH_XHCI_DEV, XHCI_PWR_CTL_STS, reg16);
214
215 /* Set USB3 superspeed enable */
216 port_mask = pci_read_config32(PCH_XHCI_DEV, XHCI_USB3PRM);
217 route = pci_read_config32(PCH_XHCI_DEV, XHCI_USB3PR);
218 route &= ~XHCI_USB3PR_SSEN;
219 route |= XHCI_USB3PR_SSEN & port_mask;
220 pci_write_config32(PCH_XHCI_DEV, XHCI_USB3PR, route);
221
222 /* Route USB2 ports to XHCI controller */
223 port_mask = pci_read_config32(PCH_XHCI_DEV, XHCI_USB2PRM);
224 route = pci_read_config32(PCH_XHCI_DEV, XHCI_USB2PR);
225 route &= ~XHCI_USB2PR_HCSEL;
226 route |= XHCI_USB2PR_HCSEL & port_mask;
227 pci_write_config32(PCH_XHCI_DEV, XHCI_USB2PR, route);
228
229 /* Disable EHCI controller */
230 usb_ehci_disable(PCH_EHCI1_DEV);
231
232 /* LynxPoint-H has a second EHCI controller */
233 if (!pch_is_lp())
234 usb_ehci_disable(PCH_EHCI2_DEV);
235
236 /* Reset and clear port change status */
Duncan Laurie16a0f5c2013-09-25 14:08:16 -0700237 usb_xhci_reset_usb3(PCH_XHCI_DEV, 1);
Duncan Laurie911cedf2013-07-30 16:05:55 -0700238}
239
Duncan Laurie1f529082013-07-30 15:53:45 -0700240#else /* !__SMM__ */
241
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700242static void usb_xhci_clock_gating(device_t dev)
243{
244 u32 reg32;
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700245 u16 reg16;
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700246
247 /* IOBP 0xE5004001[7:6] = 11b */
248 pch_iobp_update(0xe5004001, ~0, (1 << 7)|(1 << 6));
249
250 reg32 = pci_read_config32(dev, 0x40);
251 reg32 &= ~(1 << 23); /* unsupported request */
252
253 if (pch_is_lp()) {
254 /* D20:F0:40h[18,17,8] = 111b */
255 reg32 |= (1 << 18) | (1 << 17) | (1 << 8);
256 /* D20:F0:40h[21,20,19] = 110b to enable XHCI Idle L1 */
257 reg32 &= ~(1 << 19);
258 reg32 |= (1 << 21) | (1 << 20);
259 } else {
260 /* D20:F0:40h[21,20,18,17,8] = 11111b */
261 reg32 |= (1 << 21)|(1 << 20)|(1 << 18)|(1 << 17)|(1 << 8);
262 }
263
264 /* Avoid writing upper byte as it is write-once */
265 pci_write_config16(dev, 0x40, (u16)(reg32 & 0xffff));
266 pci_write_config8(dev, 0x40 + 2, (u8)((reg32 >> 16) & 0xff));
267
268 /* D20:F0:44h[9,7,3] = 111b */
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700269 reg16 = pci_read_config16(dev, 0x44);
270 reg16 |= (1 << 9) | (1 << 7) | (1 << 3);
271 pci_write_config16(dev, 0x44, reg16);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700272
273 reg32 = pci_read_config32(dev, 0xa0);
274 if (pch_is_lp()) {
275 /* D20:F0:A0h[18] = 1 */
276 reg32 |= (1 << 18);
277 } else {
278 /* D20:F0:A0h[6] = 1 */
279 reg32 |= (1 << 6);
280 }
281 pci_write_config32(dev, 0xa0, reg32);
282
283 /* D20:F0:A4h[13] = 0 */
284 reg32 = pci_read_config32(dev, 0xa4);
285 reg32 &= ~(1 << 13);
286 pci_write_config32(dev, 0xa4, reg32);
287}
288
289static void usb_xhci_init(device_t dev)
290{
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700291 u32 reg32;
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700292 u16 reg16;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800293 u8 *mem_base = usb_xhci_mem_base(dev);
Stefan Reinauer6dbbe2e2013-10-17 17:00:26 -0700294 config_t *config = dev->chip_info;
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700295
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700296 /* D20:F0:74h[1:0] = 00b (set D0 state) */
297 reg16 = pci_read_config16(dev, XHCI_PWR_CTL_STS);
298 reg16 &= ~PWR_CTL_SET_MASK;
299 reg16 |= PWR_CTL_SET_D0;
300 pci_write_config16(dev, XHCI_PWR_CTL_STS, reg16);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700301
302 /* Enable clock gating first */
303 usb_xhci_clock_gating(dev);
304
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700305 reg32 = read32(mem_base + 0x8144);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700306 if (pch_is_lp()) {
307 /* XHCIBAR + 8144h[8,7,6] = 111b */
308 reg32 |= (1 << 8) | (1 << 7) | (1 << 6);
309 } else {
310 /* XHCIBAR + 8144h[8,7,6] = 100b */
311 reg32 &= ~((1 << 7) | (1 << 6));
312 reg32 |= (1 << 8);
313 }
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700314 write32(mem_base + 0x8144, reg32);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700315
316 if (pch_is_lp()) {
Duncan Laurie527b03a2013-08-28 09:53:50 -0700317 /* XHCIBAR + 816Ch[19:0] = 000e0038h */
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700318 reg32 = read32(mem_base + 0x816c);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700319 reg32 &= ~0x000fffff;
Duncan Laurie527b03a2013-08-28 09:53:50 -0700320 reg32 |= 0x000e0038;
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700321 write32(mem_base + 0x816c, reg32);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700322
323 /* D20:F0:B0h[17,14,13] = 100b */
324 reg32 = pci_read_config32(dev, 0xb0);
325 reg32 &= ~((1 << 14) | (1 << 13));
326 reg32 |= (1 << 17);
327 pci_write_config32(dev, 0xb0, reg32);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700328 }
329
330 reg32 = pci_read_config32(dev, 0x50);
331 if (pch_is_lp()) {
332 /* D20:F0:50h[28:0] = 0FCE2E5Fh */
333 reg32 &= ~0x1fffffff;
334 reg32 |= 0x0fce2e5f;
335 } else {
336 /* D20:F0:50h[26:0] = 07886E9Fh */
337 reg32 &= ~0x07ffffff;
338 reg32 |= 0x07886e9f;
339 }
340 pci_write_config32(dev, 0x50, reg32);
341
342 /* D20:F0:44h[31] = 1 (Access Control Bit) */
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700343 reg32 = pci_read_config32(dev, 0x44);
Ryan Salsamendi0d9b3602017-06-30 17:15:57 -0700344 reg32 |= (1UL << 31);
Duncan Laurie0dcb5772013-07-30 15:58:18 -0700345 pci_write_config32(dev, 0x44, reg32);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700346
347 /* D20:F0:40h[31,23] = 10b (OC Configuration Done) */
348 reg32 = pci_read_config32(dev, 0x40);
349 reg32 &= ~(1 << 23); /* unsupported request */
Ryan Salsamendi0d9b3602017-06-30 17:15:57 -0700350 reg32 |= (1UL << 31);
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700351 pci_write_config32(dev, 0x40, reg32);
Duncan Laurie32d2e2b2013-09-25 14:08:32 -0700352
353 if (acpi_is_wakeup_s3()) {
354 /* Reset ports that are disabled or
355 * polling before returning to the OS. */
356 usb_xhci_reset_usb3(dev, 0);
Stefan Reinauer6dbbe2e2013-10-17 17:00:26 -0700357 } else if (config->xhci_default) {
358 /* Route all ports to XHCI */
359 outb(0xca, 0xb2);
Duncan Laurie32d2e2b2013-09-25 14:08:32 -0700360 }
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700361}
362
363static void usb_xhci_set_subsystem(device_t dev, unsigned vendor,
364 unsigned device)
365{
366 if (!vendor || !device) {
367 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
368 pci_read_config32(dev, PCI_VENDOR_ID));
369 } else {
370 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
371 ((device & 0xffff) << 16) | (vendor & 0xffff));
372 }
373}
374
375static struct pci_operations lops_pci = {
376 .set_subsystem = &usb_xhci_set_subsystem,
377};
378
379static struct device_operations usb_xhci_ops = {
380 .read_resources = pci_dev_read_resources,
381 .set_resources = pci_dev_set_resources,
382 .enable_resources = pci_dev_enable_resources,
383 .init = usb_xhci_init,
384 .ops_pci = &lops_pci,
385};
386
387static const unsigned short pci_device_ids[] = { 0x8c31, /* LynxPoint-H */
388 0x9c31, /* LynxPoint-LP */
389 0 };
390
391static const struct pci_driver pch_usb_xhci __pci_driver = {
392 .ops = &usb_xhci_ops,
393 .vendor = PCI_VENDOR_ID_INTEL,
394 .devices = pci_device_ids,
395};
Duncan Laurie1f529082013-07-30 15:53:45 -0700396#endif /* !__SMM__ */