2020-12-23 00:55:06

by Gabriel C

[permalink] [raw]
Subject: [PATCH] hwmon: k10temp: Zen3 Ryzen Desktop CPUs support

The module has only support for Zen3 server CPUs right now.
Add support for Family 0x19, model 0x21 which are Zen3 Ryzen Desktop CPUs.
Tested on 5800x, 5900x and 5950x CPUs.

Signed-off-by: Gabriel Craciunescu <[email protected]>
---
drivers/hwmon/k10temp.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/hwmon/k10temp.c b/drivers/hwmon/k10temp.c
index 3bc2551577a3..5b1677d85b3f 100644
--- a/drivers/hwmon/k10temp.c
+++ b/drivers/hwmon/k10temp.c
@@ -448,7 +448,8 @@ static int k10temp_probe(struct pci_dev *pdev, const struct pci_device_id *id)
data->is_zen = true;

switch (boot_cpu_data.x86_model) {
- case 0x0 ... 0x1: /* Zen3 */
+ case 0x0 ... 0x1: /* Zen3 SP3/TR */
+ case 0x21: /* ZEN3 Ryzen Desktop */
k10temp_get_ccd_support(pdev, data, 8);
break;
}
--
2.29.2


2020-12-23 15:39:18

by Guenter Roeck

[permalink] [raw]
Subject: Re: [PATCH] hwmon: k10temp: Zen3 Ryzen Desktop CPUs support

On 12/22/20 4:53 PM, Gabriel Craciunescu wrote:
> The module has only support for Zen3 server CPUs right now.
> Add support for Family 0x19, model 0x21 which are Zen3 Ryzen Desktop CPUs.
> Tested on 5800x, 5900x and 5950x CPUs.
>
> Signed-off-by: Gabriel Craciunescu <[email protected]>

Applied.

Thanks,
Guenter