aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t520/variants/w520/romstage.c
diff options
context:
space:
mode:
authorNico Rikken <nico@nicorikken.eu>2018-01-30 19:00:45 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-04-06 07:08:27 +0000
commitecea3d450c12062a341415e5bea92f67019b036c (patch)
tree1405a01c4c3de8f1c85c9874087653ad542a7c1d /src/mainboard/lenovo/t520/variants/w520/romstage.c
parent3f7de0686d79836d1f62b3d6399e7bcde78d7a27 (diff)
mb/lenovo/w520: Add ThinkPad W520 support
Tested and working: * 4 RAM-slots * Speakers * PCIe Wifi * Camera * Fan * Touchpad, trackpoint and keyboard * Ethernet * Keyboard ACPI events * USB 3.0 * SD-card reader * Native graphics (LCD panel) * Harddisk in Ultrabay * SeaBIOS payloads ** Debian Live ** Debian testing 4.14.0-3-amd64 * GRUB ** Debian Live ** Debian testing 4.14.0-3-amd64 Not working: * Displayport and VGA output (requires VGA option ROM and ACPI switch call) Not tested: * Intel VGA option ROM * ACPI events related to ultrabay * Smart card reader * Docking station Change-Id: I1deb0436a807950c605dcd590deedcb3169bf8c5 Signed-off-by: Nico Rikken <nico@nicorikken.eu> Reviewed-on: https://review.coreboot.org/23564 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/lenovo/t520/variants/w520/romstage.c')
-rw-r--r--src/mainboard/lenovo/t520/variants/w520/romstage.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/t520/variants/w520/romstage.c b/src/mainboard/lenovo/t520/variants/w520/romstage.c
new file mode 100644
index 0000000000..aeee54a208
--- /dev/null
+++ b/src/mainboard/lenovo/t520/variants/w520/romstage.c
@@ -0,0 +1,26 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2010 coresystems GmbH
+ * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
+ * 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 <northbridge/intel/sandybridge/raminit_native.h>
+
+void mainboard_get_spd(spd_raw_data *spd, bool id_only)
+{
+ read_spd(&spd[0], 0x50, id_only);
+ read_spd(&spd[1], 0x52, id_only);
+ read_spd(&spd[2], 0x51, id_only);
+ read_spd(&spd[3], 0x53, id_only);
+}