hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
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
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: "http://devicetree.org/schemas/remoteproc/ingenic,vpu.yaml#"
$schema: "http://devicetree.org/meta-schemas/core.yaml#"
 
title: Ingenic Video Processing Unit bindings
 
description:
  Inside the Video Processing Unit (VPU) of the recent JZ47xx SoCs from
  Ingenic is a second Xburst MIPS CPU very similar to the main core.
  This document describes the devicetree bindings for this auxiliary
  processor.
 
maintainers:
  - Paul Cercueil <paul@crapouillou.net>
 
properties:
  compatible:
    const: ingenic,jz4770-vpu-rproc
 
  reg:
    items:
      - description: aux registers
      - description: tcsm0 registers
      - description: tcsm1 registers
      - description: sram registers
 
  reg-names:
    items:
      - const: aux
      - const: tcsm0
      - const: tcsm1
      - const: sram
 
  clocks:
    items:
      - description: aux clock
      - description: vpu clock
 
  clock-names:
    items:
      - const: aux
      - const: vpu
 
  interrupts:
    description: VPU hardware interrupt
 
required:
  - compatible
  - reg
  - reg-names
  - clocks
  - clock-names
  - interrupts
 
additionalProperties: false
 
examples:
  - |
    #include <dt-bindings/clock/jz4770-cgu.h>
 
    vpu: video-decoder@132a0000 {
      compatible = "ingenic,jz4770-vpu-rproc";
 
      reg = <0x132a0000 0x20>, /* AUX */
            <0x132b0000 0x4000>, /* TCSM0 */
            <0x132c0000 0xc000>, /* TCSM1 */
            <0x132f0000 0x7000>; /* SRAM */
      reg-names = "aux", "tcsm0", "tcsm1", "sram";
 
      clocks = <&cgu JZ4770_CLK_AUX>, <&cgu JZ4770_CLK_VPU>;
      clock-names = "aux", "vpu";
 
      interrupt-parent = <&cpuintc>;
      interrupts = <3>;
    };