blob: 530064dd06a95bfb4ee3916cb52004697e9736cf [file] [log] [blame]
Marek Vasut74e72202008-11-03 12:02:12 +00001/*
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>
Marek Vasut74e72202008-11-03 12:02:12 +000020
21#include <sound/core.h>
22#include <sound/pcm.h>
23#include <sound/soc.h>
24#include <sound/soc-dapm.h>
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020025#include <sound/jack.h>
Marek Vasut74e72202008-11-03 12:02:12 +000026
27#include <asm/mach-types.h>
28#include <mach/audio.h>
29#include <mach/palmasoc.h>
30
31#include "../codecs/wm9712.h"
Marek Vasut74e72202008-11-03 12:02:12 +000032#include "pxa2xx-ac97.h"
33
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020034static struct snd_soc_jack hs_jack;
Marek Vasut74e72202008-11-03 12:02:12 +000035
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020036/* 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 },
Marek Vasut74e72202008-11-03 12:02:12 +000042};
43
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020044/* 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};
Marek Vasut74e72202008-11-03 12:02:12 +000053
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020054/* Palm27x machine dapm widgets */
Marek Vasut74e72202008-11-03 12:02:12 +000055static const struct snd_soc_dapm_widget palm27x_dapm_widgets[] = {
56 SND_SOC_DAPM_HP("Headphone Jack", NULL),
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020057 SND_SOC_DAPM_SPK("Ext. Speaker", NULL),
58 SND_SOC_DAPM_MIC("Ext. Microphone", NULL),
Marek Vasut74e72202008-11-03 12:02:12 +000059};
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 */
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020068 {"Ext. Speaker", NULL, "LOUT2"},
69 {"Ext. Speaker", NULL, "ROUT2"},
70
71 /* mic connected to MIC1 */
72 {"Ext. Microphone", NULL, "MIC1"},
Marek Vasut74e72202008-11-03 12:02:12 +000073};
74
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020075static struct snd_soc_card palm27x_asoc;
Marek Vasut74e72202008-11-03 12:02:12 +000076
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000077static int palm27x_ac97_init(struct snd_soc_pcm_runtime *rtd)
Marek Vasut74e72202008-11-03 12:02:12 +000078{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000079 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +020080 struct snd_soc_dapm_context *dapm = &codec->dapm;
Philipp Zabeleb5f6d752009-03-12 11:07:54 +010081 int err;
Marek Vasut74e72202008-11-03 12:02:12 +000082
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020083 /* add palm27x specific widgets */
Liam Girdwoodce6120c2010-11-05 15:53:46 +020084 err = snd_soc_dapm_new_controls(dapm, palm27x_dapm_widgets,
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020085 ARRAY_SIZE(palm27x_dapm_widgets));
86 if (err)
Philipp Zabeleb5f6d752009-03-12 11:07:54 +010087 return err;
Marek Vasut74e72202008-11-03 12:02:12 +000088
Marek Vasut74e72202008-11-03 12:02:12 +000089 /* set up palm27x specific audio path audio_map */
Liam Girdwoodce6120c2010-11-05 15:53:46 +020090 err = snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020091 if (err)
92 return err;
Marek Vasut74e72202008-11-03 12:02:12 +000093
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020094 /* connected pins */
95 if (machine_is_palmld())
Liam Girdwoodce6120c2010-11-05 15:53:46 +020096 snd_soc_dapm_enable_pin(dapm, "MIC1");
97 snd_soc_dapm_enable_pin(dapm, "HPOUTL");
98 snd_soc_dapm_enable_pin(dapm, "HPOUTR");
99 snd_soc_dapm_enable_pin(dapm, "LOUT2");
100 snd_soc_dapm_enable_pin(dapm, "ROUT2");
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200101
102 /* not connected pins */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200103 snd_soc_dapm_nc_pin(dapm, "OUT3");
104 snd_soc_dapm_nc_pin(dapm, "MONOOUT");
105 snd_soc_dapm_nc_pin(dapm, "LINEINL");
106 snd_soc_dapm_nc_pin(dapm, "LINEINR");
107 snd_soc_dapm_nc_pin(dapm, "PCBEEP");
108 snd_soc_dapm_nc_pin(dapm, "PHONE");
109 snd_soc_dapm_nc_pin(dapm, "MIC2");
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200110
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200111 err = snd_soc_dapm_sync(dapm);
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200112 if (err)
113 return err;
114
115 /* Jack detection API stuff */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000116 err = snd_soc_jack_new(codec, "Headphone Jack",
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200117 SND_JACK_HEADPHONE, &hs_jack);
118 if (err)
119 return err;
120
121 err = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
122 hs_jack_pins);
123 if (err)
124 return err;
125
126 err = snd_soc_jack_add_gpios(&hs_jack, ARRAY_SIZE(hs_jack_gpios),
127 hs_jack_gpios);
128
129 return err;
Marek Vasut74e72202008-11-03 12:02:12 +0000130}
131
132static struct snd_soc_dai_link palm27x_dai[] = {
133{
134 .name = "AC97 HiFi",
135 .stream_name = "AC97 HiFi",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000136 .cpu_dai_name = "pxa-ac97.0",
137 .codec_dai_name = "wm9712-hifi",
138 .codec_name = "wm9712-codec",
139 .platform_name = "pxa-pcm-audio",
Marek Vasut74e72202008-11-03 12:02:12 +0000140 .init = palm27x_ac97_init,
Marek Vasut74e72202008-11-03 12:02:12 +0000141},
142{
143 .name = "AC97 Aux",
144 .stream_name = "AC97 Aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000145 .cpu_dai_name = "pxa-ac97.1",
146 .codec_dai_name = "wm9712-aux",
147 .codec_name = "wm9712-codec",
148 .platform_name = "pxa-pcm-audio",
Marek Vasut74e72202008-11-03 12:02:12 +0000149},
150};
151
Mark Brown87506542008-11-18 20:50:34 +0000152static struct snd_soc_card palm27x_asoc = {
Marek Vasut74e72202008-11-03 12:02:12 +0000153 .name = "Palm/PXA27x",
154 .dai_link = palm27x_dai,
155 .num_links = ARRAY_SIZE(palm27x_dai),
156};
157
Marek Vasut74e72202008-11-03 12:02:12 +0000158static struct platform_device *palm27x_snd_device;
159
Marek Vasute91fb912009-04-17 11:37:35 +0200160static int palm27x_asoc_probe(struct platform_device *pdev)
Marek Vasut74e72202008-11-03 12:02:12 +0000161{
162 int ret;
163
164 if (!(machine_is_palmtx() || machine_is_palmt5() ||
Marek Vasut37330ef2009-04-23 11:27:11 +0200165 machine_is_palmld() || machine_is_palmte2()))
Marek Vasut74e72202008-11-03 12:02:12 +0000166 return -ENODEV;
167
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200168 if (!pdev->dev.platform_data) {
169 dev_err(&pdev->dev, "please supply platform_data\n");
170 return -ENODEV;
171 }
172
173 hs_jack_gpios[0].gpio = ((struct palm27x_asoc_info *)
Marek Vasute91fb912009-04-17 11:37:35 +0200174 (pdev->dev.platform_data))->jack_gpio;
175
Marek Vasut74e72202008-11-03 12:02:12 +0000176 palm27x_snd_device = platform_device_alloc("soc-audio", -1);
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200177 if (!palm27x_snd_device)
178 return -ENOMEM;
Marek Vasut74e72202008-11-03 12:02:12 +0000179
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000180 platform_set_drvdata(palm27x_snd_device, &palm27x_asoc);
Marek Vasut74e72202008-11-03 12:02:12 +0000181 ret = platform_device_add(palm27x_snd_device);
182
183 if (ret != 0)
184 goto put_device;
185
186 return 0;
187
188put_device:
189 platform_device_put(palm27x_snd_device);
Marek Vasut74e72202008-11-03 12:02:12 +0000190
191 return ret;
192}
193
Marek Vasute91fb912009-04-17 11:37:35 +0200194static int __devexit palm27x_asoc_remove(struct platform_device *pdev)
Marek Vasut74e72202008-11-03 12:02:12 +0000195{
Marek Vasut74e72202008-11-03 12:02:12 +0000196 platform_device_unregister(palm27x_snd_device);
Marek Vasute91fb912009-04-17 11:37:35 +0200197 return 0;
Marek Vasut74e72202008-11-03 12:02:12 +0000198}
199
Marek Vasute91fb912009-04-17 11:37:35 +0200200static struct platform_driver palm27x_wm9712_driver = {
201 .probe = palm27x_asoc_probe,
202 .remove = __devexit_p(palm27x_asoc_remove),
203 .driver = {
204 .name = "palm27x-asoc",
205 .owner = THIS_MODULE,
206 },
207};
208
209static int __init palm27x_asoc_init(void)
Marek Vasut74e72202008-11-03 12:02:12 +0000210{
Marek Vasute91fb912009-04-17 11:37:35 +0200211 return platform_driver_register(&palm27x_wm9712_driver);
212}
213
214static void __exit palm27x_asoc_exit(void)
215{
216 platform_driver_unregister(&palm27x_wm9712_driver);
Marek Vasut74e72202008-11-03 12:02:12 +0000217}
218
219module_init(palm27x_asoc_init);
220module_exit(palm27x_asoc_exit);
221
222/* Module information */
223MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
224MODULE_DESCRIPTION("ALSA SoC Palm T|X, T5 and LifeDrive");
225MODULE_LICENSE("GPL");