-
Notifications
You must be signed in to change notification settings - Fork 17
/
SSDT-USB-K1.dsl
86 lines (84 loc) · 2.83 KB
/
SSDT-USB-K1.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
74
75
76
77
78
79
80
81
82
83
84
85
86
// USB configuration for Envy K with 8086_9xxx xHCI
// Override for USBInjectAll.kext
Device(UIAC)
{
Name(_HID, "UIA00000")
Name(RMCF, Package()
{
// EH01 customization
"EH01", Package()
{
//"port-count", Buffer() { 8, 0, 0, 0 },
"ports", Package()
{
"PR11", Package()
{
"UsbConnector", 255,
"port", Buffer() { 0x01, 0, 0, 0 },
},
},
},
// HUB1 customization
"HUB1", Package()
{
//"port-count", Buffer() { 8, 0, 0, 0 },
"ports", Package()
{
"HP11", Package() // USB2 routed from XHC
{
"UsbConnector", 0,
"port", Buffer() { 0x01, 0, 0, 0 },
},
"HP12", Package() // USB2 routed from XHC
{
"UsbConnector", 0,
"port", Buffer() { 0x02, 0, 0, 0 },
},
"HP13", Package() // camera
{
"UsbConnector", 255,
"port", Buffer() { 0x03, 0, 0, 0 },
},
// HP14 not used
// HP15 not used
"HP16", Package() // USB2 routed from XHC
{
"UsbConnector", 0,
"port", Buffer() { 0x06, 0, 0, 0 },
},
"HP17", Package() // bluetooth
{
"UsbConnector", 255,
"port", Buffer() { 0x07, 0, 0, 0 },
},
// HP18 not used
},
},
// EH02 not present
// XHC overrides
"8086_9xxx", Package()
{
//"port-count", Buffer() { 0xd, 0, 0, 0 },
"ports", Package()
{
// HSxx ports not used due to FakePCIID_XHCIMux
"SS01", Package() // USB3
{
"UsbConnector", 3,
"port", Buffer() { 0xa, 0, 0, 0 },
},
"SS02", Package() // USB3
{
"UsbConnector", 3,
"port", Buffer() { 0xb, 0, 0, 0 },
},
"SS03", Package() // USB3
{
"UsbConnector", 3,
"port", Buffer() { 0xc, 0, 0, 0 },
},
},
},
})
}
//EOF