hc
2023-11-20 3c9370f7b6bffd697c9907a7139e9df5b0d4b9df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Socionext SynQuacer External Interrupt Unit (EXIU)
 
The Socionext Synquacer SoC has an external interrupt unit (EXIU)
that forwards a block of 32 configurable input lines to 32 adjacent
level-high type GICv3 SPIs.
 
Required properties:
 
- compatible           : Should be "socionext,synquacer-exiu".
- reg                  : Specifies base physical address and size of the
                         control registers.
- interrupt-controller : Identifies the node as an interrupt controller.
- #interrupt-cells     : Specifies the number of cells needed to encode an
                         interrupt source. The value must be 3.
- socionext,spi-base   : The SPI number of the first SPI of the 32 adjacent
                         ones the EXIU forwards its interrups to.
 
Notes:
 
- Only SPIs can use the EXIU as an interrupt parent.
 
Example:
 
   exiu: interrupt-controller@510c0000 {
       compatible = "socionext,synquacer-exiu";
       reg = <0x0 0x510c0000 0x0 0x20>;
       interrupt-controller;
       interrupt-parent = <&gic>;
       #interrupt-cells = <3>;
       socionext,spi-base = <112>;
   };