Aaron Durbin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
mb/google/zork: expose stop gpio for trembyle
In CB:43701 the trembyle touchscreen parameters were not updated to expose the stop gpio properly.
BUG=b:162973325
Change-Id: I6f5da1c556ba1c6ccabf699491d3b635aa79f7c0 Signed-off-by: Aaron Durbin adurbin@chromium.org --- M src/mainboard/google/zork/variants/trembyle/overridetree.cb 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/54/44254/1
diff --git a/src/mainboard/google/zork/variants/trembyle/overridetree.cb b/src/mainboard/google/zork/variants/trembyle/overridetree.cb index 26d9a3e..de038ac 100644 --- a/src/mainboard/google/zork/variants/trembyle/overridetree.cb +++ b/src/mainboard/google/zork/variants/trembyle/overridetree.cb @@ -75,6 +75,8 @@ # 32ms: Rise time of the reset line # 20ms: Firmware ready time register "reset_delay_ms" = "32 + 20" + register "stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPIO_144)" + register "stop_off_delay_ms" = "1" register "has_power_resource" = "1" register "disable_gpio_export_in_crs" = "1" device i2c 39 on end
Aaron Durbin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Patch Set 1:
Martin, can you test locally? I don't have a trembyle I can actually touch (it's remote).
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Patch Set 1: Code-Review+2
Aaron Durbin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Patch Set 1: Code-Review-2
No sure this fixes anything yet w/o a confirmation.
Furquan Shaikh has removed a vote from this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Removed Code-Review+2 by Furquan Shaikh furquan@google.com
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/44254/1/src/mainboard/google/zork/v... File src/mainboard/google/zork/variants/trembyle/overridetree.cb:
https://review.coreboot.org/c/coreboot/+/44254/1/src/mainboard/google/zork/v... PS1, Line 78: ACPI_GPIO_OUTPUT_ACTIVE_HIGH This needs to be ACTIVE_LOW. With that, I am able to get touchscreen working again on my Trembyle.
Hello build bot (Jenkins), Furquan Shaikh, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/44254
to look at the new patch set (#2).
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
mb/google/zork: expose stop gpio for trembyle
In CB:43701 the trembyle touchscreen parameters were not updated to expose the stop gpio properly.
BUG=b:162973325
Change-Id: I6f5da1c556ba1c6ccabf699491d3b635aa79f7c0 Signed-off-by: Aaron Durbin adurbin@chromium.org --- M src/mainboard/google/zork/variants/trembyle/overridetree.cb 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/54/44254/2
Aaron Durbin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/44254/1/src/mainboard/google/zork/v... File src/mainboard/google/zork/variants/trembyle/overridetree.cb:
https://review.coreboot.org/c/coreboot/+/44254/1/src/mainboard/google/zork/v... PS1, Line 78: ACPI_GPIO_OUTPUT_ACTIVE_HIGH
This needs to be ACTIVE_LOW. With that, I am able to get touchscreen working again on my Trembyle.
Done
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Patch Set 2: Code-Review+2
We have some other entries in zork which are still using ACTIVE_HIGH for stop_gpio:
git grep "stop_gpio" | grep ACTIVE_HIGH src/mainboard/google/zork/variants/dalboz/overridetree.cb: register "generic.stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPIO_144)" src/mainboard/google/zork/variants/morphius/overridetree.cb: register "generic.stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPIO_144)" src/mainboard/google/zork/variants/vilboz/overridetree.cb: register "generic.stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPIO_144)"
Those will have to be audited as well.
Aaron Durbin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
Patch Set 2: -Code-Review
Patch Set 2: Code-Review+2
We have some other entries in zork which are still using ACTIVE_HIGH for stop_gpio:
git grep "stop_gpio" | grep ACTIVE_HIGH src/mainboard/google/zork/variants/dalboz/overridetree.cb: register "generic.stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPIO_144)" src/mainboard/google/zork/variants/morphius/overridetree.cb: register "generic.stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPIO_144)" src/mainboard/google/zork/variants/vilboz/overridetree.cb: register "generic.stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_HIGH(GPIO_144)"
Those will have to be audited as well.
I filed an issue for that: https://issuetracker.google.com/163816078
Aaron Durbin has submitted this change. ( https://review.coreboot.org/c/coreboot/+/44254 )
Change subject: mb/google/zork: expose stop gpio for trembyle ......................................................................
mb/google/zork: expose stop gpio for trembyle
In CB:43701 the trembyle touchscreen parameters were not updated to expose the stop gpio properly.
BUG=b:162973325
Change-Id: I6f5da1c556ba1c6ccabf699491d3b635aa79f7c0 Signed-off-by: Aaron Durbin adurbin@chromium.org Reviewed-on: https://review.coreboot.org/c/coreboot/+/44254 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Furquan Shaikh furquan@google.com --- M src/mainboard/google/zork/variants/trembyle/overridetree.cb 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Furquan Shaikh: Looks good to me, approved
diff --git a/src/mainboard/google/zork/variants/trembyle/overridetree.cb b/src/mainboard/google/zork/variants/trembyle/overridetree.cb index 001403c..9155567 100644 --- a/src/mainboard/google/zork/variants/trembyle/overridetree.cb +++ b/src/mainboard/google/zork/variants/trembyle/overridetree.cb @@ -73,6 +73,8 @@ # 32ms: Rise time of the reset line # 20ms: Firmware ready time register "reset_delay_ms" = "32 + 20" + register "stop_gpio" = "ACPI_GPIO_OUTPUT_ACTIVE_LOW(GPIO_144)" + register "stop_off_delay_ms" = "1" register "has_power_resource" = "1" device i2c 39 on end end