Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add red dot to the T440P led. #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/ec/lenovo/h8/acpi/systemstatus.asl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Scope (\_SI)
\_SB.PCI0.LPCB.EC.TLED(0x00)
/* suspend TLED off */
\_SB.PCI0.LPCB.EC.TLED(0x07)
/* Red Dot TLED off */
\_SB.PCI0.LPCB.EC.TLED(0x0a)
}

If (LEqual (Arg0, 1)) {
Expand All @@ -21,6 +23,8 @@ Scope (\_SI)
\_SB.PCI0.LPCB.EC.TLED(0x80)
/* suspend TLED off */
\_SB.PCI0.LPCB.EC.TLED(0x07)
/* Red Dot TLED off */
\_SB.PCI0.LPCB.EC.TLED(0x0a)
}

If (LEqual (Arg0, 2)) {
Expand All @@ -30,6 +34,8 @@ Scope (\_SI)
\_SB.PCI0.LPCB.EC.TLED(0x80)
/* suspend LED blinking */
\_SB.PCI0.LPCB.EC.TLED(0xc7)
/* red dot LED blinking */
\_SB.PCI0.LPCB.EC.TLED(0xca)
}

If (LEqual (Arg0, 3)) {
Expand All @@ -39,6 +45,8 @@ Scope (\_SI)
\_SB.PCI0.LPCB.EC.TLED(0xa0)
/* suspend TLED on */
\_SB.PCI0.LPCB.EC.TLED(0x87)
/* red dot TLED pulsing */
\_SB.PCI0.LPCB.EC.TLED(0xaa)
}
}
}