]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
hwmon: (nct6683) Add customer ID for ASRock B650 Steel Legend WiFi
authorMax Ammann <max@maxammann.org>
Sat, 14 Dec 2024 10:22:01 +0000 (11:22 +0100)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 16 Dec 2024 06:02:25 +0000 (22:02 -0800)
This value was found on an ASRock B650 Steel Legend WiFi with an
NCT6686D chip.

Signed-off-by: Max Ammann <max@maxammann.org>
Link: https://lore.kernel.org/r/20241214102201.122851-1-max@maxammann.org
[groeck: htmldocs fix]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Documentation/hwmon/nct6683.rst
drivers/hwmon/nct6683.c

index 2a7a78eb1b4688088d0505824c11e2870c86c98a..1707844f6d660b9a364bcf717816c0d5372fdc38 100644 (file)
@@ -55,14 +55,15 @@ Tested Boards and Firmware Versions
 The driver has been reported to work with the following boards and
 firmware versions.
 
-=============== ===============================================
-Board          Firmware version
-=============== ===============================================
-Intel DH87RL   NCT6683D EC firmware version 1.0 build 04/03/13
-Intel DH87MC   NCT6683D EC firmware version 1.0 build 04/03/13
-Intel DB85FL   NCT6683D EC firmware version 1.0 build 04/03/13
-ASRock X570    NCT6683D EC firmware version 1.0 build 06/28/19
-ASRock X670E   NCT6686D EC firmware version 1.0 build 05/19/22
-MSI B550       NCT6687D EC firmware version 1.0 build 05/07/20
-MSI X670-P     NCT6687D EC firmware version 0.0 build 09/27/22
-=============== ===============================================
+===============================        ===============================================
+Board                          Firmware version
+===============================        ===============================================
+Intel DH87RL                   NCT6683D EC firmware version 1.0 build 04/03/13
+Intel DH87MC                   NCT6683D EC firmware version 1.0 build 04/03/13
+Intel DB85FL                   NCT6683D EC firmware version 1.0 build 04/03/13
+ASRock X570                    NCT6683D EC firmware version 1.0 build 06/28/19
+ASRock X670E                   NCT6686D EC firmware version 1.0 build 05/19/22
+ASRock B650 Steel Legend WiFi  NCT6686D EC firmware version 1.0 build 11/09/23
+MSI B550                       NCT6687D EC firmware version 1.0 build 05/07/20
+MSI X670-P                     NCT6687D EC firmware version 0.0 build 09/27/22
+===============================        ===============================================
index f71615e06a8fb98c78a4ad690007e79a5619db8a..3d31b8e2c83535b71d2c450e6546ceab9d6429d1 100644 (file)
@@ -178,6 +178,7 @@ superio_exit(int ioreg)
 #define NCT6683_CUSTOMER_ID_ASROCK             0xe2c
 #define NCT6683_CUSTOMER_ID_ASROCK2    0xe1b
 #define NCT6683_CUSTOMER_ID_ASROCK3    0x1631
+#define NCT6683_CUSTOMER_ID_ASROCK4    0x163e
 
 #define NCT6683_REG_BUILD_YEAR         0x604
 #define NCT6683_REG_BUILD_MONTH                0x605
@@ -1233,6 +1234,8 @@ static int nct6683_probe(struct platform_device *pdev)
                break;
        case NCT6683_CUSTOMER_ID_ASROCK3:
                break;
+       case NCT6683_CUSTOMER_ID_ASROCK4:
+               break;
        default:
                if (!force)
                        return -ENODEV;