summaryrefslogtreecommitdiff
path: root/src/mainboard/google/skyrim/variants/whiterun/gpio.c
diff options
context:
space:
mode:
authorJon Murphy <jpmurphy@google.com>2023-03-08 16:22:58 -0700
committerEric Lai <eric_lai@quanta.corp-partner.google.com>2023-03-10 00:03:17 +0000
commit6b6b8f86df362ae8082bb3f02235f5c1bcb66925 (patch)
tree9f653794f507612bf70dd6d3f0ca7dc6b0bd98c9 /src/mainboard/google/skyrim/variants/whiterun/gpio.c
parent599052942c30ea994ecd6b75edc9434af6834b5c (diff)
Revert "mb/google/skyrim: Create whiterun variant"
For simplicity, OEM devices are given a single codename per build variant. Winterhold was intended to be the lead device and was chosen as the code name for this OEM. Unfortunately, Winterhold was cancelled. We attempted to rename Winterhold to Whiterun to avoid future confusion. Again, unfortunately, since some devices were already built, changing the name requires a manual change to force the firmware to be taken by the DUT. This was not a reasonable path forward, so we're abandoning the naming to Whiterun. This reverts commit af69de494e2c32140ce5e00a1562c2845345b1bf. Signed-off-by: Jon Murphy <jpmurphy@google.com> Change-Id: Idef95f0f4f369b235937e1806ce57c427e441f21 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73583 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Tim Van Patten <timvp@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/mainboard/google/skyrim/variants/whiterun/gpio.c')
-rw-r--r--src/mainboard/google/skyrim/variants/whiterun/gpio.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/mainboard/google/skyrim/variants/whiterun/gpio.c b/src/mainboard/google/skyrim/variants/whiterun/gpio.c
deleted file mode 100644
index 340bfb6fd2..0000000000
--- a/src/mainboard/google/skyrim/variants/whiterun/gpio.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-#include <baseboard/gpio.h>
-#include <baseboard/variants.h>
-#include <commonlib/helpers.h>
-#include <gpio.h>
-
-/* GPIO configuration in ramstage */
-static const struct soc_amd_gpio override_gpio_table[] = {
-
- /* SOC_PEN_DETECT_ODL */
- PAD_NC(GPIO_3),
-
- /* EN_PWR_WWAN_X */
- PAD_NC(GPIO_8),
-
- /* SD_AUX_RST_SOC_L */
- PAD_NC(GPIO_27),
-
- /* WWAN_RST_L */
- PAD_NC(GPIO_42),
-
-};
-
-void variant_override_gpio_table(const struct soc_amd_gpio **gpio, size_t *size)
-{
- *size = ARRAY_SIZE(override_gpio_table);
- *gpio = override_gpio_table;
-}