summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/mips/loongson/rs780e-acpi.yaml
blob: d317897e11154f005e1297d7e26cf5a17458a96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: "http://devicetree.org/schemas/mips/loongson/rs780e-acpi.yaml#"
$schema: "http://devicetree.org/meta-schemas/core.yaml#"

title: Loongson RS780E PCH ACPI Controller

maintainers:
  - Jiaxun Yang <jiaxun.yang@flygoat.com>

description: |
  This controller can be found in Loongson-3 systems with RS780E PCH.

properties:
  compatible:
    const: loongson,rs780e-acpi

  reg:
    maxItems: 1

required:
  - compatible
  - reg

examples:
  - |
    isa@0 {
      compatible = "isa";
      #address-cells = <2>;
      #size-cells = <1>;
      ranges = <1 0 0 0x1000>;

      acpi@800 {
        compatible = "loongson,rs780e-acpi";
        reg = <1 0x800 0x100>;
      };
    };

...