drm/panel: panel-himax-hx83102: support for csot-pna957qt1-1 MIPI-DSI panel
[drm/drm-misc.git] / Documentation / devicetree / bindings / media / microchip,sama5d4-vdec.yaml
blobede086d55addbaf28c67c64d5979b79d264a9746
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/media/microchip,sama5d4-vdec.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Hantro G1 VPU codec implemented on Microchip SAMA5D4 SoCs
9 maintainers:
10   - Emil Velikov <emil.velikov@collabora.com>
12 description:
13   Hantro G1 video decode accelerator present on Microchip SAMA5D4 SoCs.
15 properties:
16   compatible:
17     const: microchip,sama5d4-vdec
19   reg:
20     maxItems: 1
22   interrupts:
23     maxItems: 1
25   clocks:
26     maxItems: 1
28 required:
29   - compatible
30   - reg
31   - interrupts
32   - clocks
34 additionalProperties: false
36 examples:
37   - |
38     #include <dt-bindings/clock/at91.h>
39     #include <dt-bindings/interrupt-controller/irq.h>
41     vdec@300000 {
42         compatible = "microchip,sama5d4-vdec";
43         reg = <0x00300000 0x100000>;
44         interrupts = <19 IRQ_TYPE_LEVEL_HIGH 4>;
45         clocks = <&pmc PMC_TYPE_PERIPHERAL 19>;
46     };