Skip to content

Commit c7ba3e2

Browse files
DeagledSmeagolgroeck
authored andcommitted
hwmon: (asus-ec-sensors) add ProArt B550-Creator
Add support for the ASUS ProArt B550-Creator board, was tested with the hardware [1]. [1] zeule/asus-ec-sensors#35 Signed-off-by: Eugene Shalygin <eugene.shalygin@gmail.com> Signed-off-by: fireflame90051 <cacoukoulis@gmail.com> Link: https://lore.kernel.org/r/20230405224339.358675-2-eugene.shalygin@gmail.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
1 parent b0eb085 commit c7ba3e2

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

Documentation/hwmon/asus_ec_sensors.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Supported boards:
88
* PRIME X570-PRO
99
* Pro WS X570-ACE
1010
* ProArt X570-CREATOR WIFI
11+
* ProArt B550-CREATOR
1112
* ROG CROSSHAIR VIII DARK HERO
1213
* ROG CROSSHAIR VIII HERO (WI-FI)
1314
* ROG CROSSHAIR VIII FORMULA

drivers/hwmon/asus-ec-sensors.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,14 @@ static const struct ec_board_info board_info_pro_art_x570_creator_wifi = {
303303
.family = family_amd_500_series,
304304
};
305305

306+
static const struct ec_board_info board_info_pro_art_b550_creator = {
307+
.sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
308+
SENSOR_TEMP_T_SENSOR |
309+
SENSOR_FAN_CPU_OPT,
310+
.mutex_path = ASUS_HW_ACCESS_MUTEX_ASMX,
311+
.family = family_amd_500_series,
312+
};
313+
306314
static const struct ec_board_info board_info_pro_ws_x570_ace = {
307315
.sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB | SENSOR_TEMP_VRM |
308316
SENSOR_TEMP_T_SENSOR | SENSOR_FAN_CHIPSET |
@@ -435,6 +443,8 @@ static const struct dmi_system_id dmi_table[] = {
435443
&board_info_prime_x570_pro),
436444
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ProArt X570-CREATOR WIFI",
437445
&board_info_pro_art_x570_creator_wifi),
446+
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ProArt B550-CREATOR",
447+
&board_info_pro_art_b550_creator),
438448
DMI_EXACT_MATCH_ASUS_BOARD_NAME("Pro WS X570-ACE",
439449
&board_info_pro_ws_x570_ace),
440450
DMI_EXACT_MATCH_ASUS_BOARD_NAME("ROG CROSSHAIR VIII DARK HERO",

0 commit comments

Comments
 (0)