* [PATCH] hwmon: (k10temp) Add device ID for Strix Halo
@ 2025-08-23 18:04 Rong Zhang
2025-08-25 20:43 ` Mario Limonciello
2025-08-27 15:55 ` Guenter Roeck
0 siblings, 2 replies; 3+ messages in thread
From: Rong Zhang @ 2025-08-23 18:04 UTC (permalink / raw)
To: Clemens Ladisch, Jean Delvare, Guenter Roeck,
Borislav Petkov (AMD), Mario Limonciello
Cc: Rong Zhang, linux-hwmon, linux-kernel
The device ID of Strix Halo Data Fabric Function 3 has been in the tree
since commit 0e640f0a47d8 ("x86/amd_nb: Add new PCI IDs for AMD family
0x1a"), but is somehow missing from k10temp_id_table.
Add it so that it works out of the box.
Tested on Beelink GTR9 Pro Mini PC.
Signed-off-by: Rong Zhang <i@rong.moe>
---
drivers/hwmon/k10temp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/hwmon/k10temp.c b/drivers/hwmon/k10temp.c
index 2f90a2e9ad49..b98d5ec72c4f 100644
--- a/drivers/hwmon/k10temp.c
+++ b/drivers/hwmon/k10temp.c
@@ -565,6 +565,7 @@ static const struct pci_device_id k10temp_id_table[] = {
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M20H_DF_F3) },
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M50H_DF_F3) },
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M60H_DF_F3) },
+ { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M70H_DF_F3) },
{ PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M90H_DF_F3) },
{ PCI_VDEVICE(HYGON, PCI_DEVICE_ID_AMD_17H_DF_F3) },
{}
base-commit: 9703c672af8dd3573c76ce509dfff26bf6c4768d
--
2.50.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] hwmon: (k10temp) Add device ID for Strix Halo
2025-08-23 18:04 [PATCH] hwmon: (k10temp) Add device ID for Strix Halo Rong Zhang
@ 2025-08-25 20:43 ` Mario Limonciello
2025-08-27 15:55 ` Guenter Roeck
1 sibling, 0 replies; 3+ messages in thread
From: Mario Limonciello @ 2025-08-25 20:43 UTC (permalink / raw)
To: Rong Zhang, Clemens Ladisch, Jean Delvare, Guenter Roeck,
Borislav Petkov (AMD)
Cc: linux-hwmon, linux-kernel
On 8/23/2025 1:04 PM, Rong Zhang wrote:
> The device ID of Strix Halo Data Fabric Function 3 has been in the tree
> since commit 0e640f0a47d8 ("x86/amd_nb: Add new PCI IDs for AMD family
> 0x1a"), but is somehow missing from k10temp_id_table.
>
> Add it so that it works out of the box.
>
> Tested on Beelink GTR9 Pro Mini PC.
>
> Signed-off-by: Rong Zhang <i@rong.moe>
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
> ---
> drivers/hwmon/k10temp.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/hwmon/k10temp.c b/drivers/hwmon/k10temp.c
> index 2f90a2e9ad49..b98d5ec72c4f 100644
> --- a/drivers/hwmon/k10temp.c
> +++ b/drivers/hwmon/k10temp.c
> @@ -565,6 +565,7 @@ static const struct pci_device_id k10temp_id_table[] = {
> { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M20H_DF_F3) },
> { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M50H_DF_F3) },
> { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M60H_DF_F3) },
> + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M70H_DF_F3) },
> { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_1AH_M90H_DF_F3) },
> { PCI_VDEVICE(HYGON, PCI_DEVICE_ID_AMD_17H_DF_F3) },
> {}
>
> base-commit: 9703c672af8dd3573c76ce509dfff26bf6c4768d
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] hwmon: (k10temp) Add device ID for Strix Halo
2025-08-23 18:04 [PATCH] hwmon: (k10temp) Add device ID for Strix Halo Rong Zhang
2025-08-25 20:43 ` Mario Limonciello
@ 2025-08-27 15:55 ` Guenter Roeck
1 sibling, 0 replies; 3+ messages in thread
From: Guenter Roeck @ 2025-08-27 15:55 UTC (permalink / raw)
To: Rong Zhang
Cc: Clemens Ladisch, Jean Delvare, Borislav Petkov (AMD),
Mario Limonciello, linux-hwmon, linux-kernel
On Sun, Aug 24, 2025 at 02:04:41AM +0800, Rong Zhang wrote:
> The device ID of Strix Halo Data Fabric Function 3 has been in the tree
> since commit 0e640f0a47d8 ("x86/amd_nb: Add new PCI IDs for AMD family
> 0x1a"), but is somehow missing from k10temp_id_table.
>
> Add it so that it works out of the box.
>
> Tested on Beelink GTR9 Pro Mini PC.
>
> Signed-off-by: Rong Zhang <i@rong.moe>
> Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Applied.
Guenter
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-08-27 15:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-23 18:04 [PATCH] hwmon: (k10temp) Add device ID for Strix Halo Rong Zhang
2025-08-25 20:43 ` Mario Limonciello
2025-08-27 15:55 ` Guenter Roeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).