blob: 4a956d1cb26960a23bb77eea839908d608b56677 [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>
Liam Girdwood1b49cb92006-10-12 14:33:09 +020029
30#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/tosa.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/audio.h>
Liam Girdwood1b49cb92006-10-12 14:33:09 +020033
34#include "../codecs/wm9712.h"
Liam Girdwoodcb4c0482007-02-02 17:23:11 +010035#include "pxa2xx-ac97.h"
Liam Girdwood1b49cb92006-10-12 14:33:09 +020036
Liam Girdwood1b49cb92006-10-12 14:33:09 +020037#define TOSA_HP 0
38#define TOSA_MIC_INT 1
39#define TOSA_HEADSET 2
40#define TOSA_HP_OFF 3
41#define TOSA_SPK_ON 0
42#define TOSA_SPK_OFF 1
43
44static int tosa_jack_func;
45static int tosa_spk_func;
46
Lars-Peter Clausen079942a2014-03-12 15:27:39 +010047static void tosa_ext_control(struct snd_soc_dapm_context *dapm)
Liam Girdwood1b49cb92006-10-12 14:33:09 +020048{
Liam Girdwoodce6120c2010-11-05 15:53:46 +020049
Charles Keepax26e24dd2014-02-18 15:22:28 +000050 snd_soc_dapm_mutex_lock(dapm);
51
Liam Girdwood1b49cb92006-10-12 14:33:09 +020052 /* set up jack connection */
53 switch (tosa_jack_func) {
54 case TOSA_HP:
Charles Keepax26e24dd2014-02-18 15:22:28 +000055 snd_soc_dapm_disable_pin_unlocked(dapm, "Mic (Internal)");
56 snd_soc_dapm_enable_pin_unlocked(dapm, "Headphone Jack");
57 snd_soc_dapm_disable_pin_unlocked(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020058 break;
59 case TOSA_MIC_INT:
Charles Keepax26e24dd2014-02-18 15:22:28 +000060 snd_soc_dapm_enable_pin_unlocked(dapm, "Mic (Internal)");
61 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphone Jack");
62 snd_soc_dapm_disable_pin_unlocked(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020063 break;
64 case TOSA_HEADSET:
Charles Keepax26e24dd2014-02-18 15:22:28 +000065 snd_soc_dapm_disable_pin_unlocked(dapm, "Mic (Internal)");
66 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphone Jack");
67 snd_soc_dapm_enable_pin_unlocked(dapm, "Headset Jack");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020068 break;
69 }
70
71 if (tosa_spk_func == TOSA_SPK_ON)
Charles Keepax26e24dd2014-02-18 15:22:28 +000072 snd_soc_dapm_enable_pin_unlocked(dapm, "Speaker");
Liam Girdwooda5302182008-07-07 13:35:17 +010073 else
Charles Keepax26e24dd2014-02-18 15:22:28 +000074 snd_soc_dapm_disable_pin_unlocked(dapm, "Speaker");
Liam Girdwood1b49cb92006-10-12 14:33:09 +020075
Charles Keepax26e24dd2014-02-18 15:22:28 +000076 snd_soc_dapm_sync_unlocked(dapm);
77
78 snd_soc_dapm_mutex_unlock(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;
Liam Girdwood1b49cb92006-10-12 14:33:09 +020084
85 /* check the jack status at stream startup */
Lars-Peter Clausen079942a2014-03-12 15:27:39 +010086 tosa_ext_control(&rtd->card->dapm);
Mark Brown71a29562010-11-05 13:50:48 -040087
Liam Girdwood1b49cb92006-10-12 14:33:09 +020088 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{
Lars-Peter Clausen079942a2014-03-12 15:27:39 +0100105 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200106
107 if (tosa_jack_func == ucontrol->value.integer.value[0])
108 return 0;
109
110 tosa_jack_func = ucontrol->value.integer.value[0];
Lars-Peter Clausen079942a2014-03-12 15:27:39 +0100111 tosa_ext_control(&card->dapm);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200112 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{
Lars-Peter Clausen079942a2014-03-12 15:27:39 +0100125 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200126
127 if (tosa_spk_func == ucontrol->value.integer.value[0])
128 return 0;
129
130 tosa_spk_func = ucontrol->value.integer.value[0];
Lars-Peter Clausen079942a2014-03-12 15:27:39 +0100131 tosa_ext_control(&card->dapm);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200132 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;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200192
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200193 snd_soc_dapm_nc_pin(dapm, "OUT3");
194 snd_soc_dapm_nc_pin(dapm, "MONOOUT");
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200195
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200196 return 0;
197}
198
199static struct snd_soc_dai_link tosa_dai[] = {
200{
201 .name = "AC97",
202 .stream_name = "AC97 HiFi",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +0300203 .cpu_dai_name = "pxa2xx-ac97",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000204 .codec_dai_name = "wm9712-hifi",
205 .platform_name = "pxa-pcm-audio",
206 .codec_name = "wm9712-codec",
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200207 .init = tosa_ac97_init,
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100208 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200209},
210{
211 .name = "AC97 Aux",
212 .stream_name = "AC97 Aux",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +0300213 .cpu_dai_name = "pxa2xx-ac97-aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000214 .codec_dai_name = "wm9712-aux",
215 .platform_name = "pxa-pcm-audio",
216 .codec_name = "wm9712-codec",
Liam Girdwoodcb4c0482007-02-02 17:23:11 +0100217 .ops = &tosa_ops,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200218},
219};
220
Mark Brown87506542008-11-18 20:50:34 +0000221static struct snd_soc_card tosa = {
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200222 .name = "Tosa",
Axel Lin561c6a12011-12-22 09:44:43 +0800223 .owner = THIS_MODULE,
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200224 .dai_link = tosa_dai,
225 .num_links = ARRAY_SIZE(tosa_dai),
Lars-Peter Clausen079942a2014-03-12 15:27:39 +0100226
227 .controls = tosa_controls,
228 .num_controls = ARRAY_SIZE(tosa_controls),
229 .dapm_widgets = tosa_dapm_widgets,
230 .num_dapm_widgets = ARRAY_SIZE(tosa_dapm_widgets),
231 .dapm_routes = audio_map,
232 .num_dapm_routes = ARRAY_SIZE(audio_map),
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200233};
234
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500235static int tosa_probe(struct platform_device *pdev)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200236{
Axel Linf285b8c2011-12-15 10:57:22 +0800237 struct snd_soc_card *card = &tosa;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200238 int ret;
239
Axel Linf285b8c2011-12-15 10:57:22 +0800240 ret = gpio_request_one(TOSA_GPIO_L_MUTE, GPIOF_OUT_INIT_LOW,
241 "Headphone Jack");
242 if (ret)
243 return ret;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200244
Axel Linf285b8c2011-12-15 10:57:22 +0800245 card->dev = &pdev->dev;
246
247 ret = snd_soc_register_card(card);
248 if (ret) {
249 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
250 ret);
251 gpio_free(TOSA_GPIO_L_MUTE);
Dmitry Baryshkov4440cbd2008-06-14 11:42:57 +0100252 }
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200253 return ret;
254}
255
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500256static int tosa_remove(struct platform_device *pdev)
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200257{
Axel Linf285b8c2011-12-15 10:57:22 +0800258 struct snd_soc_card *card = platform_get_drvdata(pdev);
259
260 gpio_free(TOSA_GPIO_L_MUTE);
261 snd_soc_unregister_card(card);
262 return 0;
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200263}
264
Axel Linf285b8c2011-12-15 10:57:22 +0800265static struct platform_driver tosa_driver = {
266 .driver = {
267 .name = "tosa-audio",
268 .owner = THIS_MODULE,
Dmitry Eremin-Solenikov7db16982013-10-17 14:01:37 +0400269 .pm = &snd_soc_pm_ops,
Axel Linf285b8c2011-12-15 10:57:22 +0800270 },
271 .probe = tosa_probe,
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500272 .remove = tosa_remove,
Axel Linf285b8c2011-12-15 10:57:22 +0800273};
274
275module_platform_driver(tosa_driver);
Liam Girdwood1b49cb92006-10-12 14:33:09 +0200276
277/* Module information */
278MODULE_AUTHOR("Richard Purdie");
279MODULE_DESCRIPTION("ALSA SoC Tosa");
280MODULE_LICENSE("GPL");
Axel Linf285b8c2011-12-15 10:57:22 +0800281MODULE_ALIAS("platform:tosa-audio");