tca-6416: interrupt device tree configuration

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I've an am335x-based board with tca6416. The interrupt output of the
tca is connected to GPIO0_20 on my SoC. How should I configure this
wiring in device tree file?

I've already managed to hook it on I2C and it is working so far:

 tca6416: gpio@20 {
                compatible = "ti,tca6416";
                reg = <0x20>;
                gpio-controller;
                #gpio-cells = <2>;
  };

Documentation/devicetree/bindings/gpio/gpio-pcf857x.txt describes
following properties:

  - interrupt-controller: Identifies the node as an interrupt controller.
  - #interrupt-cells: Number of cells to encode an interrupt source, shall be 2.
  - interrupt-parent: phandle of the parent interrupt controller.
  - interrupts: Interrupt specifier for the controllers interrupt.

and following example:

        pcf8575: gpio@20 {
                compatible = "nxp,pcf8575";
                reg = <0x20>;
                interrupt-parent = <&irqpin2>;
                interrupts = <3 0>;
                gpio-controller;
                #gpio-cells = <2>;
                interrupt-controller;
                #interrupt-cells = <2>;
        };

Where does irqpin2 come from? How to specify GPIO0_20 in "interrupts" context?

Regards,
Yegor
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux SPI]     [Linux Kernel]     [Linux ARM (vger)]     [Linux ARM MSM]     [Linux Omap]     [Linux Arm]     [Linux Tegra]     [Fedora ARM]     [Linux for Samsung SOC]     [eCos]     [Linux Fastboot]     [Gcc Help]     [Git]     [DCCP]     [IETF Announce]     [Security]     [Linux MIPS]     [Yosemite Campsites]

  Powered by Linux