-
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.
irqchip: st: Add documentation for STi based syscfg IRQs
Signed-off-by: Lee Jones <lee.jones@linaro.org> Link: https://lkml.kernel.org/r/1424272444-16230-4-git-send-email-lee.jones@linaro.org Signed-off-by: Jason Cooper <jason@lakedaemon.net>
- Loading branch information
Lee Jones
authored and
Jason Cooper
committed
Mar 3, 2015
1 parent
0708848
commit f1f5bc3
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
Documentation/devicetree/bindings/interrupt-controller/st,sti-irq-syscfg.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,35 @@ | ||
STMicroelectronics STi System Configuration Controlled IRQs | ||
----------------------------------------------------------- | ||
|
||
On STi based systems; External, CTI (Core Sight), PMU (Performance Management), | ||
and PL310 L2 Cache IRQs are controlled using System Configuration registers. | ||
This driver is used to unmask them prior to use. | ||
|
||
Required properties: | ||
- compatible : Should be set to one of: | ||
"st,stih415-irq-syscfg" | ||
"st,stih416-irq-syscfg" | ||
"st,stih407-irq-syscfg" | ||
"st,stid127-irq-syscfg" | ||
- st,syscfg : Phandle to Cortex-A9 IRQ system config registers | ||
- st,irq-device : Array of IRQs to enable - should be 2 in length | ||
- st,fiq-device : Array of FIQs to enable - should be 2 in length | ||
|
||
Optional properties: | ||
- st,invert-ext : External IRQs can be inverted at will. This property inverts | ||
these IRQs using bitwise logic. A number of defines have been | ||
provided for convenience: | ||
ST_IRQ_SYSCFG_EXT_1_INV | ||
ST_IRQ_SYSCFG_EXT_2_INV | ||
ST_IRQ_SYSCFG_EXT_3_INV | ||
Example: | ||
|
||
irq-syscfg { | ||
compatible = "st,stih416-irq-syscfg"; | ||
st,syscfg = <&syscfg_cpu>; | ||
st,irq-device = <ST_IRQ_SYSCFG_PMU_0>, | ||
<ST_IRQ_SYSCFG_PMU_1>; | ||
st,fiq-device = <ST_IRQ_SYSCFG_DISABLED>, | ||
<ST_IRQ_SYSCFG_DISABLED>; | ||
st,invert-ext = <(ST_IRQ_SYSCFG_EXT_1_INV | ST_IRQ_SYSCFG_EXT_3_INV)>; | ||
}; |