blob: 0222a43977ab90d7e020041f3a6611abe9e8dd38 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/soc/nuvoton/nuvoton,gfxi.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Graphics Core Information block in Nuvoton SoCs
8
9maintainers:
10 - Joseph Liu <kwliu@nuvoton.com>
11 - Marvin Lin <kflin@nuvoton.com>
12
13description:
14 The Graphics Core Information (GFXI) are a block of registers in Nuvoton SoCs
15 that analyzes Graphics core behavior and provides information in registers.
16
17properties:
18 compatible:
19 items:
20 - enum:
21 - nuvoton,npcm750-gfxi
22 - nuvoton,npcm845-gfxi
23 - const: syscon
24
25 reg:
26 maxItems: 1
27
28required:
29 - compatible
30 - reg
31
32additionalProperties: false
33
34examples:
35 - |
36 gfxi: gfxi@e000 {
37 compatible = "nuvoton,npcm750-gfxi", "syscon";
38 reg = <0xe000 0x100>;
39 };