blob: 7b983f935454159d0a3569d6f747285231cbc6ae [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 Girdwood1b49cb92006-10-12 14:33:09 +020052 /* set up jack connection */
53 switch (tosa_jack_func) {
54 case TOSA_HP:
Liam Girdwooda5302182008-07-07 13:35:17 +010055 snd_soc_dapm_disable_pin(codec, "Mic (Internal)");
56 snd_soc_dapm_enable_pin(codec, "Headphone Jack");
57 snd_soc_dapm_disable_pin(codec, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020058 break;
59 case TOSA_MIC_INT:
Liam Girdwooda5302182008-07-07 13:35:17 +010060 snd_soc_dapm_enable_pin(codec, "Mic (Internal)");
61 snd_soc_dapm_disable_pin(codec, "Headphone Jack");
62 snd_soc_dapm_disable_pin(codec, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020063 break;
64 case TOSA_HEADSET:
Liam Girdwooda5302182008-07-07 13:35:17 +010065 snd_soc_dapm_disable_pin(codec, "Mic (Internal)");
66 snd_soc_dapm_disable_pin(codec, "Headphone Jack");
67 snd_soc_dapm_enable_pin(codec, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020068 break;
69 }
70
71 if (tosa_spk_func == TOSA_SPK_ON)
Liam Girdwooda5302182008-07-07 13:35:17 +010072 snd_soc_dapm_enable_pin(codec, "Speaker");
73 else
74 snd_soc_dapm_disable_pin(codec, "Speaker");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020075
Liam Girdwooda5302182008-07-07 13:35:17 +010076 snd_soc_dapm_sync(codec);
Liam Girdwood1b49cb92006-10-12 14:33:09 +020077}
78
79static int tosa_startup(struct snd_pcm_substream *substream)
80{
81 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Eric Miaocb990622010-11-02 05:10:07 +080082 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020083
Mark Brown71a29562010-11-05 13:50:48 -040084 mutex_lock(&codec->mutex);
85
Liam Girdwood1b49cb92006-10-12 14:33:09 +020086 /* check the jack status at stream startup */
87 tosa_ext_control(codec);
Mark Brown71a29562010-11-05 13:50:48 -040088
89 mutex_unlock(&codec->mutex);
90
Liam Girdwood1b49cb92006-10-12 14:33:09 +020091 return 0;
92}
93
94static struct snd_soc_ops tosa_ops = {
95 .startup = tosa_startup,
96};
97
98static int tosa_get_jack(struct snd_kcontrol *kcontrol,
99 struct snd_ctl_elem_value *ucontrol)
100{
101 ucontrol->value.integer.value[0] = tosa_jack_func;
102 return 0;
103}
104
105static int tosa_set_jack(struct snd_kcontrol *kcontrol,
106 struct snd_ctl_elem_value *ucontrol)
107{
108 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
109
110 if (tosa_jack_func == ucontrol->value.integer.value[0])
111 return 0;
112
113 tosa_jack_func = ucontrol->value.integer.value[0];
114 tosa_ext_control(codec);
115 return 1;
116}
117
118static int tosa_get_spk(struct snd_kcontrol *kcontrol,
119 struct snd_ctl_elem_value *ucontrol)
120{
121 ucontrol->value.integer.value[0] = tosa_spk_func;
122 return 0;
123}
124
125static int tosa_set_spk(struct snd_kcontrol *kcontrol,
126 struct snd_ctl_elem_value *ucontrol)
127{
128 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
129
130 if (tosa_spk_func == ucontrol->value.integer.value[0])
131 return 0;
132
133 tosa_spk_func = ucontrol->value.integer.value[0];
134 tosa_ext_control(codec);
135 return 1;
136}
137
138/* tosa dapm event handlers */
Jarkko Nikula338c7ed2008-02-28 12:34:48 +0100139static int tosa_hp_event(struct snd_soc_dapm_widget *w,
140 struct snd_kcontrol *k, int event)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200141{
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100142 gpio_set_value(TOSA_GPIO_L_MUTE, SND_SOC_DAPM_EVENT_ON(event) ? 1 :0);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200143 return 0;
144}
145
146/* tosa machine dapm widgets */
147static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = {
148SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event),
149SND_SOC_DAPM_HP("Headset Jack", NULL),
150SND_SOC_DAPM_MIC("Mic (Internal)", NULL),
151SND_SOC_DAPM_SPK("Speaker", NULL),
152};
153
154/* tosa audio map */
Dmitry Baryshkov76d39d02008-07-08 19:45:20 +0400155static const struct snd_soc_dapm_route audio_map[] = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200156
157 /* headphone connected to HPOUTL, HPOUTR */
158 {"Headphone Jack", NULL, "HPOUTL"},
159 {"Headphone Jack", NULL, "HPOUTR"},
160
161 /* ext speaker connected to LOUT2, ROUT2 */
162 {"Speaker", NULL, "LOUT2"},
163 {"Speaker", NULL, "ROUT2"},
164
165 /* internal mic is connected to mic1, mic2 differential - with bias */
166 {"MIC1", NULL, "Mic Bias"},
167 {"MIC2", NULL, "Mic Bias"},
168 {"Mic Bias", NULL, "Mic (Internal)"},
169
170 /* headset is connected to HPOUTR, and LINEINR with bias */
171 {"Headset Jack", NULL, "HPOUTR"},
172 {"LINEINR", NULL, "Mic Bias"},
173 {"Mic Bias", NULL, "Headset Jack"},
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200174};
175
176static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
177 "Off"};
178static const char *spk_function[] = {"On", "Off"};
179static const struct soc_enum tosa_enum[] = {
180 SOC_ENUM_SINGLE_EXT(5, jack_function),
181 SOC_ENUM_SINGLE_EXT(2, spk_function),
182};
183
184static const struct snd_kcontrol_new tosa_controls[] = {
185 SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack,
186 tosa_set_jack),
187 SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk,
188 tosa_set_spk),
189};
190
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000191static int tosa_ac97_init(struct snd_soc_pcm_runtime *rtd)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200192{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000193 struct snd_soc_codec *codec = rtd->codec;
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100194 int err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200195
Mark Brown35f5e542008-09-27 10:45:09 +0100196 snd_soc_dapm_nc_pin(codec, "OUT3");
197 snd_soc_dapm_nc_pin(codec, "MONOOUT");
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200198
199 /* add tosa specific controls */
Philipp Zabeleb5f6d752009-03-12 11:07:54 +0100200 err = snd_soc_add_controls(codec, tosa_controls,
201 ARRAY_SIZE(tosa_controls));
202 if (err < 0)
203 return err;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200204
205 /* add tosa specific widgets */
Dmitry Baryshkov76d39d02008-07-08 19:45:20 +0400206 snd_soc_dapm_new_controls(codec, tosa_dapm_widgets,
Mark Brown25191c42008-05-13 14:55:48 +0200207 ARRAY_SIZE(tosa_dapm_widgets));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200208
209 /* set up tosa specific audio path audio_map */
Mark Brown25191c42008-05-13 14:55:48 +0200210 snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200211
Liam Girdwooda5302182008-07-07 13:35:17 +0100212 snd_soc_dapm_sync(codec);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200213 return 0;
214}
215
216static struct snd_soc_dai_link tosa_dai[] = {
217{
218 .name = "AC97",
219 .stream_name = "AC97 HiFi",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000220 .cpu_dai_name = "pxa-ac97.0",
221 .codec_dai_name = "wm9712-hifi",
222 .platform_name = "pxa-pcm-audio",
223 .codec_name = "wm9712-codec",
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200224 .init = tosa_ac97_init,
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100225 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200226},
227{
228 .name = "AC97 Aux",
229 .stream_name = "AC97 Aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000230 .cpu_dai_name = "pxa-ac97.1",
231 .codec_dai_name = "wm9712-aux",
232 .platform_name = "pxa-pcm-audio",
233 .codec_name = "wm9712-codec",
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100234 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200235},
236};
237
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300238static int tosa_probe(struct platform_device *dev)
239{
240 int ret;
241
242 ret = gpio_request(TOSA_GPIO_L_MUTE, "Headphone Jack");
243 if (ret)
244 return ret;
245 ret = gpio_direction_output(TOSA_GPIO_L_MUTE, 0);
246 if (ret)
247 gpio_free(TOSA_GPIO_L_MUTE);
248
249 return ret;
250}
251
252static int tosa_remove(struct platform_device *dev)
253{
254 gpio_free(TOSA_GPIO_L_MUTE);
255 return 0;
256}
257
Mark Brown87506542008-11-18 20:50:34 +0000258static struct snd_soc_card tosa = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200259 .name = "Tosa",
260 .dai_link = tosa_dai,
261 .num_links = ARRAY_SIZE(tosa_dai),
Dmitry Baryshkov5c0d7bb2008-11-25 09:35:21 +0300262 .probe = tosa_probe,
263 .remove = tosa_remove,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200264};
265
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200266static struct platform_device *tosa_snd_device;
267
268static int __init tosa_init(void)
269{
270 int ret;
271
272 if (!machine_is_tosa())
273 return -ENODEV;
274
275 tosa_snd_device = platform_device_alloc("soc-audio", -1);
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100276 if (!tosa_snd_device) {
277 ret = -ENOMEM;
278 goto err_alloc;
279 }
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200280
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000281 platform_set_drvdata(tosa_snd_device, &tosa);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200282 ret = platform_device_add(tosa_snd_device);
283
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100284 if (!ret)
285 return 0;
286
287 platform_device_put(tosa_snd_device);
288
289err_alloc:
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200290 return ret;
291}
292
293static void __exit tosa_exit(void)
294{
295 platform_device_unregister(tosa_snd_device);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200296}
297
298module_init(tosa_init);
299module_exit(tosa_exit);
300
301/* Module information */
302MODULE_AUTHOR("Richard Purdie");
303MODULE_DESCRIPTION("ALSA SoC Tosa");
304MODULE_LICENSE("GPL");