1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/brcm,bcm2835-hvs.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Broadcom VC4 (VideoCore4) Hardware Video Scaler 8 9maintainers: 10 - Eric Anholt <[email protected]> 11 12properties: 13 compatible: 14 enum: 15 - brcm,bcm2711-hvs 16 - brcm,bcm2712-hvs 17 - brcm,bcm2835-hvs 18 19 reg: 20 maxItems: 1 21 22 interrupts: 23 maxItems: 1 24 25 clocks: 26 maxItems: 1 27 description: Core Clock 28 29required: 30 - compatible 31 - reg 32 - interrupts 33 34additionalProperties: false 35 36if: 37 properties: 38 compatible: 39 contains: 40 enum: 41 - brcm,bcm2711-hvs 42 - brcm,bcm2712-hvs 43 44then: 45 required: 46 - clocks 47 48examples: 49 - | 50 hvs@7e400000 { 51 compatible = "brcm,bcm2835-hvs"; 52 reg = <0x7e400000 0x6000>; 53 interrupts = <2 1>; 54 }; 55 56... 57