diff options
author | Guenter Roeck <linux@roeck-us.net> | 2009-08-21 01:49:25 +0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2013-02-06 21:57:59 +0400 |
commit | ceeadc5c5187b78ffbea737c7a82ecc1e31e80df (patch) | |
tree | 6f506721e61dbc2fd8ed76fb5a69443949869395 /Documentation/devicetree | |
parent | 2bf9233a108cea32edbb5a65afa8e609fa146577 (diff) | |
download | linux-ceeadc5c5187b78ffbea737c7a82ecc1e31e80df.tar.xz |
hwmon: Driver for Texas Instruments INA209
Add support for the TI / Burr-Brown INA209 voltage / current / power
monitor.
Cc: Paul Hays <haysp@magma.net>
Cc: Ira W. Snyder <iws@ovro.caltech.edu>
Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/i2c/ina209.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/i2c/ina209.txt b/Documentation/devicetree/bindings/i2c/ina209.txt new file mode 100644 index 000000000000..9dd2bee80840 --- /dev/null +++ b/Documentation/devicetree/bindings/i2c/ina209.txt @@ -0,0 +1,18 @@ +ina209 properties + +Required properties: +- compatible: Must be "ti,ina209" +- reg: I2C address + +Optional properties: + +- shunt-resistor + Shunt resistor value in micro-Ohm + +Example: + +temp-sensor@4c { + compatible = "ti,ina209"; + reg = <0x4c>; + shunt-resistor = <5000>; +}; |