-
Notifications
You must be signed in to change notification settings - Fork 8
/
ssdt9.dsl
87 lines (78 loc) · 1.98 KB
/
ssdt9.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
/*
* Intel ACPI Component Architecture
* AML Disassembler version 20131115-64 [Dec 1 2013]
* Copyright (c) 2000 - 2013 Intel Corporation
*
* Disassembly of ssdt9.aml, Sun Jun 22 22:50:27 2014
*
* Original Table Header:
* Signature "SSDT"
* Length 0x00000119 (281)
* Revision 0x01
* Checksum 0xEF
* OEM ID "PmRef"
* OEM Table ID "ApCst"
* OEM Revision 0x00003000 (12288)
* Compiler ID "INTL"
* Compiler Version 0x20120711 (538052369)
*/
DefinitionBlock ("ssdt9.aml", "SSDT", 1, "PmRef", "ApCst", 0x00003000)
{
External (_PR_.CPU0._CST, MethodObj) // 0 Arguments
External (_PR_.CPU1, ProcessorObj)
External (_PR_.CPU2, ProcessorObj)
External (_PR_.CPU3, ProcessorObj)
External (_PR_.CPU4, ProcessorObj)
External (_PR_.CPU5, ProcessorObj)
External (_PR_.CPU6, ProcessorObj)
External (_PR_.CPU7, ProcessorObj)
Scope (\_PR.CPU1)
{
Method (_CST, 0, NotSerialized) // _CST: C-States
{
Return (\_PR.CPU0._CST ())
}
}
Scope (\_PR.CPU2)
{
Method (_CST, 0, NotSerialized) // _CST: C-States
{
Return (\_PR.CPU0._CST ())
}
}
Scope (\_PR.CPU3)
{
Method (_CST, 0, NotSerialized) // _CST: C-States
{
Return (\_PR.CPU0._CST ())
}
}
Scope (\_PR.CPU4)
{
Method (_CST, 0, NotSerialized) // _CST: C-States
{
Return (\_PR.CPU0._CST ())
}
}
Scope (\_PR.CPU5)
{
Method (_CST, 0, NotSerialized) // _CST: C-States
{
Return (\_PR.CPU0._CST ())
}
}
Scope (\_PR.CPU6)
{
Method (_CST, 0, NotSerialized) // _CST: C-States
{
Return (\_PR.CPU0._CST ())
}
}
Scope (\_PR.CPU7)
{
Method (_CST, 0, NotSerialized) // _CST: C-States
{
Return (\_PR.CPU0._CST ())
}
}
}