mirror of
https://github.com/Fred78290/nct6687d
synced 2024-11-16 07:48:04 +01:00
commit
6761c42cfe
1 changed files with 26 additions and 19 deletions
27
nct6687.c
27
nct6687.c
|
@ -84,11 +84,12 @@ static const char *const nct6687_chip_names[] = {
|
|||
#define SIO_REG_ENABLE 0x30 /* Logical device enable */
|
||||
#define SIO_REG_ADDR 0x60 /* Logical device address (2 bytes) */
|
||||
|
||||
#define SIO_NCT6683D_ID 0xc732
|
||||
#define SIO_NCT6681_ID 0xb270 /* for later */
|
||||
#define SIO_NCT6683_ID 0xc730
|
||||
#define SIO_NCT6686_ID 0xd440
|
||||
#define SIO_NCT6686D_ID 0xd441
|
||||
#define SIO_NCT6687_ID 0xd451 // 0xd592
|
||||
#define SIO_NCT6687D_ID 0xd592
|
||||
#define SIO_NCT6687D_ID 0xd450 /* NCT6687 ???*/
|
||||
#define SIO_NCT6687_ID 0xd590
|
||||
#define SIO_ID_MASK 0xFFF0
|
||||
|
||||
static inline void superio_outb(int ioreg, int reg, int val)
|
||||
{
|
||||
|
@ -1100,16 +1101,22 @@ static int __init nct6687_find(int sioaddr, struct nct6687_sio_data *sio_data)
|
|||
|
||||
pr_debug("found chip ID: 0x%04x\n", val);
|
||||
|
||||
if (val == SIO_NCT6683D_ID) {
|
||||
switch (val & SIO_ID_MASK) {
|
||||
case SIO_NCT6683_ID:
|
||||
sio_data->kind = nct6683;
|
||||
} else if (val == SIO_NCT6686_ID || val == SIO_NCT6686D_ID) {
|
||||
break;
|
||||
case SIO_NCT6686_ID:
|
||||
sio_data->kind = nct6686;
|
||||
} else if (val == SIO_NCT6687_ID || val == SIO_NCT6687D_ID || force)
|
||||
{
|
||||
break;
|
||||
case SIO_NCT6687D_ID:
|
||||
case SIO_NCT6687_ID:
|
||||
sio_data->kind = nct6687;
|
||||
break;
|
||||
default:
|
||||
if (force){
|
||||
sio_data->kind = nct6687;
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (val != 0xffff)
|
||||
pr_debug("unsupported chip ID: 0x%04x\n", val);
|
||||
goto fail;
|
||||
|
|
Loading…
Reference in a new issue