blob: 2b3844322c408b4fa5a0e438bf8df90005ac744e [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)
56#define GPIO_INT_MIC_EN BIT(1)
57#define GPIO_EXT_MIC_EN BIT(2)
58
Stephen Warrendc0a50af2011-04-12 11:40:36 -060059struct tegra_wm8903 {
Stephen Warrend64e57c2011-01-28 14:26:40 -070060 struct tegra_asoc_utils_data util_data;
Stephen Warren4651d552011-04-12 11:28:59 -060061 struct tegra_wm8903_platform_data *pdata;
Stephen Warrenbf1b1322011-02-10 15:37:18 -070062 int gpio_requested;
Stephen Warren72de2b12011-01-28 14:26:36 -070063};
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070064
Stephen Warrendc0a50af2011-04-12 11:40:36 -060065static int tegra_wm8903_hw_params(struct snd_pcm_substream *substream,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070066 struct snd_pcm_hw_params *params)
67{
68 struct snd_soc_pcm_runtime *rtd = substream->private_data;
69 struct snd_soc_dai *codec_dai = rtd->codec_dai;
70 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warrenc244d472011-01-28 14:26:39 -070071 struct snd_soc_codec *codec = rtd->codec;
72 struct snd_soc_card *card = codec->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -060073 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070074 int srate, mclk, mclk_change;
75 int err;
76
77 srate = params_rate(params);
78 switch (srate) {
79 case 64000:
80 case 88200:
81 case 96000:
82 mclk = 128 * srate;
83 break;
84 default:
85 mclk = 256 * srate;
86 break;
87 }
88 /* FIXME: Codec only requires >= 3MHz if OSR==0 */
89 while (mclk < 6000000)
90 mclk *= 2;
91
Stephen Warrendc0a50af2011-04-12 11:40:36 -060092 err = tegra_asoc_utils_set_rate(&machine->util_data, srate, mclk,
Stephen Warrend64e57c2011-01-28 14:26:40 -070093 &mclk_change);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070094 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -070095 dev_err(card->dev, "Can't configure clocks\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -070096 return err;
97 }
98
99 err = snd_soc_dai_set_fmt(codec_dai,
100 SND_SOC_DAIFMT_I2S |
101 SND_SOC_DAIFMT_NB_NF |
102 SND_SOC_DAIFMT_CBS_CFS);
103 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700104 dev_err(card->dev, "codec_dai fmt not set\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700105 return err;
106 }
107
108 err = snd_soc_dai_set_fmt(cpu_dai,
109 SND_SOC_DAIFMT_I2S |
110 SND_SOC_DAIFMT_NB_NF |
111 SND_SOC_DAIFMT_CBS_CFS);
112 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700113 dev_err(card->dev, "cpu_dai fmt not set\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700114 return err;
115 }
116
117 if (mclk_change) {
Stephen Warrenbc72fe02011-01-28 14:26:38 -0700118 err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
119 SND_SOC_CLOCK_IN);
120 if (err < 0) {
Stephen Warrenc244d472011-01-28 14:26:39 -0700121 dev_err(card->dev, "codec_dai clock not set\n");
Stephen Warrenbc72fe02011-01-28 14:26:38 -0700122 return err;
123 }
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700124 }
125
126 return 0;
127}
128
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600129static struct snd_soc_ops tegra_wm8903_ops = {
130 .hw_params = tegra_wm8903_hw_params,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700131};
132
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600133static struct snd_soc_jack tegra_wm8903_hp_jack;
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700134
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600135static struct snd_soc_jack_pin tegra_wm8903_hp_jack_pins[] = {
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700136 {
137 .pin = "Headphone Jack",
138 .mask = SND_JACK_HEADPHONE,
139 },
140};
141
Stephen Warren3eb25f92011-04-12 11:40:38 -0600142static struct snd_soc_jack_gpio tegra_wm8903_hp_jack_gpio = {
143 .name = "headphone detect",
144 .report = SND_JACK_HEADPHONE,
145 .debounce_time = 150,
146 .invert = 1,
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700147};
148
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600149static struct snd_soc_jack tegra_wm8903_mic_jack;
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700150
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600151static struct snd_soc_jack_pin tegra_wm8903_mic_jack_pins[] = {
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700152 {
153 .pin = "Mic Jack",
154 .mask = SND_JACK_MICROPHONE,
155 },
156};
157
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600158static int tegra_wm8903_event_int_spk(struct snd_soc_dapm_widget *w,
Stephen Warren6e267642011-01-28 14:26:37 -0700159 struct snd_kcontrol *k, int event)
160{
161 struct snd_soc_codec *codec = w->codec;
162 struct snd_soc_card *card = codec->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600163 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
164 struct tegra_wm8903_platform_data *pdata = machine->pdata;
Stephen Warren6e267642011-01-28 14:26:37 -0700165
166 gpio_set_value_cansleep(pdata->gpio_spkr_en,
Stephen Warrenf9eabc32011-01-31 11:00:17 -0700167 SND_SOC_DAPM_EVENT_ON(event));
Stephen Warren6e267642011-01-28 14:26:37 -0700168
169 return 0;
170}
171
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600172static const struct snd_soc_dapm_widget tegra_wm8903_dapm_widgets[] = {
173 SND_SOC_DAPM_SPK("Int Spk", tegra_wm8903_event_int_spk),
Stephen Warren62ffac42011-01-13 15:22:08 -0700174 SND_SOC_DAPM_HP("Headphone Jack", NULL),
175 SND_SOC_DAPM_MIC("Mic Jack", NULL),
176};
177
178static const struct snd_soc_dapm_route harmony_audio_map[] = {
179 {"Headphone Jack", NULL, "HPOUTR"},
180 {"Headphone Jack", NULL, "HPOUTL"},
Stephen Warren6e267642011-01-28 14:26:37 -0700181 {"Int Spk", NULL, "ROP"},
182 {"Int Spk", NULL, "RON"},
183 {"Int Spk", NULL, "LOP"},
184 {"Int Spk", NULL, "LON"},
Stephen Warren62ffac42011-01-13 15:22:08 -0700185 {"Mic Bias", NULL, "Mic Jack"},
186 {"IN1L", NULL, "Mic Bias"},
187};
188
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600189static const struct snd_kcontrol_new tegra_wm8903_controls[] = {
Stephen Warren3d8bc392011-02-03 13:56:14 -0700190 SOC_DAPM_PIN_SWITCH("Int Spk"),
191};
192
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600193static int tegra_wm8903_init(struct snd_soc_pcm_runtime *rtd)
Stephen Warren62ffac42011-01-13 15:22:08 -0700194{
195 struct snd_soc_codec *codec = rtd->codec;
196 struct snd_soc_dapm_context *dapm = &codec->dapm;
Stephen Warren6e267642011-01-28 14:26:37 -0700197 struct snd_soc_card *card = codec->card;
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600198 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
199 struct tegra_wm8903_platform_data *pdata = machine->pdata;
Stephen Warren6e267642011-01-28 14:26:37 -0700200 int ret;
201
202 ret = gpio_request(pdata->gpio_spkr_en, "spkr_en");
203 if (ret) {
204 dev_err(card->dev, "cannot get spkr_en gpio\n");
205 return ret;
206 }
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600207 machine->gpio_requested |= GPIO_SPKR_EN;
Stephen Warren6e267642011-01-28 14:26:37 -0700208
209 gpio_direction_output(pdata->gpio_spkr_en, 0);
Stephen Warren62ffac42011-01-13 15:22:08 -0700210
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700211 ret = gpio_request(pdata->gpio_int_mic_en, "int_mic_en");
212 if (ret) {
213 dev_err(card->dev, "cannot get int_mic_en gpio\n");
214 return ret;
215 }
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600216 machine->gpio_requested |= GPIO_INT_MIC_EN;
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700217
218 /* Disable int mic; enable signal is active-high */
219 gpio_direction_output(pdata->gpio_int_mic_en, 0);
220
221 ret = gpio_request(pdata->gpio_ext_mic_en, "ext_mic_en");
222 if (ret) {
223 dev_err(card->dev, "cannot get ext_mic_en gpio\n");
224 return ret;
225 }
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600226 machine->gpio_requested |= GPIO_EXT_MIC_EN;
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700227
228 /* Enable ext mic; enable signal is active-low */
229 gpio_direction_output(pdata->gpio_ext_mic_en, 0);
230
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600231 ret = snd_soc_add_controls(codec, tegra_wm8903_controls,
232 ARRAY_SIZE(tegra_wm8903_controls));
Stephen Warren3d8bc392011-02-03 13:56:14 -0700233 if (ret < 0)
234 return ret;
235
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600236 snd_soc_dapm_new_controls(dapm, tegra_wm8903_dapm_widgets,
237 ARRAY_SIZE(tegra_wm8903_dapm_widgets));
Stephen Warren62ffac42011-01-13 15:22:08 -0700238
239 snd_soc_dapm_add_routes(dapm, harmony_audio_map,
240 ARRAY_SIZE(harmony_audio_map));
241
Stephen Warren3eb25f92011-04-12 11:40:38 -0600242 tegra_wm8903_hp_jack_gpio.gpio = pdata->gpio_hp_det;
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700243 snd_soc_jack_new(codec, "Headphone Jack", SND_JACK_HEADPHONE,
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600244 &tegra_wm8903_hp_jack);
245 snd_soc_jack_add_pins(&tegra_wm8903_hp_jack,
246 ARRAY_SIZE(tegra_wm8903_hp_jack_pins),
247 tegra_wm8903_hp_jack_pins);
248 snd_soc_jack_add_gpios(&tegra_wm8903_hp_jack,
Stephen Warren3eb25f92011-04-12 11:40:38 -0600249 1,
250 &tegra_wm8903_hp_jack_gpio);
Stephen Warrenf7d3e402011-02-03 13:56:13 -0700251
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700252 snd_soc_jack_new(codec, "Mic Jack", SND_JACK_MICROPHONE,
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600253 &tegra_wm8903_mic_jack);
254 snd_soc_jack_add_pins(&tegra_wm8903_mic_jack,
255 ARRAY_SIZE(tegra_wm8903_mic_jack_pins),
256 tegra_wm8903_mic_jack_pins);
257 wm8903_mic_detect(codec, &tegra_wm8903_mic_jack, SND_JACK_MICROPHONE,
258 0);
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700259
260 snd_soc_dapm_force_enable_pin(dapm, "Mic Bias");
261
Stephen Warren0d6cdca2011-02-10 15:37:17 -0700262 snd_soc_dapm_nc_pin(dapm, "IN3L");
263 snd_soc_dapm_nc_pin(dapm, "IN3R");
264 snd_soc_dapm_nc_pin(dapm, "LINEOUTL");
265 snd_soc_dapm_nc_pin(dapm, "LINEOUTR");
266
Stephen Warren41b5f9b2011-02-10 15:37:16 -0700267 snd_soc_dapm_sync(dapm);
268
Stephen Warren62ffac42011-01-13 15:22:08 -0700269 return 0;
270}
271
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600272static struct snd_soc_dai_link tegra_wm8903_dai = {
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700273 .name = "WM8903",
274 .stream_name = "WM8903 PCM",
Mark Brown4b592c92011-02-09 13:47:06 +0000275 .codec_name = "wm8903.0-001a",
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700276 .platform_name = "tegra-pcm-audio",
277 .cpu_dai_name = "tegra-i2s.0",
278 .codec_dai_name = "wm8903-hifi",
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600279 .init = tegra_wm8903_init,
280 .ops = &tegra_wm8903_ops,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700281};
282
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600283static struct snd_soc_card snd_soc_tegra_wm8903 = {
284 .name = "tegra-wm8903",
285 .dai_link = &tegra_wm8903_dai,
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700286 .num_links = 1,
287};
288
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600289static __devinit int tegra_wm8903_driver_probe(struct platform_device *pdev)
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700290{
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600291 struct snd_soc_card *card = &snd_soc_tegra_wm8903;
292 struct tegra_wm8903 *machine;
Stephen Warren4651d552011-04-12 11:28:59 -0600293 struct tegra_wm8903_platform_data *pdata;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700294 int ret;
295
296 if (!machine_is_harmony()) {
Stephen Warren72de2b12011-01-28 14:26:36 -0700297 dev_err(&pdev->dev, "Not running on Tegra Harmony!\n");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700298 return -ENODEV;
299 }
300
Stephen Warren6e267642011-01-28 14:26:37 -0700301 pdata = pdev->dev.platform_data;
302 if (!pdata) {
303 dev_err(&pdev->dev, "no platform data supplied\n");
304 return -EINVAL;
305 }
306
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600307 machine = kzalloc(sizeof(struct tegra_wm8903), GFP_KERNEL);
308 if (!machine) {
309 dev_err(&pdev->dev, "Can't allocate tegra_wm8903 struct\n");
Stephen Warren72de2b12011-01-28 14:26:36 -0700310 return -ENOMEM;
311 }
312
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600313 machine->pdata = pdata;
Stephen Warren6e267642011-01-28 14:26:37 -0700314
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600315 ret = tegra_asoc_utils_init(&machine->util_data, &pdev->dev);
Stephen Warren72de2b12011-01-28 14:26:36 -0700316 if (ret)
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600317 goto err_free_machine;
Stephen Warren72de2b12011-01-28 14:26:36 -0700318
319 card->dev = &pdev->dev;
320 platform_set_drvdata(pdev, card);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600321 snd_soc_card_set_drvdata(card, machine);
Stephen Warren72de2b12011-01-28 14:26:36 -0700322
323 ret = snd_soc_register_card(card);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700324 if (ret) {
Stephen Warren72de2b12011-01-28 14:26:36 -0700325 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n",
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700326 ret);
Stephen Warren72de2b12011-01-28 14:26:36 -0700327 goto err_clear_drvdata;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700328 }
329
330 return 0;
331
Stephen Warren72de2b12011-01-28 14:26:36 -0700332err_clear_drvdata:
333 snd_soc_card_set_drvdata(card, NULL);
334 platform_set_drvdata(pdev, NULL);
335 card->dev = NULL;
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600336 tegra_asoc_utils_fini(&machine->util_data);
337err_free_machine:
338 kfree(machine);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700339 return ret;
340}
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700341
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600342static int __devexit tegra_wm8903_driver_remove(struct platform_device *pdev)
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700343{
Stephen Warren72de2b12011-01-28 14:26:36 -0700344 struct snd_soc_card *card = platform_get_drvdata(pdev);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600345 struct tegra_wm8903 *machine = snd_soc_card_get_drvdata(card);
346 struct tegra_wm8903_platform_data *pdata = machine->pdata;
Stephen Warren72de2b12011-01-28 14:26:36 -0700347
348 snd_soc_unregister_card(card);
349
350 snd_soc_card_set_drvdata(card, NULL);
351 platform_set_drvdata(pdev, NULL);
352 card->dev = NULL;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700353
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600354 tegra_asoc_utils_fini(&machine->util_data);
Stephen Warren72de2b12011-01-28 14:26:36 -0700355
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600356 if (machine->gpio_requested & GPIO_EXT_MIC_EN)
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700357 gpio_free(pdata->gpio_ext_mic_en);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600358 if (machine->gpio_requested & GPIO_INT_MIC_EN)
Stephen Warrenbf1b1322011-02-10 15:37:18 -0700359 gpio_free(pdata->gpio_int_mic_en);
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600360 if (machine->gpio_requested & GPIO_SPKR_EN)
Stephen Warren6e267642011-01-28 14:26:37 -0700361 gpio_free(pdata->gpio_spkr_en);
362
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600363 kfree(machine);
Stephen Warren72de2b12011-01-28 14:26:36 -0700364
365 return 0;
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700366}
Stephen Warren72de2b12011-01-28 14:26:36 -0700367
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600368static struct platform_driver tegra_wm8903_driver = {
Stephen Warren72de2b12011-01-28 14:26:36 -0700369 .driver = {
370 .name = DRV_NAME,
371 .owner = THIS_MODULE,
Stephen Warrendeb26072011-04-05 19:35:30 -0600372 .pm = &snd_soc_pm_ops,
Stephen Warren72de2b12011-01-28 14:26:36 -0700373 },
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600374 .probe = tegra_wm8903_driver_probe,
375 .remove = __devexit_p(tegra_wm8903_driver_remove),
Stephen Warren72de2b12011-01-28 14:26:36 -0700376};
377
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600378static int __init tegra_wm8903_modinit(void)
Stephen Warren72de2b12011-01-28 14:26:36 -0700379{
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600380 return platform_driver_register(&tegra_wm8903_driver);
Stephen Warren72de2b12011-01-28 14:26:36 -0700381}
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600382module_init(tegra_wm8903_modinit);
Stephen Warren72de2b12011-01-28 14:26:36 -0700383
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600384static void __exit tegra_wm8903_modexit(void)
Stephen Warren72de2b12011-01-28 14:26:36 -0700385{
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600386 platform_driver_unregister(&tegra_wm8903_driver);
Stephen Warren72de2b12011-01-28 14:26:36 -0700387}
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600388module_exit(tegra_wm8903_modexit);
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700389
390MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
Stephen Warrendc0a50af2011-04-12 11:40:36 -0600391MODULE_DESCRIPTION("Tegra+WM8903 machine ASoC driver");
Stephen Warrena8bf1ba2011-01-07 22:36:16 -0700392MODULE_LICENSE("GPL");
Stephen Warren8eb34202011-02-10 15:37:19 -0700393MODULE_ALIAS("platform:" DRV_NAME);