blob: 6d3d096f0b263fe0b185427424bb3b3bae6d0df2 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer8e073822012-04-04 00:07:22 +02002
Patrick Rudolphc943d6f2023-10-29 19:51:17 +01003#include <console/console.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02004#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +02006#include <device/pci_def.h>
Patrick Rudolph72a90912019-03-24 17:35:55 +01007#include <southbridge/intel/common/rcba.h>
8#include <southbridge/intel/common/pmbase.h>
9
Stefan Reinauer8e073822012-04-04 00:07:22 +020010#include "pch.h"
11
Elyes HAOUASf385e9d2018-11-01 19:13:08 +010012void early_usb_init(const struct southbridge_usb_port *portmap)
Stefan Reinauer8e073822012-04-04 00:07:22 +020013{
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070014 u32 reg32;
15 const u32 rcba_dump[8] = {
16 /* 3560 */ 0x024c8001, 0x000024a3, 0x00040002, 0x01000050,
17 /* 3570 */ 0x02000772, 0x16000f9f, 0x1800ff4f, 0x0001d630,
18 };
Patrick Rudolpha48debd2023-10-31 16:50:05 +010019 const u32 currents[] = { USBIR_TXRX_GAIN_MOBILE_LOW, USBIR_TXRX_GAIN_DEFAULT,
20 USBIR_TXRX_GAIN_HIGH, 0x20000f51, 0x2000094a, 0x2000035f,
Joel Linndb3fe7e2024-03-22 23:34:47 +010021 USBIR_TXRX_GAIN_DESKTOP_LOW, 0x20000357, 0x20000353,
22 0x20000253, 0x20000053, 0x2000055f, 0x20000f5f};
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070023 int i;
Stefan Reinauer8e073822012-04-04 00:07:22 +020024
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070025 /* Unlock registers. */
Patrick Rudolph72a90912019-03-24 17:35:55 +010026 write_pmbase16(UPRWC, read_pmbase16(UPRWC) | UPRWC_WR_EN);
Patrick Rudolph87b5ff02017-05-28 13:57:04 +020027
Patrick Rudolphc943d6f2023-10-29 19:51:17 +010028 for (i = 0; i < 14; i++) {
Patrick Rudolpha48debd2023-10-31 16:50:05 +010029 if (portmap[i].enabled && !pch_is_mobile() &&
30 currents[portmap[i].current] == USBIR_TXRX_GAIN_MOBILE_LOW) {
Patrick Rudolphc943d6f2023-10-29 19:51:17 +010031 /*
32 * Note for developers: You can fix this by re-running autoport on
33 * vendor firmware and then updating portmap currents accordingly.
34 * If that is not possible, another option is to choose a non-zero
35 * current setting. In either case, please test all the USB ports.
36 */
Patrick Rudolpha48debd2023-10-31 16:50:05 +010037 printk(BIOS_ERR, "%s: USB%02d: USBIR_TXRX_GAIN_MOBILE_LOW is an invalid setting for desktop!\n",
Patrick Rudolphc943d6f2023-10-29 19:51:17 +010038 __func__, i);
39
Patrick Rudolpha48debd2023-10-31 16:50:05 +010040 RCBA32(USBIR0 + 4 * i) = USBIR_TXRX_GAIN_DEFAULT;
Patrick Rudolphc943d6f2023-10-29 19:51:17 +010041 } else {
42 RCBA32(USBIR0 + 4 * i) = currents[portmap[i].current];
43 }
44 }
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070045 for (i = 0; i < 10; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010046 RCBA32(0x3538 + 4 * i) = 0;
Stefan Reinauer8e073822012-04-04 00:07:22 +020047
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070048 for (i = 0; i < 8; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010049 RCBA32(0x3560 + 4 * i) = rcba_dump[i];
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070050 for (i = 0; i < 8; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010051 RCBA32(0x3580 + 4 * i) = 0;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070052 reg32 = 0;
53 for (i = 0; i < 14; i++)
54 if (!portmap[i].enabled)
55 reg32 |= (1 << i);
Patrick Rudolph72a90912019-03-24 17:35:55 +010056 RCBA32(USBPDO) = reg32;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070057 reg32 = 0;
58 for (i = 0; i < 8; i++)
59 if (portmap[i].enabled && portmap[i].oc_pin >= 0)
60 reg32 |= (1 << (i + 8 * portmap[i].oc_pin));
Patrick Rudolph72a90912019-03-24 17:35:55 +010061 RCBA32(USBOCM1) = reg32;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070062 reg32 = 0;
63 for (i = 8; i < 14; i++)
64 if (portmap[i].enabled && portmap[i].oc_pin >= 4)
65 reg32 |= (1 << (i - 8 + 8 * (portmap[i].oc_pin - 4)));
Patrick Rudolph72a90912019-03-24 17:35:55 +010066 RCBA32(USBOCM2) = reg32;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070067 for (i = 0; i < 22; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010068 RCBA32(0x35a8 + 4 * i) = 0;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070069
Patrick Rudolph72a90912019-03-24 17:35:55 +010070 pci_write_config32(PCH_XHCI_DEV, 0xe4, 0x00000000);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070071
72 /* Relock registers. */
Patrick Rudolph72a90912019-03-24 17:35:55 +010073 write_pmbase16(UPRWC, 0);
Stefan Reinauer8e073822012-04-04 00:07:22 +020074}