blob: 5a09a216fe65a229ef0c0483bbcd7f858224d809 [file] [log] [blame]
Thierry Reding5e969a42012-09-18 10:57:10 +02001Avionic Design N-bit GPIO expander bindings
2
3Required properties:
4- compatible: should be "ad,gpio-adnp"
5- reg: The I2C slave address for this device.
6- interrupt-parent: phandle of the parent interrupt controller.
7- interrupts: Interrupt specifier for the controllers interrupt.
8- #gpio-cells: Should be 2. The first cell is the GPIO number and the
9 second cell is used to specify optional parameters:
10 - bit 0: polarity (0: normal, 1: inverted)
11- gpio-controller: Marks the device as a GPIO controller
12- nr-gpios: The number of pins supported by the controller.
13
14Example:
15
16 gpioext: gpio-controller@41 {
17 compatible = "ad,gpio-adnp";
18 reg = <0x41>;
19
20 interrupt-parent = <&gpio>;
21 interrupts = <160 1>;
22
23 gpio-controller;
24 #gpio-cells = <2>;
25
26 interrupt-controller;
27 #interrupt-cells = <2>;
28
29 nr-gpios = <64>;
30 };