OSDN Git Service

dt-bindings: net: snps,dwmac: modify available values of PBL
[uclinux-h8/linux.git] / Documentation / devicetree / bindings / media / mediatek,vcodec-subdev-decoder.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2
3 %YAML 1.2
4 ---
5 $id: "http://devicetree.org/schemas/media/mediatek,vcodec-subdev-decoder.yaml#"
6 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
7
8 title: Mediatek Video Decode Accelerator With Multi Hardware
9
10 maintainers:
11   - Yunfei Dong <yunfei.dong@mediatek.com>
12
13 description: |
14   Mediatek Video Decode is the video decode hardware present in Mediatek
15   SoCs which supports high resolution decoding functionalities. Required
16   parent and child device node.
17
18   About the Decoder Hardware Block Diagram, please check below:
19
20     +---------------------------------+------------------------------------+
21     |                                 |                                    |
22     | input -> lat HW -> lat buffer --|--> lat buffer -> core HW -> output |
23     |            ||                   |                     ||             |
24     +------------||-------------------+---------------------||-------------+
25               lat workqueue           |              core workqueue     <parent>
26     -------------||-----------------------------------------||------------------
27                  ||                                         ||          <child>
28                  \/ <----------------HW index-------------->\/
29            +------------------------------------------------------+
30            |                    enable/disable                    |
31            |           clk     power    irq    iommu              |
32            |                 (lat/lat soc/core0/core1)            |
33            +------------------------------------------------------+
34
35   As above, there are parent and child devices, child mean each hardware. The child device
36   controls the information of each hardware independent which include clk/power/irq.
37
38   There are two workqueues in parent device: lat workqueue and core workqueue. They are used
39   to lat and core hardware deocder. Lat workqueue need to get input bitstream and lat buffer,
40   then enable lat to decode, writing the result to lat buffer, dislabe hardware when lat decode
41   done. Core workqueue need to get lat buffer and output buffer, then enable core to decode,
42   writing the result to output buffer, disable hardware when core decode done. These two
43   hardwares will decode each frame cyclically.
44
45   For the smi common may not the same for each hardware, can't combine all hardware in one node,
46   or leading to iommu fault when access dram data.
47
48 properties:
49   compatible:
50     const: mediatek,mt8192-vcodec-dec
51
52   reg:
53     maxItems: 1
54
55   iommus:
56     minItems: 1
57     maxItems: 32
58     description: |
59       List of the hardware port in respective IOMMU block for current Socs.
60       Refer to bindings/iommu/mediatek,iommu.yaml.
61
62   mediatek,scp:
63     $ref: /schemas/types.yaml#/definitions/phandle
64     maxItems: 1
65     description: |
66       The node of system control processor (SCP), using
67       the remoteproc & rpmsg framework.
68
69   dma-ranges:
70     maxItems: 1
71     description: |
72       Describes the physical address space of IOMMU maps to memory.
73
74   "#address-cells":
75     const: 1
76
77   "#size-cells":
78     const: 1
79
80   ranges: true
81
82 # Required child node:
83 patternProperties:
84   '^vcodec-lat@[0-9a-f]+$':
85     type: object
86
87     properties:
88       compatible:
89         const: mediatek,mtk-vcodec-lat
90
91       reg:
92         maxItems: 1
93
94       interrupts:
95         maxItems: 1
96
97       iommus:
98         minItems: 1
99         maxItems: 32
100         description: |
101           List of the hardware port in respective IOMMU block for current Socs.
102           Refer to bindings/iommu/mediatek,iommu.yaml.
103
104       clocks:
105         maxItems: 5
106
107       clock-names:
108         items:
109           - const: sel
110           - const: soc-vdec
111           - const: soc-lat
112           - const: vdec
113           - const: top
114
115       assigned-clocks:
116         maxItems: 1
117
118       assigned-clock-parents:
119         maxItems: 1
120
121       power-domains:
122         maxItems: 1
123
124     required:
125       - compatible
126       - reg
127       - interrupts
128       - iommus
129       - clocks
130       - clock-names
131       - assigned-clocks
132       - assigned-clock-parents
133       - power-domains
134
135     additionalProperties: false
136
137   '^vcodec-core@[0-9a-f]+$':
138     type: object
139
140     properties:
141       compatible:
142         const: mediatek,mtk-vcodec-core
143
144       reg:
145         maxItems: 1
146
147       interrupts:
148         maxItems: 1
149
150       iommus:
151         minItems: 1
152         maxItems: 32
153         description: |
154           List of the hardware port in respective IOMMU block for current Socs.
155           Refer to bindings/iommu/mediatek,iommu.yaml.
156
157       clocks:
158         maxItems: 5
159
160       clock-names:
161         items:
162           - const: sel
163           - const: soc-vdec
164           - const: soc-lat
165           - const: vdec
166           - const: top
167
168       assigned-clocks:
169         maxItems: 1
170
171       assigned-clock-parents:
172         maxItems: 1
173
174       power-domains:
175         maxItems: 1
176
177     required:
178       - compatible
179       - reg
180       - interrupts
181       - iommus
182       - clocks
183       - clock-names
184       - assigned-clocks
185       - assigned-clock-parents
186       - power-domains
187
188     additionalProperties: false
189
190 required:
191   - compatible
192   - reg
193   - iommus
194   - mediatek,scp
195   - dma-ranges
196   - ranges
197
198 additionalProperties: false
199
200 examples:
201   - |
202     #include <dt-bindings/interrupt-controller/arm-gic.h>
203     #include <dt-bindings/memory/mt8192-larb-port.h>
204     #include <dt-bindings/interrupt-controller/irq.h>
205     #include <dt-bindings/clock/mt8192-clk.h>
206     #include <dt-bindings/power/mt8192-power.h>
207
208     video-codec@16000000 {
209         compatible = "mediatek,mt8192-vcodec-dec";
210         mediatek,scp = <&scp>;
211         iommus = <&iommu0 M4U_PORT_L4_VDEC_MC_EXT>;
212         dma-ranges = <0x1 0x0 0x0 0x40000000 0x0 0xfff00000>;
213         #address-cells = <1>;
214         #size-cells = <1>;
215         ranges = <0 0x16000000 0x40000>;
216         reg = <0x16000000 0x1000>;              /* VDEC_SYS */
217         vcodec-lat@10000 {
218             compatible = "mediatek,mtk-vcodec-lat";
219             reg = <0x10000 0x800>;
220             interrupts = <GIC_SPI 426 IRQ_TYPE_LEVEL_HIGH 0>;
221             iommus = <&iommu0 M4U_PORT_L5_VDEC_LAT0_VLD_EXT>,
222                 <&iommu0 M4U_PORT_L5_VDEC_LAT0_VLD2_EXT>,
223                 <&iommu0 M4U_PORT_L5_VDEC_LAT0_AVC_MV_EXT>,
224                 <&iommu0 M4U_PORT_L5_VDEC_LAT0_PRED_RD_EXT>,
225                 <&iommu0 M4U_PORT_L5_VDEC_LAT0_TILE_EXT>,
226                 <&iommu0 M4U_PORT_L5_VDEC_LAT0_WDMA_EXT>,
227                 <&iommu0 M4U_PORT_L5_VDEC_LAT0_RG_CTRL_DMA_EXT>,
228                 <&iommu0 M4U_PORT_L5_VDEC_UFO_ENC_EXT>;
229             clocks = <&topckgen CLK_TOP_VDEC_SEL>,
230                 <&vdecsys_soc CLK_VDEC_SOC_VDEC>,
231                 <&vdecsys_soc CLK_VDEC_SOC_LAT>,
232                 <&vdecsys_soc CLK_VDEC_SOC_LARB1>,
233                 <&topckgen CLK_TOP_MAINPLL_D4>;
234             clock-names = "sel", "soc-vdec", "soc-lat", "vdec", "top";
235             assigned-clocks = <&topckgen CLK_TOP_VDEC_SEL>;
236             assigned-clock-parents = <&topckgen CLK_TOP_MAINPLL_D4>;
237             power-domains = <&spm MT8192_POWER_DOMAIN_VDEC>;
238         };
239
240         vcodec-core@25000 {
241             compatible = "mediatek,mtk-vcodec-core";
242             reg = <0x25000 0x1000>;
243             interrupts = <GIC_SPI 425 IRQ_TYPE_LEVEL_HIGH 0>;
244             iommus = <&iommu0 M4U_PORT_L4_VDEC_MC_EXT>,
245                 <&iommu0 M4U_PORT_L4_VDEC_UFO_EXT>,
246                 <&iommu0 M4U_PORT_L4_VDEC_PP_EXT>,
247                 <&iommu0 M4U_PORT_L4_VDEC_PRED_RD_EXT>,
248                 <&iommu0 M4U_PORT_L4_VDEC_PRED_WR_EXT>,
249                 <&iommu0 M4U_PORT_L4_VDEC_PPWRAP_EXT>,
250                 <&iommu0 M4U_PORT_L4_VDEC_TILE_EXT>,
251                 <&iommu0 M4U_PORT_L4_VDEC_VLD_EXT>,
252                 <&iommu0 M4U_PORT_L4_VDEC_VLD2_EXT>,
253                 <&iommu0 M4U_PORT_L4_VDEC_AVC_MV_EXT>,
254                 <&iommu0 M4U_PORT_L4_VDEC_RG_CTRL_DMA_EXT>;
255             clocks = <&topckgen CLK_TOP_VDEC_SEL>,
256                 <&vdecsys CLK_VDEC_VDEC>,
257                 <&vdecsys CLK_VDEC_LAT>,
258                 <&vdecsys CLK_VDEC_LARB1>,
259                 <&topckgen CLK_TOP_MAINPLL_D4>;
260             clock-names = "sel", "soc-vdec", "soc-lat", "vdec", "top";
261             assigned-clocks = <&topckgen CLK_TOP_VDEC_SEL>;
262             assigned-clock-parents = <&topckgen CLK_TOP_MAINPLL_D4>;
263             power-domains = <&spm MT8192_POWER_DOMAIN_VDEC2>;
264         };
265     };