clk-mt8195-apusys_pll.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. //
  3. // Copyright (c) 2021 MediaTek Inc.
  4. // Author: Chun-Jie Chen <[email protected]>
  5. #include "clk-mtk.h"
  6. #include "clk-pll.h"
  7. #include <dt-bindings/clock/mt8195-clk.h>
  8. #include <linux/clk-provider.h>
  9. #include <linux/platform_device.h>
  10. #define MT8195_PLL_FMAX (3800UL * MHZ)
  11. #define MT8195_PLL_FMIN (1500UL * MHZ)
  12. #define MT8195_INTEGER_BITS (8)
  13. #define MT8195_PCW_BITS (22)
  14. #define MT8195_POSDIV_SHIFT (24)
  15. #define MT8195_PLL_EN_BIT (0)
  16. #define MT8195_PCW_SHIFT (0)
  17. /*
  18. * The "en_reg" and "pcw_chg_reg" fields are standard offset register compared
  19. * with "reg" field, so set zero to imply it.
  20. * No tuner control in apu pll, so set "tuner_XXX" as zero to imply it.
  21. * No rst or post divider enable in apu pll, so set "rst_bar_mask" and "en_mask"
  22. * as zero to imply it.
  23. */
  24. #define PLL(_id, _name, _reg, _pwr_reg, _pd_reg, _pcw_reg) { \
  25. .id = _id, \
  26. .name = _name, \
  27. .reg = _reg, \
  28. .pwr_reg = _pwr_reg, \
  29. .en_mask = 0, \
  30. .flags = 0, \
  31. .rst_bar_mask = 0, \
  32. .fmax = MT8195_PLL_FMAX, \
  33. .fmin = MT8195_PLL_FMIN, \
  34. .pcwbits = MT8195_PCW_BITS, \
  35. .pcwibits = MT8195_INTEGER_BITS, \
  36. .pd_reg = _pd_reg, \
  37. .pd_shift = MT8195_POSDIV_SHIFT, \
  38. .tuner_reg = 0, \
  39. .tuner_en_reg = 0, \
  40. .tuner_en_bit = 0, \
  41. .pcw_reg = _pcw_reg, \
  42. .pcw_shift = MT8195_PCW_SHIFT, \
  43. .pcw_chg_reg = 0, \
  44. .en_reg = 0, \
  45. .pll_en_bit = MT8195_PLL_EN_BIT, \
  46. }
  47. static const struct mtk_pll_data apusys_plls[] = {
  48. PLL(CLK_APUSYS_PLL_APUPLL, "apusys_pll_apupll", 0x008, 0x014, 0x00c, 0x00c),
  49. PLL(CLK_APUSYS_PLL_NPUPLL, "apusys_pll_npupll", 0x018, 0x024, 0x01c, 0x01c),
  50. PLL(CLK_APUSYS_PLL_APUPLL1, "apusys_pll_apupll1", 0x028, 0x034, 0x02c, 0x02c),
  51. PLL(CLK_APUSYS_PLL_APUPLL2, "apusys_pll_apupll2", 0x038, 0x044, 0x03c, 0x03c),
  52. };
  53. static int clk_mt8195_apusys_pll_probe(struct platform_device *pdev)
  54. {
  55. struct clk_hw_onecell_data *clk_data;
  56. struct device_node *node = pdev->dev.of_node;
  57. int r;
  58. clk_data = mtk_alloc_clk_data(CLK_APUSYS_PLL_NR_CLK);
  59. if (!clk_data)
  60. return -ENOMEM;
  61. r = mtk_clk_register_plls(node, apusys_plls, ARRAY_SIZE(apusys_plls), clk_data);
  62. if (r)
  63. goto free_apusys_pll_data;
  64. r = of_clk_add_hw_provider(node, of_clk_hw_onecell_get, clk_data);
  65. if (r)
  66. goto unregister_plls;
  67. platform_set_drvdata(pdev, clk_data);
  68. return r;
  69. unregister_plls:
  70. mtk_clk_unregister_plls(apusys_plls, ARRAY_SIZE(apusys_plls), clk_data);
  71. free_apusys_pll_data:
  72. mtk_free_clk_data(clk_data);
  73. return r;
  74. }
  75. static int clk_mt8195_apusys_pll_remove(struct platform_device *pdev)
  76. {
  77. struct clk_hw_onecell_data *clk_data = platform_get_drvdata(pdev);
  78. struct device_node *node = pdev->dev.of_node;
  79. of_clk_del_provider(node);
  80. mtk_clk_unregister_plls(apusys_plls, ARRAY_SIZE(apusys_plls), clk_data);
  81. mtk_free_clk_data(clk_data);
  82. return 0;
  83. }
  84. static const struct of_device_id of_match_clk_mt8195_apusys_pll[] = {
  85. { .compatible = "mediatek,mt8195-apusys_pll", },
  86. {}
  87. };
  88. static struct platform_driver clk_mt8195_apusys_pll_drv = {
  89. .probe = clk_mt8195_apusys_pll_probe,
  90. .remove = clk_mt8195_apusys_pll_remove,
  91. .driver = {
  92. .name = "clk-mt8195-apusys_pll",
  93. .of_match_table = of_match_clk_mt8195_apusys_pll,
  94. },
  95. };
  96. builtin_platform_driver(clk_mt8195_apusys_pll_drv);