aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/drallion/ramstage.c
diff options
context:
space:
mode:
authorEric Lai <ericr_lai@compal.corp-partner.google.com>2019-12-17 15:35:06 +0800
committerPatrick Georgi <pgeorgi@google.com>2019-12-19 17:47:52 +0000
commit629abbe7515cf9cd3b50d689c2fce3385805fc0d (patch)
tree52a2dd130bf48350b3b6fdfe8eba6382e639e7a7 /src/mainboard/google/drallion/ramstage.c
parentf82fa746bf9f5e07919f19563a9a0f2e136e40fe (diff)
mb/google/drallion: Remove Wilco 1.0 CML code from drallion code
Drallion supports D3 hot not D3 cold. Remove the code which used for Wilco 1.0 CML. BUG=b:140068267 TEST=boot into OS without any issues BRANCH=none Signed-off-by: Eric Lai <ericr_lai@compal.corp-partner.google.com> Change-Id: Ifc83fae7ac462d3e6595742d96952c2a2607c88b Reviewed-on: https://review.coreboot.org/c/coreboot/+/37779 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Mathew King <mathewk@chromium.org> Reviewed-by: Mike Wiitala <mwiitala@google.com>
Diffstat (limited to 'src/mainboard/google/drallion/ramstage.c')
-rw-r--r--src/mainboard/google/drallion/ramstage.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mainboard/google/drallion/ramstage.c b/src/mainboard/google/drallion/ramstage.c
index 6d3ebb46cb..385504522f 100644
--- a/src/mainboard/google/drallion/ramstage.c
+++ b/src/mainboard/google/drallion/ramstage.c
@@ -59,13 +59,6 @@ void smbios_fill_dimm_locator(const struct dimm_info *dimm,
}
}
-static const struct pad_config gpio_unused[] = {
-/* SUSWARN# */ PAD_NC(GPP_A13, NONE),
-/* SUSACK# */ PAD_NC(GPP_A15, NONE),
-/* M2_SKT2_CFG0 */ PAD_NC(GPP_H12, NONE),
-/* M2_SKT2_CFG1 */ PAD_NC(GPP_H13, NONE),
-};
-
static void mainboard_init(void *chip_info)
{
const struct pad_config *gpio_table;
@@ -73,10 +66,6 @@ static void mainboard_init(void *chip_info)
gpio_table = variant_gpio_table(&num_gpios);
cnl_configure_pads(gpio_table, num_gpios);
-
- /* Disable unused pads for devices with board ID > 2 */
- if (board_id() > 2)
- gpio_configure_pads(gpio_unused, ARRAY_SIZE(gpio_unused));
}
static void mainboard_enable(struct device *dev)