Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/interrupt-controller/nuvoton,wpcm450-aic.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Nuvoton WPCM450 Advanced Interrupt Controller bindings
0008 
0009 maintainers:
0010   - Jonathan Neuschäfer <j.neuschaefer@gmx.net>
0011 
0012 properties:
0013   '#interrupt-cells':
0014     const: 2
0015 
0016   compatible:
0017     const: nuvoton,wpcm450-aic
0018 
0019   interrupt-controller: true
0020 
0021   reg:
0022     maxItems: 1
0023 
0024 additionalProperties: false
0025 
0026 required:
0027   - '#interrupt-cells'
0028   - compatible
0029   - reg
0030   - interrupt-controller
0031 
0032 examples:
0033   - |
0034     aic: interrupt-controller@b8002000 {
0035         compatible = "nuvoton,wpcm450-aic";
0036         reg = <0xb8002000 0x1000>;
0037         interrupt-controller;
0038         #interrupt-cells = <2>;
0039     };