Documentation / devicetree / bindings / media / arm,mali-c55.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
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/media/arm,mali-c55.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: ARM Mali-C55 Image Signal Processor

maintainers:
  - Daniel Scally <dan.scally@ideasonboard.com>
  - Jacopo Mondi <jacopo.mondi@ideasonboard.com>

properties:
  compatible:
    const: arm,mali-c55

  reg:
    maxItems: 1

  interrupts:
    maxItems: 1

  clocks:
    items:
      - description: ISP Video Clock
      - description: ISP AXI clock
      - description: ISP AHB-lite clock

  clock-names:
    items:
      - const: vclk
      - const: aclk
      - const: hclk

  resets:
    items:
      - description: vclk domain reset
      - description: aclk domain reset
      - description: hclk domain reset

  reset-names:
    items:
      - const: vresetn
      - const: aresetn
      - const: hresetn

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

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

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

additionalProperties: false

examples:
  - |
    #include <dt-bindings/interrupt-controller/arm-gic.h>
 
    isp@400000 {
      compatible = "arm,mali-c55";
      reg = <0x400000 0x200000>;
      clocks = <&clk 0>, <&clk 1>, <&clk 2>;
      clock-names = "vclk", "aclk", "hclk";
      resets = <&resets 0>, <&resets 1>, <&resets 2>;
      reset-names = "vresetn", "aresetn", "hresetn";
      interrupts = <GIC_SPI 861 IRQ_TYPE_EDGE_RISING>;
 
      port {
        isp_in: endpoint {
            remote-endpoint = <&csi2_rx_out>;
        };
      };
    };
...