Skip to content

Commit

Permalink
ASoC: add Component level set_jack
Browse files Browse the repository at this point in the history
In current ALSA SoC, Codec only has set_jack feature.
Codec will be merged into Component in next generation ALSA SoC,
thus current Codec specific feature need to be merged into it.
This is glue patch for it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Kuninori Morimoto authored and Mark Brown committed Aug 30, 2017
1 parent ef641e5 commit 44c0736
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/sound/soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,8 @@ struct snd_soc_component_driver {
int clk_id, int source, unsigned int freq, int dir);
int (*set_pll)(struct snd_soc_component *component, int pll_id,
int source, unsigned int freq_in, unsigned int freq_out);
int (*set_jack)(struct snd_soc_component *component,
struct snd_soc_jack *jack, void *data);

/* DT */
int (*of_xlate_dai_name)(struct snd_soc_component *component,
Expand Down Expand Up @@ -875,6 +877,8 @@ struct snd_soc_component {
int clk_id, int source, unsigned int freq, int dir);
int (*set_pll)(struct snd_soc_component *component, int pll_id,
int source, unsigned int freq_in, unsigned int freq_out);
int (*set_jack)(struct snd_soc_component *component,
struct snd_soc_jack *jack, void *data);

/* machine specific init */
int (*init)(struct snd_soc_component *component);
Expand Down
11 changes: 11 additions & 0 deletions sound/soc/soc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -3225,6 +3225,7 @@ static int snd_soc_component_initialize(struct snd_soc_component *component,
component->resume = component->driver->resume;
component->set_sysclk = component->driver->set_sysclk;
component->set_pll = component->driver->set_pll;
component->set_jack = component->driver->set_jack;

dapm = &component->dapm;
dapm->dev = dev;
Expand Down Expand Up @@ -3625,6 +3626,14 @@ static int snd_soc_codec_set_pll_(struct snd_soc_component *component,
return snd_soc_codec_set_pll(codec, pll_id, source, freq_in, freq_out);
}

static int snd_soc_codec_set_jack_(struct snd_soc_component *component,
struct snd_soc_jack *jack, void *data)
{
struct snd_soc_codec *codec = snd_soc_component_to_codec(component);

return snd_soc_codec_set_jack(codec, jack, data);
}

static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
enum snd_soc_bias_level level)
{
Expand Down Expand Up @@ -3680,6 +3689,8 @@ int snd_soc_register_codec(struct device *dev,
codec->component.set_sysclk = snd_soc_codec_set_sysclk_;
if (codec_drv->set_pll)
codec->component.set_pll = snd_soc_codec_set_pll_;
if (codec_drv->set_jack)
codec->component.set_jack = snd_soc_codec_set_jack_;
codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;

dapm = snd_soc_codec_get_dapm(codec);
Expand Down
22 changes: 22 additions & 0 deletions sound/soc/soc-jack.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,28 @@ int snd_soc_codec_set_jack(struct snd_soc_codec *codec,
}
EXPORT_SYMBOL_GPL(snd_soc_codec_set_jack);

/**
* snd_soc_component_set_jack - configure component jack.
* @component: COMPONENTs
* @jack: structure to use for the jack
* @data: can be used if codec driver need extra data for configuring jack
*
* Configures and enables jack detection function.
*/
int snd_soc_component_set_jack(struct snd_soc_component *component,
struct snd_soc_jack *jack, void *data)
{
/* will be removed */
if (component->set_jack)
return component->set_jack(component, jack, data);

if (component->driver->set_jack)
return component->driver->set_jack(component, jack, data);

return -ENOTSUPP;
}
EXPORT_SYMBOL_GPL(snd_soc_component_set_jack);

/**
* snd_soc_card_jack_new - Create a new jack
* @card: ASoC card
Expand Down

0 comments on commit 44c0736

Please sign in to comment.