Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

hwmon: (asus-ec-sensors) add support for ROG STRIX Z490-F GAMING

This adds support for the ROG STRIX Z490-F GAMING board.

Signed-off-by: Roy Seitz <royseitz@bluewin.ch>
Signed-off-by: Eugene Shalygin <eugene.shalygin@gmail.com>
Link: https://lore.kernel.org/r/20250529090222.154696-1-eugene.shalygin@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>

authored by

Roy Seitz and committed by
Guenter Roeck
e923acf1 9c62e228

+33
+1
Documentation/hwmon/asus_ec_sensors.rst
··· 29 29 * ROG STRIX X570-F GAMING 30 30 * ROG STRIX X570-I GAMING 31 31 * ROG STRIX Z390-F GAMING 32 + * ROG STRIX Z490-F GAMING 32 33 * ROG STRIX Z690-A GAMING WIFI D4 33 34 * ROG ZENITH II EXTREME 34 35 * ROG ZENITH II EXTREME ALPHA
+32
drivers/hwmon/asus-ec-sensors.c
··· 166 166 family_amd_500_series, 167 167 family_amd_600_series, 168 168 family_intel_300_series, 169 + family_intel_400_series, 169 170 family_intel_600_series 170 171 }; 171 172 ··· 278 277 EC_SENSOR("Water_In", hwmon_temp, 1, 0x01, 0x00), 279 278 [ec_sensor_temp_water_out] = 280 279 EC_SENSOR("Water_Out", hwmon_temp, 1, 0x01, 0x01), 280 + }; 281 + 282 + static const struct ec_sensor_info sensors_family_intel_400[] = { 283 + [ec_sensor_temp_chipset] = 284 + EC_SENSOR("Chipset", hwmon_temp, 1, 0x00, 0x3a), 285 + [ec_sensor_temp_cpu] = EC_SENSOR("CPU", hwmon_temp, 1, 0x00, 0x3b), 286 + [ec_sensor_temp_mb] = 287 + EC_SENSOR("Motherboard", hwmon_temp, 1, 0x00, 0x3c), 288 + [ec_sensor_temp_t_sensor] = 289 + EC_SENSOR("T_Sensor", hwmon_temp, 1, 0x00, 0x3d), 290 + [ec_sensor_temp_vrm] = EC_SENSOR("VRM", hwmon_temp, 1, 0x00, 0x3e), 291 + [ec_sensor_fan_cpu_opt] = 292 + EC_SENSOR("CPU_Opt", hwmon_fan, 2, 0x00, 0xb0), 293 + [ec_sensor_fan_vrm_hs] = EC_SENSOR("VRM HS", hwmon_fan, 2, 0x00, 0xb2), 281 294 }; 282 295 283 296 static const struct ec_sensor_info sensors_family_intel_600[] = { ··· 513 498 .family = family_intel_300_series, 514 499 }; 515 500 501 + static const struct ec_board_info board_info_strix_z490_f_gaming = { 502 + .sensors = SENSOR_TEMP_CHIPSET | 503 + SENSOR_TEMP_CPU | 504 + SENSOR_TEMP_MB | 505 + SENSOR_TEMP_T_SENSOR | 506 + SENSOR_TEMP_VRM | 507 + SENSOR_FAN_CPU_OPT | 508 + SENSOR_FAN_VRM_HS, 509 + .mutex_path = ASUS_HW_ACCESS_MUTEX_ASMX, 510 + .family = family_intel_400_series, 511 + }; 512 + 516 513 static const struct ec_board_info board_info_strix_z690_a_gaming_wifi_d4 = { 517 514 .sensors = SENSOR_TEMP_T_SENSOR | SENSOR_TEMP_VRM, 518 515 .mutex_path = ASUS_HW_ACCESS_MUTEX_RMTW_ASMX, ··· 613 586 &board_info_strix_x570_i_gaming), 614 587 DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG STRIX Z390-F GAMING", 615 588 &board_info_strix_z390_f_gaming), 589 + DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG STRIX Z490-F GAMING", 590 + &board_info_strix_z490_f_gaming), 616 591 DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG STRIX Z690-A GAMING WIFI D4", 617 592 &board_info_strix_z690_a_gaming_wifi_d4), 618 593 DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG ZENITH II EXTREME", ··· 1089 1060 break; 1090 1061 case family_intel_300_series: 1091 1062 ec_data->sensors_info = sensors_family_intel_300; 1063 + break; 1064 + case family_intel_400_series: 1065 + ec_data->sensors_info = sensors_family_intel_400; 1092 1066 break; 1093 1067 case family_intel_600_series: 1094 1068 ec_data->sensors_info = sensors_family_intel_600;