blob: ca0d7e34240792039fd6a7b3e5eb79a1d727c71a [file] [log] [blame]
Marek Vasutd21e0f42010-04-05 06:13:38 +02001/*
2 * linux/sound/soc/pxa/z2.c
3 *
4 * SoC Audio driver for Aeronix Zipit Z2
5 *
6 * Copyright (C) 2009 Ken McGuire <kenm@desertweyr.com>
7 * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/timer.h>
17#include <linux/interrupt.h>
18#include <linux/platform_device.h>
19#include <linux/gpio.h>
20
21#include <sound/core.h>
22#include <sound/pcm.h>
23#include <sound/soc.h>
Marek Vasutd21e0f42010-04-05 06:13:38 +020024#include <sound/jack.h>
25
26#include <asm/mach-types.h>
27#include <mach/hardware.h>
28#include <mach/audio.h>
29#include <mach/z2.h>
30
31#include "../codecs/wm8750.h"
Marek Vasutd21e0f42010-04-05 06:13:38 +020032#include "pxa2xx-i2s.h"
33
34static struct snd_soc_card snd_soc_z2;
35
36static int z2_hw_params(struct snd_pcm_substream *substream,
37 struct snd_pcm_hw_params *params)
38{
39 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000040 struct snd_soc_dai *codec_dai = rtd->codec_dai;
41 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Marek Vasutd21e0f42010-04-05 06:13:38 +020042 unsigned int clk = 0;
43 int ret = 0;
44
45 switch (params_rate(params)) {
46 case 8000:
47 case 16000:
48 case 48000:
49 case 96000:
50 clk = 12288000;
51 break;
52 case 11025:
53 case 22050:
54 case 44100:
55 clk = 11289600;
56 break;
57 }
58
59 /* set codec DAI configuration */
60 ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
61 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
62 if (ret < 0)
63 return ret;
64
65 /* set cpu DAI configuration */
66 ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
67 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
68 if (ret < 0)
69 return ret;
70
71 /* set the codec system clock for DAC and ADC */
72 ret = snd_soc_dai_set_sysclk(codec_dai, WM8750_SYSCLK, clk,
73 SND_SOC_CLOCK_IN);
74 if (ret < 0)
75 return ret;
76
77 /* set the I2S system clock as input (unused) */
78 ret = snd_soc_dai_set_sysclk(cpu_dai, PXA2XX_I2S_SYSCLK, 0,
79 SND_SOC_CLOCK_IN);
80 if (ret < 0)
81 return ret;
82
83 return 0;
84}
85
86static struct snd_soc_jack hs_jack;
87
88/* Headset jack detection DAPM pins */
89static struct snd_soc_jack_pin hs_jack_pins[] = {
90 {
91 .pin = "Mic Jack",
92 .mask = SND_JACK_MICROPHONE,
93 },
94 {
95 .pin = "Headphone Jack",
96 .mask = SND_JACK_HEADPHONE,
97 },
98};
99
100/* Headset jack detection gpios */
101static struct snd_soc_jack_gpio hs_jack_gpios[] = {
102 {
103 .gpio = GPIO37_ZIPITZ2_HEADSET_DETECT,
104 .name = "hsdet-gpio",
105 .report = SND_JACK_HEADSET,
106 .debounce_time = 200,
Vasily Khoruzhick7cbf70042011-01-18 16:54:24 +0200107 .invert = 1,
Marek Vasutd21e0f42010-04-05 06:13:38 +0200108 },
109};
110
111/* z2 machine dapm widgets */
112static const struct snd_soc_dapm_widget wm8750_dapm_widgets[] = {
113 SND_SOC_DAPM_HP("Headphone Jack", NULL),
114 SND_SOC_DAPM_MIC("Mic Jack", NULL),
115 SND_SOC_DAPM_SPK("Ext Spk", NULL),
116
117 /* headset is a mic and mono headphone */
118 SND_SOC_DAPM_HP("Headset Jack", NULL),
119};
120
121/* Z2 machine audio_map */
122static const struct snd_soc_dapm_route audio_map[] = {
123
124 /* headphone connected to LOUT1, ROUT1 */
125 {"Headphone Jack", NULL, "LOUT1"},
126 {"Headphone Jack", NULL, "ROUT1"},
127
128 /* ext speaker connected to LOUT2, ROUT2 */
129 {"Ext Spk", NULL , "ROUT2"},
130 {"Ext Spk", NULL , "LOUT2"},
131
132 /* mic is connected to R input 2 - with bias */
133 {"RINPUT2", NULL, "Mic Bias"},
134 {"Mic Bias", NULL, "Mic Jack"},
135};
136
137/*
138 * Logic for a wm8750 as connected on a Z2 Device
139 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000140static int z2_wm8750_init(struct snd_soc_pcm_runtime *rtd)
Marek Vasutd21e0f42010-04-05 06:13:38 +0200141{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000142 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200143 struct snd_soc_dapm_context *dapm = &codec->dapm;
Marek Vasutd21e0f42010-04-05 06:13:38 +0200144 int ret;
145
146 /* NC codec pins */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200147 snd_soc_dapm_disable_pin(dapm, "LINPUT3");
148 snd_soc_dapm_disable_pin(dapm, "RINPUT3");
149 snd_soc_dapm_disable_pin(dapm, "OUT3");
150 snd_soc_dapm_disable_pin(dapm, "MONO");
Marek Vasutd21e0f42010-04-05 06:13:38 +0200151
152 /* Add z2 specific widgets */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200153 snd_soc_dapm_new_controls(dapm, wm8750_dapm_widgets,
Marek Vasutd21e0f42010-04-05 06:13:38 +0200154 ARRAY_SIZE(wm8750_dapm_widgets));
155
156 /* Set up z2 specific audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200157 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Marek Vasutd21e0f42010-04-05 06:13:38 +0200158
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200159 ret = snd_soc_dapm_sync(dapm);
Marek Vasutd21e0f42010-04-05 06:13:38 +0200160 if (ret)
161 goto err;
162
163 /* Jack detection API stuff */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000164 ret = snd_soc_jack_new(codec, "Headset Jack", SND_JACK_HEADSET,
Marek Vasutd21e0f42010-04-05 06:13:38 +0200165 &hs_jack);
166 if (ret)
167 goto err;
168
169 ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
170 hs_jack_pins);
171 if (ret)
172 goto err;
173
174 ret = snd_soc_jack_add_gpios(&hs_jack, ARRAY_SIZE(hs_jack_gpios),
175 hs_jack_gpios);
176 if (ret)
177 goto err;
178
179 return 0;
180
181err:
182 return ret;
183}
184
185static struct snd_soc_ops z2_ops = {
186 .hw_params = z2_hw_params,
187};
188
189/* z2 digital audio interface glue - connects codec <--> CPU */
190static struct snd_soc_dai_link z2_dai = {
191 .name = "wm8750",
192 .stream_name = "WM8750",
Ian Larteya2a00862010-08-20 17:18:43 +0100193 .cpu_dai_name = "pxa2xx-i2s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000194 .codec_dai_name = "wm8750-hifi",
195 .platform_name = "pxa-pcm-audio",
196 .codec_name = "wm8750-codec.0-001a",
Marek Vasutd21e0f42010-04-05 06:13:38 +0200197 .init = z2_wm8750_init,
198 .ops = &z2_ops,
199};
200
201/* z2 audio machine driver */
202static struct snd_soc_card snd_soc_z2 = {
203 .name = "Z2",
Marek Vasutd21e0f42010-04-05 06:13:38 +0200204 .dai_link = &z2_dai,
205 .num_links = 1,
206};
207
Marek Vasutd21e0f42010-04-05 06:13:38 +0200208static struct platform_device *z2_snd_device;
209
210static int __init z2_init(void)
211{
212 int ret;
213
214 if (!machine_is_zipit2())
215 return -ENODEV;
216
217 z2_snd_device = platform_device_alloc("soc-audio", -1);
218 if (!z2_snd_device)
219 return -ENOMEM;
220
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000221 platform_set_drvdata(z2_snd_device, &snd_soc_z2);
Marek Vasutd21e0f42010-04-05 06:13:38 +0200222 ret = platform_device_add(z2_snd_device);
223
224 if (ret)
225 platform_device_put(z2_snd_device);
226
227 return ret;
228}
229
230static void __exit z2_exit(void)
231{
232 platform_device_unregister(z2_snd_device);
233}
234
235module_init(z2_init);
236module_exit(z2_exit);
237
238MODULE_AUTHOR("Ken McGuire <kenm@desertweyr.com>, "
239 "Marek Vasut <marek.vasut@gmail.com>");
240MODULE_DESCRIPTION("ALSA SoC ZipitZ2");
241MODULE_LICENSE("GPL");