Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 132937
b: refs/heads/master
c: f8d5fc9
h: refs/heads/master
i:
  132935: 5aaeaa9
v: v3
  • Loading branch information
Jarkko Nikula authored and Mark Brown committed Mar 19, 2009
1 parent fb0e756 commit 0f53755
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 13b9d2ab5921d77df5217a2104b687a1c729d521
refs/heads/master: f8d5fc924b1bec95f47b0a9e8f9a6e22fa1c7b05
28 changes: 26 additions & 2 deletions trunk/sound/soc/omap/n810.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@
#define N810_HEADSET_AMP_GPIO 10
#define N810_SPEAKER_AMP_GPIO 101

enum {
N810_JACK_DISABLED,
N810_JACK_HP,
N810_JACK_HS,
N810_JACK_MIC,
};

static struct clk *sys_clkout2;
static struct clk *sys_clkout2_src;
static struct clk *func96m_clk;
Expand All @@ -50,15 +57,32 @@ static int n810_dmic_func;

static void n810_ext_control(struct snd_soc_codec *codec)
{
int hp = 0, line1l = 0;

switch (n810_jack_func) {
case N810_JACK_HS:
line1l = 1;
case N810_JACK_HP:
hp = 1;
break;
case N810_JACK_MIC:
line1l = 1;
break;
}

if (n810_spk_func)
snd_soc_dapm_enable_pin(codec, "Ext Spk");
else
snd_soc_dapm_disable_pin(codec, "Ext Spk");

if (n810_jack_func)
if (hp)
snd_soc_dapm_enable_pin(codec, "Headphone Jack");
else
snd_soc_dapm_disable_pin(codec, "Headphone Jack");
if (line1l)
snd_soc_dapm_enable_pin(codec, "LINE1L");
else
snd_soc_dapm_disable_pin(codec, "LINE1L");

if (n810_dmic_func)
snd_soc_dapm_enable_pin(codec, "DMic");
Expand Down Expand Up @@ -229,7 +253,7 @@ static const struct snd_soc_dapm_route audio_map[] = {
};

static const char *spk_function[] = {"Off", "On"};
static const char *jack_function[] = {"Off", "Headphone"};
static const char *jack_function[] = {"Off", "Headphone", "Headset", "Mic"};
static const char *input_function[] = {"ADC", "Digital Mic"};
static const struct soc_enum n810_enum[] = {
SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(spk_function), spk_function),
Expand Down

0 comments on commit 0f53755

Please sign in to comment.