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