aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/ibexpeak/early_usb.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-10-02 17:13:02 +0200
committerArthur Heymans <arthur@aheymans.xyz>2019-10-06 10:14:22 +0000
commit39f8a1aaf98ebb637f0ec74cbe47b8a7ee1a9f33 (patch)
tree2e1b17631e8c35bc4d6363102965f47bf71ff76d /src/southbridge/intel/ibexpeak/early_usb.c
parentd9ceb9deb47ddab336ea69c5e207bb7acbf92f19 (diff)
sb/intel/ibexpeak: Implement USB current settings
This is based on the sandybridge settings. The current lookup table comes from the x201 vendor lookup table. Tested: USB mouse and webcam still work and current registers are the same as before. USB IR are not but the code follows EDS instead of the register replay. Change-Id: Icea9673623a62e7039d5700100a2ee238478abd1 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35762 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/ibexpeak/early_usb.c')
-rw-r--r--src/southbridge/intel/ibexpeak/early_usb.c71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/southbridge/intel/ibexpeak/early_usb.c b/src/southbridge/intel/ibexpeak/early_usb.c
new file mode 100644
index 0000000000..53c4ae7a95
--- /dev/null
+++ b/src/southbridge/intel/ibexpeak/early_usb.c
@@ -0,0 +1,71 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2014 Vladimir Serbinenko
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include <device/mmio.h>
+#include <device/pci_ops.h>
+#include <device/pci_def.h>
+#include <northbridge/intel/sandybridge/sandybridge.h>
+#include <southbridge/intel/common/rcba.h>
+#include <southbridge/intel/common/pmbase.h>
+
+#include "pch.h"
+
+#define TOTAL_USB_PORTS 14
+
+void early_usb_init(const struct southbridge_usb_port *portmap)
+{
+ u32 reg32;
+ const u16 currents[] = { 0xf57, 0xf5f, 0x753, 0x75f, 0x14b, 0x74b,
+ 0x557, 0x757, 0x55f, 0x54b
+ };
+ int i;
+
+ /* Unlock registers. */
+ write_pmbase16(UPRWC, read_pmbase16(UPRWC) | UPRWC_WR_EN);
+
+ for (i = 0; i < TOTAL_USB_PORTS; i++)
+ RCBA32_AND_OR(USBIR0 + 4 * i, ~0xfff, currents[portmap[i].current]);
+
+ /* USB Initialization Registers. We follow what EDS recommends here.
+ TODO maybe vendor firmware values are better? */
+ RCBA32(USBIRC) &= ~(1 << 8);
+ RCBA32_OR(USBIRA, (7 << 12) | (7 << 8) | (7 << 4) | (2 << 0));
+ RCBA32_AND_OR(USBIRB, ~0x617f0, (3 << 17) | (1 << 12) | (1 << 10)
+ | (1 << 8) | (4 << 4));
+ /* Set to Rate Matching Hub Mode to make PCI devices appear. */
+ RCBA32(0x3598) = 0;
+
+ reg32 = 0;
+ for (i = 0; i < TOTAL_USB_PORTS; i++)
+ if (!portmap[i].enabled)
+ reg32 |= (1 << i);
+ RCBA32(USBPDO) = reg32;
+ reg32 = 0;
+ /* The OC pins of the first 8 USB ports are mapped in USBOCM1 */
+ for (i = 0; i < 8; i++)
+ if (portmap[i].enabled && portmap[i].oc_pin >= 0)
+ reg32 |= (1 << (i + 8 * portmap[i].oc_pin));
+ RCBA32(USBOCM1) = reg32;
+ reg32 = 0;
+ /* The OC pins of the remainder 6 USB ports are mapped in USBOCM2 */
+ for (i = 8; i < TOTAL_USB_PORTS; i++)
+ if (portmap[i].enabled && portmap[i].oc_pin >= 4)
+ reg32 |= (1 << (i - 8 + 8 * (portmap[i].oc_pin - 4)));
+ RCBA32(USBOCM2) = reg32;
+
+ /* Relock registers. */
+ write_pmbase16(UPRWC, 0);
+}