clk-s10.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 2017, Intel Corporation
  4. */
  5. #include <linux/slab.h>
  6. #include <linux/clk-provider.h>
  7. #include <linux/of_device.h>
  8. #include <linux/of_address.h>
  9. #include <linux/platform_device.h>
  10. #include <dt-bindings/clock/stratix10-clock.h>
  11. #include "stratix10-clk.h"
  12. static const char * const pll_mux[] = { "osc1", "cb-intosc-hs-div2-clk",
  13. "f2s-free-clk",};
  14. static const char * const cntr_mux[] = { "main_pll", "periph_pll",
  15. "osc1", "cb-intosc-hs-div2-clk",
  16. "f2s-free-clk"};
  17. static const char * const boot_mux[] = { "osc1", "cb-intosc-hs-div2-clk",};
  18. static const char * const noc_free_mux[] = {"main_noc_base_clk",
  19. "peri_noc_base_clk",
  20. "osc1", "cb-intosc-hs-div2-clk",
  21. "f2s-free-clk"};
  22. static const char * const emaca_free_mux[] = {"peri_emaca_clk", "boot_clk"};
  23. static const char * const emacb_free_mux[] = {"peri_emacb_clk", "boot_clk"};
  24. static const char * const emac_ptp_free_mux[] = {"peri_emac_ptp_clk", "boot_clk"};
  25. static const char * const gpio_db_free_mux[] = {"peri_gpio_db_clk", "boot_clk"};
  26. static const char * const sdmmc_free_mux[] = {"main_sdmmc_clk", "boot_clk"};
  27. static const char * const s2f_usr1_free_mux[] = {"peri_s2f_usr1_clk", "boot_clk"};
  28. static const char * const psi_ref_free_mux[] = {"peri_psi_ref_clk", "boot_clk"};
  29. static const char * const mpu_mux[] = { "mpu_free_clk", "boot_clk",};
  30. static const char * const s2f_usr0_mux[] = {"f2s-free-clk", "boot_clk"};
  31. static const char * const emac_mux[] = {"emaca_free_clk", "emacb_free_clk"};
  32. static const char * const noc_mux[] = {"noc_free_clk", "boot_clk"};
  33. static const char * const mpu_free_mux[] = {"main_mpu_base_clk",
  34. "peri_mpu_base_clk",
  35. "osc1", "cb-intosc-hs-div2-clk",
  36. "f2s-free-clk"};
  37. /* clocks in AO (always on) controller */
  38. static const struct stratix10_pll_clock s10_pll_clks[] = {
  39. { STRATIX10_BOOT_CLK, "boot_clk", boot_mux, ARRAY_SIZE(boot_mux), 0,
  40. 0x0},
  41. { STRATIX10_MAIN_PLL_CLK, "main_pll", pll_mux, ARRAY_SIZE(pll_mux),
  42. 0, 0x74},
  43. { STRATIX10_PERIPH_PLL_CLK, "periph_pll", pll_mux, ARRAY_SIZE(pll_mux),
  44. 0, 0xe4},
  45. };
  46. static const struct stratix10_perip_c_clock s10_main_perip_c_clks[] = {
  47. { STRATIX10_MAIN_MPU_BASE_CLK, "main_mpu_base_clk", "main_pll", NULL, 1, 0, 0x84},
  48. { STRATIX10_MAIN_NOC_BASE_CLK, "main_noc_base_clk", "main_pll", NULL, 1, 0, 0x88},
  49. { STRATIX10_PERI_MPU_BASE_CLK, "peri_mpu_base_clk", "periph_pll", NULL, 1, 0,
  50. 0xF4},
  51. { STRATIX10_PERI_NOC_BASE_CLK, "peri_noc_base_clk", "periph_pll", NULL, 1, 0,
  52. 0xF8},
  53. };
  54. static const struct stratix10_perip_cnt_clock s10_main_perip_cnt_clks[] = {
  55. { STRATIX10_MPU_FREE_CLK, "mpu_free_clk", NULL, mpu_free_mux, ARRAY_SIZE(mpu_free_mux),
  56. 0, 0x48, 0, 0, 0},
  57. { STRATIX10_NOC_FREE_CLK, "noc_free_clk", NULL, noc_free_mux, ARRAY_SIZE(noc_free_mux),
  58. 0, 0x4C, 0, 0, 0},
  59. { STRATIX10_MAIN_EMACA_CLK, "main_emaca_clk", "main_noc_base_clk", NULL, 1, 0,
  60. 0x50, 0, 0, 0},
  61. { STRATIX10_MAIN_EMACB_CLK, "main_emacb_clk", "main_noc_base_clk", NULL, 1, 0,
  62. 0x54, 0, 0, 0},
  63. { STRATIX10_MAIN_EMAC_PTP_CLK, "main_emac_ptp_clk", "main_noc_base_clk", NULL, 1, 0,
  64. 0x58, 0, 0, 0},
  65. { STRATIX10_MAIN_GPIO_DB_CLK, "main_gpio_db_clk", "main_noc_base_clk", NULL, 1, 0,
  66. 0x5C, 0, 0, 0},
  67. { STRATIX10_MAIN_SDMMC_CLK, "main_sdmmc_clk", "main_noc_base_clk", NULL, 1, 0,
  68. 0x60, 0, 0, 0},
  69. { STRATIX10_MAIN_S2F_USR0_CLK, "main_s2f_usr0_clk", NULL, cntr_mux, ARRAY_SIZE(cntr_mux),
  70. 0, 0x64, 0, 0, 0},
  71. { STRATIX10_MAIN_S2F_USR1_CLK, "main_s2f_usr1_clk", "main_noc_base_clk", NULL, 1, 0,
  72. 0x68, 0, 0, 0},
  73. { STRATIX10_MAIN_PSI_REF_CLK, "main_psi_ref_clk", "main_noc_base_clk", NULL, 1, 0,
  74. 0x6C, 0, 0, 0},
  75. { STRATIX10_PERI_EMACA_CLK, "peri_emaca_clk", NULL, cntr_mux, ARRAY_SIZE(cntr_mux),
  76. 0, 0xBC, 0, 0, 0},
  77. { STRATIX10_PERI_EMACB_CLK, "peri_emacb_clk", NULL, cntr_mux, ARRAY_SIZE(cntr_mux),
  78. 0, 0xC0, 0, 0, 0},
  79. { STRATIX10_PERI_EMAC_PTP_CLK, "peri_emac_ptp_clk", NULL, cntr_mux, ARRAY_SIZE(cntr_mux),
  80. 0, 0xC4, 0, 0, 0},
  81. { STRATIX10_PERI_GPIO_DB_CLK, "peri_gpio_db_clk", NULL, cntr_mux, ARRAY_SIZE(cntr_mux),
  82. 0, 0xC8, 0, 0, 0},
  83. { STRATIX10_PERI_SDMMC_CLK, "peri_sdmmc_clk", NULL, cntr_mux, ARRAY_SIZE(cntr_mux),
  84. 0, 0xCC, 0, 0, 0},
  85. { STRATIX10_PERI_S2F_USR0_CLK, "peri_s2f_usr0_clk", "peri_noc_base_clk", NULL, 1, 0,
  86. 0xD0, 0, 0, 0},
  87. { STRATIX10_PERI_S2F_USR1_CLK, "peri_s2f_usr1_clk", NULL, cntr_mux, ARRAY_SIZE(cntr_mux),
  88. 0, 0xD4, 0, 0, 0},
  89. { STRATIX10_PERI_PSI_REF_CLK, "peri_psi_ref_clk", "peri_noc_base_clk", NULL, 1, 0,
  90. 0xD8, 0, 0, 0},
  91. { STRATIX10_L4_SYS_FREE_CLK, "l4_sys_free_clk", "noc_free_clk", NULL, 1, 0,
  92. 0, 4, 0, 0},
  93. { STRATIX10_NOC_CLK, "noc_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux),
  94. 0, 0, 0, 0x3C, 1},
  95. { STRATIX10_EMAC_A_FREE_CLK, "emaca_free_clk", NULL, emaca_free_mux, ARRAY_SIZE(emaca_free_mux),
  96. 0, 0, 2, 0xB0, 0},
  97. { STRATIX10_EMAC_B_FREE_CLK, "emacb_free_clk", NULL, emacb_free_mux, ARRAY_SIZE(emacb_free_mux),
  98. 0, 0, 2, 0xB0, 1},
  99. { STRATIX10_EMAC_PTP_FREE_CLK, "emac_ptp_free_clk", NULL, emac_ptp_free_mux,
  100. ARRAY_SIZE(emac_ptp_free_mux), 0, 0, 4, 0xB0, 2},
  101. { STRATIX10_GPIO_DB_FREE_CLK, "gpio_db_free_clk", NULL, gpio_db_free_mux,
  102. ARRAY_SIZE(gpio_db_free_mux), 0, 0, 0, 0xB0, 3},
  103. { STRATIX10_SDMMC_FREE_CLK, "sdmmc_free_clk", NULL, sdmmc_free_mux,
  104. ARRAY_SIZE(sdmmc_free_mux), 0, 0, 0, 0xB0, 4},
  105. { STRATIX10_S2F_USER1_FREE_CLK, "s2f_user1_free_clk", NULL, s2f_usr1_free_mux,
  106. ARRAY_SIZE(s2f_usr1_free_mux), 0, 0, 0, 0xB0, 5},
  107. { STRATIX10_PSI_REF_FREE_CLK, "psi_ref_free_clk", NULL, psi_ref_free_mux,
  108. ARRAY_SIZE(psi_ref_free_mux), 0, 0, 0, 0xB0, 6},
  109. };
  110. static const struct stratix10_gate_clock s10_gate_clks[] = {
  111. { STRATIX10_MPU_CLK, "mpu_clk", NULL, mpu_mux, ARRAY_SIZE(mpu_mux), 0, 0x30,
  112. 0, 0, 0, 0, 0x3C, 0, 0},
  113. { STRATIX10_MPU_PERIPH_CLK, "mpu_periph_clk", "mpu_clk", NULL, 1, 0, 0x30,
  114. 0, 0, 0, 0, 0, 0, 4},
  115. { STRATIX10_MPU_L2RAM_CLK, "mpu_l2ram_clk", "mpu_clk", NULL, 1, 0, 0x30,
  116. 0, 0, 0, 0, 0, 0, 2},
  117. { STRATIX10_L4_MAIN_CLK, "l4_main_clk", "noc_clk", NULL, 1, 0, 0x30,
  118. 1, 0x70, 0, 2, 0, 0, 0},
  119. { STRATIX10_L4_MP_CLK, "l4_mp_clk", "noc_clk", NULL, 1, 0, 0x30,
  120. 2, 0x70, 8, 2, 0, 0, 0},
  121. { STRATIX10_L4_SP_CLK, "l4_sp_clk", "noc_clk", NULL, 1, CLK_IS_CRITICAL, 0x30,
  122. 3, 0x70, 16, 2, 0, 0, 0},
  123. { STRATIX10_CS_AT_CLK, "cs_at_clk", "noc_clk", NULL, 1, 0, 0x30,
  124. 4, 0x70, 24, 2, 0, 0, 0},
  125. { STRATIX10_CS_TRACE_CLK, "cs_trace_clk", "noc_clk", NULL, 1, 0, 0x30,
  126. 4, 0x70, 26, 2, 0, 0, 0},
  127. { STRATIX10_CS_PDBG_CLK, "cs_pdbg_clk", "cs_at_clk", NULL, 1, 0, 0x30,
  128. 4, 0x70, 28, 1, 0, 0, 0},
  129. { STRATIX10_CS_TIMER_CLK, "cs_timer_clk", "noc_clk", NULL, 1, 0, 0x30,
  130. 5, 0, 0, 0, 0, 0, 0},
  131. { STRATIX10_S2F_USER0_CLK, "s2f_user0_clk", NULL, s2f_usr0_mux, ARRAY_SIZE(s2f_usr0_mux), 0, 0x30,
  132. 6, 0, 0, 0, 0, 0, 0},
  133. { STRATIX10_EMAC0_CLK, "emac0_clk", NULL, emac_mux, ARRAY_SIZE(emac_mux), 0, 0xA4,
  134. 0, 0, 0, 0, 0xDC, 26, 0},
  135. { STRATIX10_EMAC1_CLK, "emac1_clk", NULL, emac_mux, ARRAY_SIZE(emac_mux), 0, 0xA4,
  136. 1, 0, 0, 0, 0xDC, 27, 0},
  137. { STRATIX10_EMAC2_CLK, "emac2_clk", NULL, emac_mux, ARRAY_SIZE(emac_mux), 0, 0xA4,
  138. 2, 0, 0, 0, 0xDC, 28, 0},
  139. { STRATIX10_EMAC_PTP_CLK, "emac_ptp_clk", "emac_ptp_free_clk", NULL, 1, 0, 0xA4,
  140. 3, 0, 0, 0, 0, 0, 0},
  141. { STRATIX10_GPIO_DB_CLK, "gpio_db_clk", "gpio_db_free_clk", NULL, 1, 0, 0xA4,
  142. 4, 0xE0, 0, 16, 0, 0, 0},
  143. { STRATIX10_SDMMC_CLK, "sdmmc_clk", "sdmmc_free_clk", NULL, 1, 0, 0xA4,
  144. 5, 0, 0, 0, 0, 0, 4},
  145. { STRATIX10_S2F_USER1_CLK, "s2f_user1_clk", "s2f_user1_free_clk", NULL, 1, 0, 0xA4,
  146. 6, 0, 0, 0, 0, 0, 0},
  147. { STRATIX10_PSI_REF_CLK, "psi_ref_clk", "psi_ref_free_clk", NULL, 1, 0, 0xA4,
  148. 7, 0, 0, 0, 0, 0, 0},
  149. { STRATIX10_USB_CLK, "usb_clk", "l4_mp_clk", NULL, 1, 0, 0xA4,
  150. 8, 0, 0, 0, 0, 0, 0},
  151. { STRATIX10_SPI_M_CLK, "spi_m_clk", "l4_mp_clk", NULL, 1, 0, 0xA4,
  152. 9, 0, 0, 0, 0, 0, 0},
  153. { STRATIX10_NAND_CLK, "nand_clk", "l4_main_clk", NULL, 1, 0, 0xA4,
  154. 10, 0, 0, 0, 0, 0, 0},
  155. };
  156. static int s10_clk_register_c_perip(const struct stratix10_perip_c_clock *clks,
  157. int nums, struct stratix10_clock_data *data)
  158. {
  159. struct clk *clk;
  160. void __iomem *base = data->base;
  161. int i;
  162. for (i = 0; i < nums; i++) {
  163. clk = s10_register_periph(clks[i].name, clks[i].parent_name,
  164. clks[i].parent_names, clks[i].num_parents,
  165. clks[i].flags, base, clks[i].offset);
  166. if (IS_ERR(clk)) {
  167. pr_err("%s: failed to register clock %s\n",
  168. __func__, clks[i].name);
  169. continue;
  170. }
  171. data->clk_data.clks[clks[i].id] = clk;
  172. }
  173. return 0;
  174. }
  175. static int s10_clk_register_cnt_perip(const struct stratix10_perip_cnt_clock *clks,
  176. int nums, struct stratix10_clock_data *data)
  177. {
  178. struct clk *clk;
  179. void __iomem *base = data->base;
  180. int i;
  181. for (i = 0; i < nums; i++) {
  182. clk = s10_register_cnt_periph(clks[i].name, clks[i].parent_name,
  183. clks[i].parent_names,
  184. clks[i].num_parents,
  185. clks[i].flags, base,
  186. clks[i].offset,
  187. clks[i].fixed_divider,
  188. clks[i].bypass_reg,
  189. clks[i].bypass_shift);
  190. if (IS_ERR(clk)) {
  191. pr_err("%s: failed to register clock %s\n",
  192. __func__, clks[i].name);
  193. continue;
  194. }
  195. data->clk_data.clks[clks[i].id] = clk;
  196. }
  197. return 0;
  198. }
  199. static int s10_clk_register_gate(const struct stratix10_gate_clock *clks,
  200. int nums, struct stratix10_clock_data *data)
  201. {
  202. struct clk *clk;
  203. void __iomem *base = data->base;
  204. int i;
  205. for (i = 0; i < nums; i++) {
  206. clk = s10_register_gate(clks[i].name, clks[i].parent_name,
  207. clks[i].parent_names,
  208. clks[i].num_parents,
  209. clks[i].flags, base,
  210. clks[i].gate_reg,
  211. clks[i].gate_idx, clks[i].div_reg,
  212. clks[i].div_offset, clks[i].div_width,
  213. clks[i].bypass_reg,
  214. clks[i].bypass_shift,
  215. clks[i].fixed_div);
  216. if (IS_ERR(clk)) {
  217. pr_err("%s: failed to register clock %s\n",
  218. __func__, clks[i].name);
  219. continue;
  220. }
  221. data->clk_data.clks[clks[i].id] = clk;
  222. }
  223. return 0;
  224. }
  225. static int s10_clk_register_pll(const struct stratix10_pll_clock *clks,
  226. int nums, struct stratix10_clock_data *data)
  227. {
  228. struct clk *clk;
  229. void __iomem *base = data->base;
  230. int i;
  231. for (i = 0; i < nums; i++) {
  232. clk = s10_register_pll(clks[i].name, clks[i].parent_names,
  233. clks[i].num_parents,
  234. clks[i].flags, base,
  235. clks[i].offset);
  236. if (IS_ERR(clk)) {
  237. pr_err("%s: failed to register clock %s\n",
  238. __func__, clks[i].name);
  239. continue;
  240. }
  241. data->clk_data.clks[clks[i].id] = clk;
  242. }
  243. return 0;
  244. }
  245. static struct stratix10_clock_data *__socfpga_s10_clk_init(struct platform_device *pdev,
  246. int nr_clks)
  247. {
  248. struct device_node *np = pdev->dev.of_node;
  249. struct device *dev = &pdev->dev;
  250. struct stratix10_clock_data *clk_data;
  251. struct clk **clk_table;
  252. struct resource *res;
  253. void __iomem *base;
  254. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  255. base = devm_ioremap_resource(dev, res);
  256. if (IS_ERR(base)) {
  257. pr_err("%s: failed to map clock registers\n", __func__);
  258. return ERR_CAST(base);
  259. }
  260. clk_data = devm_kzalloc(dev, sizeof(*clk_data), GFP_KERNEL);
  261. if (!clk_data)
  262. return ERR_PTR(-ENOMEM);
  263. clk_data->base = base;
  264. clk_table = devm_kcalloc(dev, nr_clks, sizeof(*clk_table), GFP_KERNEL);
  265. if (!clk_table)
  266. return ERR_PTR(-ENOMEM);
  267. clk_data->clk_data.clks = clk_table;
  268. clk_data->clk_data.clk_num = nr_clks;
  269. of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data->clk_data);
  270. return clk_data;
  271. }
  272. static int s10_clkmgr_init(struct platform_device *pdev)
  273. {
  274. struct stratix10_clock_data *clk_data;
  275. clk_data = __socfpga_s10_clk_init(pdev, STRATIX10_NUM_CLKS);
  276. if (IS_ERR(clk_data))
  277. return PTR_ERR(clk_data);
  278. s10_clk_register_pll(s10_pll_clks, ARRAY_SIZE(s10_pll_clks), clk_data);
  279. s10_clk_register_c_perip(s10_main_perip_c_clks,
  280. ARRAY_SIZE(s10_main_perip_c_clks), clk_data);
  281. s10_clk_register_cnt_perip(s10_main_perip_cnt_clks,
  282. ARRAY_SIZE(s10_main_perip_cnt_clks),
  283. clk_data);
  284. s10_clk_register_gate(s10_gate_clks, ARRAY_SIZE(s10_gate_clks),
  285. clk_data);
  286. return 0;
  287. }
  288. static int s10_clkmgr_probe(struct platform_device *pdev)
  289. {
  290. return s10_clkmgr_init(pdev);
  291. }
  292. static const struct of_device_id stratix10_clkmgr_match_table[] = {
  293. { .compatible = "intel,stratix10-clkmgr",
  294. .data = s10_clkmgr_init },
  295. { }
  296. };
  297. static struct platform_driver stratix10_clkmgr_driver = {
  298. .probe = s10_clkmgr_probe,
  299. .driver = {
  300. .name = "stratix10-clkmgr",
  301. .suppress_bind_attrs = true,
  302. .of_match_table = stratix10_clkmgr_match_table,
  303. },
  304. };
  305. static int __init s10_clk_init(void)
  306. {
  307. return platform_driver_register(&stratix10_clkmgr_driver);
  308. }
  309. core_initcall(s10_clk_init);