1* Bosch BMA180 triaxial acceleration sensor 2 3http://omapworld.com/BMA180_111_1002839.pdf 4 5Required properties: 6 7 - compatible : should be "bosch,bma180" 8 - reg : the I2C address of the sensor 9 10Optional 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 17Example: 18 19bma180@40 { 20 compatible = "bosch,bma180"; 21 reg = <0x40>; 22 interrupt-parent = <&gpio6>; 23 interrupts = <18 (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_EDGE_RISING)>; 24}; 25