Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: c8d2bc9bc39ebea8437fd974fdbc21847bb897a3 authored by Linus Torvalds on 02 October 2016, 23:24:33 UTC
Linux 4.8
Tip revision: c8d2bc9
atlas,ec-sm.txt
* Atlas Scientific EC-SM OEM sensor

http://www.atlas-scientific.com/_files/_datasheets/_oem/EC_oem_datasheet.pdf

Required properties:

  - compatible: must be "atlas,ec-sm"
  - reg: the I2C address of the sensor
  - interrupt-parent: should be the phandle for the interrupt controller
  - interrupts: the sole interrupt generated by the device

  Refer to interrupt-controller/interrupts.txt for generic interrupt client
  node bindings.

Example:

atlas@64 {
	compatible = "atlas,ec-sm";
	reg = <0x64>;
	interrupt-parent = <&gpio1>;
	interrupts = <16 2>;
};
back to top