xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/al,alpine-msix.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*ae5de77eSEmmanuel Vadot%YAML 1.2
3*ae5de77eSEmmanuel Vadot---
4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/interrupt-controller/al,alpine-msix.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: Alpine MSIX controller
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Antoine Tenart <atenart@kernel.org>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotproperties:
13*ae5de77eSEmmanuel Vadot  compatible:
14*ae5de77eSEmmanuel Vadot    const: al,alpine-msix
15*ae5de77eSEmmanuel Vadot
16*ae5de77eSEmmanuel Vadot  reg:
17*ae5de77eSEmmanuel Vadot    maxItems: 1
18*ae5de77eSEmmanuel Vadot
19*ae5de77eSEmmanuel Vadot  interrupt-parent: true
20*ae5de77eSEmmanuel Vadot
21*ae5de77eSEmmanuel Vadot  msi-controller: true
22*ae5de77eSEmmanuel Vadot
23*ae5de77eSEmmanuel Vadot  al,msi-base-spi:
24*ae5de77eSEmmanuel Vadot    description: SPI base of the MSI frame
25*ae5de77eSEmmanuel Vadot    $ref: /schemas/types.yaml#/definitions/uint32
26*ae5de77eSEmmanuel Vadot
27*ae5de77eSEmmanuel Vadot  al,msi-num-spis:
28*ae5de77eSEmmanuel Vadot    description: number of SPIs assigned to the MSI frame, relative to SPI0
29*ae5de77eSEmmanuel Vadot    $ref: /schemas/types.yaml#/definitions/uint32
30*ae5de77eSEmmanuel Vadot
31*ae5de77eSEmmanuel Vadotrequired:
32*ae5de77eSEmmanuel Vadot  - compatible
33*ae5de77eSEmmanuel Vadot  - reg
34*ae5de77eSEmmanuel Vadot  - msi-controller
35*ae5de77eSEmmanuel Vadot  - al,msi-base-spi
36*ae5de77eSEmmanuel Vadot  - al,msi-num-spis
37*ae5de77eSEmmanuel Vadot
38*ae5de77eSEmmanuel VadotadditionalProperties: false
39*ae5de77eSEmmanuel Vadot
40*ae5de77eSEmmanuel Vadotexamples:
41*ae5de77eSEmmanuel Vadot  - |
42*ae5de77eSEmmanuel Vadot    msi-controller@fbe00000 {
43*ae5de77eSEmmanuel Vadot        compatible = "al,alpine-msix";
44*ae5de77eSEmmanuel Vadot        reg = <0xfbe00000 0x100000>;
45*ae5de77eSEmmanuel Vadot        interrupt-parent = <&gic>;
46*ae5de77eSEmmanuel Vadot        msi-controller;
47*ae5de77eSEmmanuel Vadot        al,msi-base-spi = <160>;
48*ae5de77eSEmmanuel Vadot        al,msi-num-spis = <160>;
49*ae5de77eSEmmanuel Vadot    };
50