mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
d5db46cf93
The RCG divider field takes a value of (2*h - 1) where h is the divisor. This allows fractional dividers to be supported by calculating them at compile time using a macro. However, the clk_rcg_set_rate_mnd() function was also performing the calculation. Clean this all up and consistently use the F() macro to calculate these at compile time and properly support fractional divisors. Additionally, improve clk_bcr_update() to timeout with a warning rather than hanging the board, and make the freq_tbl struct and helpers common so that they can be reused by future platforms. Reviewed-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
307 lines
7.4 KiB
C
307 lines
7.4 KiB
C
// SPDX-License-Identifier: BSD-3-Clause AND GPL-2.0
|
|
/*
|
|
* Clock and reset drivers for Qualcomm platforms Global Clock
|
|
* Controller (GCC).
|
|
*
|
|
* (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
|
|
* (C) Copyright 2020 Sartura Ltd. (reset driver)
|
|
* Author: Robert Marko <robert.marko@sartura.hr>
|
|
* (C) Copyright 2022 Linaro Ltd. (reset driver)
|
|
* Author: Sumit Garg <sumit.garg@linaro.org>
|
|
*
|
|
* Based on Little Kernel driver, simplified
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <clk-uclass.h>
|
|
#include <dm.h>
|
|
#include <dm/device-internal.h>
|
|
#include <dm/lists.h>
|
|
#include <errno.h>
|
|
#include <asm/io.h>
|
|
#include <linux/bug.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/bitops.h>
|
|
#include <reset-uclass.h>
|
|
|
|
#include "clock-qcom.h"
|
|
|
|
/* CBCR register fields */
|
|
#define CBCR_BRANCH_ENABLE_BIT BIT(0)
|
|
#define CBCR_BRANCH_OFF_BIT BIT(31)
|
|
|
|
/* Enable clock controlled by CBC soft macro */
|
|
void clk_enable_cbc(phys_addr_t cbcr)
|
|
{
|
|
setbits_le32(cbcr, CBCR_BRANCH_ENABLE_BIT);
|
|
|
|
while (readl(cbcr) & CBCR_BRANCH_OFF_BIT)
|
|
;
|
|
}
|
|
|
|
void clk_enable_gpll0(phys_addr_t base, const struct pll_vote_clk *gpll0)
|
|
{
|
|
if (readl(base + gpll0->status) & gpll0->status_bit)
|
|
return; /* clock already enabled */
|
|
|
|
setbits_le32(base + gpll0->ena_vote, gpll0->vote_bit);
|
|
|
|
while ((readl(base + gpll0->status) & gpll0->status_bit) == 0)
|
|
;
|
|
}
|
|
|
|
#define BRANCH_ON_VAL (0)
|
|
#define BRANCH_NOC_FSM_ON_VAL BIT(29)
|
|
#define BRANCH_CHECK_MASK GENMASK(31, 28)
|
|
|
|
void clk_enable_vote_clk(phys_addr_t base, const struct vote_clk *vclk)
|
|
{
|
|
u32 val;
|
|
|
|
setbits_le32(base + vclk->ena_vote, vclk->vote_bit);
|
|
do {
|
|
val = readl(base + vclk->cbcr_reg);
|
|
val &= BRANCH_CHECK_MASK;
|
|
} while ((val != BRANCH_ON_VAL) && (val != BRANCH_NOC_FSM_ON_VAL));
|
|
}
|
|
|
|
#define APPS_CMD_RCGR_UPDATE BIT(0)
|
|
|
|
/* Update clock command via CMD_RCGR */
|
|
void clk_bcr_update(phys_addr_t apps_cmd_rcgr)
|
|
{
|
|
u32 count;
|
|
setbits_le32(apps_cmd_rcgr, APPS_CMD_RCGR_UPDATE);
|
|
|
|
/* Wait for frequency to be updated. */
|
|
for (count = 0; count < 50000; count++) {
|
|
if (!(readl(apps_cmd_rcgr) & APPS_CMD_RCGR_UPDATE))
|
|
break;
|
|
udelay(1);
|
|
}
|
|
WARN(count == 50000, "WARNING: RCG @ %#llx [%#010x] stuck at off\n",
|
|
apps_cmd_rcgr, readl(apps_cmd_rcgr));
|
|
}
|
|
|
|
#define CFG_SRC_DIV_MASK 0b11111
|
|
#define CFG_SRC_SEL_SHIFT 8
|
|
#define CFG_SRC_SEL_MASK (0x7 << CFG_SRC_SEL_SHIFT)
|
|
#define CFG_MODE_SHIFT 12
|
|
#define CFG_MODE_MASK (0x3 << CFG_MODE_SHIFT)
|
|
#define CFG_MODE_DUAL_EDGE (0x2 << CFG_MODE_SHIFT)
|
|
#define CFG_HW_CLK_CTRL_MASK BIT(20)
|
|
|
|
/*
|
|
* root set rate for clocks with half integer and MND divider
|
|
* div should be pre-calculated ((div * 2) - 1)
|
|
*/
|
|
void clk_rcg_set_rate_mnd(phys_addr_t base, const struct bcr_regs *regs,
|
|
int div, int m, int n, int source, u8 mnd_width)
|
|
{
|
|
u32 cfg;
|
|
/* M value for MND divider. */
|
|
u32 m_val = m;
|
|
u32 n_minus_m = n - m;
|
|
/* NOT(N-M) value for MND divider. */
|
|
u32 n_val = ~n_minus_m * !!(n);
|
|
/* NOT 2D value for MND divider. */
|
|
u32 d_val = ~(clamp_t(u32, n, m, n_minus_m));
|
|
u32 mask = BIT(mnd_width) - 1;
|
|
|
|
debug("m %#x n %#x d %#x div %#x mask %#x\n", m_val, n_val, d_val, div, mask);
|
|
|
|
/* Program MND values */
|
|
writel(m_val & mask, base + regs->M);
|
|
writel(n_val & mask, base + regs->N);
|
|
writel(d_val & mask, base + regs->D);
|
|
|
|
/* setup src select and divider */
|
|
cfg = readl(base + regs->cfg_rcgr);
|
|
cfg &= ~(CFG_SRC_SEL_MASK | CFG_MODE_MASK | CFG_HW_CLK_CTRL_MASK);
|
|
cfg |= source & CFG_SRC_SEL_MASK; /* Select clock source */
|
|
|
|
if (div)
|
|
cfg |= div & CFG_SRC_DIV_MASK;
|
|
|
|
if (n && n != m)
|
|
cfg |= CFG_MODE_DUAL_EDGE;
|
|
|
|
writel(cfg, base + regs->cfg_rcgr); /* Write new clock configuration */
|
|
|
|
/* Inform h/w to start using the new config. */
|
|
clk_bcr_update(base + regs->cmd_rcgr);
|
|
}
|
|
|
|
/* root set rate for clocks with half integer and mnd_width=0 */
|
|
void clk_rcg_set_rate(phys_addr_t base, const struct bcr_regs *regs, int div,
|
|
int source)
|
|
{
|
|
u32 cfg;
|
|
|
|
/* setup src select and divider */
|
|
cfg = readl(base + regs->cfg_rcgr);
|
|
cfg &= ~(CFG_SRC_SEL_MASK | CFG_MODE_MASK | CFG_HW_CLK_CTRL_MASK);
|
|
cfg |= source & CFG_CLK_SRC_MASK; /* Select clock source */
|
|
|
|
/*
|
|
* Set the divider; HW permits fraction dividers (+0.5), but
|
|
* for simplicity, we will support integers only
|
|
*/
|
|
if (div)
|
|
cfg |= (2 * div - 1) & CFG_SRC_DIV_MASK;
|
|
|
|
writel(cfg, base + regs->cfg_rcgr); /* Write new clock configuration */
|
|
|
|
/* Inform h/w to start using the new config. */
|
|
clk_bcr_update(base + regs->cmd_rcgr);
|
|
}
|
|
|
|
const struct freq_tbl *qcom_find_freq(const struct freq_tbl *f, uint rate)
|
|
{
|
|
if (!f)
|
|
return NULL;
|
|
|
|
if (!f->freq)
|
|
return f;
|
|
|
|
for (; f->freq; f++)
|
|
if (rate <= f->freq)
|
|
return f;
|
|
|
|
/* Default to our fastest rate */
|
|
return f - 1;
|
|
}
|
|
|
|
static int msm_clk_probe(struct udevice *dev)
|
|
{
|
|
struct msm_clk_data *data = (struct msm_clk_data *)dev_get_driver_data(dev);
|
|
struct msm_clk_priv *priv = dev_get_priv(dev);
|
|
|
|
priv->base = dev_read_addr(dev);
|
|
if (priv->base == FDT_ADDR_T_NONE)
|
|
return -EINVAL;
|
|
|
|
priv->data = data;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static ulong msm_clk_set_rate(struct clk *clk, ulong rate)
|
|
{
|
|
struct msm_clk_data *data = (struct msm_clk_data *)dev_get_driver_data(clk->dev);
|
|
|
|
if (data->set_rate)
|
|
return data->set_rate(clk, rate);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int msm_clk_enable(struct clk *clk)
|
|
{
|
|
struct msm_clk_data *data = (struct msm_clk_data *)dev_get_driver_data(clk->dev);
|
|
|
|
if (data->enable)
|
|
return data->enable(clk);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct clk_ops msm_clk_ops = {
|
|
.set_rate = msm_clk_set_rate,
|
|
.enable = msm_clk_enable,
|
|
};
|
|
|
|
U_BOOT_DRIVER(qcom_clk) = {
|
|
.name = "qcom_clk",
|
|
.id = UCLASS_CLK,
|
|
.ops = &msm_clk_ops,
|
|
.priv_auto = sizeof(struct msm_clk_priv),
|
|
.probe = msm_clk_probe,
|
|
};
|
|
|
|
int qcom_cc_bind(struct udevice *parent)
|
|
{
|
|
struct msm_clk_data *data = (struct msm_clk_data *)dev_get_driver_data(parent);
|
|
struct udevice *clkdev, *rstdev;
|
|
struct driver *drv;
|
|
int ret;
|
|
|
|
/* Get a handle to the common clk handler */
|
|
drv = lists_driver_lookup_name("qcom_clk");
|
|
if (!drv)
|
|
return -ENOENT;
|
|
|
|
/* Register the clock controller */
|
|
ret = device_bind_with_driver_data(parent, drv, "qcom_clk", (ulong)data,
|
|
dev_ofnode(parent), &clkdev);
|
|
if (ret)
|
|
return ret;
|
|
|
|
/* Bail out early if resets are not specified for this platform */
|
|
if (!data->resets)
|
|
return ret;
|
|
|
|
/* Get a handle to the common reset handler */
|
|
drv = lists_driver_lookup_name("qcom_reset");
|
|
if (!drv)
|
|
return -ENOENT;
|
|
|
|
/* Register the reset controller */
|
|
ret = device_bind_with_driver_data(parent, drv, "qcom_reset", (ulong)data,
|
|
dev_ofnode(parent), &rstdev);
|
|
if (ret)
|
|
device_unbind(clkdev);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int qcom_reset_set(struct reset_ctl *rst, bool assert)
|
|
{
|
|
struct msm_clk_data *data = (struct msm_clk_data *)dev_get_driver_data(rst->dev);
|
|
void __iomem *base = dev_get_priv(rst->dev);
|
|
const struct qcom_reset_map *map;
|
|
u32 value;
|
|
|
|
map = &data->resets[rst->id];
|
|
|
|
value = readl(base + map->reg);
|
|
|
|
if (assert)
|
|
value |= BIT(map->bit);
|
|
else
|
|
value &= ~BIT(map->bit);
|
|
|
|
writel(value, base + map->reg);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int qcom_reset_assert(struct reset_ctl *rst)
|
|
{
|
|
return qcom_reset_set(rst, true);
|
|
}
|
|
|
|
static int qcom_reset_deassert(struct reset_ctl *rst)
|
|
{
|
|
return qcom_reset_set(rst, false);
|
|
}
|
|
|
|
static const struct reset_ops qcom_reset_ops = {
|
|
.rst_assert = qcom_reset_assert,
|
|
.rst_deassert = qcom_reset_deassert,
|
|
};
|
|
|
|
static int qcom_reset_probe(struct udevice *dev)
|
|
{
|
|
/* Set our priv pointer to the base address */
|
|
dev_set_priv(dev, (void *)dev_read_addr(dev));
|
|
|
|
return 0;
|
|
}
|
|
|
|
U_BOOT_DRIVER(qcom_reset) = {
|
|
.name = "qcom_reset",
|
|
.id = UCLASS_RESET,
|
|
.ops = &qcom_reset_ops,
|
|
.probe = qcom_reset_probe,
|
|
};
|