blob: 45d4bd46fff60d08dbda013b5e7b8f8cefd1851e [file] [log] [blame]
Ian Moltonab40d4f2008-01-10 14:50:34 +01001/*
2 * e800-wm9712.c -- SoC audio for e800
3 *
Ian Moltonab40d4f2008-01-10 14:50:34 +01004 * Copyright 2007 (c) Ian Molton <spyro@f2s.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; version 2 ONLY.
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/moduleparam.h>
Ian Molton0465c7a2009-01-08 21:16:05 +000014#include <linux/gpio.h>
Ian Moltonab40d4f2008-01-10 14:50:34 +010015
16#include <sound/core.h>
17#include <sound/pcm.h>
18#include <sound/soc.h>
Ian Moltonab40d4f2008-01-10 14:50:34 +010019
Mark Brownc91cf252009-01-23 11:23:32 +000020#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/audio.h>
Ian Molton0465c7a2009-01-08 21:16:05 +000022#include <mach/eseries-gpio.h>
23
Ian Moltonab40d4f2008-01-10 14:50:34 +010024#include "../codecs/wm9712.h"
Ian Moltonab40d4f2008-01-10 14:50:34 +010025#include "pxa2xx-ac97.h"
26
Ian Molton0465c7a2009-01-08 21:16:05 +000027static int e800_spk_amp_event(struct snd_soc_dapm_widget *w,
28 struct snd_kcontrol *kcontrol, int event)
29{
30 if (event & SND_SOC_DAPM_PRE_PMU)
31 gpio_set_value(GPIO_E800_SPK_AMP_ON, 1);
32 else if (event & SND_SOC_DAPM_POST_PMD)
33 gpio_set_value(GPIO_E800_SPK_AMP_ON, 0);
34
35 return 0;
36}
37
38static int e800_hp_amp_event(struct snd_soc_dapm_widget *w,
39 struct snd_kcontrol *kcontrol, int event)
40{
41 if (event & SND_SOC_DAPM_PRE_PMU)
42 gpio_set_value(GPIO_E800_HP_AMP_OFF, 0);
43 else if (event & SND_SOC_DAPM_POST_PMD)
44 gpio_set_value(GPIO_E800_HP_AMP_OFF, 1);
45
46 return 0;
47}
48
49static const struct snd_soc_dapm_widget e800_dapm_widgets[] = {
50 SND_SOC_DAPM_HP("Headphone Jack", NULL),
51 SND_SOC_DAPM_MIC("Mic (Internal1)", NULL),
52 SND_SOC_DAPM_MIC("Mic (Internal2)", NULL),
53 SND_SOC_DAPM_SPK("Speaker", NULL),
54 SND_SOC_DAPM_PGA_E("Headphone Amp", SND_SOC_NOPM, 0, 0, NULL, 0,
55 e800_hp_amp_event, SND_SOC_DAPM_PRE_PMU |
56 SND_SOC_DAPM_POST_PMD),
57 SND_SOC_DAPM_PGA_E("Speaker Amp", SND_SOC_NOPM, 0, 0, NULL, 0,
58 e800_spk_amp_event, SND_SOC_DAPM_PRE_PMU |
59 SND_SOC_DAPM_POST_PMD),
60};
61
62static const struct snd_soc_dapm_route audio_map[] = {
63 {"Headphone Jack", NULL, "HPOUTL"},
64 {"Headphone Jack", NULL, "HPOUTR"},
65 {"Headphone Jack", NULL, "Headphone Amp"},
66
67 {"Speaker Amp", NULL, "MONOOUT"},
68 {"Speaker", NULL, "Speaker Amp"},
69
70 {"MIC1", NULL, "Mic (Internal1)"},
71 {"MIC2", NULL, "Mic (Internal2)"},
72};
73
Ian Moltonab40d4f2008-01-10 14:50:34 +010074static struct snd_soc_dai_link e800_dai[] = {
Ian Molton0465c7a2009-01-08 21:16:05 +000075 {
76 .name = "AC97",
77 .stream_name = "AC97 HiFi",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +030078 .cpu_dai_name = "pxa2xx-ac97",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000079 .codec_dai_name = "wm9712-hifi",
80 .platform_name = "pxa-pcm-audio",
81 .codec_name = "wm9712-codec",
Ian Molton0465c7a2009-01-08 21:16:05 +000082 },
83 {
84 .name = "AC97 Aux",
85 .stream_name = "AC97 Aux",
Dmitry Eremin-Solenikov4bfc4e22011-02-23 02:29:11 +030086 .cpu_dai_name = "pxa2xx-ac97-aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000087 .codec_dai_name ="wm9712-aux",
88 .platform_name = "pxa-pcm-audio",
89 .codec_name = "wm9712-codec",
Ian Molton0465c7a2009-01-08 21:16:05 +000090 },
Ian Moltonab40d4f2008-01-10 14:50:34 +010091};
92
Mark Brown87506542008-11-18 20:50:34 +000093static struct snd_soc_card e800 = {
Ian Moltonab40d4f2008-01-10 14:50:34 +010094 .name = "Toshiba e800",
Axel Lin561c6a12011-12-22 09:44:43 +080095 .owner = THIS_MODULE,
Ian Moltonab40d4f2008-01-10 14:50:34 +010096 .dai_link = e800_dai,
97 .num_links = ARRAY_SIZE(e800_dai),
Lars-Peter Clausen1bdd3012014-03-01 15:48:16 +010098
99 .dapm_widgets = e800_dapm_widgets,
100 .num_dapm_widgets = ARRAY_SIZE(e800_dapm_widgets),
101 .dapm_routes = audio_map,
102 .num_dapm_routes = ARRAY_SIZE(audio_map),
Ian Moltonab40d4f2008-01-10 14:50:34 +0100103};
104
Axel Lin1eb02022011-12-15 10:54:25 +0800105static struct gpio e800_audio_gpios[] = {
106 { GPIO_E800_SPK_AMP_ON, GPIOF_OUT_INIT_HIGH, "Headphone amp" },
107 { GPIO_E800_HP_AMP_OFF, GPIOF_OUT_INIT_HIGH, "Speaker amp" },
108};
Ian Moltonab40d4f2008-01-10 14:50:34 +0100109
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500110static int e800_probe(struct platform_device *pdev)
Ian Moltonab40d4f2008-01-10 14:50:34 +0100111{
Axel Lin1eb02022011-12-15 10:54:25 +0800112 struct snd_soc_card *card = &e800;
Ian Moltonab40d4f2008-01-10 14:50:34 +0100113 int ret;
114
Axel Lin1eb02022011-12-15 10:54:25 +0800115 ret = gpio_request_array(e800_audio_gpios,
116 ARRAY_SIZE(e800_audio_gpios));
Ian Molton0465c7a2009-01-08 21:16:05 +0000117 if (ret)
118 return ret;
119
Axel Lin1eb02022011-12-15 10:54:25 +0800120 card->dev = &pdev->dev;
Ian Molton0465c7a2009-01-08 21:16:05 +0000121
Axel Lin1eb02022011-12-15 10:54:25 +0800122 ret = snd_soc_register_card(card);
123 if (ret) {
124 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
125 ret);
126 gpio_free_array(e800_audio_gpios, ARRAY_SIZE(e800_audio_gpios));
Axel Lin8faab9412011-12-07 10:01:30 +0800127 }
Ian Moltonab40d4f2008-01-10 14:50:34 +0100128 return ret;
129}
130
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500131static int e800_remove(struct platform_device *pdev)
Ian Moltonab40d4f2008-01-10 14:50:34 +0100132{
Axel Lin1eb02022011-12-15 10:54:25 +0800133 struct snd_soc_card *card = platform_get_drvdata(pdev);
134
135 gpio_free_array(e800_audio_gpios, ARRAY_SIZE(e800_audio_gpios));
136 snd_soc_unregister_card(card);
137 return 0;
Ian Moltonab40d4f2008-01-10 14:50:34 +0100138}
139
Axel Lin1eb02022011-12-15 10:54:25 +0800140static struct platform_driver e800_driver = {
141 .driver = {
142 .name = "e800-audio",
Dmitry Eremin-Solenikov7db16982013-10-17 14:01:37 +0400143 .pm = &snd_soc_pm_ops,
Axel Lin1eb02022011-12-15 10:54:25 +0800144 },
145 .probe = e800_probe,
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500146 .remove = e800_remove,
Axel Lin1eb02022011-12-15 10:54:25 +0800147};
148
149module_platform_driver(e800_driver);
Ian Moltonab40d4f2008-01-10 14:50:34 +0100150
151/* Module information */
152MODULE_AUTHOR("Ian Molton <spyro@f2s.com>");
153MODULE_DESCRIPTION("ALSA SoC driver for e800");
Ian Molton0465c7a2009-01-08 21:16:05 +0000154MODULE_LICENSE("GPL v2");
Axel Lin1eb02022011-12-15 10:54:25 +0800155MODULE_ALIAS("platform:e800-audio");