Merge tag 'for-linus-20190706' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / sound / soc / pxa / palm27x.c
blob207455fd72023005e6156a7e13d53f57a8984553
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * linux/sound/soc/pxa/palm27x.c
5 * SoC Audio driver for Palm T|X, T5 and LifeDrive
7 * based on tosa.c
9 * Copyright (C) 2008 Marek Vasut <marek.vasut@gmail.com>
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
14 #include <linux/device.h>
15 #include <linux/gpio.h>
17 #include <sound/core.h>
18 #include <sound/pcm.h>
19 #include <sound/soc.h>
20 #include <sound/jack.h>
22 #include <asm/mach-types.h>
23 #include <mach/audio.h>
24 #include <linux/platform_data/asoc-palm27x.h>
26 static struct snd_soc_jack hs_jack;
28 /* Headphones jack detection DAPM pins */
29 static struct snd_soc_jack_pin hs_jack_pins[] = {
31 .pin = "Headphone Jack",
32 .mask = SND_JACK_HEADPHONE,
36 /* Headphones jack detection gpios */
37 static struct snd_soc_jack_gpio hs_jack_gpios[] = {
38 [0] = {
39 /* gpio is set on per-platform basis */
40 .name = "hp-gpio",
41 .report = SND_JACK_HEADPHONE,
42 .debounce_time = 200,
46 /* Palm27x machine dapm widgets */
47 static const struct snd_soc_dapm_widget palm27x_dapm_widgets[] = {
48 SND_SOC_DAPM_HP("Headphone Jack", NULL),
49 SND_SOC_DAPM_SPK("Ext. Speaker", NULL),
50 SND_SOC_DAPM_MIC("Ext. Microphone", NULL),
53 /* PalmTX audio map */
54 static const struct snd_soc_dapm_route audio_map[] = {
55 /* headphone connected to HPOUTL, HPOUTR */
56 {"Headphone Jack", NULL, "HPOUTL"},
57 {"Headphone Jack", NULL, "HPOUTR"},
59 /* ext speaker connected to ROUT2, LOUT2 */
60 {"Ext. Speaker", NULL, "LOUT2"},
61 {"Ext. Speaker", NULL, "ROUT2"},
63 /* mic connected to MIC1 */
64 {"MIC1", NULL, "Ext. Microphone"},
67 static struct snd_soc_card palm27x_asoc;
69 static int palm27x_ac97_init(struct snd_soc_pcm_runtime *rtd)
71 int err;
73 /* Jack detection API stuff */
74 err = snd_soc_card_jack_new(rtd->card, "Headphone Jack",
75 SND_JACK_HEADPHONE, &hs_jack, hs_jack_pins,
76 ARRAY_SIZE(hs_jack_pins));
77 if (err)
78 return err;
80 err = snd_soc_jack_add_gpios(&hs_jack, ARRAY_SIZE(hs_jack_gpios),
81 hs_jack_gpios);
83 return err;
86 static struct snd_soc_dai_link palm27x_dai[] = {
88 .name = "AC97 HiFi",
89 .stream_name = "AC97 HiFi",
90 .cpu_dai_name = "pxa2xx-ac97",
91 .codec_dai_name = "wm9712-hifi",
92 .codec_name = "wm9712-codec",
93 .platform_name = "pxa-pcm-audio",
94 .init = palm27x_ac97_init,
97 .name = "AC97 Aux",
98 .stream_name = "AC97 Aux",
99 .cpu_dai_name = "pxa2xx-ac97-aux",
100 .codec_dai_name = "wm9712-aux",
101 .codec_name = "wm9712-codec",
102 .platform_name = "pxa-pcm-audio",
106 static struct snd_soc_card palm27x_asoc = {
107 .name = "Palm/PXA27x",
108 .owner = THIS_MODULE,
109 .dai_link = palm27x_dai,
110 .num_links = ARRAY_SIZE(palm27x_dai),
111 .dapm_widgets = palm27x_dapm_widgets,
112 .num_dapm_widgets = ARRAY_SIZE(palm27x_dapm_widgets),
113 .dapm_routes = audio_map,
114 .num_dapm_routes = ARRAY_SIZE(audio_map),
115 .fully_routed = true,
118 static int palm27x_asoc_probe(struct platform_device *pdev)
120 int ret;
122 if (!(machine_is_palmtx() || machine_is_palmt5() ||
123 machine_is_palmld() || machine_is_palmte2()))
124 return -ENODEV;
126 if (!pdev->dev.platform_data) {
127 dev_err(&pdev->dev, "please supply platform_data\n");
128 return -ENODEV;
131 hs_jack_gpios[0].gpio = ((struct palm27x_asoc_info *)
132 (pdev->dev.platform_data))->jack_gpio;
134 palm27x_asoc.dev = &pdev->dev;
136 ret = devm_snd_soc_register_card(&pdev->dev, &palm27x_asoc);
137 if (ret)
138 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
139 ret);
140 return ret;
143 static struct platform_driver palm27x_wm9712_driver = {
144 .probe = palm27x_asoc_probe,
145 .driver = {
146 .name = "palm27x-asoc",
147 .pm = &snd_soc_pm_ops,
151 module_platform_driver(palm27x_wm9712_driver);
153 /* Module information */
154 MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
155 MODULE_DESCRIPTION("ALSA SoC Palm T|X, T5 and LifeDrive");
156 MODULE_LICENSE("GPL");
157 MODULE_ALIAS("platform:palm27x-asoc");