clk-mt2712-mm.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Copyright (c) 2017 MediaTek Inc.
  3. * Author: Weiyi Lu <weiyi.lu@mediatek.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #include <linux/clk-provider.h>
  15. #include <linux/platform_device.h>
  16. #include "clk-mtk.h"
  17. #include "clk-gate.h"
  18. #include <dt-bindings/clock/mt2712-clk.h>
  19. static const struct mtk_gate_regs mm0_cg_regs = {
  20. .set_ofs = 0x104,
  21. .clr_ofs = 0x108,
  22. .sta_ofs = 0x100,
  23. };
  24. static const struct mtk_gate_regs mm1_cg_regs = {
  25. .set_ofs = 0x114,
  26. .clr_ofs = 0x118,
  27. .sta_ofs = 0x110,
  28. };
  29. static const struct mtk_gate_regs mm2_cg_regs = {
  30. .set_ofs = 0x224,
  31. .clr_ofs = 0x228,
  32. .sta_ofs = 0x220,
  33. };
  34. #define GATE_MM0(_id, _name, _parent, _shift) { \
  35. .id = _id, \
  36. .name = _name, \
  37. .parent_name = _parent, \
  38. .regs = &mm0_cg_regs, \
  39. .shift = _shift, \
  40. .ops = &mtk_clk_gate_ops_setclr, \
  41. }
  42. #define GATE_MM1(_id, _name, _parent, _shift) { \
  43. .id = _id, \
  44. .name = _name, \
  45. .parent_name = _parent, \
  46. .regs = &mm1_cg_regs, \
  47. .shift = _shift, \
  48. .ops = &mtk_clk_gate_ops_setclr, \
  49. }
  50. #define GATE_MM2(_id, _name, _parent, _shift) { \
  51. .id = _id, \
  52. .name = _name, \
  53. .parent_name = _parent, \
  54. .regs = &mm2_cg_regs, \
  55. .shift = _shift, \
  56. .ops = &mtk_clk_gate_ops_setclr, \
  57. }
  58. static const struct mtk_gate mm_clks[] = {
  59. /* MM0 */
  60. GATE_MM0(CLK_MM_SMI_COMMON, "mm_smi_common", "mm_sel", 0),
  61. GATE_MM0(CLK_MM_SMI_LARB0, "mm_smi_larb0", "mm_sel", 1),
  62. GATE_MM0(CLK_MM_CAM_MDP, "mm_cam_mdp", "mm_sel", 2),
  63. GATE_MM0(CLK_MM_MDP_RDMA0, "mm_mdp_rdma0", "mm_sel", 3),
  64. GATE_MM0(CLK_MM_MDP_RDMA1, "mm_mdp_rdma1", "mm_sel", 4),
  65. GATE_MM0(CLK_MM_MDP_RSZ0, "mm_mdp_rsz0", "mm_sel", 5),
  66. GATE_MM0(CLK_MM_MDP_RSZ1, "mm_mdp_rsz1", "mm_sel", 6),
  67. GATE_MM0(CLK_MM_MDP_RSZ2, "mm_mdp_rsz2", "mm_sel", 7),
  68. GATE_MM0(CLK_MM_MDP_TDSHP0, "mm_mdp_tdshp0", "mm_sel", 8),
  69. GATE_MM0(CLK_MM_MDP_TDSHP1, "mm_mdp_tdshp1", "mm_sel", 9),
  70. GATE_MM0(CLK_MM_MDP_CROP, "mm_mdp_crop", "mm_sel", 10),
  71. GATE_MM0(CLK_MM_MDP_WDMA, "mm_mdp_wdma", "mm_sel", 11),
  72. GATE_MM0(CLK_MM_MDP_WROT0, "mm_mdp_wrot0", "mm_sel", 12),
  73. GATE_MM0(CLK_MM_MDP_WROT1, "mm_mdp_wrot1", "mm_sel", 13),
  74. GATE_MM0(CLK_MM_FAKE_ENG, "mm_fake_eng", "mm_sel", 14),
  75. GATE_MM0(CLK_MM_MUTEX_32K, "mm_mutex_32k", "clk32k", 15),
  76. GATE_MM0(CLK_MM_DISP_OVL0, "mm_disp_ovl0", "mm_sel", 16),
  77. GATE_MM0(CLK_MM_DISP_OVL1, "mm_disp_ovl1", "mm_sel", 17),
  78. GATE_MM0(CLK_MM_DISP_RDMA0, "mm_disp_rdma0", "mm_sel", 18),
  79. GATE_MM0(CLK_MM_DISP_RDMA1, "mm_disp_rdma1", "mm_sel", 19),
  80. GATE_MM0(CLK_MM_DISP_RDMA2, "mm_disp_rdma2", "mm_sel", 20),
  81. GATE_MM0(CLK_MM_DISP_WDMA0, "mm_disp_wdma0", "mm_sel", 21),
  82. GATE_MM0(CLK_MM_DISP_WDMA1, "mm_disp_wdma1", "mm_sel", 22),
  83. GATE_MM0(CLK_MM_DISP_COLOR0, "mm_disp_color0", "mm_sel", 23),
  84. GATE_MM0(CLK_MM_DISP_COLOR1, "mm_disp_color1", "mm_sel", 24),
  85. GATE_MM0(CLK_MM_DISP_AAL, "mm_disp_aal", "mm_sel", 25),
  86. GATE_MM0(CLK_MM_DISP_GAMMA, "mm_disp_gamma", "mm_sel", 26),
  87. GATE_MM0(CLK_MM_DISP_UFOE, "mm_disp_ufoe", "mm_sel", 27),
  88. GATE_MM0(CLK_MM_DISP_SPLIT0, "mm_disp_split0", "mm_sel", 28),
  89. GATE_MM0(CLK_MM_DISP_OD, "mm_disp_od", "mm_sel", 31),
  90. /* MM1 */
  91. GATE_MM1(CLK_MM_DISP_PWM0_MM, "mm_pwm0_mm", "mm_sel", 0),
  92. GATE_MM1(CLK_MM_DISP_PWM0_26M, "mm_pwm0_26m", "pwm_sel", 1),
  93. GATE_MM1(CLK_MM_DISP_PWM1_MM, "mm_pwm1_mm", "mm_sel", 2),
  94. GATE_MM1(CLK_MM_DISP_PWM1_26M, "mm_pwm1_26m", "pwm_sel", 3),
  95. GATE_MM1(CLK_MM_DSI0_ENGINE, "mm_dsi0_engine", "mm_sel", 4),
  96. GATE_MM1(CLK_MM_DSI0_DIGITAL, "mm_dsi0_digital", "dsi0_lntc", 5),
  97. GATE_MM1(CLK_MM_DSI1_ENGINE, "mm_dsi1_engine", "mm_sel", 6),
  98. GATE_MM1(CLK_MM_DSI1_DIGITAL, "mm_dsi1_digital", "dsi1_lntc", 7),
  99. GATE_MM1(CLK_MM_DPI_PIXEL, "mm_dpi_pixel", "vpll_dpix", 8),
  100. GATE_MM1(CLK_MM_DPI_ENGINE, "mm_dpi_engine", "mm_sel", 9),
  101. GATE_MM1(CLK_MM_DPI1_PIXEL, "mm_dpi1_pixel", "vpll3_dpix", 10),
  102. GATE_MM1(CLK_MM_DPI1_ENGINE, "mm_dpi1_engine", "mm_sel", 11),
  103. GATE_MM1(CLK_MM_LVDS_PIXEL, "mm_lvds_pixel", "vpll_dpix", 16),
  104. GATE_MM1(CLK_MM_LVDS_CTS, "mm_lvds_cts", "lvdstx", 17),
  105. GATE_MM1(CLK_MM_SMI_LARB4, "mm_smi_larb4", "mm_sel", 18),
  106. GATE_MM1(CLK_MM_SMI_COMMON1, "mm_smi_common1", "mm_sel", 21),
  107. GATE_MM1(CLK_MM_SMI_LARB5, "mm_smi_larb5", "mm_sel", 22),
  108. GATE_MM1(CLK_MM_MDP_RDMA2, "mm_mdp_rdma2", "mm_sel", 23),
  109. GATE_MM1(CLK_MM_MDP_TDSHP2, "mm_mdp_tdshp2", "mm_sel", 24),
  110. GATE_MM1(CLK_MM_DISP_OVL2, "mm_disp_ovl2", "mm_sel", 25),
  111. GATE_MM1(CLK_MM_DISP_WDMA2, "mm_disp_wdma2", "mm_sel", 26),
  112. GATE_MM1(CLK_MM_DISP_COLOR2, "mm_disp_color2", "mm_sel", 27),
  113. GATE_MM1(CLK_MM_DISP_AAL1, "mm_disp_aal1", "mm_sel", 28),
  114. GATE_MM1(CLK_MM_DISP_OD1, "mm_disp_od1", "mm_sel", 29),
  115. GATE_MM1(CLK_MM_LVDS1_PIXEL, "mm_lvds1_pixel", "vpll3_dpix", 30),
  116. GATE_MM1(CLK_MM_LVDS1_CTS, "mm_lvds1_cts", "lvdstx3", 31),
  117. /* MM2 */
  118. GATE_MM2(CLK_MM_SMI_LARB7, "mm_smi_larb7", "mm_sel", 0),
  119. GATE_MM2(CLK_MM_MDP_RDMA3, "mm_mdp_rdma3", "mm_sel", 1),
  120. GATE_MM2(CLK_MM_MDP_WROT2, "mm_mdp_wrot2", "mm_sel", 2),
  121. GATE_MM2(CLK_MM_DSI2, "mm_dsi2", "mm_sel", 3),
  122. GATE_MM2(CLK_MM_DSI2_DIGITAL, "mm_dsi2_digital", "dsi0_lntc", 4),
  123. GATE_MM2(CLK_MM_DSI3, "mm_dsi3", "mm_sel", 5),
  124. GATE_MM2(CLK_MM_DSI3_DIGITAL, "mm_dsi3_digital", "dsi1_lntc", 6),
  125. };
  126. static int clk_mt2712_mm_probe(struct platform_device *pdev)
  127. {
  128. struct clk_onecell_data *clk_data;
  129. int r;
  130. struct device_node *node = pdev->dev.of_node;
  131. clk_data = mtk_alloc_clk_data(CLK_MM_NR_CLK);
  132. mtk_clk_register_gates(node, mm_clks, ARRAY_SIZE(mm_clks),
  133. clk_data);
  134. r = of_clk_add_provider(node, of_clk_src_onecell_get, clk_data);
  135. if (r != 0)
  136. pr_err("%s(): could not register clock provider: %d\n",
  137. __func__, r);
  138. return r;
  139. }
  140. static const struct of_device_id of_match_clk_mt2712_mm[] = {
  141. { .compatible = "mediatek,mt2712-mmsys", },
  142. {}
  143. };
  144. static struct platform_driver clk_mt2712_mm_drv = {
  145. .probe = clk_mt2712_mm_probe,
  146. .driver = {
  147. .name = "clk-mt2712-mm",
  148. .of_match_table = of_match_clk_mt2712_mm,
  149. },
  150. };
  151. builtin_platform_driver(clk_mt2712_mm_drv);