]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
hwmon: (ltc2978) Add additional chip IDs for LTM4676 and LTM4676A
authorGuenter Roeck <linux@roeck-us.net>
Fri, 7 Aug 2015 08:04:56 +0000 (01:04 -0700)
committerGuenter Roeck <linux@roeck-us.net>
Wed, 12 Aug 2015 19:29:22 +0000 (12:29 -0700)
Per datasheet, the chip ID for LTM4676 is 0x448x. This was observed
in real systems. In addition to that, chip ID 0x4401 was observed
as well. Research shows that the chip ID has been changed from 0x440x
to 0x448x in datasheet revision C. Add support for the additional chip ID.

Also add the chip ID for LTM4676A, which is functionally identical
to LTM4676.

Reported-by: Ananda Babu Nettam <anandab@juniper.net>
Cc: Ananda Babu Nettam <anandab@juniper.net>
Cc: Amit U Jain <amjain@juniper.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/pmbus/ltc2978.c

index 28e1e735b5c235c79228e0c3b57effdea91b7683..acbfe3ec2ffd771be6f1ad8cab2433a510d78438 100644 (file)
@@ -60,7 +60,9 @@ enum chips { ltc2974, ltc2977, ltc2978, ltc3880, ltc3882, ltc3883, ltm4676 };
 #define LTC3880_ID_MASK                        0xff00
 #define LTC3883_ID                     0x4300
 #define LTC3883_ID_MASK                        0xff00
-#define LTM4676_ID                     0x4480  /* datasheet claims 0x440X */
+#define LTM4676_ID                     0x4400
+#define LTM4676_ID_2                   0x4480
+#define LTM4676A_ID                    0x47E0
 #define LTM4676_ID_MASK                        0xfff0
 
 #define LTC2974_NUM_PAGES              4
@@ -430,7 +432,9 @@ static int ltc2978_get_id(struct i2c_client *client)
                return ltc3880;
        else if ((chip_id & LTC3883_ID_MASK) == LTC3883_ID)
                return ltc3883;
-       else if ((chip_id & LTM4676_ID_MASK) == LTM4676_ID)
+       else if ((chip_id & LTM4676_ID_MASK) == LTM4676_ID ||
+                (chip_id & LTM4676_ID_MASK) == LTM4676_ID_2 ||
+                (chip_id & LTM4676_ID_MASK) == LTM4676A_ID)
                return ltm4676;
 
        dev_err(&client->dev, "Unsupported chip ID 0x%x\n", chip_id);