Documentation / devicetree / bindings / media / renesas,r9a09g057-ivc.yaml


Based on kernel version 6.19. Page generated on 2026-02-12 08:38 EST.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/media/renesas,r9a09g057-ivc.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Renesas RZ/V2H(P) Input Video Control Block

maintainers:
  - Daniel Scally <dan.scally@ideasonboard.com>

description:
  The IVC block is a module that takes video frames from memory and feeds them
  to the Image Signal Processor for processing.

properties:
  compatible:
    const: renesas,r9a09g057-ivc # RZ/V2H(P)

  reg:
    maxItems: 1

  interrupts:
    maxItems: 1

  clocks:
    items:
      - description: Input Video Control block register access clock
      - description: Video input data AXI bus clock
      - description: ISP system clock

  clock-names:
    items:
      - const: reg
      - const: axi
      - const: isp

  power-domains:
    maxItems: 1

  resets:
    items:
      - description: Input Video Control block register access reset
      - description: Video input data AXI bus reset
      - description: ISP core reset

  reset-names:
    items:
      - const: reg
      - const: axi
      - const: isp

  port:
    $ref: /schemas/graph.yaml#/properties/port
    description: Output parallel video bus

    properties:
      endpoint:
        $ref: /schemas/graph.yaml#/properties/endpoint

required:
  - compatible
  - reg
  - interrupts
  - clocks
  - clock-names
  - power-domains
  - resets
  - reset-names
  - port

additionalProperties: false

examples:
  - |
    #include <dt-bindings/clock/renesas,r9a09g057-cpg.h>
    #include <dt-bindings/interrupt-controller/arm-gic.h>
 
    isp-input@16040000 {
      compatible = "renesas,r9a09g057-ivc";
      reg = <0x16040000 0x230>;
 
      clocks = <&cpg CPG_MOD 0xe3>,
               <&cpg CPG_MOD 0xe4>,
               <&cpg CPG_MOD 0xe5>;
      clock-names = "reg", "axi", "isp";
 
      power-domains = <&cpg>;
 
      resets = <&cpg 0xd4>,
               <&cpg 0xd1>,
               <&cpg 0xd3>;
      reset-names = "reg", "axi", "isp";
 
      interrupts = <GIC_SPI 861 IRQ_TYPE_EDGE_RISING>;
 
      port {
        ivc_out: endpoint {
          remote-endpoint = <&isp_in>;
        };
      };
    };
...