2018-06-12 05:58:38 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//
|
|
|
|
// Helper routines for R-Car sound ADG.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
2015-09-10 07:04:45 +00:00
|
|
|
#include <linux/clk-provider.h>
|
2021-05-24 15:12:14 +09:00
|
|
|
#include <linux/clkdev.h>
|
2013-07-21 21:36:46 -07:00
|
|
|
#include "rsnd.h"
|
|
|
|
|
|
|
|
#define CLKA 0
|
|
|
|
#define CLKB 1
|
|
|
|
#define CLKC 2
|
|
|
|
#define CLKI 3
|
2023-02-01 02:00:22 +00:00
|
|
|
#define CLKINMAX 4
|
2013-07-21 21:36:46 -07:00
|
|
|
|
2015-09-10 07:04:45 +00:00
|
|
|
#define CLKOUT 0
|
|
|
|
#define CLKOUT1 1
|
|
|
|
#define CLKOUT2 2
|
|
|
|
#define CLKOUT3 3
|
|
|
|
#define CLKOUTMAX 4
|
|
|
|
|
2025-04-17 23:23:23 +00:00
|
|
|
#define BRGCKR_31 (1 << 31)
|
2015-09-10 07:03:48 +00:00
|
|
|
#define BRRx_MASK(x) (0x3FF & x)
|
|
|
|
|
2015-09-10 07:02:39 +00:00
|
|
|
static struct rsnd_mod_ops adg_ops = {
|
|
|
|
.name = "adg",
|
|
|
|
};
|
|
|
|
|
2023-02-01 02:00:36 +00:00
|
|
|
#define ADG_HZ_441 0
|
|
|
|
#define ADG_HZ_48 1
|
|
|
|
#define ADG_HZ_SIZE 2
|
|
|
|
|
2013-07-21 21:36:46 -07:00
|
|
|
struct rsnd_adg {
|
2025-04-17 23:23:28 +00:00
|
|
|
struct clk *adg;
|
2023-02-01 02:00:22 +00:00
|
|
|
struct clk *clkin[CLKINMAX];
|
2015-09-10 07:04:45 +00:00
|
|
|
struct clk *clkout[CLKOUTMAX];
|
2021-06-02 08:43:50 +09:00
|
|
|
struct clk *null_clk;
|
2015-09-10 07:04:45 +00:00
|
|
|
struct clk_onecell_data onecell;
|
2015-09-10 07:02:39 +00:00
|
|
|
struct rsnd_mod mod;
|
2023-02-01 02:00:22 +00:00
|
|
|
int clkin_rate[CLKINMAX];
|
2023-02-01 02:00:32 +00:00
|
|
|
int clkin_size;
|
|
|
|
int clkout_size;
|
2016-12-07 00:28:11 +00:00
|
|
|
u32 ckr;
|
2023-02-15 15:17:41 +01:00
|
|
|
u32 brga;
|
|
|
|
u32 brgb;
|
2013-07-21 21:36:46 -07:00
|
|
|
|
2023-02-15 15:17:41 +01:00
|
|
|
int brg_rate[ADG_HZ_SIZE]; /* BRGA / BRGB */
|
2013-07-21 21:36:46 -07:00
|
|
|
};
|
|
|
|
|
2023-02-01 02:00:22 +00:00
|
|
|
#define for_each_rsnd_clkin(pos, adg, i) \
|
2014-02-11 17:15:51 -08:00
|
|
|
for (i = 0; \
|
2023-02-01 02:00:32 +00:00
|
|
|
(i < adg->clkin_size) && \
|
2023-02-01 02:00:22 +00:00
|
|
|
((pos) = adg->clkin[i]); \
|
2014-02-11 17:15:51 -08:00
|
|
|
i++)
|
2015-09-10 07:04:45 +00:00
|
|
|
#define for_each_rsnd_clkout(pos, adg, i) \
|
|
|
|
for (i = 0; \
|
2023-02-01 02:00:32 +00:00
|
|
|
(i < adg->clkout_size) && \
|
2015-09-10 07:04:45 +00:00
|
|
|
((pos) = adg->clkout[i]); \
|
|
|
|
i++)
|
2013-07-21 21:36:46 -07:00
|
|
|
#define rsnd_priv_to_adg(priv) ((struct rsnd_adg *)(priv)->adg)
|
|
|
|
|
2023-02-01 02:02:22 +00:00
|
|
|
static const char * const clkin_name_gen4[] = {
|
|
|
|
[CLKA] = "clkin",
|
|
|
|
};
|
|
|
|
|
2023-02-01 02:00:32 +00:00
|
|
|
static const char * const clkin_name_gen2[] = {
|
2017-10-13 06:03:06 +00:00
|
|
|
[CLKA] = "clk_a",
|
|
|
|
[CLKB] = "clk_b",
|
|
|
|
[CLKC] = "clk_c",
|
|
|
|
[CLKI] = "clk_i",
|
|
|
|
};
|
|
|
|
|
2023-02-01 02:00:32 +00:00
|
|
|
static const char * const clkout_name_gen2[] = {
|
2023-02-01 02:00:27 +00:00
|
|
|
[CLKOUT] = "audio_clkout",
|
|
|
|
[CLKOUT1] = "audio_clkout1",
|
|
|
|
[CLKOUT2] = "audio_clkout2",
|
|
|
|
[CLKOUT3] = "audio_clkout3",
|
|
|
|
};
|
|
|
|
|
2023-02-15 15:17:41 +01:00
|
|
|
static u32 rsnd_adg_calculate_brgx(unsigned long div)
|
2015-09-10 07:03:48 +00:00
|
|
|
{
|
2021-02-25 09:25:23 +09:00
|
|
|
int i;
|
2015-09-10 07:03:48 +00:00
|
|
|
|
|
|
|
if (!div)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 3; i >= 0; i--) {
|
2021-02-25 09:25:23 +09:00
|
|
|
int ratio = 2 << (i * 2);
|
2015-09-10 07:03:48 +00:00
|
|
|
if (0 == (div % ratio))
|
|
|
|
return (u32)((i << 8) | ((div / ratio) - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ~0;
|
|
|
|
}
|
2014-01-23 18:42:00 -08:00
|
|
|
|
2014-03-02 23:43:33 -08:00
|
|
|
static u32 rsnd_adg_ssi_ws_timing_gen2(struct rsnd_dai_stream *io)
|
2014-01-23 18:42:00 -08:00
|
|
|
{
|
2015-11-30 08:49:15 +00:00
|
|
|
struct rsnd_mod *ssi_mod = rsnd_io_to_mod_ssi(io);
|
|
|
|
int id = rsnd_mod_id(ssi_mod);
|
2014-01-23 18:42:00 -08:00
|
|
|
int ws = id;
|
|
|
|
|
2015-10-22 03:15:46 +00:00
|
|
|
if (rsnd_ssi_is_pin_sharing(io)) {
|
2014-01-23 18:42:00 -08:00
|
|
|
switch (id) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
2019-06-26 11:00:05 +09:00
|
|
|
case 9:
|
2014-01-23 18:42:00 -08:00
|
|
|
ws = 0;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
ws = 3;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
ws = 7;
|
|
|
|
break;
|
|
|
|
}
|
2024-03-01 09:50:03 +01:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* SSI8 is not connected to ADG.
|
|
|
|
* Thus SSI9 is using ws = 8
|
|
|
|
*/
|
|
|
|
if (id == 9)
|
|
|
|
ws = 8;
|
2014-01-23 18:42:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0x6 + ws) << 8;
|
|
|
|
}
|
|
|
|
|
2016-03-07 05:09:14 +00:00
|
|
|
static void __rsnd_adg_get_timesel_ratio(struct rsnd_priv *priv,
|
|
|
|
struct rsnd_dai_stream *io,
|
|
|
|
unsigned int target_rate,
|
|
|
|
unsigned int *target_val,
|
|
|
|
unsigned int *target_en)
|
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2021-02-25 09:25:23 +09:00
|
|
|
int sel;
|
2016-03-07 05:09:14 +00:00
|
|
|
unsigned int val, en;
|
|
|
|
unsigned int min, diff;
|
|
|
|
unsigned int sel_rate[] = {
|
2023-02-01 02:00:22 +00:00
|
|
|
adg->clkin_rate[CLKA], /* 0000: CLKA */
|
|
|
|
adg->clkin_rate[CLKB], /* 0001: CLKB */
|
|
|
|
adg->clkin_rate[CLKC], /* 0010: CLKC */
|
2023-02-15 15:17:41 +01:00
|
|
|
adg->brg_rate[ADG_HZ_441], /* 0011: BRGA */
|
|
|
|
adg->brg_rate[ADG_HZ_48], /* 0100: BRGB */
|
2016-03-07 05:09:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
min = ~0;
|
|
|
|
val = 0;
|
|
|
|
en = 0;
|
|
|
|
for (sel = 0; sel < ARRAY_SIZE(sel_rate); sel++) {
|
2021-02-25 09:25:23 +09:00
|
|
|
int idx = 0;
|
|
|
|
int step = 2;
|
|
|
|
int div;
|
2016-03-07 05:09:14 +00:00
|
|
|
|
|
|
|
if (!sel_rate[sel])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (div = 2; div <= 98304; div += step) {
|
|
|
|
diff = abs(target_rate - sel_rate[sel] / div);
|
|
|
|
if (min > diff) {
|
|
|
|
val = (sel << 8) | idx;
|
|
|
|
min = diff;
|
|
|
|
en = 1 << (sel + 1); /* fixme */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* step of 0_0000 / 0_0001 / 0_1101
|
|
|
|
* are out of order
|
|
|
|
*/
|
|
|
|
if ((idx > 2) && (idx % 2))
|
|
|
|
step *= 2;
|
|
|
|
if (idx == 0x1c) {
|
|
|
|
div += step;
|
|
|
|
step *= 2;
|
|
|
|
}
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (min == ~0) {
|
|
|
|
dev_err(dev, "no Input clock\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
*target_val = val;
|
|
|
|
if (target_en)
|
|
|
|
*target_en = en;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rsnd_adg_get_timesel_ratio(struct rsnd_priv *priv,
|
|
|
|
struct rsnd_dai_stream *io,
|
|
|
|
unsigned int in_rate,
|
|
|
|
unsigned int out_rate,
|
|
|
|
u32 *in, u32 *out, u32 *en)
|
|
|
|
{
|
|
|
|
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
|
|
|
|
unsigned int target_rate;
|
|
|
|
u32 *target_val;
|
|
|
|
u32 _in;
|
|
|
|
u32 _out;
|
|
|
|
u32 _en;
|
|
|
|
|
|
|
|
/* default = SSI WS */
|
|
|
|
_in =
|
|
|
|
_out = rsnd_adg_ssi_ws_timing_gen2(io);
|
|
|
|
|
|
|
|
target_rate = 0;
|
|
|
|
target_val = NULL;
|
|
|
|
_en = 0;
|
|
|
|
if (runtime->rate != in_rate) {
|
|
|
|
target_rate = out_rate;
|
|
|
|
target_val = &_out;
|
|
|
|
} else if (runtime->rate != out_rate) {
|
|
|
|
target_rate = in_rate;
|
|
|
|
target_val = &_in;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target_rate)
|
|
|
|
__rsnd_adg_get_timesel_ratio(priv, io,
|
|
|
|
target_rate,
|
|
|
|
target_val, &_en);
|
|
|
|
|
|
|
|
if (in)
|
|
|
|
*in = _in;
|
|
|
|
if (out)
|
|
|
|
*out = _out;
|
|
|
|
if (en)
|
|
|
|
*en = _en;
|
|
|
|
}
|
|
|
|
|
2015-11-30 08:49:15 +00:00
|
|
|
int rsnd_adg_set_cmd_timsel_gen2(struct rsnd_mod *cmd_mod,
|
2014-05-08 17:44:49 -07:00
|
|
|
struct rsnd_dai_stream *io)
|
|
|
|
{
|
2015-11-30 08:49:15 +00:00
|
|
|
struct rsnd_priv *priv = rsnd_mod_to_priv(cmd_mod);
|
2015-09-10 07:02:39 +00:00
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
2015-11-30 08:49:15 +00:00
|
|
|
int id = rsnd_mod_id(cmd_mod);
|
2014-05-08 17:44:49 -07:00
|
|
|
int shift = (id % 2) ? 16 : 0;
|
|
|
|
u32 mask, val;
|
|
|
|
|
2016-03-07 05:09:34 +00:00
|
|
|
rsnd_adg_get_timesel_ratio(priv, io,
|
|
|
|
rsnd_src_get_in_rate(priv, io),
|
|
|
|
rsnd_src_get_out_rate(priv, io),
|
|
|
|
NULL, &val, NULL);
|
2014-05-08 17:44:49 -07:00
|
|
|
|
|
|
|
val = val << shift;
|
2017-12-20 06:11:59 +00:00
|
|
|
mask = 0x0f1f << shift;
|
2014-05-08 17:44:49 -07:00
|
|
|
|
2015-09-10 07:02:39 +00:00
|
|
|
rsnd_mod_bset(adg_mod, CMDOUT_TIMSEL, mask, val);
|
2014-05-08 17:44:49 -07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-07 05:09:14 +00:00
|
|
|
int rsnd_adg_set_src_timesel_gen2(struct rsnd_mod *src_mod,
|
|
|
|
struct rsnd_dai_stream *io,
|
|
|
|
unsigned int in_rate,
|
|
|
|
unsigned int out_rate)
|
2014-01-23 18:42:00 -08:00
|
|
|
{
|
2015-09-10 07:03:08 +00:00
|
|
|
struct rsnd_priv *priv = rsnd_mod_to_priv(src_mod);
|
2015-09-10 07:02:39 +00:00
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
2016-03-07 05:09:14 +00:00
|
|
|
u32 in, out;
|
|
|
|
u32 mask, en;
|
2015-09-10 07:03:08 +00:00
|
|
|
int id = rsnd_mod_id(src_mod);
|
2014-01-23 18:42:00 -08:00
|
|
|
int shift = (id % 2) ? 16 : 0;
|
|
|
|
|
2024-07-30 02:12:10 +00:00
|
|
|
rsnd_mod_make_sure(src_mod, RSND_MOD_SRC);
|
2015-09-10 07:03:08 +00:00
|
|
|
|
2016-03-07 05:09:14 +00:00
|
|
|
rsnd_adg_get_timesel_ratio(priv, io,
|
|
|
|
in_rate, out_rate,
|
|
|
|
&in, &out, &en);
|
2014-01-23 18:42:00 -08:00
|
|
|
|
|
|
|
in = in << shift;
|
|
|
|
out = out << shift;
|
2017-12-20 06:11:59 +00:00
|
|
|
mask = 0x0f1f << shift;
|
2014-01-23 18:42:00 -08:00
|
|
|
|
2018-12-12 16:03:58 +09:00
|
|
|
rsnd_mod_bset(adg_mod, SRCIN_TIMSEL(id / 2), mask, in);
|
|
|
|
rsnd_mod_bset(adg_mod, SRCOUT_TIMSEL(id / 2), mask, out);
|
2014-01-23 18:42:00 -08:00
|
|
|
|
2016-03-07 05:09:14 +00:00
|
|
|
if (en)
|
|
|
|
rsnd_mod_bset(adg_mod, DIV_EN, en, en);
|
2015-03-19 04:14:45 +00:00
|
|
|
|
2014-02-11 21:04:12 -08:00
|
|
|
return 0;
|
2014-01-23 18:42:00 -08:00
|
|
|
}
|
|
|
|
|
2015-09-10 07:03:08 +00:00
|
|
|
static void rsnd_adg_set_ssi_clk(struct rsnd_mod *ssi_mod, u32 val)
|
2013-07-21 21:36:46 -07:00
|
|
|
{
|
2015-09-10 07:03:08 +00:00
|
|
|
struct rsnd_priv *priv = rsnd_mod_to_priv(ssi_mod);
|
2015-09-10 07:02:39 +00:00
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
2017-10-13 06:03:06 +00:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2015-09-10 07:03:08 +00:00
|
|
|
int id = rsnd_mod_id(ssi_mod);
|
2013-12-19 19:26:31 -08:00
|
|
|
int shift = (id % 4) * 8;
|
|
|
|
u32 mask = 0xFF << shift;
|
|
|
|
|
2024-07-30 02:12:10 +00:00
|
|
|
rsnd_mod_make_sure(ssi_mod, RSND_MOD_SSI);
|
2015-09-10 07:03:08 +00:00
|
|
|
|
2013-12-19 19:26:31 -08:00
|
|
|
val = val << shift;
|
2013-07-21 21:36:46 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SSI 8 is not connected to ADG.
|
|
|
|
* it works with SSI 7
|
|
|
|
*/
|
|
|
|
if (id == 8)
|
2013-12-19 19:26:31 -08:00
|
|
|
return;
|
|
|
|
|
2018-12-12 16:03:58 +09:00
|
|
|
rsnd_mod_bset(adg_mod, AUDIO_CLK_SEL(id / 4), mask, val);
|
2017-10-13 06:03:06 +00:00
|
|
|
|
|
|
|
dev_dbg(dev, "AUDIO_CLK_SEL is 0x%x\n", val);
|
2013-07-21 21:36:46 -07:00
|
|
|
}
|
|
|
|
|
ASoC: rsnd: add rsnd_adg_clk_query()
Current Renesas sound driver is assuming that all Sampling rate and
channles are possible to use, but these are depends on inputed clock
and SSI connection situation.
For example, if it is using 1 SSI, enabled TDM mode and has 12288000
input clock, 2ch output can support until 192000Hz, but 6ch output can
support until 64000Hz, 8ch can support 48000Hz.
To control these situation correctly, it needs to support
hw_constraints / refine feature.
To support such feature, it needs SSI clock query feature, and it needs
ADG clock query feature. Current ADG has rsnd_adg_ssi_clk_try_start()
and it is doing similar things, but it try to setup ADG register in
same time. This is not needed.
This patch adds new rsnd_adg_clk_query() and separates query feature
and register setting feature in adg.c
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2017-06-15 00:49:43 +00:00
|
|
|
int rsnd_adg_clk_query(struct rsnd_priv *priv, unsigned int rate)
|
2013-07-21 21:36:46 -07:00
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
2023-02-01 02:00:22 +00:00
|
|
|
struct clk *clk;
|
2013-12-19 19:26:31 -08:00
|
|
|
int i;
|
2013-07-21 21:36:46 -07:00
|
|
|
int sel_table[] = {
|
|
|
|
[CLKA] = 0x1,
|
|
|
|
[CLKB] = 0x2,
|
|
|
|
[CLKC] = 0x3,
|
|
|
|
[CLKI] = 0x0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find suitable clock from
|
|
|
|
* AUDIO_CLKA/AUDIO_CLKB/AUDIO_CLKC/AUDIO_CLKI.
|
|
|
|
*/
|
2023-02-01 02:00:22 +00:00
|
|
|
for_each_rsnd_clkin(clk, adg, i)
|
|
|
|
if (rate == adg->clkin_rate[i])
|
ASoC: rsnd: add rsnd_adg_clk_query()
Current Renesas sound driver is assuming that all Sampling rate and
channles are possible to use, but these are depends on inputed clock
and SSI connection situation.
For example, if it is using 1 SSI, enabled TDM mode and has 12288000
input clock, 2ch output can support until 192000Hz, but 6ch output can
support until 64000Hz, 8ch can support 48000Hz.
To control these situation correctly, it needs to support
hw_constraints / refine feature.
To support such feature, it needs SSI clock query feature, and it needs
ADG clock query feature. Current ADG has rsnd_adg_ssi_clk_try_start()
and it is doing similar things, but it try to setup ADG register in
same time. This is not needed.
This patch adds new rsnd_adg_clk_query() and separates query feature
and register setting feature in adg.c
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2017-06-15 00:49:43 +00:00
|
|
|
return sel_table[i];
|
2013-07-21 21:36:46 -07:00
|
|
|
|
|
|
|
/*
|
2015-09-10 07:03:48 +00:00
|
|
|
* find divided clock from BRGA/BRGB
|
2013-07-21 21:36:46 -07:00
|
|
|
*/
|
2023-02-15 15:17:41 +01:00
|
|
|
if (rate == adg->brg_rate[ADG_HZ_441])
|
ASoC: rsnd: add rsnd_adg_clk_query()
Current Renesas sound driver is assuming that all Sampling rate and
channles are possible to use, but these are depends on inputed clock
and SSI connection situation.
For example, if it is using 1 SSI, enabled TDM mode and has 12288000
input clock, 2ch output can support until 192000Hz, but 6ch output can
support until 64000Hz, 8ch can support 48000Hz.
To control these situation correctly, it needs to support
hw_constraints / refine feature.
To support such feature, it needs SSI clock query feature, and it needs
ADG clock query feature. Current ADG has rsnd_adg_ssi_clk_try_start()
and it is doing similar things, but it try to setup ADG register in
same time. This is not needed.
This patch adds new rsnd_adg_clk_query() and separates query feature
and register setting feature in adg.c
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2017-06-15 00:49:43 +00:00
|
|
|
return 0x10;
|
2013-07-21 21:36:46 -07:00
|
|
|
|
2023-02-15 15:17:41 +01:00
|
|
|
if (rate == adg->brg_rate[ADG_HZ_48])
|
ASoC: rsnd: add rsnd_adg_clk_query()
Current Renesas sound driver is assuming that all Sampling rate and
channles are possible to use, but these are depends on inputed clock
and SSI connection situation.
For example, if it is using 1 SSI, enabled TDM mode and has 12288000
input clock, 2ch output can support until 192000Hz, but 6ch output can
support until 64000Hz, 8ch can support 48000Hz.
To control these situation correctly, it needs to support
hw_constraints / refine feature.
To support such feature, it needs SSI clock query feature, and it needs
ADG clock query feature. Current ADG has rsnd_adg_ssi_clk_try_start()
and it is doing similar things, but it try to setup ADG register in
same time. This is not needed.
This patch adds new rsnd_adg_clk_query() and separates query feature
and register setting feature in adg.c
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2017-06-15 00:49:43 +00:00
|
|
|
return 0x20;
|
2013-07-21 21:36:46 -07:00
|
|
|
|
|
|
|
return -EIO;
|
ASoC: rsnd: add rsnd_adg_clk_query()
Current Renesas sound driver is assuming that all Sampling rate and
channles are possible to use, but these are depends on inputed clock
and SSI connection situation.
For example, if it is using 1 SSI, enabled TDM mode and has 12288000
input clock, 2ch output can support until 192000Hz, but 6ch output can
support until 64000Hz, 8ch can support 48000Hz.
To control these situation correctly, it needs to support
hw_constraints / refine feature.
To support such feature, it needs SSI clock query feature, and it needs
ADG clock query feature. Current ADG has rsnd_adg_ssi_clk_try_start()
and it is doing similar things, but it try to setup ADG register in
same time. This is not needed.
This patch adds new rsnd_adg_clk_query() and separates query feature
and register setting feature in adg.c
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2017-06-15 00:49:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int rsnd_adg_ssi_clk_stop(struct rsnd_mod *ssi_mod)
|
|
|
|
{
|
|
|
|
rsnd_adg_set_ssi_clk(ssi_mod, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rsnd_adg_ssi_clk_try_start(struct rsnd_mod *ssi_mod, unsigned int rate)
|
|
|
|
{
|
|
|
|
struct rsnd_priv *priv = rsnd_mod_to_priv(ssi_mod);
|
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
|
|
|
int data;
|
|
|
|
u32 ckr = 0;
|
2013-07-21 21:36:46 -07:00
|
|
|
|
ASoC: rsnd: add rsnd_adg_clk_query()
Current Renesas sound driver is assuming that all Sampling rate and
channles are possible to use, but these are depends on inputed clock
and SSI connection situation.
For example, if it is using 1 SSI, enabled TDM mode and has 12288000
input clock, 2ch output can support until 192000Hz, but 6ch output can
support until 64000Hz, 8ch can support 48000Hz.
To control these situation correctly, it needs to support
hw_constraints / refine feature.
To support such feature, it needs SSI clock query feature, and it needs
ADG clock query feature. Current ADG has rsnd_adg_ssi_clk_try_start()
and it is doing similar things, but it try to setup ADG register in
same time. This is not needed.
This patch adds new rsnd_adg_clk_query() and separates query feature
and register setting feature in adg.c
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2017-06-15 00:49:43 +00:00
|
|
|
data = rsnd_adg_clk_query(priv, rate);
|
|
|
|
if (data < 0)
|
|
|
|
return data;
|
2013-07-21 21:36:46 -07:00
|
|
|
|
2015-11-30 08:49:15 +00:00
|
|
|
rsnd_adg_set_ssi_clk(ssi_mod, data);
|
2013-07-21 21:36:46 -07:00
|
|
|
|
2025-04-17 23:23:23 +00:00
|
|
|
ckr = adg->ckr & ~BRGCKR_31;
|
2023-02-01 02:00:18 +00:00
|
|
|
if (0 == (rate % 8000))
|
2025-04-17 23:23:23 +00:00
|
|
|
ckr |= BRGCKR_31; /* use BRGB output = 48kHz */
|
|
|
|
if (ckr != adg->ckr) {
|
|
|
|
rsnd_mod_bset(adg_mod, BRGCKR, 0x80770000, adg->ckr);
|
|
|
|
adg->ckr = ckr;
|
|
|
|
}
|
2016-12-07 00:28:11 +00:00
|
|
|
|
2017-10-13 06:03:06 +00:00
|
|
|
dev_dbg(dev, "CLKOUT is based on BRG%c (= %dHz)\n",
|
|
|
|
(ckr) ? 'B' : 'A',
|
2023-02-15 15:17:41 +01:00
|
|
|
(ckr) ? adg->brg_rate[ADG_HZ_48] :
|
|
|
|
adg->brg_rate[ADG_HZ_441]);
|
2013-07-21 21:36:46 -07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2025-01-09 00:40:05 +00:00
|
|
|
int rsnd_adg_clk_control(struct rsnd_priv *priv, int enable)
|
2016-12-07 00:29:02 +00:00
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
2023-08-22 23:51:02 +00:00
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
2016-12-07 00:29:02 +00:00
|
|
|
struct clk *clk;
|
2025-01-09 00:40:05 +00:00
|
|
|
int ret = 0, i;
|
2016-12-07 00:29:02 +00:00
|
|
|
|
2023-08-22 23:51:02 +00:00
|
|
|
if (enable) {
|
2025-04-17 23:23:28 +00:00
|
|
|
ret = clk_prepare_enable(adg->adg);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2023-08-22 23:51:02 +00:00
|
|
|
rsnd_mod_bset(adg_mod, BRGCKR, 0x80770000, adg->ckr);
|
|
|
|
rsnd_mod_write(adg_mod, BRRA, adg->brga);
|
|
|
|
rsnd_mod_write(adg_mod, BRRB, adg->brgb);
|
|
|
|
}
|
|
|
|
|
2023-02-01 02:00:22 +00:00
|
|
|
for_each_rsnd_clkin(clk, adg, i) {
|
2019-08-06 12:45:38 +09:00
|
|
|
if (enable) {
|
2025-01-09 00:40:05 +00:00
|
|
|
ret = clk_prepare_enable(clk);
|
2019-08-06 12:45:38 +09:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We shouldn't use clk_get_rate() under
|
|
|
|
* atomic context. Let's keep it when
|
|
|
|
* rsnd_adg_clk_enable() was called
|
|
|
|
*/
|
2025-01-09 00:40:05 +00:00
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
|
2023-02-01 02:00:22 +00:00
|
|
|
adg->clkin_rate[i] = clk_get_rate(clk);
|
2019-08-06 12:45:38 +09:00
|
|
|
} else {
|
2025-01-09 00:40:05 +00:00
|
|
|
if (adg->clkin_rate[i])
|
|
|
|
clk_disable_unprepare(clk);
|
|
|
|
|
|
|
|
adg->clkin_rate[i] = 0;
|
2019-08-06 12:45:38 +09:00
|
|
|
}
|
2016-12-07 00:29:02 +00:00
|
|
|
}
|
2025-01-09 00:40:05 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rsnd_adg_clk_enable() might return error (_disable() will not).
|
|
|
|
* We need to rollback in such case
|
|
|
|
*/
|
|
|
|
if (ret < 0)
|
|
|
|
rsnd_adg_clk_disable(priv);
|
|
|
|
|
2025-04-17 23:23:28 +00:00
|
|
|
/* disable adg */
|
|
|
|
if (!enable)
|
|
|
|
clk_disable_unprepare(adg->adg);
|
|
|
|
|
2025-01-09 00:40:05 +00:00
|
|
|
return ret;
|
2016-12-07 00:29:02 +00:00
|
|
|
}
|
|
|
|
|
2021-06-02 08:43:50 +09:00
|
|
|
static struct clk *rsnd_adg_create_null_clk(struct rsnd_priv *priv,
|
|
|
|
const char * const name,
|
|
|
|
const char *parent)
|
2021-05-24 15:12:14 +09:00
|
|
|
{
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2021-06-02 08:43:50 +09:00
|
|
|
struct clk *clk;
|
|
|
|
|
|
|
|
clk = clk_register_fixed_rate(dev, name, parent, 0, 0);
|
2021-08-20 13:08:26 +09:00
|
|
|
if (IS_ERR_OR_NULL(clk)) {
|
2021-06-02 08:43:50 +09:00
|
|
|
dev_err(dev, "create null clk error\n");
|
2021-08-20 13:08:26 +09:00
|
|
|
return ERR_CAST(clk);
|
2021-06-02 08:43:50 +09:00
|
|
|
}
|
2021-05-24 15:12:14 +09:00
|
|
|
|
2021-06-02 08:43:50 +09:00
|
|
|
return clk;
|
|
|
|
}
|
2021-05-24 15:12:14 +09:00
|
|
|
|
2021-06-02 08:43:50 +09:00
|
|
|
static struct clk *rsnd_adg_null_clk_get(struct rsnd_priv *priv)
|
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = priv->adg;
|
2021-05-24 15:12:14 +09:00
|
|
|
|
2021-06-02 08:43:50 +09:00
|
|
|
if (!adg->null_clk) {
|
|
|
|
static const char * const name = "rsnd_adg_null";
|
2021-05-24 15:12:14 +09:00
|
|
|
|
2021-06-02 08:43:50 +09:00
|
|
|
adg->null_clk = rsnd_adg_create_null_clk(priv, name, NULL);
|
2021-05-24 15:12:14 +09:00
|
|
|
}
|
|
|
|
|
2021-06-02 08:43:50 +09:00
|
|
|
return adg->null_clk;
|
2021-05-24 15:12:14 +09:00
|
|
|
}
|
|
|
|
|
2021-06-02 08:44:09 +09:00
|
|
|
static void rsnd_adg_null_clk_clean(struct rsnd_priv *priv)
|
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = priv->adg;
|
|
|
|
|
|
|
|
if (adg->null_clk)
|
|
|
|
clk_unregister_fixed_rate(adg->null_clk);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rsnd_adg_get_clkin(struct rsnd_priv *priv)
|
2015-09-10 07:04:24 +00:00
|
|
|
{
|
2021-06-02 08:43:36 +09:00
|
|
|
struct rsnd_adg *adg = priv->adg;
|
2015-09-10 07:04:24 +00:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2021-06-02 08:44:09 +09:00
|
|
|
struct clk *clk;
|
2023-02-01 02:00:32 +00:00
|
|
|
const char * const *clkin_name;
|
|
|
|
int clkin_size;
|
2016-12-07 00:29:02 +00:00
|
|
|
int i;
|
2015-09-10 07:04:24 +00:00
|
|
|
|
2023-02-01 02:00:32 +00:00
|
|
|
clkin_name = clkin_name_gen2;
|
|
|
|
clkin_size = ARRAY_SIZE(clkin_name_gen2);
|
2023-02-01 02:02:22 +00:00
|
|
|
if (rsnd_is_gen4(priv)) {
|
|
|
|
clkin_name = clkin_name_gen4;
|
|
|
|
clkin_size = ARRAY_SIZE(clkin_name_gen4);
|
|
|
|
}
|
2023-02-01 02:00:32 +00:00
|
|
|
|
2025-04-17 23:23:28 +00:00
|
|
|
/*
|
|
|
|
* get adg
|
|
|
|
* No "adg" is not error
|
|
|
|
*/
|
|
|
|
clk = devm_clk_get(dev, "adg");
|
|
|
|
if (IS_ERR_OR_NULL(clk))
|
|
|
|
clk = rsnd_adg_null_clk_get(priv);
|
|
|
|
adg->adg = clk;
|
|
|
|
|
|
|
|
/* get clkin */
|
2023-02-01 02:00:32 +00:00
|
|
|
for (i = 0; i < clkin_size; i++) {
|
2023-02-01 02:00:22 +00:00
|
|
|
clk = devm_clk_get(dev, clkin_name[i]);
|
2021-02-25 09:25:23 +09:00
|
|
|
|
2021-08-20 13:08:26 +09:00
|
|
|
if (IS_ERR_OR_NULL(clk))
|
2021-05-24 15:12:14 +09:00
|
|
|
clk = rsnd_adg_null_clk_get(priv);
|
2021-08-20 13:08:26 +09:00
|
|
|
if (IS_ERR_OR_NULL(clk))
|
2021-06-02 08:44:09 +09:00
|
|
|
goto err;
|
2021-05-24 15:12:14 +09:00
|
|
|
|
2023-02-01 02:00:22 +00:00
|
|
|
adg->clkin[i] = clk;
|
2015-09-10 07:04:24 +00:00
|
|
|
}
|
2021-06-02 08:44:09 +09:00
|
|
|
|
2023-02-01 02:00:32 +00:00
|
|
|
adg->clkin_size = clkin_size;
|
|
|
|
|
2021-06-02 08:44:09 +09:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
dev_err(dev, "adg clock IN get failed\n");
|
|
|
|
|
|
|
|
rsnd_adg_null_clk_clean(priv);
|
|
|
|
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rsnd_adg_unregister_clkout(struct rsnd_priv *priv)
|
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = priv->adg;
|
|
|
|
struct clk *clk;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_rsnd_clkout(clk, adg, i)
|
|
|
|
clk_unregister_fixed_rate(clk);
|
2015-09-10 07:04:24 +00:00
|
|
|
}
|
|
|
|
|
2021-06-02 08:44:09 +09:00
|
|
|
static int rsnd_adg_get_clkout(struct rsnd_priv *priv)
|
2013-07-21 21:36:46 -07:00
|
|
|
{
|
2021-06-02 08:43:36 +09:00
|
|
|
struct rsnd_adg *adg = priv->adg;
|
2013-07-21 21:36:46 -07:00
|
|
|
struct clk *clk;
|
2015-09-10 07:03:48 +00:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2015-09-10 07:04:45 +00:00
|
|
|
struct device_node *np = dev->of_node;
|
2017-04-19 00:45:52 +00:00
|
|
|
struct property *prop;
|
2023-02-15 15:17:41 +01:00
|
|
|
u32 ckr, brgx, brga, brgb;
|
2023-02-01 02:00:36 +00:00
|
|
|
u32 req_rate[ADG_HZ_SIZE] = {};
|
2015-09-10 07:04:45 +00:00
|
|
|
uint32_t count = 0;
|
2023-02-01 02:00:36 +00:00
|
|
|
unsigned long req_Hz[ADG_HZ_SIZE];
|
2023-02-01 02:00:32 +00:00
|
|
|
int clkout_size;
|
2017-04-19 00:45:52 +00:00
|
|
|
int i, req_size;
|
2023-08-22 23:50:31 +00:00
|
|
|
int approximate = 0;
|
2015-09-10 07:04:45 +00:00
|
|
|
const char *parent_clk_name = NULL;
|
2023-02-01 02:00:32 +00:00
|
|
|
const char * const *clkout_name;
|
2013-07-21 21:36:46 -07:00
|
|
|
int brg_table[] = {
|
|
|
|
[CLKA] = 0x0,
|
|
|
|
[CLKB] = 0x1,
|
|
|
|
[CLKC] = 0x4,
|
|
|
|
[CLKI] = 0x2,
|
|
|
|
};
|
|
|
|
|
2017-04-21 00:41:20 +00:00
|
|
|
ckr = 0;
|
2023-08-22 23:50:48 +00:00
|
|
|
brga = 0xff; /* default */
|
|
|
|
brgb = 0xff; /* default */
|
2015-09-10 07:04:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ADG supports BRRA/BRRB output only
|
|
|
|
* this means all clkout0/1/2/3 will be same rate
|
|
|
|
*/
|
2017-04-21 13:02:57 +08:00
|
|
|
prop = of_find_property(np, "clock-frequency", NULL);
|
2017-04-21 00:41:20 +00:00
|
|
|
if (!prop)
|
|
|
|
goto rsnd_adg_get_clkout_end;
|
|
|
|
|
2017-04-19 00:45:52 +00:00
|
|
|
req_size = prop->length / sizeof(u32);
|
2023-02-01 02:00:36 +00:00
|
|
|
if (req_size > ADG_HZ_SIZE) {
|
2021-06-02 08:44:09 +09:00
|
|
|
dev_err(dev, "too many clock-frequency\n");
|
|
|
|
return -EINVAL;
|
2018-09-06 03:21:33 +00:00
|
|
|
}
|
2017-04-19 00:45:52 +00:00
|
|
|
|
|
|
|
of_property_read_u32_array(np, "clock-frequency", req_rate, req_size);
|
2023-02-01 02:00:36 +00:00
|
|
|
req_Hz[ADG_HZ_48] = 0;
|
|
|
|
req_Hz[ADG_HZ_441] = 0;
|
2017-04-19 00:45:52 +00:00
|
|
|
for (i = 0; i < req_size; i++) {
|
|
|
|
if (0 == (req_rate[i] % 44100))
|
2023-02-01 02:00:36 +00:00
|
|
|
req_Hz[ADG_HZ_441] = req_rate[i];
|
2017-04-19 00:45:52 +00:00
|
|
|
if (0 == (req_rate[i] % 48000))
|
2023-02-01 02:00:36 +00:00
|
|
|
req_Hz[ADG_HZ_48] = req_rate[i];
|
2017-04-19 00:45:52 +00:00
|
|
|
}
|
2015-09-10 07:04:45 +00:00
|
|
|
|
2013-07-21 21:36:46 -07:00
|
|
|
/*
|
|
|
|
* This driver is assuming that AUDIO_CLKA/AUDIO_CLKB/AUDIO_CLKC
|
|
|
|
* have 44.1kHz or 48kHz base clocks for now.
|
|
|
|
*
|
|
|
|
* SSI itself can divide parent clock by 1/1 - 1/16
|
|
|
|
* see
|
|
|
|
* rsnd_adg_ssi_clk_try_start()
|
2015-09-10 07:03:25 +00:00
|
|
|
* rsnd_ssi_master_clk_start()
|
2013-07-21 21:36:46 -07:00
|
|
|
*/
|
2023-08-22 23:50:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* [APPROXIMATE]
|
|
|
|
*
|
|
|
|
* clk_i (internal clock) can't create accurate rate, it will be approximate rate.
|
|
|
|
*
|
|
|
|
* <Note>
|
|
|
|
*
|
|
|
|
* clk_i needs x2 of required maximum rate.
|
|
|
|
* see
|
|
|
|
* - Minimum division of BRRA/BRRB
|
|
|
|
* - rsnd_ssi_clk_query()
|
|
|
|
*
|
|
|
|
* Sample Settings for TDM 8ch, 32bit width
|
|
|
|
*
|
|
|
|
* 8(ch) x 32(bit) x 44100(Hz) x 2<Note> = 22579200
|
|
|
|
* 8(ch) x 32(bit) x 48000(Hz) x 2<Note> = 24576000
|
|
|
|
*
|
|
|
|
* clock-frequency = <22579200 24576000>;
|
|
|
|
*/
|
2023-02-01 02:00:22 +00:00
|
|
|
for_each_rsnd_clkin(clk, adg, i) {
|
2023-08-22 23:50:54 +00:00
|
|
|
u32 rate, div;
|
|
|
|
|
2013-07-21 21:36:46 -07:00
|
|
|
rate = clk_get_rate(clk);
|
|
|
|
|
|
|
|
if (0 == rate) /* not used */
|
|
|
|
continue;
|
|
|
|
|
2023-02-15 15:17:41 +01:00
|
|
|
/* BRGA */
|
2023-08-22 23:50:31 +00:00
|
|
|
|
|
|
|
if (i == CLKI)
|
|
|
|
/* see [APPROXIMATE] */
|
|
|
|
rate = (clk_get_rate(clk) / req_Hz[ADG_HZ_441]) * req_Hz[ADG_HZ_441];
|
2023-08-22 23:50:54 +00:00
|
|
|
if (!adg->brg_rate[ADG_HZ_441] && req_Hz[ADG_HZ_441] && (0 == rate % 44100)) {
|
|
|
|
div = rate / req_Hz[ADG_HZ_441];
|
2023-02-15 15:17:41 +01:00
|
|
|
brgx = rsnd_adg_calculate_brgx(div);
|
|
|
|
if (BRRx_MASK(brgx) == brgx) {
|
|
|
|
brga = brgx;
|
|
|
|
adg->brg_rate[ADG_HZ_441] = rate / div;
|
2015-09-10 07:03:48 +00:00
|
|
|
ckr |= brg_table[i] << 20;
|
2023-02-01 02:00:36 +00:00
|
|
|
if (req_Hz[ADG_HZ_441])
|
2015-09-10 07:04:45 +00:00
|
|
|
parent_clk_name = __clk_get_name(clk);
|
2023-08-22 23:50:31 +00:00
|
|
|
if (i == CLKI)
|
|
|
|
approximate = 1;
|
2015-09-10 07:03:48 +00:00
|
|
|
}
|
2013-07-21 21:36:46 -07:00
|
|
|
}
|
|
|
|
|
2023-02-15 15:17:41 +01:00
|
|
|
/* BRGB */
|
2023-08-22 23:50:31 +00:00
|
|
|
|
|
|
|
if (i == CLKI)
|
|
|
|
/* see [APPROXIMATE] */
|
|
|
|
rate = (clk_get_rate(clk) / req_Hz[ADG_HZ_48]) * req_Hz[ADG_HZ_48];
|
2023-08-22 23:50:54 +00:00
|
|
|
if (!adg->brg_rate[ADG_HZ_48] && req_Hz[ADG_HZ_48] && (0 == rate % 48000)) {
|
|
|
|
div = rate / req_Hz[ADG_HZ_48];
|
2023-02-15 15:17:41 +01:00
|
|
|
brgx = rsnd_adg_calculate_brgx(div);
|
|
|
|
if (BRRx_MASK(brgx) == brgx) {
|
|
|
|
brgb = brgx;
|
|
|
|
adg->brg_rate[ADG_HZ_48] = rate / div;
|
2015-09-10 07:03:48 +00:00
|
|
|
ckr |= brg_table[i] << 16;
|
2023-02-01 02:00:36 +00:00
|
|
|
if (req_Hz[ADG_HZ_48])
|
2015-09-10 07:04:45 +00:00
|
|
|
parent_clk_name = __clk_get_name(clk);
|
2023-08-22 23:50:31 +00:00
|
|
|
if (i == CLKI)
|
|
|
|
approximate = 1;
|
2015-09-10 07:04:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-22 23:50:36 +00:00
|
|
|
if (!(adg->brg_rate[ADG_HZ_48] && req_Hz[ADG_HZ_48]) &&
|
|
|
|
!(adg->brg_rate[ADG_HZ_441] && req_Hz[ADG_HZ_441]))
|
|
|
|
goto rsnd_adg_get_clkout_end;
|
|
|
|
|
2023-08-22 23:50:31 +00:00
|
|
|
if (approximate)
|
|
|
|
dev_info(dev, "It uses CLK_I as approximate rate");
|
|
|
|
|
2023-02-01 02:00:32 +00:00
|
|
|
clkout_name = clkout_name_gen2;
|
|
|
|
clkout_size = ARRAY_SIZE(clkout_name_gen2);
|
2023-02-01 02:02:22 +00:00
|
|
|
if (rsnd_is_gen4(priv))
|
|
|
|
clkout_size = 1; /* reuse clkout_name_gen2[] */
|
2023-02-01 02:00:32 +00:00
|
|
|
|
2015-09-10 07:04:45 +00:00
|
|
|
/*
|
|
|
|
* ADG supports BRRA/BRRB output only.
|
|
|
|
* this means all clkout0/1/2/3 will be * same rate
|
|
|
|
*/
|
|
|
|
|
2017-04-21 00:41:20 +00:00
|
|
|
of_property_read_u32(np, "#clock-cells", &count);
|
2015-09-10 07:04:45 +00:00
|
|
|
/*
|
|
|
|
* for clkout
|
|
|
|
*/
|
|
|
|
if (!count) {
|
2015-09-15 02:44:37 +00:00
|
|
|
clk = clk_register_fixed_rate(dev, clkout_name[CLKOUT],
|
2017-04-19 00:45:52 +00:00
|
|
|
parent_clk_name, 0, req_rate[0]);
|
2021-08-20 13:08:26 +09:00
|
|
|
if (IS_ERR_OR_NULL(clk))
|
2021-06-02 08:44:09 +09:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
adg->clkout[CLKOUT] = clk;
|
2023-02-01 02:00:32 +00:00
|
|
|
adg->clkout_size = 1;
|
2021-06-02 08:44:09 +09:00
|
|
|
of_clk_add_provider(np, of_clk_src_simple_get, clk);
|
2015-09-10 07:04:45 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* for clkout0/1/2/3
|
|
|
|
*/
|
|
|
|
else {
|
2023-02-01 02:00:32 +00:00
|
|
|
for (i = 0; i < clkout_size; i++) {
|
2015-09-10 07:04:45 +00:00
|
|
|
clk = clk_register_fixed_rate(dev, clkout_name[i],
|
2016-04-19 18:08:00 -07:00
|
|
|
parent_clk_name, 0,
|
2017-04-19 00:45:52 +00:00
|
|
|
req_rate[0]);
|
2021-08-20 13:08:26 +09:00
|
|
|
if (IS_ERR_OR_NULL(clk))
|
2021-06-02 08:44:09 +09:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
adg->clkout[i] = clk;
|
2013-07-21 21:36:46 -07:00
|
|
|
}
|
2017-03-30 01:49:06 +00:00
|
|
|
adg->onecell.clks = adg->clkout;
|
2023-02-01 02:00:32 +00:00
|
|
|
adg->onecell.clk_num = clkout_size;
|
|
|
|
adg->clkout_size = clkout_size;
|
2017-03-30 01:49:06 +00:00
|
|
|
of_clk_add_provider(np, of_clk_src_onecell_get,
|
|
|
|
&adg->onecell);
|
2013-07-21 21:36:46 -07:00
|
|
|
}
|
|
|
|
|
2017-04-21 00:41:20 +00:00
|
|
|
rsnd_adg_get_clkout_end:
|
2025-04-17 23:23:23 +00:00
|
|
|
if (0 == (req_rate[0] % 8000))
|
|
|
|
ckr |= BRGCKR_31; /* use BRGB output = 48kHz */
|
|
|
|
|
2016-12-07 00:28:11 +00:00
|
|
|
adg->ckr = ckr;
|
2023-02-15 15:17:41 +01:00
|
|
|
adg->brga = brga;
|
|
|
|
adg->brgb = brgb;
|
2021-06-02 08:44:09 +09:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
dev_err(dev, "adg clock OUT get failed\n");
|
|
|
|
|
|
|
|
rsnd_adg_unregister_clkout(priv);
|
|
|
|
|
|
|
|
return -EIO;
|
2017-10-13 06:03:06 +00:00
|
|
|
}
|
|
|
|
|
2021-05-27 11:41:36 +09:00
|
|
|
#if defined(DEBUG) || defined(CONFIG_DEBUG_FS)
|
2021-06-02 08:43:28 +09:00
|
|
|
__printf(3, 4)
|
2021-05-27 11:41:36 +09:00
|
|
|
static void dbg_msg(struct device *dev, struct seq_file *m,
|
|
|
|
const char *fmt, ...)
|
2017-10-13 06:03:06 +00:00
|
|
|
{
|
2021-05-27 11:41:36 +09:00
|
|
|
char msg[128];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(msg, sizeof(msg), fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
if (m)
|
|
|
|
seq_puts(m, msg);
|
|
|
|
else
|
|
|
|
dev_dbg(dev, "%s", msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rsnd_adg_clk_dbg_info(struct rsnd_priv *priv, struct seq_file *m)
|
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
2017-10-13 06:03:06 +00:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
|
|
|
struct clk *clk;
|
|
|
|
int i;
|
|
|
|
|
2023-02-01 02:00:22 +00:00
|
|
|
for_each_rsnd_clkin(clk, adg, i)
|
2022-11-28 05:46:28 +00:00
|
|
|
dbg_msg(dev, m, "%-18s : %pa : %ld\n",
|
|
|
|
__clk_get_name(clk), clk, clk_get_rate(clk));
|
2015-09-10 07:03:48 +00:00
|
|
|
|
2021-05-27 11:41:36 +09:00
|
|
|
dbg_msg(dev, m, "BRGCKR = 0x%08x, BRRA/BRRB = 0x%x/0x%x\n",
|
2023-02-15 15:17:41 +01:00
|
|
|
adg->ckr, adg->brga, adg->brgb);
|
|
|
|
dbg_msg(dev, m, "BRGA (for 44100 base) = %d\n", adg->brg_rate[ADG_HZ_441]);
|
|
|
|
dbg_msg(dev, m, "BRGB (for 48000 base) = %d\n", adg->brg_rate[ADG_HZ_48]);
|
2017-10-13 06:03:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Actual CLKOUT will be exchanged in rsnd_adg_ssi_clk_try_start()
|
|
|
|
* by BRGCKR::BRGCKR_31
|
|
|
|
*/
|
|
|
|
for_each_rsnd_clkout(clk, adg, i)
|
2023-02-01 02:00:13 +00:00
|
|
|
dbg_msg(dev, m, "%-18s : %pa : %ld\n",
|
|
|
|
__clk_get_name(clk), clk, clk_get_rate(clk));
|
2013-07-21 21:36:46 -07:00
|
|
|
}
|
2017-10-13 06:03:06 +00:00
|
|
|
#else
|
2021-05-27 11:41:36 +09:00
|
|
|
#define rsnd_adg_clk_dbg_info(priv, m)
|
2017-10-13 06:03:06 +00:00
|
|
|
#endif
|
2013-07-21 21:36:46 -07:00
|
|
|
|
2015-11-10 05:14:12 +00:00
|
|
|
int rsnd_adg_probe(struct rsnd_priv *priv)
|
2013-07-21 21:36:46 -07:00
|
|
|
{
|
|
|
|
struct rsnd_adg *adg;
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2017-02-20 22:05:07 +01:00
|
|
|
int ret;
|
2013-07-21 21:36:46 -07:00
|
|
|
|
|
|
|
adg = devm_kzalloc(dev, sizeof(*adg), GFP_KERNEL);
|
2017-08-10 17:13:19 +02:00
|
|
|
if (!adg)
|
2013-07-21 21:36:46 -07:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-02-20 22:05:07 +01:00
|
|
|
ret = rsnd_mod_init(priv, &adg->mod, &adg_ops,
|
2018-10-30 07:46:05 +00:00
|
|
|
NULL, 0, 0);
|
2017-02-20 22:05:07 +01:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-09-10 07:02:39 +00:00
|
|
|
|
2013-07-21 21:36:46 -07:00
|
|
|
priv->adg = adg;
|
|
|
|
|
2021-06-02 08:44:09 +09:00
|
|
|
ret = rsnd_adg_get_clkin(priv);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = rsnd_adg_get_clkout(priv);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2021-06-02 08:43:36 +09:00
|
|
|
|
2025-01-09 00:40:05 +00:00
|
|
|
ret = rsnd_adg_clk_enable(priv);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2021-05-27 11:41:36 +09:00
|
|
|
rsnd_adg_clk_dbg_info(priv, NULL);
|
2016-12-07 00:29:02 +00:00
|
|
|
|
2013-07-21 21:36:46 -07:00
|
|
|
return 0;
|
|
|
|
}
|
2015-11-05 08:51:15 +00:00
|
|
|
|
2015-11-10 05:14:12 +00:00
|
|
|
void rsnd_adg_remove(struct rsnd_priv *priv)
|
2015-11-05 08:51:15 +00:00
|
|
|
{
|
2017-03-30 01:49:27 +00:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
|
|
|
struct device_node *np = dev->of_node;
|
2017-08-02 10:26:09 +00:00
|
|
|
|
2021-06-02 08:44:09 +09:00
|
|
|
rsnd_adg_unregister_clkout(priv);
|
2017-03-30 01:49:27 +00:00
|
|
|
|
|
|
|
of_clk_del_provider(np);
|
|
|
|
|
2016-12-07 00:29:02 +00:00
|
|
|
rsnd_adg_clk_disable(priv);
|
2021-06-02 08:43:50 +09:00
|
|
|
|
|
|
|
/* It should be called after rsnd_adg_clk_disable() */
|
2021-06-02 08:44:09 +09:00
|
|
|
rsnd_adg_null_clk_clean(priv);
|
2015-11-05 08:51:15 +00:00
|
|
|
}
|