-
Notifications
You must be signed in to change notification settings - Fork 55.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'irqchip-4.21' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/maz/arm-platforms into irq/core Pull irqchip updates from Marc Zyngier: - A bunch of new irqchip drivers (RDA8810PL, Madera, imx-irqsteer) - Updates for new (and old) platforms (i.MX8MQ, F1C100s) - A number of SPDX cleanups - A workaround for a very broken GICv3 implementation - A platform-msi fix - Various cleanups
- Loading branch information
Showing
28 changed files
with
1,190 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
Documentation/devicetree/bindings/interrupt-controller/fsl,irqsteer.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Freescale IRQSTEER Interrupt multiplexer | ||
|
||
Required properties: | ||
|
||
- compatible: should be: | ||
- "fsl,imx8m-irqsteer" | ||
- "fsl,imx-irqsteer" | ||
- reg: Physical base address and size of registers. | ||
- interrupts: Should contain the parent interrupt line used to multiplex the | ||
input interrupts. | ||
- clocks: Should contain one clock for entry in clock-names | ||
see Documentation/devicetree/bindings/clock/clock-bindings.txt | ||
- clock-names: | ||
- "ipg": main logic clock | ||
- 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 1. | ||
- fsl,channel: The output channel that all input IRQs should be steered into. | ||
- fsl,irq-groups: Number of IRQ groups managed by this controller instance. | ||
Each group manages 64 input interrupts. | ||
|
||
Example: | ||
|
||
interrupt-controller@32e2d000 { | ||
compatible = "fsl,imx8m-irqsteer", "fsl,imx-irqsteer"; | ||
reg = <0x32e2d000 0x1000>; | ||
interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>; | ||
clocks = <&clk IMX8MQ_CLK_DISP_APB_ROOT>; | ||
clock-names = "ipg"; | ||
fsl,channel = <0>; | ||
fsl,irq-groups = <1>; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
}; |
61 changes: 61 additions & 0 deletions
61
Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
RDA Micro RDA8810PL Interrupt Controller | ||
|
||
The interrupt controller in RDA8810PL SoC is a custom interrupt controller | ||
which supports up to 32 interrupts. | ||
|
||
Required properties: | ||
|
||
- compatible: Should be "rda,8810pl-intc". | ||
- reg: Specifies base physical address of the registers set. | ||
- 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. | ||
|
||
The interrupt sources are as follows: | ||
|
||
ID Name | ||
------------ | ||
0: PULSE_DUMMY | ||
1: I2C | ||
2: NAND_NFSC | ||
3: SDMMC1 | ||
4: SDMMC2 | ||
5: SDMMC3 | ||
6: SPI1 | ||
7: SPI2 | ||
8: SPI3 | ||
9: UART1 | ||
10: UART2 | ||
11: UART3 | ||
12: GPIO1 | ||
13: GPIO2 | ||
14: GPIO3 | ||
15: KEYPAD | ||
16: TIMER | ||
17: TIMEROS | ||
18: COMREG0 | ||
19: COMREG1 | ||
20: USB | ||
21: DMC | ||
22: DMA | ||
23: CAMERA | ||
24: GOUDA | ||
25: GPU | ||
26: VPU_JPG | ||
27: VPU_HOST | ||
28: VOC | ||
29: AUIFC0 | ||
30: AUIFC1 | ||
31: L2CC | ||
|
||
Example: | ||
apb@20800000 { | ||
compatible = "simple-bus"; | ||
... | ||
intc: interrupt-controller@0 { | ||
compatible = "rda,8810pl-intc"; | ||
reg = <0x0 0x1000>; | ||
interrupt-controller; | ||
#interrupt-cells = <2>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.