xref: /freebsd/sys/contrib/device-tree/Bindings/media/fsl,imx6q-vdoa.yaml (revision 833e5d42ab135b0238e61c5b3c19b8619677cbfa)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/media/fsl,imx6q-vdoa.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Freescale Video Data Order Adapter
8
9description:
10  The Video Data Order Adapter (VDOA) is present on the i.MX6q. Its sole purpose
11  is to reorder video data from the macroblock tiled order produced by the CODA
12  960 VPU to the conventional raster-scan order for scanout.
13
14maintainers:
15  - Frank Li <Frank.Li@nxp.com>
16
17properties:
18  compatible:
19    const: "fsl,imx6q-vdoa"
20
21  reg:
22    maxItems: 1
23
24  interrupts:
25    maxItems: 1
26
27  clocks:
28    maxItems: 1
29
30additionalProperties: false
31
32examples:
33  - |
34    #include <dt-bindings/interrupt-controller/irq.h>
35    #include <dt-bindings/clock/imx6qdl-clock.h>
36
37    vdoa@21e4000 {
38        compatible = "fsl,imx6q-vdoa";
39        reg = <0x021e4000 0x4000>;
40        interrupts = <0 18 IRQ_TYPE_LEVEL_HIGH>;
41        clocks = <&clks IMX6QDL_CLK_VDOA>;
42    };
43