2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2013-10-11 08:51:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include <linux/clkdev.h>
|
|
|
|
#include <linux/clk/at91_pmc.h>
|
|
|
|
#include <linux/of.h>
|
2014-09-07 06:14:29 +00:00
|
|
|
#include <linux/mfd/syscon.h>
|
|
|
|
#include <linux/regmap.h>
|
2013-10-11 08:51:23 +00:00
|
|
|
|
|
|
|
#include "pmc.h"
|
|
|
|
|
|
|
|
#define MASTER_PRES_MASK 0x7
|
|
|
|
#define MASTER_PRES_MAX MASTER_PRES_MASK
|
|
|
|
#define MASTER_DIV_SHIFT 8
|
|
|
|
#define MASTER_DIV_MASK 0x3
|
|
|
|
|
|
|
|
#define to_clk_master(hw) container_of(hw, struct clk_master, hw)
|
|
|
|
|
|
|
|
struct clk_master {
|
|
|
|
struct clk_hw hw;
|
2014-09-07 06:14:29 +00:00
|
|
|
struct regmap *regmap;
|
2013-10-11 08:51:23 +00:00
|
|
|
const struct clk_master_layout *layout;
|
|
|
|
const struct clk_master_characteristics *characteristics;
|
2019-04-02 12:50:53 +00:00
|
|
|
u32 mckr;
|
2013-10-11 08:51:23 +00:00
|
|
|
};
|
|
|
|
|
2014-09-07 06:14:29 +00:00
|
|
|
static inline bool clk_master_ready(struct regmap *regmap)
|
|
|
|
{
|
|
|
|
unsigned int status;
|
|
|
|
|
|
|
|
regmap_read(regmap, AT91_PMC_SR, &status);
|
|
|
|
|
|
|
|
return status & AT91_PMC_MCKRDY ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2013-10-11 08:51:23 +00:00
|
|
|
static int clk_master_prepare(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct clk_master *master = to_clk_master(hw);
|
|
|
|
|
2015-09-16 21:47:39 +00:00
|
|
|
while (!clk_master_ready(master->regmap))
|
|
|
|
cpu_relax();
|
2013-10-11 08:51:23 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int clk_master_is_prepared(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct clk_master *master = to_clk_master(hw);
|
|
|
|
|
2014-09-07 06:14:29 +00:00
|
|
|
return clk_master_ready(master->regmap);
|
2013-10-11 08:51:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long clk_master_recalc_rate(struct clk_hw *hw,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
u8 pres;
|
|
|
|
u8 div;
|
|
|
|
unsigned long rate = parent_rate;
|
|
|
|
struct clk_master *master = to_clk_master(hw);
|
|
|
|
const struct clk_master_layout *layout = master->layout;
|
|
|
|
const struct clk_master_characteristics *characteristics =
|
|
|
|
master->characteristics;
|
2014-09-07 06:14:29 +00:00
|
|
|
unsigned int mckr;
|
2013-10-11 08:51:23 +00:00
|
|
|
|
2019-04-02 12:50:53 +00:00
|
|
|
regmap_read(master->regmap, master->layout->offset, &mckr);
|
2014-09-07 06:14:29 +00:00
|
|
|
mckr &= layout->mask;
|
2013-10-11 08:51:23 +00:00
|
|
|
|
2014-09-07 06:14:29 +00:00
|
|
|
pres = (mckr >> layout->pres_shift) & MASTER_PRES_MASK;
|
|
|
|
div = (mckr >> MASTER_DIV_SHIFT) & MASTER_DIV_MASK;
|
2013-10-11 08:51:23 +00:00
|
|
|
|
|
|
|
if (characteristics->have_div3_pres && pres == MASTER_PRES_MAX)
|
|
|
|
rate /= 3;
|
|
|
|
else
|
|
|
|
rate >>= pres;
|
|
|
|
|
|
|
|
rate /= characteristics->divisors[div];
|
|
|
|
|
|
|
|
if (rate < characteristics->output.min)
|
|
|
|
pr_warn("master clk is underclocked");
|
|
|
|
else if (rate > characteristics->output.max)
|
|
|
|
pr_warn("master clk is overclocked");
|
|
|
|
|
|
|
|
return rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u8 clk_master_get_parent(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct clk_master *master = to_clk_master(hw);
|
2014-09-07 06:14:29 +00:00
|
|
|
unsigned int mckr;
|
|
|
|
|
2019-04-02 12:50:53 +00:00
|
|
|
regmap_read(master->regmap, master->layout->offset, &mckr);
|
2013-10-11 08:51:23 +00:00
|
|
|
|
2014-09-07 06:14:29 +00:00
|
|
|
return mckr & AT91_PMC_CSS;
|
2013-10-11 08:51:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct clk_ops master_ops = {
|
|
|
|
.prepare = clk_master_prepare,
|
|
|
|
.is_prepared = clk_master_is_prepared,
|
|
|
|
.recalc_rate = clk_master_recalc_rate,
|
|
|
|
.get_parent = clk_master_get_parent,
|
|
|
|
};
|
|
|
|
|
2018-10-16 14:21:44 +00:00
|
|
|
struct clk_hw * __init
|
2015-09-16 21:47:39 +00:00
|
|
|
at91_clk_register_master(struct regmap *regmap,
|
2013-10-11 08:51:23 +00:00
|
|
|
const char *name, int num_parents,
|
|
|
|
const char **parent_names,
|
|
|
|
const struct clk_master_layout *layout,
|
|
|
|
const struct clk_master_characteristics *characteristics)
|
|
|
|
{
|
|
|
|
struct clk_master *master;
|
|
|
|
struct clk_init_data init;
|
2016-06-01 21:31:22 +00:00
|
|
|
struct clk_hw *hw;
|
|
|
|
int ret;
|
2013-10-11 08:51:23 +00:00
|
|
|
|
2014-09-07 06:14:29 +00:00
|
|
|
if (!name || !num_parents || !parent_names)
|
2013-10-11 08:51:23 +00:00
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
|
|
master = kzalloc(sizeof(*master), GFP_KERNEL);
|
|
|
|
if (!master)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
init.name = name;
|
|
|
|
init.ops = &master_ops;
|
|
|
|
init.parent_names = parent_names;
|
|
|
|
init.num_parents = num_parents;
|
|
|
|
init.flags = 0;
|
|
|
|
|
|
|
|
master->hw.init = &init;
|
|
|
|
master->layout = layout;
|
|
|
|
master->characteristics = characteristics;
|
2014-09-07 06:14:29 +00:00
|
|
|
master->regmap = regmap;
|
2013-10-11 08:51:23 +00:00
|
|
|
|
2016-06-01 21:31:22 +00:00
|
|
|
hw = &master->hw;
|
|
|
|
ret = clk_hw_register(NULL, &master->hw);
|
|
|
|
if (ret) {
|
2013-10-11 08:51:23 +00:00
|
|
|
kfree(master);
|
2016-06-01 21:31:22 +00:00
|
|
|
hw = ERR_PTR(ret);
|
2015-06-26 13:30:22 +00:00
|
|
|
}
|
2013-10-11 08:51:23 +00:00
|
|
|
|
2016-06-01 21:31:22 +00:00
|
|
|
return hw;
|
2013-10-11 08:51:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-16 14:21:44 +00:00
|
|
|
const struct clk_master_layout at91rm9200_master_layout = {
|
2013-10-11 08:51:23 +00:00
|
|
|
.mask = 0x31F,
|
|
|
|
.pres_shift = 2,
|
2019-04-02 12:50:53 +00:00
|
|
|
.offset = AT91_PMC_MCKR,
|
2013-10-11 08:51:23 +00:00
|
|
|
};
|
|
|
|
|
2018-10-16 14:21:44 +00:00
|
|
|
const struct clk_master_layout at91sam9x5_master_layout = {
|
2013-10-11 08:51:23 +00:00
|
|
|
.mask = 0x373,
|
|
|
|
.pres_shift = 4,
|
2019-04-02 12:50:53 +00:00
|
|
|
.offset = AT91_PMC_MCKR,
|
2013-10-11 08:51:23 +00:00
|
|
|
};
|