Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 3c2993b8c6143d8a5793746a54eba8f86f95240f authored by Linus Torvalds on 04 June 2017, 23:47:43 UTC
Linux 4.12-rc4
Tip revision: 3c2993b
lmp91000.txt
* Texas Instruments LMP91000 potentiostat

http://www.ti.com/lit/ds/symlink/lmp91000.pdf

Required properties:

  - compatible: should be "ti,lmp91000"
  - reg: the I2C address of the device
  - io-channels: the phandle of the iio provider

  - ti,external-tia-resistor: if the property ti,tia-gain-ohm is not defined this
    needs to be set to signal that an external resistor value is being used.

Optional properties:

  - ti,tia-gain-ohm: ohm value of the internal resistor for the transimpedance
    amplifier. Must be 2750, 3500, 7000, 14000, 35000, 120000, or 350000 ohms.

  - ti,rload-ohm: ohm value of the internal resistor load applied to the gas
    sensor. Must be 10, 33, 50, or 100 (default) ohms.

Example:

lmp91000@48 {
	compatible = "ti,lmp91000";
	reg = <0x48>;
	ti,tia-gain-ohm = <7500>;
	ti,rload = <100>;
	io-channels = <&adc>;
};
back to top