ASoC: palm27x: Fix microphone route
[linux-2.6-block.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>
293b2da1 28#include <linux/platform_data/asoc-palm27x.h>
74e72201
MV
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 70 /* mic connected to MIC1 */
b68ef0e0 71 {"MIC1", NULL, "Ext. Microphone"},
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 /* not connected pins */
ce6120cc
LG
83 snd_soc_dapm_nc_pin(dapm, "OUT3");
84 snd_soc_dapm_nc_pin(dapm, "MONOOUT");
85 snd_soc_dapm_nc_pin(dapm, "LINEINL");
86 snd_soc_dapm_nc_pin(dapm, "LINEINR");
87 snd_soc_dapm_nc_pin(dapm, "PCBEEP");
88 snd_soc_dapm_nc_pin(dapm, "PHONE");
89 snd_soc_dapm_nc_pin(dapm, "MIC2");
90
4ce2f2fe 91 /* Jack detection API stuff */
f0fba2ad 92 err = snd_soc_jack_new(codec, "Headphone Jack",
4ce2f2fe
MV
93 SND_JACK_HEADPHONE, &hs_jack);
94 if (err)
eb5f6d75 95 return err;
74e72201 96
4ce2f2fe
MV
97 err = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
98 hs_jack_pins);
99 if (err)
100 return err;
74e72201 101
4ce2f2fe
MV
102 err = snd_soc_jack_add_gpios(&hs_jack, ARRAY_SIZE(hs_jack_gpios),
103 hs_jack_gpios);
74e72201 104
4ce2f2fe 105 return err;
74e72201
MV
106}
107
108static struct snd_soc_dai_link palm27x_dai[] = {
109{
110 .name = "AC97 HiFi",
111 .stream_name = "AC97 HiFi",
4bfc4e25 112 .cpu_dai_name = "pxa2xx-ac97",
f0fba2ad
LG
113 .codec_dai_name = "wm9712-hifi",
114 .codec_name = "wm9712-codec",
115 .platform_name = "pxa-pcm-audio",
74e72201 116 .init = palm27x_ac97_init,
74e72201
MV
117},
118{
119 .name = "AC97 Aux",
120 .stream_name = "AC97 Aux",
4bfc4e25 121 .cpu_dai_name = "pxa2xx-ac97-aux",
f0fba2ad
LG
122 .codec_dai_name = "wm9712-aux",
123 .codec_name = "wm9712-codec",
124 .platform_name = "pxa-pcm-audio",
74e72201
MV
125},
126};
127
87506549 128static struct snd_soc_card palm27x_asoc = {
74e72201 129 .name = "Palm/PXA27x",
561c6a17 130 .owner = THIS_MODULE,
74e72201
MV
131 .dai_link = palm27x_dai,
132 .num_links = ARRAY_SIZE(palm27x_dai),
016fb39c
MD
133 .dapm_widgets = palm27x_dapm_widgets,
134 .num_dapm_widgets = ARRAY_SIZE(palm27x_dapm_widgets),
135 .dapm_routes = audio_map,
136 .num_dapm_routes = ARRAY_SIZE(audio_map)
74e72201
MV
137};
138
e91fb913 139static int palm27x_asoc_probe(struct platform_device *pdev)
74e72201
MV
140{
141 int ret;
142
143 if (!(machine_is_palmtx() || machine_is_palmt5() ||
37330efd 144 machine_is_palmld() || machine_is_palmte2()))
74e72201
MV
145 return -ENODEV;
146
4ce2f2fe
MV
147 if (!pdev->dev.platform_data) {
148 dev_err(&pdev->dev, "please supply platform_data\n");
149 return -ENODEV;
150 }
74e72201 151
4ce2f2fe
MV
152 hs_jack_gpios[0].gpio = ((struct palm27x_asoc_info *)
153 (pdev->dev.platform_data))->jack_gpio;
74e72201 154
01a61f49 155 palm27x_asoc.dev = &pdev->dev;
74e72201 156
01a61f49
MD
157 ret = snd_soc_register_card(&palm27x_asoc);
158 if (ret)
159 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
160 ret);
74e72201
MV
161 return ret;
162}
163
570f6fe1 164static int palm27x_asoc_remove(struct platform_device *pdev)
74e72201 165{
01a61f49 166 snd_soc_unregister_card(&palm27x_asoc);
e91fb913 167 return 0;
74e72201
MV
168}
169
e91fb913
MV
170static struct platform_driver palm27x_wm9712_driver = {
171 .probe = palm27x_asoc_probe,
570f6fe1 172 .remove = palm27x_asoc_remove,
e91fb913
MV
173 .driver = {
174 .name = "palm27x-asoc",
7db1698f 175 .pm = &snd_soc_pm_ops,
e91fb913
MV
176 },
177};
178
2f702a19 179module_platform_driver(palm27x_wm9712_driver);
74e72201
MV
180
181/* Module information */
182MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
183MODULE_DESCRIPTION("ALSA SoC Palm T|X, T5 and LifeDrive");
184MODULE_LICENSE("GPL");