]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
hwmon: (pmbus) Add Intersil power management chips to list of supported devices
authorGuenter Roeck <guenter.roeck@ericsson.com>
Tue, 5 Jul 2011 17:08:11 +0000 (10:08 -0700)
committerGuenter Roeck <guenter.roeck@ericsson.com>
Fri, 15 Jul 2011 15:10:17 +0000 (08:10 -0700)
Add Intersil power management chips to the list of devices supported by the
generic PMBus driver, and add device IDs to enable explicit instantiation.

Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Documentation/hwmon/pmbus
drivers/hwmon/pmbus/Kconfig
drivers/hwmon/pmbus/pmbus.c

index c36c1c1a62bb3915ea47cb865c970720825d0ce3..3d9ca9b0c0b66321a80a5af0308159a85ea98179 100644 (file)
@@ -8,6 +8,16 @@ Supported chips:
     Addresses scanned: -
     Datasheet:
  http://archive.ericsson.net/service/internet/picov/get?DocNo=28701-EN/LZT146395
+  * Intersil ZL2004, ZL2006, ZL2008, ZL2106, ZL6100, ZL6105
+    Prefixes: 'zl2004', 'zl2006', 'zl2008', 'zl2106', 'zl6100', zl6105'
+    Addresses scanned: -
+    Datasheets:
+       http://www.intersil.com/data/fn/fn6846.pdf
+       http://www.intersil.com/data/fn/fn6850.pdf
+       http://www.intersil.com/data/fn/fn6859.pdf
+       http://www.intersil.com/data/fn/fn6852.pdf
+       http://www.intersil.com/data/fn/fn6876.pdf
+       http://www.intersil.com/data/fn/fn6906.pdf
   * Linear Technology LTC2978
     Octal PMBus Power Supply Monitor and Controller
     Prefix: 'ltc2978'
index 0a822a45085df5c6129fc2c0843491efa35554b7..f627924da73a2f2893c5700f39263adcf13d5896 100644 (file)
@@ -20,7 +20,8 @@ config SENSORS_PMBUS
        help
          If you say yes here you get hardware monitoring support for generic
          PMBus devices, including but not limited to ADP4000, BMR450, BMR451,
-         BMR453, BMR454, LTC2978, NCP4200, and NCP4208.
+         BMR453, BMR454, LTC2978, NCP4200, NCP4208, ZL2004, ZL2006, ZL2008,
+         ZL2106, ZL6100, and ZL6105.
 
          This driver can also be built as a module. If so, the module will
          be called pmbus.
index 73de9f1f3194804c06418f43a5d0491a00ab6edc..56bb3b7518b60544431aa9c3ce68e5221c41ef56 100644 (file)
@@ -209,6 +209,12 @@ static const struct i2c_device_id pmbus_id[] = {
        {"ncp4200", 1},
        {"ncp4208", 1},
        {"pmbus", 0},
+       {"zl2004", 1},
+       {"zl2006", 1},
+       {"zl2008", 1},
+       {"zl2106", 1},
+       {"zl6100", 1},
+       {"zl6105", 1},
        {}
 };