blob: 566655e23b7d18063f8e2e337647eec023fead2a [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>
Stephen Warren07cdf362011-12-12 15:55:36 -070037#include <linux/of_gpio.h>
Stephen Warren6e267642011-01-28 14:26:37 -070038
Stephen Warren4651d552011-04-12 11:28:59 -060039#include <mach/tegra_wm8903_pdata.h>
Stephen Warren72de2b12011-01-28 14:26:36 -070040
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070041#include <sound/core.h>
Stephen Warrenf7d3e402011-02-03 13:56:13 -070042#include <sound/jack.h>
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070043#include <sound/pcm.h>
44#include <sound/pcm_params.h>
45#include <sound/soc.h>
46
Stephen Warren41b5f9b2011-02-10 15:37:16 -070047#include "../codecs/wm8903.h"
48
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070049#include "tegra_das.h"
50#include "tegra_i2s.h"
51#include "tegra_pcm.h"
52#include "tegra_asoc_utils.h"
53
Stephen Warren7b33af22011-04-12 11:29:00 -060054#define DRV_NAME "tegra-snd-wm8903"
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070055
Stephen Warrenbf1b1322011-02-10 15:37:18 -070056#define GPIO_SPKR_EN BIT(0)
Stephen Warren773b1d32011-04-12 11:40:39 -060057#define GPIO_HP_MUTE BIT(1)
58#define GPIO_INT_MIC_EN BIT(2)
59#define GPIO_EXT_MIC_EN BIT(3)
Stephen Warren29591ed2011-08-04 16:44:43 -060060#define GPIO_HP_DET BIT(4)
Stephen Warrenbf1b1322011-02-10 15:37:18 -070061
Stephen Warrendc0a50af2011-04-12 11:40:36 -060062struct tegra_wm8903 {
Stephen Warren07cdf362011-12-12 15:55:36 -070063 struct tegra_wm8903_platform_data pdata;
64 struct platform_device *pcm_dev;
Stephen Warrend64e57c2011-01-28 14:26:40 -070065 struct tegra_asoc_utils_data util_data;
Stephen Warrenbf1b1322011-02-10 15:37:18 -070066 int gpio_requested;
Stephen Warren72de2b12011-01-28 14:26:36 -070067};
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070068
Stephen Warrendc0a50af2011-04-12 11:40:36 -060069static int tegra_wm8903_hw_params(struct snd_pcm_substream *substream,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070070 struct snd_pcm_hw_params *params)
71{
72 struct snd_soc_pcm_runtime *rtd = substream->private_data;
73 struct snd_soc_dai *codec_dai = rtd->codec_dai;
74 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warrenc244d472011-01-28 14:26:39 -070075 struct snd_soc_codec *codec = rtd->codec;
76 struct snd_soc_card *card = codec->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -060077 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
Stephen Warren07541392011-04-19 15:25:09 -060078 int srate, mclk;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070079 int err;
80
81 srate = params_rate(params);
82 switch (srate) {
83 case 64000:
84 case 88200:
85 case 96000:
86 mclk = 128 * srate;
87 break;
88 default:
89 mclk = 256 * srate;
90 break;
91 }
92 /* FIXME: Codec only requires >= 3MHz if OSR==0 */
93 while (mclk < 6000000)
94 mclk *= 2;
95
Stephen Warren07541392011-04-19 15:25:09 -060096 err = tegra_asoc_utils_set_rate(&machine->util_data, srate, mclk);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070097 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -070098 dev_err(card->dev, "Can't configure clocks\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070099 return err;
100 }
101
102 err = snd_soc_dai_set_fmt(codec_dai,
103 SND_SOC_DAIFMT_I2S |
104 SND_SOC_DAIFMT_NB_NF |
105 SND_SOC_DAIFMT_CBS_CFS);
106 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700107 dev_err(card->dev, "codec_dai fmt not set\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700108 return err;
109 }
110
111 err = snd_soc_dai_set_fmt(cpu_dai,
112 SND_SOC_DAIFMT_I2S |
113 SND_SOC_DAIFMT_NB_NF |
114 SND_SOC_DAIFMT_CBS_CFS);
115 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700116 dev_err(card->dev, "cpu_dai fmt not set\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700117 return err;
118 }
119
Stephen Warren07541392011-04-19 15:25:09 -0600120 err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
121 SND_SOC_CLOCK_IN);
122 if (err < 0) {
123 dev_err(card->dev, "codec_dai clock not set\n");
124 return err;
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{
Stephen Warrena32955d2011-04-19 15:25:10 -0600162 struct snd_soc_dapm_context *dapm = w->dapm;
163 struct snd_soc_card *card = dapm->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600164 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
Stephen Warren07cdf362011-12-12 15:55:36 -0700165 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{
Stephen Warrena32955d2011-04-19 15:25:10 -0600179 struct snd_soc_dapm_context *dapm = w->dapm;
180 struct snd_soc_card *card = dapm->card;
Stephen Warren773b1d32011-04-12 11:40:39 -0600181 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
Stephen Warren07cdf362011-12-12 15:55:36 -0700182 struct tegra_wm8903_platform_data *pdata = &machine->pdata;
Stephen Warren773b1d32011-04-12 11:40:39 -0600183
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"},
Mark Brown5032dc32011-11-27 12:20:08 +0000206 {"Mic Jack", NULL, "MICBIAS"},
207 {"IN1L", NULL, "Mic Jack"},
Stephen Warren62ffac42011-01-13 15:22:08 -0700208};
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"},
Mark Brown5032dc32011-11-27 12:20:08 +0000217 {"Mic Jack", NULL, "MICBIAS"},
218 {"IN1R", NULL, "Mic Jack"},
Stephen Warren773b1d32011-04-12 11:40:39 -0600219};
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"},
Mark Brown5032dc32011-11-27 12:20:08 +0000228 {"Mic Jack", NULL, "MICBIAS"},
229 {"IN2R", NULL, "Mic Jack"},
Stephen Warren773b1d32011-04-12 11:40:39 -0600230};
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"},
Mark Brown5032dc32011-11-27 12:20:08 +0000237 {"Mic Jack", NULL, "MICBIAS"},
238 {"IN1R", NULL, "Mic Jack"},
Stephen Warren773b1d32011-04-12 11:40:39 -0600239};
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);
Stephen Warren07cdf362011-12-12 15:55:36 -0700251 struct tegra_wm8903_platform_data *pdata = &machine->pdata;
252 struct device_node *np = card->dev->of_node;
Stephen Warren6e267642011-01-28 14:26:37 -0700253 int ret;
254
Stephen Warren07cdf362011-12-12 15:55:36 -0700255 if (card->dev->platform_data) {
256 memcpy(pdata, card->dev->platform_data, sizeof(*pdata));
257 } else if (np) {
258 /*
259 * This part must be in init() rather than probe() in order to
260 * guarantee that the WM8903 has been probed, and hence its
261 * GPIO controller registered, which is a pre-condition for
262 * of_get_named_gpio() to be able to map the phandles in the
263 * properties to the controller node. Given this, all
264 * pdata handling is in init() for consistency.
265 */
266 pdata->gpio_spkr_en = of_get_named_gpio(np,
267 "nvidia,spkr-en-gpios", 0);
268 pdata->gpio_hp_mute = of_get_named_gpio(np,
269 "nvidia,hp-mute-gpios", 0);
270 pdata->gpio_hp_det = of_get_named_gpio(np,
271 "nvidia,hp-det-gpios", 0);
272 pdata->gpio_int_mic_en = of_get_named_gpio(np,
273 "nvidia,int-mic-en-gpios", 0);
274 pdata->gpio_ext_mic_en = of_get_named_gpio(np,
275 "nvidia,ext-mic-en-gpios", 0);
276 } else {
277 dev_err(card->dev, "No platform data supplied\n");
278 return -EINVAL;
279 }
280
Stephen Warren773b1d32011-04-12 11:40:39 -0600281 if (gpio_is_valid(pdata->gpio_spkr_en)) {
282 ret = gpio_request(pdata->gpio_spkr_en, "spkr_en");
283 if (ret) {
284 dev_err(card->dev, "cannot get spkr_en gpio\n");
285 return ret;
286 }
287 machine->gpio_requested |= GPIO_SPKR_EN;
288
289 gpio_direction_output(pdata->gpio_spkr_en, 0);
Stephen Warren6e267642011-01-28 14:26:37 -0700290 }
Stephen Warren6e267642011-01-28 14:26:37 -0700291
Stephen Warren773b1d32011-04-12 11:40:39 -0600292 if (gpio_is_valid(pdata->gpio_hp_mute)) {
293 ret = gpio_request(pdata->gpio_hp_mute, "hp_mute");
294 if (ret) {
295 dev_err(card->dev, "cannot get hp_mute gpio\n");
296 return ret;
297 }
298 machine->gpio_requested |= GPIO_HP_MUTE;
Stephen Warren62ffac42011-01-13 15:22:08 -0700299
Stephen Warrena5fe6be2011-05-26 12:46:50 -0600300 gpio_direction_output(pdata->gpio_hp_mute, 1);
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700301 }
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700302
Stephen Warren773b1d32011-04-12 11:40:39 -0600303 if (gpio_is_valid(pdata->gpio_int_mic_en)) {
304 ret = gpio_request(pdata->gpio_int_mic_en, "int_mic_en");
305 if (ret) {
306 dev_err(card->dev, "cannot get int_mic_en gpio\n");
307 return ret;
308 }
309 machine->gpio_requested |= GPIO_INT_MIC_EN;
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700310
Stephen Warren773b1d32011-04-12 11:40:39 -0600311 /* Disable int mic; enable signal is active-high */
312 gpio_direction_output(pdata->gpio_int_mic_en, 0);
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700313 }
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700314
Stephen Warren773b1d32011-04-12 11:40:39 -0600315 if (gpio_is_valid(pdata->gpio_ext_mic_en)) {
316 ret = gpio_request(pdata->gpio_ext_mic_en, "ext_mic_en");
317 if (ret) {
318 dev_err(card->dev, "cannot get ext_mic_en gpio\n");
319 return ret;
320 }
321 machine->gpio_requested |= GPIO_EXT_MIC_EN;
322
323 /* Enable ext mic; enable signal is active-low */
324 gpio_direction_output(pdata->gpio_ext_mic_en, 0);
325 }
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700326
Stephen Warren773b1d32011-04-12 11:40:39 -0600327 if (gpio_is_valid(pdata->gpio_hp_det)) {
328 tegra_wm8903_hp_jack_gpio.gpio = pdata->gpio_hp_det;
329 snd_soc_jack_new(codec, "Headphone Jack", SND_JACK_HEADPHONE,
330 &tegra_wm8903_hp_jack);
331 snd_soc_jack_add_pins(&tegra_wm8903_hp_jack,
332 ARRAY_SIZE(tegra_wm8903_hp_jack_pins),
333 tegra_wm8903_hp_jack_pins);
334 snd_soc_jack_add_gpios(&tegra_wm8903_hp_jack,
335 1,
336 &tegra_wm8903_hp_jack_gpio);
Stephen Warren29591ed2011-08-04 16:44:43 -0600337 machine->gpio_requested |= GPIO_HP_DET;
Stephen Warren773b1d32011-04-12 11:40:39 -0600338 }
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700339
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700340 snd_soc_jack_new(codec, "Mic Jack", SND_JACK_MICROPHONE,
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600341 &tegra_wm8903_mic_jack);
342 snd_soc_jack_add_pins(&tegra_wm8903_mic_jack,
343 ARRAY_SIZE(tegra_wm8903_mic_jack_pins),
344 tegra_wm8903_mic_jack_pins);
345 wm8903_mic_detect(codec, &tegra_wm8903_mic_jack, SND_JACK_MICROPHONE,
346 0);
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700347
Mark Brown5032dc32011-11-27 12:20:08 +0000348 snd_soc_dapm_force_enable_pin(dapm, "MICBIAS");
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700349
Stephen Warren62ffac42011-01-13 15:22:08 -0700350 return 0;
351}
352
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600353static struct snd_soc_dai_link tegra_wm8903_dai = {
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700354 .name = "WM8903",
355 .stream_name = "WM8903 PCM",
Mark Brown4b592c92011-02-09 13:47:06 +0000356 .codec_name = "wm8903.0-001a",
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700357 .platform_name = "tegra-pcm-audio",
358 .cpu_dai_name = "tegra-i2s.0",
359 .codec_dai_name = "wm8903-hifi",
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600360 .init = tegra_wm8903_init,
361 .ops = &tegra_wm8903_ops,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700362};
363
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600364static struct snd_soc_card snd_soc_tegra_wm8903 = {
365 .name = "tegra-wm8903",
Axel Linb16eaf92011-12-22 21:23:01 +0800366 .owner = THIS_MODULE,
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600367 .dai_link = &tegra_wm8903_dai,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700368 .num_links = 1,
Stephen Warrendea8b6e2011-04-19 15:25:12 -0600369
370 .controls = tegra_wm8903_controls,
371 .num_controls = ARRAY_SIZE(tegra_wm8903_controls),
372 .dapm_widgets = tegra_wm8903_dapm_widgets,
373 .num_dapm_widgets = ARRAY_SIZE(tegra_wm8903_dapm_widgets),
Stephen Warren6e5fdba2011-11-23 12:42:05 -0700374 .fully_routed = true,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700375};
376
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600377static __devinit int tegra_wm8903_driver_probe(struct platform_device *pdev)
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700378{
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600379 struct snd_soc_card *card = &snd_soc_tegra_wm8903;
380 struct tegra_wm8903 *machine;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700381 int ret;
382
Stephen Warren07cdf362011-12-12 15:55:36 -0700383 if (!pdev->dev.platform_data && !pdev->dev.of_node) {
Stephen Warren773b1d32011-04-12 11:40:39 -0600384 dev_err(&pdev->dev, "No platform data supplied\n");
Stephen Warren6e267642011-01-28 14:26:37 -0700385 return -EINVAL;
386 }
387
Stephen Warrene4e4c182011-11-22 18:21:20 -0700388 machine = devm_kzalloc(&pdev->dev, sizeof(struct tegra_wm8903),
389 GFP_KERNEL);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600390 if (!machine) {
391 dev_err(&pdev->dev, "Can't allocate tegra_wm8903 struct\n");
Stephen Warrene4e4c182011-11-22 18:21:20 -0700392 ret = -ENOMEM;
393 goto err;
Stephen Warren72de2b12011-01-28 14:26:36 -0700394 }
Stephen Warren07cdf362011-12-12 15:55:36 -0700395 machine->pcm_dev = ERR_PTR(-EINVAL);
Stephen Warren72de2b12011-01-28 14:26:36 -0700396
397 card->dev = &pdev->dev;
398 platform_set_drvdata(pdev, card);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600399 snd_soc_card_set_drvdata(card, machine);
Stephen Warren72de2b12011-01-28 14:26:36 -0700400
Stephen Warren07cdf362011-12-12 15:55:36 -0700401 if (pdev->dev.of_node) {
402 ret = snd_soc_of_parse_card_name(card, "nvidia,model");
403 if (ret)
404 goto err;
405
406 ret = snd_soc_of_parse_audio_routing(card,
407 "nvidia,audio-routing");
408 if (ret)
409 goto err;
410
411 tegra_wm8903_dai.codec_name = NULL;
412 tegra_wm8903_dai.codec_of_node = of_parse_phandle(
413 pdev->dev.of_node, "nvidia,audio-codec", 0);
414 if (!tegra_wm8903_dai.codec_of_node) {
415 dev_err(&pdev->dev,
416 "Property 'nvidia,audio-codec' missing or invalid\n");
417 ret = -EINVAL;
418 goto err;
419 }
420
421 tegra_wm8903_dai.cpu_dai_name = NULL;
422 tegra_wm8903_dai.cpu_dai_of_node = of_parse_phandle(
423 pdev->dev.of_node, "nvidia,i2s-controller", 0);
424 if (!tegra_wm8903_dai.cpu_dai_of_node) {
425 dev_err(&pdev->dev,
426 "Property 'nvidia,i2s-controller' missing or invalid\n");
427 ret = -EINVAL;
428 goto err;
429 }
430
431 machine->pcm_dev = platform_device_register_simple(
432 "tegra-pcm-audio", -1, NULL, 0);
433 if (IS_ERR(machine->pcm_dev)) {
434 dev_err(&pdev->dev,
435 "Can't instantiate tegra-pcm-audio\n");
436 ret = PTR_ERR(machine->pcm_dev);
437 goto err;
438 }
Stephen Warrendea8b6e2011-04-19 15:25:12 -0600439 } else {
Stephen Warren07cdf362011-12-12 15:55:36 -0700440 if (machine_is_harmony()) {
441 card->dapm_routes = harmony_audio_map;
442 card->num_dapm_routes = ARRAY_SIZE(harmony_audio_map);
443 } else if (machine_is_seaboard()) {
444 card->dapm_routes = seaboard_audio_map;
445 card->num_dapm_routes = ARRAY_SIZE(seaboard_audio_map);
446 } else if (machine_is_kaen()) {
447 card->dapm_routes = kaen_audio_map;
448 card->num_dapm_routes = ARRAY_SIZE(kaen_audio_map);
449 } else {
450 card->dapm_routes = aebl_audio_map;
451 card->num_dapm_routes = ARRAY_SIZE(aebl_audio_map);
452 }
Stephen Warrendea8b6e2011-04-19 15:25:12 -0600453 }
454
Stephen Warren07cdf362011-12-12 15:55:36 -0700455 ret = tegra_asoc_utils_init(&machine->util_data, &pdev->dev);
456 if (ret)
457 goto err_unregister;
458
Stephen Warren72de2b12011-01-28 14:26:36 -0700459 ret = snd_soc_register_card(card);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700460 if (ret) {
Stephen Warren72de2b12011-01-28 14:26:36 -0700461 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n",
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700462 ret);
Stephen Warrenacb83032011-04-19 15:25:08 -0600463 goto err_fini_utils;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700464 }
465
466 return 0;
467
Stephen Warrenacb83032011-04-19 15:25:08 -0600468err_fini_utils:
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600469 tegra_asoc_utils_fini(&machine->util_data);
Stephen Warren07cdf362011-12-12 15:55:36 -0700470err_unregister:
471 if (!IS_ERR(machine->pcm_dev))
472 platform_device_unregister(machine->pcm_dev);
Stephen Warrene4e4c182011-11-22 18:21:20 -0700473err:
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700474 return ret;
475}
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700476
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600477static int __devexit tegra_wm8903_driver_remove(struct platform_device *pdev)
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700478{
Stephen Warren72de2b12011-01-28 14:26:36 -0700479 struct snd_soc_card *card = platform_get_drvdata(pdev);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600480 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
Stephen Warren07cdf362011-12-12 15:55:36 -0700481 struct tegra_wm8903_platform_data *pdata = &machine->pdata;
Stephen Warren72de2b12011-01-28 14:26:36 -0700482
Stephen Warren29591ed2011-08-04 16:44:43 -0600483 if (machine->gpio_requested & GPIO_HP_DET)
484 snd_soc_jack_free_gpios(&tegra_wm8903_hp_jack,
485 1,
486 &tegra_wm8903_hp_jack_gpio);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600487 if (machine->gpio_requested & GPIO_EXT_MIC_EN)
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700488 gpio_free(pdata->gpio_ext_mic_en);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600489 if (machine->gpio_requested & GPIO_INT_MIC_EN)
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700490 gpio_free(pdata->gpio_int_mic_en);
Stephen Warren773b1d32011-04-12 11:40:39 -0600491 if (machine->gpio_requested & GPIO_HP_MUTE)
492 gpio_free(pdata->gpio_hp_mute);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600493 if (machine->gpio_requested & GPIO_SPKR_EN)
Stephen Warren6e267642011-01-28 14:26:37 -0700494 gpio_free(pdata->gpio_spkr_en);
Stephen Warren29591ed2011-08-04 16:44:43 -0600495 machine->gpio_requested = 0;
496
497 snd_soc_unregister_card(card);
498
499 tegra_asoc_utils_fini(&machine->util_data);
Stephen Warren07cdf362011-12-12 15:55:36 -0700500 if (!IS_ERR(machine->pcm_dev))
501 platform_device_unregister(machine->pcm_dev);
Stephen Warren6e267642011-01-28 14:26:37 -0700502
Stephen Warren72de2b12011-01-28 14:26:36 -0700503 return 0;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700504}
Stephen Warren72de2b12011-01-28 14:26:36 -0700505
Stephen Warren07cdf362011-12-12 15:55:36 -0700506static const struct of_device_id tegra_wm8903_of_match[] __devinitconst = {
507 { .compatible = "nvidia,tegra-audio-wm8903", },
508 {},
509};
510
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600511static struct platform_driver tegra_wm8903_driver = {
Stephen Warren72de2b12011-01-28 14:26:36 -0700512 .driver = {
513 .name = DRV_NAME,
514 .owner = THIS_MODULE,
Stephen Warrendeb26072011-04-05 19:35:30 -0600515 .pm = &snd_soc_pm_ops,
Stephen Warren07cdf362011-12-12 15:55:36 -0700516 .of_match_table = tegra_wm8903_of_match,
Stephen Warren72de2b12011-01-28 14:26:36 -0700517 },
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600518 .probe = tegra_wm8903_driver_probe,
519 .remove = __devexit_p(tegra_wm8903_driver_remove),
Stephen Warren72de2b12011-01-28 14:26:36 -0700520};
Stephen Warrene4e4c182011-11-22 18:21:20 -0700521module_platform_driver(tegra_wm8903_driver);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700522
523MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600524MODULE_DESCRIPTION("Tegra+WM8903 machine ASoC driver");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700525MODULE_LICENSE("GPL");
Stephen Warren8eb34202011-02-10 15:37:19 -0700526MODULE_ALIAS("platform:" DRV_NAME);
Stephen Warren07cdf362011-12-12 15:55:36 -0700527MODULE_DEVICE_TABLE(of, tegra_wm8903_of_match);