2 * tosa.c -- SoC audio for Tosa
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
7 * Authors: Liam Girdwood <lrg@slimlogic.co.uk>
8 * Richard Purdie <richard@openedhand.com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
17 * 5 - Hookswitch (headset answer/hang up switch)
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
23 #include <linux/device.h>
24 #include <linux/gpio.h>
26 #include <sound/core.h>
27 #include <sound/pcm.h>
28 #include <sound/soc.h>
30 #include <asm/mach-types.h>
31 #include <mach/tosa.h>
32 #include <mach/audio.h>
35 #define TOSA_MIC_INT 1
36 #define TOSA_HEADSET 2
39 #define TOSA_SPK_OFF 1
41 static int tosa_jack_func
;
42 static int tosa_spk_func
;
44 static void tosa_ext_control(struct snd_soc_dapm_context
*dapm
)
47 snd_soc_dapm_mutex_lock(dapm
);
49 /* set up jack connection */
50 switch (tosa_jack_func
) {
52 snd_soc_dapm_disable_pin_unlocked(dapm
, "Mic (Internal)");
53 snd_soc_dapm_enable_pin_unlocked(dapm
, "Headphone Jack");
54 snd_soc_dapm_disable_pin_unlocked(dapm
, "Headset Jack");
57 snd_soc_dapm_enable_pin_unlocked(dapm
, "Mic (Internal)");
58 snd_soc_dapm_disable_pin_unlocked(dapm
, "Headphone Jack");
59 snd_soc_dapm_disable_pin_unlocked(dapm
, "Headset Jack");
62 snd_soc_dapm_disable_pin_unlocked(dapm
, "Mic (Internal)");
63 snd_soc_dapm_disable_pin_unlocked(dapm
, "Headphone Jack");
64 snd_soc_dapm_enable_pin_unlocked(dapm
, "Headset Jack");
68 if (tosa_spk_func
== TOSA_SPK_ON
)
69 snd_soc_dapm_enable_pin_unlocked(dapm
, "Speaker");
71 snd_soc_dapm_disable_pin_unlocked(dapm
, "Speaker");
73 snd_soc_dapm_sync_unlocked(dapm
);
75 snd_soc_dapm_mutex_unlock(dapm
);
78 static int tosa_startup(struct snd_pcm_substream
*substream
)
80 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
82 /* check the jack status at stream startup */
83 tosa_ext_control(&rtd
->card
->dapm
);
88 static const struct snd_soc_ops tosa_ops
= {
89 .startup
= tosa_startup
,
92 static int tosa_get_jack(struct snd_kcontrol
*kcontrol
,
93 struct snd_ctl_elem_value
*ucontrol
)
95 ucontrol
->value
.enumerated
.item
[0] = tosa_jack_func
;
99 static int tosa_set_jack(struct snd_kcontrol
*kcontrol
,
100 struct snd_ctl_elem_value
*ucontrol
)
102 struct snd_soc_card
*card
= snd_kcontrol_chip(kcontrol
);
104 if (tosa_jack_func
== ucontrol
->value
.enumerated
.item
[0])
107 tosa_jack_func
= ucontrol
->value
.enumerated
.item
[0];
108 tosa_ext_control(&card
->dapm
);
112 static int tosa_get_spk(struct snd_kcontrol
*kcontrol
,
113 struct snd_ctl_elem_value
*ucontrol
)
115 ucontrol
->value
.enumerated
.item
[0] = tosa_spk_func
;
119 static int tosa_set_spk(struct snd_kcontrol
*kcontrol
,
120 struct snd_ctl_elem_value
*ucontrol
)
122 struct snd_soc_card
*card
= snd_kcontrol_chip(kcontrol
);
124 if (tosa_spk_func
== ucontrol
->value
.enumerated
.item
[0])
127 tosa_spk_func
= ucontrol
->value
.enumerated
.item
[0];
128 tosa_ext_control(&card
->dapm
);
132 /* tosa dapm event handlers */
133 static int tosa_hp_event(struct snd_soc_dapm_widget
*w
,
134 struct snd_kcontrol
*k
, int event
)
136 gpio_set_value(TOSA_GPIO_L_MUTE
, SND_SOC_DAPM_EVENT_ON(event
) ? 1 : 0);
140 /* tosa machine dapm widgets */
141 static const struct snd_soc_dapm_widget tosa_dapm_widgets
[] = {
142 SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event
),
143 SND_SOC_DAPM_HP("Headset Jack", NULL
),
144 SND_SOC_DAPM_MIC("Mic (Internal)", NULL
),
145 SND_SOC_DAPM_SPK("Speaker", NULL
),
149 static const struct snd_soc_dapm_route audio_map
[] = {
151 /* headphone connected to HPOUTL, HPOUTR */
152 {"Headphone Jack", NULL
, "HPOUTL"},
153 {"Headphone Jack", NULL
, "HPOUTR"},
155 /* ext speaker connected to LOUT2, ROUT2 */
156 {"Speaker", NULL
, "LOUT2"},
157 {"Speaker", NULL
, "ROUT2"},
159 /* internal mic is connected to mic1, mic2 differential - with bias */
160 {"MIC1", NULL
, "Mic Bias"},
161 {"MIC2", NULL
, "Mic Bias"},
162 {"Mic Bias", NULL
, "Mic (Internal)"},
164 /* headset is connected to HPOUTR, and LINEINR with bias */
165 {"Headset Jack", NULL
, "HPOUTR"},
166 {"LINEINR", NULL
, "Mic Bias"},
167 {"Mic Bias", NULL
, "Headset Jack"},
170 static const char * const jack_function
[] = {"Headphone", "Mic", "Line",
172 static const char * const spk_function
[] = {"On", "Off"};
173 static const struct soc_enum tosa_enum
[] = {
174 SOC_ENUM_SINGLE_EXT(5, jack_function
),
175 SOC_ENUM_SINGLE_EXT(2, spk_function
),
178 static const struct snd_kcontrol_new tosa_controls
[] = {
179 SOC_ENUM_EXT("Jack Function", tosa_enum
[0], tosa_get_jack
,
181 SOC_ENUM_EXT("Speaker Function", tosa_enum
[1], tosa_get_spk
,
185 static struct snd_soc_dai_link tosa_dai
[] = {
188 .stream_name
= "AC97 HiFi",
189 .cpu_dai_name
= "pxa2xx-ac97",
190 .codec_dai_name
= "wm9712-hifi",
191 .platform_name
= "pxa-pcm-audio",
192 .codec_name
= "wm9712-codec",
197 .stream_name
= "AC97 Aux",
198 .cpu_dai_name
= "pxa2xx-ac97-aux",
199 .codec_dai_name
= "wm9712-aux",
200 .platform_name
= "pxa-pcm-audio",
201 .codec_name
= "wm9712-codec",
206 static struct snd_soc_card tosa
= {
208 .owner
= THIS_MODULE
,
209 .dai_link
= tosa_dai
,
210 .num_links
= ARRAY_SIZE(tosa_dai
),
212 .controls
= tosa_controls
,
213 .num_controls
= ARRAY_SIZE(tosa_controls
),
214 .dapm_widgets
= tosa_dapm_widgets
,
215 .num_dapm_widgets
= ARRAY_SIZE(tosa_dapm_widgets
),
216 .dapm_routes
= audio_map
,
217 .num_dapm_routes
= ARRAY_SIZE(audio_map
),
218 .fully_routed
= true,
221 static int tosa_probe(struct platform_device
*pdev
)
223 struct snd_soc_card
*card
= &tosa
;
226 ret
= gpio_request_one(TOSA_GPIO_L_MUTE
, GPIOF_OUT_INIT_LOW
,
231 card
->dev
= &pdev
->dev
;
233 ret
= devm_snd_soc_register_card(&pdev
->dev
, card
);
235 dev_err(&pdev
->dev
, "snd_soc_register_card() failed: %d\n",
237 gpio_free(TOSA_GPIO_L_MUTE
);
242 static int tosa_remove(struct platform_device
*pdev
)
244 gpio_free(TOSA_GPIO_L_MUTE
);
248 static struct platform_driver tosa_driver
= {
250 .name
= "tosa-audio",
251 .pm
= &snd_soc_pm_ops
,
254 .remove
= tosa_remove
,
257 module_platform_driver(tosa_driver
);
259 /* Module information */
260 MODULE_AUTHOR("Richard Purdie");
261 MODULE_DESCRIPTION("ALSA SoC Tosa");
262 MODULE_LICENSE("GPL");
263 MODULE_ALIAS("platform:tosa-audio");