Lines Matching +full:dclk +full:- +full:div
1 // SPDX-License-Identifier: GPL-2.0
8 #include <clk-uclass.h>
10 #include <dt-structs.h>
20 #include <dt-bindings/clock/rk3399-cru.h>
41 ((input_rate) / (output_rate) - 1);
42 #define DIV_TO_RATE(input_rate, div) ((input_rate) / ((div) + 1)) argument
234 CLK_SPI_PLL_SEL_MASK = ((1 < CLK_SPI_PLL_SEL_WIDTH) - 1),
238 CLK_SPI_PLL_DIV_CON_MASK = ((1 << CLK_SPI_PLL_DIV_CON_WIDTH) - 1),
293 * the div restructions of pll in integer mode, these are defined in
306 * FOUTVCO = Fractional PLL non-divided output frequency
314 static void rkclk_set_pll(u32 *pll_con, const struct pll_div *div) in rkclk_set_pll() argument
317 u32 vco_khz = OSC_HZ / 1000 * div->fbdiv / div->refdiv; in rkclk_set_pll()
318 u32 output_khz = vco_khz / div->postdiv1 / div->postdiv2; in rkclk_set_pll()
322 pll_con, div->fbdiv, div->refdiv, div->postdiv1, in rkclk_set_pll()
323 div->postdiv2, vco_khz, output_khz); in rkclk_set_pll()
326 div->fbdiv >= PLL_DIV_MIN && div->fbdiv <= PLL_DIV_MAX); in rkclk_set_pll()
340 div->fbdiv << PLL_FBDIV_SHIFT); in rkclk_set_pll()
344 (div->postdiv2 << PLL_POSTDIV2_SHIFT) | in rkclk_set_pll()
345 (div->postdiv1 << PLL_POSTDIV1_SHIFT) | in rkclk_set_pll()
346 (div->refdiv << PLL_REFDIV_SHIFT)); in rkclk_set_pll()
357 static int pll_para_config(u32 freq_hz, struct pll_div *div) in pll_para_config() argument
370 return -1; in pll_para_config()
385 return -1; in pll_para_config()
388 div->postdiv1 = postdiv1; in pll_para_config()
389 div->postdiv2 = postdiv2; in pll_para_config()
398 diff_khz = vco_khz - fbdiv * fref_khz; in pll_para_config()
401 diff_khz = fref_khz - diff_khz; in pll_para_config()
408 div->refdiv = refdiv; in pll_para_config()
409 div->fbdiv = fbdiv; in pll_para_config()
416 return -1; in pll_para_config()
429 rkclk_set_pll(&cru->apll_l_con[0], apll_l_cfgs[apll_l_freq]); in rk3399_configure_cpu_l()
431 aclkm_div = LPLL_HZ / ACLKM_CORE_L_HZ - 1; in rk3399_configure_cpu_l()
435 pclk_dbg_div = LPLL_HZ / PCLK_DBG_L_HZ - 1; in rk3399_configure_cpu_l()
439 atclk_div = LPLL_HZ / ATCLK_CORE_L_HZ - 1; in rk3399_configure_cpu_l()
443 rk_clrsetreg(&cru->clksel_con[0], in rk3399_configure_cpu_l()
450 rk_clrsetreg(&cru->clksel_con[1], in rk3399_configure_cpu_l()
464 rkclk_set_pll(&cru->apll_b_con[0], apll_b_cfgs[apll_b_freq]); in rk3399_configure_cpu_b()
466 aclkm_div = BPLL_HZ / ACLKM_CORE_B_HZ - 1; in rk3399_configure_cpu_b()
470 pclk_dbg_div = BPLL_HZ / PCLK_DBG_B_HZ - 1; in rk3399_configure_cpu_b()
474 atclk_div = BPLL_HZ / ATCLK_CORE_B_HZ - 1; in rk3399_configure_cpu_b()
478 rk_clrsetreg(&cru->clksel_con[2], in rk3399_configure_cpu_b()
485 rk_clrsetreg(&cru->clksel_con[3], in rk3399_configure_cpu_b()
498 ((clk_div - 1) << \
512 ((clk_div - 1) << \
517 u32 div, con; in rk3399_i2c_get_clk() local
521 con = readl(&cru->clksel_con[61]); in rk3399_i2c_get_clk()
522 div = I2C_CLK_DIV_VALUE(con, 1); in rk3399_i2c_get_clk()
525 con = readl(&cru->clksel_con[62]); in rk3399_i2c_get_clk()
526 div = I2C_CLK_DIV_VALUE(con, 2); in rk3399_i2c_get_clk()
529 con = readl(&cru->clksel_con[63]); in rk3399_i2c_get_clk()
530 div = I2C_CLK_DIV_VALUE(con, 3); in rk3399_i2c_get_clk()
533 con = readl(&cru->clksel_con[61]); in rk3399_i2c_get_clk()
534 div = I2C_CLK_DIV_VALUE(con, 5); in rk3399_i2c_get_clk()
537 con = readl(&cru->clksel_con[62]); in rk3399_i2c_get_clk()
538 div = I2C_CLK_DIV_VALUE(con, 6); in rk3399_i2c_get_clk()
541 con = readl(&cru->clksel_con[63]); in rk3399_i2c_get_clk()
542 div = I2C_CLK_DIV_VALUE(con, 7); in rk3399_i2c_get_clk()
546 return -EINVAL; in rk3399_i2c_get_clk()
549 return DIV_TO_RATE(GPLL_HZ, div); in rk3399_i2c_get_clk()
558 assert(src_clk_div - 1 < 127); in rk3399_i2c_set_clk()
562 rk_clrsetreg(&cru->clksel_con[61], I2C_CLK_REG_MASK(1), in rk3399_i2c_set_clk()
566 rk_clrsetreg(&cru->clksel_con[62], I2C_CLK_REG_MASK(2), in rk3399_i2c_set_clk()
570 rk_clrsetreg(&cru->clksel_con[63], I2C_CLK_REG_MASK(3), in rk3399_i2c_set_clk()
574 rk_clrsetreg(&cru->clksel_con[61], I2C_CLK_REG_MASK(5), in rk3399_i2c_set_clk()
578 rk_clrsetreg(&cru->clksel_con[62], I2C_CLK_REG_MASK(6), in rk3399_i2c_set_clk()
582 rk_clrsetreg(&cru->clksel_con[63], I2C_CLK_REG_MASK(7), in rk3399_i2c_set_clk()
587 return -EINVAL; in rk3399_i2c_set_clk()
594 * RK3399 SPI clocks have a common divider-width (7 bits) and a single bit
595 * to select either CPLL or GPLL as the clock-parent. The location within
632 u32 div, val; in rk3399_spi_get_clk() local
636 spiclk = &spi_clkregs[clk_id - SCLK_SPI0]; in rk3399_spi_get_clk()
640 pr_err("%s: SPI clk-id %ld not supported\n", __func__, clk_id); in rk3399_spi_get_clk()
641 return -EINVAL; in rk3399_spi_get_clk()
644 val = readl(&cru->clksel_con[spiclk->reg]); in rk3399_spi_get_clk()
645 div = bitfield_extract(val, spiclk->div_shift, in rk3399_spi_get_clk()
648 return DIV_TO_RATE(GPLL_HZ, div); in rk3399_spi_get_clk()
656 src_clk_div = DIV_ROUND_UP(GPLL_HZ, hz) - 1; in rk3399_spi_set_clk()
661 spiclk = &spi_clkregs[clk_id - SCLK_SPI0]; in rk3399_spi_set_clk()
665 pr_err("%s: SPI clk-id %ld not supported\n", __func__, clk_id); in rk3399_spi_set_clk()
666 return -EINVAL; in rk3399_spi_set_clk()
669 rk_clrsetreg(&cru->clksel_con[spiclk->reg], in rk3399_spi_set_clk()
670 ((CLK_SPI_PLL_DIV_CON_MASK << spiclk->div_shift) | in rk3399_spi_set_clk()
671 (CLK_SPI_PLL_SEL_GPLL << spiclk->sel_shift)), in rk3399_spi_set_clk()
672 ((src_clk_div << spiclk->div_shift) | in rk3399_spi_set_clk()
673 (CLK_SPI_PLL_SEL_GPLL << spiclk->sel_shift))); in rk3399_spi_set_clk()
683 u32 div; in rk3399_vop_set_clk() local
687 aclkreg_addr = &cru->clksel_con[47]; in rk3399_vop_set_clk()
688 dclkreg_addr = &cru->clksel_con[49]; in rk3399_vop_set_clk()
691 aclkreg_addr = &cru->clksel_con[48]; in rk3399_vop_set_clk()
692 dclkreg_addr = &cru->clksel_con[50]; in rk3399_vop_set_clk()
695 return -EINVAL; in rk3399_vop_set_clk()
698 div = CPLL_HZ / aclk_vop; in rk3399_vop_set_clk()
699 assert(div - 1 < 32); in rk3399_vop_set_clk()
704 (div - 1) << ACLK_VOP_DIV_CON_SHIFT); in rk3399_vop_set_clk()
706 /* vop dclk source from vpll, and equals to vpll(means div == 1) */ in rk3399_vop_set_clk()
708 return -1; in rk3399_vop_set_clk()
710 rkclk_set_pll(&cru->vpll_con[0], &vpll_config); in rk3399_vop_set_clk()
717 (1 - 1) << DCLK_VOP_DIV_CON_SHIFT); in rk3399_vop_set_clk()
724 u32 div, con; in rk3399_mmc_get_clk() local
729 con = readl(&cru->clksel_con[16]); in rk3399_mmc_get_clk()
730 /* dwmmc controller have internal div 2 */ in rk3399_mmc_get_clk()
731 div = 2; in rk3399_mmc_get_clk()
734 con = readl(&cru->clksel_con[21]); in rk3399_mmc_get_clk()
735 div = 1; in rk3399_mmc_get_clk()
738 return -EINVAL; in rk3399_mmc_get_clk()
741 div *= (con & CLK_EMMC_DIV_CON_MASK) >> CLK_EMMC_DIV_CON_SHIFT; in rk3399_mmc_get_clk()
744 return DIV_TO_RATE(OSC_HZ, div); in rk3399_mmc_get_clk()
746 return DIV_TO_RATE(GPLL_HZ, div); in rk3399_mmc_get_clk()
759 /* mmc clock defaulg div 2 internal, provide double in cru */ in rk3399_mmc_set_clk()
765 assert(src_clk_div - 1 < 128); in rk3399_mmc_set_clk()
766 rk_clrsetreg(&cru->clksel_con[16], in rk3399_mmc_set_clk()
769 (src_clk_div - 1) << CLK_EMMC_DIV_CON_SHIFT); in rk3399_mmc_set_clk()
771 rk_clrsetreg(&cru->clksel_con[16], in rk3399_mmc_set_clk()
774 (src_clk_div - 1) << CLK_EMMC_DIV_CON_SHIFT); in rk3399_mmc_set_clk()
780 assert(src_clk_div - 1 < 32); in rk3399_mmc_set_clk()
782 rk_clrsetreg(&cru->clksel_con[21], in rk3399_mmc_set_clk()
785 (src_clk_div - 1) << ACLK_EMMC_DIV_CON_SHIFT); in rk3399_mmc_set_clk()
789 assert(src_clk_div - 1 < 128); in rk3399_mmc_set_clk()
791 rk_clrsetreg(&cru->clksel_con[22], in rk3399_mmc_set_clk()
794 (src_clk_div - 1) << CLK_EMMC_DIV_CON_SHIFT); in rk3399_mmc_set_clk()
797 return -EINVAL; in rk3399_mmc_set_clk()
810 if (readl(&cru->clksel_con[19]) & BIT(4)) { in rk3399_gmac_set_clk()
860 rkclk_set_pll(&cru->dpll_con[0], &dpll_cfg); in rk3399_ddr_set_clk()
867 u32 div, val; in rk3399_saradc_get_clk() local
869 val = readl(&cru->clksel_con[26]); in rk3399_saradc_get_clk()
870 div = bitfield_extract(val, CLK_SARADC_DIV_CON_SHIFT, in rk3399_saradc_get_clk()
873 return DIV_TO_RATE(OSC_HZ, div); in rk3399_saradc_get_clk()
880 src_clk_div = DIV_ROUND_UP(OSC_HZ, hz) - 1; in rk3399_saradc_set_clk()
883 rk_clrsetreg(&cru->clksel_con[26], in rk3399_saradc_set_clk()
892 struct rk3399_clk_priv *priv = dev_get_priv(clk->dev); in rk3399_clk_get_rate()
895 switch (clk->id) { in rk3399_clk_get_rate()
901 rate = rk3399_mmc_get_clk(priv->cru, clk->id); in rk3399_clk_get_rate()
909 rate = rk3399_i2c_get_clk(priv->cru, clk->id); in rk3399_clk_get_rate()
912 rate = rk3399_spi_get_clk(priv->cru, clk->id); in rk3399_clk_get_rate()
926 rate = rk3399_saradc_get_clk(priv->cru); in rk3399_clk_get_rate()
934 log_debug("Unknown clock %lu\n", clk->id); in rk3399_clk_get_rate()
935 return -ENOENT; in rk3399_clk_get_rate()
943 struct rk3399_clk_priv *priv = dev_get_priv(clk->dev); in rk3399_clk_set_rate()
946 switch (clk->id) { in rk3399_clk_set_rate()
970 ret = rk3399_mmc_set_clk(priv->cru, clk->id, rate); in rk3399_clk_set_rate()
973 ret = rk3399_gmac_set_clk(priv->cru, rate); in rk3399_clk_set_rate()
981 ret = rk3399_i2c_set_clk(priv->cru, clk->id, rate); in rk3399_clk_set_rate()
984 ret = rk3399_spi_set_clk(priv->cru, clk->id, rate); in rk3399_clk_set_rate()
992 ret = rk3399_vop_set_clk(priv->cru, clk->id, rate); in rk3399_clk_set_rate()
995 ret = rk3399_ddr_set_clk(priv->cru, rate); in rk3399_clk_set_rate()
1000 ret = rk3399_saradc_set_clk(priv->cru, rate); in rk3399_clk_set_rate()
1008 log_debug("Unknown clock %lu\n", clk->id); in rk3399_clk_set_rate()
1009 return -ENOENT; in rk3399_clk_set_rate()
1017 struct rk3399_clk_priv *priv = dev_get_priv(clk->dev); in rk3399_gmac_set_parent()
1022 * If the requested parent is in the same clock-controller and in rk3399_gmac_set_parent()
1025 if ((parent->dev == clk->dev) && (parent->id == SCLK_MAC)) { in rk3399_gmac_set_parent()
1027 rk_clrreg(&priv->cru->clksel_con[19], BIT(4)); in rk3399_gmac_set_parent()
1032 * Otherwise, we need to check the clock-output-names of the in rk3399_gmac_set_parent()
1035 ret = dev_read_string_index(parent->dev, "clock-output-names", in rk3399_gmac_set_parent()
1036 parent->id, &clock_output_name); in rk3399_gmac_set_parent()
1038 return -ENODATA; in rk3399_gmac_set_parent()
1043 rk_setreg(&priv->cru->clksel_con[19], BIT(4)); in rk3399_gmac_set_parent()
1047 return -EINVAL; in rk3399_gmac_set_parent()
1052 switch (clk->id) { in rk3399_clk_set_parent()
1057 debug("%s: unsupported clk %ld\n", __func__, clk->id); in rk3399_clk_set_parent()
1058 return -ENOENT; in rk3399_clk_set_parent()
1063 switch (clk->id) { in rk3399_clk_enable()
1081 debug("%s: unsupported clk %ld\n", __func__, clk->id); in rk3399_clk_enable()
1082 return -ENOENT; in rk3399_clk_enable()
1108 rk_clrsetreg(&cru->clksel_con[12], 0xffff, 0x4101); in rkclk_init()
1109 rk_clrsetreg(&cru->clksel_con[19], 0xffff, 0x033f); in rkclk_init()
1110 rk_clrsetreg(&cru->clksel_con[56], 0x0003, 0x0003); in rkclk_init()
1113 rkclk_set_pll(&cru->gpll_con[0], &gpll_init_cfg); in rkclk_init()
1114 rkclk_set_pll(&cru->cpll_con[0], &cpll_init_cfg); in rkclk_init()
1117 aclk_div = GPLL_HZ / PERIHP_ACLK_HZ - 1; in rkclk_init()
1120 hclk_div = PERIHP_ACLK_HZ / PERIHP_HCLK_HZ - 1; in rkclk_init()
1124 pclk_div = PERIHP_ACLK_HZ / PERIHP_PCLK_HZ - 1; in rkclk_init()
1128 rk_clrsetreg(&cru->clksel_con[14], in rkclk_init()
1137 aclk_div = GPLL_HZ / PERILP0_ACLK_HZ - 1; in rkclk_init()
1140 hclk_div = PERILP0_ACLK_HZ / PERILP0_HCLK_HZ - 1; in rkclk_init()
1144 pclk_div = PERILP0_ACLK_HZ / PERILP0_PCLK_HZ - 1; in rkclk_init()
1148 rk_clrsetreg(&cru->clksel_con[23], in rkclk_init()
1157 hclk_div = GPLL_HZ / PERILP1_HCLK_HZ - 1; in rkclk_init()
1161 pclk_div = PERILP1_HCLK_HZ / PERILP1_HCLK_HZ - 1; in rkclk_init()
1165 rk_clrsetreg(&cru->clksel_con[25], in rkclk_init()
1182 priv->cru = map_sysmem(plat->dtd.reg[0], plat->dtd.reg[1]); in rk3399_clk_probe()
1184 rkclk_init(priv->cru); in rk3399_clk_probe()
1194 priv->cru = dev_read_addr_ptr(dev); in rk3399_clk_ofdata_to_platdata()
1212 priv->glb_srst_fst_value = offsetof(struct rk3399_cru, in rk3399_clk_bind()
1214 priv->glb_srst_snd_value = offsetof(struct rk3399_cru, in rk3399_clk_bind()
1216 sys_child->priv = priv; in rk3399_clk_bind()
1230 { .compatible = "rockchip,rk3399-cru" },
1250 u32 div, con; in rk3399_i2c_get_pmuclk() local
1254 con = readl(&pmucru->pmucru_clksel[2]); in rk3399_i2c_get_pmuclk()
1255 div = I2C_CLK_DIV_VALUE(con, 0); in rk3399_i2c_get_pmuclk()
1258 con = readl(&pmucru->pmucru_clksel[3]); in rk3399_i2c_get_pmuclk()
1259 div = I2C_CLK_DIV_VALUE(con, 4); in rk3399_i2c_get_pmuclk()
1262 con = readl(&pmucru->pmucru_clksel[2]); in rk3399_i2c_get_pmuclk()
1263 div = I2C_CLK_DIV_VALUE(con, 8); in rk3399_i2c_get_pmuclk()
1267 return -EINVAL; in rk3399_i2c_get_pmuclk()
1270 return DIV_TO_RATE(PPLL_HZ, div); in rk3399_i2c_get_pmuclk()
1279 assert(src_clk_div - 1 < 127); in rk3399_i2c_set_pmuclk()
1283 rk_clrsetreg(&pmucru->pmucru_clksel[2], I2C_PMUCLK_REG_MASK(0), in rk3399_i2c_set_pmuclk()
1287 rk_clrsetreg(&pmucru->pmucru_clksel[3], I2C_PMUCLK_REG_MASK(4), in rk3399_i2c_set_pmuclk()
1291 rk_clrsetreg(&pmucru->pmucru_clksel[2], I2C_PMUCLK_REG_MASK(8), in rk3399_i2c_set_pmuclk()
1296 return -EINVAL; in rk3399_i2c_set_pmuclk()
1304 u32 div, con; in rk3399_pwm_get_clk() local
1307 con = readl(&pmucru->pmucru_clksel[0]); in rk3399_pwm_get_clk()
1308 div = con & PMU_PCLK_DIV_CON_MASK; in rk3399_pwm_get_clk()
1310 return DIV_TO_RATE(PPLL_HZ, div); in rk3399_pwm_get_clk()
1315 struct rk3399_pmuclk_priv *priv = dev_get_priv(clk->dev); in rk3399_pmuclk_get_rate()
1318 switch (clk->id) { in rk3399_pmuclk_get_rate()
1322 rate = rk3399_pwm_get_clk(priv->pmucru); in rk3399_pmuclk_get_rate()
1327 rate = rk3399_i2c_get_pmuclk(priv->pmucru, clk->id); in rk3399_pmuclk_get_rate()
1330 return -ENOENT; in rk3399_pmuclk_get_rate()
1338 struct rk3399_pmuclk_priv *priv = dev_get_priv(clk->dev); in rk3399_pmuclk_set_rate()
1341 switch (clk->id) { in rk3399_pmuclk_set_rate()
1346 * device-tree has this in an 'assigned-clocks' list. in rk3399_pmuclk_set_rate()
1352 ret = rk3399_i2c_set_pmuclk(priv->pmucru, clk->id, rate); in rk3399_pmuclk_set_rate()
1355 return -ENOENT; in rk3399_pmuclk_set_rate()
1372 rkclk_set_pll(&pmucru->ppll_con[0], &ppll_init_cfg); in pmuclk_init()
1375 pclk_div = PPLL_HZ / PMU_PCLK_HZ - 1; in pmuclk_init()
1376 rk_clrsetreg(&pmucru->pmucru_clksel[0], in pmuclk_init()
1391 priv->pmucru = map_sysmem(plat->dtd.reg[0], plat->dtd.reg[1]); in rk3399_pmuclk_probe()
1395 pmuclk_init(priv->pmucru); in rk3399_pmuclk_probe()
1405 priv->pmucru = dev_read_addr_ptr(dev); in rk3399_pmuclk_ofdata_to_platdata()
1424 { .compatible = "rockchip,rk3399-pmucru" },