blob: dbbd3e9d1637f0b9d14d8790973d5d9035e9d3e1 [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>
29#include <sound/soc-dapm.h>
30
31#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/tosa.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/audio.h>
Liam Girdwood1b49cb92006-10-12 14:33:09 +020034
35#include "../codecs/wm9712.h"
36#include "pxa2xx-pcm.h"
Liam Girdwoodcb4c0482007-02-02 17:23:11 +010037#include "pxa2xx-ac97.h"
Liam Girdwood1b49cb92006-10-12 14:33:09 +020038
Mark Brown87506542008-11-18 20:50:34 +000039static struct snd_soc_card tosa;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020040
41#define TOSA_HP 0
42#define TOSA_MIC_INT 1
43#define TOSA_HEADSET 2
44#define TOSA_HP_OFF 3
45#define TOSA_SPK_ON 0
46#define TOSA_SPK_OFF 1
47
48static int tosa_jack_func;
49static int tosa_spk_func;
50
51static void tosa_ext_control(struct snd_soc_codec *codec)
52{
Liam Girdwood1b49cb92006-10-12 14:33:09 +020053 /* set up jack connection */
54 switch (tosa_jack_func) {
55 case TOSA_HP:
Liam Girdwooda5302182008-07-07 13:35:17 +010056 snd_soc_dapm_disable_pin(codec, "Mic (Internal)");
57 snd_soc_dapm_enable_pin(codec, "Headphone Jack");
58 snd_soc_dapm_disable_pin(codec, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020059 break;
60 case TOSA_MIC_INT:
Liam Girdwooda5302182008-07-07 13:35:17 +010061 snd_soc_dapm_enable_pin(codec, "Mic (Internal)");
62 snd_soc_dapm_disable_pin(codec, "Headphone Jack");
63 snd_soc_dapm_disable_pin(codec, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020064 break;
65 case TOSA_HEADSET:
Liam Girdwooda5302182008-07-07 13:35:17 +010066 snd_soc_dapm_disable_pin(codec, "Mic (Internal)");
67 snd_soc_dapm_disable_pin(codec, "Headphone Jack");
68 snd_soc_dapm_enable_pin(codec, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020069 break;
70 }
71
72 if (tosa_spk_func == TOSA_SPK_ON)
Liam Girdwooda5302182008-07-07 13:35:17 +010073 snd_soc_dapm_enable_pin(codec, "Speaker");
74 else
75 snd_soc_dapm_disable_pin(codec, "Speaker");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020076
Liam Girdwooda5302182008-07-07 13:35:17 +010077 snd_soc_dapm_sync(codec);
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;
Takashi Iwai9e30d772009-02-11 08:28:04 +010083 struct snd_soc_codec *codec = rtd->socdev->card->codec;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020084
85 /* check the jack status at stream startup */
86 tosa_ext_control(codec);
87 return 0;
88}
89
90static struct snd_soc_ops tosa_ops = {
91 .startup = tosa_startup,
92};
93
94static int tosa_get_jack(struct snd_kcontrol *kcontrol,
95 struct snd_ctl_elem_value *ucontrol)
96{
97 ucontrol->value.integer.value[0] = tosa_jack_func;
98 return 0;
99}
100
101static int tosa_set_jack(struct snd_kcontrol *kcontrol,
102 struct snd_ctl_elem_value *ucontrol)
103{
104 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
105
106 if (tosa_jack_func == ucontrol->value.integer.value[0])
107 return 0;
108
109 tosa_jack_func = ucontrol->value.integer.value[0];
110 tosa_ext_control(codec);
111 return 1;
112}
113
114static int tosa_get_spk(struct snd_kcontrol *kcontrol,
115 struct snd_ctl_elem_value *ucontrol)
116{
117 ucontrol->value.integer.value[0] = tosa_spk_func;
118 return 0;
119}
120
121static int tosa_set_spk(struct snd_kcontrol *kcontrol,
122 struct snd_ctl_elem_value *ucontrol)
123{
124 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
125
126 if (tosa_spk_func == ucontrol->value.integer.value[0])
127 return 0;
128
129 tosa_spk_func = ucontrol->value.integer.value[0];
130 tosa_ext_control(codec);
131 return 1;
132}
133
134/* tosa dapm event handlers */
Jarkko Nikula338c7ed2008-02-28 12:34:48 +0100135static int tosa_hp_event(struct snd_soc_dapm_widget *w,
136 struct snd_kcontrol *k, int event)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200137{
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100138 gpio_set_value(TOSA_GPIO_L_MUTE, SND_SOC_DAPM_EVENT_ON(event) ? 1 :0);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200139 return 0;
140}
141
142/* tosa machine dapm widgets */
143static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = {
144SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event),
145SND_SOC_DAPM_HP("Headset Jack", NULL),
146SND_SOC_DAPM_MIC("Mic (Internal)", NULL),
147SND_SOC_DAPM_SPK("Speaker", NULL),
148};
149
150/* tosa audio map */
Dmitry Baryshkov76d39d02008-07-08 19:45:20 +0400151static const struct snd_soc_dapm_route audio_map[] = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200152
153 /* headphone connected to HPOUTL, HPOUTR */
154 {"Headphone Jack", NULL, "HPOUTL"},
155 {"Headphone Jack", NULL, "HPOUTR"},
156
157 /* ext speaker connected to LOUT2, ROUT2 */
158 {"Speaker", NULL, "LOUT2"},
159 {"Speaker", NULL, "ROUT2"},
160
161 /* internal mic is connected to mic1, mic2 differential - with bias */
162 {"MIC1", NULL, "Mic Bias"},
163 {"MIC2", NULL, "Mic Bias"},
164 {"Mic Bias", NULL, "Mic (Internal)"},
165
166 /* headset is connected to HPOUTR, and LINEINR with bias */
167 {"Headset Jack", NULL, "HPOUTR"},
168 {"LINEINR", NULL, "Mic Bias"},
169 {"Mic Bias", NULL, "Headset Jack"},
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200170};
171
172static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
173 "Off"};
174static const char *spk_function[] = {"On", "Off"};
175static const struct soc_enum tosa_enum[] = {
176 SOC_ENUM_SINGLE_EXT(5, jack_function),
177 SOC_ENUM_SINGLE_EXT(2, spk_function),
178};
179
180static const struct snd_kcontrol_new tosa_controls[] = {
181 SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack,
182 tosa_set_jack),
183 SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk,
184 tosa_set_spk),
185};
186
187static int tosa_ac97_init(struct snd_soc_codec *codec)
188{
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100189 int err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200190
Mark Brown35f5e542008-09-27 10:45:09 +0100191 snd_soc_dapm_nc_pin(codec, "OUT3");
192 snd_soc_dapm_nc_pin(codec, "MONOOUT");
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200193
194 /* add tosa specific controls */
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100195 err = snd_soc_add_controls(codec, tosa_controls,
196 ARRAY_SIZE(tosa_controls));
197 if (err < 0)
198 return err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200199
200 /* add tosa specific widgets */
Dmitry Baryshkov76d39d02008-07-08 19:45:20 +0400201 snd_soc_dapm_new_controls(codec, tosa_dapm_widgets,
Mark Brown25191c42008-05-13 14:55:48 +0200202 ARRAY_SIZE(tosa_dapm_widgets));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200203
204 /* set up tosa specific audio path audio_map */
Mark Brown25191c42008-05-13 14:55:48 +0200205 snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200206
Liam Girdwooda5302182008-07-07 13:35:17 +0100207 snd_soc_dapm_sync(codec);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200208 return 0;
209}
210
211static struct snd_soc_dai_link tosa_dai[] = {
212{
213 .name = "AC97",
214 .stream_name = "AC97 HiFi",
215 .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_HIFI],
216 .codec_dai = &wm9712_dai[WM9712_DAI_AC97_HIFI],
217 .init = tosa_ac97_init,
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100218 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200219},
220{
221 .name = "AC97 Aux",
222 .stream_name = "AC97 Aux",
223 .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_AUX],
224 .codec_dai = &wm9712_dai[WM9712_DAI_AC97_AUX],
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100225 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200226},
227};
228
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300229static int tosa_probe(struct platform_device *dev)
230{
231 int ret;
232
233 ret = gpio_request(TOSA_GPIO_L_MUTE, "Headphone Jack");
234 if (ret)
235 return ret;
236 ret = gpio_direction_output(TOSA_GPIO_L_MUTE, 0);
237 if (ret)
238 gpio_free(TOSA_GPIO_L_MUTE);
239
240 return ret;
241}
242
243static int tosa_remove(struct platform_device *dev)
244{
245 gpio_free(TOSA_GPIO_L_MUTE);
246 return 0;
247}
248
Mark Brown87506542008-11-18 20:50:34 +0000249static struct snd_soc_card tosa = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200250 .name = "Tosa",
Mark Brown87689d52008-12-02 16:01:14 +0000251 .platform = &pxa2xx_soc_platform,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200252 .dai_link = tosa_dai,
253 .num_links = ARRAY_SIZE(tosa_dai),
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300254 .probe = tosa_probe,
255 .remove = tosa_remove,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200256};
257
258static struct snd_soc_device tosa_snd_devdata = {
Mark Brown87506542008-11-18 20:50:34 +0000259 .card = &tosa,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200260 .codec_dev = &soc_codec_dev_wm9712,
261};
262
263static struct platform_device *tosa_snd_device;
264
265static int __init tosa_init(void)
266{
267 int ret;
268
269 if (!machine_is_tosa())
270 return -ENODEV;
271
272 tosa_snd_device = platform_device_alloc("soc-audio", -1);
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100273 if (!tosa_snd_device) {
274 ret = -ENOMEM;
275 goto err_alloc;
276 }
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200277
278 platform_set_drvdata(tosa_snd_device, &tosa_snd_devdata);
279 tosa_snd_devdata.dev = &tosa_snd_device->dev;
280 ret = platform_device_add(tosa_snd_device);
281
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100282 if (!ret)
283 return 0;
284
285 platform_device_put(tosa_snd_device);
286
287err_alloc:
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200288 return ret;
289}
290
291static void __exit tosa_exit(void)
292{
293 platform_device_unregister(tosa_snd_device);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200294}
295
296module_init(tosa_init);
297module_exit(tosa_exit);
298
299/* Module information */
300MODULE_AUTHOR("Richard Purdie");
301MODULE_DESCRIPTION("ALSA SoC Tosa");
302MODULE_LICENSE("GPL");