mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 14:09:55 +07:00
36464580e6
This increases the interrupt cells for the 1st level interrupt controller binding in order to describe the polarity like on the other ARM platforms. Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
38 lines
1013 B
Plaintext
38 lines
1013 B
Plaintext
BCM2836 per-CPU interrupt controller
|
|
|
|
The BCM2836 has a per-cpu interrupt controller for the timer, PMU
|
|
events, and SMP IPIs. One of the CPUs may receive interrupts for the
|
|
peripheral (GPU) events, which chain to the BCM2835-style interrupt
|
|
controller.
|
|
|
|
Required properties:
|
|
|
|
- compatible: Should be "brcm,bcm2836-l1-intc"
|
|
- reg: Specifies base physical address and size of the
|
|
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 shall be 2
|
|
|
|
Please refer to interrupts.txt in this directory for details of the common
|
|
Interrupt Controllers bindings used by client devices.
|
|
|
|
The interrupt sources are as follows:
|
|
|
|
0: CNTPSIRQ
|
|
1: CNTPNSIRQ
|
|
2: CNTHPIRQ
|
|
3: CNTVIRQ
|
|
8: GPU_FAST
|
|
9: PMU_FAST
|
|
|
|
Example:
|
|
|
|
local_intc: local_intc {
|
|
compatible = "brcm,bcm2836-l1-intc";
|
|
reg = <0x40000000 0x100>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
interrupt-parent = <&local_intc>;
|
|
};
|