diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2022-03-28 23:19:45 -0500 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2022-12-23 00:19:06 +0000 |
commit | 525c61f74e94c1dbdf4b54ac8157d950695fc03f (patch) | |
tree | e3c51077d96a7d740a852fbd93c993c61502a1c6 /src/mainboard/google/hatch/variants/palkia | |
parent | c0edb925e67b946320dbdfe1a68c4f19ca161d6e (diff) |
mb/google/hatch: Implement touchscreen power sequencing
For touchscreens on hatch variants, drive the enable GPIO high starting
in romstage, then disable the reset GPIO in ramstage. This will allow
coreboot to detect the presence of i2c touchscreens during ACPI SSDT
generation (implemented in a subsequent commit).
BUG=b:121309055
TEST=tested with rest of patch train
Change-Id: I86c5f41b7820eaf5252c276ae854a4206e09385f
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71059
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/hatch/variants/palkia')
-rw-r--r-- | src/mainboard/google/hatch/variants/palkia/gpio.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/mainboard/google/hatch/variants/palkia/gpio.c b/src/mainboard/google/hatch/variants/palkia/gpio.c index c6e4368973..905e4893e6 100644 --- a/src/mainboard/google/hatch/variants/palkia/gpio.c +++ b/src/mainboard/google/hatch/variants/palkia/gpio.c @@ -42,8 +42,12 @@ static const struct pad_config gpio_table[] = { /* D4 : USI_BASE_REPORT_EN */ PAD_CFG_GPO(GPP_D4, 0, DEEP), + /* D9 : GPP_D9 ==> EN_PP3300_DX_TOUCHSCREEN */ + PAD_CFG_GPO(GPP_D9, 1, DEEP), /* D10 : GPP_D10 ==> EN_PP3300_DX_BASE_TOUCHSCREEN */ - PAD_CFG_GPO(GPP_D10, 0, DEEP), + PAD_CFG_GPO(GPP_D10, 1, DEEP), + /* D15 : GPP_D15 ==> TOUCHSCREEN_RST_L */ + PAD_CFG_GPO(GPP_D15, 1, DEEP), /* D16 : USI_INT_L */ PAD_CFG_GPI_APIC(GPP_D16, NONE, PLTRST, LEVEL, INVERT), @@ -142,3 +146,20 @@ const struct pad_config *variant_early_gpio_table(size_t *num) *num = ARRAY_SIZE(early_gpio_table); return early_gpio_table; } + +/* GPIOs needed to be set in romstage. */ +static const struct pad_config romstage_gpio_table[] = { + /* Enable touchscreens, hold in reset */ + /* D9 : EN_PP3300_DX_TOUCHSCREEN */ + PAD_CFG_GPO(GPP_D9, 1, DEEP), + /* D10 : EN_PP3300_DX_BASE_TOUCHSCREEN */ + PAD_CFG_GPO(GPP_D10, 1, DEEP), + /* D15 : TOUCHSCREEN_RST_L */ + PAD_CFG_GPO(GPP_D15, 0, DEEP), +}; + +const struct pad_config *variant_romstage_gpio_table(size_t *num) +{ + *num = ARRAY_SIZE(romstage_gpio_table); + return romstage_gpio_table; +} |