summaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/s230u/romstage.c
diff options
context:
space:
mode:
authorTobias Diedrich <ranma+openocd@tdiedrich.de>2017-02-12 14:09:06 +0100
committerMartin Roth <martinroth@google.com>2017-02-20 18:21:56 +0100
commitcee930a39b183260ea83ac72fc9ca59d61353d8d (patch)
treeb3fd18b7a202b837fc512e2b71a599956fdbbdee /src/mainboard/lenovo/s230u/romstage.c
parent97535558f1a1c123a60d73244d835ff5d8d31213 (diff)
downloadcoreboot-cee930a39b183260ea83ac72fc9ca59d61353d8d.tar.xz
lenovo/s230u: Add Thinkpad Twist (S230U)
Created using autoport plus some manual work and copying from G505S to account for the non-H8 EC. This model uses the same ENE KB9012 EC as the G505S. Tested: - Mainboard variant with 8GB Elpida DDR3 - SeaBIOS payload - Booting into Linux 4.9.6 with Debian/unstable installed on the internal HDD/SDD slot - Native raminit - Both native VGA init and option rom VGA init - Basic TPM functionality (auto-detection and RNG) - Battery status readout - Basic ACPI functions (power button event; power-off; reboot) - thinkpad-acpi hotkey functions - thinkpad-acpi LED control (red thinkpad LED) - Suspend to RAM and resume works - Mini displayport output works Known issues: - Patches needed for EC battery support https://review.coreboot.org/#/c/18348/ https://review.coreboot.org/#/c/18349/ - No thermal zone since temperature sensing is not H8-compatible and needs to be reverse engineered. Not tested: - msata/wwan (probably works) Signed-off-by: Tobias Diedrich <ranma+coreboot@tdiedrich.de> Change-Id: I52bc4515277e5c18afbb14a80a9ac788049f485c Reviewed-on: https://review.coreboot.org/18351 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/lenovo/s230u/romstage.c')
-rw-r--r--src/mainboard/lenovo/s230u/romstage.c127
1 files changed, 127 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/s230u/romstage.c b/src/mainboard/lenovo/s230u/romstage.c
new file mode 100644
index 0000000000..ce751653c2
--- /dev/null
+++ b/src/mainboard/lenovo/s230u/romstage.c
@@ -0,0 +1,127 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2017 Tobias Diedrich <ranma+coreboot@tdiedrich.de>
+ *
+ * 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 <stdint.h>
+#include <string.h>
+#include <cbfs.h>
+#include <lib.h>
+#include <timestamp.h>
+#include <arch/byteorder.h>
+#include <arch/io.h>
+#include <device/pci_def.h>
+#include <device/pnp_def.h>
+#include <cpu/x86/lapic.h>
+#include <arch/acpi.h>
+#include <console/console.h>
+#include "northbridge/intel/sandybridge/sandybridge.h"
+#include "northbridge/intel/sandybridge/raminit_native.h"
+#include "southbridge/intel/bd82x6x/pch.h"
+#include <southbridge/intel/common/gpio.h>
+#include <arch/cpu.h>
+#include <cpu/x86/msr.h>
+#include "ec.h"
+
+#define SPD_LEN 256
+
+void pch_enable_lpc(void)
+{
+ pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x0c00);
+ pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x84, 0x00000000);
+ pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x88, 0x000c0701);
+ pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x8c, 0x000c0069);
+ pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x90, 0x000c06a1);
+ pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0000);
+ pci_write_config32(PCI_DEV(0, 0x1f, 0), 0xac, 0x00010000);
+
+ /* Memory map KB9012 EC registers */
+ pci_write_config32(
+ PCI_DEV(0, 0x1f, 0), 0x98,
+ CONFIG_EC_BASE_ADDRESS | 1);
+ pci_write_config16(PCI_DEV(0, 0x1f, 0), 0xd8, 0xffc0);
+
+ #ifdef CONFIG_USBDEBUG
+ /* Enable external USB port power. */
+ ec_mm_set_bit(0x3b, 4);
+ #endif
+}
+
+void rcba_config(void)
+{
+ /* Disable devices. */
+ RCBA32(0x3414) = 0x00000020;
+ RCBA32(0x3418) = 0x17f41fe3;
+
+}
+const struct southbridge_usb_port mainboard_usb_ports[] = {
+ { 1, 1, 0 },
+ { 1, 0, 0 },
+ { 1, 1, 1 },
+ { 1, 0, 1 },
+ { 1, 1, 2 },
+ { 1, 0, 2 },
+ { 0, 0, 3 },
+ { 0, 1, 3 },
+ { 1, 0, 4 },
+ { 1, 1, 4 },
+ { 1, 1, 5 },
+ { 1, 1, 5 },
+ { 1, 1, 6 },
+ { 1, 1, 6 },
+};
+
+void mainboard_early_init(int s3resume)
+{
+}
+
+void mainboard_config_superio(void)
+{
+}
+
+static const char *mainboard_spd_names[9] = {
+ "ELPIDA 4GB",
+ "SAMSUNG 4GB",
+ "HYNIX 4GB",
+ "ELPIDA 8GB",
+ "SAMSUNG 8GB",
+ "HYNIX 8GB",
+ "ELPIDA 2GB",
+ "SAMSUNG 2GB",
+ "HYNIX 2GB",
+};
+
+void mainboard_get_spd(spd_raw_data *spd, bool id_only)
+{
+ void *spd_file;
+ size_t spd_file_len = 0;
+ const int spd_gpios[] = {71, 70, 16, 48, -1};
+
+ u32 spd_index = get_gpios(spd_gpios);
+ if (spd_index >= ARRAY_SIZE(mainboard_spd_names)) {
+ /* Fallback to pessimistic 2GB image (ELPIDA 2GB) */
+ spd_index = 6;
+ }
+
+ printk(BIOS_INFO, "SPD index %d (%s)\n",
+ spd_index, mainboard_spd_names[spd_index]);
+
+ /* C0S0 is a soldered RAM with no real SPD. Use stored SPD. */
+ spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
+ &spd_file_len);
+
+ if (!spd_file || spd_file_len < SPD_LEN * spd_index + SPD_LEN)
+ die("SPD data not found.");
+
+ memcpy(spd, spd_file + SPD_LEN * spd_index, SPD_LEN);
+}