ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus
[linux-drm-fsl-dcu.git] / Documentation / devicetree / bindings / iio / accel / bma180.txt
1 * Bosch BMA180 triaxial acceleration sensor
2
3 http://omapworld.com/BMA180_111_1002839.pdf
4
5 Required properties:
6
7   - compatible : should be "bosch,bma180"
8   - reg : the I2C address of the sensor
9
10 Optional properties:
11
12   - interrupt-parent : should be the phandle for the interrupt controller
13
14   - interrupts : interrupt mapping for GPIO IRQ, it should by configured with
15                 flags IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_EDGE_RISING
16
17 Example:
18
19 bma180@40 {
20         compatible = "bosch,bma180";
21         reg = <0x40>;
22         interrupt-parent = <&gpio6>;
23         interrupts = <18 (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_EDGE_RISING)>;
24 };