1 Davinci GPIO controller bindings
4 - compatible: should be "ti,dm6441-gpio"
6 - reg: Physical base address of the controller and the size of memory mapped
9 - gpio-controller : Marks the device node as a gpio controller.
11 - interrupt-parent: phandle of the parent interrupt controller.
13 - interrupts: Array of GPIO interrupt number. Only banked or unbanked IRQs are
16 - ti,ngpio: The number of GPIO pins supported.
18 - ti,davinci-gpio-unbanked: The number of GPIOs that have an individual interrupt
21 The GPIO controller also acts as an interrupt controller. It uses the default
22 two cells specifier as described in Documentation/devicetree/bindings/
23 interrupt-controller/interrupts.txt.
28 compatible = "ti,dm6441-gpio";
30 reg = <0x226000 0x1000>;
31 interrupt-parent = <&intc>;
32 interrupts = <42 IRQ_TYPE_EDGE_BOTH 43 IRQ_TYPE_EDGE_BOTH
33 44 IRQ_TYPE_EDGE_BOTH 45 IRQ_TYPE_EDGE_BOTH
34 46 IRQ_TYPE_EDGE_BOTH 47 IRQ_TYPE_EDGE_BOTH
35 48 IRQ_TYPE_EDGE_BOTH 49 IRQ_TYPE_EDGE_BOTH
36 50 IRQ_TYPE_EDGE_BOTH>;
38 ti,davinci-gpio-unbanked = <0>;
40 #interrupt-cells = <2>;