-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Script audio, updated CodecCommander,USBInjectAll and ALCPLUGINFIX …
- Loading branch information
1 parent
53ab7f8
commit 7ee09aa
Showing
27 changed files
with
1,067 additions
and
75 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
DefinitionBlock ("", "SSDT", 1, "hack", "_ALC255", 0) | ||
{ | ||
External(_SB.PCI0.HDEF, DeviceObj) | ||
Name(_SB.PCI0.HDEF.RMCF, Package() | ||
{ | ||
"CodecCommander", Package() | ||
{ | ||
"Custom Commands", Package() | ||
{ | ||
Package(){}, // signifies Array instead of Dictionary | ||
Package() | ||
{ | ||
// 0x19 SET_PIN_WIDGET_CONTROL 0x25 | ||
"Command", Buffer() { 0x01, 0x97, 0x07, 0x25 }, | ||
"On Init", ">y", | ||
"On Sleep", ">n", | ||
"On Wake", ">y", | ||
}, | ||
Package() | ||
{ | ||
// 0x21 SET_UNSOLICITED_ENABLE 0x83 | ||
"Command", Buffer() { 0x02, 0x17, 0x08, 0x83 }, | ||
"On Init", ">y", | ||
"On Sleep", ">n", | ||
"On Wake", ">y", | ||
} | ||
}, | ||
"Perform Reset", ">n", | ||
"Perform Reset on External Wake", ">n", // enabled since using AppleALC | ||
"Send Delay", 10, | ||
"Sleep Nodes", ">n", | ||
}, | ||
}) | ||
} | ||
//EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+26 KB
(130%)
EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/MacOS/CodecCommander
Binary file not shown.
38 changes: 38 additions & 0 deletions
38
EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC1220.dsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// CodecCommander configuration for ALC1220 | ||
// provided by daliansky @github | ||
|
||
DefinitionBlock ("", "SSDT", 1, "hack", "_ALC1220", 0) | ||
{ | ||
External(_SB.PCI0.HDEF, DeviceObj) | ||
Name(_SB.PCI0.HDEF.RMCF, Package() | ||
{ | ||
"CodecCommander", Package() | ||
{ | ||
"Custom Commands", Package() | ||
{ | ||
Package(){}, // signifies Array instead of Dictionary | ||
Package() | ||
{ | ||
// 0x19 SET_PIN_WIDGET_CONTROL 0x24 | ||
"Command", Buffer() { 0x01, 0x97, 0x07, 0x24 }, | ||
"On Init", ">y", | ||
"On Sleep", ">n", | ||
"On Wake", ">y", | ||
}, | ||
Package() | ||
{ | ||
// 0x1B SET_UNSOLICITED_ENABLE 0x83 | ||
"Command", Buffer() { 0x01, 0xB7, 0x08, 0x83 }, | ||
"On Init", ">y", | ||
"On Sleep", ">n", | ||
"On Wake", ">y", | ||
}, | ||
}, | ||
"Perform Reset", ">y", | ||
//"Perform Reset on External Wake", ">n", // enable if using AppleALC | ||
"Send Delay", 10, | ||
"Sleep Nodes", ">n", | ||
}, | ||
}) | ||
} | ||
//EOF |
Oops, something went wrong.