Skip to content

Commit a60d965

Browse files
gr1dagroeck
authored andcommitted
hwmon: (asus-ec-sensors) add ROG MAXIMUS Z90 Formula.
Board and chipset information is from LibreHardwareMonitor [1]. [1] https://github.com/LibreHardwareMonitor/LibreHardwareMonitor Signed-off-by: Daniel Grainger <[email protected]> Signed-off-by: Eugene Shalygin <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]>
1 parent 928e1c6 commit a60d965

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Documentation/hwmon/asus_ec_sensors.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Supported boards:
2020
* ROG CROSSHAIR X670E GENE
2121
* ROG MAXIMUS XI HERO
2222
* ROG MAXIMUS XI HERO (WI-FI)
23+
* ROG MAXIMUS Z690 FORMULA
2324
* ROG STRIX B550-E GAMING
2425
* ROG STRIX B550-I GAMING
2526
* ROG STRIX X570-E GAMING

drivers/hwmon/asus-ec-sensors.c

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,14 @@ static const struct ec_sensor_info sensors_family_intel_600[] = {
283283
[ec_sensor_temp_t_sensor] =
284284
EC_SENSOR("T_Sensor", hwmon_temp, 1, 0x00, 0x3d),
285285
[ec_sensor_temp_vrm] = EC_SENSOR("VRM", hwmon_temp, 1, 0x00, 0x3e),
286+
[ec_sensor_fan_water_flow] =
287+
EC_SENSOR("Water_Flow", hwmon_fan, 2, 0x00, 0xbe),
288+
[ec_sensor_temp_water_in] =
289+
EC_SENSOR("Water_In", hwmon_temp, 1, 0x01, 0x00),
290+
[ec_sensor_temp_water_out] =
291+
EC_SENSOR("Water_Out", hwmon_temp, 1, 0x01, 0x01),
292+
[ec_sensor_temp_water_block_in] =
293+
EC_SENSOR("Water_Block_In", hwmon_temp, 1, 0x01, 0x02),
286294
};
287295

288296
/* Shortcuts for common combinations */
@@ -407,6 +415,13 @@ static const struct ec_board_info board_info_maximus_xi_hero = {
407415
.family = family_intel_300_series,
408416
};
409417

418+
static const struct ec_board_info board_info_maximus_z690_formula = {
419+
.sensors = SENSOR_TEMP_T_SENSOR | SENSOR_TEMP_VRM |
420+
SENSOR_SET_TEMP_WATER | SENSOR_FAN_WATER_FLOW,
421+
.mutex_path = ASUS_HW_ACCESS_MUTEX_RMTW_ASMX,
422+
.family = family_intel_600_series,
423+
};
424+
410425
static const struct ec_board_info board_info_crosshair_viii_impact = {
411426
.sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
412427
SENSOR_TEMP_T_SENSOR | SENSOR_TEMP_VRM |
@@ -542,6 +557,8 @@ static const struct dmi_system_id dmi_table[] = {
542557
&board_info_maximus_xi_hero),
543558
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG MAXIMUS XI HERO (WI-FI)",
544559
&board_info_maximus_xi_hero),
560+
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG MAXIMUS Z690 FORMULA",
561+
&board_info_maximus_z690_formula),
545562
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG CROSSHAIR VIII IMPACT",
546563
&board_info_crosshair_viii_impact),
547564
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG STRIX B550-E GAMING",

0 commit comments

Comments
 (0)