xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/apm,xgene1-msi.yaml (revision 833e5d42ab135b0238e61c5b3c19b8619677cbfa)
1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*833e5d42SEmmanuel Vadot%YAML 1.2
3*833e5d42SEmmanuel Vadot---
4*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/interrupt-controller/apm,xgene1-msi.yaml#
5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*833e5d42SEmmanuel Vadot
7*833e5d42SEmmanuel Vadottitle: AppliedMicro X-Gene v1 PCIe MSI controller
8*833e5d42SEmmanuel Vadot
9*833e5d42SEmmanuel Vadotmaintainers:
10*833e5d42SEmmanuel Vadot  - Toan Le <toan@os.amperecomputing.com>
11*833e5d42SEmmanuel Vadot
12*833e5d42SEmmanuel Vadotproperties:
13*833e5d42SEmmanuel Vadot  compatible:
14*833e5d42SEmmanuel Vadot    const: apm,xgene1-msi
15*833e5d42SEmmanuel Vadot
16*833e5d42SEmmanuel Vadot  msi-controller: true
17*833e5d42SEmmanuel Vadot
18*833e5d42SEmmanuel Vadot  reg:
19*833e5d42SEmmanuel Vadot    maxItems: 1
20*833e5d42SEmmanuel Vadot
21*833e5d42SEmmanuel Vadot  interrupts:
22*833e5d42SEmmanuel Vadot    maxItems: 16
23*833e5d42SEmmanuel Vadot
24*833e5d42SEmmanuel Vadotrequired:
25*833e5d42SEmmanuel Vadot  - compatible
26*833e5d42SEmmanuel Vadot  - msi-controller
27*833e5d42SEmmanuel Vadot  - reg
28*833e5d42SEmmanuel Vadot  - interrupts
29*833e5d42SEmmanuel Vadot
30*833e5d42SEmmanuel VadotadditionalProperties: false
31*833e5d42SEmmanuel Vadot
32*833e5d42SEmmanuel Vadotexamples:
33*833e5d42SEmmanuel Vadot  - |
34*833e5d42SEmmanuel Vadot    msi@79000000 {
35*833e5d42SEmmanuel Vadot        compatible = "apm,xgene1-msi";
36*833e5d42SEmmanuel Vadot        msi-controller;
37*833e5d42SEmmanuel Vadot        reg = <0x79000000 0x900000>;
38*833e5d42SEmmanuel Vadot        interrupts = <0x0 0x10 0x4>,
39*833e5d42SEmmanuel Vadot                     <0x0 0x11 0x4>,
40*833e5d42SEmmanuel Vadot                     <0x0 0x12 0x4>,
41*833e5d42SEmmanuel Vadot                     <0x0 0x13 0x4>,
42*833e5d42SEmmanuel Vadot                     <0x0 0x14 0x4>,
43*833e5d42SEmmanuel Vadot                     <0x0 0x15 0x4>,
44*833e5d42SEmmanuel Vadot                     <0x0 0x16 0x4>,
45*833e5d42SEmmanuel Vadot                     <0x0 0x17 0x4>,
46*833e5d42SEmmanuel Vadot                     <0x0 0x18 0x4>,
47*833e5d42SEmmanuel Vadot                     <0x0 0x19 0x4>,
48*833e5d42SEmmanuel Vadot                     <0x0 0x1a 0x4>,
49*833e5d42SEmmanuel Vadot                     <0x0 0x1b 0x4>,
50*833e5d42SEmmanuel Vadot                     <0x0 0x1c 0x4>,
51*833e5d42SEmmanuel Vadot                     <0x0 0x1d 0x4>,
52*833e5d42SEmmanuel Vadot                     <0x0 0x1e 0x4>,
53*833e5d42SEmmanuel Vadot                     <0x0 0x1f 0x4>;
54*833e5d42SEmmanuel Vadot    };
55