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
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifdef IT8516E_FIRST_DATA
Device (PM1) {
Name (_HID, EisaId("PNP0C02"))
Name (_STR, Unicode("IT8516E PM Channel 1"))
Name (_UID, SUPERIO_UID(PM, 1))
/*
* The EC firmware exposes CPU temperature through ec ram
* on the first PM channel.
*/
#undef EC_DATA_IO
#define EC_DATA_IO IT8516E_FIRST_DATA
#undef EC_SC_IO
#define EC_SC_IO IT8516E_FIRST_SC
#include <ec/acpi/ec.asl>
Method (_CRS)
{
/* Announce the used i/o ports to the OS */
Return (ResourceTemplate () {
IO (Decode16, IT8516E_FIRST_DATA, IT8516E_FIRST_DATA, 0x01, 0x01)
IO (Decode16, IT8516E_FIRST_SC, IT8516E_FIRST_SC, 0x01, 0x01)
})
}
/*
* Get CPU temperature from first PM channel (in 10th Kelvin)
*/
Method (CTK)
{
Store (EC_READ (0x52), Local0)
If (And (Local0, EC_ERROR_MASK)) {
Return (0)
}
Local0 *= 10
Return (Local0 + 2732) /* Return as 10th Kelvin */
}
}
#endif
#ifdef IT8516E_SECOND_DATA
Device (PM2) {
Name (_HID, EisaId("PNP0C02"))
Name (_STR, Unicode("IT8516E PM Channel 2"))
Name (_UID, SUPERIO_UID(PM, 2))
/*
* The EC firmware exposes fan and GPIO control through the
* second PM channel.
*/
#undef EC_DATA_IO
#define EC_DATA_IO IT8516E_SECOND_DATA
#undef EC_SC_IO
#define EC_SC_IO IT8516E_SECOND_SC
#include <ec/acpi/ec.asl>
Method (_CRS)
{
/* Announce the used i/o ports to the OS */
Return (ResourceTemplate () {
IO (Decode16, IT8516E_SECOND_DATA, IT8516E_SECOND_DATA, 0x01, 0x01)
IO (Decode16, IT8516E_SECOND_SC, IT8516E_SECOND_SC, 0x01, 0x01)
})
}
/*
* Get CPU temperature from second PM channel (in 10th Kelvin)
*/
Method (CTK)
{
Acquire (EC_MUTEX, 0xffff)
Store (SEND_EC_COMMAND (0x20), Local0) /* GET_CPUTEMP */
If (And (Local0, EC_ERROR_MASK)) {
Release (EC_MUTEX)
Return (0)
}
Store (RECV_EC_DATA (), Local0) /* Temp low byte in 64th °C */
If (And (Local0, EC_ERROR_MASK)) {
Release (EC_MUTEX)
Return (0)
}
Store (RECV_EC_DATA (), Local1) /* Temp high byte in 64th °C */
If (And (Local1, EC_ERROR_MASK)) {
Release (EC_MUTEX)
Return (0)
}
Release (EC_MUTEX)
Or (ShiftLeft (Local1, 8), Local0, Local0)
Store (Local0 * 10 / 64, Local0) /* Convert to 10th °C */
Return (Local0 + 2732) /* Return as 10th Kelvin */
}
}
#endif
|