xref: /freebsd/sys/contrib/device-tree/Bindings/iio/accel/kionix,kxsd9.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel VadotKionix KXSD9 Accelerometer device tree bindings
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotRequired properties:
4*c66ec88fSEmmanuel Vadot - compatible: 		should be set to "kionix,kxsd9"
5*c66ec88fSEmmanuel Vadot - reg:			i2c slave address
6*c66ec88fSEmmanuel Vadot
7*c66ec88fSEmmanuel VadotOptional properties:
8*c66ec88fSEmmanuel Vadot - vdd-supply:		The input supply for VDD
9*c66ec88fSEmmanuel Vadot - iovdd-supply:	The input supply for IOVDD
10*c66ec88fSEmmanuel Vadot - interrupts:		The movement detection interrupt
11*c66ec88fSEmmanuel Vadot - mount-matrix:	See mount-matrix.txt
12*c66ec88fSEmmanuel Vadot
13*c66ec88fSEmmanuel VadotExample:
14*c66ec88fSEmmanuel Vadot
15*c66ec88fSEmmanuel Vadotkxsd9@18 {
16*c66ec88fSEmmanuel Vadot	compatible = "kionix,kxsd9";
17*c66ec88fSEmmanuel Vadot	reg = <0x18>;
18*c66ec88fSEmmanuel Vadot	interrupt-parent = <&foo>;
19*c66ec88fSEmmanuel Vadot	interrupts = <57 IRQ_TYPE_EDGE_FALLING>;
20*c66ec88fSEmmanuel Vadot	iovdd-supply = <&bar>;
21*c66ec88fSEmmanuel Vadot	vdd-supply = <&baz>;
22*c66ec88fSEmmanuel Vadot};
23