diff options
author | Robert Chen <robert.chen@quanta.corp-partner.google.com> | 2022-03-25 16:21:23 +0800 |
---|---|---|
committer | Karthik Ramasubramanian <kramasub@google.com> | 2022-04-21 17:39:20 +0000 |
commit | 7426358e8186a36eac7341cdb95eb7417fd9e338 (patch) | |
tree | 55a8e91e4607a4e1fdf228ad2c4e51db47fe8537 | |
parent | a6c94332ba1da021bb34a46e7c61265d445f6766 (diff) |
mb/google/dedede/var/drawcia: Add FW_CONFIG probe for EXT_VR
Add FW_CONFIG probe for absent ANPEC APW8738BQBI IC on drawcia.
BUG=b:223687184
TEST=emerge-dedede coreboot
Change-Id: I683049e9d2b10fc9455ef782ce798f1c453073bc
Signed-off-by: Robert Chen <robert.chen@quanta.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63110
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Henry Sun <henrysun@google.com>
Reviewed-by: Shou-Chieh Hsu <shouchieh@google.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
-rw-r--r-- | src/mainboard/google/dedede/variants/drawcia/ramstage.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainboard/google/dedede/variants/drawcia/ramstage.c b/src/mainboard/google/dedede/variants/drawcia/ramstage.c index 26f1532274..aed160e12d 100644 --- a/src/mainboard/google/dedede/variants/drawcia/ramstage.c +++ b/src/mainboard/google/dedede/variants/drawcia/ramstage.c @@ -4,6 +4,15 @@ #include <boardid.h> #include <device/device.h> #include <drivers/usb/acpi/chip.h> +#include <fw_config.h> +#include <soc/soc_chip.h> + +static void ext_vr_update(void) +{ + struct soc_intel_jasperlake_config *cfg = config_of_soc(); + if (fw_config_probe(FW_CONFIG(EXT_VR, EXT_VR_ABSENT))) + cfg->disable_external_bypass_vr = 1; +} void variant_devtree_update(void) { @@ -21,4 +30,5 @@ void variant_devtree_update(void) config = config_of(lte_usb2); config->reset_gpio = lte_reset_gpio; + ext_vr_update(); } |