blob: bcc81e920a67cbfb4132a0bc571041af49b89ff6 [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{
Philipp Zabeleb5f6d752009-03-12 11:07:54 +010078 int err;
Marek Vasut74e72202008-11-03 12:02:12 +000079
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020080 /* Jack detection API stuff */
Lars-Peter Clausenbc1e2e02015-03-04 10:33:30 +010081 err = snd_soc_card_jack_new(rtd->card, "Headphone Jack",
82 SND_JACK_HEADPHONE, &hs_jack, hs_jack_pins,
83 ARRAY_SIZE(hs_jack_pins));
Marek Vasut4ce2f2f2009-07-23 22:16:56 +020084 if (err)
85 return err;
86
87 err = snd_soc_jack_add_gpios(&hs_jack, ARRAY_SIZE(hs_jack_gpios),
88 hs_jack_gpios);
89
90 return err;
Marek Vasut74e72202008-11-03 12:02:12 +000091}
92
93static struct snd_soc_dai_link palm27x_dai[] = {
94{
95 .name = "AC97 HiFi",
96 .stream_name = "AC97 HiFi",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +030097 .cpu_dai_name = "pxa2xx-ac97",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000098 .codec_dai_name = "wm9712-hifi",
99 .codec_name = "wm9712-codec",
100 .platform_name = "pxa-pcm-audio",
Marek Vasut74e72202008-11-03 12:02:12 +0000101 .init = palm27x_ac97_init,
Marek Vasut74e72202008-11-03 12:02:12 +0000102},
103{
104 .name = "AC97 Aux",
105 .stream_name = "AC97 Aux",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +0300106 .cpu_dai_name = "pxa2xx-ac97-aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000107 .codec_dai_name = "wm9712-aux",
108 .codec_name = "wm9712-codec",
109 .platform_name = "pxa-pcm-audio",
Marek Vasut74e72202008-11-03 12:02:12 +0000110},
111};
112
Mark Brown87506542008-11-18 20:50:34 +0000113static struct snd_soc_card palm27x_asoc = {
Marek Vasut74e72202008-11-03 12:02:12 +0000114 .name = "Palm/PXA27x",
Axel Lin561c6a12011-12-22 09:44:43 +0800115 .owner = THIS_MODULE,
Marek Vasut74e72202008-11-03 12:02:12 +0000116 .dai_link = palm27x_dai,
117 .num_links = ARRAY_SIZE(palm27x_dai),
Mike Dunn016fb392012-12-29 10:53:17 -0800118 .dapm_widgets = palm27x_dapm_widgets,
119 .num_dapm_widgets = ARRAY_SIZE(palm27x_dapm_widgets),
120 .dapm_routes = audio_map,
Lars-Peter Clausen19a34772015-01-09 22:03:32 +0100121 .num_dapm_routes = ARRAY_SIZE(audio_map),
122 .fully_routed = true,
Marek Vasut74e72202008-11-03 12:02:12 +0000123};
124
Marek Vasute91fb912009-04-17 11:37:35 +0200125static int palm27x_asoc_probe(struct platform_device *pdev)
Marek Vasut74e72202008-11-03 12:02:12 +0000126{
127 int ret;
128
129 if (!(machine_is_palmtx() || machine_is_palmt5() ||
Marek Vasut37330ef2009-04-23 11:27:11 +0200130 machine_is_palmld() || machine_is_palmte2()))
Marek Vasut74e72202008-11-03 12:02:12 +0000131 return -ENODEV;
132
Marek Vasut4ce2f2f2009-07-23 22:16:56 +0200133 if (!pdev->dev.platform_data) {
134 dev_err(&pdev->dev, "please supply platform_data\n");
135 return -ENODEV;
136 }
137
138 hs_jack_gpios[0].gpio = ((struct palm27x_asoc_info *)
Marek Vasute91fb912009-04-17 11:37:35 +0200139 (pdev->dev.platform_data))->jack_gpio;
140
Mike Dunn01a61f42012-12-29 10:53:18 -0800141 palm27x_asoc.dev = &pdev->dev;
Marek Vasut74e72202008-11-03 12:02:12 +0000142
Axel Lin2fd70762015-09-01 10:32:59 +0800143 ret = devm_snd_soc_register_card(&pdev->dev, &palm27x_asoc);
Mike Dunn01a61f42012-12-29 10:53:18 -0800144 if (ret)
145 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
146 ret);
Marek Vasut74e72202008-11-03 12:02:12 +0000147 return ret;
148}
149
Marek Vasute91fb912009-04-17 11:37:35 +0200150static struct platform_driver palm27x_wm9712_driver = {
151 .probe = palm27x_asoc_probe,
Marek Vasute91fb912009-04-17 11:37:35 +0200152 .driver = {
153 .name = "palm27x-asoc",
Dmitry Eremin-Solenikov7db16982013-10-17 14:01:37 +0400154 .pm = &snd_soc_pm_ops,
Marek Vasute91fb912009-04-17 11:37:35 +0200155 },
156};
157
Axel Lin2f702a12011-11-25 10:13:37 +0800158module_platform_driver(palm27x_wm9712_driver);
Marek Vasut74e72202008-11-03 12:02:12 +0000159
160/* Module information */
161MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
162MODULE_DESCRIPTION("ALSA SoC Palm T|X, T5 and LifeDrive");
163MODULE_LICENSE("GPL");
Andrea Adamie5b7d712016-05-06 17:27:34 +0200164MODULE_ALIAS("platform:palm27x-asoc");