The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/media/allwinner,sun50i-h6-vpu-g2.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
    2 
    3 %YAML 1.2
    4 ---
    5 $id: "http://devicetree.org/schemas/media/allwinner,sun50i-h6-vpu-g2.yaml#"
    6 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
    7 
    8 title: Hantro G2 VPU codec implemented on Allwinner H6 SoC
    9 
   10 maintainers:
   11   - Jernej Skrabec <jernej.skrabec@gmail.com>
   12 
   13 description:
   14   Hantro G2 video decode accelerator present on Allwinner H6 SoC.
   15 
   16 properties:
   17   compatible:
   18     const: allwinner,sun50i-h6-vpu-g2
   19 
   20   reg:
   21     maxItems: 1
   22 
   23   interrupts:
   24     maxItems: 1
   25 
   26   clocks:
   27     items:
   28       - description: Bus Clock
   29       - description: Module Clock
   30 
   31   clock-names:
   32     items:
   33       - const: bus
   34       - const: mod
   35 
   36   resets:
   37     maxItems: 1
   38 
   39 required:
   40   - compatible
   41   - reg
   42   - interrupts
   43   - clocks
   44   - clock-names
   45   - resets
   46 
   47 additionalProperties: false
   48 
   49 examples:
   50   - |
   51     #include <dt-bindings/interrupt-controller/arm-gic.h>
   52     #include <dt-bindings/clock/sun50i-h6-ccu.h>
   53     #include <dt-bindings/reset/sun50i-h6-ccu.h>
   54 
   55     video-codec-g2@1c00000 {
   56         compatible = "allwinner,sun50i-h6-vpu-g2";
   57         reg = <0x01c00000 0x1000>;
   58         interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
   59         clocks = <&ccu CLK_BUS_VP9>, <&ccu CLK_VP9>;
   60         clock-names = "bus", "mod";
   61         resets = <&ccu RST_BUS_VP9>;
   62     };
   63 
   64 ...

Cache object: 63830f7c3bcd9b0d17f69494ba70ea3f


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.