123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966 |
- /*
- * Copyright (c) 2014 MundoReader S.L.
- * Author: Heiko Stuebner <heiko@sntech.de>
- *
- * Copyright (c) 2015 Rockchip Electronics Co. Ltd.
- * Author: Xing Zheng <zhengxing@rock-chips.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
- #include <asm/div64.h>
- #include <linux/slab.h>
- #include <linux/io.h>
- #include <linux/delay.h>
- #include <linux/clk-provider.h>
- #include <linux/regmap.h>
- #include <linux/clk.h>
- #include "clk.h"
- #define PLL_MODE_MASK 0x3
- #define PLL_MODE_SLOW 0x0
- #define PLL_MODE_NORM 0x1
- #define PLL_MODE_DEEP 0x2
- struct rockchip_clk_pll {
- struct clk_hw hw;
- struct clk_mux pll_mux;
- const struct clk_ops *pll_mux_ops;
- struct notifier_block clk_nb;
- void __iomem *reg_base;
- int lock_offset;
- unsigned int lock_shift;
- enum rockchip_pll_type type;
- u8 flags;
- const struct rockchip_pll_rate_table *rate_table;
- unsigned int rate_count;
- spinlock_t *lock;
- struct rockchip_clk_provider *ctx;
- };
- #define to_rockchip_clk_pll(_hw) container_of(_hw, struct rockchip_clk_pll, hw)
- #define to_rockchip_clk_pll_nb(nb) \
- container_of(nb, struct rockchip_clk_pll, clk_nb)
- static const struct rockchip_pll_rate_table *rockchip_get_pll_settings(
- struct rockchip_clk_pll *pll, unsigned long rate)
- {
- const struct rockchip_pll_rate_table *rate_table = pll->rate_table;
- int i;
- for (i = 0; i < pll->rate_count; i++) {
- if (rate == rate_table[i].rate)
- return &rate_table[i];
- }
- return NULL;
- }
- static long rockchip_pll_round_rate(struct clk_hw *hw,
- unsigned long drate, unsigned long *prate)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- const struct rockchip_pll_rate_table *rate_table = pll->rate_table;
- int i;
- /* Assumming rate_table is in descending order */
- for (i = 0; i < pll->rate_count; i++) {
- if (drate >= rate_table[i].rate)
- return rate_table[i].rate;
- }
- /* return minimum supported value */
- return rate_table[i - 1].rate;
- }
- /*
- * Wait for the pll to reach the locked state.
- * The calling set_rate function is responsible for making sure the
- * grf regmap is available.
- */
- static int rockchip_pll_wait_lock(struct rockchip_clk_pll *pll)
- {
- struct regmap *grf = pll->ctx->grf;
- unsigned int val;
- int delay = 24000000, ret;
- while (delay > 0) {
- ret = regmap_read(grf, pll->lock_offset, &val);
- if (ret) {
- pr_err("%s: failed to read pll lock status: %d\n",
- __func__, ret);
- return ret;
- }
- if (val & BIT(pll->lock_shift))
- return 0;
- delay--;
- }
- pr_err("%s: timeout waiting for pll to lock\n", __func__);
- return -ETIMEDOUT;
- }
- /**
- * PLL used in RK3036
- */
- #define RK3036_PLLCON(i) (i * 0x4)
- #define RK3036_PLLCON0_FBDIV_MASK 0xfff
- #define RK3036_PLLCON0_FBDIV_SHIFT 0
- #define RK3036_PLLCON0_POSTDIV1_MASK 0x7
- #define RK3036_PLLCON0_POSTDIV1_SHIFT 12
- #define RK3036_PLLCON1_REFDIV_MASK 0x3f
- #define RK3036_PLLCON1_REFDIV_SHIFT 0
- #define RK3036_PLLCON1_POSTDIV2_MASK 0x7
- #define RK3036_PLLCON1_POSTDIV2_SHIFT 6
- #define RK3036_PLLCON1_DSMPD_MASK 0x1
- #define RK3036_PLLCON1_DSMPD_SHIFT 12
- #define RK3036_PLLCON2_FRAC_MASK 0xffffff
- #define RK3036_PLLCON2_FRAC_SHIFT 0
- #define RK3036_PLLCON1_PWRDOWN (1 << 13)
- static void rockchip_rk3036_pll_get_params(struct rockchip_clk_pll *pll,
- struct rockchip_pll_rate_table *rate)
- {
- u32 pllcon;
- pllcon = readl_relaxed(pll->reg_base + RK3036_PLLCON(0));
- rate->fbdiv = ((pllcon >> RK3036_PLLCON0_FBDIV_SHIFT)
- & RK3036_PLLCON0_FBDIV_MASK);
- rate->postdiv1 = ((pllcon >> RK3036_PLLCON0_POSTDIV1_SHIFT)
- & RK3036_PLLCON0_POSTDIV1_MASK);
- pllcon = readl_relaxed(pll->reg_base + RK3036_PLLCON(1));
- rate->refdiv = ((pllcon >> RK3036_PLLCON1_REFDIV_SHIFT)
- & RK3036_PLLCON1_REFDIV_MASK);
- rate->postdiv2 = ((pllcon >> RK3036_PLLCON1_POSTDIV2_SHIFT)
- & RK3036_PLLCON1_POSTDIV2_MASK);
- rate->dsmpd = ((pllcon >> RK3036_PLLCON1_DSMPD_SHIFT)
- & RK3036_PLLCON1_DSMPD_MASK);
- pllcon = readl_relaxed(pll->reg_base + RK3036_PLLCON(2));
- rate->frac = ((pllcon >> RK3036_PLLCON2_FRAC_SHIFT)
- & RK3036_PLLCON2_FRAC_MASK);
- }
- static unsigned long rockchip_rk3036_pll_recalc_rate(struct clk_hw *hw,
- unsigned long prate)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- struct rockchip_pll_rate_table cur;
- u64 rate64 = prate;
- rockchip_rk3036_pll_get_params(pll, &cur);
- rate64 *= cur.fbdiv;
- do_div(rate64, cur.refdiv);
- if (cur.dsmpd == 0) {
- /* fractional mode */
- u64 frac_rate64 = prate * cur.frac;
- do_div(frac_rate64, cur.refdiv);
- rate64 += frac_rate64 >> 24;
- }
- do_div(rate64, cur.postdiv1);
- do_div(rate64, cur.postdiv2);
- return (unsigned long)rate64;
- }
- static int rockchip_rk3036_pll_set_params(struct rockchip_clk_pll *pll,
- const struct rockchip_pll_rate_table *rate)
- {
- const struct clk_ops *pll_mux_ops = pll->pll_mux_ops;
- struct clk_mux *pll_mux = &pll->pll_mux;
- struct rockchip_pll_rate_table cur;
- u32 pllcon;
- int rate_change_remuxed = 0;
- int cur_parent;
- int ret;
- pr_debug("%s: rate settings for %lu fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
- __func__, rate->rate, rate->fbdiv, rate->postdiv1, rate->refdiv,
- rate->postdiv2, rate->dsmpd, rate->frac);
- rockchip_rk3036_pll_get_params(pll, &cur);
- cur.rate = 0;
- cur_parent = pll_mux_ops->get_parent(&pll_mux->hw);
- if (cur_parent == PLL_MODE_NORM) {
- pll_mux_ops->set_parent(&pll_mux->hw, PLL_MODE_SLOW);
- rate_change_remuxed = 1;
- }
- /* update pll values */
- writel_relaxed(HIWORD_UPDATE(rate->fbdiv, RK3036_PLLCON0_FBDIV_MASK,
- RK3036_PLLCON0_FBDIV_SHIFT) |
- HIWORD_UPDATE(rate->postdiv1, RK3036_PLLCON0_POSTDIV1_MASK,
- RK3036_PLLCON0_POSTDIV1_SHIFT),
- pll->reg_base + RK3036_PLLCON(0));
- writel_relaxed(HIWORD_UPDATE(rate->refdiv, RK3036_PLLCON1_REFDIV_MASK,
- RK3036_PLLCON1_REFDIV_SHIFT) |
- HIWORD_UPDATE(rate->postdiv2, RK3036_PLLCON1_POSTDIV2_MASK,
- RK3036_PLLCON1_POSTDIV2_SHIFT) |
- HIWORD_UPDATE(rate->dsmpd, RK3036_PLLCON1_DSMPD_MASK,
- RK3036_PLLCON1_DSMPD_SHIFT),
- pll->reg_base + RK3036_PLLCON(1));
- /* GPLL CON2 is not HIWORD_MASK */
- pllcon = readl_relaxed(pll->reg_base + RK3036_PLLCON(2));
- pllcon &= ~(RK3036_PLLCON2_FRAC_MASK << RK3036_PLLCON2_FRAC_SHIFT);
- pllcon |= rate->frac << RK3036_PLLCON2_FRAC_SHIFT;
- writel_relaxed(pllcon, pll->reg_base + RK3036_PLLCON(2));
- /* wait for the pll to lock */
- ret = rockchip_pll_wait_lock(pll);
- if (ret) {
- pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
- __func__);
- rockchip_rk3036_pll_set_params(pll, &cur);
- }
- if (rate_change_remuxed)
- pll_mux_ops->set_parent(&pll_mux->hw, PLL_MODE_NORM);
- return ret;
- }
- static int rockchip_rk3036_pll_set_rate(struct clk_hw *hw, unsigned long drate,
- unsigned long prate)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- const struct rockchip_pll_rate_table *rate;
- pr_debug("%s: changing %s to %lu with a parent rate of %lu\n",
- __func__, __clk_get_name(hw->clk), drate, prate);
- /* Get required rate settings from table */
- rate = rockchip_get_pll_settings(pll, drate);
- if (!rate) {
- pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__,
- drate, __clk_get_name(hw->clk));
- return -EINVAL;
- }
- return rockchip_rk3036_pll_set_params(pll, rate);
- }
- static int rockchip_rk3036_pll_enable(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- writel(HIWORD_UPDATE(0, RK3036_PLLCON1_PWRDOWN, 0),
- pll->reg_base + RK3036_PLLCON(1));
- return 0;
- }
- static void rockchip_rk3036_pll_disable(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- writel(HIWORD_UPDATE(RK3036_PLLCON1_PWRDOWN,
- RK3036_PLLCON1_PWRDOWN, 0),
- pll->reg_base + RK3036_PLLCON(1));
- }
- static int rockchip_rk3036_pll_is_enabled(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- u32 pllcon = readl(pll->reg_base + RK3036_PLLCON(1));
- return !(pllcon & RK3036_PLLCON1_PWRDOWN);
- }
- static void rockchip_rk3036_pll_init(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- const struct rockchip_pll_rate_table *rate;
- struct rockchip_pll_rate_table cur;
- unsigned long drate;
- if (!(pll->flags & ROCKCHIP_PLL_SYNC_RATE))
- return;
- drate = clk_hw_get_rate(hw);
- rate = rockchip_get_pll_settings(pll, drate);
- /* when no rate setting for the current rate, rely on clk_set_rate */
- if (!rate)
- return;
- rockchip_rk3036_pll_get_params(pll, &cur);
- pr_debug("%s: pll %s@%lu: Hz\n", __func__, __clk_get_name(hw->clk),
- drate);
- pr_debug("old - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
- cur.fbdiv, cur.postdiv1, cur.refdiv, cur.postdiv2,
- cur.dsmpd, cur.frac);
- pr_debug("new - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
- rate->fbdiv, rate->postdiv1, rate->refdiv, rate->postdiv2,
- rate->dsmpd, rate->frac);
- if (rate->fbdiv != cur.fbdiv || rate->postdiv1 != cur.postdiv1 ||
- rate->refdiv != cur.refdiv || rate->postdiv2 != cur.postdiv2 ||
- rate->dsmpd != cur.dsmpd || rate->frac != cur.frac) {
- struct clk *parent = clk_get_parent(hw->clk);
- if (!parent) {
- pr_warn("%s: parent of %s not available\n",
- __func__, __clk_get_name(hw->clk));
- return;
- }
- pr_debug("%s: pll %s: rate params do not match rate table, adjusting\n",
- __func__, __clk_get_name(hw->clk));
- rockchip_rk3036_pll_set_params(pll, rate);
- }
- }
- static const struct clk_ops rockchip_rk3036_pll_clk_norate_ops = {
- .recalc_rate = rockchip_rk3036_pll_recalc_rate,
- .enable = rockchip_rk3036_pll_enable,
- .disable = rockchip_rk3036_pll_disable,
- .is_enabled = rockchip_rk3036_pll_is_enabled,
- };
- static const struct clk_ops rockchip_rk3036_pll_clk_ops = {
- .recalc_rate = rockchip_rk3036_pll_recalc_rate,
- .round_rate = rockchip_pll_round_rate,
- .set_rate = rockchip_rk3036_pll_set_rate,
- .enable = rockchip_rk3036_pll_enable,
- .disable = rockchip_rk3036_pll_disable,
- .is_enabled = rockchip_rk3036_pll_is_enabled,
- .init = rockchip_rk3036_pll_init,
- };
- /**
- * PLL used in RK3066, RK3188 and RK3288
- */
- #define RK3066_PLL_RESET_DELAY(nr) ((nr * 500) / 24 + 1)
- #define RK3066_PLLCON(i) (i * 0x4)
- #define RK3066_PLLCON0_OD_MASK 0xf
- #define RK3066_PLLCON0_OD_SHIFT 0
- #define RK3066_PLLCON0_NR_MASK 0x3f
- #define RK3066_PLLCON0_NR_SHIFT 8
- #define RK3066_PLLCON1_NF_MASK 0x1fff
- #define RK3066_PLLCON1_NF_SHIFT 0
- #define RK3066_PLLCON2_NB_MASK 0xfff
- #define RK3066_PLLCON2_NB_SHIFT 0
- #define RK3066_PLLCON3_RESET (1 << 5)
- #define RK3066_PLLCON3_PWRDOWN (1 << 1)
- #define RK3066_PLLCON3_BYPASS (1 << 0)
- static void rockchip_rk3066_pll_get_params(struct rockchip_clk_pll *pll,
- struct rockchip_pll_rate_table *rate)
- {
- u32 pllcon;
- pllcon = readl_relaxed(pll->reg_base + RK3066_PLLCON(0));
- rate->nr = ((pllcon >> RK3066_PLLCON0_NR_SHIFT)
- & RK3066_PLLCON0_NR_MASK) + 1;
- rate->no = ((pllcon >> RK3066_PLLCON0_OD_SHIFT)
- & RK3066_PLLCON0_OD_MASK) + 1;
- pllcon = readl_relaxed(pll->reg_base + RK3066_PLLCON(1));
- rate->nf = ((pllcon >> RK3066_PLLCON1_NF_SHIFT)
- & RK3066_PLLCON1_NF_MASK) + 1;
- pllcon = readl_relaxed(pll->reg_base + RK3066_PLLCON(2));
- rate->nb = ((pllcon >> RK3066_PLLCON2_NB_SHIFT)
- & RK3066_PLLCON2_NB_MASK) + 1;
- }
- static unsigned long rockchip_rk3066_pll_recalc_rate(struct clk_hw *hw,
- unsigned long prate)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- struct rockchip_pll_rate_table cur;
- u64 rate64 = prate;
- u32 pllcon;
- pllcon = readl_relaxed(pll->reg_base + RK3066_PLLCON(3));
- if (pllcon & RK3066_PLLCON3_BYPASS) {
- pr_debug("%s: pll %s is bypassed\n", __func__,
- clk_hw_get_name(hw));
- return prate;
- }
- rockchip_rk3066_pll_get_params(pll, &cur);
- rate64 *= cur.nf;
- do_div(rate64, cur.nr);
- do_div(rate64, cur.no);
- return (unsigned long)rate64;
- }
- static int rockchip_rk3066_pll_set_params(struct rockchip_clk_pll *pll,
- const struct rockchip_pll_rate_table *rate)
- {
- const struct clk_ops *pll_mux_ops = pll->pll_mux_ops;
- struct clk_mux *pll_mux = &pll->pll_mux;
- struct rockchip_pll_rate_table cur;
- int rate_change_remuxed = 0;
- int cur_parent;
- int ret;
- pr_debug("%s: rate settings for %lu (nr, no, nf): (%d, %d, %d)\n",
- __func__, rate->rate, rate->nr, rate->no, rate->nf);
- rockchip_rk3066_pll_get_params(pll, &cur);
- cur.rate = 0;
- cur_parent = pll_mux_ops->get_parent(&pll_mux->hw);
- if (cur_parent == PLL_MODE_NORM) {
- pll_mux_ops->set_parent(&pll_mux->hw, PLL_MODE_SLOW);
- rate_change_remuxed = 1;
- }
- /* enter reset mode */
- writel(HIWORD_UPDATE(RK3066_PLLCON3_RESET, RK3066_PLLCON3_RESET, 0),
- pll->reg_base + RK3066_PLLCON(3));
- /* update pll values */
- writel(HIWORD_UPDATE(rate->nr - 1, RK3066_PLLCON0_NR_MASK,
- RK3066_PLLCON0_NR_SHIFT) |
- HIWORD_UPDATE(rate->no - 1, RK3066_PLLCON0_OD_MASK,
- RK3066_PLLCON0_OD_SHIFT),
- pll->reg_base + RK3066_PLLCON(0));
- writel_relaxed(HIWORD_UPDATE(rate->nf - 1, RK3066_PLLCON1_NF_MASK,
- RK3066_PLLCON1_NF_SHIFT),
- pll->reg_base + RK3066_PLLCON(1));
- writel_relaxed(HIWORD_UPDATE(rate->nb - 1, RK3066_PLLCON2_NB_MASK,
- RK3066_PLLCON2_NB_SHIFT),
- pll->reg_base + RK3066_PLLCON(2));
- /* leave reset and wait the reset_delay */
- writel(HIWORD_UPDATE(0, RK3066_PLLCON3_RESET, 0),
- pll->reg_base + RK3066_PLLCON(3));
- udelay(RK3066_PLL_RESET_DELAY(rate->nr));
- /* wait for the pll to lock */
- ret = rockchip_pll_wait_lock(pll);
- if (ret) {
- pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
- __func__);
- rockchip_rk3066_pll_set_params(pll, &cur);
- }
- if (rate_change_remuxed)
- pll_mux_ops->set_parent(&pll_mux->hw, PLL_MODE_NORM);
- return ret;
- }
- static int rockchip_rk3066_pll_set_rate(struct clk_hw *hw, unsigned long drate,
- unsigned long prate)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- const struct rockchip_pll_rate_table *rate;
- pr_debug("%s: changing %s to %lu with a parent rate of %lu\n",
- __func__, clk_hw_get_name(hw), drate, prate);
- /* Get required rate settings from table */
- rate = rockchip_get_pll_settings(pll, drate);
- if (!rate) {
- pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__,
- drate, clk_hw_get_name(hw));
- return -EINVAL;
- }
- return rockchip_rk3066_pll_set_params(pll, rate);
- }
- static int rockchip_rk3066_pll_enable(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- writel(HIWORD_UPDATE(0, RK3066_PLLCON3_PWRDOWN, 0),
- pll->reg_base + RK3066_PLLCON(3));
- return 0;
- }
- static void rockchip_rk3066_pll_disable(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- writel(HIWORD_UPDATE(RK3066_PLLCON3_PWRDOWN,
- RK3066_PLLCON3_PWRDOWN, 0),
- pll->reg_base + RK3066_PLLCON(3));
- }
- static int rockchip_rk3066_pll_is_enabled(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- u32 pllcon = readl(pll->reg_base + RK3066_PLLCON(3));
- return !(pllcon & RK3066_PLLCON3_PWRDOWN);
- }
- static void rockchip_rk3066_pll_init(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- const struct rockchip_pll_rate_table *rate;
- struct rockchip_pll_rate_table cur;
- unsigned long drate;
- if (!(pll->flags & ROCKCHIP_PLL_SYNC_RATE))
- return;
- drate = clk_hw_get_rate(hw);
- rate = rockchip_get_pll_settings(pll, drate);
- /* when no rate setting for the current rate, rely on clk_set_rate */
- if (!rate)
- return;
- rockchip_rk3066_pll_get_params(pll, &cur);
- pr_debug("%s: pll %s@%lu: nr (%d:%d); no (%d:%d); nf(%d:%d), nb(%d:%d)\n",
- __func__, clk_hw_get_name(hw), drate, rate->nr, cur.nr,
- rate->no, cur.no, rate->nf, cur.nf, rate->nb, cur.nb);
- if (rate->nr != cur.nr || rate->no != cur.no || rate->nf != cur.nf
- || rate->nb != cur.nb) {
- pr_debug("%s: pll %s: rate params do not match rate table, adjusting\n",
- __func__, clk_hw_get_name(hw));
- rockchip_rk3066_pll_set_params(pll, rate);
- }
- }
- static const struct clk_ops rockchip_rk3066_pll_clk_norate_ops = {
- .recalc_rate = rockchip_rk3066_pll_recalc_rate,
- .enable = rockchip_rk3066_pll_enable,
- .disable = rockchip_rk3066_pll_disable,
- .is_enabled = rockchip_rk3066_pll_is_enabled,
- };
- static const struct clk_ops rockchip_rk3066_pll_clk_ops = {
- .recalc_rate = rockchip_rk3066_pll_recalc_rate,
- .round_rate = rockchip_pll_round_rate,
- .set_rate = rockchip_rk3066_pll_set_rate,
- .enable = rockchip_rk3066_pll_enable,
- .disable = rockchip_rk3066_pll_disable,
- .is_enabled = rockchip_rk3066_pll_is_enabled,
- .init = rockchip_rk3066_pll_init,
- };
- /**
- * PLL used in RK3399
- */
- #define RK3399_PLLCON(i) (i * 0x4)
- #define RK3399_PLLCON0_FBDIV_MASK 0xfff
- #define RK3399_PLLCON0_FBDIV_SHIFT 0
- #define RK3399_PLLCON1_REFDIV_MASK 0x3f
- #define RK3399_PLLCON1_REFDIV_SHIFT 0
- #define RK3399_PLLCON1_POSTDIV1_MASK 0x7
- #define RK3399_PLLCON1_POSTDIV1_SHIFT 8
- #define RK3399_PLLCON1_POSTDIV2_MASK 0x7
- #define RK3399_PLLCON1_POSTDIV2_SHIFT 12
- #define RK3399_PLLCON2_FRAC_MASK 0xffffff
- #define RK3399_PLLCON2_FRAC_SHIFT 0
- #define RK3399_PLLCON2_LOCK_STATUS BIT(31)
- #define RK3399_PLLCON3_PWRDOWN BIT(0)
- #define RK3399_PLLCON3_DSMPD_MASK 0x1
- #define RK3399_PLLCON3_DSMPD_SHIFT 3
- static int rockchip_rk3399_pll_wait_lock(struct rockchip_clk_pll *pll)
- {
- u32 pllcon;
- int delay = 24000000;
- /* poll check the lock status in rk3399 xPLLCON2 */
- while (delay > 0) {
- pllcon = readl_relaxed(pll->reg_base + RK3399_PLLCON(2));
- if (pllcon & RK3399_PLLCON2_LOCK_STATUS)
- return 0;
- delay--;
- }
- pr_err("%s: timeout waiting for pll to lock\n", __func__);
- return -ETIMEDOUT;
- }
- static void rockchip_rk3399_pll_get_params(struct rockchip_clk_pll *pll,
- struct rockchip_pll_rate_table *rate)
- {
- u32 pllcon;
- pllcon = readl_relaxed(pll->reg_base + RK3399_PLLCON(0));
- rate->fbdiv = ((pllcon >> RK3399_PLLCON0_FBDIV_SHIFT)
- & RK3399_PLLCON0_FBDIV_MASK);
- pllcon = readl_relaxed(pll->reg_base + RK3399_PLLCON(1));
- rate->refdiv = ((pllcon >> RK3399_PLLCON1_REFDIV_SHIFT)
- & RK3399_PLLCON1_REFDIV_MASK);
- rate->postdiv1 = ((pllcon >> RK3399_PLLCON1_POSTDIV1_SHIFT)
- & RK3399_PLLCON1_POSTDIV1_MASK);
- rate->postdiv2 = ((pllcon >> RK3399_PLLCON1_POSTDIV2_SHIFT)
- & RK3399_PLLCON1_POSTDIV2_MASK);
- pllcon = readl_relaxed(pll->reg_base + RK3399_PLLCON(2));
- rate->frac = ((pllcon >> RK3399_PLLCON2_FRAC_SHIFT)
- & RK3399_PLLCON2_FRAC_MASK);
- pllcon = readl_relaxed(pll->reg_base + RK3399_PLLCON(3));
- rate->dsmpd = ((pllcon >> RK3399_PLLCON3_DSMPD_SHIFT)
- & RK3399_PLLCON3_DSMPD_MASK);
- }
- static unsigned long rockchip_rk3399_pll_recalc_rate(struct clk_hw *hw,
- unsigned long prate)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- struct rockchip_pll_rate_table cur;
- u64 rate64 = prate;
- rockchip_rk3399_pll_get_params(pll, &cur);
- rate64 *= cur.fbdiv;
- do_div(rate64, cur.refdiv);
- if (cur.dsmpd == 0) {
- /* fractional mode */
- u64 frac_rate64 = prate * cur.frac;
- do_div(frac_rate64, cur.refdiv);
- rate64 += frac_rate64 >> 24;
- }
- do_div(rate64, cur.postdiv1);
- do_div(rate64, cur.postdiv2);
- return (unsigned long)rate64;
- }
- static int rockchip_rk3399_pll_set_params(struct rockchip_clk_pll *pll,
- const struct rockchip_pll_rate_table *rate)
- {
- const struct clk_ops *pll_mux_ops = pll->pll_mux_ops;
- struct clk_mux *pll_mux = &pll->pll_mux;
- struct rockchip_pll_rate_table cur;
- u32 pllcon;
- int rate_change_remuxed = 0;
- int cur_parent;
- int ret;
- pr_debug("%s: rate settings for %lu fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
- __func__, rate->rate, rate->fbdiv, rate->postdiv1, rate->refdiv,
- rate->postdiv2, rate->dsmpd, rate->frac);
- rockchip_rk3399_pll_get_params(pll, &cur);
- cur.rate = 0;
- cur_parent = pll_mux_ops->get_parent(&pll_mux->hw);
- if (cur_parent == PLL_MODE_NORM) {
- pll_mux_ops->set_parent(&pll_mux->hw, PLL_MODE_SLOW);
- rate_change_remuxed = 1;
- }
- /* update pll values */
- writel_relaxed(HIWORD_UPDATE(rate->fbdiv, RK3399_PLLCON0_FBDIV_MASK,
- RK3399_PLLCON0_FBDIV_SHIFT),
- pll->reg_base + RK3399_PLLCON(0));
- writel_relaxed(HIWORD_UPDATE(rate->refdiv, RK3399_PLLCON1_REFDIV_MASK,
- RK3399_PLLCON1_REFDIV_SHIFT) |
- HIWORD_UPDATE(rate->postdiv1, RK3399_PLLCON1_POSTDIV1_MASK,
- RK3399_PLLCON1_POSTDIV1_SHIFT) |
- HIWORD_UPDATE(rate->postdiv2, RK3399_PLLCON1_POSTDIV2_MASK,
- RK3399_PLLCON1_POSTDIV2_SHIFT),
- pll->reg_base + RK3399_PLLCON(1));
- /* xPLL CON2 is not HIWORD_MASK */
- pllcon = readl_relaxed(pll->reg_base + RK3399_PLLCON(2));
- pllcon &= ~(RK3399_PLLCON2_FRAC_MASK << RK3399_PLLCON2_FRAC_SHIFT);
- pllcon |= rate->frac << RK3399_PLLCON2_FRAC_SHIFT;
- writel_relaxed(pllcon, pll->reg_base + RK3399_PLLCON(2));
- writel_relaxed(HIWORD_UPDATE(rate->dsmpd, RK3399_PLLCON3_DSMPD_MASK,
- RK3399_PLLCON3_DSMPD_SHIFT),
- pll->reg_base + RK3399_PLLCON(3));
- /* wait for the pll to lock */
- ret = rockchip_rk3399_pll_wait_lock(pll);
- if (ret) {
- pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
- __func__);
- rockchip_rk3399_pll_set_params(pll, &cur);
- }
- if (rate_change_remuxed)
- pll_mux_ops->set_parent(&pll_mux->hw, PLL_MODE_NORM);
- return ret;
- }
- static int rockchip_rk3399_pll_set_rate(struct clk_hw *hw, unsigned long drate,
- unsigned long prate)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- const struct rockchip_pll_rate_table *rate;
- pr_debug("%s: changing %s to %lu with a parent rate of %lu\n",
- __func__, __clk_get_name(hw->clk), drate, prate);
- /* Get required rate settings from table */
- rate = rockchip_get_pll_settings(pll, drate);
- if (!rate) {
- pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__,
- drate, __clk_get_name(hw->clk));
- return -EINVAL;
- }
- return rockchip_rk3399_pll_set_params(pll, rate);
- }
- static int rockchip_rk3399_pll_enable(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- writel(HIWORD_UPDATE(0, RK3399_PLLCON3_PWRDOWN, 0),
- pll->reg_base + RK3399_PLLCON(3));
- return 0;
- }
- static void rockchip_rk3399_pll_disable(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- writel(HIWORD_UPDATE(RK3399_PLLCON3_PWRDOWN,
- RK3399_PLLCON3_PWRDOWN, 0),
- pll->reg_base + RK3399_PLLCON(3));
- }
- static int rockchip_rk3399_pll_is_enabled(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- u32 pllcon = readl(pll->reg_base + RK3399_PLLCON(3));
- return !(pllcon & RK3399_PLLCON3_PWRDOWN);
- }
- static void rockchip_rk3399_pll_init(struct clk_hw *hw)
- {
- struct rockchip_clk_pll *pll = to_rockchip_clk_pll(hw);
- const struct rockchip_pll_rate_table *rate;
- struct rockchip_pll_rate_table cur;
- unsigned long drate;
- if (!(pll->flags & ROCKCHIP_PLL_SYNC_RATE))
- return;
- drate = clk_hw_get_rate(hw);
- rate = rockchip_get_pll_settings(pll, drate);
- /* when no rate setting for the current rate, rely on clk_set_rate */
- if (!rate)
- return;
- rockchip_rk3399_pll_get_params(pll, &cur);
- pr_debug("%s: pll %s@%lu: Hz\n", __func__, __clk_get_name(hw->clk),
- drate);
- pr_debug("old - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
- cur.fbdiv, cur.postdiv1, cur.refdiv, cur.postdiv2,
- cur.dsmpd, cur.frac);
- pr_debug("new - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
- rate->fbdiv, rate->postdiv1, rate->refdiv, rate->postdiv2,
- rate->dsmpd, rate->frac);
- if (rate->fbdiv != cur.fbdiv || rate->postdiv1 != cur.postdiv1 ||
- rate->refdiv != cur.refdiv || rate->postdiv2 != cur.postdiv2 ||
- rate->dsmpd != cur.dsmpd || rate->frac != cur.frac) {
- struct clk *parent = clk_get_parent(hw->clk);
- if (!parent) {
- pr_warn("%s: parent of %s not available\n",
- __func__, __clk_get_name(hw->clk));
- return;
- }
- pr_debug("%s: pll %s: rate params do not match rate table, adjusting\n",
- __func__, __clk_get_name(hw->clk));
- rockchip_rk3399_pll_set_params(pll, rate);
- }
- }
- static const struct clk_ops rockchip_rk3399_pll_clk_norate_ops = {
- .recalc_rate = rockchip_rk3399_pll_recalc_rate,
- .enable = rockchip_rk3399_pll_enable,
- .disable = rockchip_rk3399_pll_disable,
- .is_enabled = rockchip_rk3399_pll_is_enabled,
- };
- static const struct clk_ops rockchip_rk3399_pll_clk_ops = {
- .recalc_rate = rockchip_rk3399_pll_recalc_rate,
- .round_rate = rockchip_pll_round_rate,
- .set_rate = rockchip_rk3399_pll_set_rate,
- .enable = rockchip_rk3399_pll_enable,
- .disable = rockchip_rk3399_pll_disable,
- .is_enabled = rockchip_rk3399_pll_is_enabled,
- .init = rockchip_rk3399_pll_init,
- };
- /*
- * Common registering of pll clocks
- */
- struct clk *rockchip_clk_register_pll(struct rockchip_clk_provider *ctx,
- enum rockchip_pll_type pll_type,
- const char *name, const char *const *parent_names,
- u8 num_parents, int con_offset, int grf_lock_offset,
- int lock_shift, int mode_offset, int mode_shift,
- struct rockchip_pll_rate_table *rate_table,
- unsigned long flags, u8 clk_pll_flags)
- {
- const char *pll_parents[3];
- struct clk_init_data init;
- struct rockchip_clk_pll *pll;
- struct clk_mux *pll_mux;
- struct clk *pll_clk, *mux_clk;
- char pll_name[20];
- if (num_parents != 2) {
- pr_err("%s: needs two parent clocks\n", __func__);
- return ERR_PTR(-EINVAL);
- }
- /* name the actual pll */
- snprintf(pll_name, sizeof(pll_name), "pll_%s", name);
- pll = kzalloc(sizeof(*pll), GFP_KERNEL);
- if (!pll)
- return ERR_PTR(-ENOMEM);
- /* create the mux on top of the real pll */
- pll->pll_mux_ops = &clk_mux_ops;
- pll_mux = &pll->pll_mux;
- pll_mux->reg = ctx->reg_base + mode_offset;
- pll_mux->shift = mode_shift;
- pll_mux->mask = PLL_MODE_MASK;
- pll_mux->flags = 0;
- pll_mux->lock = &ctx->lock;
- pll_mux->hw.init = &init;
- if (pll_type == pll_rk3036 ||
- pll_type == pll_rk3066 ||
- pll_type == pll_rk3399)
- pll_mux->flags |= CLK_MUX_HIWORD_MASK;
- /* the actual muxing is xin24m, pll-output, xin32k */
- pll_parents[0] = parent_names[0];
- pll_parents[1] = pll_name;
- pll_parents[2] = parent_names[1];
- init.name = name;
- init.flags = CLK_SET_RATE_PARENT;
- init.ops = pll->pll_mux_ops;
- init.parent_names = pll_parents;
- init.num_parents = ARRAY_SIZE(pll_parents);
- mux_clk = clk_register(NULL, &pll_mux->hw);
- if (IS_ERR(mux_clk))
- goto err_mux;
- /* now create the actual pll */
- init.name = pll_name;
- /* keep all plls untouched for now */
- init.flags = flags | CLK_IGNORE_UNUSED;
- init.parent_names = &parent_names[0];
- init.num_parents = 1;
- if (rate_table) {
- int len;
- /* find count of rates in rate_table */
- for (len = 0; rate_table[len].rate != 0; )
- len++;
- pll->rate_count = len;
- pll->rate_table = kmemdup(rate_table,
- pll->rate_count *
- sizeof(struct rockchip_pll_rate_table),
- GFP_KERNEL);
- WARN(!pll->rate_table,
- "%s: could not allocate rate table for %s\n",
- __func__, name);
- }
- switch (pll_type) {
- case pll_rk3036:
- if (!pll->rate_table || IS_ERR(ctx->grf))
- init.ops = &rockchip_rk3036_pll_clk_norate_ops;
- else
- init.ops = &rockchip_rk3036_pll_clk_ops;
- break;
- case pll_rk3066:
- if (!pll->rate_table || IS_ERR(ctx->grf))
- init.ops = &rockchip_rk3066_pll_clk_norate_ops;
- else
- init.ops = &rockchip_rk3066_pll_clk_ops;
- break;
- case pll_rk3399:
- if (!pll->rate_table)
- init.ops = &rockchip_rk3399_pll_clk_norate_ops;
- else
- init.ops = &rockchip_rk3399_pll_clk_ops;
- break;
- default:
- pr_warn("%s: Unknown pll type for pll clk %s\n",
- __func__, name);
- }
- pll->hw.init = &init;
- pll->type = pll_type;
- pll->reg_base = ctx->reg_base + con_offset;
- pll->lock_offset = grf_lock_offset;
- pll->lock_shift = lock_shift;
- pll->flags = clk_pll_flags;
- pll->lock = &ctx->lock;
- pll->ctx = ctx;
- pll_clk = clk_register(NULL, &pll->hw);
- if (IS_ERR(pll_clk)) {
- pr_err("%s: failed to register pll clock %s : %ld\n",
- __func__, name, PTR_ERR(pll_clk));
- goto err_pll;
- }
- return mux_clk;
- err_pll:
- clk_unregister(mux_clk);
- mux_clk = pll_clk;
- err_mux:
- kfree(pll);
- return mux_clk;
- }
|