brintos

brintos / linux-shallow public Read only

0
0
Text · 859 B · 0222a43 Raw
40 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---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 SoCs8 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 SoCs15  that analyzes Graphics core behavior and provides information in registers.16 17properties:18  compatible:19    items:20      - enum:21          - nuvoton,npcm750-gfxi22          - nuvoton,npcm845-gfxi23      - const: syscon24 25  reg:26    maxItems: 127 28required:29  - compatible30  - reg31 32additionalProperties: false33 34examples:35  - |36    gfxi: gfxi@e000 {37      compatible = "nuvoton,npcm750-gfxi", "syscon";38      reg = <0xe000 0x100>;39    };40