From c23df3047fc2d57c0529ede27809e383473a286e Mon Sep 17 00:00:00 2001 From: Hyun Kwon Date: Thu, 4 Apr 2019 10:03:31 -0700 Subject: [PATCH] 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 --- .../devicetree/bindings/soc/xilinx/xlnx,ai_engine.txt | 9 +++++++++ 1 file changed, 9 insertions(+) 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"; }; -- 2.39.2