summaryrefslogtreecommitdiff
path: root/src/ec/starlabs/merlin/variants/kbl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-12-26 14:20:00 +0100
committerFelix Singer <felixsinger@posteo.net>2021-12-29 13:35:23 +0000
commitacc2ce975817c5a506a4dab45c845da15546f586 (patch)
treea0ed681727c99e7581bf58bdcebd2bea45176bd4 /src/ec/starlabs/merlin/variants/kbl
parentd05f2319dfc4e08f22b5684de2368017a7775e78 (diff)
ec/starlabs/merlin: Use Printf() for debug prints
Built with BUILD_TIMELESS=1 and coreboot.rom remains identical. Change-Id: Ib59cba7bf553e8323c20fd9aa3474f3ecccf465a Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60380 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/ec/starlabs/merlin/variants/kbl')
-rw-r--r--src/ec/starlabs/merlin/variants/kbl/events.asl66
1 files changed, 33 insertions, 33 deletions
diff --git a/src/ec/starlabs/merlin/variants/kbl/events.asl b/src/ec/starlabs/merlin/variants/kbl/events.asl
index d5466327f8..c9eb1f9f47 100644
--- a/src/ec/starlabs/merlin/variants/kbl/events.asl
+++ b/src/ec/starlabs/merlin/variants/kbl/events.asl
@@ -71,7 +71,7 @@ Method (_QD6, 0, NotSerialized) // Event: 10 Second Power Button Released
Method (_Q22, 0, NotSerialized) // Event: CHARGER_T
{
- Store ("EC: CHARGER_T", Debug)
+ Printf ("EC: CHARGER_T")
}
//
@@ -105,22 +105,22 @@ Method (_Q22, 0, NotSerialized) // Event: CHARGER_T
Method (_Q80, 0, NotSerialized) // Event: Volume Up
{
- Store ("EC: VOLUME_UP", Debug)
+ Printf ("EC: VOLUME_UP")
}
Method (_Q81, 0, NotSerialized) // Event: Volume Down
{
- Store ("EC: VOLUME_DOWN", Debug)
+ Printf ("EC: VOLUME_DOWN")
}
Method (_Q54, 0, NotSerialized) // Event: Power Button Press
{
- Store ("EC: PWRBTN", Debug)
+ Printf ("EC: PWRBTN")
}
Method (_QF0, 0, NotSerialized) // Event: Temperature Report
{
- Store ("EC: Temperature Report", Debug)
+ Printf ("EC: Temperature Report")
}
Method (_QF1, 0, NotSerialized) // Event: Temperature Trigger
@@ -135,141 +135,141 @@ Method (_QF1, 0, NotSerialized) // Event: Temperature Trigger
Method (_Q85, 0, NotSerialized) // Event: HOME
{
- Store ("EC: HOME", Debug)
+ Printf ("EC: HOME")
}
Method (_Q79, 0, NotSerialized) // Event: USB Type-C
{
- Store ("EC: USB Type-C", Debug)
+ Printf ("EC: USB Type-C")
UCEV()
}
Method (_Q0E, 0, NotSerialized) // Event: SLEEP
{
- Store ("EC: SLEEP", Debug)
+ Printf ("EC: SLEEP")
}
Method (_Q13, 0, NotSerialized) // Event: BRIGHTNESS
{
- Store ("EC: BRIGHTNESS", Debug)
+ Printf ("EC: BRIGHTNESS")
}
Method (_Q20, 0, NotSerialized) // Event: CPU_T
{
- Store ("EC: CPU_T", Debug)
+ Printf ("EC: CPU_T")
}
Method (_Q21, 0, NotSerialized) // Event: SKIN_T
{
- Store ("EC: SKIN_T", Debug)
+ Printf ("EC: SKIN_T")
}
Method (_Q30, 0, NotSerialized) // Event: THROT_OFF
{
- Store ("EC: THROT_OFF", Debug)
+ Printf ("EC: THROT_OFF")
}
Method (_Q31, 0, NotSerialized) // Event: THROT_LV1
{
- Store ("EC: THROT_LV1", Debug)
+ Printf ("EC: THROT_LV1")
}
Method (_Q32, 0, NotSerialized) // Event: THROT_LV2
{
- Store ("EC: THROT_LV2", Debug)
+ Printf ("EC: THROT_LV2")
}
Method (_Q33, 0, NotSerialized) // Event: THROT_LV3
{
- Store ("EC: THROT_LV3", Debug)
+ Printf ("EC: THROT_LV3")
}
Method (_Q34, 0, NotSerialized) // Event: THROT_LV4
{
- Store ("EC: THROT_LV4", Debug)
+ Printf ("EC: THROT_LV4")
}
Method (_Q35, 0, NotSerialized) // Event: THROT_LV5
{
- Store ("EC: THROT_LV5", Debug)
+ Printf ("EC: THROT_LV5")
}
Method (_Q36, 0, NotSerialized) // Event: THROT_LV6
{
- Store ("EC: THROT_LV6", Debug)
+ Printf ("EC: THROT_LV6")
}
Method (_Q37, 0, NotSerialized) // Event: THROT_LV7
{
- Store ("EC: THROT_LV7", Debug)
+ Printf ("EC: THROT_LV7")
}
Method (_Q38, 0, NotSerialized) // Event: CPU_DN_SPEED
{
- Store ("EC: CPU_DN_SPEED", Debug)
+ Printf ("EC: CPU_DN_SPEED")
}
Method (_Q3C, 0, NotSerialized) // Event: CPU_UP_SPEED
{
- Store ("EC: CPU_UP_SPEED", Debug)
+ Printf ("EC: CPU_UP_SPEED")
}
Method (_Q3D, 0, NotSerialized) // Event: CPU_TURBO_OFF
{
- Store ("EC: CPU_TURBO_OFF", Debug)
+ Printf ("EC: CPU_TURBO_OFF")
}
Method (_Q3E, 0, NotSerialized) // Event: CPU_TURBO_ON
{
- Store ("EC: CPU_TURBO_ON", Debug)
+ Printf ("EC: CPU_TURBO_ON")
}
Method (_Q3F, 0, NotSerialized) // Event: SHUTDOWN
{
- Store ("EC: SHUTDOWN", Debug)
+ Printf ("EC: SHUTDOWN")
}
Method (_Q01, 0, NotSerialized) // Event: F1 Hot Key
{
- Store ("EC: F1", Debug)
+ Printf ("EC: F1")
}
Method (_Q02, 0, NotSerialized) // Event: F2 Hot Key
{
- Store ("EC: F2", Debug)
+ Printf ("EC: F2")
}
Method (_Q03, 0, NotSerialized) // Event: F3 Hot Key
{
- Store ("EC: F3", Debug)
+ Printf ("EC: F3")
}
Method (_Q04, 0, NotSerialized) // Event: F4 Hot Key
{
- Store ("EC: F4", Debug)
+ Printf ("EC: F4")
}
Method (_Q05, 0, NotSerialized) // Event: F5 Hot Key
{
- Store ("EC: F5", Debug)
+ Printf ("EC: F5")
}
Method (_Q09, 0, NotSerialized) // Event: F9 Hot Key
{
- Store ("EC: F9", Debug)
+ Printf ("EC: F9")
}
Method (_Q10, 0, NotSerialized) // Event: F10 Hot Key
{
- Store ("EC: F10", Debug)
+ Printf ("EC: F10")
}
Method (_Q11, 0, NotSerialized) // Event: F11 Hot Key
{
- Store ("EC: F11", Debug)
+ Printf ("EC: F11")
}
Method (_Q12, 0, NotSerialized) // Event: F12 Hot Key
{
- Store ("EC: F6", Debug)
+ Printf ("EC: F6")
}