aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/zork/variants/dalboz/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/zork/variants/dalboz/romstage.c')
-rw-r--r--src/mainboard/google/zork/variants/dalboz/romstage.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/mainboard/google/zork/variants/dalboz/romstage.c b/src/mainboard/google/zork/variants/dalboz/romstage.c
deleted file mode 100644
index 42e36c4525..0000000000
--- a/src/mainboard/google/zork/variants/dalboz/romstage.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <stddef.h>
-#include <soc/romstage.h>
-#include <baseboard/variants.h>
-#include <ec/google/chromeec/ec.h>
-#include <gpio.h>
-#include <soc/gpio.h>
-#include <variant/gpio.h>
-
-void variant_romstage_entry(void)
-{
- uint32_t board_version;
-
- if (google_chromeec_cbi_get_board_version(&board_version))
- board_version = 1;
-
- if (board_version < 2) {
- /* SET PCIE_RST0_L HIGH */
- gpio_set(WIFI_PCIE_RESET_L, 1);
- } else {
- /* SET PCIE_RST1_L HIGH */
- gpio_set(PCIE_RST1_L, 1);
- }
-}