56 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/imx-audio-hdmi.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NXP i.MX audio complex with HDMI8 9maintainers:10 - Shengjiu Wang <shengjiu.wang@nxp.com>11 12properties:13 compatible:14 enum:15 - fsl,imx-audio-hdmi16 - fsl,imx-audio-sii902x17 18 model:19 $ref: /schemas/types.yaml#/definitions/string20 description: User specified audio sound card name21 22 audio-cpu:23 $ref: /schemas/types.yaml#/definitions/phandle24 description: The phandle of an CPU DAI controller25 26 hdmi-out:27 type: boolean28 description: |29 This is a boolean property. If present, the transmitting function30 of HDMI will be enabled, indicating there's a physical HDMI out31 connector or jack on the board or it's connecting to some other IP32 block, such as an HDMI encoder or display-controller.33 34 hdmi-in:35 type: boolean36 description: |37 This is a boolean property. If present, the receiving function of38 HDMI will be enabled, indicating there is a physical HDMI in39 connector/jack on the board.40 41required:42 - compatible43 - model44 - audio-cpu45 46additionalProperties: false47 48examples:49 - |50 sound-hdmi {51 compatible = "fsl,imx-audio-hdmi";52 model = "audio-hdmi";53 audio-cpu = <&aud2htx>;54 hdmi-out;55 };56