diff options
| author | René Rebe <rene@exactco.de> | 2025-11-17 19:50:48 +0100 |
|---|---|---|
| committer | Guenter Roeck <linux@roeck-us.net> | 2025-11-18 18:46:21 -0800 |
| commit | d56933e74d0d691dcd642876feda0b30f397e2ad (patch) | |
| tree | 798127106475608f12f85b8a4a25d686751677a2 /drivers/hwmon | |
| parent | 785205fd81399bd8e49065aee3362a99d5702321 (diff) | |
hwmon: (k10temp) Add AMD Steam Deck APU ID
Add AMD Custom APU 0405 PCI ID as used in the Valve Steam Deck to
k10temp.
Signed-off-by: René Rebe <rene@exactco.de>
Link: https://lore.kernel.org/r/20251117.195048.691713748773231900.rene@exactco.de
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
| -rw-r--r-- | drivers/hwmon/k10temp.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/hwmon/k10temp.c b/drivers/hwmon/k10temp.c index 7fc1d97a9971..a5d8f45b7881 100644 --- a/drivers/hwmon/k10temp.c +++ b/drivers/hwmon/k10temp.c @@ -82,6 +82,12 @@ MODULE_PARM_DESC(force, "force loading on processors with erratum 319"); #define AMD_I3255_STR "3255" /* + * PCI Device IDs for AMD's Family 17h-based SOCs. + * Defining locally as IDs are not shared. + */ +#define PCI_DEVICE_ID_AMD_17H_M90H_DF_F3 0x1663 + +/* * PCI Device IDs for AMD's Family 1Ah-based SOCs. * Defining locally as IDs are not shared. */ @@ -548,6 +554,7 @@ static const struct pci_device_id k10temp_id_table[] = { { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M40H_DF_F3) }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M60H_DF_F3) }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M70H_DF_F3) }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M90H_DF_F3) }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_MA0H_DF_F3) }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_19H_DF_F3) }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_19H_M10H_DF_F3) }, |
