brintos

brintos / linux-shallow public Read only

0
0
Text · 889 B · b47468e Raw
44 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/media/nuvoton,npcm-ece.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Nuvoton NPCM Encoding Compression Engine8 9maintainers:10  - Joseph Liu <kwliu@nuvoton.com>11  - Marvin Lin <kflin@nuvoton.com>12 13description: |14  Video Encoding Compression Engine (ECE) present on Nuvoton NPCM SoCs.15 16properties:17  compatible:18    enum:19      - nuvoton,npcm750-ece20      - nuvoton,npcm845-ece21 22  reg:23    maxItems: 124 25  resets:26    maxItems: 127 28required:29  - compatible30  - reg31  - resets32 33additionalProperties: false34 35examples:36  - |37    #include <dt-bindings/reset/nuvoton,npcm7xx-reset.h>38 39    ece: video-codec@f0820000 {40        compatible = "nuvoton,npcm750-ece";41        reg = <0xf0820000 0x2000>;42        resets = <&rstc NPCM7XX_RESET_IPSRST2 NPCM7XX_RESET_ECE>;43    };44