Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77405?usp=email )
(
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: ec/starlabs/merlin: Update the Q Events ......................................................................
ec/starlabs/merlin: Update the Q Events
Simplify the Q events for the battery and charger to just notify when a status has changed. The EC will trigger these events when either has changed.
Signed-off-by: Sean Rhodes sean@starlabs.systems Change-Id: I3300be5254549fe5cd3b3490d9191240c6d36b6e Reviewed-on: https://review.coreboot.org/c/coreboot/+/77405 Reviewed-by: Matt DeVillier matt.devillier@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/ec/starlabs/merlin/variants/merlin/events.asl 1 file changed, 2 insertions(+), 4 deletions(-)
Approvals: Matt DeVillier: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/ec/starlabs/merlin/variants/merlin/events.asl b/src/ec/starlabs/merlin/variants/merlin/events.asl index acfb6be..38a4971 100644 --- a/src/ec/starlabs/merlin/variants/merlin/events.asl +++ b/src/ec/starlabs/merlin/variants/merlin/events.asl @@ -10,15 +10,13 @@ ^^^^HIDD.HPEM (19) }
-Method (_Q0A, 0, NotSerialized) // Event: AC Power Connected +Method (_Q0A, 0, NotSerialized) // Event: Charger Status Update { - Notify (BAT0, 0x81) Notify (ADP1, 0x80) }
-Method (_Q0B, 0, NotSerialized) // Event: AC Power Disconnected +Method (_Q0B, 0, NotSerialized) // Event: Battery Information Update { - Notify (BAT0, 0x81) Notify (BAT0, 0x80) }