aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@amd.corp-partner.google.com>2022-11-14 09:38:21 -0600
committerEric Lai <eric_lai@quanta.corp-partner.google.com>2022-11-16 03:02:48 +0000
commit150b809edf83d938b9dbb1bb94823b32393dd3fd (patch)
treed3c53ae73acea97d566f40b608ab89a545528315 /src/mainboard/google
parent3c148f7e61566f40988259cb26567530d1c24770 (diff)
mb/google/kahlee: Implement touchscreen power sequencing
As all variants have a touchscreen option, in baseboard table set the enable GPIO high and hold in reset during romstage, then release reset in ramstage. This will allow the touchscreen to make use of the runtime I2C detect feature (enabled in a subsequent commit) so that an ACPI device entry is created only for the touchscreen actually present. This mirrors similar changes made for skyrim, guybrush, and zork. TEST=tested with rest of patch train Change-Id: Id235815904dfc093549a1ed529e19974010977c7 Signed-off-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69547 Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r--src/mainboard/google/kahlee/variants/baseboard/gpio.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/google/kahlee/variants/baseboard/gpio.c b/src/mainboard/google/kahlee/variants/baseboard/gpio.c
index d421e7d212..8f228353f4 100644
--- a/src/mainboard/google/kahlee/variants/baseboard/gpio.c
+++ b/src/mainboard/google/kahlee/variants/baseboard/gpio.c
@@ -69,6 +69,11 @@ static const struct soc_amd_gpio gpio_wlan_rst_early_reset[] = {
};
static const struct soc_amd_gpio gpio_set_stage_rom[] = {
+ /* Enable touchscreen, hold in reset */
+ /* GPIO_76 - EN_PP3300_TOUCHSCREEN */
+ PAD_GPO(GPIO_76, HIGH),
+ /* GPIO_85 - TOUCHSCREEN_RST (Active High) */
+ PAD_GPO(GPIO_85, HIGH),
/* GPIO_133 - APU_EDP_BKLTEN_L (backlight - Active LOW) */
PAD_GPO(GPIO_133, HIGH),
};