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

Configure Feed

Select the types of activity you want to include in your feed.

at v3.14-rc3 91 lines 3.0 kB view raw
1* ARM Generic Interrupt Controller 2 3ARM SMP cores are often associated with a GIC, providing per processor 4interrupts (PPI), shared processor interrupts (SPI) and software 5generated interrupts (SGI). 6 7Primary GIC is attached directly to the CPU and typically has PPIs and SGIs. 8Secondary GICs are cascaded into the upward interrupt controller and do not 9have PPIs or SGIs. 10 11Main node required properties: 12 13- compatible : should be one of: 14 "arm,gic-400" 15 "arm,cortex-a15-gic" 16 "arm,cortex-a9-gic" 17 "arm,cortex-a7-gic" 18 "arm,arm11mp-gic" 19- interrupt-controller : Identifies the node as an interrupt controller 20- #interrupt-cells : Specifies the number of cells needed to encode an 21 interrupt source. The type shall be a <u32> and the value shall be 3. 22 23 The 1st cell is the interrupt type; 0 for SPI interrupts, 1 for PPI 24 interrupts. 25 26 The 2nd cell contains the interrupt number for the interrupt type. 27 SPI interrupts are in the range [0-987]. PPI interrupts are in the 28 range [0-15]. 29 30 The 3rd cell is the flags, encoded as follows: 31 bits[3:0] trigger type and level flags. 32 1 = low-to-high edge triggered 33 2 = high-to-low edge triggered 34 4 = active high level-sensitive 35 8 = active low level-sensitive 36 bits[15:8] PPI interrupt cpu mask. Each bit corresponds to each of 37 the 8 possible cpus attached to the GIC. A bit set to '1' indicated 38 the interrupt is wired to that CPU. Only valid for PPI interrupts. 39 40- reg : Specifies base physical address(s) and size of the GIC registers. The 41 first region is the GIC distributor register base and size. The 2nd region is 42 the GIC cpu interface register base and size. 43 44Optional 45- interrupts : Interrupt source of the parent interrupt controller on 46 secondary GICs, or VGIC maintenance interrupt on primary GIC (see 47 below). 48 49- cpu-offset : per-cpu offset within the distributor and cpu interface 50 regions, used when the GIC doesn't have banked registers. The offset is 51 cpu-offset * cpu-nr. 52 53Example: 54 55 intc: interrupt-controller@fff11000 { 56 compatible = "arm,cortex-a9-gic"; 57 #interrupt-cells = <3>; 58 #address-cells = <1>; 59 interrupt-controller; 60 reg = <0xfff11000 0x1000>, 61 <0xfff10100 0x100>; 62 }; 63 64 65* GIC virtualization extensions (VGIC) 66 67For ARM cores that support the virtualization extensions, additional 68properties must be described (they only exist if the GIC is the 69primary interrupt controller). 70 71Required properties: 72 73- reg : Additional regions specifying the base physical address and 74 size of the VGIC registers. The first additional region is the GIC 75 virtual interface control register base and size. The 2nd additional 76 region is the GIC virtual cpu interface register base and size. 77 78- interrupts : VGIC maintenance interrupt. 79 80Example: 81 82 interrupt-controller@2c001000 { 83 compatible = "arm,cortex-a15-gic"; 84 #interrupt-cells = <3>; 85 interrupt-controller; 86 reg = <0x2c001000 0x1000>, 87 <0x2c002000 0x1000>, 88 <0x2c004000 0x2000>, 89 <0x2c006000 0x2000>; 90 interrupts = <1 9 0xf04>; 91 };