Skip to content

Commit cf85760

Browse files
maxammanngroeck
authored andcommitted
hwmon: (nct6683) Add customer ID for ASRock B650 Steel Legend WiFi
This value was found on an ASRock B650 Steel Legend WiFi with an NCT6686D chip. Signed-off-by: Max Ammann <[email protected]> Link: https://lore.kernel.org/r/[email protected] [groeck: htmldocs fix] Signed-off-by: Guenter Roeck <[email protected]>
1 parent a4ea3e4 commit cf85760

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

Documentation/hwmon/nct6683.rst

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,15 @@ Tested Boards and Firmware Versions
5555
The driver has been reported to work with the following boards and
5656
firmware versions.
5757

58-
=============== ===============================================
59-
Board Firmware version
60-
=============== ===============================================
61-
Intel DH87RL NCT6683D EC firmware version 1.0 build 04/03/13
62-
Intel DH87MC NCT6683D EC firmware version 1.0 build 04/03/13
63-
Intel DB85FL NCT6683D EC firmware version 1.0 build 04/03/13
64-
ASRock X570 NCT6683D EC firmware version 1.0 build 06/28/19
65-
ASRock X670E NCT6686D EC firmware version 1.0 build 05/19/22
66-
MSI B550 NCT6687D EC firmware version 1.0 build 05/07/20
67-
MSI X670-P NCT6687D EC firmware version 0.0 build 09/27/22
68-
=============== ===============================================
58+
=============================== ===============================================
59+
Board Firmware version
60+
=============================== ===============================================
61+
Intel DH87RL NCT6683D EC firmware version 1.0 build 04/03/13
62+
Intel DH87MC NCT6683D EC firmware version 1.0 build 04/03/13
63+
Intel DB85FL NCT6683D EC firmware version 1.0 build 04/03/13
64+
ASRock X570 NCT6683D EC firmware version 1.0 build 06/28/19
65+
ASRock X670E NCT6686D EC firmware version 1.0 build 05/19/22
66+
ASRock B650 Steel Legend WiFi NCT6686D EC firmware version 1.0 build 11/09/23
67+
MSI B550 NCT6687D EC firmware version 1.0 build 05/07/20
68+
MSI X670-P NCT6687D EC firmware version 0.0 build 09/27/22
69+
=============================== ===============================================

drivers/hwmon/nct6683.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ superio_exit(int ioreg)
178178
#define NCT6683_CUSTOMER_ID_ASROCK 0xe2c
179179
#define NCT6683_CUSTOMER_ID_ASROCK2 0xe1b
180180
#define NCT6683_CUSTOMER_ID_ASROCK3 0x1631
181+
#define NCT6683_CUSTOMER_ID_ASROCK4 0x163e
181182

182183
#define NCT6683_REG_BUILD_YEAR 0x604
183184
#define NCT6683_REG_BUILD_MONTH 0x605
@@ -1233,6 +1234,8 @@ static int nct6683_probe(struct platform_device *pdev)
12331234
break;
12341235
case NCT6683_CUSTOMER_ID_ASROCK3:
12351236
break;
1237+
case NCT6683_CUSTOMER_ID_ASROCK4:
1238+
break;
12361239
default:
12371240
if (!force)
12381241
return -ENODEV;

0 commit comments

Comments
 (0)