-
Notifications
You must be signed in to change notification settings - Fork 0
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-core-4.1-3' of git://git.infradead.org/users/jcoop…
…er/linux into irq/core irqchip core change for v4.1 (round 3) from Jason Cooper Purge the gic_arch_extn hacks and abuse by using the new stacked domains NOTE: Due to the nature of these changes, patches crossing subsystems have been kept together in their own branches. - tegra - Handle the LIC properly - omap - Convert crossbar to stacked domains - kill arm,routable-irqs in GIC binding - exynos - Convert PMU wakeup to stacked domains - shmobile, ux500, zynq (irq_set_wake branch) - Switch from abusing gic_arch_extn to using gic_set_irqchip_flags
- Loading branch information
Showing
52 changed files
with
1,032 additions
and
538 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
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
43 changes: 43 additions & 0 deletions
43
Documentation/devicetree/bindings/interrupt-controller/nvidia,tegra-ictlr.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,43 @@ | ||
NVIDIA Legacy Interrupt Controller | ||
|
||
All Tegra SoCs contain a legacy interrupt controller that routes | ||
interrupts to the GIC, and also serves as a wakeup source. It is also | ||
referred to as "ictlr", hence the name of the binding. | ||
|
||
The HW block exposes a number of interrupt controllers, each | ||
implementing a set of 32 interrupts. | ||
|
||
Required properties: | ||
|
||
- compatible : should be: "nvidia,tegra<chip>-ictlr". The LIC on | ||
subsequent SoCs remained backwards-compatible with Tegra30, so on | ||
Tegra generations later than Tegra30 the compatible value should | ||
include "nvidia,tegra30-ictlr". | ||
- reg : Specifies base physical address and size of the registers. | ||
Each controller must be described separately (Tegra20 has 4 of them, | ||
whereas Tegra30 and later have 5" | ||
- 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. | ||
- interrupt-parent : a phandle to the GIC these interrupts are routed | ||
to. | ||
|
||
Notes: | ||
|
||
- Because this HW ultimately routes interrupts to the GIC, the | ||
interrupt specifier must be that of the GIC. | ||
- Only SPIs can use the ictlr as an interrupt parent. SGIs and PPIs | ||
are explicitly forbidden. | ||
|
||
Example: | ||
|
||
ictlr: interrupt-controller@60004000 { | ||
compatible = "nvidia,tegra20-ictlr", "nvidia,tegra-ictlr"; | ||
reg = <0x60004000 64>, | ||
<0x60004100 64>, | ||
<0x60004200 64>, | ||
<0x60004300 64>; | ||
interrupt-controller; | ||
#interrupt-cells = <3>; | ||
interrupt-parent = <&intc>; | ||
}; |
33 changes: 33 additions & 0 deletions
33
Documentation/devicetree/bindings/interrupt-controller/ti,omap4-wugen-mpu
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,33 @@ | ||
TI OMAP4 Wake-up Generator | ||
|
||
All TI OMAP4/5 (and their derivatives) an interrupt controller that | ||
routes interrupts to the GIC, and also serves as a wakeup source. It | ||
is also referred to as "WUGEN-MPU", hence the name of the binding. | ||
|
||
Reguired properties: | ||
|
||
- compatible : should contain at least "ti,omap4-wugen-mpu" or | ||
"ti,omap5-wugen-mpu" | ||
- 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 must be 3. | ||
- interrupt-parent : a phandle to the GIC these interrupts are routed | ||
to. | ||
|
||
Notes: | ||
|
||
- Because this HW ultimately routes interrupts to the GIC, the | ||
interrupt specifier must be that of the GIC. | ||
- Only SPIs can use the WUGEN as an interrupt parent. SGIs and PPIs | ||
are explicitly forbiden. | ||
|
||
Example: | ||
|
||
wakeupgen: interrupt-controller@48281000 { | ||
compatible = "ti,omap5-wugen-mpu", "ti,omap4-wugen-mpu"; | ||
interrupt-controller; | ||
#interrupt-cells = <3>; | ||
reg = <0x48281000 0x1000>; | ||
interrupt-parent = <&gic>; | ||
}; |
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.