Skip to content

Commit 24ee20f

Browse files
committed
hwmon: (k10temp) add support for cyan skillfish
JIRA: https://issues.redhat.com/browse/RHEL-118516 commit fafac0e Author: Mikhail Paulyshka <me@mixaill.net> Date: Sun Mar 2 18:50:09 2025 +0300 hwmon: (k10temp) add support for cyan skillfish Add support for Cyan Skillfish (AMD Family 17h Model 47h), which appear to be Zen 2 based APU. The patch was tested with an AMD BC-250 board. Signed-off-by: Mikhail Paulyshka <me@mixaill.net> Link: https://lore.kernel.org/r/20250302155009.49951-1-me@mixaill.net Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Steve Best <sbest@redhat.com>
1 parent 1338eff commit 24ee20f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

drivers/hwmon/k10temp.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,7 @@ static int k10temp_probe(struct pci_dev *pdev, const struct pci_device_id *id)
467467
k10temp_get_ccd_support(data, 4);
468468
break;
469469
case 0x31: /* Zen2 Threadripper */
470+
case 0x47: /* Cyan Skillfish */
470471
case 0x60: /* Renoir */
471472
case 0x68: /* Lucienne */
472473
case 0x71: /* Zen2 */
@@ -535,6 +536,7 @@ static const struct pci_device_id k10temp_id_table[] = {
535536
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_DF_F3) },
536537
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M10H_DF_F3) },
537538
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M30H_DF_F3) },
539+
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M40H_DF_F3) },
538540
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M60H_DF_F3) },
539541
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M70H_DF_F3) },
540542
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_MA0H_DF_F3) },

include/linux/pci_ids.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@
570570
#define PCI_DEVICE_ID_AMD_17H_DF_F3 0x1463
571571
#define PCI_DEVICE_ID_AMD_17H_M10H_DF_F3 0x15eb
572572
#define PCI_DEVICE_ID_AMD_17H_M30H_DF_F3 0x1493
573+
#define PCI_DEVICE_ID_AMD_17H_M40H_DF_F3 0x13f3
573574
#define PCI_DEVICE_ID_AMD_17H_M60H_DF_F3 0x144b
574575
#define PCI_DEVICE_ID_AMD_17H_M70H_DF_F3 0x1443
575576
#define PCI_DEVICE_ID_AMD_17H_MA0H_DF_F3 0x1727

0 commit comments

Comments
 (0)