-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branches 'asoc/fix/rt5677', 'asoc/fix/st', 'aso…
…c/fix/sun4i-codec', 'asoc/fix/topology', 'asoc/fix/wm8960' and 'asoc/fix/wm8962' into asoc-linus
- Loading branch information
Showing
7 changed files
with
86 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
* Copyright 2014 Emilio López <[email protected]> | ||
* Copyright 2014 Jon Smirl <[email protected]> | ||
* Copyright 2015 Maxime Ripard <[email protected]> | ||
* Copyright 2015 Adam Sampson <[email protected]> | ||
* | ||
* Based on the Allwinner SDK driver, released under the GPL. | ||
* | ||
|
@@ -404,7 +405,7 @@ static const struct snd_kcontrol_new sun4i_codec_pa_mute = | |
static DECLARE_TLV_DB_SCALE(sun4i_codec_pa_volume_scale, -6300, 100, 1); | ||
|
||
static const struct snd_kcontrol_new sun4i_codec_widgets[] = { | ||
SOC_SINGLE_TLV("PA Volume", SUN4I_CODEC_DAC_ACTL, | ||
SOC_SINGLE_TLV("Power Amplifier Volume", SUN4I_CODEC_DAC_ACTL, | ||
SUN4I_CODEC_DAC_ACTL_PA_VOL, 0x3F, 0, | ||
sun4i_codec_pa_volume_scale), | ||
}; | ||
|
@@ -452,12 +453,12 @@ static const struct snd_soc_dapm_widget sun4i_codec_dapm_widgets[] = { | |
SND_SOC_DAPM_SUPPLY("Mixer Enable", SUN4I_CODEC_DAC_ACTL, | ||
SUN4I_CODEC_DAC_ACTL_MIXEN, 0, NULL, 0), | ||
|
||
/* Pre-Amplifier */ | ||
SND_SOC_DAPM_MIXER("Pre-Amplifier", SUN4I_CODEC_ADC_ACTL, | ||
/* Power Amplifier */ | ||
SND_SOC_DAPM_MIXER("Power Amplifier", SUN4I_CODEC_ADC_ACTL, | ||
SUN4I_CODEC_ADC_ACTL_PA_EN, 0, | ||
sun4i_codec_pa_mixer_controls, | ||
ARRAY_SIZE(sun4i_codec_pa_mixer_controls)), | ||
SND_SOC_DAPM_SWITCH("Pre-Amplifier Mute", SND_SOC_NOPM, 0, 0, | ||
SND_SOC_DAPM_SWITCH("Power Amplifier Mute", SND_SOC_NOPM, 0, 0, | ||
&sun4i_codec_pa_mute), | ||
|
||
SND_SOC_DAPM_OUTPUT("HP Right"), | ||
|
@@ -480,16 +481,16 @@ static const struct snd_soc_dapm_route sun4i_codec_dapm_routes[] = { | |
{ "Left Mixer", NULL, "Mixer Enable" }, | ||
{ "Left Mixer", "Left DAC Playback Switch", "Left DAC" }, | ||
|
||
/* Pre-Amplifier Mixer Routes */ | ||
{ "Pre-Amplifier", "Mixer Playback Switch", "Left Mixer" }, | ||
{ "Pre-Amplifier", "Mixer Playback Switch", "Right Mixer" }, | ||
{ "Pre-Amplifier", "DAC Playback Switch", "Left DAC" }, | ||
{ "Pre-Amplifier", "DAC Playback Switch", "Right DAC" }, | ||
/* Power Amplifier Routes */ | ||
{ "Power Amplifier", "Mixer Playback Switch", "Left Mixer" }, | ||
{ "Power Amplifier", "Mixer Playback Switch", "Right Mixer" }, | ||
{ "Power Amplifier", "DAC Playback Switch", "Left DAC" }, | ||
{ "Power Amplifier", "DAC Playback Switch", "Right DAC" }, | ||
|
||
/* PA -> HP path */ | ||
{ "Pre-Amplifier Mute", "Switch", "Pre-Amplifier" }, | ||
{ "HP Right", NULL, "Pre-Amplifier Mute" }, | ||
{ "HP Left", NULL, "Pre-Amplifier Mute" }, | ||
/* Headphone Output Routes */ | ||
{ "Power Amplifier Mute", "Switch", "Power Amplifier" }, | ||
{ "HP Right", NULL, "Power Amplifier Mute" }, | ||
{ "HP Left", NULL, "Power Amplifier Mute" }, | ||
}; | ||
|
||
static struct snd_soc_codec_driver sun4i_codec_codec = { | ||
|