clk: tegra: pll: Add dyn_ramp callback

Add a callback to the pll_params for custom dynamic ramping
functions which can be specified per PLL.

Reviewed-by: Benson Leung <bleung@chromium.org>
Signed-off-by: Bill Huang <bilhuang@nvidia.com>
Signed-off-by: Rhyland Klein <rklein@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
Rhyland Klein 2015-06-18 17:28:32 -04:00 коммит произвёл Thierry Reding
Родитель b985114e2f
Коммит 17e9273a9e
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -669,6 +669,13 @@ static int _program_pll(struct clk_hw *hw, struct tegra_clk_pll_freq_table *cfg,
_get_pll_mnp(pll, &old_cfg); _get_pll_mnp(pll, &old_cfg);
if (state && pll->params->defaults_set && pll->params->dyn_ramp &&
(cfg->m == old_cfg.m) && (cfg->p == old_cfg.p)) {
ret = pll->params->dyn_ramp(pll, cfg);
if (!ret)
return 0;
}
if (state) if (state)
_clk_pll_disable(hw); _clk_pll_disable(hw);

Просмотреть файл

@ -213,6 +213,8 @@ struct tegra_clk_pll;
* is already enabled, it will be done the first * is already enabled, it will be done the first
* time the rate is changed while the PLL is * time the rate is changed while the PLL is
* disabled. * disabled.
* @dyn_ramp: Callback which can be used to define a custom
* dynamic ramp function for a given PLL.
* *
* Flags: * Flags:
* TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for * TEGRA_PLL_USE_LOCK - This flag indicated to use lock bits for
@ -284,6 +286,8 @@ struct tegra_clk_pll_params {
unsigned long (*adjust_vco)(struct tegra_clk_pll_params *pll_params, unsigned long (*adjust_vco)(struct tegra_clk_pll_params *pll_params,
unsigned long parent_rate); unsigned long parent_rate);
void (*set_defaults)(struct tegra_clk_pll *pll); void (*set_defaults)(struct tegra_clk_pll *pll);
int (*dyn_ramp)(struct tegra_clk_pll *pll,
struct tegra_clk_pll_freq_table *cfg);
}; };
#define TEGRA_PLL_USE_LOCK BIT(0) #define TEGRA_PLL_USE_LOCK BIT(0)