Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: interrupt-controller: Add Aspeed SCU interrupt controller

Document the Aspeed SCU interrupt controller and add an include file
for the interrupts it provides.

Signed-off-by: Eddie James <eajames@linux.ibm.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Rob Herring <robh@kernel.org>
Acked-by: Andrew Jeffery <andrew@aj.id.au>
Link: https://lore.kernel.org/r/1579123790-6894-2-git-send-email-eajames@linux.ibm.com

authored by

Eddie James and committed by
Marc Zyngier
5350a237 96868dce

+53
+23
Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
··· 1 + Aspeed AST25XX and AST26XX SCU Interrupt Controller 2 + 3 + Required Properties: 4 + - #interrupt-cells : must be 1 5 + - compatible : must be "aspeed,ast2500-scu-ic", 6 + "aspeed,ast2600-scu-ic0" or 7 + "aspeed,ast2600-scu-ic1" 8 + - interrupts : interrupt from the parent controller 9 + - interrupt-controller : indicates that the controller receives and 10 + fires new interrupts for child busses 11 + 12 + Example: 13 + 14 + syscon@1e6e2000 { 15 + ranges = <0 0x1e6e2000 0x1a8>; 16 + 17 + scu_ic: interrupt-controller@18 { 18 + #interrupt-cells = <1>; 19 + compatible = "aspeed,ast2500-scu-ic"; 20 + interrupts = <21>; 21 + interrupt-controller; 22 + }; 23 + };
+7
MAINTAINERS
··· 2692 2692 F: drivers/pinctrl/aspeed/ 2693 2693 F: Documentation/devicetree/bindings/pinctrl/aspeed,* 2694 2694 2695 + ASPEED SCU INTERRUPT CONTROLLER DRIVER 2696 + M: Eddie James <eajames@linux.ibm.com> 2697 + L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers) 2698 + S: Maintained 2699 + F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt 2700 + F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h 2701 + 2695 2702 ASPEED VIDEO ENGINE DRIVER 2696 2703 M: Eddie James <eajames@linux.ibm.com> 2697 2704 L: linux-media@vger.kernel.org
+23
include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0+ */ 2 + 3 + #ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_ASPEED_SCU_IC_H_ 4 + #define _DT_BINDINGS_INTERRUPT_CONTROLLER_ASPEED_SCU_IC_H_ 5 + 6 + #define ASPEED_SCU_IC_VGA_CURSOR_CHANGE 0 7 + #define ASPEED_SCU_IC_VGA_SCRATCH_REG_CHANGE 1 8 + 9 + #define ASPEED_AST2500_SCU_IC_PCIE_RESET_LO_TO_HI 2 10 + #define ASPEED_AST2500_SCU_IC_PCIE_RESET_HI_TO_LO 3 11 + #define ASPEED_AST2500_SCU_IC_LPC_RESET_LO_TO_HI 4 12 + #define ASPEED_AST2500_SCU_IC_LPC_RESET_HI_TO_LO 5 13 + #define ASPEED_AST2500_SCU_IC_ISSUE_MSI 6 14 + 15 + #define ASPEED_AST2600_SCU_IC0_PCIE_PERST_LO_TO_HI 2 16 + #define ASPEED_AST2600_SCU_IC0_PCIE_PERST_HI_TO_LO 3 17 + #define ASPEED_AST2600_SCU_IC0_PCIE_RCRST_LO_TO_HI 4 18 + #define ASPEED_AST2600_SCU_IC0_PCIE_RCRST_HI_TO_LO 5 19 + 20 + #define ASPEED_AST2600_SCU_IC1_LPC_RESET_LO_TO_HI 0 21 + #define ASPEED_AST2600_SCU_IC1_LPC_RESET_HI_TO_LO 1 22 + 23 + #endif /* _DT_BINDINGS_INTERRUPT_CONTROLLER_ASPEED_SCU_IC_H_ */