xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml (revision 5ca8e32633c4ffbbcd6762e5888b6a4ba0708c6c)
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2# Copyright 2018 Linaro Ltd.
3%YAML 1.2
4---
5$id: http://devicetree.org/schemas/interrupt-controller/intel,ixp4xx-interrupt.yaml#
6$schema: http://devicetree.org/meta-schemas/core.yaml#
7
8title: Intel IXP4xx XScale Networking Processors Interrupt Controller
9
10maintainers:
11  - Linus Walleij <linus.walleij@linaro.org>
12
13description: |
14  This interrupt controller is found in the Intel IXP4xx processors.
15  Some processors have 32 interrupts, some have up to 64 interrupts.
16  The exact number of interrupts is determined from the compatible
17  string.
18
19  The distinct IXP4xx families with different interrupt controller
20  variations are IXP42x, IXP43x, IXP45x and IXP46x. Those four
21  families were the only ones to reach the developer and consumer
22  market.
23
24properties:
25  compatible:
26    items:
27      - enum:
28          - intel,ixp42x-interrupt
29          - intel,ixp43x-interrupt
30          - intel,ixp45x-interrupt
31          - intel,ixp46x-interrupt
32
33  reg:
34    maxItems: 1
35
36  interrupt-controller: true
37
38  '#interrupt-cells':
39    const: 2
40
41required:
42  - compatible
43  - reg
44  - interrupt-controller
45  - '#interrupt-cells'
46
47additionalProperties: false
48
49examples:
50  - |
51    intcon: interrupt-controller@c8003000 {
52        compatible = "intel,ixp43x-interrupt";
53        reg = <0xc8003000 0x100>;
54        interrupt-controller;
55        #interrupt-cells = <2>;
56    };
57