diff options
author | Tyler Wang <Tyler.Wang@quanta.corp-partner.google.com> | 2023-11-21 19:47:26 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-11-22 17:52:20 +0000 |
commit | b1be5c2ffff7e775cd43d58aecc18b34163db17b (patch) | |
tree | dc5378be8d5b811932347193e3ee735a8f154359 /src/mainboard/google | |
parent | d26f5a103fe300dc345b8059394039fa22d1e442 (diff) |
mb/google/rex/var/karis: Set pen detect pin to NC for non-stylus sku
Set pen detect pin to NC base on fw_config.
BUG=b:304680060
TEST=emerge-rex coreboot pass
Change-Id: Icf9171fca49cfed1a05a67ae7fc8d62b7e9630c9
Signed-off-by: Tyler Wang <tyler.wang@quanta.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79213
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/rex/variants/karis/fw_config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/rex/variants/karis/fw_config.c b/src/mainboard/google/rex/variants/karis/fw_config.c index 7211d8ae76..ea9f9ebd18 100644 --- a/src/mainboard/google/rex/variants/karis/fw_config.c +++ b/src/mainboard/google/rex/variants/karis/fw_config.c @@ -30,6 +30,8 @@ static const struct pad_config fp_disable_pads[] = { static const struct pad_config stylus_disable_pads[] = { /* GPP_E04 : SOC_PEN_DETECT */ PAD_NC(GPP_E04, NONE), + /* GPP_E09 : SOC_PEN_DETECT */ + PAD_NC(GPP_E09, NONE), }; void fw_config_gpio_padbased_override(struct pad_config *padbased_table) |