2 * e740-wm9705.c -- SoC audio for e740
4 * Copyright 2007 (c) Ian Molton <spyro@f2s.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; version 2 ONLY.
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
14 #include <linux/gpio.h>
16 #include <sound/core.h>
17 #include <sound/pcm.h>
18 #include <sound/soc.h>
20 #include <mach/audio.h>
21 #include <mach/eseries-gpio.h>
23 #include <asm/mach-types.h>
25 #define E740_AUDIO_OUT 1
26 #define E740_AUDIO_IN 2
28 static int e740_audio_power
;
30 static void e740_sync_audio_power(int status
)
32 gpio_set_value(GPIO_E740_WM9705_nAVDD2
, !status
);
33 gpio_set_value(GPIO_E740_AMP_ON
, (status
& E740_AUDIO_OUT
) ? 1 : 0);
34 gpio_set_value(GPIO_E740_MIC_ON
, (status
& E740_AUDIO_IN
) ? 1 : 0);
37 static int e740_mic_amp_event(struct snd_soc_dapm_widget
*w
,
38 struct snd_kcontrol
*kcontrol
, int event
)
40 if (event
& SND_SOC_DAPM_PRE_PMU
)
41 e740_audio_power
|= E740_AUDIO_IN
;
42 else if (event
& SND_SOC_DAPM_POST_PMD
)
43 e740_audio_power
&= ~E740_AUDIO_IN
;
45 e740_sync_audio_power(e740_audio_power
);
50 static int e740_output_amp_event(struct snd_soc_dapm_widget
*w
,
51 struct snd_kcontrol
*kcontrol
, int event
)
53 if (event
& SND_SOC_DAPM_PRE_PMU
)
54 e740_audio_power
|= E740_AUDIO_OUT
;
55 else if (event
& SND_SOC_DAPM_POST_PMD
)
56 e740_audio_power
&= ~E740_AUDIO_OUT
;
58 e740_sync_audio_power(e740_audio_power
);
63 static const struct snd_soc_dapm_widget e740_dapm_widgets
[] = {
64 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
65 SND_SOC_DAPM_SPK("Speaker", NULL
),
66 SND_SOC_DAPM_MIC("Mic (Internal)", NULL
),
67 SND_SOC_DAPM_PGA_E("Output Amp", SND_SOC_NOPM
, 0, 0, NULL
, 0,
68 e740_output_amp_event
, SND_SOC_DAPM_PRE_PMU
|
69 SND_SOC_DAPM_POST_PMD
),
70 SND_SOC_DAPM_PGA_E("Mic Amp", SND_SOC_NOPM
, 0, 0, NULL
, 0,
71 e740_mic_amp_event
, SND_SOC_DAPM_PRE_PMU
|
72 SND_SOC_DAPM_POST_PMD
),
75 static const struct snd_soc_dapm_route audio_map
[] = {
76 {"Output Amp", NULL
, "LOUT"},
77 {"Output Amp", NULL
, "ROUT"},
78 {"Output Amp", NULL
, "MONOOUT"},
80 {"Speaker", NULL
, "Output Amp"},
81 {"Headphone Jack", NULL
, "Output Amp"},
83 {"MIC1", NULL
, "Mic Amp"},
84 {"Mic Amp", NULL
, "Mic (Internal)"},
87 static struct snd_soc_dai_link e740_dai
[] = {
90 .stream_name
= "AC97 HiFi",
91 .cpu_dai_name
= "pxa2xx-ac97",
92 .codec_dai_name
= "wm9705-hifi",
93 .platform_name
= "pxa-pcm-audio",
94 .codec_name
= "wm9705-codec",
98 .stream_name
= "AC97 Aux",
99 .cpu_dai_name
= "pxa2xx-ac97-aux",
100 .codec_dai_name
= "wm9705-aux",
101 .platform_name
= "pxa-pcm-audio",
102 .codec_name
= "wm9705-codec",
106 static struct snd_soc_card e740
= {
107 .name
= "Toshiba e740",
108 .owner
= THIS_MODULE
,
109 .dai_link
= e740_dai
,
110 .num_links
= ARRAY_SIZE(e740_dai
),
112 .dapm_widgets
= e740_dapm_widgets
,
113 .num_dapm_widgets
= ARRAY_SIZE(e740_dapm_widgets
),
114 .dapm_routes
= audio_map
,
115 .num_dapm_routes
= ARRAY_SIZE(audio_map
),
116 .fully_routed
= true,
119 static struct gpio e740_audio_gpios
[] = {
120 { GPIO_E740_MIC_ON
, GPIOF_OUT_INIT_LOW
, "Mic amp" },
121 { GPIO_E740_AMP_ON
, GPIOF_OUT_INIT_LOW
, "Output amp" },
122 { GPIO_E740_WM9705_nAVDD2
, GPIOF_OUT_INIT_HIGH
, "Audio power" },
125 static int e740_probe(struct platform_device
*pdev
)
127 struct snd_soc_card
*card
= &e740
;
130 ret
= gpio_request_array(e740_audio_gpios
,
131 ARRAY_SIZE(e740_audio_gpios
));
135 card
->dev
= &pdev
->dev
;
137 ret
= devm_snd_soc_register_card(&pdev
->dev
, card
);
139 dev_err(&pdev
->dev
, "snd_soc_register_card() failed: %d\n",
141 gpio_free_array(e740_audio_gpios
, ARRAY_SIZE(e740_audio_gpios
));
146 static int e740_remove(struct platform_device
*pdev
)
148 gpio_free_array(e740_audio_gpios
, ARRAY_SIZE(e740_audio_gpios
));
152 static struct platform_driver e740_driver
= {
154 .name
= "e740-audio",
155 .pm
= &snd_soc_pm_ops
,
158 .remove
= e740_remove
,
161 module_platform_driver(e740_driver
);
163 /* Module information */
164 MODULE_AUTHOR("Ian Molton <spyro@f2s.com>");
165 MODULE_DESCRIPTION("ALSA SoC driver for e740");
166 MODULE_LICENSE("GPL v2");
167 MODULE_ALIAS("platform:e740-audio");