2021-11-17 02:43:27

by AceLan Kao

[permalink] [raw]
Subject: [PATCH] hwmon: f71882fg: Add F81966 support

From: Menghui Wu <[email protected]>

This adds hardware monitor support the Fintek F81966 Super I/O chip.
Testing was done on the Aaeon SSE-IPTI

Signed-off-by: Menghui Wu <[email protected]>
Signed-off-by: Chia-Lin Kao (AceLan) <[email protected]>
---
drivers/hwmon/f71882fg.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/hwmon/f71882fg.c b/drivers/hwmon/f71882fg.c
index 4673d403759a..938a8b9ec70d 100644
--- a/drivers/hwmon/f71882fg.c
+++ b/drivers/hwmon/f71882fg.c
@@ -49,6 +49,7 @@
#define SIO_F81768D_ID 0x1210 /* Chipset ID */
#define SIO_F81865_ID 0x0704 /* Chipset ID */
#define SIO_F81866_ID 0x1010 /* Chipset ID */
+#define SIO_F81966_ID 0x1502 /* Chipset ID */

#define REGION_LENGTH 8
#define ADDR_REG_OFFSET 5
@@ -2672,6 +2673,7 @@ static int __init f71882fg_find(int sioaddr, struct f71882fg_sio_data *sio_data)
sio_data->type = f81865f;
break;
case SIO_F81866_ID:
+ case SIO_F81966_ID:
sio_data->type = f81866a;
break;
default:
--
2.25.1



2021-11-17 13:23:40

by Guenter Roeck

[permalink] [raw]
Subject: Re: [PATCH] hwmon: f71882fg: Add F81966 support

On Wed, Nov 17, 2021 at 10:43:20AM +0800, AceLan Kao wrote:
> From: Menghui Wu <[email protected]>
>
> This adds hardware monitor support the Fintek F81966 Super I/O chip.
> Testing was done on the Aaeon SSE-IPTI
>
> Signed-off-by: Menghui Wu <[email protected]>
> Signed-off-by: Chia-Lin Kao (AceLan) <[email protected]>

Applied to hwmon-next.

Thanks,
Guenter

> ---
> drivers/hwmon/f71882fg.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/hwmon/f71882fg.c b/drivers/hwmon/f71882fg.c
> index 4673d403759a..938a8b9ec70d 100644
> --- a/drivers/hwmon/f71882fg.c
> +++ b/drivers/hwmon/f71882fg.c
> @@ -49,6 +49,7 @@
> #define SIO_F81768D_ID 0x1210 /* Chipset ID */
> #define SIO_F81865_ID 0x0704 /* Chipset ID */
> #define SIO_F81866_ID 0x1010 /* Chipset ID */
> +#define SIO_F81966_ID 0x1502 /* Chipset ID */
>
> #define REGION_LENGTH 8
> #define ADDR_REG_OFFSET 5
> @@ -2672,6 +2673,7 @@ static int __init f71882fg_find(int sioaddr, struct f71882fg_sio_data *sio_data)
> sio_data->type = f81865f;
> break;
> case SIO_F81866_ID:
> + case SIO_F81966_ID:
> sio_data->type = f81866a;
> break;
> default: