2019-06-24 13:50:45 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 DENX Software Engineering
|
|
|
|
* Lukasz Majewski, DENX Software Engineering, lukma@denx.de
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
|
|
|
|
* Copyright (C) 2011 Richard Zhao, Linaro <richard.zhao@linaro.org>
|
|
|
|
* Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
|
|
|
|
*
|
|
|
|
* Simple multiplexer clock implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* U-Boot CCF porting node:
|
|
|
|
*
|
|
|
|
* The Linux kernel - as of tag: 5.0-rc3 is using also the imx_clk_fixup_mux()
|
|
|
|
* version of CCF mux. It is used on e.g. imx6q to provide fixes (like
|
|
|
|
* imx_cscmr1_fixup) for broken HW.
|
|
|
|
*
|
|
|
|
* At least for IMX6Q (but NOT IMX6QP) it is important when we set the parent
|
|
|
|
* clock.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <clk-uclass.h>
|
|
|
|
#include <dm/device.h>
|
2020-02-03 14:36:15 +00:00
|
|
|
#include <dm/devres.h>
|
2020-05-10 17:40:13 +00:00
|
|
|
#include <linux/bitops.h>
|
2019-06-24 13:50:45 +00:00
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include <clk.h>
|
|
|
|
#include "clk.h"
|
2020-02-03 14:36:15 +00:00
|
|
|
#include <linux/err.h>
|
2019-06-24 13:50:45 +00:00
|
|
|
|
|
|
|
#define UBOOT_DM_CLK_CCF_MUX "ccf_clk_mux"
|
|
|
|
|
|
|
|
int clk_mux_val_to_index(struct clk *clk, u32 *table, unsigned int flags,
|
|
|
|
unsigned int val)
|
|
|
|
{
|
2020-06-24 10:41:06 +00:00
|
|
|
struct clk_mux *mux = to_clk_mux(clk);
|
2019-06-24 13:50:45 +00:00
|
|
|
int num_parents = mux->num_parents;
|
|
|
|
|
|
|
|
if (table) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num_parents; i++)
|
|
|
|
if (table[i] == val)
|
|
|
|
return i;
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val && (flags & CLK_MUX_INDEX_BIT))
|
|
|
|
val = ffs(val) - 1;
|
|
|
|
|
|
|
|
if (val && (flags & CLK_MUX_INDEX_ONE))
|
|
|
|
val--;
|
|
|
|
|
|
|
|
if (val >= num_parents)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2019-07-31 07:01:28 +00:00
|
|
|
unsigned int clk_mux_index_to_val(u32 *table, unsigned int flags, u8 index)
|
|
|
|
{
|
|
|
|
unsigned int val = index;
|
|
|
|
|
|
|
|
if (table) {
|
|
|
|
val = table[index];
|
|
|
|
} else {
|
|
|
|
if (flags & CLK_MUX_INDEX_BIT)
|
|
|
|
val = 1 << index;
|
|
|
|
|
|
|
|
if (flags & CLK_MUX_INDEX_ONE)
|
|
|
|
val++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 clk_mux_get_parent(struct clk *clk)
|
2019-06-24 13:50:45 +00:00
|
|
|
{
|
2020-06-24 10:41:06 +00:00
|
|
|
struct clk_mux *mux = to_clk_mux(clk);
|
2019-06-24 13:50:45 +00:00
|
|
|
u32 val;
|
|
|
|
|
2019-06-24 13:50:49 +00:00
|
|
|
#if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF)
|
|
|
|
val = mux->io_mux_val;
|
|
|
|
#else
|
|
|
|
val = readl(mux->reg);
|
|
|
|
#endif
|
|
|
|
val >>= mux->shift;
|
2019-06-24 13:50:45 +00:00
|
|
|
val &= mux->mask;
|
|
|
|
|
|
|
|
return clk_mux_val_to_index(clk, mux->table, mux->flags, val);
|
|
|
|
}
|
|
|
|
|
2019-07-31 07:01:28 +00:00
|
|
|
static int clk_fetch_parent_index(struct clk *clk,
|
|
|
|
struct clk *parent)
|
|
|
|
{
|
2020-06-24 10:41:06 +00:00
|
|
|
struct clk_mux *mux = to_clk_mux(clk);
|
2019-07-31 07:01:28 +00:00
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!parent)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
for (i = 0; i < mux->num_parents; i++) {
|
|
|
|
if (!strcmp(parent->dev->name, mux->parent_names[i]))
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int clk_mux_set_parent(struct clk *clk, struct clk *parent)
|
|
|
|
{
|
2020-06-24 10:41:06 +00:00
|
|
|
struct clk_mux *mux = to_clk_mux(clk);
|
2019-07-31 07:01:28 +00:00
|
|
|
int index;
|
|
|
|
u32 val;
|
|
|
|
u32 reg;
|
|
|
|
|
|
|
|
index = clk_fetch_parent_index(clk, parent);
|
|
|
|
if (index < 0) {
|
|
|
|
printf("Could not fetch index\n");
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
|
|
|
val = clk_mux_index_to_val(mux->table, mux->flags, index);
|
|
|
|
|
|
|
|
if (mux->flags & CLK_MUX_HIWORD_MASK) {
|
|
|
|
reg = mux->mask << (mux->shift + 16);
|
|
|
|
} else {
|
|
|
|
reg = readl(mux->reg);
|
|
|
|
reg &= ~(mux->mask << mux->shift);
|
|
|
|
}
|
|
|
|
val = val << mux->shift;
|
|
|
|
reg |= val;
|
|
|
|
writel(reg, mux->reg);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-06-24 13:50:45 +00:00
|
|
|
const struct clk_ops clk_mux_ops = {
|
2019-07-31 07:01:28 +00:00
|
|
|
.get_rate = clk_generic_get_rate,
|
|
|
|
.set_parent = clk_mux_set_parent,
|
2019-06-24 13:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct clk *clk_hw_register_mux_table(struct device *dev, const char *name,
|
|
|
|
const char * const *parent_names, u8 num_parents,
|
|
|
|
unsigned long flags,
|
|
|
|
void __iomem *reg, u8 shift, u32 mask,
|
|
|
|
u8 clk_mux_flags, u32 *table)
|
|
|
|
{
|
|
|
|
struct clk_mux *mux;
|
|
|
|
struct clk *clk;
|
|
|
|
u8 width = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (clk_mux_flags & CLK_MUX_HIWORD_MASK) {
|
|
|
|
width = fls(mask) - ffs(mask) + 1;
|
|
|
|
if (width + shift > 16) {
|
|
|
|
pr_err("mux value exceeds LOWORD field\n");
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate the mux */
|
|
|
|
mux = kzalloc(sizeof(*mux), GFP_KERNEL);
|
|
|
|
if (!mux)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
/* U-boot specific assignments */
|
|
|
|
mux->parent_names = parent_names;
|
|
|
|
mux->num_parents = num_parents;
|
|
|
|
|
|
|
|
/* struct clk_mux assignments */
|
|
|
|
mux->reg = reg;
|
|
|
|
mux->shift = shift;
|
|
|
|
mux->mask = mask;
|
|
|
|
mux->flags = clk_mux_flags;
|
|
|
|
mux->table = table;
|
2019-06-24 13:50:49 +00:00
|
|
|
#if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF)
|
|
|
|
mux->io_mux_val = *(u32 *)reg;
|
|
|
|
#endif
|
2019-06-24 13:50:45 +00:00
|
|
|
|
|
|
|
clk = &mux->clk;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the current mux setup - so we assign correct parent.
|
|
|
|
*
|
|
|
|
* Changing parent would require changing internals of udevice struct
|
|
|
|
* for the corresponding clock (to do that define .set_parent() method.
|
|
|
|
*/
|
|
|
|
ret = clk_register(clk, UBOOT_DM_CLK_CCF_MUX, name,
|
|
|
|
parent_names[clk_mux_get_parent(clk)]);
|
|
|
|
if (ret) {
|
|
|
|
kfree(mux);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
return clk;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct clk *clk_register_mux_table(struct device *dev, const char *name,
|
|
|
|
const char * const *parent_names, u8 num_parents,
|
|
|
|
unsigned long flags,
|
|
|
|
void __iomem *reg, u8 shift, u32 mask,
|
|
|
|
u8 clk_mux_flags, u32 *table)
|
|
|
|
{
|
|
|
|
struct clk *clk;
|
|
|
|
|
|
|
|
clk = clk_hw_register_mux_table(dev, name, parent_names, num_parents,
|
|
|
|
flags, reg, shift, mask, clk_mux_flags,
|
|
|
|
table);
|
|
|
|
if (IS_ERR(clk))
|
|
|
|
return ERR_CAST(clk);
|
|
|
|
return clk;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct clk *clk_register_mux(struct device *dev, const char *name,
|
|
|
|
const char * const *parent_names, u8 num_parents,
|
|
|
|
unsigned long flags,
|
|
|
|
void __iomem *reg, u8 shift, u8 width,
|
|
|
|
u8 clk_mux_flags)
|
|
|
|
{
|
|
|
|
u32 mask = BIT(width) - 1;
|
|
|
|
|
|
|
|
return clk_register_mux_table(dev, name, parent_names, num_parents,
|
|
|
|
flags, reg, shift, mask, clk_mux_flags,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(ccf_clk_mux) = {
|
|
|
|
.name = UBOOT_DM_CLK_CCF_MUX,
|
|
|
|
.id = UCLASS_CLK,
|
|
|
|
.ops = &clk_mux_ops,
|
|
|
|
.flags = DM_FLAG_PRE_RELOC,
|
|
|
|
};
|