blob: 53c20cae309f21b0e2e67303c83041ec7ba1e5c8 [file] [log] [blame]
Yong Wu120399b2016-02-23 01:20:47 +08001* Mediatek IOMMU Architecture Implementation
2
Honghui Zhang7e426262016-06-08 17:50:57 +08003 Some Mediatek SOCs contain a Multimedia Memory Management Unit (M4U), and
4this M4U have two generations of HW architecture. Generation one uses flat
5pagetable, and only supports 4K size page mapping. Generation two uses the
6ARM Short-Descriptor translation table format for address translation.
Yong Wu120399b2016-02-23 01:20:47 +08007
8 About the M4U Hardware Block Diagram, please check below:
9
10 EMI (External Memory Interface)
11 |
12 m4u (Multimedia Memory Management Unit)
13 |
14 SMI Common(Smart Multimedia Interface Common)
15 |
16 +----------------+-------
17 | |
18 | |
19 SMI larb0 SMI larb1 ... SoCs have several SMI local arbiter(larb).
20 (display) (vdec)
21 | |
22 | |
23 +-----+-----+ +----+----+
24 | | | | | |
25 | | |... | | | ... There are different ports in each larb.
26 | | | | | |
27OVL0 RDMA0 WDMA0 MC PP VLD
28
29 As above, The Multimedia HW will go through SMI and M4U while it
30access EMI. SMI is a bridge between m4u and the Multimedia HW. It contain
31smi local arbiter and smi common. It will control whether the Multimedia
32HW should go though the m4u for translation or bypass it and talk
33directly with EMI. And also SMI help control the power domain and clocks for
34each local arbiter.
35 Normally we specify a local arbiter(larb) for each multimedia HW
36like display, video decode, and camera. And there are different ports
37in each larb. Take a example, There are many ports like MC, PP, VLD in the
38video decode local arbiter, all these ports are according to the video HW.
39
40Required properties:
Honghui Zhang7e426262016-06-08 17:50:57 +080041- compatible : must be one of the following string:
42 "mediatek,mt2701-m4u" for mt2701 which uses generation one m4u HW.
43 "mediatek,mt8173-m4u" for mt8173 which uses generation two m4u HW.
Yong Wu120399b2016-02-23 01:20:47 +080044- reg : m4u register base and size.
45- interrupts : the interrupt of m4u.
46- clocks : must contain one entry for each clock-names.
47- clock-names : must be "bclk", It is the block clock of m4u.
48- mediatek,larbs : List of phandle to the local arbiters in the current Socs.
49 Refer to bindings/memory-controllers/mediatek,smi-larb.txt. It must sort
50 according to the local arbiter index, like larb0, larb1, larb2...
51- iommu-cells : must be 1. This is the mtk_m4u_id according to the HW.
52 Specifies the mtk_m4u_id as defined in
Honghui Zhang7e426262016-06-08 17:50:57 +080053 dt-binding/memory/mt2701-larb-port.h for mt2701 and
54 dt-binding/memory/mt8173-larb-port.h for mt8173
Yong Wu120399b2016-02-23 01:20:47 +080055
56Example:
57 iommu: iommu@10205000 {
58 compatible = "mediatek,mt8173-m4u";
59 reg = <0 0x10205000 0 0x1000>;
60 interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_LOW>;
61 clocks = <&infracfg CLK_INFRA_M4U>;
62 clock-names = "bclk";
63 mediatek,larbs = <&larb0 &larb1 &larb2 &larb3 &larb4 &larb5>;
64 #iommu-cells = <1>;
65 };
66
67Example for a client device:
68 display {
69 compatible = "mediatek,mt8173-disp";
70 iommus = <&iommu M4U_PORT_DISP_OVL0>,
71 <&iommu M4U_PORT_DISP_RDMA0>;
72 ...
73 };