blob: 465ff0f458ef70300d6bd79e21757e5299e989e3 [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 *
7 * Authors: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
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 *
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>
24
Liam Girdwood1b49cb92006-10-12 14:33:09 +020025#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/soc.h>
28#include <sound/soc-dapm.h>
29
30#include <asm/mach-types.h>
31#include <asm/hardware/tmio.h>
32#include <asm/arch/pxa-regs.h>
33#include <asm/arch/hardware.h>
34#include <asm/arch/audio.h>
35#include <asm/arch/tosa.h>
36
37#include "../codecs/wm9712.h"
38#include "pxa2xx-pcm.h"
Liam Girdwoodcb4c0482007-02-02 17:23:11 +010039#include "pxa2xx-ac97.h"
Liam Girdwood1b49cb92006-10-12 14:33:09 +020040
41static struct snd_soc_machine tosa;
42
43#define TOSA_HP 0
44#define TOSA_MIC_INT 1
45#define TOSA_HEADSET 2
46#define TOSA_HP_OFF 3
47#define TOSA_SPK_ON 0
48#define TOSA_SPK_OFF 1
49
50static int tosa_jack_func;
51static int tosa_spk_func;
52
53static void tosa_ext_control(struct snd_soc_codec *codec)
54{
55 int spk = 0, mic_int = 0, hp = 0, hs = 0;
56
57 /* set up jack connection */
58 switch (tosa_jack_func) {
59 case TOSA_HP:
60 hp = 1;
61 break;
62 case TOSA_MIC_INT:
63 mic_int = 1;
64 break;
65 case TOSA_HEADSET:
66 hs = 1;
67 break;
68 }
69
70 if (tosa_spk_func == TOSA_SPK_ON)
71 spk = 1;
72
73 snd_soc_dapm_set_endpoint(codec, "Speaker", spk);
74 snd_soc_dapm_set_endpoint(codec, "Mic (Internal)", mic_int);
75 snd_soc_dapm_set_endpoint(codec, "Headphone Jack", hp);
76 snd_soc_dapm_set_endpoint(codec, "Headset Jack", hs);
77 snd_soc_dapm_sync_endpoints(codec);
78}
79
80static int tosa_startup(struct snd_pcm_substream *substream)
81{
82 struct snd_soc_pcm_runtime *rtd = substream->private_data;
83 struct snd_soc_codec *codec = rtd->socdev->codec;
84
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{
138 if (SND_SOC_DAPM_EVENT_ON(event))
139 set_tc6393_gpio(&tc6393_device.dev,TOSA_TC6393_L_MUTE);
140 else
141 reset_tc6393_gpio(&tc6393_device.dev,TOSA_TC6393_L_MUTE);
142 return 0;
143}
144
145/* tosa machine dapm widgets */
146static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = {
147SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event),
148SND_SOC_DAPM_HP("Headset Jack", NULL),
149SND_SOC_DAPM_MIC("Mic (Internal)", NULL),
150SND_SOC_DAPM_SPK("Speaker", NULL),
151};
152
153/* tosa audio map */
Mark Brown25191c42008-05-13 14:55:48 +0200154static const snd_soc_dapm_route audio_map[] = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200155
156 /* headphone connected to HPOUTL, HPOUTR */
157 {"Headphone Jack", NULL, "HPOUTL"},
158 {"Headphone Jack", NULL, "HPOUTR"},
159
160 /* ext speaker connected to LOUT2, ROUT2 */
161 {"Speaker", NULL, "LOUT2"},
162 {"Speaker", NULL, "ROUT2"},
163
164 /* internal mic is connected to mic1, mic2 differential - with bias */
165 {"MIC1", NULL, "Mic Bias"},
166 {"MIC2", NULL, "Mic Bias"},
167 {"Mic Bias", NULL, "Mic (Internal)"},
168
169 /* headset is connected to HPOUTR, and LINEINR with bias */
170 {"Headset Jack", NULL, "HPOUTR"},
171 {"LINEINR", NULL, "Mic Bias"},
172 {"Mic Bias", NULL, "Headset Jack"},
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200173};
174
175static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
176 "Off"};
177static const char *spk_function[] = {"On", "Off"};
178static const struct soc_enum tosa_enum[] = {
179 SOC_ENUM_SINGLE_EXT(5, jack_function),
180 SOC_ENUM_SINGLE_EXT(2, spk_function),
181};
182
183static const struct snd_kcontrol_new tosa_controls[] = {
184 SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack,
185 tosa_set_jack),
186 SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk,
187 tosa_set_spk),
188};
189
190static int tosa_ac97_init(struct snd_soc_codec *codec)
191{
192 int i, err;
193
194 snd_soc_dapm_set_endpoint(codec, "OUT3", 0);
195 snd_soc_dapm_set_endpoint(codec, "MONOOUT", 0);
196
197 /* add tosa specific controls */
198 for (i = 0; i < ARRAY_SIZE(tosa_controls); i++) {
199 err = snd_ctl_add(codec->card,
200 snd_soc_cnew(&tosa_controls[i],codec, NULL));
201 if (err < 0)
202 return err;
203 }
204
205 /* add tosa specific widgets */
Mark Brown25191c42008-05-13 14:55:48 +0200206 snd_soc_dapm_new_controls(codec, &tosa_dapm_widgets,
207 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
212 snd_soc_dapm_sync_endpoints(codec);
213 return 0;
214}
215
216static struct snd_soc_dai_link tosa_dai[] = {
217{
218 .name = "AC97",
219 .stream_name = "AC97 HiFi",
220 .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_HIFI],
221 .codec_dai = &wm9712_dai[WM9712_DAI_AC97_HIFI],
222 .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",
228 .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_AUX],
229 .codec_dai = &wm9712_dai[WM9712_DAI_AC97_AUX],
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100230 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200231},
232};
233
234static struct snd_soc_machine tosa = {
235 .name = "Tosa",
236 .dai_link = tosa_dai,
237 .num_links = ARRAY_SIZE(tosa_dai),
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200238};
239
240static struct snd_soc_device tosa_snd_devdata = {
241 .machine = &tosa,
242 .platform = &pxa2xx_soc_platform,
243 .codec_dev = &soc_codec_dev_wm9712,
244};
245
246static struct platform_device *tosa_snd_device;
247
248static int __init tosa_init(void)
249{
250 int ret;
251
252 if (!machine_is_tosa())
253 return -ENODEV;
254
255 tosa_snd_device = platform_device_alloc("soc-audio", -1);
256 if (!tosa_snd_device)
257 return -ENOMEM;
258
259 platform_set_drvdata(tosa_snd_device, &tosa_snd_devdata);
260 tosa_snd_devdata.dev = &tosa_snd_device->dev;
261 ret = platform_device_add(tosa_snd_device);
262
263 if (ret)
264 platform_device_put(tosa_snd_device);
265
266 return ret;
267}
268
269static void __exit tosa_exit(void)
270{
271 platform_device_unregister(tosa_snd_device);
272}
273
274module_init(tosa_init);
275module_exit(tosa_exit);
276
277/* Module information */
278MODULE_AUTHOR("Richard Purdie");
279MODULE_DESCRIPTION("ALSA SoC Tosa");
280MODULE_LICENSE("GPL");