blob: 37f6010a9109b6f35a7db54ba68b23cccaeb226f [file] [log] [blame]
Stephen Warrena8bf1ba2011-01-07 22:36:16 -07001/*
Stephen Warrendc0a50af2011-04-12 11:40:36 -06002 * tegra_wm8903.c - Tegra machine ASoC driver for boards using WM8903 codec.
Stephen Warrena8bf1ba2011-01-07 22:36:16 -07003 *
4 * Author: Stephen Warren <swarren@nvidia.com>
Stephen Warren72de2b12011-01-28 14:26:36 -07005 * Copyright (C) 2010-2011 - NVIDIA, Inc.
Stephen Warrena8bf1ba2011-01-07 22:36:16 -07006 *
7 * Based on code copyright/by:
8 *
9 * (c) 2009, 2010 Nvidia Graphics Pvt. Ltd.
10 *
11 * Copyright 2007 Wolfson Microelectronics PLC.
12 * Author: Graeme Gregory
13 * graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * version 2 as published by the Free Software Foundation.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
27 * 02110-1301 USA
28 *
29 */
30
31#include <asm/mach-types.h>
Stephen Warren72de2b12011-01-28 14:26:36 -070032
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070033#include <linux/module.h>
Stephen Warren72de2b12011-01-28 14:26:36 -070034#include <linux/platform_device.h>
35#include <linux/slab.h>
Stephen Warren6e267642011-01-28 14:26:37 -070036#include <linux/gpio.h>
37
Stephen Warren4651d552011-04-12 11:28:59 -060038#include <mach/tegra_wm8903_pdata.h>
Stephen Warren72de2b12011-01-28 14:26:36 -070039
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070040#include <sound/core.h>
Stephen Warrenf7d3e402011-02-03 13:56:13 -070041#include <sound/jack.h>
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070042#include <sound/pcm.h>
43#include <sound/pcm_params.h>
44#include <sound/soc.h>
45
Stephen Warren41b5f9b2011-02-10 15:37:16 -070046#include "../codecs/wm8903.h"
47
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070048#include "tegra_das.h"
49#include "tegra_i2s.h"
50#include "tegra_pcm.h"
51#include "tegra_asoc_utils.h"
52
Stephen Warren7b33af22011-04-12 11:29:00 -060053#define DRV_NAME "tegra-snd-wm8903"
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070054
Stephen Warrenbf1b1322011-02-10 15:37:18 -070055#define GPIO_SPKR_EN BIT(0)
Stephen Warren773b1d32011-04-12 11:40:39 -060056#define GPIO_HP_MUTE BIT(1)
57#define GPIO_INT_MIC_EN BIT(2)
58#define GPIO_EXT_MIC_EN BIT(3)
Stephen Warrenbf1b1322011-02-10 15:37:18 -070059
Stephen Warrendc0a50af2011-04-12 11:40:36 -060060struct tegra_wm8903 {
Stephen Warrend64e57c2011-01-28 14:26:40 -070061 struct tegra_asoc_utils_data util_data;
Stephen Warren4651d552011-04-12 11:28:59 -060062 struct tegra_wm8903_platform_data *pdata;
Stephen Warrenbf1b1322011-02-10 15:37:18 -070063 int gpio_requested;
Stephen Warren72de2b12011-01-28 14:26:36 -070064};
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070065
Stephen Warrendc0a50af2011-04-12 11:40:36 -060066static int tegra_wm8903_hw_params(struct snd_pcm_substream *substream,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070067 struct snd_pcm_hw_params *params)
68{
69 struct snd_soc_pcm_runtime *rtd = substream->private_data;
70 struct snd_soc_dai *codec_dai = rtd->codec_dai;
71 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warrenc244d472011-01-28 14:26:39 -070072 struct snd_soc_codec *codec = rtd->codec;
73 struct snd_soc_card *card = codec->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -060074 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070075 int srate, mclk, mclk_change;
76 int err;
77
78 srate = params_rate(params);
79 switch (srate) {
80 case 64000:
81 case 88200:
82 case 96000:
83 mclk = 128 * srate;
84 break;
85 default:
86 mclk = 256 * srate;
87 break;
88 }
89 /* FIXME: Codec only requires >= 3MHz if OSR==0 */
90 while (mclk < 6000000)
91 mclk *= 2;
92
Stephen Warrendc0a50af2011-04-12 11:40:36 -060093 err = tegra_asoc_utils_set_rate(&machine->util_data, srate, mclk,
Stephen Warrend64e57c2011-01-28 14:26:40 -070094 &mclk_change);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070095 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -070096 dev_err(card->dev, "Can't configure clocks\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070097 return err;
98 }
99
100 err = snd_soc_dai_set_fmt(codec_dai,
101 SND_SOC_DAIFMT_I2S |
102 SND_SOC_DAIFMT_NB_NF |
103 SND_SOC_DAIFMT_CBS_CFS);
104 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700105 dev_err(card->dev, "codec_dai fmt not set\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700106 return err;
107 }
108
109 err = snd_soc_dai_set_fmt(cpu_dai,
110 SND_SOC_DAIFMT_I2S |
111 SND_SOC_DAIFMT_NB_NF |
112 SND_SOC_DAIFMT_CBS_CFS);
113 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700114 dev_err(card->dev, "cpu_dai fmt not set\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700115 return err;
116 }
117
118 if (mclk_change) {
Stephen Warrenbc72fe02011-01-28 14:26:38 -0700119 err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
120 SND_SOC_CLOCK_IN);
121 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700122 dev_err(card->dev, "codec_dai clock not set\n");
Stephen Warrenbc72fe02011-01-28 14:26:38 -0700123 return err;
124 }
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700125 }
126
127 return 0;
128}
129
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600130static struct snd_soc_ops tegra_wm8903_ops = {
131 .hw_params = tegra_wm8903_hw_params,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700132};
133
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600134static struct snd_soc_jack tegra_wm8903_hp_jack;
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700135
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600136static struct snd_soc_jack_pin tegra_wm8903_hp_jack_pins[] = {
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700137 {
138 .pin = "Headphone Jack",
139 .mask = SND_JACK_HEADPHONE,
140 },
141};
142
Stephen Warren3eb25f92011-04-12 11:40:38 -0600143static struct snd_soc_jack_gpio tegra_wm8903_hp_jack_gpio = {
144 .name = "headphone detect",
145 .report = SND_JACK_HEADPHONE,
146 .debounce_time = 150,
147 .invert = 1,
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700148};
149
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600150static struct snd_soc_jack tegra_wm8903_mic_jack;
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700151
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600152static struct snd_soc_jack_pin tegra_wm8903_mic_jack_pins[] = {
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700153 {
154 .pin = "Mic Jack",
155 .mask = SND_JACK_MICROPHONE,
156 },
157};
158
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600159static int tegra_wm8903_event_int_spk(struct snd_soc_dapm_widget *w,
Stephen Warren6e267642011-01-28 14:26:37 -0700160 struct snd_kcontrol *k, int event)
161{
162 struct snd_soc_codec *codec = w->codec;
163 struct snd_soc_card *card = codec->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600164 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
165 struct tegra_wm8903_platform_data *pdata = machine->pdata;
Stephen Warren6e267642011-01-28 14:26:37 -0700166
Stephen Warren773b1d32011-04-12 11:40:39 -0600167 if (!(machine->gpio_requested & GPIO_SPKR_EN))
168 return 0;
169
Stephen Warren6e267642011-01-28 14:26:37 -0700170 gpio_set_value_cansleep(pdata->gpio_spkr_en,
Stephen Warrenf9eabc32011-01-31 11:00:17 -0700171 SND_SOC_DAPM_EVENT_ON(event));
Stephen Warren6e267642011-01-28 14:26:37 -0700172
173 return 0;
174}
175
Stephen Warren773b1d32011-04-12 11:40:39 -0600176static int tegra_wm8903_event_hp(struct snd_soc_dapm_widget *w,
177 struct snd_kcontrol *k, int event)
178{
179 struct snd_soc_codec *codec = w->codec;
180 struct snd_soc_card *card = codec->card;
181 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
182 struct tegra_wm8903_platform_data *pdata = machine->pdata;
183
184 if (!(machine->gpio_requested & GPIO_HP_MUTE))
185 return 0;
186
187 gpio_set_value_cansleep(pdata->gpio_hp_mute,
188 !SND_SOC_DAPM_EVENT_ON(event));
189
190 return 0;
191}
192
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600193static const struct snd_soc_dapm_widget tegra_wm8903_dapm_widgets[] = {
194 SND_SOC_DAPM_SPK("Int Spk", tegra_wm8903_event_int_spk),
Stephen Warren773b1d32011-04-12 11:40:39 -0600195 SND_SOC_DAPM_HP("Headphone Jack", tegra_wm8903_event_hp),
Stephen Warren62ffac42011-01-13 15:22:08 -0700196 SND_SOC_DAPM_MIC("Mic Jack", NULL),
197};
198
199static const struct snd_soc_dapm_route harmony_audio_map[] = {
200 {"Headphone Jack", NULL, "HPOUTR"},
201 {"Headphone Jack", NULL, "HPOUTL"},
Stephen Warren6e267642011-01-28 14:26:37 -0700202 {"Int Spk", NULL, "ROP"},
203 {"Int Spk", NULL, "RON"},
204 {"Int Spk", NULL, "LOP"},
205 {"Int Spk", NULL, "LON"},
Stephen Warren62ffac42011-01-13 15:22:08 -0700206 {"Mic Bias", NULL, "Mic Jack"},
207 {"IN1L", NULL, "Mic Bias"},
208};
209
Stephen Warren773b1d32011-04-12 11:40:39 -0600210static const struct snd_soc_dapm_route seaboard_audio_map[] = {
211 {"Headphone Jack", NULL, "HPOUTR"},
212 {"Headphone Jack", NULL, "HPOUTL"},
213 {"Int Spk", NULL, "ROP"},
214 {"Int Spk", NULL, "RON"},
215 {"Int Spk", NULL, "LOP"},
216 {"Int Spk", NULL, "LON"},
217 {"Mic Bias", NULL, "Mic Jack"},
218 {"IN1R", NULL, "Mic Bias"},
219};
220
221static const struct snd_soc_dapm_route kaen_audio_map[] = {
222 {"Headphone Jack", NULL, "HPOUTR"},
223 {"Headphone Jack", NULL, "HPOUTL"},
224 {"Int Spk", NULL, "ROP"},
225 {"Int Spk", NULL, "RON"},
226 {"Int Spk", NULL, "LOP"},
227 {"Int Spk", NULL, "LON"},
228 {"Mic Bias", NULL, "Mic Jack"},
229 {"IN2R", NULL, "Mic Bias"},
230};
231
232static const struct snd_soc_dapm_route aebl_audio_map[] = {
233 {"Headphone Jack", NULL, "HPOUTR"},
234 {"Headphone Jack", NULL, "HPOUTL"},
235 {"Int Spk", NULL, "LINEOUTR"},
236 {"Int Spk", NULL, "LINEOUTL"},
237 {"Mic Bias", NULL, "Mic Jack"},
238 {"IN1R", NULL, "Mic Bias"},
239};
240
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600241static const struct snd_kcontrol_new tegra_wm8903_controls[] = {
Stephen Warren3d8bc392011-02-03 13:56:14 -0700242 SOC_DAPM_PIN_SWITCH("Int Spk"),
243};
244
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600245static int tegra_wm8903_init(struct snd_soc_pcm_runtime *rtd)
Stephen Warren62ffac42011-01-13 15:22:08 -0700246{
247 struct snd_soc_codec *codec = rtd->codec;
248 struct snd_soc_dapm_context *dapm = &codec->dapm;
Stephen Warren6e267642011-01-28 14:26:37 -0700249 struct snd_soc_card *card = codec->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600250 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
251 struct tegra_wm8903_platform_data *pdata = machine->pdata;
Stephen Warren6e267642011-01-28 14:26:37 -0700252 int ret;
253
Stephen Warren773b1d32011-04-12 11:40:39 -0600254 if (gpio_is_valid(pdata->gpio_spkr_en)) {
255 ret = gpio_request(pdata->gpio_spkr_en, "spkr_en");
256 if (ret) {
257 dev_err(card->dev, "cannot get spkr_en gpio\n");
258 return ret;
259 }
260 machine->gpio_requested |= GPIO_SPKR_EN;
261
262 gpio_direction_output(pdata->gpio_spkr_en, 0);
Stephen Warren6e267642011-01-28 14:26:37 -0700263 }
Stephen Warren6e267642011-01-28 14:26:37 -0700264
Stephen Warren773b1d32011-04-12 11:40:39 -0600265 if (gpio_is_valid(pdata->gpio_hp_mute)) {
266 ret = gpio_request(pdata->gpio_hp_mute, "hp_mute");
267 if (ret) {
268 dev_err(card->dev, "cannot get hp_mute gpio\n");
269 return ret;
270 }
271 machine->gpio_requested |= GPIO_HP_MUTE;
Stephen Warren62ffac42011-01-13 15:22:08 -0700272
Stephen Warren773b1d32011-04-12 11:40:39 -0600273 gpio_direction_output(pdata->gpio_hp_mute, 0);
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700274 }
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700275
Stephen Warren773b1d32011-04-12 11:40:39 -0600276 if (gpio_is_valid(pdata->gpio_int_mic_en)) {
277 ret = gpio_request(pdata->gpio_int_mic_en, "int_mic_en");
278 if (ret) {
279 dev_err(card->dev, "cannot get int_mic_en gpio\n");
280 return ret;
281 }
282 machine->gpio_requested |= GPIO_INT_MIC_EN;
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700283
Stephen Warren773b1d32011-04-12 11:40:39 -0600284 /* Disable int mic; enable signal is active-high */
285 gpio_direction_output(pdata->gpio_int_mic_en, 0);
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700286 }
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700287
Stephen Warren773b1d32011-04-12 11:40:39 -0600288 if (gpio_is_valid(pdata->gpio_ext_mic_en)) {
289 ret = gpio_request(pdata->gpio_ext_mic_en, "ext_mic_en");
290 if (ret) {
291 dev_err(card->dev, "cannot get ext_mic_en gpio\n");
292 return ret;
293 }
294 machine->gpio_requested |= GPIO_EXT_MIC_EN;
295
296 /* Enable ext mic; enable signal is active-low */
297 gpio_direction_output(pdata->gpio_ext_mic_en, 0);
298 }
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700299
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600300 ret = snd_soc_add_controls(codec, tegra_wm8903_controls,
301 ARRAY_SIZE(tegra_wm8903_controls));
Stephen Warren3d8bc392011-02-03 13:56:14 -0700302 if (ret < 0)
303 return ret;
304
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600305 snd_soc_dapm_new_controls(dapm, tegra_wm8903_dapm_widgets,
306 ARRAY_SIZE(tegra_wm8903_dapm_widgets));
Stephen Warren62ffac42011-01-13 15:22:08 -0700307
Stephen Warren773b1d32011-04-12 11:40:39 -0600308 if (machine_is_harmony() || machine_is_ventana()) {
309 snd_soc_dapm_add_routes(dapm, harmony_audio_map,
310 ARRAY_SIZE(harmony_audio_map));
311 } else if (machine_is_seaboard()) {
312 snd_soc_dapm_add_routes(dapm, seaboard_audio_map,
313 ARRAY_SIZE(seaboard_audio_map));
314 } else if (machine_is_kaen()) {
315 snd_soc_dapm_add_routes(dapm, kaen_audio_map,
316 ARRAY_SIZE(kaen_audio_map));
317 } else {
318 snd_soc_dapm_add_routes(dapm, aebl_audio_map,
319 ARRAY_SIZE(aebl_audio_map));
320 }
Stephen Warren62ffac42011-01-13 15:22:08 -0700321
Stephen Warren773b1d32011-04-12 11:40:39 -0600322 if (gpio_is_valid(pdata->gpio_hp_det)) {
323 tegra_wm8903_hp_jack_gpio.gpio = pdata->gpio_hp_det;
324 snd_soc_jack_new(codec, "Headphone Jack", SND_JACK_HEADPHONE,
325 &tegra_wm8903_hp_jack);
326 snd_soc_jack_add_pins(&tegra_wm8903_hp_jack,
327 ARRAY_SIZE(tegra_wm8903_hp_jack_pins),
328 tegra_wm8903_hp_jack_pins);
329 snd_soc_jack_add_gpios(&tegra_wm8903_hp_jack,
330 1,
331 &tegra_wm8903_hp_jack_gpio);
332 }
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700333
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700334 snd_soc_jack_new(codec, "Mic Jack", SND_JACK_MICROPHONE,
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600335 &tegra_wm8903_mic_jack);
336 snd_soc_jack_add_pins(&tegra_wm8903_mic_jack,
337 ARRAY_SIZE(tegra_wm8903_mic_jack_pins),
338 tegra_wm8903_mic_jack_pins);
339 wm8903_mic_detect(codec, &tegra_wm8903_mic_jack, SND_JACK_MICROPHONE,
340 0);
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700341
342 snd_soc_dapm_force_enable_pin(dapm, "Mic Bias");
343
Stephen Warren773b1d32011-04-12 11:40:39 -0600344 /* FIXME: Calculate automatically based on DAPM routes? */
345 if (!machine_is_harmony() && !machine_is_ventana())
346 snd_soc_dapm_nc_pin(dapm, "IN1L");
347 if (!machine_is_seaboard() && !machine_is_aebl())
348 snd_soc_dapm_nc_pin(dapm, "IN1R");
349 snd_soc_dapm_nc_pin(dapm, "IN2L");
350 if (!machine_is_kaen())
351 snd_soc_dapm_nc_pin(dapm, "IN2R");
Stephen Warren0d6cdca2011-02-10 15:37:17 -0700352 snd_soc_dapm_nc_pin(dapm, "IN3L");
353 snd_soc_dapm_nc_pin(dapm, "IN3R");
Stephen Warren773b1d32011-04-12 11:40:39 -0600354
355 if (machine_is_aebl()) {
356 snd_soc_dapm_nc_pin(dapm, "LON");
357 snd_soc_dapm_nc_pin(dapm, "RON");
358 snd_soc_dapm_nc_pin(dapm, "ROP");
359 snd_soc_dapm_nc_pin(dapm, "LOP");
360 } else {
361 snd_soc_dapm_nc_pin(dapm, "LINEOUTR");
362 snd_soc_dapm_nc_pin(dapm, "LINEOUTL");
363 }
Stephen Warren0d6cdca2011-02-10 15:37:17 -0700364
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700365 snd_soc_dapm_sync(dapm);
366
Stephen Warren62ffac42011-01-13 15:22:08 -0700367 return 0;
368}
369
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600370static struct snd_soc_dai_link tegra_wm8903_dai = {
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700371 .name = "WM8903",
372 .stream_name = "WM8903 PCM",
Mark Brown4b592c92011-02-09 13:47:06 +0000373 .codec_name = "wm8903.0-001a",
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700374 .platform_name = "tegra-pcm-audio",
375 .cpu_dai_name = "tegra-i2s.0",
376 .codec_dai_name = "wm8903-hifi",
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600377 .init = tegra_wm8903_init,
378 .ops = &tegra_wm8903_ops,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700379};
380
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600381static struct snd_soc_card snd_soc_tegra_wm8903 = {
382 .name = "tegra-wm8903",
383 .dai_link = &tegra_wm8903_dai,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700384 .num_links = 1,
385};
386
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600387static __devinit int tegra_wm8903_driver_probe(struct platform_device *pdev)
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700388{
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600389 struct snd_soc_card *card = &snd_soc_tegra_wm8903;
390 struct tegra_wm8903 *machine;
Stephen Warren4651d552011-04-12 11:28:59 -0600391 struct tegra_wm8903_platform_data *pdata;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700392 int ret;
393
Stephen Warren773b1d32011-04-12 11:40:39 -0600394 if (!machine_is_harmony() && !machine_is_ventana() &&
395 !machine_is_seaboard() && !machine_is_kaen() &&
396 !machine_is_aebl()) {
397 dev_err(&pdev->dev, "Not running on a supported board!\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700398 return -ENODEV;
399 }
400
Stephen Warren6e267642011-01-28 14:26:37 -0700401 pdata = pdev->dev.platform_data;
402 if (!pdata) {
Stephen Warren773b1d32011-04-12 11:40:39 -0600403 dev_err(&pdev->dev, "No platform data supplied\n");
Stephen Warren6e267642011-01-28 14:26:37 -0700404 return -EINVAL;
405 }
406
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600407 machine = kzalloc(sizeof(struct tegra_wm8903), GFP_KERNEL);
408 if (!machine) {
409 dev_err(&pdev->dev, "Can't allocate tegra_wm8903 struct\n");
Stephen Warren72de2b12011-01-28 14:26:36 -0700410 return -ENOMEM;
411 }
412
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600413 machine->pdata = pdata;
Stephen Warren6e267642011-01-28 14:26:37 -0700414
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600415 ret = tegra_asoc_utils_init(&machine->util_data, &pdev->dev);
Stephen Warren72de2b12011-01-28 14:26:36 -0700416 if (ret)
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600417 goto err_free_machine;
Stephen Warren72de2b12011-01-28 14:26:36 -0700418
419 card->dev = &pdev->dev;
420 platform_set_drvdata(pdev, card);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600421 snd_soc_card_set_drvdata(card, machine);
Stephen Warren72de2b12011-01-28 14:26:36 -0700422
423 ret = snd_soc_register_card(card);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700424 if (ret) {
Stephen Warren72de2b12011-01-28 14:26:36 -0700425 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n",
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700426 ret);
Stephen Warren72de2b12011-01-28 14:26:36 -0700427 goto err_clear_drvdata;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700428 }
429
430 return 0;
431
Stephen Warren72de2b12011-01-28 14:26:36 -0700432err_clear_drvdata:
433 snd_soc_card_set_drvdata(card, NULL);
434 platform_set_drvdata(pdev, NULL);
435 card->dev = NULL;
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600436 tegra_asoc_utils_fini(&machine->util_data);
437err_free_machine:
438 kfree(machine);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700439 return ret;
440}
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700441
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600442static int __devexit tegra_wm8903_driver_remove(struct platform_device *pdev)
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700443{
Stephen Warren72de2b12011-01-28 14:26:36 -0700444 struct snd_soc_card *card = platform_get_drvdata(pdev);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600445 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
446 struct tegra_wm8903_platform_data *pdata = machine->pdata;
Stephen Warren72de2b12011-01-28 14:26:36 -0700447
448 snd_soc_unregister_card(card);
449
450 snd_soc_card_set_drvdata(card, NULL);
451 platform_set_drvdata(pdev, NULL);
452 card->dev = NULL;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700453
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600454 tegra_asoc_utils_fini(&machine->util_data);
Stephen Warren72de2b12011-01-28 14:26:36 -0700455
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600456 if (machine->gpio_requested & GPIO_EXT_MIC_EN)
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700457 gpio_free(pdata->gpio_ext_mic_en);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600458 if (machine->gpio_requested & GPIO_INT_MIC_EN)
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700459 gpio_free(pdata->gpio_int_mic_en);
Stephen Warren773b1d32011-04-12 11:40:39 -0600460 if (machine->gpio_requested & GPIO_HP_MUTE)
461 gpio_free(pdata->gpio_hp_mute);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600462 if (machine->gpio_requested & GPIO_SPKR_EN)
Stephen Warren6e267642011-01-28 14:26:37 -0700463 gpio_free(pdata->gpio_spkr_en);
464
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600465 kfree(machine);
Stephen Warren72de2b12011-01-28 14:26:36 -0700466
467 return 0;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700468}
Stephen Warren72de2b12011-01-28 14:26:36 -0700469
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600470static struct platform_driver tegra_wm8903_driver = {
Stephen Warren72de2b12011-01-28 14:26:36 -0700471 .driver = {
472 .name = DRV_NAME,
473 .owner = THIS_MODULE,
Stephen Warrendeb26072011-04-05 19:35:30 -0600474 .pm = &snd_soc_pm_ops,
Stephen Warren72de2b12011-01-28 14:26:36 -0700475 },
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600476 .probe = tegra_wm8903_driver_probe,
477 .remove = __devexit_p(tegra_wm8903_driver_remove),
Stephen Warren72de2b12011-01-28 14:26:36 -0700478};
479
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600480static int __init tegra_wm8903_modinit(void)
Stephen Warren72de2b12011-01-28 14:26:36 -0700481{
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600482 return platform_driver_register(&tegra_wm8903_driver);
Stephen Warren72de2b12011-01-28 14:26:36 -0700483}
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600484module_init(tegra_wm8903_modinit);
Stephen Warren72de2b12011-01-28 14:26:36 -0700485
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600486static void __exit tegra_wm8903_modexit(void)
Stephen Warren72de2b12011-01-28 14:26:36 -0700487{
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600488 platform_driver_unregister(&tegra_wm8903_driver);
Stephen Warren72de2b12011-01-28 14:26:36 -0700489}
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600490module_exit(tegra_wm8903_modexit);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700491
492MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600493MODULE_DESCRIPTION("Tegra+WM8903 machine ASoC driver");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700494MODULE_LICENSE("GPL");
Stephen Warren8eb34202011-02-10 15:37:19 -0700495MODULE_ALIAS("platform:" DRV_NAME);