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