aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra/tegra_wm8903.c
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2011-04-12 13:40:36 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-04-18 16:33:42 -0400
commitdc0a50afa67c3dbd51211881b7568917dbbc6861 (patch)
tree4fea3479228807d65d5462aa7c2044c72b374f06 /sound/soc/tegra/tegra_wm8903.c
parentc6d46678a1adacde05a01e51361610ce2666fe6a (diff)
ASoC: Tegra: Rename harmony.c to tegra_wm8903.c
Soon, this machine driver will be updated to handle a number of Tegra boards using the WM8903 codec. Rename the file in advance to reflect this. Fix the content of tegra_wm8903.c to match the rename; replace references to Harmony board with something more generic. * s/struct tegra_harmony/struct tegra_wm8903/ * s/harmony/machine/ # variable name * Similar rename for some functions * Similar comment fix * Similar MODULE_DESCRIPTION fix Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/tegra/tegra_wm8903.c')
-rw-r--r--sound/soc/tegra/tegra_wm8903.c395
1 files changed, 395 insertions, 0 deletions
diff --git a/sound/soc/tegra/tegra_wm8903.c b/sound/soc/tegra/tegra_wm8903.c
new file mode 100644
index 000000000000..0e31925b9d56
--- /dev/null
+++ b/sound/soc/tegra/tegra_wm8903.c
@@ -0,0 +1,395 @@
1/*
2 * tegra_wm8903.c - Tegra machine ASoC driver for boards using WM8903 codec.
3 *
4 * Author: Stephen Warren <swarren@nvidia.com>
5 * Copyright (C) 2010-2011 - NVIDIA, Inc.
6 *
7 * Based on code copyright/by:
8 *
9 * (c) 2009, 2010 Nvidia Graphics Pvt. Ltd.
10 *
11 * Copyright 2007 Wolfson Microelectronics PLC.
12 * Author: Graeme Gregory
13 * graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * version 2 as published by the Free Software Foundation.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
27 * 02110-1301 USA
28 *
29 */
30
31#include <asm/mach-types.h>
32
33#include <linux/module.h>
34#include <linux/platform_device.h>
35#include <linux/slab.h>
36#include <linux/gpio.h>
37
38#include <mach/tegra_wm8903_pdata.h>
39
40#include <sound/core.h>
41#include <sound/jack.h>
42#include <sound/pcm.h>
43#include <sound/pcm_params.h>
44#include <sound/soc.h>
45
46#include "../codecs/wm8903.h"
47
48#include "tegra_das.h"
49#include "tegra_i2s.h"
50#include "tegra_pcm.h"
51#include "tegra_asoc_utils.h"
52
53#define DRV_NAME "tegra-snd-wm8903"
54
55#define GPIO_SPKR_EN BIT(0)
56#define GPIO_INT_MIC_EN BIT(1)
57#define GPIO_EXT_MIC_EN BIT(2)
58
59struct tegra_wm8903 {
60 struct tegra_asoc_utils_data util_data;
61 struct tegra_wm8903_platform_data *pdata;
62 int gpio_requested;
63};
64
65static int tegra_wm8903_hw_params(struct snd_pcm_substream *substream,
66 struct snd_pcm_hw_params *params)
67{
68 struct snd_soc_pcm_runtime *rtd = substream->private_data;
69 struct snd_soc_dai *codec_dai = rtd->codec_dai;
70 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
71 struct snd_soc_codec *codec = rtd->codec;
72 struct snd_soc_card *card = codec->card;
73 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
74 int srate, mclk, mclk_change;
75 int err;
76
77 srate = params_rate(params);
78 switch (srate) {
79 case 64000:
80 case 88200:
81 case 96000:
82 mclk = 128 * srate;
83 break;
84 default:
85 mclk = 256 * srate;
86 break;
87 }
88 /* FIXME: Codec only requires >= 3MHz if OSR==0 */
89 while (mclk < 6000000)
90 mclk *= 2;
91
92 err = tegra_asoc_utils_set_rate(&machine->util_data, srate, mclk,
93 &mclk_change);
94 if (err < 0) {
95 dev_err(card->dev, "Can't configure clocks\n");
96 return err;
97 }
98
99 err = snd_soc_dai_set_fmt(codec_dai,
100 SND_SOC_DAIFMT_I2S |
101 SND_SOC_DAIFMT_NB_NF |
102 SND_SOC_DAIFMT_CBS_CFS);
103 if (err < 0) {
104 dev_err(card->dev, "codec_dai fmt not set\n");
105 return err;
106 }
107
108 err = snd_soc_dai_set_fmt(cpu_dai,
109 SND_SOC_DAIFMT_I2S |
110 SND_SOC_DAIFMT_NB_NF |
111 SND_SOC_DAIFMT_CBS_CFS);
112 if (err < 0) {
113 dev_err(card->dev, "cpu_dai fmt not set\n");
114 return err;
115 }
116
117 if (mclk_change) {
118 err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
119 SND_SOC_CLOCK_IN);
120 if (err < 0) {
121 dev_err(card->dev, "codec_dai clock not set\n");
122 return err;
123 }
124 }
125
126 return 0;
127}
128
129static struct snd_soc_ops tegra_wm8903_ops = {
130 .hw_params = tegra_wm8903_hw_params,
131};
132
133static struct snd_soc_jack tegra_wm8903_hp_jack;
134
135static struct snd_soc_jack_pin tegra_wm8903_hp_jack_pins[] = {
136 {
137 .pin = "Headphone Jack",
138 .mask = SND_JACK_HEADPHONE,
139 },
140};
141
142static struct snd_soc_jack_gpio tegra_wm8903_hp_jack_gpios[] = {
143 {
144 .name = "headphone detect",
145 .report = SND_JACK_HEADPHONE,
146 .debounce_time = 150,
147 .invert = 1,
148 }
149};
150
151static struct snd_soc_jack tegra_wm8903_mic_jack;
152
153static struct snd_soc_jack_pin tegra_wm8903_mic_jack_pins[] = {
154 {
155 .pin = "Mic Jack",
156 .mask = SND_JACK_MICROPHONE,
157 },
158};
159
160static int tegra_wm8903_event_int_spk(struct snd_soc_dapm_widget *w,
161 struct snd_kcontrol *k, int event)
162{
163 struct snd_soc_codec *codec = w->codec;
164 struct snd_soc_card *card = codec->card;
165 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
166 struct tegra_wm8903_platform_data *pdata = machine->pdata;
167
168 gpio_set_value_cansleep(pdata->gpio_spkr_en,
169 SND_SOC_DAPM_EVENT_ON(event));
170
171 return 0;
172}
173
174static const struct snd_soc_dapm_widget tegra_wm8903_dapm_widgets[] = {
175 SND_SOC_DAPM_SPK("Int Spk", tegra_wm8903_event_int_spk),
176 SND_SOC_DAPM_HP("Headphone Jack", NULL),
177 SND_SOC_DAPM_MIC("Mic Jack", NULL),
178};
179
180static const struct snd_soc_dapm_route harmony_audio_map[] = {
181 {"Headphone Jack", NULL, "HPOUTR"},
182 {"Headphone Jack", NULL, "HPOUTL"},
183 {"Int Spk", NULL, "ROP"},
184 {"Int Spk", NULL, "RON"},
185 {"Int Spk", NULL, "LOP"},
186 {"Int Spk", NULL, "LON"},
187 {"Mic Bias", NULL, "Mic Jack"},
188 {"IN1L", NULL, "Mic Bias"},
189};
190
191static const struct snd_kcontrol_new tegra_wm8903_controls[] = {
192 SOC_DAPM_PIN_SWITCH("Int Spk"),
193};
194
195static int tegra_wm8903_init(struct snd_soc_pcm_runtime *rtd)
196{
197 struct snd_soc_codec *codec = rtd->codec;
198 struct snd_soc_dapm_context *dapm = &codec->dapm;
199 struct snd_soc_card *card = codec->card;
200 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
201 struct tegra_wm8903_platform_data *pdata = machine->pdata;
202 int ret;
203
204 ret = gpio_request(pdata->gpio_spkr_en, "spkr_en");
205 if (ret) {
206 dev_err(card->dev, "cannot get spkr_en gpio\n");
207 return ret;
208 }
209 machine->gpio_requested |= GPIO_SPKR_EN;
210
211 gpio_direction_output(pdata->gpio_spkr_en, 0);
212
213 ret = gpio_request(pdata->gpio_int_mic_en, "int_mic_en");
214 if (ret) {
215 dev_err(card->dev, "cannot get int_mic_en gpio\n");
216 return ret;
217 }
218 machine->gpio_requested |= GPIO_INT_MIC_EN;
219
220 /* Disable int mic; enable signal is active-high */
221 gpio_direction_output(pdata->gpio_int_mic_en, 0);
222
223 ret = gpio_request(pdata->gpio_ext_mic_en, "ext_mic_en");
224 if (ret) {
225 dev_err(card->dev, "cannot get ext_mic_en gpio\n");
226 return ret;
227 }
228 machine->gpio_requested |= GPIO_EXT_MIC_EN;
229
230 /* Enable ext mic; enable signal is active-low */
231 gpio_direction_output(pdata->gpio_ext_mic_en, 0);
232
233 ret = snd_soc_add_controls(codec, tegra_wm8903_controls,
234 ARRAY_SIZE(tegra_wm8903_controls));
235 if (ret < 0)
236 return ret;
237
238 snd_soc_dapm_new_controls(dapm, tegra_wm8903_dapm_widgets,
239 ARRAY_SIZE(tegra_wm8903_dapm_widgets));
240
241 snd_soc_dapm_add_routes(dapm, harmony_audio_map,
242 ARRAY_SIZE(harmony_audio_map));
243
244 tegra_wm8903_hp_jack_gpios[0].gpio = pdata->gpio_hp_det;
245 snd_soc_jack_new(codec, "Headphone Jack", SND_JACK_HEADPHONE,
246 &tegra_wm8903_hp_jack);
247 snd_soc_jack_add_pins(&tegra_wm8903_hp_jack,
248 ARRAY_SIZE(tegra_wm8903_hp_jack_pins),
249 tegra_wm8903_hp_jack_pins);
250 snd_soc_jack_add_gpios(&tegra_wm8903_hp_jack,
251 ARRAY_SIZE(tegra_wm8903_hp_jack_gpios),
252 tegra_wm8903_hp_jack_gpios);
253
254 snd_soc_jack_new(codec, "Mic Jack", SND_JACK_MICROPHONE,
255 &tegra_wm8903_mic_jack);
256 snd_soc_jack_add_pins(&tegra_wm8903_mic_jack,
257 ARRAY_SIZE(tegra_wm8903_mic_jack_pins),
258 tegra_wm8903_mic_jack_pins);
259 wm8903_mic_detect(codec, &tegra_wm8903_mic_jack, SND_JACK_MICROPHONE,
260 0);
261
262 snd_soc_dapm_force_enable_pin(dapm, "Mic Bias");
263
264 snd_soc_dapm_nc_pin(dapm, "IN3L");
265 snd_soc_dapm_nc_pin(dapm, "IN3R");
266 snd_soc_dapm_nc_pin(dapm, "LINEOUTL");
267 snd_soc_dapm_nc_pin(dapm, "LINEOUTR");
268
269 snd_soc_dapm_sync(dapm);
270
271 return 0;
272}
273
274static struct snd_soc_dai_link tegra_wm8903_dai = {
275 .name = "WM8903",
276 .stream_name = "WM8903 PCM",
277 .codec_name = "wm8903.0-001a",
278 .platform_name = "tegra-pcm-audio",
279 .cpu_dai_name = "tegra-i2s.0",
280 .codec_dai_name = "wm8903-hifi",
281 .init = tegra_wm8903_init,
282 .ops = &tegra_wm8903_ops,
283};
284
285static struct snd_soc_card snd_soc_tegra_wm8903 = {
286 .name = "tegra-wm8903",
287 .dai_link = &tegra_wm8903_dai,
288 .num_links = 1,
289};
290
291static __devinit int tegra_wm8903_driver_probe(struct platform_device *pdev)
292{
293 struct snd_soc_card *card = &snd_soc_tegra_wm8903;
294 struct tegra_wm8903 *machine;
295 struct tegra_wm8903_platform_data *pdata;
296 int ret;
297
298 if (!machine_is_harmony()) {
299 dev_err(&pdev->dev, "Not running on Tegra Harmony!\n");
300 return -ENODEV;
301 }
302
303 pdata = pdev->dev.platform_data;
304 if (!pdata) {
305 dev_err(&pdev->dev, "no platform data supplied\n");
306 return -EINVAL;
307 }
308
309 machine = kzalloc(sizeof(struct tegra_wm8903), GFP_KERNEL);
310 if (!machine) {
311 dev_err(&pdev->dev, "Can't allocate tegra_wm8903 struct\n");
312 return -ENOMEM;
313 }
314
315 machine->pdata = pdata;
316
317 ret = tegra_asoc_utils_init(&machine->util_data, &pdev->dev);
318 if (ret)
319 goto err_free_machine;
320
321 card->dev = &pdev->dev;
322 platform_set_drvdata(pdev, card);
323 snd_soc_card_set_drvdata(card, machine);
324
325 ret = snd_soc_register_card(card);
326 if (ret) {
327 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n",
328 ret);
329 goto err_clear_drvdata;
330 }
331
332 return 0;
333
334err_clear_drvdata:
335 snd_soc_card_set_drvdata(card, NULL);
336 platform_set_drvdata(pdev, NULL);
337 card->dev = NULL;
338 tegra_asoc_utils_fini(&machine->util_data);
339err_free_machine:
340 kfree(machine);
341 return ret;
342}
343
344static int __devexit tegra_wm8903_driver_remove(struct platform_device *pdev)
345{
346 struct snd_soc_card *card = platform_get_drvdata(pdev);
347 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
348 struct tegra_wm8903_platform_data *pdata = machine->pdata;
349
350 snd_soc_unregister_card(card);
351
352 snd_soc_card_set_drvdata(card, NULL);
353 platform_set_drvdata(pdev, NULL);
354 card->dev = NULL;
355
356 tegra_asoc_utils_fini(&machine->util_data);
357
358 if (machine->gpio_requested & GPIO_EXT_MIC_EN)
359 gpio_free(pdata->gpio_ext_mic_en);
360 if (machine->gpio_requested & GPIO_INT_MIC_EN)
361 gpio_free(pdata->gpio_int_mic_en);
362 if (machine->gpio_requested & GPIO_SPKR_EN)
363 gpio_free(pdata->gpio_spkr_en);
364
365 kfree(machine);
366
367 return 0;
368}
369
370static struct platform_driver tegra_wm8903_driver = {
371 .driver = {
372 .name = DRV_NAME,
373 .owner = THIS_MODULE,
374 .pm = &snd_soc_pm_ops,
375 },
376 .probe = tegra_wm8903_driver_probe,
377 .remove = __devexit_p(tegra_wm8903_driver_remove),
378};
379
380static int __init tegra_wm8903_modinit(void)
381{
382 return platform_driver_register(&tegra_wm8903_driver);
383}
384module_init(tegra_wm8903_modinit);
385
386static void __exit tegra_wm8903_modexit(void)
387{
388 platform_driver_unregister(&tegra_wm8903_driver);
389}
390module_exit(tegra_wm8903_modexit);
391
392MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
393MODULE_DESCRIPTION("Tegra+WM8903 machine ASoC driver");
394MODULE_LICENSE("GPL");
395MODULE_ALIAS("platform:" DRV_NAME);