clk: stm32mp1: move RCC reset controller into RCC clock driver
RCC clock and reset controller shared same memory mapping. As RCC clock driver is now a module, the best way to register clock and reset controller is to do it in same driver. Signed-off-by: Gabriel Fernandez <gabriel.fernandez@foss.st.com> Link: https://lore.kernel.org/r/20210617051814.12018-6-gabriel.fernandez@foss.st.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
95272370e2
commit
c392df194a
|
@ -14,6 +14,7 @@
|
||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
#include <linux/of_address.h>
|
#include <linux/of_address.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/reset-controller.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/spinlock.h>
|
#include <linux/spinlock.h>
|
||||||
|
|
||||||
|
@ -2055,16 +2056,18 @@ static const struct clock_config stm32mp1_clock_cfg[] = {
|
||||||
_DIV(RCC_DBGCFGR, 0, 3, 0, ck_trace_div_table)),
|
_DIV(RCC_DBGCFGR, 0, 3, 0, ck_trace_div_table)),
|
||||||
};
|
};
|
||||||
|
|
||||||
struct stm32_clock_match_data {
|
struct stm32_rcc_match_data {
|
||||||
const struct clock_config *cfg;
|
const struct clock_config *cfg;
|
||||||
unsigned int num;
|
unsigned int num;
|
||||||
unsigned int maxbinding;
|
unsigned int maxbinding;
|
||||||
|
u32 clear_offset;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct stm32_clock_match_data stm32mp1_data = {
|
static struct stm32_rcc_match_data stm32mp1_data = {
|
||||||
.cfg = stm32mp1_clock_cfg,
|
.cfg = stm32mp1_clock_cfg,
|
||||||
.num = ARRAY_SIZE(stm32mp1_clock_cfg),
|
.num = ARRAY_SIZE(stm32mp1_clock_cfg),
|
||||||
.maxbinding = STM32MP1_LAST_CLK,
|
.maxbinding = STM32MP1_LAST_CLK,
|
||||||
|
.clear_offset = RCC_CLR,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct of_device_id stm32mp1_match_data[] = {
|
static const struct of_device_id stm32mp1_match_data[] = {
|
||||||
|
@ -2100,23 +2103,122 @@ static int stm32_register_hw_clk(struct device *dev,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int stm32_rcc_init(struct device *dev, void __iomem *base,
|
#define STM32_RESET_ID_MASK GENMASK(15, 0)
|
||||||
const struct of_device_id *match_data)
|
|
||||||
{
|
|
||||||
struct clk_hw_onecell_data *clk_data;
|
|
||||||
struct clk_hw **hws;
|
|
||||||
const struct of_device_id *match;
|
|
||||||
const struct stm32_clock_match_data *data;
|
|
||||||
int err, n, max_binding;
|
|
||||||
|
|
||||||
match = of_match_node(match_data, dev_of_node(dev));
|
struct stm32_reset_data {
|
||||||
if (!match) {
|
/* reset lock */
|
||||||
dev_err(dev, "match data not found\n");
|
spinlock_t lock;
|
||||||
return -ENODEV;
|
struct reset_controller_dev rcdev;
|
||||||
|
void __iomem *membase;
|
||||||
|
u32 clear_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
static inline struct stm32_reset_data *
|
||||||
|
to_stm32_reset_data(struct reset_controller_dev *rcdev)
|
||||||
|
{
|
||||||
|
return container_of(rcdev, struct stm32_reset_data, rcdev);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int stm32_reset_update(struct reset_controller_dev *rcdev,
|
||||||
|
unsigned long id, bool assert)
|
||||||
|
{
|
||||||
|
struct stm32_reset_data *data = to_stm32_reset_data(rcdev);
|
||||||
|
int reg_width = sizeof(u32);
|
||||||
|
int bank = id / (reg_width * BITS_PER_BYTE);
|
||||||
|
int offset = id % (reg_width * BITS_PER_BYTE);
|
||||||
|
|
||||||
|
if (data->clear_offset) {
|
||||||
|
void __iomem *addr;
|
||||||
|
|
||||||
|
addr = data->membase + (bank * reg_width);
|
||||||
|
if (!assert)
|
||||||
|
addr += data->clear_offset;
|
||||||
|
|
||||||
|
writel(BIT(offset), addr);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
unsigned long flags;
|
||||||
|
u32 reg;
|
||||||
|
|
||||||
|
spin_lock_irqsave(&data->lock, flags);
|
||||||
|
|
||||||
|
reg = readl(data->membase + (bank * reg_width));
|
||||||
|
|
||||||
|
if (assert)
|
||||||
|
reg |= BIT(offset);
|
||||||
|
else
|
||||||
|
reg &= ~BIT(offset);
|
||||||
|
|
||||||
|
writel(reg, data->membase + (bank * reg_width));
|
||||||
|
|
||||||
|
spin_unlock_irqrestore(&data->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int stm32_reset_assert(struct reset_controller_dev *rcdev,
|
||||||
|
unsigned long id)
|
||||||
|
{
|
||||||
|
return stm32_reset_update(rcdev, id, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int stm32_reset_deassert(struct reset_controller_dev *rcdev,
|
||||||
|
unsigned long id)
|
||||||
|
{
|
||||||
|
return stm32_reset_update(rcdev, id, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int stm32_reset_status(struct reset_controller_dev *rcdev,
|
||||||
|
unsigned long id)
|
||||||
|
{
|
||||||
|
struct stm32_reset_data *data = to_stm32_reset_data(rcdev);
|
||||||
|
int reg_width = sizeof(u32);
|
||||||
|
int bank = id / (reg_width * BITS_PER_BYTE);
|
||||||
|
int offset = id % (reg_width * BITS_PER_BYTE);
|
||||||
|
u32 reg;
|
||||||
|
|
||||||
|
reg = readl(data->membase + (bank * reg_width));
|
||||||
|
|
||||||
|
return !!(reg & BIT(offset));
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct reset_control_ops stm32_reset_ops = {
|
||||||
|
.assert = stm32_reset_assert,
|
||||||
|
.deassert = stm32_reset_deassert,
|
||||||
|
.status = stm32_reset_status,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int stm32_rcc_reset_init(struct device *dev, void __iomem *base,
|
||||||
|
const struct of_device_id *match)
|
||||||
|
{
|
||||||
|
const struct stm32_rcc_match_data *data = match->data;
|
||||||
|
struct stm32_reset_data *reset_data = NULL;
|
||||||
|
|
||||||
data = match->data;
|
data = match->data;
|
||||||
|
|
||||||
|
reset_data = kzalloc(sizeof(*reset_data), GFP_KERNEL);
|
||||||
|
if (!reset_data)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
|
reset_data->membase = base;
|
||||||
|
reset_data->rcdev.owner = THIS_MODULE;
|
||||||
|
reset_data->rcdev.ops = &stm32_reset_ops;
|
||||||
|
reset_data->rcdev.of_node = dev_of_node(dev);
|
||||||
|
reset_data->rcdev.nr_resets = STM32_RESET_ID_MASK;
|
||||||
|
reset_data->clear_offset = data->clear_offset;
|
||||||
|
|
||||||
|
return reset_controller_register(&reset_data->rcdev);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int stm32_rcc_clock_init(struct device *dev, void __iomem *base,
|
||||||
|
const struct of_device_id *match)
|
||||||
|
{
|
||||||
|
const struct stm32_rcc_match_data *data = match->data;
|
||||||
|
struct clk_hw_onecell_data *clk_data;
|
||||||
|
struct clk_hw **hws;
|
||||||
|
int err, n, max_binding;
|
||||||
|
|
||||||
max_binding = data->maxbinding;
|
max_binding = data->maxbinding;
|
||||||
|
|
||||||
clk_data = devm_kzalloc(dev, struct_size(clk_data, hws, max_binding),
|
clk_data = devm_kzalloc(dev, struct_size(clk_data, hws, max_binding),
|
||||||
|
@ -2145,6 +2247,35 @@ static int stm32_rcc_init(struct device *dev, void __iomem *base,
|
||||||
return of_clk_add_hw_provider(dev_of_node(dev), of_clk_hw_onecell_get, clk_data);
|
return of_clk_add_hw_provider(dev_of_node(dev), of_clk_hw_onecell_get, clk_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int stm32_rcc_init(struct device *dev, void __iomem *base,
|
||||||
|
const struct of_device_id *match_data)
|
||||||
|
{
|
||||||
|
const struct of_device_id *match;
|
||||||
|
int err;
|
||||||
|
|
||||||
|
match = of_match_node(match_data, dev_of_node(dev));
|
||||||
|
if (!match) {
|
||||||
|
dev_err(dev, "match data not found\n");
|
||||||
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* RCC Reset Configuration */
|
||||||
|
err = stm32_rcc_reset_init(dev, base, match);
|
||||||
|
if (err) {
|
||||||
|
pr_err("stm32mp1 reset failed to initialize\n");
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* RCC Clock Configuration */
|
||||||
|
err = stm32_rcc_clock_init(dev, base, match);
|
||||||
|
if (err) {
|
||||||
|
pr_err("stm32mp1 clock failed to initialize\n");
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int stm32mp1_rcc_init(struct device *dev)
|
static int stm32mp1_rcc_init(struct device *dev)
|
||||||
{
|
{
|
||||||
void __iomem *base;
|
void __iomem *base;
|
||||||
|
|
Loading…
Reference in New Issue