blob: 910336c5ebebd1486048552af7f598b6d7747b0d [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>
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020024#include <sound/jack.h>
Marek Vasut74e72202008-11-03 12:02:12 +000025
26#include <asm/mach-types.h>
27#include <mach/audio.h>
Arnd Bergmann293b2da2012-08-24 15:16:48 +020028#include <linux/platform_data/asoc-palm27x.h>
Marek Vasut74e72202008-11-03 12:02:12 +000029
30#include "../codecs/wm9712.h"
Marek Vasut74e72202008-11-03 12:02:12 +000031#include "pxa2xx-ac97.h"
32
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020033static struct snd_soc_jack hs_jack;
Marek Vasut74e72202008-11-03 12:02:12 +000034
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020035/* 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 },
Marek Vasut74e72202008-11-03 12:02:12 +000041};
42
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020043/* 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};
Marek Vasut74e72202008-11-03 12:02:12 +000052
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020053/* Palm27x machine dapm widgets */
Marek Vasut74e72202008-11-03 12:02:12 +000054static const struct snd_soc_dapm_widget palm27x_dapm_widgets[] = {
55 SND_SOC_DAPM_HP("Headphone Jack", NULL),
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020056 SND_SOC_DAPM_SPK("Ext. Speaker", NULL),
57 SND_SOC_DAPM_MIC("Ext. Microphone", NULL),
Marek Vasut74e72202008-11-03 12:02:12 +000058};
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 */
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020067 {"Ext. Speaker", NULL, "LOUT2"},
68 {"Ext. Speaker", NULL, "ROUT2"},
69
70 /* mic connected to MIC1 */
Lars-Peter Clausenb68ef0e2015-01-09 22:03:31 +010071 {"MIC1", NULL, "Ext. Microphone"},
Marek Vasut74e72202008-11-03 12:02:12 +000072};
73
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020074static struct snd_soc_card palm27x_asoc;
Marek Vasut74e72202008-11-03 12:02:12 +000075
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000076static int palm27x_ac97_init(struct snd_soc_pcm_runtime *rtd)
Marek Vasut74e72202008-11-03 12:02:12 +000077{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000078 struct snd_soc_codec *codec = rtd->codec;
Philipp Zabeleb5f6d752009-03-12 11:07:54 +010079 int err;
Marek Vasut74e72202008-11-03 12:02:12 +000080
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020081 /* Jack detection API stuff */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000082 err = snd_soc_jack_new(codec, "Headphone Jack",
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020083 SND_JACK_HEADPHONE, &hs_jack);
84 if (err)
85 return err;
86
87 err = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
88 hs_jack_pins);
89 if (err)
90 return err;
91
92 err = snd_soc_jack_add_gpios(&hs_jack, ARRAY_SIZE(hs_jack_gpios),
93 hs_jack_gpios);
94
95 return err;
Marek Vasut74e72202008-11-03 12:02:12 +000096}
97
98static struct snd_soc_dai_link palm27x_dai[] = {
99{
100 .name = "AC97 HiFi",
101 .stream_name = "AC97 HiFi",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +0300102 .cpu_dai_name = "pxa2xx-ac97",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000103 .codec_dai_name = "wm9712-hifi",
104 .codec_name = "wm9712-codec",
105 .platform_name = "pxa-pcm-audio",
Marek Vasut74e72202008-11-03 12:02:12 +0000106 .init = palm27x_ac97_init,
Marek Vasut74e72202008-11-03 12:02:12 +0000107},
108{
109 .name = "AC97 Aux",
110 .stream_name = "AC97 Aux",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +0300111 .cpu_dai_name = "pxa2xx-ac97-aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000112 .codec_dai_name = "wm9712-aux",
113 .codec_name = "wm9712-codec",
114 .platform_name = "pxa-pcm-audio",
Marek Vasut74e72202008-11-03 12:02:12 +0000115},
116};
117
Mark Brown87506542008-11-18 20:50:34 +0000118static struct snd_soc_card palm27x_asoc = {
Marek Vasut74e72202008-11-03 12:02:12 +0000119 .name = "Palm/PXA27x",
Axel Lin561c6a12011-12-22 09:44:43 +0800120 .owner = THIS_MODULE,
Marek Vasut74e72202008-11-03 12:02:12 +0000121 .dai_link = palm27x_dai,
122 .num_links = ARRAY_SIZE(palm27x_dai),
Mike Dunn016fb392012-12-29 10:53:17 -0800123 .dapm_widgets = palm27x_dapm_widgets,
124 .num_dapm_widgets = ARRAY_SIZE(palm27x_dapm_widgets),
125 .dapm_routes = audio_map,
Lars-Peter Clausen19a34772015-01-09 22:03:32 +0100126 .num_dapm_routes = ARRAY_SIZE(audio_map),
127 .fully_routed = true,
Marek Vasut74e72202008-11-03 12:02:12 +0000128};
129
Marek Vasute91fb912009-04-17 11:37:35 +0200130static int palm27x_asoc_probe(struct platform_device *pdev)
Marek Vasut74e72202008-11-03 12:02:12 +0000131{
132 int ret;
133
134 if (!(machine_is_palmtx() || machine_is_palmt5() ||
Marek Vasut37330ef2009-04-23 11:27:11 +0200135 machine_is_palmld() || machine_is_palmte2()))
Marek Vasut74e72202008-11-03 12:02:12 +0000136 return -ENODEV;
137
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200138 if (!pdev->dev.platform_data) {
139 dev_err(&pdev->dev, "please supply platform_data\n");
140 return -ENODEV;
141 }
142
143 hs_jack_gpios[0].gpio = ((struct palm27x_asoc_info *)
Marek Vasute91fb912009-04-17 11:37:35 +0200144 (pdev->dev.platform_data))->jack_gpio;
145
Mike Dunn01a61f42012-12-29 10:53:18 -0800146 palm27x_asoc.dev = &pdev->dev;
Marek Vasut74e72202008-11-03 12:02:12 +0000147
Mike Dunn01a61f42012-12-29 10:53:18 -0800148 ret = snd_soc_register_card(&palm27x_asoc);
149 if (ret)
150 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
151 ret);
Marek Vasut74e72202008-11-03 12:02:12 +0000152 return ret;
153}
154
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500155static int palm27x_asoc_remove(struct platform_device *pdev)
Marek Vasut74e72202008-11-03 12:02:12 +0000156{
Mike Dunn01a61f42012-12-29 10:53:18 -0800157 snd_soc_unregister_card(&palm27x_asoc);
Marek Vasute91fb912009-04-17 11:37:35 +0200158 return 0;
Marek Vasut74e72202008-11-03 12:02:12 +0000159}
160
Marek Vasute91fb912009-04-17 11:37:35 +0200161static struct platform_driver palm27x_wm9712_driver = {
162 .probe = palm27x_asoc_probe,
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500163 .remove = palm27x_asoc_remove,
Marek Vasute91fb912009-04-17 11:37:35 +0200164 .driver = {
165 .name = "palm27x-asoc",
Dmitry Eremin-Solenikov7db16982013-10-17 14:01:37 +0400166 .pm = &snd_soc_pm_ops,
Marek Vasute91fb912009-04-17 11:37:35 +0200167 },
168};
169
Axel Lin2f702a12011-11-25 10:13:37 +0800170module_platform_driver(palm27x_wm9712_driver);
Marek Vasut74e72202008-11-03 12:02:12 +0000171
172/* Module information */
173MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
174MODULE_DESCRIPTION("ALSA SoC Palm T|X, T5 and LifeDrive");
175MODULE_LICENSE("GPL");