]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
hwmon: k10temp: Support Threadripper 2920X, 2970WX; simplify offset table
authorGuenter Roeck <linux@roeck-us.net>
Thu, 9 Aug 2018 18:50:46 +0000 (11:50 -0700)
committerGuenter Roeck <linux@roeck-us.net>
Thu, 9 Aug 2018 19:56:56 +0000 (12:56 -0700)
All announced Threadripper 29xx models have a temperature offset of
27 degrees C. Simplify temperature offset table to match all 29xx
Threadripper models with a single entry. Also simplify the table to match
all 19xx Threadripper models with a single entry. This effectively drops
entries for Threadripper 1910/1920/1950 which never saw the light of day.

Cc: Michael Larabel <Michael@phoronix.com>
Cc: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/k10temp.c

index 577e2ede5a1a7bcd983f330528819c8ee258e428..bb15d7816a294f0fd3c9b99d4bc04195e374698e 100644 (file)
@@ -99,14 +99,8 @@ static const struct tctl_offset tctl_offset_table[] = {
        { 0x17, "AMD Ryzen 7 1700X", 20000 },
        { 0x17, "AMD Ryzen 7 1800X", 20000 },
        { 0x17, "AMD Ryzen 7 2700X", 10000 },
-       { 0x17, "AMD Ryzen Threadripper 1950X", 27000 },
-       { 0x17, "AMD Ryzen Threadripper 1920X", 27000 },
-       { 0x17, "AMD Ryzen Threadripper 1900X", 27000 },
-       { 0x17, "AMD Ryzen Threadripper 1950", 10000 },
-       { 0x17, "AMD Ryzen Threadripper 1920", 10000 },
-       { 0x17, "AMD Ryzen Threadripper 1910", 10000 },
-       { 0x17, "AMD Ryzen Threadripper 2950X", 27000 },
-       { 0x17, "AMD Ryzen Threadripper 2990WX", 27000 },
+       { 0x17, "AMD Ryzen Threadripper 19", 27000 }, /* 19{00,20,50}X */
+       { 0x17, "AMD Ryzen Threadripper 29", 27000 }, /* 29{20,50,70,90}[W]X */
 };
 
 static void read_htcreg_pci(struct pci_dev *pdev, u32 *regval)