2 * neo1973_wm8753.c -- SoC audio for Neo1973
4 * Copyright 2007 Wolfson Microelectronics PLC.
5 * Author: Graeme Gregory
6 * graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/timer.h>
18 #include <linux/interrupt.h>
19 #include <linux/platform_device.h>
20 #include <linux/i2c.h>
21 #include <sound/core.h>
22 #include <sound/pcm.h>
23 #include <sound/soc.h>
24 #include <sound/tlv.h>
26 #include <asm/mach-types.h>
27 #include <asm/hardware/scoop.h>
28 #include <mach/regs-clock.h>
29 #include <mach/regs-gpio.h>
30 #include <mach/hardware.h>
32 #include <mach/spi-gpio.h>
34 #include <plat/regs-iis.h>
36 #include "../codecs/wm8753.h"
39 #include "s3c24xx-i2s.h"
41 /* define the scenarios */
42 #define NEO_AUDIO_OFF 0
43 #define NEO_GSM_CALL_AUDIO_HANDSET 1
44 #define NEO_GSM_CALL_AUDIO_HEADSET 2
45 #define NEO_GSM_CALL_AUDIO_BLUETOOTH 3
46 #define NEO_STEREO_TO_SPEAKERS 4
47 #define NEO_STEREO_TO_HEADPHONES 5
48 #define NEO_CAPTURE_HANDSET 6
49 #define NEO_CAPTURE_HEADSET 7
50 #define NEO_CAPTURE_BLUETOOTH 8
52 static struct snd_soc_card neo1973
;
53 static struct i2c_client
*i2c
;
55 static int neo1973_hifi_hw_params(struct snd_pcm_substream
*substream
,
56 struct snd_pcm_hw_params
*params
)
58 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
59 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
60 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
61 unsigned int pll_out
= 0, bclk
= 0;
63 unsigned long iis_clkrate
;
65 pr_debug("Entered %s\n", __func__
);
67 iis_clkrate
= s3c24xx_i2s_get_clockrate();
69 switch (params_rate(params
)) {
75 bclk
= WM8753_BCLK_DIV_4
;
79 bclk
= WM8753_BCLK_DIV_2
;
83 bclk
= WM8753_BCLK_DIV_16
;
87 bclk
= WM8753_BCLK_DIV_8
;
91 bclk
= WM8753_BCLK_DIV_4
;
95 bclk
= WM8753_BCLK_DIV_2
;
100 /* set codec DAI configuration */
101 ret
= snd_soc_dai_set_fmt(codec_dai
,
102 SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
103 SND_SOC_DAIFMT_CBM_CFM
);
107 /* set cpu DAI configuration */
108 ret
= snd_soc_dai_set_fmt(cpu_dai
,
109 SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
110 SND_SOC_DAIFMT_CBM_CFM
);
114 /* set the codec system clock for DAC and ADC */
115 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8753_MCLK
, pll_out
,
120 /* set MCLK division for sample rate */
121 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C24XX_DIV_MCLK
,
122 S3C2410_IISMOD_32FS
);
126 /* set codec BCLK division for sample rate */
127 ret
= snd_soc_dai_set_clkdiv(codec_dai
, WM8753_BCLKDIV
, bclk
);
131 /* set prescaler division for sample rate */
132 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C24XX_DIV_PRESCALER
,
133 S3C24XX_PRESCALE(4, 4));
137 /* codec PLL input is PCLK/4 */
138 ret
= snd_soc_dai_set_pll(codec_dai
, WM8753_PLL1
, 0,
139 iis_clkrate
/ 4, pll_out
);
146 static int neo1973_hifi_hw_free(struct snd_pcm_substream
*substream
)
148 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
149 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
151 pr_debug("Entered %s\n", __func__
);
153 /* disable the PLL */
154 return snd_soc_dai_set_pll(codec_dai
, WM8753_PLL1
, 0, 0, 0);
158 * Neo1973 WM8753 HiFi DAI opserations.
160 static struct snd_soc_ops neo1973_hifi_ops
= {
161 .hw_params
= neo1973_hifi_hw_params
,
162 .hw_free
= neo1973_hifi_hw_free
,
165 static int neo1973_voice_hw_params(struct snd_pcm_substream
*substream
,
166 struct snd_pcm_hw_params
*params
)
168 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
169 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
170 unsigned int pcmdiv
= 0;
172 unsigned long iis_clkrate
;
174 pr_debug("Entered %s\n", __func__
);
176 iis_clkrate
= s3c24xx_i2s_get_clockrate();
178 if (params_rate(params
) != 8000)
180 if (params_channels(params
) != 1)
183 pcmdiv
= WM8753_PCM_DIV_6
; /* 2.048 MHz */
185 /* todo: gg check mode (DSP_B) against CSR datasheet */
186 /* set codec DAI configuration */
187 ret
= snd_soc_dai_set_fmt(codec_dai
, SND_SOC_DAIFMT_DSP_B
|
188 SND_SOC_DAIFMT_NB_NF
| SND_SOC_DAIFMT_CBS_CFS
);
192 /* set the codec system clock for DAC and ADC */
193 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8753_PCMCLK
, 12288000,
198 /* set codec PCM division for sample rate */
199 ret
= snd_soc_dai_set_clkdiv(codec_dai
, WM8753_PCMDIV
, pcmdiv
);
203 /* configure and enable PLL for 12.288MHz output */
204 ret
= snd_soc_dai_set_pll(codec_dai
, WM8753_PLL2
, 0,
205 iis_clkrate
/ 4, 12288000);
212 static int neo1973_voice_hw_free(struct snd_pcm_substream
*substream
)
214 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
215 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
217 pr_debug("Entered %s\n", __func__
);
219 /* disable the PLL */
220 return snd_soc_dai_set_pll(codec_dai
, WM8753_PLL2
, 0, 0, 0);
223 static struct snd_soc_ops neo1973_voice_ops
= {
224 .hw_params
= neo1973_voice_hw_params
,
225 .hw_free
= neo1973_voice_hw_free
,
228 static int neo1973_scenario
;
230 static int neo1973_get_scenario(struct snd_kcontrol
*kcontrol
,
231 struct snd_ctl_elem_value
*ucontrol
)
233 ucontrol
->value
.integer
.value
[0] = neo1973_scenario
;
237 static int set_scenario_endpoints(struct snd_soc_codec
*codec
, int scenario
)
239 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
241 pr_debug("Entered %s\n", __func__
);
243 switch (neo1973_scenario
) {
245 snd_soc_dapm_disable_pin(dapm
, "Audio Out");
246 snd_soc_dapm_disable_pin(dapm
, "GSM Line Out");
247 snd_soc_dapm_disable_pin(dapm
, "GSM Line In");
248 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
249 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
251 case NEO_GSM_CALL_AUDIO_HANDSET
:
252 snd_soc_dapm_enable_pin(dapm
, "Audio Out");
253 snd_soc_dapm_enable_pin(dapm
, "GSM Line Out");
254 snd_soc_dapm_enable_pin(dapm
, "GSM Line In");
255 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
256 snd_soc_dapm_enable_pin(dapm
, "Call Mic");
258 case NEO_GSM_CALL_AUDIO_HEADSET
:
259 snd_soc_dapm_enable_pin(dapm
, "Audio Out");
260 snd_soc_dapm_enable_pin(dapm
, "GSM Line Out");
261 snd_soc_dapm_enable_pin(dapm
, "GSM Line In");
262 snd_soc_dapm_enable_pin(dapm
, "Headset Mic");
263 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
265 case NEO_GSM_CALL_AUDIO_BLUETOOTH
:
266 snd_soc_dapm_disable_pin(dapm
, "Audio Out");
267 snd_soc_dapm_enable_pin(dapm
, "GSM Line Out");
268 snd_soc_dapm_enable_pin(dapm
, "GSM Line In");
269 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
270 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
272 case NEO_STEREO_TO_SPEAKERS
:
273 snd_soc_dapm_enable_pin(dapm
, "Audio Out");
274 snd_soc_dapm_disable_pin(dapm
, "GSM Line Out");
275 snd_soc_dapm_disable_pin(dapm
, "GSM Line In");
276 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
277 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
279 case NEO_STEREO_TO_HEADPHONES
:
280 snd_soc_dapm_enable_pin(dapm
, "Audio Out");
281 snd_soc_dapm_disable_pin(dapm
, "GSM Line Out");
282 snd_soc_dapm_disable_pin(dapm
, "GSM Line In");
283 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
284 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
286 case NEO_CAPTURE_HANDSET
:
287 snd_soc_dapm_disable_pin(dapm
, "Audio Out");
288 snd_soc_dapm_disable_pin(dapm
, "GSM Line Out");
289 snd_soc_dapm_disable_pin(dapm
, "GSM Line In");
290 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
291 snd_soc_dapm_enable_pin(dapm
, "Call Mic");
293 case NEO_CAPTURE_HEADSET
:
294 snd_soc_dapm_disable_pin(dapm
, "Audio Out");
295 snd_soc_dapm_disable_pin(dapm
, "GSM Line Out");
296 snd_soc_dapm_disable_pin(dapm
, "GSM Line In");
297 snd_soc_dapm_enable_pin(dapm
, "Headset Mic");
298 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
300 case NEO_CAPTURE_BLUETOOTH
:
301 snd_soc_dapm_disable_pin(dapm
, "Audio Out");
302 snd_soc_dapm_disable_pin(dapm
, "GSM Line Out");
303 snd_soc_dapm_disable_pin(dapm
, "GSM Line In");
304 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
305 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
308 snd_soc_dapm_disable_pin(dapm
, "Audio Out");
309 snd_soc_dapm_disable_pin(dapm
, "GSM Line Out");
310 snd_soc_dapm_disable_pin(dapm
, "GSM Line In");
311 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
312 snd_soc_dapm_disable_pin(dapm
, "Call Mic");
315 snd_soc_dapm_sync(dapm
);
320 static int neo1973_set_scenario(struct snd_kcontrol
*kcontrol
,
321 struct snd_ctl_elem_value
*ucontrol
)
323 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
325 pr_debug("Entered %s\n", __func__
);
327 if (neo1973_scenario
== ucontrol
->value
.integer
.value
[0])
330 neo1973_scenario
= ucontrol
->value
.integer
.value
[0];
331 set_scenario_endpoints(codec
, neo1973_scenario
);
335 static u8 lm4857_regs
[4] = {0x00, 0x40, 0x80, 0xC0};
337 static void lm4857_write_regs(void)
339 pr_debug("Entered %s\n", __func__
);
341 if (i2c_master_send(i2c
, lm4857_regs
, 4) != 4)
342 printk(KERN_ERR
"lm4857: i2c write failed\n");
345 static int lm4857_get_reg(struct snd_kcontrol
*kcontrol
,
346 struct snd_ctl_elem_value
*ucontrol
)
348 struct soc_mixer_control
*mc
=
349 (struct soc_mixer_control
*)kcontrol
->private_value
;
351 int shift
= mc
->shift
;
354 pr_debug("Entered %s\n", __func__
);
356 ucontrol
->value
.integer
.value
[0] = (lm4857_regs
[reg
] >> shift
) & mask
;
360 static int lm4857_set_reg(struct snd_kcontrol
*kcontrol
,
361 struct snd_ctl_elem_value
*ucontrol
)
363 struct soc_mixer_control
*mc
=
364 (struct soc_mixer_control
*)kcontrol
->private_value
;
366 int shift
= mc
->shift
;
369 if (((lm4857_regs
[reg
] >> shift
) & mask
) ==
370 ucontrol
->value
.integer
.value
[0])
373 lm4857_regs
[reg
] &= ~(mask
<< shift
);
374 lm4857_regs
[reg
] |= ucontrol
->value
.integer
.value
[0] << shift
;
379 static int lm4857_get_mode(struct snd_kcontrol
*kcontrol
,
380 struct snd_ctl_elem_value
*ucontrol
)
382 u8 value
= lm4857_regs
[LM4857_CTRL
] & 0x0F;
384 pr_debug("Entered %s\n", __func__
);
389 ucontrol
->value
.integer
.value
[0] = value
;
393 static int lm4857_set_mode(struct snd_kcontrol
*kcontrol
,
394 struct snd_ctl_elem_value
*ucontrol
)
396 u8 value
= ucontrol
->value
.integer
.value
[0];
398 pr_debug("Entered %s\n", __func__
);
403 if ((lm4857_regs
[LM4857_CTRL
] & 0x0F) == value
)
406 lm4857_regs
[LM4857_CTRL
] &= 0xF0;
407 lm4857_regs
[LM4857_CTRL
] |= value
;
412 static const struct snd_soc_dapm_widget wm8753_dapm_widgets
[] = {
413 SND_SOC_DAPM_LINE("Audio Out", NULL
),
414 SND_SOC_DAPM_LINE("GSM Line Out", NULL
),
415 SND_SOC_DAPM_LINE("GSM Line In", NULL
),
416 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
417 SND_SOC_DAPM_MIC("Call Mic", NULL
),
421 static const struct snd_soc_dapm_route dapm_routes
[] = {
423 /* Connections to the lm4857 amp */
424 {"Audio Out", NULL
, "LOUT1"},
425 {"Audio Out", NULL
, "ROUT1"},
427 /* Connections to the GSM Module */
428 {"GSM Line Out", NULL
, "MONO1"},
429 {"GSM Line Out", NULL
, "MONO2"},
430 {"RXP", NULL
, "GSM Line In"},
431 {"RXN", NULL
, "GSM Line In"},
433 /* Connections to Headset */
434 {"MIC1", NULL
, "Mic Bias"},
435 {"Mic Bias", NULL
, "Headset Mic"},
438 {"MIC2", NULL
, "Mic Bias"},
439 {"MIC2N", NULL
, "Mic Bias"},
440 {"Mic Bias", NULL
, "Call Mic"},
442 /* Connect the ALC pins */
443 {"ACIN", NULL
, "ACOP"},
446 static const char *lm4857_mode
[] = {
450 "Stereo Speakers + Headphones",
454 static const struct soc_enum lm4857_mode_enum
[] = {
455 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(lm4857_mode
), lm4857_mode
),
458 static const char *neo_scenarios
[] = {
470 static const struct soc_enum neo_scenario_enum
[] = {
471 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(neo_scenarios
), neo_scenarios
),
474 static const DECLARE_TLV_DB_SCALE(stereo_tlv
, -4050, 150, 0);
475 static const DECLARE_TLV_DB_SCALE(mono_tlv
, -3450, 150, 0);
477 static const struct snd_kcontrol_new wm8753_neo1973_controls
[] = {
478 SOC_SINGLE_EXT_TLV("Amp Left Playback Volume", LM4857_LVOL
, 0, 31, 0,
479 lm4857_get_reg
, lm4857_set_reg
, stereo_tlv
),
480 SOC_SINGLE_EXT_TLV("Amp Right Playback Volume", LM4857_RVOL
, 0, 31, 0,
481 lm4857_get_reg
, lm4857_set_reg
, stereo_tlv
),
482 SOC_SINGLE_EXT_TLV("Amp Mono Playback Volume", LM4857_MVOL
, 0, 31, 0,
483 lm4857_get_reg
, lm4857_set_reg
, mono_tlv
),
484 SOC_ENUM_EXT("Amp Mode", lm4857_mode_enum
[0],
485 lm4857_get_mode
, lm4857_set_mode
),
486 SOC_ENUM_EXT("Neo Mode", neo_scenario_enum
[0],
487 neo1973_get_scenario
, neo1973_set_scenario
),
488 SOC_SINGLE_EXT("Amp Spk 3D Playback Switch", LM4857_LVOL
, 5, 1, 0,
489 lm4857_get_reg
, lm4857_set_reg
),
490 SOC_SINGLE_EXT("Amp HP 3d Playback Switch", LM4857_RVOL
, 5, 1, 0,
491 lm4857_get_reg
, lm4857_set_reg
),
492 SOC_SINGLE_EXT("Amp Fast Wakeup Playback Switch", LM4857_CTRL
, 5, 1, 0,
493 lm4857_get_reg
, lm4857_set_reg
),
494 SOC_SINGLE_EXT("Amp Earpiece 6dB Playback Switch", LM4857_CTRL
, 4, 1, 0,
495 lm4857_get_reg
, lm4857_set_reg
),
499 * This is an example machine initialisation for a wm8753 connected to a
500 * neo1973 II. It is missing logic to detect hp/mic insertions and logic
501 * to re-route the audio in such an event.
503 static int neo1973_wm8753_init(struct snd_soc_pcm_runtime
*rtd
)
505 struct snd_soc_codec
*codec
= rtd
->codec
;
506 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
509 pr_debug("Entered %s\n", __func__
);
511 /* set up NC codec pins */
512 snd_soc_dapm_nc_pin(dapm
, "LOUT2");
513 snd_soc_dapm_nc_pin(dapm
, "ROUT2");
514 snd_soc_dapm_nc_pin(dapm
, "OUT3");
515 snd_soc_dapm_nc_pin(dapm
, "OUT4");
516 snd_soc_dapm_nc_pin(dapm
, "LINE1");
517 snd_soc_dapm_nc_pin(dapm
, "LINE2");
519 /* Add neo1973 specific widgets */
520 snd_soc_dapm_new_controls(dapm
, wm8753_dapm_widgets
,
521 ARRAY_SIZE(wm8753_dapm_widgets
));
523 /* set endpoints to default mode */
524 set_scenario_endpoints(codec
, NEO_AUDIO_OFF
);
526 /* add neo1973 specific controls */
527 err
= snd_soc_add_controls(codec
, wm8753_neo1973_controls
,
528 ARRAY_SIZE(8753_neo1973_controls
));
532 /* set up neo1973 specific audio routes */
533 err
= snd_soc_dapm_add_routes(dapm
, dapm_routes
,
534 ARRAY_SIZE(dapm_routes
));
536 snd_soc_dapm_sync(dapm
);
543 static struct snd_soc_dai bt_dai
= {
544 .name
= "bluetooth-dai",
548 .rates
= SNDRV_PCM_RATE_8000
,
549 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
553 .rates
= SNDRV_PCM_RATE_8000
,
554 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
557 static struct snd_soc_dai_link neo1973_dai
[] = {
558 { /* Hifi Playback - for similatious use with voice below */
560 .stream_name
= "WM8753 HiFi",
561 .platform_name
= "samsung-audio",
562 .cpu_dai_name
= "s3c24xx-iis",
563 .codec_dai_name
= "wm8753-hifi",
564 .codec_name
= "wm8753-codec.0-001a",
565 .init
= neo1973_wm8753_init
,
566 .ops
= &neo1973_hifi_ops
,
570 .stream_name
= "Voice",
571 .platform_name
= "samsung-audio",
572 .cpu_dai_name
= "bluetooth-dai",
573 .codec_dai_name
= "wm8753-voice",
574 .codec_name
= "wm8753-codec.0-001a",
575 .ops
= &neo1973_voice_ops
,
579 static struct snd_soc_card neo1973
= {
581 .dai_link
= neo1973_dai
,
582 .num_links
= ARRAY_SIZE(neo1973_dai
),
585 static int lm4857_i2c_probe(struct i2c_client
*client
,
586 const struct i2c_device_id
*id
)
588 pr_debug("Entered %s\n", __func__
);
596 static int lm4857_i2c_remove(struct i2c_client
*client
)
598 pr_debug("Entered %s\n", __func__
);
605 static u8 lm4857_state
;
607 static int lm4857_suspend(struct i2c_client
*dev
, pm_message_t state
)
609 pr_debug("Entered %s\n", __func__
);
611 dev_dbg(&dev
->dev
, "lm4857_suspend\n");
612 lm4857_state
= lm4857_regs
[LM4857_CTRL
] & 0xf;
614 lm4857_regs
[LM4857_CTRL
] &= 0xf0;
620 static int lm4857_resume(struct i2c_client
*dev
)
622 pr_debug("Entered %s\n", __func__
);
625 lm4857_regs
[LM4857_CTRL
] |= (lm4857_state
& 0x0f);
631 static void lm4857_shutdown(struct i2c_client
*dev
)
633 pr_debug("Entered %s\n", __func__
);
635 dev_dbg(&dev
->dev
, "lm4857_shutdown\n");
636 lm4857_regs
[LM4857_CTRL
] &= 0xf0;
640 static const struct i2c_device_id lm4857_i2c_id
[] = {
641 { "neo1973_lm4857", 0 },
645 static struct i2c_driver lm4857_i2c_driver
= {
647 .name
= "LM4857 I2C Amp",
648 .owner
= THIS_MODULE
,
650 .suspend
= lm4857_suspend
,
651 .resume
= lm4857_resume
,
652 .shutdown
= lm4857_shutdown
,
653 .probe
= lm4857_i2c_probe
,
654 .remove
= lm4857_i2c_remove
,
655 .id_table
= lm4857_i2c_id
,
658 static struct platform_device
*neo1973_snd_device
;
660 static int __init
neo1973_init(void)
664 pr_debug("Entered %s\n", __func__
);
666 if (!machine_is_neo1973_gta01()) {
668 "Only GTA01 hardware supported by ASoC driver\n");
672 neo1973_snd_device
= platform_device_alloc("soc-audio", -1);
673 if (!neo1973_snd_device
)
676 platform_set_drvdata(neo1973_snd_device
, &neo1973
);
677 ret
= platform_device_add(neo1973_snd_device
);
680 platform_device_put(neo1973_snd_device
);
684 ret
= i2c_add_driver(&lm4857_i2c_driver
);
687 platform_device_unregister(neo1973_snd_device
);
692 static void __exit
neo1973_exit(void)
694 pr_debug("Entered %s\n", __func__
);
696 i2c_del_driver(&lm4857_i2c_driver
);
697 platform_device_unregister(neo1973_snd_device
);
700 module_init(neo1973_init
);
701 module_exit(neo1973_exit
);
703 /* Module information */
704 MODULE_AUTHOR("Graeme Gregory, graeme@openmoko.org, www.openmoko.org");
705 MODULE_DESCRIPTION("ALSA SoC WM8753 Neo1973");
706 MODULE_LICENSE("GPL");