2019-05-27 08:55:01 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-06-29 21:05:31 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Maxime Ripard
|
|
|
|
* Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/clk-provider.h>
|
2019-04-18 15:20:22 -07:00
|
|
|
#include <linux/io.h>
|
2016-06-29 21:05:31 +02:00
|
|
|
|
|
|
|
#include "ccu_frac.h"
|
|
|
|
#include "ccu_gate.h"
|
|
|
|
#include "ccu_nm.h"
|
|
|
|
|
2016-09-29 22:53:12 +02:00
|
|
|
struct _ccu_nm {
|
2016-09-29 22:57:26 +02:00
|
|
|
unsigned long n, min_n, max_n;
|
|
|
|
unsigned long m, min_m, max_m;
|
2016-09-29 22:53:12 +02:00
|
|
|
};
|
|
|
|
|
2018-11-04 19:26:40 +01:00
|
|
|
static unsigned long ccu_nm_calc_rate(unsigned long parent,
|
|
|
|
unsigned long n, unsigned long m)
|
|
|
|
{
|
|
|
|
u64 rate = parent;
|
|
|
|
|
|
|
|
rate *= n;
|
|
|
|
do_div(rate, m);
|
|
|
|
|
|
|
|
return rate;
|
|
|
|
}
|
|
|
|
|
2023-08-07 14:43:39 +02:00
|
|
|
static unsigned long ccu_nm_find_best(struct ccu_common *common, unsigned long parent,
|
|
|
|
unsigned long rate, struct _ccu_nm *nm)
|
2016-09-29 22:53:12 +02:00
|
|
|
{
|
|
|
|
unsigned long best_rate = 0;
|
|
|
|
unsigned long best_n = 0, best_m = 0;
|
|
|
|
unsigned long _n, _m;
|
|
|
|
|
2016-09-29 22:57:26 +02:00
|
|
|
for (_n = nm->min_n; _n <= nm->max_n; _n++) {
|
|
|
|
for (_m = nm->min_m; _m <= nm->max_m; _m++) {
|
2018-11-04 19:26:40 +01:00
|
|
|
unsigned long tmp_rate = ccu_nm_calc_rate(parent,
|
|
|
|
_n, _m);
|
2016-09-29 22:53:12 +02:00
|
|
|
|
2023-08-07 14:43:39 +02:00
|
|
|
if (ccu_is_better_rate(common, rate, tmp_rate, best_rate)) {
|
2016-09-29 22:53:12 +02:00
|
|
|
best_rate = tmp_rate;
|
|
|
|
best_n = _n;
|
|
|
|
best_m = _m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nm->n = best_n;
|
|
|
|
nm->m = best_m;
|
2022-12-31 11:30:55 -06:00
|
|
|
|
|
|
|
return best_rate;
|
2016-09-29 22:53:12 +02:00
|
|
|
}
|
|
|
|
|
2016-06-29 21:05:31 +02:00
|
|
|
static void ccu_nm_disable(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct ccu_nm *nm = hw_to_ccu_nm(hw);
|
|
|
|
|
|
|
|
return ccu_gate_helper_disable(&nm->common, nm->enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ccu_nm_enable(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct ccu_nm *nm = hw_to_ccu_nm(hw);
|
|
|
|
|
|
|
|
return ccu_gate_helper_enable(&nm->common, nm->enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ccu_nm_is_enabled(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct ccu_nm *nm = hw_to_ccu_nm(hw);
|
|
|
|
|
|
|
|
return ccu_gate_helper_is_enabled(&nm->common, nm->enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long ccu_nm_recalc_rate(struct clk_hw *hw,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct ccu_nm *nm = hw_to_ccu_nm(hw);
|
2017-12-08 16:35:10 +08:00
|
|
|
unsigned long rate;
|
2016-06-29 21:05:31 +02:00
|
|
|
unsigned long n, m;
|
|
|
|
u32 reg;
|
|
|
|
|
2017-12-08 16:35:10 +08:00
|
|
|
if (ccu_frac_helper_is_enabled(&nm->common, &nm->frac)) {
|
|
|
|
rate = ccu_frac_helper_read_rate(&nm->common, &nm->frac);
|
|
|
|
|
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
|
|
|
rate /= nm->fixed_post_div;
|
|
|
|
|
|
|
|
return rate;
|
|
|
|
}
|
2016-06-29 21:05:31 +02:00
|
|
|
|
|
|
|
reg = readl(nm->common.base + nm->common.reg);
|
|
|
|
|
|
|
|
n = reg >> nm->n.shift;
|
|
|
|
n &= (1 << nm->n.width) - 1;
|
2016-11-08 18:12:34 +01:00
|
|
|
n += nm->n.offset;
|
|
|
|
if (!n)
|
|
|
|
n++;
|
2016-06-29 21:05:31 +02:00
|
|
|
|
|
|
|
m = reg >> nm->m.shift;
|
|
|
|
m &= (1 << nm->m.width) - 1;
|
2016-11-08 18:12:34 +01:00
|
|
|
m += nm->m.offset;
|
|
|
|
if (!m)
|
|
|
|
m++;
|
2016-06-29 21:05:31 +02:00
|
|
|
|
2017-12-08 16:35:10 +08:00
|
|
|
if (ccu_sdm_helper_is_enabled(&nm->common, &nm->sdm))
|
|
|
|
rate = ccu_sdm_helper_read_rate(&nm->common, &nm->sdm, m, n);
|
|
|
|
else
|
2018-11-04 19:26:40 +01:00
|
|
|
rate = ccu_nm_calc_rate(parent_rate, n, m);
|
2017-12-08 16:35:10 +08:00
|
|
|
|
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
|
|
|
rate /= nm->fixed_post_div;
|
2017-10-12 16:37:00 +08:00
|
|
|
|
2017-12-08 16:35:10 +08:00
|
|
|
return rate;
|
2016-06-29 21:05:31 +02:00
|
|
|
}
|
|
|
|
|
2025-07-03 19:22:34 -04:00
|
|
|
static int ccu_nm_determine_rate(struct clk_hw *hw,
|
|
|
|
struct clk_rate_request *req)
|
2016-06-29 21:05:31 +02:00
|
|
|
{
|
|
|
|
struct ccu_nm *nm = hw_to_ccu_nm(hw);
|
2016-09-29 22:53:12 +02:00
|
|
|
struct _ccu_nm _nm;
|
2016-06-29 21:05:31 +02:00
|
|
|
|
2017-12-08 16:35:10 +08:00
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
2025-07-03 19:22:34 -04:00
|
|
|
req->rate *= nm->fixed_post_div;
|
2017-12-08 16:35:10 +08:00
|
|
|
|
2025-07-03 19:22:34 -04:00
|
|
|
if (req->rate < nm->min_rate) {
|
|
|
|
req->rate = nm->min_rate;
|
2018-03-01 22:34:27 +01:00
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
2025-07-03 19:22:34 -04:00
|
|
|
req->rate /= nm->fixed_post_div;
|
|
|
|
return 0;
|
2018-03-01 22:34:27 +01:00
|
|
|
}
|
|
|
|
|
2025-07-03 19:22:34 -04:00
|
|
|
if (nm->max_rate && req->rate > nm->max_rate) {
|
|
|
|
req->rate = nm->max_rate;
|
2018-08-09 18:52:13 +02:00
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
2025-07-03 19:22:34 -04:00
|
|
|
req->rate /= nm->fixed_post_div;
|
|
|
|
return 0;
|
2018-08-09 18:52:13 +02:00
|
|
|
}
|
|
|
|
|
2025-07-03 19:22:34 -04:00
|
|
|
if (ccu_frac_helper_has_rate(&nm->common, &nm->frac, req->rate)) {
|
2017-12-08 16:35:10 +08:00
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
2025-07-03 19:22:34 -04:00
|
|
|
req->rate /= nm->fixed_post_div;
|
|
|
|
return 0;
|
2017-12-08 16:35:10 +08:00
|
|
|
}
|
2017-10-12 16:36:58 +08:00
|
|
|
|
2025-07-03 19:22:34 -04:00
|
|
|
if (ccu_sdm_helper_has_rate(&nm->common, &nm->sdm, req->rate)) {
|
2017-12-08 16:35:10 +08:00
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
2025-07-03 19:22:34 -04:00
|
|
|
req->rate /= nm->fixed_post_div;
|
|
|
|
return 0;
|
2017-12-08 16:35:10 +08:00
|
|
|
}
|
2017-10-12 16:37:00 +08:00
|
|
|
|
2017-03-24 16:33:05 +08:00
|
|
|
_nm.min_n = nm->n.min ?: 1;
|
2016-10-14 12:08:19 +02:00
|
|
|
_nm.max_n = nm->n.max ?: 1 << nm->n.width;
|
2016-09-29 22:57:26 +02:00
|
|
|
_nm.min_m = 1;
|
2016-09-29 22:53:12 +02:00
|
|
|
_nm.max_m = nm->m.max ?: 1 << nm->m.width;
|
2016-09-06 12:29:04 +02:00
|
|
|
|
2025-07-03 19:22:34 -04:00
|
|
|
req->rate = ccu_nm_find_best(&nm->common, req->best_parent_rate,
|
|
|
|
req->rate, &_nm);
|
2017-12-08 16:35:10 +08:00
|
|
|
|
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
2025-07-03 19:22:34 -04:00
|
|
|
req->rate /= nm->fixed_post_div;
|
2016-06-29 21:05:31 +02:00
|
|
|
|
2025-07-03 19:22:34 -04:00
|
|
|
return 0;
|
2016-06-29 21:05:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ccu_nm_set_rate(struct clk_hw *hw, unsigned long rate,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct ccu_nm *nm = hw_to_ccu_nm(hw);
|
2016-09-29 22:53:12 +02:00
|
|
|
struct _ccu_nm _nm;
|
2016-06-29 21:05:31 +02:00
|
|
|
unsigned long flags;
|
|
|
|
u32 reg;
|
|
|
|
|
2017-12-08 16:35:10 +08:00
|
|
|
/* Adjust target rate according to post-dividers */
|
|
|
|
if (nm->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
|
|
|
rate = rate * nm->fixed_post_div;
|
|
|
|
|
2017-07-30 18:41:47 +02:00
|
|
|
if (ccu_frac_helper_has_rate(&nm->common, &nm->frac, rate)) {
|
|
|
|
spin_lock_irqsave(nm->common.lock, flags);
|
|
|
|
|
|
|
|
/* most SoCs require M to be 0 if fractional mode is used */
|
|
|
|
reg = readl(nm->common.base + nm->common.reg);
|
|
|
|
reg &= ~GENMASK(nm->m.width + nm->m.shift - 1, nm->m.shift);
|
|
|
|
writel(reg, nm->common.base + nm->common.reg);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(nm->common.lock, flags);
|
|
|
|
|
|
|
|
ccu_frac_helper_enable(&nm->common, &nm->frac);
|
|
|
|
|
2017-07-30 18:41:50 +02:00
|
|
|
return ccu_frac_helper_set_rate(&nm->common, &nm->frac,
|
|
|
|
rate, nm->lock);
|
2017-07-30 18:41:47 +02:00
|
|
|
} else {
|
2016-06-29 21:05:31 +02:00
|
|
|
ccu_frac_helper_disable(&nm->common, &nm->frac);
|
2017-07-30 18:41:47 +02:00
|
|
|
}
|
2016-06-29 21:05:31 +02:00
|
|
|
|
2017-03-24 16:33:06 +08:00
|
|
|
_nm.min_n = nm->n.min ?: 1;
|
2016-10-14 12:08:19 +02:00
|
|
|
_nm.max_n = nm->n.max ?: 1 << nm->n.width;
|
2016-09-29 22:57:26 +02:00
|
|
|
_nm.min_m = 1;
|
2016-09-29 22:53:12 +02:00
|
|
|
_nm.max_m = nm->m.max ?: 1 << nm->m.width;
|
2016-09-06 12:29:04 +02:00
|
|
|
|
2017-10-12 16:37:00 +08:00
|
|
|
if (ccu_sdm_helper_has_rate(&nm->common, &nm->sdm, rate)) {
|
|
|
|
ccu_sdm_helper_enable(&nm->common, &nm->sdm, rate);
|
|
|
|
|
|
|
|
/* Sigma delta modulation requires specific N and M factors */
|
|
|
|
ccu_sdm_helper_get_factors(&nm->common, &nm->sdm, rate,
|
|
|
|
&_nm.m, &_nm.n);
|
|
|
|
} else {
|
|
|
|
ccu_sdm_helper_disable(&nm->common, &nm->sdm);
|
2023-08-07 14:43:39 +02:00
|
|
|
ccu_nm_find_best(&nm->common, parent_rate, rate, &_nm);
|
2017-10-12 16:37:00 +08:00
|
|
|
}
|
2016-06-29 21:05:31 +02:00
|
|
|
|
|
|
|
spin_lock_irqsave(nm->common.lock, flags);
|
|
|
|
|
|
|
|
reg = readl(nm->common.base + nm->common.reg);
|
|
|
|
reg &= ~GENMASK(nm->n.width + nm->n.shift - 1, nm->n.shift);
|
|
|
|
reg &= ~GENMASK(nm->m.width + nm->m.shift - 1, nm->m.shift);
|
|
|
|
|
2016-11-08 18:12:34 +01:00
|
|
|
reg |= (_nm.n - nm->n.offset) << nm->n.shift;
|
|
|
|
reg |= (_nm.m - nm->m.offset) << nm->m.shift;
|
|
|
|
writel(reg, nm->common.base + nm->common.reg);
|
2016-06-29 21:05:31 +02:00
|
|
|
|
|
|
|
spin_unlock_irqrestore(nm->common.lock, flags);
|
|
|
|
|
|
|
|
ccu_helper_wait_for_lock(&nm->common, nm->lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct clk_ops ccu_nm_ops = {
|
|
|
|
.disable = ccu_nm_disable,
|
|
|
|
.enable = ccu_nm_enable,
|
|
|
|
.is_enabled = ccu_nm_is_enabled,
|
|
|
|
|
|
|
|
.recalc_rate = ccu_nm_recalc_rate,
|
2025-07-03 19:22:34 -04:00
|
|
|
.determine_rate = ccu_nm_determine_rate,
|
2016-06-29 21:05:31 +02:00
|
|
|
.set_rate = ccu_nm_set_rate,
|
|
|
|
};
|
module: Convert symbol namespace to string literal
Clean up the existing export namespace code along the same lines of
commit 33def8498fdd ("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.
Scripted using
git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
do
awk -i inplace '
/^#define EXPORT_SYMBOL_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/^#define MODULE_IMPORT_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/MODULE_IMPORT_NS/ {
$0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
}
/EXPORT_SYMBOL_NS/ {
if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
$0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
$0 !~ /^my/) {
getline line;
gsub(/[[:space:]]*\\$/, "");
gsub(/[[:space:]]/, "", line);
$0 = $0 " " line;
}
$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
"\\1(\\2, \"\\3\")", "g");
}
}
{ print }' $file;
done
Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2024-12-02 15:59:47 +01:00
|
|
|
EXPORT_SYMBOL_NS_GPL(ccu_nm_ops, "SUNXI_CCU");
|