2022-01-24 04:56:44 +03:00
|
|
|
.. SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
Kernel driver asus_ec_sensors
|
|
|
|
=================================
|
|
|
|
|
|
|
|
Supported boards:
|
2022-05-05 10:33:51 +03:00
|
|
|
* PRIME X470-PRO
|
|
|
|
* PRIME X570-PRO
|
|
|
|
* Pro WS X570-ACE
|
2022-04-22 14:17:37 +03:00
|
|
|
* ProArt X570-CREATOR WIFI
|
2022-05-05 10:33:51 +03:00
|
|
|
* ROG CROSSHAIR VIII DARK HERO
|
2022-02-03 23:30:52 +03:00
|
|
|
* ROG CROSSHAIR VIII HERO (WI-FI)
|
2022-05-05 10:33:51 +03:00
|
|
|
* ROG CROSSHAIR VIII FORMULA
|
|
|
|
* ROG CROSSHAIR VIII HERO
|
|
|
|
* ROG CROSSHAIR VIII IMPACT
|
2022-06-28 01:54:36 +03:00
|
|
|
* ROG MAXIMUS XI HERO
|
|
|
|
* ROG MAXIMUS XI HERO (WI-FI)
|
2022-05-05 10:33:51 +03:00
|
|
|
* ROG STRIX B550-E GAMING
|
|
|
|
* ROG STRIX B550-I GAMING
|
|
|
|
* ROG STRIX X570-E GAMING
|
|
|
|
* ROG STRIX X570-E GAMING WIFI II
|
|
|
|
* ROG STRIX X570-F GAMING
|
2022-01-24 04:56:44 +03:00
|
|
|
* ROG STRIX X570-I GAMING
|
2022-06-03 15:27:58 +03:00
|
|
|
* ROG STRIX Z690-A GAMING WIFI D4
|
2022-07-10 23:26:39 +03:00
|
|
|
* ROG ZENITH II EXTREME
|
2023-01-28 13:21:34 +03:00
|
|
|
* ROG ZENITH II EXTREME ALPHA
|
2022-01-24 04:56:44 +03:00
|
|
|
|
|
|
|
Authors:
|
|
|
|
- Eugene Shalygin <eugene.shalygin@gmail.com>
|
|
|
|
|
|
|
|
Description:
|
|
|
|
------------
|
|
|
|
ASUS mainboards publish hardware monitoring information via Super I/O
|
|
|
|
chip and the ACPI embedded controller (EC) registers. Some of the sensors
|
|
|
|
are only available via the EC.
|
|
|
|
|
|
|
|
The driver is aware of and reads the following sensors:
|
|
|
|
|
|
|
|
1. Chipset (PCH) temperature
|
|
|
|
2. CPU package temperature
|
|
|
|
3. Motherboard temperature
|
|
|
|
4. Readings from the T_Sensor header
|
|
|
|
5. VRM temperature
|
|
|
|
6. CPU_Opt fan RPM
|
|
|
|
7. VRM heatsink fan RPM
|
|
|
|
8. Chipset fan RPM
|
|
|
|
9. Readings from the "Water flow meter" header (RPM)
|
|
|
|
10. Readings from the "Water In" and "Water Out" temperature headers
|
|
|
|
11. CPU current
|
2022-02-08 12:42:43 +03:00
|
|
|
12. CPU core voltage
|
2022-01-24 04:56:44 +03:00
|
|
|
|
|
|
|
Sensor values are read from EC registers, and to avoid race with the board
|
|
|
|
firmware the driver acquires ACPI mutex, the one used by the WMI when its
|
|
|
|
methods access the EC.
|
|
|
|
|
|
|
|
Module Parameters
|
|
|
|
-----------------
|
|
|
|
* mutex_path: string
|
|
|
|
The driver holds path to the ACPI mutex for each board (actually,
|
|
|
|
the path is mostly identical for them). If ASUS changes this path
|
|
|
|
in a future BIOS update, this parameter can be used to override
|
|
|
|
the stored in the driver value until it gets updated.
|
2022-04-27 17:29:59 +03:00
|
|
|
A special string ":GLOBAL_LOCK" can be passed to use the ACPI
|
|
|
|
global lock instead of a dedicated mutex.
|