blob: 620fc69ae6324507a6feab69f3ea66d33f2d5d6d [file] [log] [blame]
Liam Girdwood1b49cb92006-10-12 14:33:09 +02001/*
2 * tosa.c -- SoC audio for Tosa
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01007 * Authors: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood1b49cb92006-10-12 14:33:09 +02008 * Richard Purdie <richard@openedhand.com>
9 *
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.
14 *
Liam Girdwood1b49cb92006-10-12 14:33:09 +020015 * GPIO's
16 * 1 - Jack Insertion
17 * 5 - Hookswitch (headset answer/hang up switch)
18 *
19 */
20
21#include <linux/module.h>
22#include <linux/moduleparam.h>
23#include <linux/device.h>
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +010024#include <linux/gpio.h>
Liam Girdwood1b49cb92006-10-12 14:33:09 +020025
Liam Girdwood1b49cb92006-10-12 14:33:09 +020026#include <sound/core.h>
27#include <sound/pcm.h>
28#include <sound/soc.h>
Liam Girdwood1b49cb92006-10-12 14:33:09 +020029
30#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/tosa.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/audio.h>
Liam Girdwood1b49cb92006-10-12 14:33:09 +020033
34#include "../codecs/wm9712.h"
Liam Girdwoodcb4c0482007-02-02 17:23:11 +010035#include "pxa2xx-ac97.h"
Liam Girdwood1b49cb92006-10-12 14:33:09 +020036
Mark Brown87506542008-11-18 20:50:34 +000037static struct snd_soc_card tosa;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020038
39#define TOSA_HP 0
40#define TOSA_MIC_INT 1
41#define TOSA_HEADSET 2
42#define TOSA_HP_OFF 3
43#define TOSA_SPK_ON 0
44#define TOSA_SPK_OFF 1
45
46static int tosa_jack_func;
47static int tosa_spk_func;
48
49static void tosa_ext_control(struct snd_soc_codec *codec)
50{
Liam Girdwoodce6120c2010-11-05 15:53:46 +020051 struct snd_soc_dapm_context *dapm = &codec->dapm;
52
Liam Girdwood1b49cb92006-10-12 14:33:09 +020053 /* set up jack connection */
54 switch (tosa_jack_func) {
55 case TOSA_HP:
Liam Girdwoodce6120c2010-11-05 15:53:46 +020056 snd_soc_dapm_disable_pin(dapm, "Mic (Internal)");
57 snd_soc_dapm_enable_pin(dapm, "Headphone Jack");
58 snd_soc_dapm_disable_pin(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020059 break;
60 case TOSA_MIC_INT:
Liam Girdwoodce6120c2010-11-05 15:53:46 +020061 snd_soc_dapm_enable_pin(dapm, "Mic (Internal)");
62 snd_soc_dapm_disable_pin(dapm, "Headphone Jack");
63 snd_soc_dapm_disable_pin(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020064 break;
65 case TOSA_HEADSET:
Liam Girdwoodce6120c2010-11-05 15:53:46 +020066 snd_soc_dapm_disable_pin(dapm, "Mic (Internal)");
67 snd_soc_dapm_disable_pin(dapm, "Headphone Jack");
68 snd_soc_dapm_enable_pin(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020069 break;
70 }
71
72 if (tosa_spk_func == TOSA_SPK_ON)
Liam Girdwoodce6120c2010-11-05 15:53:46 +020073 snd_soc_dapm_enable_pin(dapm, "Speaker");
Liam Girdwooda5302182008-07-07 13:35:17 +010074 else
Liam Girdwoodce6120c2010-11-05 15:53:46 +020075 snd_soc_dapm_disable_pin(dapm, "Speaker");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020076
Liam Girdwoodce6120c2010-11-05 15:53:46 +020077 snd_soc_dapm_sync(dapm);
Liam Girdwood1b49cb92006-10-12 14:33:09 +020078}
79
80static int tosa_startup(struct snd_pcm_substream *substream)
81{
82 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Eric Miaocb990622010-11-02 05:10:07 +080083 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020084
Mark Brown71a29562010-11-05 13:50:48 -040085 mutex_lock(&codec->mutex);
86
Liam Girdwood1b49cb92006-10-12 14:33:09 +020087 /* check the jack status at stream startup */
88 tosa_ext_control(codec);
Mark Brown71a29562010-11-05 13:50:48 -040089
90 mutex_unlock(&codec->mutex);
91
Liam Girdwood1b49cb92006-10-12 14:33:09 +020092 return 0;
93}
94
95static struct snd_soc_ops tosa_ops = {
96 .startup = tosa_startup,
97};
98
99static int tosa_get_jack(struct snd_kcontrol *kcontrol,
100 struct snd_ctl_elem_value *ucontrol)
101{
102 ucontrol->value.integer.value[0] = tosa_jack_func;
103 return 0;
104}
105
106static int tosa_set_jack(struct snd_kcontrol *kcontrol,
107 struct snd_ctl_elem_value *ucontrol)
108{
109 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
110
111 if (tosa_jack_func == ucontrol->value.integer.value[0])
112 return 0;
113
114 tosa_jack_func = ucontrol->value.integer.value[0];
115 tosa_ext_control(codec);
116 return 1;
117}
118
119static int tosa_get_spk(struct snd_kcontrol *kcontrol,
120 struct snd_ctl_elem_value *ucontrol)
121{
122 ucontrol->value.integer.value[0] = tosa_spk_func;
123 return 0;
124}
125
126static int tosa_set_spk(struct snd_kcontrol *kcontrol,
127 struct snd_ctl_elem_value *ucontrol)
128{
129 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
130
131 if (tosa_spk_func == ucontrol->value.integer.value[0])
132 return 0;
133
134 tosa_spk_func = ucontrol->value.integer.value[0];
135 tosa_ext_control(codec);
136 return 1;
137}
138
139/* tosa dapm event handlers */
Jarkko Nikula338c7ed2008-02-28 12:34:48 +0100140static int tosa_hp_event(struct snd_soc_dapm_widget *w,
141 struct snd_kcontrol *k, int event)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200142{
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100143 gpio_set_value(TOSA_GPIO_L_MUTE, SND_SOC_DAPM_EVENT_ON(event) ? 1 :0);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200144 return 0;
145}
146
147/* tosa machine dapm widgets */
148static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = {
149SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event),
150SND_SOC_DAPM_HP("Headset Jack", NULL),
151SND_SOC_DAPM_MIC("Mic (Internal)", NULL),
152SND_SOC_DAPM_SPK("Speaker", NULL),
153};
154
155/* tosa audio map */
Dmitry Baryshkov76d39d02008-07-08 19:45:20 +0400156static const struct snd_soc_dapm_route audio_map[] = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200157
158 /* headphone connected to HPOUTL, HPOUTR */
159 {"Headphone Jack", NULL, "HPOUTL"},
160 {"Headphone Jack", NULL, "HPOUTR"},
161
162 /* ext speaker connected to LOUT2, ROUT2 */
163 {"Speaker", NULL, "LOUT2"},
164 {"Speaker", NULL, "ROUT2"},
165
166 /* internal mic is connected to mic1, mic2 differential - with bias */
167 {"MIC1", NULL, "Mic Bias"},
168 {"MIC2", NULL, "Mic Bias"},
169 {"Mic Bias", NULL, "Mic (Internal)"},
170
171 /* headset is connected to HPOUTR, and LINEINR with bias */
172 {"Headset Jack", NULL, "HPOUTR"},
173 {"LINEINR", NULL, "Mic Bias"},
174 {"Mic Bias", NULL, "Headset Jack"},
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200175};
176
177static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
178 "Off"};
179static const char *spk_function[] = {"On", "Off"};
180static const struct soc_enum tosa_enum[] = {
181 SOC_ENUM_SINGLE_EXT(5, jack_function),
182 SOC_ENUM_SINGLE_EXT(2, spk_function),
183};
184
185static const struct snd_kcontrol_new tosa_controls[] = {
186 SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack,
187 tosa_set_jack),
188 SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk,
189 tosa_set_spk),
190};
191
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000192static int tosa_ac97_init(struct snd_soc_pcm_runtime *rtd)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200193{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000194 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200195 struct snd_soc_dapm_context *dapm = &codec->dapm;
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100196 int err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200197
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200198 snd_soc_dapm_nc_pin(dapm, "OUT3");
199 snd_soc_dapm_nc_pin(dapm, "MONOOUT");
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200200
201 /* add tosa specific controls */
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100202 err = snd_soc_add_controls(codec, tosa_controls,
203 ARRAY_SIZE(tosa_controls));
204 if (err < 0)
205 return err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200206
207 /* add tosa specific widgets */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200208 snd_soc_dapm_new_controls(dapm, tosa_dapm_widgets,
Mark Brown25191c42008-05-13 14:55:48 +0200209 ARRAY_SIZE(tosa_dapm_widgets));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200210
211 /* set up tosa specific audio path audio_map */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200212 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200213
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200214 return 0;
215}
216
217static struct snd_soc_dai_link tosa_dai[] = {
218{
219 .name = "AC97",
220 .stream_name = "AC97 HiFi",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +0300221 .cpu_dai_name = "pxa2xx-ac97",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000222 .codec_dai_name = "wm9712-hifi",
223 .platform_name = "pxa-pcm-audio",
224 .codec_name = "wm9712-codec",
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200225 .init = tosa_ac97_init,
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100226 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200227},
228{
229 .name = "AC97 Aux",
230 .stream_name = "AC97 Aux",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +0300231 .cpu_dai_name = "pxa2xx-ac97-aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000232 .codec_dai_name = "wm9712-aux",
233 .platform_name = "pxa-pcm-audio",
234 .codec_name = "wm9712-codec",
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100235 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200236},
237};
238
Mark Browne7361ec2011-01-26 14:17:20 +0000239static int tosa_probe(struct snd_soc_card *card)
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300240{
241 int ret;
242
243 ret = gpio_request(TOSA_GPIO_L_MUTE, "Headphone Jack");
244 if (ret)
245 return ret;
246 ret = gpio_direction_output(TOSA_GPIO_L_MUTE, 0);
247 if (ret)
248 gpio_free(TOSA_GPIO_L_MUTE);
249
250 return ret;
251}
252
Mark Browne7361ec2011-01-26 14:17:20 +0000253static int tosa_remove(struct snd_soc_card *card)
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300254{
255 gpio_free(TOSA_GPIO_L_MUTE);
256 return 0;
257}
258
Mark Brown87506542008-11-18 20:50:34 +0000259static struct snd_soc_card tosa = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200260 .name = "Tosa",
261 .dai_link = tosa_dai,
262 .num_links = ARRAY_SIZE(tosa_dai),
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300263 .probe = tosa_probe,
264 .remove = tosa_remove,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200265};
266
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200267static struct platform_device *tosa_snd_device;
268
269static int __init tosa_init(void)
270{
271 int ret;
272
273 if (!machine_is_tosa())
274 return -ENODEV;
275
276 tosa_snd_device = platform_device_alloc("soc-audio", -1);
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100277 if (!tosa_snd_device) {
278 ret = -ENOMEM;
279 goto err_alloc;
280 }
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200281
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000282 platform_set_drvdata(tosa_snd_device, &tosa);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200283 ret = platform_device_add(tosa_snd_device);
284
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100285 if (!ret)
286 return 0;
287
288 platform_device_put(tosa_snd_device);
289
290err_alloc:
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200291 return ret;
292}
293
294static void __exit tosa_exit(void)
295{
296 platform_device_unregister(tosa_snd_device);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200297}
298
299module_init(tosa_init);
300module_exit(tosa_exit);
301
302/* Module information */
303MODULE_AUTHOR("Richard Purdie");
304MODULE_DESCRIPTION("ALSA SoC Tosa");
305MODULE_LICENSE("GPL");