From: Hyun Kwon Date: Thu, 4 Apr 2019 17:03:31 +0000 (-0700) Subject: dt-bindings: soc: xilinx: ai_engine: Add interrupts X-Git-Tag: xlnx_rebase_v4.19_2019.1~36 X-Git-Url: https://rtime.felk.cvut.cz/gitweb/zynq/linux.git/commitdiff_plain/c23df3047fc2d57c0529ede27809e383473a286e dt-bindings: soc: xilinx: ai_engine: Add interrupts Add the interrupts definition. Signed-off-by: Hyun Kwon Reviewed-by: Wendy Liang Signed-off-by: Michal Simek --- diff --git a/Documentation/devicetree/bindings/soc/xilinx/xlnx,ai_engine.txt b/Documentation/devicetree/bindings/soc/xilinx/xlnx,ai_engine.txt index f62666678d24..04244a6bc2da 100644 --- a/Documentation/devicetree/bindings/soc/xilinx/xlnx,ai_engine.txt +++ b/Documentation/devicetree/bindings/soc/xilinx/xlnx,ai_engine.txt @@ -10,10 +10,19 @@ Required properties: - compatible: Must be "xlnx,ai_engine". - reg: Physical base address and length of the registers set for the device. +- interrupt-parent: the phandle to the interrupt controller. +- interrupts: the interrupt numbers. +- interrupt-names: Should be "interrupt0", "interrupt1", "interrupt2" or + "interrupt3". Example: ai_engine@80000000 { compatible = "xlnx,ai_engine"; reg = <0x0 0x80000000 0x0 0x20000000>; + interrupt-parent = <&gic>; + interrupts = <0x0 0x94 0x1>, + <0x0 0x95 0x1>, + <0x0 0x96 0x1>; + interrupt-names = "interrupt1", "interrupt2", "interrupt3"; };