@@ -283,6 +283,14 @@ static const struct ec_sensor_info sensors_family_intel_600[] = {
283
283
[ec_sensor_temp_t_sensor ] =
284
284
EC_SENSOR ("T_Sensor" , hwmon_temp , 1 , 0x00 , 0x3d ),
285
285
[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 ),
286
294
};
287
295
288
296
/* Shortcuts for common combinations */
@@ -407,6 +415,13 @@ static const struct ec_board_info board_info_maximus_xi_hero = {
407
415
.family = family_intel_300_series ,
408
416
};
409
417
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
+
410
425
static const struct ec_board_info board_info_crosshair_viii_impact = {
411
426
.sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
412
427
SENSOR_TEMP_T_SENSOR | SENSOR_TEMP_VRM |
@@ -542,6 +557,8 @@ static const struct dmi_system_id dmi_table[] = {
542
557
& board_info_maximus_xi_hero ),
543
558
DMI_EXACT_MATCH_ASUS_BOARD_NAME ("ROG MAXIMUS XI HERO (WI-FI)" ,
544
559
& board_info_maximus_xi_hero ),
560
+ DMI_EXACT_MATCH_ASUS_BOARD_NAME ("ROG MAXIMUS Z690 FORMULA" ,
561
+ & board_info_maximus_z690_formula ),
545
562
DMI_EXACT_MATCH_ASUS_BOARD_NAME ("ROG CROSSHAIR VIII IMPACT" ,
546
563
& board_info_crosshair_viii_impact ),
547
564
DMI_EXACT_MATCH_ASUS_BOARD_NAME ("ROG STRIX B550-E GAMING" ,
0 commit comments