Commit 89557787 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: sta529: replace codec to component

Now we can replace Codec to Component. Let's do it.

Note:
	xxx_codec_xxx()		->	xxx_component_xxx()
	.idle_bias_off = 0	->	.idle_bias_on = 1
	.ignore_pmdown_time = 0	->	.use_pmdown_time = 1
	-			->	.endianness = 1
	-			->	.non_legacy_dai_naming = 1
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7928b2cb
...@@ -151,28 +151,28 @@ static const struct snd_kcontrol_new sta529_snd_controls[] = { ...@@ -151,28 +151,28 @@ static const struct snd_kcontrol_new sta529_snd_controls[] = {
SOC_ENUM("PWM Select", pwm_src), SOC_ENUM("PWM Select", pwm_src),
}; };
static int sta529_set_bias_level(struct snd_soc_codec *codec, enum static int sta529_set_bias_level(struct snd_soc_component *component, enum
snd_soc_bias_level level) snd_soc_bias_level level)
{ {
struct sta529 *sta529 = snd_soc_codec_get_drvdata(codec); struct sta529 *sta529 = snd_soc_component_get_drvdata(component);
switch (level) { switch (level) {
case SND_SOC_BIAS_ON: case SND_SOC_BIAS_ON:
case SND_SOC_BIAS_PREPARE: case SND_SOC_BIAS_PREPARE:
snd_soc_update_bits(codec, STA529_FFXCFG0, POWER_CNTLMSAK, snd_soc_component_update_bits(component, STA529_FFXCFG0, POWER_CNTLMSAK,
POWER_UP); POWER_UP);
snd_soc_update_bits(codec, STA529_MISC, FFX_CLK_MSK, snd_soc_component_update_bits(component, STA529_MISC, FFX_CLK_MSK,
FFX_CLK_ENB); FFX_CLK_ENB);
break; break;
case SND_SOC_BIAS_STANDBY: case SND_SOC_BIAS_STANDBY:
if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF) if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF)
regcache_sync(sta529->regmap); regcache_sync(sta529->regmap);
snd_soc_update_bits(codec, STA529_FFXCFG0, snd_soc_component_update_bits(component, STA529_FFXCFG0,
POWER_CNTLMSAK, POWER_STDBY); POWER_CNTLMSAK, POWER_STDBY);
/* Making FFX output to zero */ /* Making FFX output to zero */
snd_soc_update_bits(codec, STA529_FFXCFG0, FFX_MASK, snd_soc_component_update_bits(component, STA529_FFXCFG0, FFX_MASK,
FFX_OFF); FFX_OFF);
snd_soc_update_bits(codec, STA529_MISC, FFX_CLK_MSK, snd_soc_component_update_bits(component, STA529_MISC, FFX_CLK_MSK,
FFX_CLK_DIS); FFX_CLK_DIS);
break; break;
case SND_SOC_BIAS_OFF: case SND_SOC_BIAS_OFF:
...@@ -187,7 +187,7 @@ static int sta529_hw_params(struct snd_pcm_substream *substream, ...@@ -187,7 +187,7 @@ static int sta529_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params, struct snd_pcm_hw_params *params,
struct snd_soc_dai *dai) struct snd_soc_dai *dai)
{ {
struct snd_soc_codec *codec = dai->codec; struct snd_soc_component *component = dai->component;
int pdata, play_freq_val, record_freq_val; int pdata, play_freq_val, record_freq_val;
int bclk_to_fs_ratio; int bclk_to_fs_ratio;
...@@ -205,7 +205,7 @@ static int sta529_hw_params(struct snd_pcm_substream *substream, ...@@ -205,7 +205,7 @@ static int sta529_hw_params(struct snd_pcm_substream *substream,
bclk_to_fs_ratio = 2; bclk_to_fs_ratio = 2;
break; break;
default: default:
dev_err(codec->dev, "Unsupported format\n"); dev_err(component->dev, "Unsupported format\n");
return -EINVAL; return -EINVAL;
} }
...@@ -228,23 +228,23 @@ static int sta529_hw_params(struct snd_pcm_substream *substream, ...@@ -228,23 +228,23 @@ static int sta529_hw_params(struct snd_pcm_substream *substream,
record_freq_val = 0; record_freq_val = 0;
break; break;
default: default:
dev_err(codec->dev, "Unsupported rate\n"); dev_err(component->dev, "Unsupported rate\n");
return -EINVAL; return -EINVAL;
} }
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
snd_soc_update_bits(codec, STA529_S2PCFG1, PDATA_LEN_MSK, snd_soc_component_update_bits(component, STA529_S2PCFG1, PDATA_LEN_MSK,
pdata << 6); pdata << 6);
snd_soc_update_bits(codec, STA529_S2PCFG1, BCLK_TO_FS_MSK, snd_soc_component_update_bits(component, STA529_S2PCFG1, BCLK_TO_FS_MSK,
bclk_to_fs_ratio << 4); bclk_to_fs_ratio << 4);
snd_soc_update_bits(codec, STA529_MISC, PLAY_FREQ_RANGE_MSK, snd_soc_component_update_bits(component, STA529_MISC, PLAY_FREQ_RANGE_MSK,
play_freq_val << 4); play_freq_val << 4);
} else { } else {
snd_soc_update_bits(codec, STA529_P2SCFG1, PDATA_LEN_MSK, snd_soc_component_update_bits(component, STA529_P2SCFG1, PDATA_LEN_MSK,
pdata << 6); pdata << 6);
snd_soc_update_bits(codec, STA529_P2SCFG1, BCLK_TO_FS_MSK, snd_soc_component_update_bits(component, STA529_P2SCFG1, BCLK_TO_FS_MSK,
bclk_to_fs_ratio << 4); bclk_to_fs_ratio << 4);
snd_soc_update_bits(codec, STA529_MISC, CAP_FREQ_RANGE_MSK, snd_soc_component_update_bits(component, STA529_MISC, CAP_FREQ_RANGE_MSK,
record_freq_val << 2); record_freq_val << 2);
} }
...@@ -258,14 +258,14 @@ static int sta529_mute(struct snd_soc_dai *dai, int mute) ...@@ -258,14 +258,14 @@ static int sta529_mute(struct snd_soc_dai *dai, int mute)
if (mute) if (mute)
val |= CODEC_MUTE_VAL; val |= CODEC_MUTE_VAL;
snd_soc_update_bits(dai->codec, STA529_FFXCFG0, AUDIO_MUTE_MSK, val); snd_soc_component_update_bits(dai->component, STA529_FFXCFG0, AUDIO_MUTE_MSK, val);
return 0; return 0;
} }
static int sta529_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt) static int sta529_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt)
{ {
struct snd_soc_codec *codec = codec_dai->codec; struct snd_soc_component *component = codec_dai->component;
u8 mode = 0; u8 mode = 0;
/* interface format */ /* interface format */
...@@ -283,7 +283,7 @@ static int sta529_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt) ...@@ -283,7 +283,7 @@ static int sta529_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt)
return -EINVAL; return -EINVAL;
} }
snd_soc_update_bits(codec, STA529_S2PCFG0, DATA_FORMAT_MSK, mode); snd_soc_component_update_bits(component, STA529_S2PCFG0, DATA_FORMAT_MSK, mode);
return 0; return 0;
} }
...@@ -313,14 +313,15 @@ static struct snd_soc_dai_driver sta529_dai = { ...@@ -313,14 +313,15 @@ static struct snd_soc_dai_driver sta529_dai = {
.ops = &sta529_dai_ops, .ops = &sta529_dai_ops,
}; };
static const struct snd_soc_codec_driver sta529_codec_driver = { static const struct snd_soc_component_driver sta529_component_driver = {
.set_bias_level = sta529_set_bias_level, .set_bias_level = sta529_set_bias_level,
.suspend_bias_off = true, .controls = sta529_snd_controls,
.num_controls = ARRAY_SIZE(sta529_snd_controls),
.component_driver = { .suspend_bias_off = 1,
.controls = sta529_snd_controls, .idle_bias_on = 1,
.num_controls = ARRAY_SIZE(sta529_snd_controls), .use_pmdown_time = 1,
}, .endianness = 1,
.non_legacy_dai_naming = 1,
}; };
static const struct regmap_config sta529_regmap = { static const struct regmap_config sta529_regmap = {
...@@ -354,21 +355,14 @@ static int sta529_i2c_probe(struct i2c_client *i2c, ...@@ -354,21 +355,14 @@ static int sta529_i2c_probe(struct i2c_client *i2c,
i2c_set_clientdata(i2c, sta529); i2c_set_clientdata(i2c, sta529);
ret = snd_soc_register_codec(&i2c->dev, ret = devm_snd_soc_register_component(&i2c->dev,
&sta529_codec_driver, &sta529_dai, 1); &sta529_component_driver, &sta529_dai, 1);
if (ret != 0) if (ret != 0)
dev_err(&i2c->dev, "Failed to register CODEC: %d\n", ret); dev_err(&i2c->dev, "Failed to register CODEC: %d\n", ret);
return ret; return ret;
} }
static int sta529_i2c_remove(struct i2c_client *client)
{
snd_soc_unregister_codec(&client->dev);
return 0;
}
static const struct i2c_device_id sta529_i2c_id[] = { static const struct i2c_device_id sta529_i2c_id[] = {
{ "sta529", 0 }, { "sta529", 0 },
{ } { }
...@@ -387,7 +381,6 @@ static struct i2c_driver sta529_i2c_driver = { ...@@ -387,7 +381,6 @@ static struct i2c_driver sta529_i2c_driver = {
.of_match_table = sta529_of_match, .of_match_table = sta529_of_match,
}, },
.probe = sta529_i2c_probe, .probe = sta529_i2c_probe,
.remove = sta529_i2c_remove,
.id_table = sta529_i2c_id, .id_table = sta529_i2c_id,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment