blob: 974c190381281d77fdf7afec8be54a623fc71b79 [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 };
Vagiz Trakhanov216ad212017-09-28 14:54:52 +000019 const u32 currents[] = { 0x20000153, 0x20000f57, 0x2000055b, 0x20000f51,
20 0x2000094a, 0x2000035f, 0x20000f53, 0x20000357,
21 0x20000353 };
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070022 int i;
Stefan Reinauer8e073822012-04-04 00:07:22 +020023
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070024 /* Unlock registers. */
Patrick Rudolph72a90912019-03-24 17:35:55 +010025 write_pmbase16(UPRWC, read_pmbase16(UPRWC) | UPRWC_WR_EN);
Patrick Rudolph87b5ff02017-05-28 13:57:04 +020026
Patrick Rudolphc943d6f2023-10-29 19:51:17 +010027 for (i = 0; i < 14; i++) {
28 if (portmap[i].enabled && !pch_is_mobile() && portmap[i].current == 0) {
29 /*
30 * Note for developers: You can fix this by re-running autoport on
31 * vendor firmware and then updating portmap currents accordingly.
32 * If that is not possible, another option is to choose a non-zero
33 * current setting. In either case, please test all the USB ports.
34 */
35 printk(BIOS_ERR, "%s: USB%02d: current setting of 0 is an invalid setting for desktop!\n",
36 __func__, i);
37
38 RCBA32(USBIR0 + 4 * i) = currents[1];
39 } else {
40 RCBA32(USBIR0 + 4 * i) = currents[portmap[i].current];
41 }
42 }
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070043 for (i = 0; i < 10; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010044 RCBA32(0x3538 + 4 * i) = 0;
Stefan Reinauer8e073822012-04-04 00:07:22 +020045
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070046 for (i = 0; i < 8; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010047 RCBA32(0x3560 + 4 * i) = rcba_dump[i];
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070048 for (i = 0; i < 8; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010049 RCBA32(0x3580 + 4 * i) = 0;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070050 reg32 = 0;
51 for (i = 0; i < 14; i++)
52 if (!portmap[i].enabled)
53 reg32 |= (1 << i);
Patrick Rudolph72a90912019-03-24 17:35:55 +010054 RCBA32(USBPDO) = reg32;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070055 reg32 = 0;
56 for (i = 0; i < 8; i++)
57 if (portmap[i].enabled && portmap[i].oc_pin >= 0)
58 reg32 |= (1 << (i + 8 * portmap[i].oc_pin));
Patrick Rudolph72a90912019-03-24 17:35:55 +010059 RCBA32(USBOCM1) = reg32;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070060 reg32 = 0;
61 for (i = 8; i < 14; i++)
62 if (portmap[i].enabled && portmap[i].oc_pin >= 4)
63 reg32 |= (1 << (i - 8 + 8 * (portmap[i].oc_pin - 4)));
Patrick Rudolph72a90912019-03-24 17:35:55 +010064 RCBA32(USBOCM2) = reg32;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070065 for (i = 0; i < 22; i++)
Patrick Rudolph72a90912019-03-24 17:35:55 +010066 RCBA32(0x35a8 + 4 * i) = 0;
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070067
Patrick Rudolph72a90912019-03-24 17:35:55 +010068 pci_write_config32(PCH_XHCI_DEV, 0xe4, 0x00000000);
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -070069
70 /* Relock registers. */
Patrick Rudolph72a90912019-03-24 17:35:55 +010071 write_pmbase16(UPRWC, 0);
Stefan Reinauer8e073822012-04-04 00:07:22 +020072}