aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/arm
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2014-06-26 03:10:33 -0400
committerJason Cooper <jason@lakedaemon.net>2014-06-30 15:21:03 -0400
commit9a34f73fb75531507760b957407fb55278b38ae8 (patch)
treee6a4cd484bb41728a1580da6c7360ef2cd209675 /Documentation/devicetree/bindings/arm
parent29918b6790d92456cab87ff41a01224e0882d04a (diff)
documentation: dt: omap: crossbar: Add description for interrupt consumer
The current crossbar description does not include the description required for the consumer of the crossbar, a.k.a devices whoes events pass through the crossbar into the GIC interrupt controller. So, provide documentation for the same. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sricharan R <r.sricharan@ti.com> Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Link: https://lkml.kernel.org/r/1403766634-18543-16-git-send-email-r.sricharan@ti.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'Documentation/devicetree/bindings/arm')
-rw-r--r--Documentation/devicetree/bindings/arm/omap/crossbar.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/omap/crossbar.txt b/Documentation/devicetree/bindings/arm/omap/crossbar.txt
index a6e462f88889..ce7d01d86705 100644
--- a/Documentation/devicetree/bindings/arm/omap/crossbar.txt
+++ b/Documentation/devicetree/bindings/arm/omap/crossbar.txt
@@ -36,3 +36,20 @@ Examples:
36 ti,irqs-reserved = <0 1 2 3 5 6 131 132 139 140>; 36 ti,irqs-reserved = <0 1 2 3 5 6 131 132 139 140>;
37 ti,irqs-skip = <10 133 139 140>; 37 ti,irqs-skip = <10 133 139 140>;
38 }; 38 };
39
40Consumer:
41========
42See Documentation/devicetree/bindings/interrupt-controller/interrupts.txt and
43Documentation/devicetree/bindings/arm/gic.txt for further details.
44
45An interrupt consumer on an SoC using crossbar will use:
46 interrupts = <GIC_SPI request_number interrupt_level>
47request number shall be between 0 to that described by
48"ti,max-crossbar-sources"
49
50Example:
51 device_x@0x4a023000 {
52 /* Crossbar 8 used */
53 interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
54 ...
55 };