summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/olivehill/bootblock.c
diff options
context:
space:
mode:
authorMike Banon <mikebdp2@gmail.com>2020-02-13 15:34:24 +0000
committerPatrick Georgi <pgeorgi@google.com>2020-02-24 13:54:41 +0000
commite3229a5192a84c04a4d1f0307d8cfb5e864b7ff3 (patch)
treef5de182e8349580f39f55c0e4adbbec754a1bc45 /src/mainboard/amd/olivehill/bootblock.c
parent44db2f60121d90c1829b66523357c26b9a9bf358 (diff)
downloadcoreboot-e3229a5192a84c04a4d1f0307d8cfb5e864b7ff3.tar.gz
coreboot-e3229a5192a84c04a4d1f0307d8cfb5e864b7ff3.tar.bz2
coreboot-e3229a5192a84c04a4d1f0307d8cfb5e864b7ff3.zip
mb/amd/olivehill: Switch away from ROMCC_BOOTBLOCK
Warning: not tested on hardware. Signed-off-by: Mike Banon <mikebdp2@gmail.com> Change-Id: If8dd531db4a4a16ad7a068ceb281a01f4f245386 Reviewed-on: https://review.coreboot.org/c/coreboot/+/38867 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/amd/olivehill/bootblock.c')
-rw-r--r--src/mainboard/amd/olivehill/bootblock.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mainboard/amd/olivehill/bootblock.c b/src/mainboard/amd/olivehill/bootblock.c
new file mode 100644
index 000000000000..d1f8d606e40f
--- /dev/null
+++ b/src/mainboard/amd/olivehill/bootblock.c
@@ -0,0 +1,29 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * 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 <amdblocks/acpimmio.h>
+#include <bootblock_common.h>
+#include <device/pnp_ops.h>
+
+void bootblock_mainboard_early_init(void)
+{
+ int i;
+ u32 val;
+
+ /* Disable PCI-PCI bridge and release GPIO32/33 for other uses. */
+ pm_write8(0xea, 0x1);
+
+ /* On Larne, after LpcClkDrvSth is set, it needs some time to be stable, because of the buffer ICS551M */
+ for (i = 0; i < 200000; i++)
+ val = inb(0xcd6);
+}