blob: 0a9bd68ef749ac62b1f54efb381e40e713b97d8e [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"
Liam Girdwoodcb4c0482007-02-02 17:23:11 +010036#include "pxa2xx-ac97.h"
Liam Girdwood1b49cb92006-10-12 14:33:09 +020037
Mark Brown87506542008-11-18 20:50:34 +000038static struct snd_soc_card tosa;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020039
40#define TOSA_HP 0
41#define TOSA_MIC_INT 1
42#define TOSA_HEADSET 2
43#define TOSA_HP_OFF 3
44#define TOSA_SPK_ON 0
45#define TOSA_SPK_OFF 1
46
47static int tosa_jack_func;
48static int tosa_spk_func;
49
50static void tosa_ext_control(struct snd_soc_codec *codec)
51{
Liam Girdwoodce6120c2010-11-05 15:53:46 +020052 struct snd_soc_dapm_context *dapm = &codec->dapm;
53
Liam Girdwood1b49cb92006-10-12 14:33:09 +020054 /* set up jack connection */
55 switch (tosa_jack_func) {
56 case TOSA_HP:
Liam Girdwoodce6120c2010-11-05 15:53:46 +020057 snd_soc_dapm_disable_pin(dapm, "Mic (Internal)");
58 snd_soc_dapm_enable_pin(dapm, "Headphone Jack");
59 snd_soc_dapm_disable_pin(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020060 break;
61 case TOSA_MIC_INT:
Liam Girdwoodce6120c2010-11-05 15:53:46 +020062 snd_soc_dapm_enable_pin(dapm, "Mic (Internal)");
63 snd_soc_dapm_disable_pin(dapm, "Headphone Jack");
64 snd_soc_dapm_disable_pin(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020065 break;
66 case TOSA_HEADSET:
Liam Girdwoodce6120c2010-11-05 15:53:46 +020067 snd_soc_dapm_disable_pin(dapm, "Mic (Internal)");
68 snd_soc_dapm_disable_pin(dapm, "Headphone Jack");
69 snd_soc_dapm_enable_pin(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020070 break;
71 }
72
73 if (tosa_spk_func == TOSA_SPK_ON)
Liam Girdwoodce6120c2010-11-05 15:53:46 +020074 snd_soc_dapm_enable_pin(dapm, "Speaker");
Liam Girdwooda5302182008-07-07 13:35:17 +010075 else
Liam Girdwoodce6120c2010-11-05 15:53:46 +020076 snd_soc_dapm_disable_pin(dapm, "Speaker");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020077
Liam Girdwoodce6120c2010-11-05 15:53:46 +020078 snd_soc_dapm_sync(dapm);
Liam Girdwood1b49cb92006-10-12 14:33:09 +020079}
80
81static int tosa_startup(struct snd_pcm_substream *substream)
82{
83 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Eric Miaocb990622010-11-02 05:10:07 +080084 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020085
86 /* check the jack status at stream startup */
87 tosa_ext_control(codec);
88 return 0;
89}
90
91static struct snd_soc_ops tosa_ops = {
92 .startup = tosa_startup,
93};
94
95static int tosa_get_jack(struct snd_kcontrol *kcontrol,
96 struct snd_ctl_elem_value *ucontrol)
97{
98 ucontrol->value.integer.value[0] = tosa_jack_func;
99 return 0;
100}
101
102static int tosa_set_jack(struct snd_kcontrol *kcontrol,
103 struct snd_ctl_elem_value *ucontrol)
104{
105 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
106
107 if (tosa_jack_func == ucontrol->value.integer.value[0])
108 return 0;
109
110 tosa_jack_func = ucontrol->value.integer.value[0];
111 tosa_ext_control(codec);
112 return 1;
113}
114
115static int tosa_get_spk(struct snd_kcontrol *kcontrol,
116 struct snd_ctl_elem_value *ucontrol)
117{
118 ucontrol->value.integer.value[0] = tosa_spk_func;
119 return 0;
120}
121
122static int tosa_set_spk(struct snd_kcontrol *kcontrol,
123 struct snd_ctl_elem_value *ucontrol)
124{
125 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
126
127 if (tosa_spk_func == ucontrol->value.integer.value[0])
128 return 0;
129
130 tosa_spk_func = ucontrol->value.integer.value[0];
131 tosa_ext_control(codec);
132 return 1;
133}
134
135/* tosa dapm event handlers */
Jarkko Nikula338c7ed2008-02-28 12:34:48 +0100136static int tosa_hp_event(struct snd_soc_dapm_widget *w,
137 struct snd_kcontrol *k, int event)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200138{
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100139 gpio_set_value(TOSA_GPIO_L_MUTE, SND_SOC_DAPM_EVENT_ON(event) ? 1 :0);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200140 return 0;
141}
142
143/* tosa machine dapm widgets */
144static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = {
145SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event),
146SND_SOC_DAPM_HP("Headset Jack", NULL),
147SND_SOC_DAPM_MIC("Mic (Internal)", NULL),
148SND_SOC_DAPM_SPK("Speaker", NULL),
149};
150
151/* tosa audio map */
Dmitry Baryshkov76d39d02008-07-08 19:45:20 +0400152static const struct snd_soc_dapm_route audio_map[] = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200153
154 /* headphone connected to HPOUTL, HPOUTR */
155 {"Headphone Jack", NULL, "HPOUTL"},
156 {"Headphone Jack", NULL, "HPOUTR"},
157
158 /* ext speaker connected to LOUT2, ROUT2 */
159 {"Speaker", NULL, "LOUT2"},
160 {"Speaker", NULL, "ROUT2"},
161
162 /* internal mic is connected to mic1, mic2 differential - with bias */
163 {"MIC1", NULL, "Mic Bias"},
164 {"MIC2", NULL, "Mic Bias"},
165 {"Mic Bias", NULL, "Mic (Internal)"},
166
167 /* headset is connected to HPOUTR, and LINEINR with bias */
168 {"Headset Jack", NULL, "HPOUTR"},
169 {"LINEINR", NULL, "Mic Bias"},
170 {"Mic Bias", NULL, "Headset Jack"},
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200171};
172
173static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
174 "Off"};
175static const char *spk_function[] = {"On", "Off"};
176static const struct soc_enum tosa_enum[] = {
177 SOC_ENUM_SINGLE_EXT(5, jack_function),
178 SOC_ENUM_SINGLE_EXT(2, spk_function),
179};
180
181static const struct snd_kcontrol_new tosa_controls[] = {
182 SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack,
183 tosa_set_jack),
184 SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk,
185 tosa_set_spk),
186};
187
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000188static int tosa_ac97_init(struct snd_soc_pcm_runtime *rtd)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200189{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000190 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200191 struct snd_soc_dapm_context *dapm = &codec->dapm;
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100192 int err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200193
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200194 snd_soc_dapm_nc_pin(dapm, "OUT3");
195 snd_soc_dapm_nc_pin(dapm, "MONOOUT");
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200196
197 /* add tosa specific controls */
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100198 err = snd_soc_add_controls(codec, tosa_controls,
199 ARRAY_SIZE(tosa_controls));
200 if (err < 0)
201 return err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200202
203 /* add tosa specific widgets */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200204 snd_soc_dapm_new_controls(dapm, tosa_dapm_widgets,
Mark Brown25191c42008-05-13 14:55:48 +0200205 ARRAY_SIZE(tosa_dapm_widgets));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200206
207 /* set up tosa specific audio path audio_map */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200208 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200209
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200210 snd_soc_dapm_sync(dapm);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200211 return 0;
212}
213
214static struct snd_soc_dai_link tosa_dai[] = {
215{
216 .name = "AC97",
217 .stream_name = "AC97 HiFi",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000218 .cpu_dai_name = "pxa-ac97.0",
219 .codec_dai_name = "wm9712-hifi",
220 .platform_name = "pxa-pcm-audio",
221 .codec_name = "wm9712-codec",
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200222 .init = tosa_ac97_init,
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100223 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200224},
225{
226 .name = "AC97 Aux",
227 .stream_name = "AC97 Aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000228 .cpu_dai_name = "pxa-ac97.1",
229 .codec_dai_name = "wm9712-aux",
230 .platform_name = "pxa-pcm-audio",
231 .codec_name = "wm9712-codec",
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100232 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200233},
234};
235
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300236static int tosa_probe(struct platform_device *dev)
237{
238 int ret;
239
240 ret = gpio_request(TOSA_GPIO_L_MUTE, "Headphone Jack");
241 if (ret)
242 return ret;
243 ret = gpio_direction_output(TOSA_GPIO_L_MUTE, 0);
244 if (ret)
245 gpio_free(TOSA_GPIO_L_MUTE);
246
247 return ret;
248}
249
250static int tosa_remove(struct platform_device *dev)
251{
252 gpio_free(TOSA_GPIO_L_MUTE);
253 return 0;
254}
255
Mark Brown87506542008-11-18 20:50:34 +0000256static struct snd_soc_card tosa = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200257 .name = "Tosa",
258 .dai_link = tosa_dai,
259 .num_links = ARRAY_SIZE(tosa_dai),
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300260 .probe = tosa_probe,
261 .remove = tosa_remove,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200262};
263
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200264static struct platform_device *tosa_snd_device;
265
266static int __init tosa_init(void)
267{
268 int ret;
269
270 if (!machine_is_tosa())
271 return -ENODEV;
272
273 tosa_snd_device = platform_device_alloc("soc-audio", -1);
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100274 if (!tosa_snd_device) {
275 ret = -ENOMEM;
276 goto err_alloc;
277 }
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200278
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000279 platform_set_drvdata(tosa_snd_device, &tosa);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200280 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");