-
Notifications
You must be signed in to change notification settings - Fork 86
/
SSDT-NUCHDA.dsl
73 lines (73 loc) · 2.3 KB
/
SSDT-NUCHDA.dsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//DefinitionBlock ("", "SSDT", 2, "hack", "_NUCHDA", 0)
//{
External(_SB.PCI0.HDEF, DeviceObj)
Name(_SB.PCI0.HDEF.RMCF, Package()
{
"CodecCommander", Package()
{
"Version", 0x020600,
// ALC283 for NUC6/NUC5
"10ec_0283", Package()
{
//"Disable", ">n",
"Custom Commands", Package()
{
Package(){},
Package()
{
// 0x19 SET_PIN_WIDGET_CONTROL 0x25
"Command", Buffer() { 0x01, 0x97, 0x07, 0x25 },
"On Init", ">y",
"On Sleep", ">n",
"On Wake", ">y",
},
},
"Send Delay", 10,
"Sleep Nodes", ">n",
"Update Nodes", ">n",
},
// ALC233 for NUC6 Skull Canyon
"10ec_0233", Package()
{
//"Disable", ">n",
"Custom Commands", Package()
{
Package(){},
Package()
{
// 0x19 SET_PIN_WIDGET_CONTROL 0x25
"Command", Buffer() { 0x01, 0x97, 0x07, 0x25 },
"On Init", ">y",
"On Sleep", ">n",
"On Wake", ">y",
},
},
"Send Delay", 10,
"Sleep Nodes", ">n",
"Update Nodes", ">n",
},
// ALC235 for NUC8
//REVIEW: not tested
"10ec_0235", Package()
{
//"Disable", ">n",
"Custom Commands", Package()
{
Package(){},
Package()
{
// 0x19 SET_PIN_WIDGET_CONTROL 0x25
"Command", Buffer() { 0x01, 0x97, 0x07, 0x25 },
"On Init", ">y",
"On Sleep", ">n",
"On Wake", ">y",
},
},
"Send Delay", 10,
"Sleep Nodes", ">n",
"Update Nodes", ">n",
},
},
})
//}
//EOF