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

dt-bindings/interrupt-controller: Add DT binding for the Marvell GICP

This commit adds the Device Tree binding documentation for the Marvell
GICP, an extension to the GIC that allows to trigger GIC SPI interrupts
using memory transactions. It is used by the ICU unit in the Marvell
CP110 block to turn wired interrupts inside the CP into SPI interrupts
at the GIC level in the AP.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>

authored by

Thomas Petazzoni and committed by
Marc Zyngier
11f69da0 a1628366

+27
+27
Documentation/devicetree/bindings/interrupt-controller/marvell,gicp.txt
··· 1 + Marvell GICP Controller 2 + ----------------------- 3 + 4 + GICP is a Marvell extension of the GIC that allows to trigger GIC SPI 5 + interrupts by doing a memory transaction. It is used by the ICU 6 + located in the Marvell CP110 to turn wired interrupts inside the CP 7 + into GIC SPI interrupts. 8 + 9 + Required properties: 10 + 11 + - compatible: Must be "marvell,ap806-gicp" 12 + 13 + - reg: Must be the address and size of the GICP SPI registers 14 + 15 + - marvell,spi-ranges: tuples of GIC SPI interrupts ranges available 16 + for this GICP 17 + 18 + - msi-controller: indicates that this is an MSI controller 19 + 20 + Example: 21 + 22 + gicp_spi: gicp-spi@3f0040 { 23 + compatible = "marvell,ap806-gicp"; 24 + reg = <0x3f0040 0x10>; 25 + marvell,spi-ranges = <64 64>, <288 64>; 26 + msi-controller; 27 + };