aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/zork/bootblock.c
diff options
context:
space:
mode:
authorMartin Roth <martin@coreboot.org>2020-11-12 10:33:43 -0700
committerFelix Held <felix-coreboot@felixheld.de>2020-11-17 08:38:44 +0000
commit560c11ec65ee7c0a669b040546fbdea8a353926e (patch)
tree7cf5a79eeec277e8d6d72a61b1f936e82409c8c3 /src/mainboard/google/zork/bootblock.c
parent5014373edd89835609101821befc6d89dcaadb10 (diff)
mb/google/zork: Assume VBOOT_STARTS_BEFORE_BOOTBLOCK
At this point, the zork platform will only use psp_verstage, so remove the VBOOT_STARTS_IN_BOOTBLOCK option and set code for VBOOT_STARTS- BEFORE_BOOTBLOCK to always be used. TEST=Build & Boot Morphius BRANCH=Zork BUG=b:172848137 Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: I30d90fe82c37966a860b52c07a3550dcecf8d19d Reviewed-on: https://review.coreboot.org/c/coreboot/+/47529 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard/google/zork/bootblock.c')
-rw-r--r--src/mainboard/google/zork/bootblock.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mainboard/google/zork/bootblock.c b/src/mainboard/google/zork/bootblock.c
index ed058886ff..87e028573c 100644
--- a/src/mainboard/google/zork/bootblock.c
+++ b/src/mainboard/google/zork/bootblock.c
@@ -12,10 +12,5 @@ void bootblock_mainboard_early_init(void)
gpios = variant_bootblock_gpio_table(&num_gpios, acpi_get_sleep_type());
program_gpios(gpios, num_gpios);
- if (!CONFIG(VBOOT_STARTS_BEFORE_BOOTBLOCK)) {
- gpios = variant_early_gpio_table(&num_gpios);
- program_gpios(gpios, num_gpios);
- }
-
variant_pcie_gpio_configure();
}