mirror of
https://github.com/Dasharo/linux.git
synced 2026-03-06 15:25:10 -08:00
drivers: clk: Add ZynqMP clock driver
This patch adds CCF compliant clock driver for ZynqMP. Clock driver queries supported clock information from firmware and regiters pll and output clocks with CCF. Signed-off-by: Rajan Vaja <rajan.vaja@xilinx.com> Signed-off-by: Tejas Patel <tejasp@xilinx.com> Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com> Signed-off-by: Jolly Shah <jolly.shah@xilinx.com> Acked-by: Olof Johansson <olof@lixom.net> Reviewed-by: Stephen Boyd <sboyd@kernel.org> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
@@ -299,5 +299,6 @@ source "drivers/clk/sunxi-ng/Kconfig"
|
||||
source "drivers/clk/tegra/Kconfig"
|
||||
source "drivers/clk/ti/Kconfig"
|
||||
source "drivers/clk/uniphier/Kconfig"
|
||||
source "drivers/clk/zynqmp/Kconfig"
|
||||
|
||||
endmenu
|
||||
|
||||
@@ -108,3 +108,4 @@ obj-$(CONFIG_X86) += x86/
|
||||
endif
|
||||
obj-$(CONFIG_ARCH_ZX) += zte/
|
||||
obj-$(CONFIG_ARCH_ZYNQ) += zynq/
|
||||
obj-$(CONFIG_COMMON_CLK_ZYNQMP) += zynqmp/
|
||||
|
||||
10
drivers/clk/zynqmp/Kconfig
Normal file
10
drivers/clk/zynqmp/Kconfig
Normal file
@@ -0,0 +1,10 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
config COMMON_CLK_ZYNQMP
|
||||
bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers"
|
||||
depends on ARCH_ZYNQMP || COMPILE_TEST
|
||||
depends on ZYNQMP_FIRMWARE
|
||||
help
|
||||
Support for the Zynqmp Ultrascale clock controller.
|
||||
It has a dependency on the PMU firmware.
|
||||
Say Y if you want to include clock support.
|
||||
4
drivers/clk/zynqmp/Makefile
Normal file
4
drivers/clk/zynqmp/Makefile
Normal file
@@ -0,0 +1,4 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Zynq Ultrascale+ MPSoC clock specific Makefile
|
||||
|
||||
obj-$(CONFIG_ARCH_ZYNQMP) += pll.o clk-gate-zynqmp.o divider.o clk-mux-zynqmp.o clkc.o
|
||||
144
drivers/clk/zynqmp/clk-gate-zynqmp.c
Normal file
144
drivers/clk/zynqmp/clk-gate-zynqmp.c
Normal file
@@ -0,0 +1,144 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Zynq UltraScale+ MPSoC clock controller
|
||||
*
|
||||
* Copyright (C) 2016-2018 Xilinx
|
||||
*
|
||||
* Gated clock implementation
|
||||
*/
|
||||
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/slab.h>
|
||||
#include "clk-zynqmp.h"
|
||||
|
||||
/**
|
||||
* struct clk_gate - gating clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
* @flags: hardware-specific flags
|
||||
* @clk_id: Id of clock
|
||||
*/
|
||||
struct zynqmp_clk_gate {
|
||||
struct clk_hw hw;
|
||||
u8 flags;
|
||||
u32 clk_id;
|
||||
};
|
||||
|
||||
#define to_zynqmp_clk_gate(_hw) container_of(_hw, struct zynqmp_clk_gate, hw)
|
||||
|
||||
/**
|
||||
* zynqmp_clk_gate_enable() - Enable clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
*
|
||||
* Return: 0 on success else error code
|
||||
*/
|
||||
static int zynqmp_clk_gate_enable(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_clk_gate *gate = to_zynqmp_clk_gate(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = gate->clk_id;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_enable(clk_id);
|
||||
|
||||
if (ret)
|
||||
pr_warn_once("%s() clock enabled failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* zynqmp_clk_gate_disable() - Disable clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
*/
|
||||
static void zynqmp_clk_gate_disable(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_clk_gate *gate = to_zynqmp_clk_gate(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = gate->clk_id;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_disable(clk_id);
|
||||
|
||||
if (ret)
|
||||
pr_warn_once("%s() clock disable failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_clk_gate_is_enable() - Check clock state
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
*
|
||||
* Return: 1 if enabled, 0 if disabled else error code
|
||||
*/
|
||||
static int zynqmp_clk_gate_is_enabled(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_clk_gate *gate = to_zynqmp_clk_gate(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = gate->clk_id;
|
||||
int state, ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_getstate(clk_id, &state);
|
||||
if (ret) {
|
||||
pr_warn_once("%s() clock get state failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
return state ? 1 : 0;
|
||||
}
|
||||
|
||||
static const struct clk_ops zynqmp_clk_gate_ops = {
|
||||
.enable = zynqmp_clk_gate_enable,
|
||||
.disable = zynqmp_clk_gate_disable,
|
||||
.is_enabled = zynqmp_clk_gate_is_enabled,
|
||||
};
|
||||
|
||||
/**
|
||||
* zynqmp_clk_register_gate() - Register a gate clock with the clock framework
|
||||
* @name: Name of this clock
|
||||
* @clk_id: Id of this clock
|
||||
* @parents: Name of this clock's parents
|
||||
* @num_parents: Number of parents
|
||||
* @nodes: Clock topology node
|
||||
*
|
||||
* Return: clock hardware of the registered clock gate
|
||||
*/
|
||||
struct clk_hw *zynqmp_clk_register_gate(const char *name, u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes)
|
||||
{
|
||||
struct zynqmp_clk_gate *gate;
|
||||
struct clk_hw *hw;
|
||||
int ret;
|
||||
struct clk_init_data init;
|
||||
|
||||
/* allocate the gate */
|
||||
gate = kzalloc(sizeof(*gate), GFP_KERNEL);
|
||||
if (!gate)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
init.name = name;
|
||||
init.ops = &zynqmp_clk_gate_ops;
|
||||
init.flags = nodes->flag;
|
||||
init.parent_names = parents;
|
||||
init.num_parents = 1;
|
||||
|
||||
/* struct clk_gate assignments */
|
||||
gate->flags = nodes->type_flag;
|
||||
gate->hw.init = &init;
|
||||
gate->clk_id = clk_id;
|
||||
|
||||
hw = &gate->hw;
|
||||
ret = clk_hw_register(NULL, hw);
|
||||
if (ret) {
|
||||
kfree(gate);
|
||||
hw = ERR_PTR(ret);
|
||||
}
|
||||
|
||||
return hw;
|
||||
}
|
||||
141
drivers/clk/zynqmp/clk-mux-zynqmp.c
Normal file
141
drivers/clk/zynqmp/clk-mux-zynqmp.c
Normal file
@@ -0,0 +1,141 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Zynq UltraScale+ MPSoC mux
|
||||
*
|
||||
* Copyright (C) 2016-2018 Xilinx
|
||||
*/
|
||||
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/slab.h>
|
||||
#include "clk-zynqmp.h"
|
||||
|
||||
/*
|
||||
* DOC: basic adjustable multiplexer clock that cannot gate
|
||||
*
|
||||
* Traits of this clock:
|
||||
* prepare - clk_prepare only ensures that parents are prepared
|
||||
* enable - clk_enable only ensures that parents are enabled
|
||||
* rate - rate is only affected by parent switching. No clk_set_rate support
|
||||
* parent - parent is adjustable through clk_set_parent
|
||||
*/
|
||||
|
||||
/**
|
||||
* struct zynqmp_clk_mux - multiplexer clock
|
||||
*
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
* @flags: hardware-specific flags
|
||||
* @clk_id: Id of clock
|
||||
*/
|
||||
struct zynqmp_clk_mux {
|
||||
struct clk_hw hw;
|
||||
u8 flags;
|
||||
u32 clk_id;
|
||||
};
|
||||
|
||||
#define to_zynqmp_clk_mux(_hw) container_of(_hw, struct zynqmp_clk_mux, hw)
|
||||
|
||||
/**
|
||||
* zynqmp_clk_mux_get_parent() - Get parent of clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
*
|
||||
* Return: Parent index
|
||||
*/
|
||||
static u8 zynqmp_clk_mux_get_parent(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_clk_mux *mux = to_zynqmp_clk_mux(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = mux->clk_id;
|
||||
u32 val;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_getparent(clk_id, &val);
|
||||
|
||||
if (ret)
|
||||
pr_warn_once("%s() getparent failed for clock: %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
return val;
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_clk_mux_set_parent() - Set parent of clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
* @index: Parent index
|
||||
*
|
||||
* Return: 0 on success else error+reason
|
||||
*/
|
||||
static int zynqmp_clk_mux_set_parent(struct clk_hw *hw, u8 index)
|
||||
{
|
||||
struct zynqmp_clk_mux *mux = to_zynqmp_clk_mux(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = mux->clk_id;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_setparent(clk_id, index);
|
||||
|
||||
if (ret)
|
||||
pr_warn_once("%s() set parent failed for clock: %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct clk_ops zynqmp_clk_mux_ops = {
|
||||
.get_parent = zynqmp_clk_mux_get_parent,
|
||||
.set_parent = zynqmp_clk_mux_set_parent,
|
||||
.determine_rate = __clk_mux_determine_rate,
|
||||
};
|
||||
|
||||
static const struct clk_ops zynqmp_clk_mux_ro_ops = {
|
||||
.get_parent = zynqmp_clk_mux_get_parent,
|
||||
};
|
||||
|
||||
/**
|
||||
* zynqmp_clk_register_mux() - Register a mux table with the clock
|
||||
* framework
|
||||
* @name: Name of this clock
|
||||
* @clk_id: Id of this clock
|
||||
* @parents: Name of this clock's parents
|
||||
* @num_parents: Number of parents
|
||||
* @nodes: Clock topology node
|
||||
*
|
||||
* Return: clock hardware of the registered clock mux
|
||||
*/
|
||||
struct clk_hw *zynqmp_clk_register_mux(const char *name, u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes)
|
||||
{
|
||||
struct zynqmp_clk_mux *mux;
|
||||
struct clk_hw *hw;
|
||||
struct clk_init_data init;
|
||||
int ret;
|
||||
|
||||
mux = kzalloc(sizeof(*mux), GFP_KERNEL);
|
||||
if (!mux)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
init.name = name;
|
||||
if (nodes->type_flag & CLK_MUX_READ_ONLY)
|
||||
init.ops = &zynqmp_clk_mux_ro_ops;
|
||||
else
|
||||
init.ops = &zynqmp_clk_mux_ops;
|
||||
init.flags = nodes->flag;
|
||||
init.parent_names = parents;
|
||||
init.num_parents = num_parents;
|
||||
mux->flags = nodes->type_flag;
|
||||
mux->hw.init = &init;
|
||||
mux->clk_id = clk_id;
|
||||
|
||||
hw = &mux->hw;
|
||||
ret = clk_hw_register(NULL, hw);
|
||||
if (ret) {
|
||||
kfree(hw);
|
||||
hw = ERR_PTR(ret);
|
||||
}
|
||||
|
||||
return hw;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(zynqmp_clk_register_mux);
|
||||
68
drivers/clk/zynqmp/clk-zynqmp.h
Normal file
68
drivers/clk/zynqmp/clk-zynqmp.h
Normal file
@@ -0,0 +1,68 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (C) 2016-2018 Xilinx
|
||||
*/
|
||||
|
||||
#ifndef __LINUX_CLK_ZYNQMP_H_
|
||||
#define __LINUX_CLK_ZYNQMP_H_
|
||||
|
||||
#include <linux/spinlock.h>
|
||||
|
||||
#include <linux/firmware/xlnx-zynqmp.h>
|
||||
|
||||
/* Clock APIs payload parameters */
|
||||
#define CLK_GET_NAME_RESP_LEN 16
|
||||
#define CLK_GET_TOPOLOGY_RESP_WORDS 3
|
||||
#define CLK_GET_PARENTS_RESP_WORDS 3
|
||||
#define CLK_GET_ATTR_RESP_WORDS 1
|
||||
|
||||
enum topology_type {
|
||||
TYPE_INVALID,
|
||||
TYPE_MUX,
|
||||
TYPE_PLL,
|
||||
TYPE_FIXEDFACTOR,
|
||||
TYPE_DIV1,
|
||||
TYPE_DIV2,
|
||||
TYPE_GATE,
|
||||
};
|
||||
|
||||
/**
|
||||
* struct clock_topology - Clock topology
|
||||
* @type: Type of topology
|
||||
* @flag: Topology flags
|
||||
* @type_flag: Topology type specific flag
|
||||
*/
|
||||
struct clock_topology {
|
||||
u32 type;
|
||||
u32 flag;
|
||||
u32 type_flag;
|
||||
};
|
||||
|
||||
struct clk_hw *zynqmp_clk_register_pll(const char *name, u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes);
|
||||
|
||||
struct clk_hw *zynqmp_clk_register_gate(const char *name, u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes);
|
||||
|
||||
struct clk_hw *zynqmp_clk_register_divider(const char *name,
|
||||
u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes);
|
||||
|
||||
struct clk_hw *zynqmp_clk_register_mux(const char *name, u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes);
|
||||
|
||||
struct clk_hw *zynqmp_clk_register_fixed_factor(const char *name,
|
||||
u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes);
|
||||
|
||||
#endif
|
||||
716
drivers/clk/zynqmp/clkc.c
Normal file
716
drivers/clk/zynqmp/clkc.c
Normal file
File diff suppressed because it is too large
Load Diff
217
drivers/clk/zynqmp/divider.c
Normal file
217
drivers/clk/zynqmp/divider.c
Normal file
@@ -0,0 +1,217 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Zynq UltraScale+ MPSoC Divider support
|
||||
*
|
||||
* Copyright (C) 2016-2018 Xilinx
|
||||
*
|
||||
* Adjustable divider clock implementation
|
||||
*/
|
||||
|
||||
#include <linux/clk.h>
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/slab.h>
|
||||
#include "clk-zynqmp.h"
|
||||
|
||||
/*
|
||||
* DOC: basic adjustable divider clock that cannot gate
|
||||
*
|
||||
* Traits of this clock:
|
||||
* prepare - clk_prepare only ensures that parents are prepared
|
||||
* enable - clk_enable only ensures that parents are enabled
|
||||
* rate - rate is adjustable. clk->rate = ceiling(parent->rate / divisor)
|
||||
* parent - fixed parent. No clk_set_parent support
|
||||
*/
|
||||
|
||||
#define to_zynqmp_clk_divider(_hw) \
|
||||
container_of(_hw, struct zynqmp_clk_divider, hw)
|
||||
|
||||
#define CLK_FRAC BIT(13) /* has a fractional parent */
|
||||
|
||||
/**
|
||||
* struct zynqmp_clk_divider - adjustable divider clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
* @flags: Hardware specific flags
|
||||
* @clk_id: Id of clock
|
||||
* @div_type: divisor type (TYPE_DIV1 or TYPE_DIV2)
|
||||
*/
|
||||
struct zynqmp_clk_divider {
|
||||
struct clk_hw hw;
|
||||
u8 flags;
|
||||
u32 clk_id;
|
||||
u32 div_type;
|
||||
};
|
||||
|
||||
static inline int zynqmp_divider_get_val(unsigned long parent_rate,
|
||||
unsigned long rate)
|
||||
{
|
||||
return DIV_ROUND_CLOSEST(parent_rate, rate);
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_clk_divider_recalc_rate() - Recalc rate of divider clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
* @parent_rate: rate of parent clock
|
||||
*
|
||||
* Return: 0 on success else error+reason
|
||||
*/
|
||||
static unsigned long zynqmp_clk_divider_recalc_rate(struct clk_hw *hw,
|
||||
unsigned long parent_rate)
|
||||
{
|
||||
struct zynqmp_clk_divider *divider = to_zynqmp_clk_divider(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = divider->clk_id;
|
||||
u32 div_type = divider->div_type;
|
||||
u32 div, value;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_getdivider(clk_id, &div);
|
||||
|
||||
if (ret)
|
||||
pr_warn_once("%s() get divider failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
if (div_type == TYPE_DIV1)
|
||||
value = div & 0xFFFF;
|
||||
else
|
||||
value = div >> 16;
|
||||
|
||||
return DIV_ROUND_UP_ULL(parent_rate, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_clk_divider_round_rate() - Round rate of divider clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
* @rate: rate of clock to be set
|
||||
* @prate: rate of parent clock
|
||||
*
|
||||
* Return: 0 on success else error+reason
|
||||
*/
|
||||
static long zynqmp_clk_divider_round_rate(struct clk_hw *hw,
|
||||
unsigned long rate,
|
||||
unsigned long *prate)
|
||||
{
|
||||
struct zynqmp_clk_divider *divider = to_zynqmp_clk_divider(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = divider->clk_id;
|
||||
u32 div_type = divider->div_type;
|
||||
u32 bestdiv;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
/* if read only, just return current value */
|
||||
if (divider->flags & CLK_DIVIDER_READ_ONLY) {
|
||||
ret = eemi_ops->clock_getdivider(clk_id, &bestdiv);
|
||||
|
||||
if (ret)
|
||||
pr_warn_once("%s() get divider failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
if (div_type == TYPE_DIV1)
|
||||
bestdiv = bestdiv & 0xFFFF;
|
||||
else
|
||||
bestdiv = bestdiv >> 16;
|
||||
|
||||
return DIV_ROUND_UP_ULL((u64)*prate, bestdiv);
|
||||
}
|
||||
|
||||
bestdiv = zynqmp_divider_get_val(*prate, rate);
|
||||
|
||||
if ((clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT) &&
|
||||
(divider->flags & CLK_FRAC))
|
||||
bestdiv = rate % *prate ? 1 : bestdiv;
|
||||
*prate = rate * bestdiv;
|
||||
|
||||
return rate;
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_clk_divider_set_rate() - Set rate of divider clock
|
||||
* @hw: handle between common and hardware-specific interfaces
|
||||
* @rate: rate of clock to be set
|
||||
* @parent_rate: rate of parent clock
|
||||
*
|
||||
* Return: 0 on success else error+reason
|
||||
*/
|
||||
static int zynqmp_clk_divider_set_rate(struct clk_hw *hw, unsigned long rate,
|
||||
unsigned long parent_rate)
|
||||
{
|
||||
struct zynqmp_clk_divider *divider = to_zynqmp_clk_divider(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = divider->clk_id;
|
||||
u32 div_type = divider->div_type;
|
||||
u32 value, div;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
value = zynqmp_divider_get_val(parent_rate, rate);
|
||||
if (div_type == TYPE_DIV1) {
|
||||
div = value & 0xFFFF;
|
||||
div |= 0xffff << 16;
|
||||
} else {
|
||||
div = 0xffff;
|
||||
div |= value << 16;
|
||||
}
|
||||
|
||||
ret = eemi_ops->clock_setdivider(clk_id, div);
|
||||
|
||||
if (ret)
|
||||
pr_warn_once("%s() set divider failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct clk_ops zynqmp_clk_divider_ops = {
|
||||
.recalc_rate = zynqmp_clk_divider_recalc_rate,
|
||||
.round_rate = zynqmp_clk_divider_round_rate,
|
||||
.set_rate = zynqmp_clk_divider_set_rate,
|
||||
};
|
||||
|
||||
/**
|
||||
* zynqmp_clk_register_divider() - Register a divider clock
|
||||
* @name: Name of this clock
|
||||
* @clk_id: Id of clock
|
||||
* @parents: Name of this clock's parents
|
||||
* @num_parents: Number of parents
|
||||
* @nodes: Clock topology node
|
||||
*
|
||||
* Return: clock hardware to registered clock divider
|
||||
*/
|
||||
struct clk_hw *zynqmp_clk_register_divider(const char *name,
|
||||
u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes)
|
||||
{
|
||||
struct zynqmp_clk_divider *div;
|
||||
struct clk_hw *hw;
|
||||
struct clk_init_data init;
|
||||
int ret;
|
||||
|
||||
/* allocate the divider */
|
||||
div = kzalloc(sizeof(*div), GFP_KERNEL);
|
||||
if (!div)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
init.name = name;
|
||||
init.ops = &zynqmp_clk_divider_ops;
|
||||
init.flags = nodes->flag;
|
||||
init.parent_names = parents;
|
||||
init.num_parents = 1;
|
||||
|
||||
/* struct clk_divider assignments */
|
||||
div->flags = nodes->type_flag;
|
||||
div->hw.init = &init;
|
||||
div->clk_id = clk_id;
|
||||
div->div_type = nodes->type;
|
||||
|
||||
hw = &div->hw;
|
||||
ret = clk_hw_register(NULL, hw);
|
||||
if (ret) {
|
||||
kfree(div);
|
||||
hw = ERR_PTR(ret);
|
||||
}
|
||||
|
||||
return hw;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(zynqmp_clk_register_divider);
|
||||
335
drivers/clk/zynqmp/pll.c
Normal file
335
drivers/clk/zynqmp/pll.c
Normal file
@@ -0,0 +1,335 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Zynq UltraScale+ MPSoC PLL driver
|
||||
*
|
||||
* Copyright (C) 2016-2018 Xilinx
|
||||
*/
|
||||
|
||||
#include <linux/clk.h>
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/slab.h>
|
||||
#include "clk-zynqmp.h"
|
||||
|
||||
/**
|
||||
* struct zynqmp_pll - PLL clock
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
* @clk_id: PLL clock ID
|
||||
*/
|
||||
struct zynqmp_pll {
|
||||
struct clk_hw hw;
|
||||
u32 clk_id;
|
||||
};
|
||||
|
||||
#define to_zynqmp_pll(_hw) container_of(_hw, struct zynqmp_pll, hw)
|
||||
|
||||
#define PLL_FBDIV_MIN 25
|
||||
#define PLL_FBDIV_MAX 125
|
||||
|
||||
#define PS_PLL_VCO_MIN 1500000000
|
||||
#define PS_PLL_VCO_MAX 3000000000UL
|
||||
|
||||
enum pll_mode {
|
||||
PLL_MODE_INT,
|
||||
PLL_MODE_FRAC,
|
||||
};
|
||||
|
||||
#define FRAC_OFFSET 0x8
|
||||
#define PLLFCFG_FRAC_EN BIT(31)
|
||||
#define FRAC_DIV BIT(16) /* 2^16 */
|
||||
|
||||
/**
|
||||
* zynqmp_pll_get_mode() - Get mode of PLL
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
*
|
||||
* Return: Mode of PLL
|
||||
*/
|
||||
static inline enum pll_mode zynqmp_pll_get_mode(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_pll *clk = to_zynqmp_pll(hw);
|
||||
u32 clk_id = clk->clk_id;
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 ret_payload[PAYLOAD_ARG_CNT];
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->ioctl(0, IOCTL_GET_PLL_FRAC_MODE, clk_id, 0,
|
||||
ret_payload);
|
||||
if (ret)
|
||||
pr_warn_once("%s() PLL get frac mode failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
return ret_payload[1];
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_pll_set_mode() - Set the PLL mode
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
* @on: Flag to determine the mode
|
||||
*/
|
||||
static inline void zynqmp_pll_set_mode(struct clk_hw *hw, bool on)
|
||||
{
|
||||
struct zynqmp_pll *clk = to_zynqmp_pll(hw);
|
||||
u32 clk_id = clk->clk_id;
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
int ret;
|
||||
u32 mode;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
if (on)
|
||||
mode = PLL_MODE_FRAC;
|
||||
else
|
||||
mode = PLL_MODE_INT;
|
||||
|
||||
ret = eemi_ops->ioctl(0, IOCTL_SET_PLL_FRAC_MODE, clk_id, mode, NULL);
|
||||
if (ret)
|
||||
pr_warn_once("%s() PLL set frac mode failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_pll_round_rate() - Round a clock frequency
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
* @rate: Desired clock frequency
|
||||
* @prate: Clock frequency of parent clock
|
||||
*
|
||||
* Return: Frequency closest to @rate the hardware can generate
|
||||
*/
|
||||
static long zynqmp_pll_round_rate(struct clk_hw *hw, unsigned long rate,
|
||||
unsigned long *prate)
|
||||
{
|
||||
u32 fbdiv;
|
||||
long rate_div, f;
|
||||
|
||||
/* Enable the fractional mode if needed */
|
||||
rate_div = (rate * FRAC_DIV) / *prate;
|
||||
f = rate_div % FRAC_DIV;
|
||||
zynqmp_pll_set_mode(hw, !!f);
|
||||
|
||||
if (zynqmp_pll_get_mode(hw) == PLL_MODE_FRAC) {
|
||||
if (rate > PS_PLL_VCO_MAX) {
|
||||
fbdiv = rate / PS_PLL_VCO_MAX;
|
||||
rate = rate / (fbdiv + 1);
|
||||
}
|
||||
if (rate < PS_PLL_VCO_MIN) {
|
||||
fbdiv = DIV_ROUND_UP(PS_PLL_VCO_MIN, rate);
|
||||
rate = rate * fbdiv;
|
||||
}
|
||||
return rate;
|
||||
}
|
||||
|
||||
fbdiv = DIV_ROUND_CLOSEST(rate, *prate);
|
||||
fbdiv = clamp_t(u32, fbdiv, PLL_FBDIV_MIN, PLL_FBDIV_MAX);
|
||||
return *prate * fbdiv;
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_pll_recalc_rate() - Recalculate clock frequency
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
* @parent_rate: Clock frequency of parent clock
|
||||
*
|
||||
* Return: Current clock frequency
|
||||
*/
|
||||
static unsigned long zynqmp_pll_recalc_rate(struct clk_hw *hw,
|
||||
unsigned long parent_rate)
|
||||
{
|
||||
struct zynqmp_pll *clk = to_zynqmp_pll(hw);
|
||||
u32 clk_id = clk->clk_id;
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 fbdiv, data;
|
||||
unsigned long rate, frac;
|
||||
u32 ret_payload[PAYLOAD_ARG_CNT];
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_getdivider(clk_id, &fbdiv);
|
||||
if (ret)
|
||||
pr_warn_once("%s() get divider failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
rate = parent_rate * fbdiv;
|
||||
if (zynqmp_pll_get_mode(hw) == PLL_MODE_FRAC) {
|
||||
eemi_ops->ioctl(0, IOCTL_GET_PLL_FRAC_DATA, clk_id, 0,
|
||||
ret_payload);
|
||||
data = ret_payload[1];
|
||||
frac = (parent_rate * data) / FRAC_DIV;
|
||||
rate = rate + frac;
|
||||
}
|
||||
|
||||
return rate;
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_pll_set_rate() - Set rate of PLL
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
* @rate: Frequency of clock to be set
|
||||
* @parent_rate: Clock frequency of parent clock
|
||||
*
|
||||
* Set PLL divider to set desired rate.
|
||||
*
|
||||
* Returns: rate which is set on success else error code
|
||||
*/
|
||||
static int zynqmp_pll_set_rate(struct clk_hw *hw, unsigned long rate,
|
||||
unsigned long parent_rate)
|
||||
{
|
||||
struct zynqmp_pll *clk = to_zynqmp_pll(hw);
|
||||
u32 clk_id = clk->clk_id;
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 fbdiv;
|
||||
long rate_div, frac, m, f;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
if (zynqmp_pll_get_mode(hw) == PLL_MODE_FRAC) {
|
||||
rate_div = (rate * FRAC_DIV) / parent_rate;
|
||||
m = rate_div / FRAC_DIV;
|
||||
f = rate_div % FRAC_DIV;
|
||||
m = clamp_t(u32, m, (PLL_FBDIV_MIN), (PLL_FBDIV_MAX));
|
||||
rate = parent_rate * m;
|
||||
frac = (parent_rate * f) / FRAC_DIV;
|
||||
|
||||
ret = eemi_ops->clock_setdivider(clk_id, m);
|
||||
if (ret)
|
||||
pr_warn_once("%s() set divider failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
eemi_ops->ioctl(0, IOCTL_SET_PLL_FRAC_DATA, clk_id, f, NULL);
|
||||
|
||||
return rate + frac;
|
||||
}
|
||||
|
||||
fbdiv = DIV_ROUND_CLOSEST(rate, parent_rate);
|
||||
fbdiv = clamp_t(u32, fbdiv, PLL_FBDIV_MIN, PLL_FBDIV_MAX);
|
||||
ret = eemi_ops->clock_setdivider(clk_id, fbdiv);
|
||||
if (ret)
|
||||
pr_warn_once("%s() set divider failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
return parent_rate * fbdiv;
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_pll_is_enabled() - Check if a clock is enabled
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
*
|
||||
* Return: 1 if the clock is enabled, 0 otherwise
|
||||
*/
|
||||
static int zynqmp_pll_is_enabled(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_pll *clk = to_zynqmp_pll(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = clk->clk_id;
|
||||
unsigned int state;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
ret = eemi_ops->clock_getstate(clk_id, &state);
|
||||
if (ret) {
|
||||
pr_warn_once("%s() clock get state failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
return state ? 1 : 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_pll_enable() - Enable clock
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
*
|
||||
* Return: 0 on success else error code
|
||||
*/
|
||||
static int zynqmp_pll_enable(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_pll *clk = to_zynqmp_pll(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = clk->clk_id;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
if (zynqmp_pll_is_enabled(hw))
|
||||
return 0;
|
||||
|
||||
ret = eemi_ops->clock_enable(clk_id);
|
||||
if (ret)
|
||||
pr_warn_once("%s() clock enable failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* zynqmp_pll_disable() - Disable clock
|
||||
* @hw: Handle between common and hardware-specific interfaces
|
||||
*/
|
||||
static void zynqmp_pll_disable(struct clk_hw *hw)
|
||||
{
|
||||
struct zynqmp_pll *clk = to_zynqmp_pll(hw);
|
||||
const char *clk_name = clk_hw_get_name(hw);
|
||||
u32 clk_id = clk->clk_id;
|
||||
int ret;
|
||||
const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
|
||||
|
||||
if (!zynqmp_pll_is_enabled(hw))
|
||||
return;
|
||||
|
||||
ret = eemi_ops->clock_disable(clk_id);
|
||||
if (ret)
|
||||
pr_warn_once("%s() clock disable failed for %s, ret = %d\n",
|
||||
__func__, clk_name, ret);
|
||||
}
|
||||
|
||||
static const struct clk_ops zynqmp_pll_ops = {
|
||||
.enable = zynqmp_pll_enable,
|
||||
.disable = zynqmp_pll_disable,
|
||||
.is_enabled = zynqmp_pll_is_enabled,
|
||||
.round_rate = zynqmp_pll_round_rate,
|
||||
.recalc_rate = zynqmp_pll_recalc_rate,
|
||||
.set_rate = zynqmp_pll_set_rate,
|
||||
};
|
||||
|
||||
/**
|
||||
* zynqmp_clk_register_pll() - Register PLL with the clock framework
|
||||
* @name: PLL name
|
||||
* @clk_id: Clock ID
|
||||
* @parents: Name of this clock's parents
|
||||
* @num_parents: Number of parents
|
||||
* @nodes: Clock topology node
|
||||
*
|
||||
* Return: clock hardware to the registered clock
|
||||
*/
|
||||
struct clk_hw *zynqmp_clk_register_pll(const char *name, u32 clk_id,
|
||||
const char * const *parents,
|
||||
u8 num_parents,
|
||||
const struct clock_topology *nodes)
|
||||
{
|
||||
struct zynqmp_pll *pll;
|
||||
struct clk_hw *hw;
|
||||
struct clk_init_data init;
|
||||
int ret;
|
||||
|
||||
init.name = name;
|
||||
init.ops = &zynqmp_pll_ops;
|
||||
init.flags = nodes->flag;
|
||||
init.parent_names = parents;
|
||||
init.num_parents = 1;
|
||||
|
||||
pll = kzalloc(sizeof(*pll), GFP_KERNEL);
|
||||
if (!pll)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
pll->hw.init = &init;
|
||||
pll->clk_id = clk_id;
|
||||
|
||||
hw = &pll->hw;
|
||||
ret = clk_hw_register(NULL, hw);
|
||||
if (ret) {
|
||||
kfree(pll);
|
||||
return ERR_PTR(ret);
|
||||
}
|
||||
|
||||
clk_hw_set_rate_range(hw, PS_PLL_VCO_MIN, PS_PLL_VCO_MAX);
|
||||
if (ret < 0)
|
||||
pr_err("%s:ERROR clk_set_rate_range failed %d\n", name, ret);
|
||||
|
||||
return hw;
|
||||
}
|
||||
@@ -72,6 +72,7 @@ enum pm_query_id {
|
||||
PM_QID_CLOCK_GET_FIXEDFACTOR_PARAMS,
|
||||
PM_QID_CLOCK_GET_PARENTS,
|
||||
PM_QID_CLOCK_GET_ATTRIBUTES,
|
||||
PM_QID_CLOCK_GET_NUM_CLOCKS = 12,
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user