Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/device-tree/Bindings/iio/accel/kionix,kxsd9.txt
48523 views
1
Kionix KXSD9 Accelerometer device tree bindings
2
3
Required properties:
4
- compatible: should be set to "kionix,kxsd9"
5
- reg: i2c slave address
6
7
Optional properties:
8
- vdd-supply: The input supply for VDD
9
- iovdd-supply: The input supply for IOVDD
10
- interrupts: The movement detection interrupt
11
- mount-matrix: See mount-matrix.txt
12
13
Example:
14
15
kxsd9@18 {
16
compatible = "kionix,kxsd9";
17
reg = <0x18>;
18
interrupt-parent = <&foo>;
19
interrupts = <57 IRQ_TYPE_EDGE_FALLING>;
20
iovdd-supply = <&bar>;
21
vdd-supply = <&baz>;
22
};
23
24