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-blitblend.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Freescale i.MX8qxp Display Controller Blit Blend Unit 8 9description: 10 Combines two input frames to a single output frame, all frames having the 11 same dimension. 12 13maintainers: 14 - Liu Ying <victor.liu@nxp.com> 15 16properties: 17 compatible: 18 const: fsl,imx8qxp-dc-blitblend 19 20 reg: 21 maxItems: 2 22 23 reg-names: 24 items: 25 - const: pec 26 - const: cfg 27 28required: 29 - compatible 30 - reg 31 - reg-names 32 33additionalProperties: false 34 35examples: 36 - | 37 blitblend@56180920 { 38 compatible = "fsl,imx8qxp-dc-blitblend"; 39 reg = <0x56180920 0x10>, <0x56183c00 0x3c>; 40 reg-names = "pec", "cfg"; 41 }; 42