ASoC: pxa: poodle: use modern dai_link style
[linux-2.6-block.git] / sound / soc / pxa / tosa.c
CommitLineData
1b49cb98
LG
1/*
2 * tosa.c -- SoC audio for Tosa
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 *
d331124d 7 * Authors: Liam Girdwood <lrg@slimlogic.co.uk>
1b49cb98
LG
8 * 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 *
1b49cb98
LG
15 * 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>
4440cbd6 24#include <linux/gpio.h>
1b49cb98 25
1b49cb98
LG
26#include <sound/core.h>
27#include <sound/pcm.h>
28#include <sound/soc.h>
1b49cb98
LG
29
30#include <asm/mach-types.h>
a09e64fb 31#include <mach/tosa.h>
a09e64fb 32#include <mach/audio.h>
1b49cb98 33
1b49cb98
LG
34#define TOSA_HP 0
35#define TOSA_MIC_INT 1
36#define TOSA_HEADSET 2
37#define TOSA_HP_OFF 3
38#define TOSA_SPK_ON 0
39#define TOSA_SPK_OFF 1
40
41static int tosa_jack_func;
42static int tosa_spk_func;
43
079942ab 44static void tosa_ext_control(struct snd_soc_dapm_context *dapm)
1b49cb98 45{
ce6120cc 46
26e24ddc
CK
47 snd_soc_dapm_mutex_lock(dapm);
48
1b49cb98
LG
49 /* set up jack connection */
50 switch (tosa_jack_func) {
51 case TOSA_HP:
26e24ddc
CK
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");
1b49cb98
LG
55 break;
56 case TOSA_MIC_INT:
26e24ddc
CK
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");
1b49cb98
LG
60 break;
61 case TOSA_HEADSET:
26e24ddc
CK
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");
1b49cb98
LG
65 break;
66 }
67
68 if (tosa_spk_func == TOSA_SPK_ON)
26e24ddc 69 snd_soc_dapm_enable_pin_unlocked(dapm, "Speaker");
a5302181 70 else
26e24ddc
CK
71 snd_soc_dapm_disable_pin_unlocked(dapm, "Speaker");
72
73 snd_soc_dapm_sync_unlocked(dapm);
1b49cb98 74
26e24ddc 75 snd_soc_dapm_mutex_unlock(dapm);
1b49cb98
LG
76}
77
78static int tosa_startup(struct snd_pcm_substream *substream)
79{
80 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1b49cb98
LG
81
82 /* check the jack status at stream startup */
079942ab 83 tosa_ext_control(&rtd->card->dapm);
71a29560 84
1b49cb98
LG
85 return 0;
86}
87
943b7311 88static const struct snd_soc_ops tosa_ops = {
1b49cb98
LG
89 .startup = tosa_startup,
90};
91
92static int tosa_get_jack(struct snd_kcontrol *kcontrol,
93 struct snd_ctl_elem_value *ucontrol)
94{
419396d5 95 ucontrol->value.enumerated.item[0] = tosa_jack_func;
1b49cb98
LG
96 return 0;
97}
98
99static int tosa_set_jack(struct snd_kcontrol *kcontrol,
100 struct snd_ctl_elem_value *ucontrol)
101{
079942ab 102 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
1b49cb98 103
419396d5 104 if (tosa_jack_func == ucontrol->value.enumerated.item[0])
1b49cb98
LG
105 return 0;
106
419396d5 107 tosa_jack_func = ucontrol->value.enumerated.item[0];
079942ab 108 tosa_ext_control(&card->dapm);
1b49cb98
LG
109 return 1;
110}
111
112static int tosa_get_spk(struct snd_kcontrol *kcontrol,
113 struct snd_ctl_elem_value *ucontrol)
114{
419396d5 115 ucontrol->value.enumerated.item[0] = tosa_spk_func;
1b49cb98
LG
116 return 0;
117}
118
119static int tosa_set_spk(struct snd_kcontrol *kcontrol,
120 struct snd_ctl_elem_value *ucontrol)
121{
079942ab 122 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
1b49cb98 123
419396d5 124 if (tosa_spk_func == ucontrol->value.enumerated.item[0])
1b49cb98
LG
125 return 0;
126
419396d5 127 tosa_spk_func = ucontrol->value.enumerated.item[0];
079942ab 128 tosa_ext_control(&card->dapm);
1b49cb98
LG
129 return 1;
130}
131
132/* tosa dapm event handlers */
338c7ed0
JN
133static int tosa_hp_event(struct snd_soc_dapm_widget *w,
134 struct snd_kcontrol *k, int event)
1b49cb98 135{
ca87cfad 136 gpio_set_value(TOSA_GPIO_L_MUTE, SND_SOC_DAPM_EVENT_ON(event) ? 1 : 0);
1b49cb98
LG
137 return 0;
138}
139
140/* tosa machine dapm widgets */
141static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = {
142SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event),
143SND_SOC_DAPM_HP("Headset Jack", NULL),
144SND_SOC_DAPM_MIC("Mic (Internal)", NULL),
145SND_SOC_DAPM_SPK("Speaker", NULL),
146};
147
148/* tosa audio map */
76d39d0a 149static const struct snd_soc_dapm_route audio_map[] = {
1b49cb98
LG
150
151 /* headphone connected to HPOUTL, HPOUTR */
152 {"Headphone Jack", NULL, "HPOUTL"},
153 {"Headphone Jack", NULL, "HPOUTR"},
154
155 /* ext speaker connected to LOUT2, ROUT2 */
156 {"Speaker", NULL, "LOUT2"},
157 {"Speaker", NULL, "ROUT2"},
158
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)"},
163
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"},
1b49cb98
LG
168};
169
92be5810
LPC
170static const char * const jack_function[] = {"Headphone", "Mic", "Line",
171 "Headset", "Off"};
172static const char * const spk_function[] = {"On", "Off"};
1b49cb98
LG
173static const struct soc_enum tosa_enum[] = {
174 SOC_ENUM_SINGLE_EXT(5, jack_function),
175 SOC_ENUM_SINGLE_EXT(2, spk_function),
176};
177
178static const struct snd_kcontrol_new tosa_controls[] = {
179 SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack,
180 tosa_set_jack),
181 SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk,
182 tosa_set_spk),
183};
184
cc7b2401
KM
185SND_SOC_DAILINK_DEFS(ac97,
186 DAILINK_COMP_ARRAY(COMP_CPU("pxa2xx-ac97")),
187 DAILINK_COMP_ARRAY(COMP_CODEC("wm9712-codec", "wm9712-hifi")),
188 DAILINK_COMP_ARRAY(COMP_PLATFORM("pxa-pcm-audio")));
189
190SND_SOC_DAILINK_DEFS(ac97_aux,
191 DAILINK_COMP_ARRAY(COMP_CPU("pxa2xx-ac97-aux")),
192 DAILINK_COMP_ARRAY(COMP_CODEC("wm9712-codec", "wm9712-aux")),
193 DAILINK_COMP_ARRAY(COMP_PLATFORM("pxa-pcm-audio")));
194
1b49cb98
LG
195static struct snd_soc_dai_link tosa_dai[] = {
196{
197 .name = "AC97",
198 .stream_name = "AC97 HiFi",
cb4c048b 199 .ops = &tosa_ops,
cc7b2401 200 SND_SOC_DAILINK_REG(ac97),
1b49cb98
LG
201},
202{
203 .name = "AC97 Aux",
204 .stream_name = "AC97 Aux",
cb4c048b 205 .ops = &tosa_ops,
cc7b2401 206 SND_SOC_DAILINK_REG(ac97_aux),
1b49cb98
LG
207},
208};
209
87506549 210static struct snd_soc_card tosa = {
1b49cb98 211 .name = "Tosa",
561c6a17 212 .owner = THIS_MODULE,
1b49cb98
LG
213 .dai_link = tosa_dai,
214 .num_links = ARRAY_SIZE(tosa_dai),
079942ab
LPC
215
216 .controls = tosa_controls,
217 .num_controls = ARRAY_SIZE(tosa_controls),
218 .dapm_widgets = tosa_dapm_widgets,
219 .num_dapm_widgets = ARRAY_SIZE(tosa_dapm_widgets),
220 .dapm_routes = audio_map,
221 .num_dapm_routes = ARRAY_SIZE(audio_map),
c02e723f 222 .fully_routed = true,
1b49cb98
LG
223};
224
570f6fe1 225static int tosa_probe(struct platform_device *pdev)
1b49cb98 226{
f285b8c8 227 struct snd_soc_card *card = &tosa;
1b49cb98
LG
228 int ret;
229
f285b8c8
AL
230 ret = gpio_request_one(TOSA_GPIO_L_MUTE, GPIOF_OUT_INIT_LOW,
231 "Headphone Jack");
232 if (ret)
233 return ret;
4440cbd6 234
f285b8c8 235 card->dev = &pdev->dev;
4440cbd6 236
2fd7076a 237 ret = devm_snd_soc_register_card(&pdev->dev, card);
f285b8c8
AL
238 if (ret) {
239 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
240 ret);
241 gpio_free(TOSA_GPIO_L_MUTE);
242 }
1b49cb98
LG
243 return ret;
244}
245
570f6fe1 246static int tosa_remove(struct platform_device *pdev)
1b49cb98 247{
f285b8c8 248 gpio_free(TOSA_GPIO_L_MUTE);
f285b8c8 249 return 0;
1b49cb98
LG
250}
251
f285b8c8
AL
252static struct platform_driver tosa_driver = {
253 .driver = {
254 .name = "tosa-audio",
7db1698f 255 .pm = &snd_soc_pm_ops,
f285b8c8
AL
256 },
257 .probe = tosa_probe,
570f6fe1 258 .remove = tosa_remove,
f285b8c8
AL
259};
260
261module_platform_driver(tosa_driver);
1b49cb98
LG
262
263/* Module information */
264MODULE_AUTHOR("Richard Purdie");
265MODULE_DESCRIPTION("ALSA SoC Tosa");
266MODULE_LICENSE("GPL");
f285b8c8 267MODULE_ALIAS("platform:tosa-audio");