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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* The mainboard must define a PNOT method to handle power
* state notifications and Notify CPU device objects to
* re-evaluate their _PPC and _CST tables.
*/
Device (EC0)
{
Name (_HID, EISAID ("PNP0C09"))
Name (_UID, 1)
Name (_GPE, EC_GPE) // GPE for Runtime SCI
OperationRegion (ERAM, EmbeddedControl, 0x00, 0xff)
Field (ERAM, ByteAcc, Lock, Preserve)
{
Offset (0x80),
BTEX, 1, // Battery Exists
, 1,
ACEX, 1, // AC Exists
, 5,
Offset (0x83),
LIDS, 1, // Lid Switch State
, 7,
BTST, 8, // Battery State
Offset (0xA2),
BTRA, 16, // Battery Remaining Capacity
BTPR, 16, // Battery Present Rate
BTVO, 16, // Battery Present Voltage
Offset (0xB0),
BTDA, 16, // Battery Design Capacity
BTDF, 16, // Battery Last Full Charge Capacity
BTDV, 16, // Battery Design Voltage
BTDL, 16, // Battery Design Low
Offset (0xC0),
CPUT, 8, // CPU Temperature
Offset (0xCA),
FSL0, 1, // Fan Speed Level 0
FSL1, 1, // Fan Speed Level 1
FSL2, 1, // Fan Speed Level 2
FSL3, 1, // Fan Speed Level 3
FSL4, 1, // Fan Speed Level 4
, 2,
FCOS, 1, // Fan Speed OS Control
}
Method (_CRS, 0, Serialized)
{
Name (ECMD, ResourceTemplate()
{
IO (Decode16, 0x62, 0x62, 0, 1)
IO (Decode16, 0x66, 0x66, 0, 1)
})
Return (ECMD)
}
Method (_REG, 2, NotSerialized)
{
// Initialize AC power state
Store (ACEX, \PWRS)
// Initialize LID switch state
Store (LIDS, \LIDS)
// Enable OS control of fan speed
Store (One, FCOS)
// Force a read of CPU temperature
Store (CPUT, Local0)
/* So that we don't get a warning that Local0 is unused. */
Increment (Local0)
}
PowerResource (FNP0, 0, 0)
{
Method (_STA) {
If (LLessEqual (\FLVL, 0)) {
Return (One)
} Else {
Return (Zero)
}
}
Method (_ON) {
If (FCOS) {
Store (One, FSL0)
Store (0, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
Method (_OFF) {
If (FCOS) {
Store (Zero, FSL0)
Store (1, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
}
PowerResource (FNP1, 0, 0)
{
Method (_STA) {
If (LLessEqual (\FLVL, 1)) {
Return (One)
} Else {
Return (Zero)
}
}
Method (_ON) {
If (FCOS) {
Store (One, FSL1)
Store (1, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
Method (_OFF) {
If (FCOS) {
Store (Zero, FSL1)
Store (2, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
}
PowerResource (FNP2, 0, 0)
{
Method (_STA) {
If (LLessEqual (\FLVL, 2)) {
Return (One)
} Else {
Return (Zero)
}
}
Method (_ON) {
If (FCOS) {
Store (One, FSL2)
Store (2, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
Method (_OFF) {
If (FCOS) {
Store (Zero, FSL2)
Store (3, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
}
PowerResource (FNP3, 0, 0)
{
Method (_STA) {
If (LLessEqual (\FLVL, 3)) {
Return (One)
} Else {
Return (Zero)
}
}
Method (_ON) {
If (FCOS) {
Store (One, FSL3)
Store (3, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
Method (_OFF) {
If (FCOS) {
Store (Zero, FSL3)
Store (4, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
}
PowerResource (FNP4, 0, 0)
{
Method (_STA) {
If (LLessEqual (\FLVL, 4)) {
Return (One)
} Else {
Return (Zero)
}
}
Method (_ON) {
If (FCOS) {
Store (One, FSL4)
Store (4, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
Method (_OFF) {
If (FCOS) {
Store (Zero, FSL4)
Store (5, \FLVL)
Notify (\_TZ.THRM, 0x81)
}
}
}
Device (FAN0)
{
Name (_HID, EISAID ("PNP0C0B"))
Name (_UID, 0)
Name (_PR0, Package () { FNP0 })
}
Device (FAN1)
{
Name (_HID, EISAID ("PNP0C0B"))
Name (_UID, 1)
Name (_PR0, Package () { FNP1 })
}
Device (FAN2)
{
Name (_HID, EISAID ("PNP0C0B"))
Name (_UID, 2)
Name (_PR0, Package () { FNP2 })
}
Device (FAN3)
{
Name (_HID, EISAID ("PNP0C0B"))
Name (_UID, 3)
Name (_PR0, Package () { FNP3 })
}
Device (FAN4)
{
Name (_HID, EISAID ("PNP0C0B"))
Name (_UID, 4)
Name (_PR0, Package () { FNP4 })
}
// AC Power Connected
Method (_Q51, 0, NotSerialized)
{
Store (One, \PWRS)
Notify (AC, 0x80)
\PNOT ()
}
// AC Power Removed
Method (_Q52, 0, NotSerialized)
{
Store (Zero, \PWRS)
Notify (AC, 0x80)
\PNOT ()
}
// Battery State Change
Method (_Q53, 0, NotSerialized)
{
Notify (BAT0, 0x80)
Notify (BAT0, 0x81)
}
// Battery State Change
Method (_Q54, 0, NotSerialized)
{
Notify (BAT0, 0x80)
Notify (BAT0, 0x81)
}
// Power State Change
Method (_Q55, 0, NotSerialized)
{
\PNOT ()
}
// Lid Switch Event
Method (_Q5E, 0, NotSerialized)
{
Store (LIDS, \LIDS)
Notify (\_SB.LID0, 0x80)
}
// Lid Switch Event
Method (_Q5F, 0, NotSerialized)
{
Store (LIDS, \LIDS)
Notify (\_SB.LID0, 0x80)
}
#include "ac.asl"
#include "battery.asl"
}
|