2018-06-12 13:58:38 +08: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 15:04:45 +08:00
|
|
|
#include <linux/clk-provider.h>
|
2013-07-22 12:36:46 +08:00
|
|
|
#include "rsnd.h"
|
|
|
|
|
|
|
|
#define CLKA 0
|
|
|
|
#define CLKB 1
|
|
|
|
#define CLKC 2
|
|
|
|
#define CLKI 3
|
|
|
|
#define CLKMAX 4
|
|
|
|
|
2015-09-10 15:04:45 +08:00
|
|
|
#define CLKOUT 0
|
|
|
|
#define CLKOUT1 1
|
|
|
|
#define CLKOUT2 2
|
|
|
|
#define CLKOUT3 3
|
|
|
|
#define CLKOUTMAX 4
|
|
|
|
|
2015-09-10 15:03:48 +08:00
|
|
|
#define BRRx_MASK(x) (0x3FF & x)
|
|
|
|
|
2015-09-10 15:02:39 +08:00
|
|
|
static struct rsnd_mod_ops adg_ops = {
|
|
|
|
.name = "adg",
|
|
|
|
};
|
|
|
|
|
2013-07-22 12:36:46 +08:00
|
|
|
struct rsnd_adg {
|
|
|
|
struct clk *clk[CLKMAX];
|
2015-09-10 15:04:45 +08:00
|
|
|
struct clk *clkout[CLKOUTMAX];
|
|
|
|
struct clk_onecell_data onecell;
|
2015-09-10 15:02:39 +08:00
|
|
|
struct rsnd_mod mod;
|
2016-06-09 11:21:37 +08:00
|
|
|
u32 flags;
|
2016-12-07 08:28:11 +08:00
|
|
|
u32 ckr;
|
|
|
|
u32 rbga;
|
|
|
|
u32 rbgb;
|
2013-07-22 12:36:46 +08:00
|
|
|
|
2015-09-10 15:03:48 +08:00
|
|
|
int rbga_rate_for_441khz; /* RBGA */
|
|
|
|
int rbgb_rate_for_48khz; /* RBGB */
|
2013-07-22 12:36:46 +08:00
|
|
|
};
|
|
|
|
|
2016-06-09 11:21:37 +08:00
|
|
|
#define LRCLK_ASYNC (1 << 0)
|
2017-04-19 08:45:52 +08:00
|
|
|
#define AUDIO_OUT_48 (1 << 1)
|
2016-06-09 11:21:37 +08:00
|
|
|
|
2013-07-22 12:36:46 +08:00
|
|
|
#define for_each_rsnd_clk(pos, adg, i) \
|
2014-02-12 09:15:51 +08:00
|
|
|
for (i = 0; \
|
|
|
|
(i < CLKMAX) && \
|
|
|
|
((pos) = adg->clk[i]); \
|
|
|
|
i++)
|
2015-09-10 15:04:45 +08:00
|
|
|
#define for_each_rsnd_clkout(pos, adg, i) \
|
|
|
|
for (i = 0; \
|
|
|
|
(i < CLKOUTMAX) && \
|
|
|
|
((pos) = adg->clkout[i]); \
|
|
|
|
i++)
|
2013-07-22 12:36:46 +08:00
|
|
|
#define rsnd_priv_to_adg(priv) ((struct rsnd_adg *)(priv)->adg)
|
|
|
|
|
2017-10-13 14:03:06 +08:00
|
|
|
static const char * const clk_name[] = {
|
|
|
|
[CLKA] = "clk_a",
|
|
|
|
[CLKB] = "clk_b",
|
|
|
|
[CLKC] = "clk_c",
|
|
|
|
[CLKI] = "clk_i",
|
|
|
|
};
|
|
|
|
|
2015-09-10 15:03:48 +08:00
|
|
|
static u32 rsnd_adg_calculate_rbgx(unsigned long div)
|
|
|
|
{
|
|
|
|
int i, ratio;
|
|
|
|
|
|
|
|
if (!div)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 3; i >= 0; i--) {
|
|
|
|
ratio = 2 << (i * 2);
|
|
|
|
if (0 == (div % ratio))
|
|
|
|
return (u32)((i << 8) | ((div / ratio) - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ~0;
|
|
|
|
}
|
2014-01-24 10:42:00 +08:00
|
|
|
|
2014-03-03 15:43:33 +08:00
|
|
|
static u32 rsnd_adg_ssi_ws_timing_gen2(struct rsnd_dai_stream *io)
|
2014-01-24 10:42:00 +08:00
|
|
|
{
|
2015-11-30 16:49:15 +08:00
|
|
|
struct rsnd_mod *ssi_mod = rsnd_io_to_mod_ssi(io);
|
|
|
|
int id = rsnd_mod_id(ssi_mod);
|
2014-01-24 10:42:00 +08:00
|
|
|
int ws = id;
|
|
|
|
|
2015-10-22 11:15:46 +08:00
|
|
|
if (rsnd_ssi_is_pin_sharing(io)) {
|
2014-01-24 10:42:00 +08:00
|
|
|
switch (id) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
ws = 0;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
ws = 3;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
ws = 7;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0x6 + ws) << 8;
|
|
|
|
}
|
|
|
|
|
2016-03-07 13:09:14 +08: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);
|
|
|
|
int idx, sel, div, step;
|
|
|
|
unsigned int val, en;
|
|
|
|
unsigned int min, diff;
|
|
|
|
unsigned int sel_rate[] = {
|
|
|
|
clk_get_rate(adg->clk[CLKA]), /* 0000: CLKA */
|
|
|
|
clk_get_rate(adg->clk[CLKB]), /* 0001: CLKB */
|
|
|
|
clk_get_rate(adg->clk[CLKC]), /* 0010: CLKC */
|
|
|
|
adg->rbga_rate_for_441khz, /* 0011: RBGA */
|
|
|
|
adg->rbgb_rate_for_48khz, /* 0100: RBGB */
|
|
|
|
};
|
|
|
|
|
|
|
|
min = ~0;
|
|
|
|
val = 0;
|
|
|
|
en = 0;
|
|
|
|
for (sel = 0; sel < ARRAY_SIZE(sel_rate); sel++) {
|
|
|
|
idx = 0;
|
|
|
|
step = 2;
|
|
|
|
|
|
|
|
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 16:49:15 +08:00
|
|
|
int rsnd_adg_set_cmd_timsel_gen2(struct rsnd_mod *cmd_mod,
|
2014-05-09 08:44:49 +08:00
|
|
|
struct rsnd_dai_stream *io)
|
|
|
|
{
|
2015-11-30 16:49:15 +08:00
|
|
|
struct rsnd_priv *priv = rsnd_mod_to_priv(cmd_mod);
|
2015-09-10 15:02:39 +08:00
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
2015-11-30 16:49:15 +08:00
|
|
|
int id = rsnd_mod_id(cmd_mod);
|
2014-05-09 08:44:49 +08:00
|
|
|
int shift = (id % 2) ? 16 : 0;
|
|
|
|
u32 mask, val;
|
|
|
|
|
2016-03-07 13:09:34 +08: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-09 08:44:49 +08:00
|
|
|
|
|
|
|
val = val << shift;
|
2017-12-20 14:11:59 +08:00
|
|
|
mask = 0x0f1f << shift;
|
2014-05-09 08:44:49 +08:00
|
|
|
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, CMDOUT_TIMSEL, mask, val);
|
2014-05-09 08:44:49 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-07 13:09:14 +08: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-24 10:42:00 +08:00
|
|
|
{
|
2015-09-10 15:03:08 +08:00
|
|
|
struct rsnd_priv *priv = rsnd_mod_to_priv(src_mod);
|
2015-09-10 15:02:39 +08:00
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
2016-03-07 13:09:14 +08:00
|
|
|
u32 in, out;
|
|
|
|
u32 mask, en;
|
2015-09-10 15:03:08 +08:00
|
|
|
int id = rsnd_mod_id(src_mod);
|
2014-01-24 10:42:00 +08:00
|
|
|
int shift = (id % 2) ? 16 : 0;
|
|
|
|
|
2015-09-10 15:03:08 +08:00
|
|
|
rsnd_mod_confirm_src(src_mod);
|
|
|
|
|
2016-03-07 13:09:14 +08:00
|
|
|
rsnd_adg_get_timesel_ratio(priv, io,
|
|
|
|
in_rate, out_rate,
|
|
|
|
&in, &out, &en);
|
2014-01-24 10:42:00 +08:00
|
|
|
|
|
|
|
in = in << shift;
|
|
|
|
out = out << shift;
|
2017-12-20 14:11:59 +08:00
|
|
|
mask = 0x0f1f << shift;
|
2014-01-24 10:42:00 +08:00
|
|
|
|
|
|
|
switch (id / 2) {
|
|
|
|
case 0:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, SRCIN_TIMSEL0, mask, in);
|
|
|
|
rsnd_mod_bset(adg_mod, SRCOUT_TIMSEL0, mask, out);
|
2014-01-24 10:42:00 +08:00
|
|
|
break;
|
|
|
|
case 1:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, SRCIN_TIMSEL1, mask, in);
|
|
|
|
rsnd_mod_bset(adg_mod, SRCOUT_TIMSEL1, mask, out);
|
2014-01-24 10:42:00 +08:00
|
|
|
break;
|
|
|
|
case 2:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, SRCIN_TIMSEL2, mask, in);
|
|
|
|
rsnd_mod_bset(adg_mod, SRCOUT_TIMSEL2, mask, out);
|
2014-01-24 10:42:00 +08:00
|
|
|
break;
|
|
|
|
case 3:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, SRCIN_TIMSEL3, mask, in);
|
|
|
|
rsnd_mod_bset(adg_mod, SRCOUT_TIMSEL3, mask, out);
|
2014-01-24 10:42:00 +08:00
|
|
|
break;
|
|
|
|
case 4:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, SRCIN_TIMSEL4, mask, in);
|
|
|
|
rsnd_mod_bset(adg_mod, SRCOUT_TIMSEL4, mask, out);
|
2014-01-24 10:42:00 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-03-07 13:09:14 +08:00
|
|
|
if (en)
|
|
|
|
rsnd_mod_bset(adg_mod, DIV_EN, en, en);
|
2015-03-19 12:14:45 +08:00
|
|
|
|
2014-02-12 13:04:12 +08:00
|
|
|
return 0;
|
2014-01-24 10:42:00 +08:00
|
|
|
}
|
|
|
|
|
2015-09-10 15:03:08 +08:00
|
|
|
static void rsnd_adg_set_ssi_clk(struct rsnd_mod *ssi_mod, u32 val)
|
2013-07-22 12:36:46 +08:00
|
|
|
{
|
2015-09-10 15:03:08 +08:00
|
|
|
struct rsnd_priv *priv = rsnd_mod_to_priv(ssi_mod);
|
2015-09-10 15:02:39 +08:00
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct rsnd_mod *adg_mod = rsnd_mod_get(adg);
|
2017-10-13 14:03:06 +08:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2015-09-10 15:03:08 +08:00
|
|
|
int id = rsnd_mod_id(ssi_mod);
|
2013-12-20 11:26:31 +08:00
|
|
|
int shift = (id % 4) * 8;
|
|
|
|
u32 mask = 0xFF << shift;
|
|
|
|
|
2015-09-10 15:03:08 +08:00
|
|
|
rsnd_mod_confirm_ssi(ssi_mod);
|
|
|
|
|
2013-12-20 11:26:31 +08:00
|
|
|
val = val << shift;
|
2013-07-22 12:36:46 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SSI 8 is not connected to ADG.
|
|
|
|
* it works with SSI 7
|
|
|
|
*/
|
|
|
|
if (id == 8)
|
2013-12-20 11:26:31 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch (id / 4) {
|
|
|
|
case 0:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, AUDIO_CLK_SEL0, mask, val);
|
2013-12-20 11:26:31 +08:00
|
|
|
break;
|
|
|
|
case 1:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, AUDIO_CLK_SEL1, mask, val);
|
2013-12-20 11:26:31 +08:00
|
|
|
break;
|
|
|
|
case 2:
|
2015-09-10 15:02:39 +08:00
|
|
|
rsnd_mod_bset(adg_mod, AUDIO_CLK_SEL2, mask, val);
|
2013-12-20 11:26:31 +08:00
|
|
|
break;
|
|
|
|
}
|
2017-10-13 14:03:06 +08:00
|
|
|
|
|
|
|
dev_dbg(dev, "AUDIO_CLK_SEL is 0x%x\n", val);
|
2013-07-22 12:36:46 +08: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 08:49:43 +08:00
|
|
|
int rsnd_adg_clk_query(struct rsnd_priv *priv, unsigned int rate)
|
2013-07-22 12:36:46 +08:00
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct clk *clk;
|
2013-12-20 11:26:31 +08:00
|
|
|
int i;
|
2013-07-22 12:36:46 +08:00
|
|
|
int sel_table[] = {
|
|
|
|
[CLKA] = 0x1,
|
|
|
|
[CLKB] = 0x2,
|
|
|
|
[CLKC] = 0x3,
|
|
|
|
[CLKI] = 0x0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find suitable clock from
|
|
|
|
* AUDIO_CLKA/AUDIO_CLKB/AUDIO_CLKC/AUDIO_CLKI.
|
|
|
|
*/
|
|
|
|
for_each_rsnd_clk(clk, adg, 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 08:49:43 +08:00
|
|
|
if (rate == clk_get_rate(clk))
|
|
|
|
return sel_table[i];
|
2013-07-22 12:36:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-09-10 15:03:48 +08:00
|
|
|
* find divided clock from BRGA/BRGB
|
2013-07-22 12:36:46 +08: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 08:49:43 +08:00
|
|
|
if (rate == adg->rbga_rate_for_441khz)
|
|
|
|
return 0x10;
|
2013-07-22 12:36:46 +08: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 08:49:43 +08:00
|
|
|
if (rate == adg->rbgb_rate_for_48khz)
|
|
|
|
return 0x20;
|
2013-07-22 12:36:46 +08: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 08:49:43 +08: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-22 12:36:46 +08: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 08:49:43 +08:00
|
|
|
data = rsnd_adg_clk_query(priv, rate);
|
|
|
|
if (data < 0)
|
|
|
|
return data;
|
2013-07-22 12:36:46 +08:00
|
|
|
|
2015-11-30 16:49:15 +08:00
|
|
|
rsnd_adg_set_ssi_clk(ssi_mod, data);
|
2013-07-22 12:36:46 +08:00
|
|
|
|
2017-10-02 07:48:12 +08:00
|
|
|
if (rsnd_flags_has(adg, LRCLK_ASYNC)) {
|
|
|
|
if (rsnd_flags_has(adg, AUDIO_OUT_48))
|
2017-04-19 08:45:52 +08:00
|
|
|
ckr = 0x80000000;
|
|
|
|
} else {
|
2016-06-09 11:21:37 +08:00
|
|
|
if (0 == (rate % 8000))
|
|
|
|
ckr = 0x80000000;
|
|
|
|
}
|
|
|
|
|
2017-12-20 14:11:59 +08:00
|
|
|
rsnd_mod_bset(adg_mod, BRGCKR, 0x80770000, adg->ckr | ckr);
|
2016-12-07 08:28:11 +08:00
|
|
|
rsnd_mod_write(adg_mod, BRRA, adg->rbga);
|
|
|
|
rsnd_mod_write(adg_mod, BRRB, adg->rbgb);
|
|
|
|
|
2017-10-13 14:03:06 +08:00
|
|
|
dev_dbg(dev, "CLKOUT is based on BRG%c (= %dHz)\n",
|
|
|
|
(ckr) ? 'B' : 'A',
|
|
|
|
(ckr) ? adg->rbgb_rate_for_48khz :
|
|
|
|
adg->rbga_rate_for_441khz);
|
2013-07-22 12:36:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-12-07 08:29:02 +08:00
|
|
|
void rsnd_adg_clk_control(struct rsnd_priv *priv, int enable)
|
|
|
|
{
|
|
|
|
struct rsnd_adg *adg = rsnd_priv_to_adg(priv);
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
|
|
|
struct clk *clk;
|
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
for_each_rsnd_clk(clk, adg, i) {
|
|
|
|
ret = 0;
|
|
|
|
if (enable)
|
|
|
|
ret = clk_prepare_enable(clk);
|
|
|
|
else
|
|
|
|
clk_disable_unprepare(clk);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
dev_warn(dev, "can't use clk %d\n", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 15:04:24 +08:00
|
|
|
static void rsnd_adg_get_clkin(struct rsnd_priv *priv,
|
|
|
|
struct rsnd_adg *adg)
|
|
|
|
{
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
|
|
|
struct clk *clk;
|
2016-12-07 08:29:02 +08:00
|
|
|
int i;
|
2015-09-10 15:04:24 +08:00
|
|
|
|
|
|
|
for (i = 0; i < CLKMAX; i++) {
|
|
|
|
clk = devm_clk_get(dev, clk_name[i]);
|
|
|
|
adg->clk[i] = IS_ERR(clk) ? NULL : clk;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 15:04:45 +08:00
|
|
|
static void rsnd_adg_get_clkout(struct rsnd_priv *priv,
|
|
|
|
struct rsnd_adg *adg)
|
2013-07-22 12:36:46 +08:00
|
|
|
{
|
|
|
|
struct clk *clk;
|
2015-09-10 15:03:48 +08:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2015-09-10 15:04:45 +08:00
|
|
|
struct device_node *np = dev->of_node;
|
2017-04-19 08:45:52 +08:00
|
|
|
struct property *prop;
|
2015-09-10 15:03:48 +08:00
|
|
|
u32 ckr, rbgx, rbga, rbgb;
|
2017-04-19 08:45:52 +08:00
|
|
|
u32 rate, div;
|
|
|
|
#define REQ_SIZE 2
|
|
|
|
u32 req_rate[REQ_SIZE] = {};
|
2015-09-10 15:04:45 +08:00
|
|
|
uint32_t count = 0;
|
|
|
|
unsigned long req_48kHz_rate, req_441kHz_rate;
|
2017-04-19 08:45:52 +08:00
|
|
|
int i, req_size;
|
2015-09-10 15:04:45 +08:00
|
|
|
const char *parent_clk_name = NULL;
|
|
|
|
static const char * const clkout_name[] = {
|
|
|
|
[CLKOUT] = "audio_clkout",
|
|
|
|
[CLKOUT1] = "audio_clkout1",
|
|
|
|
[CLKOUT2] = "audio_clkout2",
|
|
|
|
[CLKOUT3] = "audio_clkout3",
|
|
|
|
};
|
2013-07-22 12:36:46 +08:00
|
|
|
int brg_table[] = {
|
|
|
|
[CLKA] = 0x0,
|
|
|
|
[CLKB] = 0x1,
|
|
|
|
[CLKC] = 0x4,
|
|
|
|
[CLKI] = 0x2,
|
|
|
|
};
|
|
|
|
|
2017-04-21 08:41:20 +08:00
|
|
|
ckr = 0;
|
|
|
|
rbga = 2; /* default 1/6 */
|
|
|
|
rbgb = 2; /* default 1/6 */
|
2015-09-10 15:04:45 +08: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 08:41:20 +08:00
|
|
|
if (!prop)
|
|
|
|
goto rsnd_adg_get_clkout_end;
|
|
|
|
|
2017-04-19 08:45:52 +08:00
|
|
|
req_size = prop->length / sizeof(u32);
|
|
|
|
|
|
|
|
of_property_read_u32_array(np, "clock-frequency", req_rate, req_size);
|
2015-09-10 15:04:45 +08:00
|
|
|
req_48kHz_rate = 0;
|
|
|
|
req_441kHz_rate = 0;
|
2017-04-19 08:45:52 +08:00
|
|
|
for (i = 0; i < req_size; i++) {
|
|
|
|
if (0 == (req_rate[i] % 44100))
|
|
|
|
req_441kHz_rate = req_rate[i];
|
|
|
|
if (0 == (req_rate[i] % 48000))
|
|
|
|
req_48kHz_rate = req_rate[i];
|
|
|
|
}
|
2015-09-10 15:04:45 +08:00
|
|
|
|
2017-04-21 08:41:20 +08:00
|
|
|
if (req_rate[0] % 48000 == 0)
|
2017-10-02 07:48:12 +08:00
|
|
|
rsnd_flags_set(adg, AUDIO_OUT_48);
|
2017-04-21 08:41:20 +08:00
|
|
|
|
2017-05-15 09:58:56 +08:00
|
|
|
if (of_get_property(np, "clkout-lr-asynchronous", NULL))
|
2017-10-02 07:48:12 +08:00
|
|
|
rsnd_flags_set(adg, LRCLK_ASYNC);
|
2017-05-15 09:58:56 +08:00
|
|
|
|
2013-07-22 12:36:46 +08: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 15:03:25 +08:00
|
|
|
* rsnd_ssi_master_clk_start()
|
2013-07-22 12:36:46 +08:00
|
|
|
*/
|
2015-09-10 15:03:48 +08:00
|
|
|
adg->rbga_rate_for_441khz = 0;
|
|
|
|
adg->rbgb_rate_for_48khz = 0;
|
2013-07-22 12:36:46 +08:00
|
|
|
for_each_rsnd_clk(clk, adg, i) {
|
|
|
|
rate = clk_get_rate(clk);
|
|
|
|
|
|
|
|
if (0 == rate) /* not used */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* RBGA */
|
2015-09-10 15:03:48 +08:00
|
|
|
if (!adg->rbga_rate_for_441khz && (0 == rate % 44100)) {
|
|
|
|
div = 6;
|
2015-09-10 15:04:45 +08:00
|
|
|
if (req_441kHz_rate)
|
|
|
|
div = rate / req_441kHz_rate;
|
2015-09-10 15:03:48 +08:00
|
|
|
rbgx = rsnd_adg_calculate_rbgx(div);
|
|
|
|
if (BRRx_MASK(rbgx) == rbgx) {
|
|
|
|
rbga = rbgx;
|
|
|
|
adg->rbga_rate_for_441khz = rate / div;
|
|
|
|
ckr |= brg_table[i] << 20;
|
2017-05-26 09:44:19 +08:00
|
|
|
if (req_441kHz_rate &&
|
2017-10-02 07:48:12 +08:00
|
|
|
!rsnd_flags_has(adg, AUDIO_OUT_48))
|
2015-09-10 15:04:45 +08:00
|
|
|
parent_clk_name = __clk_get_name(clk);
|
2015-09-10 15:03:48 +08:00
|
|
|
}
|
2013-07-22 12:36:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* RBGB */
|
2015-09-10 15:03:48 +08:00
|
|
|
if (!adg->rbgb_rate_for_48khz && (0 == rate % 48000)) {
|
|
|
|
div = 6;
|
2015-09-10 15:04:45 +08:00
|
|
|
if (req_48kHz_rate)
|
|
|
|
div = rate / req_48kHz_rate;
|
2015-09-10 15:03:48 +08:00
|
|
|
rbgx = rsnd_adg_calculate_rbgx(div);
|
|
|
|
if (BRRx_MASK(rbgx) == rbgx) {
|
|
|
|
rbgb = rbgx;
|
|
|
|
adg->rbgb_rate_for_48khz = rate / div;
|
|
|
|
ckr |= brg_table[i] << 16;
|
2017-05-26 09:44:19 +08:00
|
|
|
if (req_48kHz_rate &&
|
2017-10-02 07:48:12 +08:00
|
|
|
rsnd_flags_has(adg, AUDIO_OUT_48))
|
2015-09-10 15:04:45 +08:00
|
|
|
parent_clk_name = __clk_get_name(clk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ADG supports BRRA/BRRB output only.
|
|
|
|
* this means all clkout0/1/2/3 will be * same rate
|
|
|
|
*/
|
|
|
|
|
2017-04-21 08:41:20 +08:00
|
|
|
of_property_read_u32(np, "#clock-cells", &count);
|
2015-09-10 15:04:45 +08:00
|
|
|
/*
|
|
|
|
* for clkout
|
|
|
|
*/
|
|
|
|
if (!count) {
|
2015-09-15 10:44:37 +08:00
|
|
|
clk = clk_register_fixed_rate(dev, clkout_name[CLKOUT],
|
2017-04-19 08:45:52 +08:00
|
|
|
parent_clk_name, 0, req_rate[0]);
|
2015-09-10 15:04:45 +08:00
|
|
|
if (!IS_ERR(clk)) {
|
|
|
|
adg->clkout[CLKOUT] = clk;
|
|
|
|
of_clk_add_provider(np, of_clk_src_simple_get, clk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* for clkout0/1/2/3
|
|
|
|
*/
|
|
|
|
else {
|
|
|
|
for (i = 0; i < CLKOUTMAX; i++) {
|
|
|
|
clk = clk_register_fixed_rate(dev, clkout_name[i],
|
2016-04-20 09:08:00 +08:00
|
|
|
parent_clk_name, 0,
|
2017-04-19 08:45:52 +08:00
|
|
|
req_rate[0]);
|
2017-03-30 09:49:06 +08:00
|
|
|
if (!IS_ERR(clk))
|
2015-09-10 15:04:45 +08:00
|
|
|
adg->clkout[i] = clk;
|
2013-07-22 12:36:46 +08:00
|
|
|
}
|
2017-03-30 09:49:06 +08:00
|
|
|
adg->onecell.clks = adg->clkout;
|
|
|
|
adg->onecell.clk_num = CLKOUTMAX;
|
|
|
|
of_clk_add_provider(np, of_clk_src_onecell_get,
|
|
|
|
&adg->onecell);
|
2013-07-22 12:36:46 +08:00
|
|
|
}
|
|
|
|
|
2017-04-21 08:41:20 +08:00
|
|
|
rsnd_adg_get_clkout_end:
|
2016-12-07 08:28:11 +08:00
|
|
|
adg->ckr = ckr;
|
|
|
|
adg->rbga = rbga;
|
|
|
|
adg->rbgb = rbgb;
|
2017-10-13 14:03:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
static void rsnd_adg_clk_dbg_info(struct rsnd_priv *priv, struct rsnd_adg *adg)
|
|
|
|
{
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
|
|
|
struct clk *clk;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_rsnd_clk(clk, adg, i)
|
|
|
|
dev_dbg(dev, "%s : %p : %ld\n",
|
|
|
|
clk_name[i], clk, clk_get_rate(clk));
|
2015-09-10 15:03:48 +08:00
|
|
|
|
2016-10-28 12:12:40 +08:00
|
|
|
dev_dbg(dev, "BRGCKR = 0x%08x, BRRA/BRRB = 0x%x/0x%x\n",
|
2017-10-13 14:03:06 +08:00
|
|
|
adg->ckr, adg->rbga, adg->rbgb);
|
|
|
|
dev_dbg(dev, "BRGA (for 44100 base) = %d\n", adg->rbga_rate_for_441khz);
|
|
|
|
dev_dbg(dev, "BRGB (for 48000 base) = %d\n", adg->rbgb_rate_for_48khz);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Actual CLKOUT will be exchanged in rsnd_adg_ssi_clk_try_start()
|
|
|
|
* by BRGCKR::BRGCKR_31
|
|
|
|
*/
|
|
|
|
for_each_rsnd_clkout(clk, adg, i)
|
|
|
|
dev_dbg(dev, "clkout %d : %p : %ld\n", i,
|
|
|
|
clk, clk_get_rate(clk));
|
2013-07-22 12:36:46 +08:00
|
|
|
}
|
2017-10-13 14:03:06 +08:00
|
|
|
#else
|
|
|
|
#define rsnd_adg_clk_dbg_info(priv, adg)
|
|
|
|
#endif
|
2013-07-22 12:36:46 +08:00
|
|
|
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_adg_probe(struct rsnd_priv *priv)
|
2013-07-22 12:36:46 +08:00
|
|
|
{
|
|
|
|
struct rsnd_adg *adg;
|
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
2017-02-21 05:05:07 +08:00
|
|
|
int ret;
|
2013-07-22 12:36:46 +08:00
|
|
|
|
|
|
|
adg = devm_kzalloc(dev, sizeof(*adg), GFP_KERNEL);
|
2017-08-10 23:13:19 +08:00
|
|
|
if (!adg)
|
2013-07-22 12:36:46 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-02-21 05:05:07 +08:00
|
|
|
ret = rsnd_mod_init(priv, &adg->mod, &adg_ops,
|
2016-01-21 09:58:07 +08:00
|
|
|
NULL, NULL, 0, 0);
|
2017-02-21 05:05:07 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-09-10 15:02:39 +08:00
|
|
|
|
2015-09-10 15:04:24 +08:00
|
|
|
rsnd_adg_get_clkin(priv, adg);
|
2015-09-10 15:04:45 +08:00
|
|
|
rsnd_adg_get_clkout(priv, adg);
|
2017-10-13 14:03:06 +08:00
|
|
|
rsnd_adg_clk_dbg_info(priv, adg);
|
2013-07-22 12:36:46 +08:00
|
|
|
|
|
|
|
priv->adg = adg;
|
|
|
|
|
2016-12-07 08:29:02 +08:00
|
|
|
rsnd_adg_clk_enable(priv);
|
|
|
|
|
2013-07-22 12:36:46 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2015-11-05 16:51:15 +08:00
|
|
|
|
2015-11-10 13:14:12 +08:00
|
|
|
void rsnd_adg_remove(struct rsnd_priv *priv)
|
2015-11-05 16:51:15 +08:00
|
|
|
{
|
2017-03-30 09:49:27 +08:00
|
|
|
struct device *dev = rsnd_priv_to_dev(priv);
|
|
|
|
struct device_node *np = dev->of_node;
|
2017-08-02 18:26:09 +08:00
|
|
|
struct rsnd_adg *adg = priv->adg;
|
|
|
|
struct clk *clk;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_rsnd_clkout(clk, adg, i)
|
|
|
|
if (adg->clkout[i])
|
|
|
|
clk_unregister_fixed_rate(adg->clkout[i]);
|
2017-03-30 09:49:27 +08:00
|
|
|
|
|
|
|
of_clk_del_provider(np);
|
|
|
|
|
2016-12-07 08:29:02 +08:00
|
|
|
rsnd_adg_clk_disable(priv);
|
2015-11-05 16:51:15 +08:00
|
|
|
}
|