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-clut.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Freescale i.MX8qxp Display Controller Color Lookup Table 8 9description: | 10 The unit implements 3 look-up tables with 256 x 10 bit entries each. These 11 can be used for different kinds of applications. From 10-bit input values 12 only upper 8 bits are used. 13 14 The unit supports color lookup, index lookup, dithering and alpha masking. 15 16maintainers: 17 - Liu Ying <victor.liu@nxp.com> 18 19properties: 20 compatible: 21 const: fsl,imx8qxp-dc-clut 22 23 reg: 24 maxItems: 2 25 26 reg-names: 27 items: 28 - const: pec 29 - const: cfg 30 31required: 32 - compatible 33 - reg 34 - reg-names 35 36additionalProperties: false 37 38examples: 39 - | 40 clut@56180880 { 41 compatible = "fsl,imx8qxp-dc-clut"; 42 reg = <0x56180880 0x10>, <0x56182400 0x404>; 43 reg-names = "pec", "cfg"; 44 }; 45