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/rockchip,rk3568-vepu.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/rockchip,rk3568-vepu.yaml#"
    6 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
    7 
    8 title: Hantro G1 VPU encoders implemented on Rockchip SoCs
    9 
   10 maintainers:
   11   - Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
   12 
   13 description:
   14   Hantro G1 video encode-only accelerators present on Rockchip SoCs.
   15 
   16 properties:
   17   compatible:
   18     enum:
   19       - rockchip,rk3568-vepu
   20 
   21   reg:
   22     maxItems: 1
   23 
   24   interrupts:
   25     maxItems: 1
   26 
   27   clocks:
   28     maxItems: 2
   29 
   30   clock-names:
   31     items:
   32       - const: aclk
   33       - const: hclk
   34 
   35   power-domains:
   36     maxItems: 1
   37 
   38   iommus:
   39     maxItems: 1
   40 
   41 required:
   42   - compatible
   43   - reg
   44   - interrupts
   45   - clocks
   46   - clock-names
   47 
   48 additionalProperties: false
   49 
   50 examples:
   51   - |
   52     #include <dt-bindings/clock/rk3568-cru.h>
   53     #include <dt-bindings/interrupt-controller/arm-gic.h>
   54     #include <dt-bindings/power/rk3568-power.h>
   55 
   56     bus {
   57         #address-cells = <2>;
   58         #size-cells = <2>;
   59 
   60         vepu: video-codec@fdee0000 {
   61             compatible = "rockchip,rk3568-vepu";
   62             reg = <0x0 0xfdee0000 0x0 0x800>;
   63             interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>;
   64             clocks = <&cru ACLK_JENC>, <&cru HCLK_JENC>;
   65             clock-names = "aclk", "hclk";
   66             iommus = <&vepu_mmu>;
   67             power-domains = <&power RK3568_PD_RGA>;
   68         };
   69     };

Cache object: f12f206904289380facd577024ce8489


[ 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.