Merge branch 'drm-core-next' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied...
[deliverable/linux.git] / sound / soc / pxa / palm27x.c
CommitLineData
74e72201
MV
1/*
2 * linux/sound/soc/pxa/palm27x.c
3 *
4 * SoC Audio driver for Palm T|X, T5 and LifeDrive
5 *
6 * based on tosa.c
7 *
8 * Copyright (C) 2008 Marek Vasut <marek.vasut@gmail.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
15
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/device.h>
19#include <linux/gpio.h>
74e72201
MV
20
21#include <sound/core.h>
22#include <sound/pcm.h>
23#include <sound/soc.h>
24#include <sound/soc-dapm.h>
4ce2f2fe 25#include <sound/jack.h>
74e72201
MV
26
27#include <asm/mach-types.h>
28#include <mach/audio.h>
29#include <mach/palmasoc.h>
30
31#include "../codecs/wm9712.h"
74e72201
MV
32#include "pxa2xx-ac97.h"
33
4ce2f2fe 34static struct snd_soc_jack hs_jack;
74e72201 35
4ce2f2fe
MV
36/* Headphones jack detection DAPM pins */
37static struct snd_soc_jack_pin hs_jack_pins[] = {
38 {
39 .pin = "Headphone Jack",
40 .mask = SND_JACK_HEADPHONE,
41 },
74e72201
MV
42};
43
4ce2f2fe
MV
44/* Headphones jack detection gpios */
45static struct snd_soc_jack_gpio hs_jack_gpios[] = {
46 [0] = {
47 /* gpio is set on per-platform basis */
48 .name = "hp-gpio",
49 .report = SND_JACK_HEADPHONE,
50 .debounce_time = 200,
51 },
52};
74e72201 53
4ce2f2fe 54/* Palm27x machine dapm widgets */
74e72201
MV
55static const struct snd_soc_dapm_widget palm27x_dapm_widgets[] = {
56 SND_SOC_DAPM_HP("Headphone Jack", NULL),
4ce2f2fe
MV
57 SND_SOC_DAPM_SPK("Ext. Speaker", NULL),
58 SND_SOC_DAPM_MIC("Ext. Microphone", NULL),
74e72201
MV
59};
60
61/* PalmTX audio map */
62static const struct snd_soc_dapm_route audio_map[] = {
63 /* headphone connected to HPOUTL, HPOUTR */
64 {"Headphone Jack", NULL, "HPOUTL"},
65 {"Headphone Jack", NULL, "HPOUTR"},
66
67 /* ext speaker connected to ROUT2, LOUT2 */
4ce2f2fe
MV
68 {"Ext. Speaker", NULL, "LOUT2"},
69 {"Ext. Speaker", NULL, "ROUT2"},
74e72201 70
4ce2f2fe
MV
71 /* mic connected to MIC1 */
72 {"Ext. Microphone", NULL, "MIC1"},
74e72201
MV
73};
74
4ce2f2fe 75static struct snd_soc_card palm27x_asoc;
74e72201 76
f0fba2ad 77static int palm27x_ac97_init(struct snd_soc_pcm_runtime *rtd)
74e72201 78{
f0fba2ad 79 struct snd_soc_codec *codec = rtd->codec;
eb5f6d75 80 int err;
74e72201 81
4ce2f2fe
MV
82 /* add palm27x specific widgets */
83 err = snd_soc_dapm_new_controls(codec, palm27x_dapm_widgets,
84 ARRAY_SIZE(palm27x_dapm_widgets));
85 if (err)
86 return err;
87
88 /* set up palm27x specific audio path audio_map */
89 err = snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
90 if (err)
91 return err;
92
93 /* connected pins */
94 if (machine_is_palmld())
95 snd_soc_dapm_enable_pin(codec, "MIC1");
96 snd_soc_dapm_enable_pin(codec, "HPOUTL");
97 snd_soc_dapm_enable_pin(codec, "HPOUTR");
98 snd_soc_dapm_enable_pin(codec, "LOUT2");
99 snd_soc_dapm_enable_pin(codec, "ROUT2");
100
101 /* not connected pins */
74e72201
MV
102 snd_soc_dapm_nc_pin(codec, "OUT3");
103 snd_soc_dapm_nc_pin(codec, "MONOOUT");
4ce2f2fe
MV
104 snd_soc_dapm_nc_pin(codec, "LINEINL");
105 snd_soc_dapm_nc_pin(codec, "LINEINR");
106 snd_soc_dapm_nc_pin(codec, "PCBEEP");
107 snd_soc_dapm_nc_pin(codec, "PHONE");
108 snd_soc_dapm_nc_pin(codec, "MIC2");
109
110 err = snd_soc_dapm_sync(codec);
111 if (err)
112 return err;
74e72201 113
4ce2f2fe 114 /* Jack detection API stuff */
f0fba2ad 115 err = snd_soc_jack_new(codec, "Headphone Jack",
4ce2f2fe
MV
116 SND_JACK_HEADPHONE, &hs_jack);
117 if (err)
eb5f6d75 118 return err;
74e72201 119
4ce2f2fe
MV
120 err = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
121 hs_jack_pins);
122 if (err)
123 return err;
74e72201 124
4ce2f2fe
MV
125 err = snd_soc_jack_add_gpios(&hs_jack, ARRAY_SIZE(hs_jack_gpios),
126 hs_jack_gpios);
74e72201 127
4ce2f2fe 128 return err;
74e72201
MV
129}
130
131static struct snd_soc_dai_link palm27x_dai[] = {
132{
133 .name = "AC97 HiFi",
134 .stream_name = "AC97 HiFi",
f0fba2ad
LG
135 .cpu_dai_name = "pxa-ac97.0",
136 .codec_dai_name = "wm9712-hifi",
137 .codec_name = "wm9712-codec",
138 .platform_name = "pxa-pcm-audio",
74e72201 139 .init = palm27x_ac97_init,
74e72201
MV
140},
141{
142 .name = "AC97 Aux",
143 .stream_name = "AC97 Aux",
f0fba2ad
LG
144 .cpu_dai_name = "pxa-ac97.1",
145 .codec_dai_name = "wm9712-aux",
146 .codec_name = "wm9712-codec",
147 .platform_name = "pxa-pcm-audio",
74e72201
MV
148},
149};
150
87506549 151static struct snd_soc_card palm27x_asoc = {
74e72201
MV
152 .name = "Palm/PXA27x",
153 .dai_link = palm27x_dai,
154 .num_links = ARRAY_SIZE(palm27x_dai),
155};
156
74e72201
MV
157static struct platform_device *palm27x_snd_device;
158
e91fb913 159static int palm27x_asoc_probe(struct platform_device *pdev)
74e72201
MV
160{
161 int ret;
162
163 if (!(machine_is_palmtx() || machine_is_palmt5() ||
37330efd 164 machine_is_palmld() || machine_is_palmte2()))
74e72201
MV
165 return -ENODEV;
166
4ce2f2fe
MV
167 if (!pdev->dev.platform_data) {
168 dev_err(&pdev->dev, "please supply platform_data\n");
169 return -ENODEV;
170 }
74e72201 171
4ce2f2fe
MV
172 hs_jack_gpios[0].gpio = ((struct palm27x_asoc_info *)
173 (pdev->dev.platform_data))->jack_gpio;
74e72201
MV
174
175 palm27x_snd_device = platform_device_alloc("soc-audio", -1);
4ce2f2fe
MV
176 if (!palm27x_snd_device)
177 return -ENOMEM;
74e72201 178
f0fba2ad 179 platform_set_drvdata(palm27x_snd_device, &palm27x_asoc);
74e72201
MV
180 ret = platform_device_add(palm27x_snd_device);
181
182 if (ret != 0)
183 goto put_device;
184
185 return 0;
186
187put_device:
188 platform_device_put(palm27x_snd_device);
74e72201
MV
189
190 return ret;
191}
192
e91fb913 193static int __devexit palm27x_asoc_remove(struct platform_device *pdev)
74e72201 194{
74e72201 195 platform_device_unregister(palm27x_snd_device);
e91fb913 196 return 0;
74e72201
MV
197}
198
e91fb913
MV
199static struct platform_driver palm27x_wm9712_driver = {
200 .probe = palm27x_asoc_probe,
201 .remove = __devexit_p(palm27x_asoc_remove),
202 .driver = {
203 .name = "palm27x-asoc",
204 .owner = THIS_MODULE,
205 },
206};
207
208static int __init palm27x_asoc_init(void)
209{
210 return platform_driver_register(&palm27x_wm9712_driver);
211}
212
213static void __exit palm27x_asoc_exit(void)
74e72201 214{
e91fb913 215 platform_driver_unregister(&palm27x_wm9712_driver);
74e72201
MV
216}
217
218module_init(palm27x_asoc_init);
219module_exit(palm27x_asoc_exit);
220
221/* Module information */
222MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
223MODULE_DESCRIPTION("ALSA SoC Palm T|X, T5 and LifeDrive");
224MODULE_LICENSE("GPL");
This page took 0.136455 seconds and 5 git commands to generate.