File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ Supported boards:
29
29
* ROG STRIX Z690-A GAMING WIFI D4
30
30
* ROG ZENITH II EXTREME
31
31
* ROG ZENITH II EXTREME ALPHA
32
+ * TUF GAMING X670E PLUS
32
33
33
34
Authors:
34
35
- Eugene Shalygin <
[email protected] >
Original file line number Diff line number Diff line change @@ -479,6 +479,15 @@ static const struct ec_board_info board_info_zenith_ii_extreme = {
479
479
.family = family_amd_500_series ,
480
480
};
481
481
482
+ static const struct ec_board_info board_info_tuf_gaming_x670e_plus = {
483
+ .sensors = SENSOR_TEMP_CPU | SENSOR_TEMP_CPU_PACKAGE |
484
+ SENSOR_TEMP_MB | SENSOR_TEMP_VRM |
485
+ SENSOR_TEMP_WATER_IN | SENSOR_TEMP_WATER_OUT |
486
+ SENSOR_FAN_CPU_OPT ,
487
+ .mutex_path = ACPI_GLOBAL_LOCK_PSEUDO_PATH ,
488
+ .family = family_amd_600_series ,
489
+ };
490
+
482
491
#define DMI_EXACT_MATCH_ASUS_BOARD_NAME (name , board_info ) \
483
492
{ \
484
493
.matches = { \
@@ -540,6 +549,8 @@ static const struct dmi_system_id dmi_table[] = {
540
549
& board_info_zenith_ii_extreme ),
541
550
DMI_EXACT_MATCH_ASUS_BOARD_NAME ("ROG ZENITH II EXTREME ALPHA" ,
542
551
& board_info_zenith_ii_extreme ),
552
+ DMI_EXACT_MATCH_ASUS_BOARD_NAME ("TUF GAMING X670E-PLUS" ,
553
+ & board_info_tuf_gaming_x670e_plus ),
543
554
{},
544
555
};
545
556
You can’t perform that action at this time.
0 commit comments