diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2022-12-18 20:13:28 -0600 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2022-12-23 00:22:40 +0000 |
commit | c5ec497bbcef9c34c8c2fe2ab08504798a7cd376 (patch) | |
tree | 12ec1c702325f375d2b796e12dfede4e496db181 /src/mainboard/google/hatch/variants/kohaku/overridetree.cb | |
parent | 251d443e8b3dd27df9ee5070b7a4926fe1e07dad (diff) |
mb/google/hatch: Use runtime detection for touchscreens/digitizers
Now that power sequencing has been implemented, switch from using ACPI
"probed" flag to "detect" flag for all i2c touchscreens. This removes
non-present devices from the SSDT and relieves the OS of the burden of
probing.
BUG=b:121309055
TEST=build/boot Windows/linux on multiple hatch variants, verify all
touchscreens functional in OS, dump ACPI and verify only i2c devices
actually present on the board have entries in the SSDT.
Change-Id: I2eae486eaa5e42cfe42ecc066a58b09fe2bd9138
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71062
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/hatch/variants/kohaku/overridetree.cb')
-rw-r--r-- | src/mainboard/google/hatch/variants/kohaku/overridetree.cb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/hatch/variants/kohaku/overridetree.cb b/src/mainboard/google/hatch/variants/kohaku/overridetree.cb index 0dc957d909..9eceac27c9 100644 --- a/src/mainboard/google/hatch/variants/kohaku/overridetree.cb +++ b/src/mainboard/google/hatch/variants/kohaku/overridetree.cb @@ -178,7 +178,7 @@ chip soc/intel/cannonlake register "enable_delay_ms" = "1" # 90 ns register "has_power_resource" = "1" register "disable_gpio_export_in_crs" = "1" - register "probed" = "1" + register "detect" = "1" device i2c 4b on end end @@ -186,7 +186,7 @@ chip soc/intel/cannonlake register "hid" = ""ELAN0001"" register "desc" = ""ELAN Touchscreen"" register "irq" = "ACPI_IRQ_LEVEL_LOW(GPP_D16_IRQ)" - register "probed" = "1" + register "detect" = "1" register "enable_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPP_C12)" register "enable_delay_ms" = "10" register "enable_off_delay_ms" = "100" |