Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: arm: optee: add interrupt property

Adds an optional interrupt property to the optee binding.

Reviewed-by: Sumit Garg <sumit.garg@linaro.org>
Reviewed-by: Rob Herring <robh@kernel.org>
Acked-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>

+8
+8
Documentation/devicetree/bindings/arm/firmware/linaro,optee-tz.yaml
··· 24 24 compatible: 25 25 const: linaro,optee-tz 26 26 27 + interrupts: 28 + maxItems: 1 29 + description: | 30 + This interrupt which is used to signal an event by the secure world 31 + software is expected to be edge-triggered. 32 + 27 33 method: 28 34 enum: [smc, hvc] 29 35 description: | ··· 48 42 49 43 examples: 50 44 - | 45 + #include <dt-bindings/interrupt-controller/arm-gic.h> 51 46 firmware { 52 47 optee { 53 48 compatible = "linaro,optee-tz"; 54 49 method = "smc"; 50 + interrupts = <GIC_SPI 187 IRQ_TYPE_EDGE_RISING>; 55 51 }; 56 52 }; 57 53