Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 # Copyright 2020 BayLibre, SAS
0003 %YAML 1.2
0004 ---
0005 $id: "http://devicetree.org/schemas/media/amlogic,axg-ge2d.yaml#"
0006 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
0007 
0008 title: Amlogic GE2D Acceleration Unit
0009 
0010 maintainers:
0011   - Neil Armstrong <neil.armstrong@linaro.org>
0012 
0013 properties:
0014   compatible:
0015     enum:
0016       - amlogic,axg-ge2d
0017 
0018   interrupts:
0019     minItems: 1
0020 
0021   reg:
0022     minItems: 1
0023 
0024   resets:
0025     maxItems: 1
0026 
0027   clocks:
0028     minItems: 1
0029 
0030 required:
0031   - compatible
0032   - reg
0033   - interrupts
0034   - clocks
0035   - resets
0036 
0037 additionalProperties: false
0038 
0039 examples:
0040   - |
0041     ge2d: ge2d@ff940000 {
0042           compatible = "amlogic,axg-ge2d";
0043           reg = <0xff940000 0x10000>;
0044           interrupts = <150>;
0045           clocks = <&clk_ge2d>;
0046           resets = <&reset_ge2d>;
0047     };