forked from torvalds/linux
-
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 branch 'irq/ipi-as-irq', remote-tracking branches 'origin/irq/d…
…w' and 'origin/irq/owl' into irq/irqchip-next Signed-off-by: Marc Zyngier <[email protected]>
- Loading branch information
Showing
10 changed files
with
537 additions
and
27 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
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,65 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/interrupt-controller/actions,owl-sirq.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Actions Semi Owl SoCs SIRQ interrupt controller | ||
|
||
maintainers: | ||
- Manivannan Sadhasivam <[email protected]> | ||
- Cristian Ciocaltea <[email protected]> | ||
|
||
description: | | ||
This interrupt controller is found in the Actions Semi Owl SoCs (S500, S700 | ||
and S900) and provides support for handling up to 3 external interrupt lines. | ||
properties: | ||
compatible: | ||
enum: | ||
- actions,s500-sirq | ||
- actions,s700-sirq | ||
- actions,s900-sirq | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupt-controller: true | ||
|
||
'#interrupt-cells': | ||
const: 2 | ||
description: | ||
The first cell is the input IRQ number, between 0 and 2, while the second | ||
cell is the trigger type as defined in interrupt.txt in this directory. | ||
|
||
'interrupts': | ||
description: | | ||
Contains the GIC SPI IRQs mapped to the external interrupt lines. | ||
They shall be specified sequentially from output 0 to 2. | ||
minItems: 3 | ||
maxItems: 3 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupt-controller | ||
- '#interrupt-cells' | ||
- 'interrupts' | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/arm-gic.h> | ||
sirq: interrupt-controller@b01b0200 { | ||
compatible = "actions,s500-sirq"; | ||
reg = <0xb01b0200 0x4>; | ||
interrupt-controller; | ||
#interrupt-cells = <2>; | ||
interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>, /* SIRQ0 */ | ||
<GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>, /* SIRQ1 */ | ||
<GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>; /* SIRQ2 */ | ||
}; | ||
... |
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.