1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/imx/fsl,imx8qxp-dc-layerblend.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Freescale i.MX8qxp Display Controller Layer Blend Unit 8 9description: Combines two input frames to a single output frame. 10 11maintainers: 12 - Liu Ying <victor.liu@nxp.com> 13 14properties: 15 compatible: 16 const: fsl,imx8qxp-dc-layerblend 17 18 reg: 19 maxItems: 2 20 21 reg-names: 22 items: 23 - const: pec 24 - const: cfg 25 26required: 27 - compatible 28 - reg 29 - reg-names 30 31additionalProperties: false 32 33examples: 34 - | 35 layerblend@56180ba0 { 36 compatible = "fsl,imx8qxp-dc-layerblend"; 37 reg = <0x56180ba0 0x10>, <0x5618a400 0x20>; 38 reg-names = "pec", "cfg"; 39 }; 40