18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright (C) 2019, Intel Corporation
48c2ecf20Sopenharmony_ci */
58c2ecf20Sopenharmony_ci#include <linux/slab.h>
68c2ecf20Sopenharmony_ci#include <linux/clk-provider.h>
78c2ecf20Sopenharmony_ci#include <linux/of_device.h>
88c2ecf20Sopenharmony_ci#include <linux/of_address.h>
98c2ecf20Sopenharmony_ci#include <linux/platform_device.h>
108c2ecf20Sopenharmony_ci
118c2ecf20Sopenharmony_ci#include <dt-bindings/clock/agilex-clock.h>
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci#include "stratix10-clk.h"
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_cistatic const struct clk_parent_data pll_mux[] = {
168c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
178c2ecf20Sopenharmony_ci	  .name = "osc1", },
188c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
198c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
208c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
218c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
228c2ecf20Sopenharmony_ci};
238c2ecf20Sopenharmony_ci
248c2ecf20Sopenharmony_cistatic const struct clk_parent_data boot_mux[] = {
258c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
268c2ecf20Sopenharmony_ci	  .name = "osc1", },
278c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
288c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
298c2ecf20Sopenharmony_ci};
308c2ecf20Sopenharmony_ci
318c2ecf20Sopenharmony_cistatic const struct clk_parent_data mpu_free_mux[] = {
328c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c0",
338c2ecf20Sopenharmony_ci	  .name = "main_pll_c0", },
348c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c0",
358c2ecf20Sopenharmony_ci	  .name = "peri_pll_c0", },
368c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
378c2ecf20Sopenharmony_ci	  .name = "osc1", },
388c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
398c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
408c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
418c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
428c2ecf20Sopenharmony_ci};
438c2ecf20Sopenharmony_ci
448c2ecf20Sopenharmony_cistatic const struct clk_parent_data noc_free_mux[] = {
458c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c1",
468c2ecf20Sopenharmony_ci	  .name = "main_pll_c1", },
478c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c1",
488c2ecf20Sopenharmony_ci	  .name = "peri_pll_c1", },
498c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
508c2ecf20Sopenharmony_ci	  .name = "osc1", },
518c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
528c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
538c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
548c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
558c2ecf20Sopenharmony_ci};
568c2ecf20Sopenharmony_ci
578c2ecf20Sopenharmony_cistatic const struct clk_parent_data emaca_free_mux[] = {
588c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c2",
598c2ecf20Sopenharmony_ci	  .name = "main_pll_c2", },
608c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c2",
618c2ecf20Sopenharmony_ci	  .name = "peri_pll_c2", },
628c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
638c2ecf20Sopenharmony_ci	  .name = "osc1", },
648c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
658c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
668c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
678c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
688c2ecf20Sopenharmony_ci};
698c2ecf20Sopenharmony_ci
708c2ecf20Sopenharmony_cistatic const struct clk_parent_data emacb_free_mux[] = {
718c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c3",
728c2ecf20Sopenharmony_ci	  .name = "main_pll_c3", },
738c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c3",
748c2ecf20Sopenharmony_ci	  .name = "peri_pll_c3", },
758c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
768c2ecf20Sopenharmony_ci	  .name = "osc1", },
778c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
788c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
798c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
808c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
818c2ecf20Sopenharmony_ci};
828c2ecf20Sopenharmony_ci
838c2ecf20Sopenharmony_cistatic const struct clk_parent_data emac_ptp_free_mux[] = {
848c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c3",
858c2ecf20Sopenharmony_ci	  .name = "main_pll_c3", },
868c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c3",
878c2ecf20Sopenharmony_ci	  .name = "peri_pll_c3", },
888c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
898c2ecf20Sopenharmony_ci	  .name = "osc1", },
908c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
918c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
928c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
938c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
948c2ecf20Sopenharmony_ci};
958c2ecf20Sopenharmony_ci
968c2ecf20Sopenharmony_cistatic const struct clk_parent_data gpio_db_free_mux[] = {
978c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c3",
988c2ecf20Sopenharmony_ci	  .name = "main_pll_c3", },
998c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c3",
1008c2ecf20Sopenharmony_ci	  .name = "peri_pll_c3", },
1018c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
1028c2ecf20Sopenharmony_ci	  .name = "osc1", },
1038c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
1048c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
1058c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
1068c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
1078c2ecf20Sopenharmony_ci};
1088c2ecf20Sopenharmony_ci
1098c2ecf20Sopenharmony_cistatic const struct clk_parent_data psi_ref_free_mux[] = {
1108c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c2",
1118c2ecf20Sopenharmony_ci	  .name = "main_pll_c2", },
1128c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c2",
1138c2ecf20Sopenharmony_ci	  .name = "peri_pll_c2", },
1148c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
1158c2ecf20Sopenharmony_ci	  .name = "osc1", },
1168c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
1178c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
1188c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
1198c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
1208c2ecf20Sopenharmony_ci};
1218c2ecf20Sopenharmony_ci
1228c2ecf20Sopenharmony_cistatic const struct clk_parent_data sdmmc_free_mux[] = {
1238c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c3",
1248c2ecf20Sopenharmony_ci	  .name = "main_pll_c3", },
1258c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c3",
1268c2ecf20Sopenharmony_ci	  .name = "peri_pll_c3", },
1278c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
1288c2ecf20Sopenharmony_ci	  .name = "osc1", },
1298c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
1308c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
1318c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
1328c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
1338c2ecf20Sopenharmony_ci};
1348c2ecf20Sopenharmony_ci
1358c2ecf20Sopenharmony_cistatic const struct clk_parent_data s2f_usr0_free_mux[] = {
1368c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c2",
1378c2ecf20Sopenharmony_ci	  .name = "main_pll_c2", },
1388c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c2",
1398c2ecf20Sopenharmony_ci	  .name = "peri_pll_c2", },
1408c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
1418c2ecf20Sopenharmony_ci	  .name = "osc1", },
1428c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
1438c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
1448c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
1458c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
1468c2ecf20Sopenharmony_ci};
1478c2ecf20Sopenharmony_ci
1488c2ecf20Sopenharmony_cistatic const struct clk_parent_data s2f_usr1_free_mux[] = {
1498c2ecf20Sopenharmony_ci	{ .fw_name = "main_pll_c2",
1508c2ecf20Sopenharmony_ci	  .name = "main_pll_c2", },
1518c2ecf20Sopenharmony_ci	{ .fw_name = "peri_pll_c2",
1528c2ecf20Sopenharmony_ci	  .name = "peri_pll_c2", },
1538c2ecf20Sopenharmony_ci	{ .fw_name = "osc1",
1548c2ecf20Sopenharmony_ci	  .name = "osc1", },
1558c2ecf20Sopenharmony_ci	{ .fw_name = "cb-intosc-hs-div2-clk",
1568c2ecf20Sopenharmony_ci	  .name = "cb-intosc-hs-div2-clk", },
1578c2ecf20Sopenharmony_ci	{ .fw_name = "f2s-free-clk",
1588c2ecf20Sopenharmony_ci	  .name = "f2s-free-clk", },
1598c2ecf20Sopenharmony_ci};
1608c2ecf20Sopenharmony_ci
1618c2ecf20Sopenharmony_cistatic const struct clk_parent_data mpu_mux[] = {
1628c2ecf20Sopenharmony_ci	{ .fw_name = "mpu_free_clk",
1638c2ecf20Sopenharmony_ci	  .name = "mpu_free_clk", },
1648c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
1658c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
1668c2ecf20Sopenharmony_ci};
1678c2ecf20Sopenharmony_ci
1688c2ecf20Sopenharmony_cistatic const struct clk_parent_data emac_mux[] = {
1698c2ecf20Sopenharmony_ci	{ .fw_name = "emaca_free_clk",
1708c2ecf20Sopenharmony_ci	  .name = "emaca_free_clk", },
1718c2ecf20Sopenharmony_ci	{ .fw_name = "emacb_free_clk",
1728c2ecf20Sopenharmony_ci	  .name = "emacb_free_clk", },
1738c2ecf20Sopenharmony_ci};
1748c2ecf20Sopenharmony_ci
1758c2ecf20Sopenharmony_cistatic const struct clk_parent_data noc_mux[] = {
1768c2ecf20Sopenharmony_ci	{ .fw_name = "noc_free_clk",
1778c2ecf20Sopenharmony_ci	  .name = "noc_free_clk", },
1788c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
1798c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
1808c2ecf20Sopenharmony_ci};
1818c2ecf20Sopenharmony_ci
1828c2ecf20Sopenharmony_cistatic const struct clk_parent_data sdmmc_mux[] = {
1838c2ecf20Sopenharmony_ci	{ .fw_name = "sdmmc_free_clk",
1848c2ecf20Sopenharmony_ci	  .name = "sdmmc_free_clk", },
1858c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
1868c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
1878c2ecf20Sopenharmony_ci};
1888c2ecf20Sopenharmony_ci
1898c2ecf20Sopenharmony_cistatic const struct clk_parent_data s2f_user0_mux[] = {
1908c2ecf20Sopenharmony_ci	{ .fw_name = "s2f_user0_free_clk",
1918c2ecf20Sopenharmony_ci	  .name = "s2f_user0_free_clk", },
1928c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
1938c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
1948c2ecf20Sopenharmony_ci};
1958c2ecf20Sopenharmony_ci
1968c2ecf20Sopenharmony_cistatic const struct clk_parent_data s2f_user1_mux[] = {
1978c2ecf20Sopenharmony_ci	{ .fw_name = "s2f_user1_free_clk",
1988c2ecf20Sopenharmony_ci	  .name = "s2f_user1_free_clk", },
1998c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
2008c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
2018c2ecf20Sopenharmony_ci};
2028c2ecf20Sopenharmony_ci
2038c2ecf20Sopenharmony_cistatic const struct clk_parent_data psi_mux[] = {
2048c2ecf20Sopenharmony_ci	{ .fw_name = "psi_ref_free_clk",
2058c2ecf20Sopenharmony_ci	  .name = "psi_ref_free_clk", },
2068c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
2078c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
2088c2ecf20Sopenharmony_ci};
2098c2ecf20Sopenharmony_ci
2108c2ecf20Sopenharmony_cistatic const struct clk_parent_data gpio_db_mux[] = {
2118c2ecf20Sopenharmony_ci	{ .fw_name = "gpio_db_free_clk",
2128c2ecf20Sopenharmony_ci	  .name = "gpio_db_free_clk", },
2138c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
2148c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
2158c2ecf20Sopenharmony_ci};
2168c2ecf20Sopenharmony_ci
2178c2ecf20Sopenharmony_cistatic const struct clk_parent_data emac_ptp_mux[] = {
2188c2ecf20Sopenharmony_ci	{ .fw_name = "emac_ptp_free_clk",
2198c2ecf20Sopenharmony_ci	  .name = "emac_ptp_free_clk", },
2208c2ecf20Sopenharmony_ci	{ .fw_name = "boot_clk",
2218c2ecf20Sopenharmony_ci	  .name = "boot_clk", },
2228c2ecf20Sopenharmony_ci};
2238c2ecf20Sopenharmony_ci
2248c2ecf20Sopenharmony_ci/* clocks in AO (always on) controller */
2258c2ecf20Sopenharmony_cistatic const struct stratix10_pll_clock agilex_pll_clks[] = {
2268c2ecf20Sopenharmony_ci	{ AGILEX_BOOT_CLK, "boot_clk", boot_mux, ARRAY_SIZE(boot_mux), 0,
2278c2ecf20Sopenharmony_ci	  0x0},
2288c2ecf20Sopenharmony_ci	{ AGILEX_MAIN_PLL_CLK, "main_pll", pll_mux, ARRAY_SIZE(pll_mux),
2298c2ecf20Sopenharmony_ci	  0, 0x48},
2308c2ecf20Sopenharmony_ci	{ AGILEX_PERIPH_PLL_CLK, "periph_pll", pll_mux, ARRAY_SIZE(pll_mux),
2318c2ecf20Sopenharmony_ci	  0, 0x9c},
2328c2ecf20Sopenharmony_ci};
2338c2ecf20Sopenharmony_ci
2348c2ecf20Sopenharmony_cistatic const struct stratix10_perip_c_clock agilex_main_perip_c_clks[] = {
2358c2ecf20Sopenharmony_ci	{ AGILEX_MAIN_PLL_C0_CLK, "main_pll_c0", "main_pll", NULL, 1, 0, 0x58},
2368c2ecf20Sopenharmony_ci	{ AGILEX_MAIN_PLL_C1_CLK, "main_pll_c1", "main_pll", NULL, 1, 0, 0x5C},
2378c2ecf20Sopenharmony_ci	{ AGILEX_MAIN_PLL_C2_CLK, "main_pll_c2", "main_pll", NULL, 1, 0, 0x64},
2388c2ecf20Sopenharmony_ci	{ AGILEX_MAIN_PLL_C3_CLK, "main_pll_c3", "main_pll", NULL, 1, 0, 0x68},
2398c2ecf20Sopenharmony_ci	{ AGILEX_PERIPH_PLL_C0_CLK, "peri_pll_c0", "periph_pll", NULL, 1, 0, 0xAC},
2408c2ecf20Sopenharmony_ci	{ AGILEX_PERIPH_PLL_C1_CLK, "peri_pll_c1", "periph_pll", NULL, 1, 0, 0xB0},
2418c2ecf20Sopenharmony_ci	{ AGILEX_PERIPH_PLL_C2_CLK, "peri_pll_c2", "periph_pll", NULL, 1, 0, 0xB8},
2428c2ecf20Sopenharmony_ci	{ AGILEX_PERIPH_PLL_C3_CLK, "peri_pll_c3", "periph_pll", NULL, 1, 0, 0xBC},
2438c2ecf20Sopenharmony_ci};
2448c2ecf20Sopenharmony_ci
2458c2ecf20Sopenharmony_cistatic const struct stratix10_perip_cnt_clock agilex_main_perip_cnt_clks[] = {
2468c2ecf20Sopenharmony_ci	{ AGILEX_MPU_FREE_CLK, "mpu_free_clk", NULL, mpu_free_mux, ARRAY_SIZE(mpu_free_mux),
2478c2ecf20Sopenharmony_ci	   0, 0x3C, 0, 0, 0},
2488c2ecf20Sopenharmony_ci	{ AGILEX_NOC_FREE_CLK, "noc_free_clk", NULL, noc_free_mux, ARRAY_SIZE(noc_free_mux),
2498c2ecf20Sopenharmony_ci	  0, 0x40, 0, 0, 0},
2508c2ecf20Sopenharmony_ci	{ AGILEX_L4_SYS_FREE_CLK, "l4_sys_free_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), 0,
2518c2ecf20Sopenharmony_ci	  0, 4, 0x30, 1},
2528c2ecf20Sopenharmony_ci	{ AGILEX_EMAC_A_FREE_CLK, "emaca_free_clk", NULL, emaca_free_mux, ARRAY_SIZE(emaca_free_mux),
2538c2ecf20Sopenharmony_ci	  0, 0xD4, 0, 0x88, 0},
2548c2ecf20Sopenharmony_ci	{ AGILEX_EMAC_B_FREE_CLK, "emacb_free_clk", NULL, emacb_free_mux, ARRAY_SIZE(emacb_free_mux),
2558c2ecf20Sopenharmony_ci	  0, 0xD8, 0, 0x88, 1},
2568c2ecf20Sopenharmony_ci	{ AGILEX_EMAC_PTP_FREE_CLK, "emac_ptp_free_clk", NULL, emac_ptp_free_mux,
2578c2ecf20Sopenharmony_ci	  ARRAY_SIZE(emac_ptp_free_mux), 0, 0xDC, 0, 0x88, 2},
2588c2ecf20Sopenharmony_ci	{ AGILEX_GPIO_DB_FREE_CLK, "gpio_db_free_clk", NULL, gpio_db_free_mux,
2598c2ecf20Sopenharmony_ci	  ARRAY_SIZE(gpio_db_free_mux), 0, 0xE0, 0, 0x88, 3},
2608c2ecf20Sopenharmony_ci	{ AGILEX_SDMMC_FREE_CLK, "sdmmc_free_clk", NULL, sdmmc_free_mux,
2618c2ecf20Sopenharmony_ci	  ARRAY_SIZE(sdmmc_free_mux), 0, 0xE4, 0, 0, 0},
2628c2ecf20Sopenharmony_ci	{ AGILEX_S2F_USER0_FREE_CLK, "s2f_user0_free_clk", NULL, s2f_usr0_free_mux,
2638c2ecf20Sopenharmony_ci	  ARRAY_SIZE(s2f_usr0_free_mux), 0, 0xE8, 0, 0x30, 2},
2648c2ecf20Sopenharmony_ci	{ AGILEX_S2F_USER1_FREE_CLK, "s2f_user1_free_clk", NULL, s2f_usr1_free_mux,
2658c2ecf20Sopenharmony_ci	  ARRAY_SIZE(s2f_usr1_free_mux), 0, 0xEC, 0, 0x88, 5},
2668c2ecf20Sopenharmony_ci	{ AGILEX_PSI_REF_FREE_CLK, "psi_ref_free_clk", NULL, psi_ref_free_mux,
2678c2ecf20Sopenharmony_ci	  ARRAY_SIZE(psi_ref_free_mux), 0, 0xF0, 0, 0x88, 6},
2688c2ecf20Sopenharmony_ci};
2698c2ecf20Sopenharmony_ci
2708c2ecf20Sopenharmony_cistatic const struct stratix10_gate_clock agilex_gate_clks[] = {
2718c2ecf20Sopenharmony_ci	{ AGILEX_MPU_CLK, "mpu_clk", NULL, mpu_mux, ARRAY_SIZE(mpu_mux), 0, 0x24,
2728c2ecf20Sopenharmony_ci	  0, 0, 0, 0, 0x30, 0, 0},
2738c2ecf20Sopenharmony_ci	{ AGILEX_MPU_PERIPH_CLK, "mpu_periph_clk", "mpu_clk", NULL, 1, 0, 0x24,
2748c2ecf20Sopenharmony_ci	  0, 0, 0, 0, 0, 0, 4},
2758c2ecf20Sopenharmony_ci	{ AGILEX_MPU_CCU_CLK, "mpu_ccu_clk", "mpu_clk", NULL, 1, 0, 0x24,
2768c2ecf20Sopenharmony_ci	  0, 0, 0, 0, 0, 0, 2},
2778c2ecf20Sopenharmony_ci	{ AGILEX_L4_MAIN_CLK, "l4_main_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), 0, 0x24,
2788c2ecf20Sopenharmony_ci	  1, 0x44, 0, 2, 0x30, 1, 0},
2798c2ecf20Sopenharmony_ci	{ AGILEX_L4_MP_CLK, "l4_mp_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), 0, 0x24,
2808c2ecf20Sopenharmony_ci	  2, 0x44, 8, 2, 0x30, 1, 0},
2818c2ecf20Sopenharmony_ci	/*
2828c2ecf20Sopenharmony_ci	 * The l4_sp_clk feeds a 100 MHz clock to various peripherals, one of them
2838c2ecf20Sopenharmony_ci	 * being the SP timers, thus cannot get gated.
2848c2ecf20Sopenharmony_ci	 */
2858c2ecf20Sopenharmony_ci	{ AGILEX_L4_SP_CLK, "l4_sp_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), CLK_IS_CRITICAL, 0x24,
2868c2ecf20Sopenharmony_ci	  3, 0x44, 16, 2, 0x30, 1, 0},
2878c2ecf20Sopenharmony_ci	{ AGILEX_CS_AT_CLK, "cs_at_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), 0, 0x24,
2888c2ecf20Sopenharmony_ci	  4, 0x44, 24, 2, 0x30, 1, 0},
2898c2ecf20Sopenharmony_ci	{ AGILEX_CS_TRACE_CLK, "cs_trace_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), 0, 0x24,
2908c2ecf20Sopenharmony_ci	  4, 0x44, 26, 2, 0x30, 1, 0},
2918c2ecf20Sopenharmony_ci	{ AGILEX_CS_PDBG_CLK, "cs_pdbg_clk", "cs_at_clk", NULL, 1, 0, 0x24,
2928c2ecf20Sopenharmony_ci	  4, 0x44, 28, 1, 0, 0, 0},
2938c2ecf20Sopenharmony_ci	{ AGILEX_CS_TIMER_CLK, "cs_timer_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), 0, 0x24,
2948c2ecf20Sopenharmony_ci	  5, 0, 0, 0, 0x30, 1, 0},
2958c2ecf20Sopenharmony_ci	{ AGILEX_EMAC0_CLK, "emac0_clk", NULL, emac_mux, ARRAY_SIZE(emac_mux), 0, 0x7C,
2968c2ecf20Sopenharmony_ci	  0, 0, 0, 0, 0x94, 26, 0},
2978c2ecf20Sopenharmony_ci	{ AGILEX_EMAC1_CLK, "emac1_clk", NULL, emac_mux, ARRAY_SIZE(emac_mux), 0, 0x7C,
2988c2ecf20Sopenharmony_ci	  1, 0, 0, 0, 0x94, 27, 0},
2998c2ecf20Sopenharmony_ci	{ AGILEX_EMAC2_CLK, "emac2_clk", NULL, emac_mux, ARRAY_SIZE(emac_mux), 0, 0x7C,
3008c2ecf20Sopenharmony_ci	  2, 0, 0, 0, 0x94, 28, 0},
3018c2ecf20Sopenharmony_ci	{ AGILEX_EMAC_PTP_CLK, "emac_ptp_clk", NULL, emac_ptp_mux, ARRAY_SIZE(emac_ptp_mux), 0, 0x7C,
3028c2ecf20Sopenharmony_ci	  3, 0, 0, 0, 0x88, 2, 0},
3038c2ecf20Sopenharmony_ci	{ AGILEX_GPIO_DB_CLK, "gpio_db_clk", NULL, gpio_db_mux, ARRAY_SIZE(gpio_db_mux), 0, 0x7C,
3048c2ecf20Sopenharmony_ci	  4, 0x98, 0, 16, 0x88, 3, 0},
3058c2ecf20Sopenharmony_ci	{ AGILEX_SDMMC_CLK, "sdmmc_clk", NULL, sdmmc_mux, ARRAY_SIZE(sdmmc_mux), 0, 0x7C,
3068c2ecf20Sopenharmony_ci	  5, 0, 0, 0, 0x88, 4, 4},
3078c2ecf20Sopenharmony_ci	{ AGILEX_S2F_USER0_CLK, "s2f_user0_clk", NULL, s2f_user0_mux, ARRAY_SIZE(s2f_user0_mux), 0, 0x24,
3088c2ecf20Sopenharmony_ci	  6, 0, 0, 0, 0x30, 2, 0},
3098c2ecf20Sopenharmony_ci	{ AGILEX_S2F_USER1_CLK, "s2f_user1_clk", NULL, s2f_user1_mux, ARRAY_SIZE(s2f_user1_mux), 0, 0x7C,
3108c2ecf20Sopenharmony_ci	  6, 0, 0, 0, 0x88, 5, 0},
3118c2ecf20Sopenharmony_ci	{ AGILEX_PSI_REF_CLK, "psi_ref_clk", NULL, psi_mux, ARRAY_SIZE(psi_mux), 0, 0x7C,
3128c2ecf20Sopenharmony_ci	  7, 0, 0, 0, 0x88, 6, 0},
3138c2ecf20Sopenharmony_ci	{ AGILEX_USB_CLK, "usb_clk", "l4_mp_clk", NULL, 1, 0, 0x7C,
3148c2ecf20Sopenharmony_ci	  8, 0, 0, 0, 0, 0, 0},
3158c2ecf20Sopenharmony_ci	{ AGILEX_SPI_M_CLK, "spi_m_clk", "l4_mp_clk", NULL, 1, 0, 0x7C,
3168c2ecf20Sopenharmony_ci	  9, 0, 0, 0, 0, 0, 0},
3178c2ecf20Sopenharmony_ci	{ AGILEX_NAND_X_CLK, "nand_x_clk", "l4_mp_clk", NULL, 1, 0, 0x7C,
3188c2ecf20Sopenharmony_ci	  10, 0, 0, 0, 0, 0, 0},
3198c2ecf20Sopenharmony_ci	{ AGILEX_NAND_CLK, "nand_clk", "nand_x_clk", NULL, 1, 0, 0x7C,
3208c2ecf20Sopenharmony_ci	  10, 0, 0, 0, 0, 0, 4},
3218c2ecf20Sopenharmony_ci	{ AGILEX_NAND_ECC_CLK, "nand_ecc_clk", "nand_x_clk", NULL, 1, 0, 0x7C,
3228c2ecf20Sopenharmony_ci	  10, 0, 0, 0, 0, 0, 4},
3238c2ecf20Sopenharmony_ci};
3248c2ecf20Sopenharmony_ci
3258c2ecf20Sopenharmony_cistatic int agilex_clk_register_c_perip(const struct stratix10_perip_c_clock *clks,
3268c2ecf20Sopenharmony_ci				       int nums, struct stratix10_clock_data *data)
3278c2ecf20Sopenharmony_ci{
3288c2ecf20Sopenharmony_ci	struct clk *clk;
3298c2ecf20Sopenharmony_ci	void __iomem *base = data->base;
3308c2ecf20Sopenharmony_ci	int i;
3318c2ecf20Sopenharmony_ci
3328c2ecf20Sopenharmony_ci	for (i = 0; i < nums; i++) {
3338c2ecf20Sopenharmony_ci		clk = s10_register_periph(&clks[i], base);
3348c2ecf20Sopenharmony_ci		if (IS_ERR(clk)) {
3358c2ecf20Sopenharmony_ci			pr_err("%s: failed to register clock %s\n",
3368c2ecf20Sopenharmony_ci			       __func__, clks[i].name);
3378c2ecf20Sopenharmony_ci			continue;
3388c2ecf20Sopenharmony_ci		}
3398c2ecf20Sopenharmony_ci		data->clk_data.clks[clks[i].id] = clk;
3408c2ecf20Sopenharmony_ci	}
3418c2ecf20Sopenharmony_ci	return 0;
3428c2ecf20Sopenharmony_ci}
3438c2ecf20Sopenharmony_ci
3448c2ecf20Sopenharmony_cistatic int agilex_clk_register_cnt_perip(const struct stratix10_perip_cnt_clock *clks,
3458c2ecf20Sopenharmony_ci					 int nums, struct stratix10_clock_data *data)
3468c2ecf20Sopenharmony_ci{
3478c2ecf20Sopenharmony_ci	struct clk *clk;
3488c2ecf20Sopenharmony_ci	void __iomem *base = data->base;
3498c2ecf20Sopenharmony_ci	int i;
3508c2ecf20Sopenharmony_ci
3518c2ecf20Sopenharmony_ci	for (i = 0; i < nums; i++) {
3528c2ecf20Sopenharmony_ci		clk = s10_register_cnt_periph(&clks[i], base);
3538c2ecf20Sopenharmony_ci		if (IS_ERR(clk)) {
3548c2ecf20Sopenharmony_ci			pr_err("%s: failed to register clock %s\n",
3558c2ecf20Sopenharmony_ci			       __func__, clks[i].name);
3568c2ecf20Sopenharmony_ci			continue;
3578c2ecf20Sopenharmony_ci		}
3588c2ecf20Sopenharmony_ci		data->clk_data.clks[clks[i].id] = clk;
3598c2ecf20Sopenharmony_ci	}
3608c2ecf20Sopenharmony_ci
3618c2ecf20Sopenharmony_ci	return 0;
3628c2ecf20Sopenharmony_ci}
3638c2ecf20Sopenharmony_ci
3648c2ecf20Sopenharmony_cistatic int agilex_clk_register_gate(const struct stratix10_gate_clock *clks,					    int nums, struct stratix10_clock_data *data)
3658c2ecf20Sopenharmony_ci{
3668c2ecf20Sopenharmony_ci	struct clk *clk;
3678c2ecf20Sopenharmony_ci	void __iomem *base = data->base;
3688c2ecf20Sopenharmony_ci	int i;
3698c2ecf20Sopenharmony_ci
3708c2ecf20Sopenharmony_ci	for (i = 0; i < nums; i++) {
3718c2ecf20Sopenharmony_ci		clk = s10_register_gate(&clks[i], base);
3728c2ecf20Sopenharmony_ci		if (IS_ERR(clk)) {
3738c2ecf20Sopenharmony_ci			pr_err("%s: failed to register clock %s\n",
3748c2ecf20Sopenharmony_ci			       __func__, clks[i].name);
3758c2ecf20Sopenharmony_ci			continue;
3768c2ecf20Sopenharmony_ci		}
3778c2ecf20Sopenharmony_ci		data->clk_data.clks[clks[i].id] = clk;
3788c2ecf20Sopenharmony_ci	}
3798c2ecf20Sopenharmony_ci
3808c2ecf20Sopenharmony_ci	return 0;
3818c2ecf20Sopenharmony_ci}
3828c2ecf20Sopenharmony_ci
3838c2ecf20Sopenharmony_cistatic int agilex_clk_register_pll(const struct stratix10_pll_clock *clks,
3848c2ecf20Sopenharmony_ci				 int nums, struct stratix10_clock_data *data)
3858c2ecf20Sopenharmony_ci{
3868c2ecf20Sopenharmony_ci	struct clk *clk;
3878c2ecf20Sopenharmony_ci	void __iomem *base = data->base;
3888c2ecf20Sopenharmony_ci	int i;
3898c2ecf20Sopenharmony_ci
3908c2ecf20Sopenharmony_ci	for (i = 0; i < nums; i++) {
3918c2ecf20Sopenharmony_ci		clk = agilex_register_pll(&clks[i], base);
3928c2ecf20Sopenharmony_ci		if (IS_ERR(clk)) {
3938c2ecf20Sopenharmony_ci			pr_err("%s: failed to register clock %s\n",
3948c2ecf20Sopenharmony_ci			       __func__, clks[i].name);
3958c2ecf20Sopenharmony_ci			continue;
3968c2ecf20Sopenharmony_ci		}
3978c2ecf20Sopenharmony_ci		data->clk_data.clks[clks[i].id] = clk;
3988c2ecf20Sopenharmony_ci	}
3998c2ecf20Sopenharmony_ci
4008c2ecf20Sopenharmony_ci	return 0;
4018c2ecf20Sopenharmony_ci}
4028c2ecf20Sopenharmony_ci
4038c2ecf20Sopenharmony_cistatic struct stratix10_clock_data *__socfpga_agilex_clk_init(struct platform_device *pdev,
4048c2ecf20Sopenharmony_ci						    int nr_clks)
4058c2ecf20Sopenharmony_ci{
4068c2ecf20Sopenharmony_ci	struct device_node *np = pdev->dev.of_node;
4078c2ecf20Sopenharmony_ci	struct device *dev = &pdev->dev;
4088c2ecf20Sopenharmony_ci	struct stratix10_clock_data *clk_data;
4098c2ecf20Sopenharmony_ci	struct clk **clk_table;
4108c2ecf20Sopenharmony_ci	struct resource *res;
4118c2ecf20Sopenharmony_ci	void __iomem *base;
4128c2ecf20Sopenharmony_ci	int ret;
4138c2ecf20Sopenharmony_ci
4148c2ecf20Sopenharmony_ci	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
4158c2ecf20Sopenharmony_ci	base = devm_ioremap_resource(dev, res);
4168c2ecf20Sopenharmony_ci	if (IS_ERR(base))
4178c2ecf20Sopenharmony_ci		return ERR_CAST(base);
4188c2ecf20Sopenharmony_ci
4198c2ecf20Sopenharmony_ci	clk_data = devm_kzalloc(dev, sizeof(*clk_data), GFP_KERNEL);
4208c2ecf20Sopenharmony_ci	if (!clk_data)
4218c2ecf20Sopenharmony_ci		return ERR_PTR(-ENOMEM);
4228c2ecf20Sopenharmony_ci
4238c2ecf20Sopenharmony_ci	clk_data->base = base;
4248c2ecf20Sopenharmony_ci	clk_table = devm_kcalloc(dev, nr_clks, sizeof(*clk_table), GFP_KERNEL);
4258c2ecf20Sopenharmony_ci	if (!clk_table)
4268c2ecf20Sopenharmony_ci		return ERR_PTR(-ENOMEM);
4278c2ecf20Sopenharmony_ci
4288c2ecf20Sopenharmony_ci	clk_data->clk_data.clks = clk_table;
4298c2ecf20Sopenharmony_ci	clk_data->clk_data.clk_num = nr_clks;
4308c2ecf20Sopenharmony_ci	ret = of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data->clk_data);
4318c2ecf20Sopenharmony_ci	if (ret)
4328c2ecf20Sopenharmony_ci		return ERR_PTR(ret);
4338c2ecf20Sopenharmony_ci
4348c2ecf20Sopenharmony_ci	return clk_data;
4358c2ecf20Sopenharmony_ci}
4368c2ecf20Sopenharmony_ci
4378c2ecf20Sopenharmony_cistatic int agilex_clkmgr_probe(struct platform_device *pdev)
4388c2ecf20Sopenharmony_ci{
4398c2ecf20Sopenharmony_ci	struct stratix10_clock_data *clk_data;
4408c2ecf20Sopenharmony_ci
4418c2ecf20Sopenharmony_ci	clk_data = __socfpga_agilex_clk_init(pdev, AGILEX_NUM_CLKS);
4428c2ecf20Sopenharmony_ci	if (IS_ERR(clk_data))
4438c2ecf20Sopenharmony_ci		return PTR_ERR(clk_data);
4448c2ecf20Sopenharmony_ci
4458c2ecf20Sopenharmony_ci	agilex_clk_register_pll(agilex_pll_clks, ARRAY_SIZE(agilex_pll_clks), clk_data);
4468c2ecf20Sopenharmony_ci
4478c2ecf20Sopenharmony_ci	agilex_clk_register_c_perip(agilex_main_perip_c_clks,
4488c2ecf20Sopenharmony_ci				 ARRAY_SIZE(agilex_main_perip_c_clks), clk_data);
4498c2ecf20Sopenharmony_ci
4508c2ecf20Sopenharmony_ci	agilex_clk_register_cnt_perip(agilex_main_perip_cnt_clks,
4518c2ecf20Sopenharmony_ci				   ARRAY_SIZE(agilex_main_perip_cnt_clks),
4528c2ecf20Sopenharmony_ci				   clk_data);
4538c2ecf20Sopenharmony_ci
4548c2ecf20Sopenharmony_ci	agilex_clk_register_gate(agilex_gate_clks, ARRAY_SIZE(agilex_gate_clks),
4558c2ecf20Sopenharmony_ci			      clk_data);
4568c2ecf20Sopenharmony_ci	return 0;
4578c2ecf20Sopenharmony_ci}
4588c2ecf20Sopenharmony_ci
4598c2ecf20Sopenharmony_cistatic const struct of_device_id agilex_clkmgr_match_table[] = {
4608c2ecf20Sopenharmony_ci	{ .compatible = "intel,agilex-clkmgr",
4618c2ecf20Sopenharmony_ci	  .data = agilex_clkmgr_probe },
4628c2ecf20Sopenharmony_ci	{ }
4638c2ecf20Sopenharmony_ci};
4648c2ecf20Sopenharmony_ci
4658c2ecf20Sopenharmony_cistatic struct platform_driver agilex_clkmgr_driver = {
4668c2ecf20Sopenharmony_ci	.probe		= agilex_clkmgr_probe,
4678c2ecf20Sopenharmony_ci	.driver		= {
4688c2ecf20Sopenharmony_ci		.name	= "agilex-clkmgr",
4698c2ecf20Sopenharmony_ci		.suppress_bind_attrs = true,
4708c2ecf20Sopenharmony_ci		.of_match_table = agilex_clkmgr_match_table,
4718c2ecf20Sopenharmony_ci	},
4728c2ecf20Sopenharmony_ci};
4738c2ecf20Sopenharmony_ci
4748c2ecf20Sopenharmony_cistatic int __init agilex_clk_init(void)
4758c2ecf20Sopenharmony_ci{
4768c2ecf20Sopenharmony_ci	return platform_driver_register(&agilex_clkmgr_driver);
4778c2ecf20Sopenharmony_ci}
4788c2ecf20Sopenharmony_cicore_initcall(agilex_clk_init);
479