[PATCH v3 2/3] ARM: bcm281xx: Device Tree bindings for GPIO driver
Linus Walleij
linus.walleij at linaro.org
Fri Aug 16 08:51:22 EDT 2013
On Fri, Jul 26, 2013 at 10:25 PM, Markus Mayer <markus.mayer at linaro.org> wrote:
> --- a/arch/arm/boot/dts/bcm11351.dtsi
> +++ b/arch/arm/boot/dts/bcm11351.dtsi
> @@ -63,6 +63,22 @@
> clock-frequency = <32768>;
> };
>
> + gpio: gpio at 35003000 {
> + compatible = "brcm,kona-gpio";
> + reg = <0x35003000 0x800>;
> + interrupts =
> + <0x0 106 0x4
> + 0x0 115 0x4
> + 0x0 114 0x4
> + 0x0 113 0x4
> + 0x0 112 0x4
> + 0x0 111 0x4>;
> + #gpio-cells = <2>;
> + #interrupt-cells = <2>;
> + gpio-controller;
> + interrupt-controller;
> + };
Do this:
#include <dt-bindings//interrupt-controller/irq.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
Rewrite like this:
+ interrupts =
+ <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH
+ GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH
As you can see we can now understand the dts file.
Possibly this should also be done in the examples.
Yours,
Linus Walleij
More information about the linux-arm-kernel
mailing list