xref: /freebsd/sys/contrib/device-tree/Bindings/media/amlogic,axg-ge2d.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot# Copyright 2020 BayLibre, SAS
3*5def4c47SEmmanuel Vadot%YAML 1.2
4*5def4c47SEmmanuel Vadot---
5*5def4c47SEmmanuel Vadot$id: "http://devicetree.org/schemas/media/amlogic,axg-ge2d.yaml#"
6*5def4c47SEmmanuel Vadot$schema: "http://devicetree.org/meta-schemas/core.yaml#"
7*5def4c47SEmmanuel Vadot
8*5def4c47SEmmanuel Vadottitle: Amlogic GE2D Acceleration Unit
9*5def4c47SEmmanuel Vadot
10*5def4c47SEmmanuel Vadotmaintainers:
11*5def4c47SEmmanuel Vadot  - Neil Armstrong <narmstrong@baylibre.com>
12*5def4c47SEmmanuel Vadot
13*5def4c47SEmmanuel Vadotproperties:
14*5def4c47SEmmanuel Vadot  compatible:
15*5def4c47SEmmanuel Vadot    enum:
16*5def4c47SEmmanuel Vadot      - amlogic,axg-ge2d
17*5def4c47SEmmanuel Vadot
18*5def4c47SEmmanuel Vadot  interrupts:
19*5def4c47SEmmanuel Vadot    minItems: 1
20*5def4c47SEmmanuel Vadot
21*5def4c47SEmmanuel Vadot  reg:
22*5def4c47SEmmanuel Vadot    minItems: 1
23*5def4c47SEmmanuel Vadot
24*5def4c47SEmmanuel Vadot  resets:
25*5def4c47SEmmanuel Vadot    maxItems: 1
26*5def4c47SEmmanuel Vadot
27*5def4c47SEmmanuel Vadot  clocks:
28*5def4c47SEmmanuel Vadot    minItems: 1
29*5def4c47SEmmanuel Vadot
30*5def4c47SEmmanuel Vadotrequired:
31*5def4c47SEmmanuel Vadot  - compatible
32*5def4c47SEmmanuel Vadot  - reg
33*5def4c47SEmmanuel Vadot  - interrupts
34*5def4c47SEmmanuel Vadot  - clocks
35*5def4c47SEmmanuel Vadot  - resets
36*5def4c47SEmmanuel Vadot
37*5def4c47SEmmanuel VadotadditionalProperties: false
38*5def4c47SEmmanuel Vadot
39*5def4c47SEmmanuel Vadotexamples:
40*5def4c47SEmmanuel Vadot  - |
41*5def4c47SEmmanuel Vadot    ge2d: ge2d@ff940000 {
42*5def4c47SEmmanuel Vadot          compatible = "amlogic,axg-ge2d";
43*5def4c47SEmmanuel Vadot          reg = <0xff940000 0x10000>;
44*5def4c47SEmmanuel Vadot          interrupts = <150>;
45*5def4c47SEmmanuel Vadot          clocks = <&clk_ge2d>;
46*5def4c47SEmmanuel Vadot          resets = <&reset_ge2d>;
47*5def4c47SEmmanuel Vadot    };
48