blob: 49c09a0add797ff95101bee1923b62254e3928a0 [file] [log] [blame]
Vinod Koul55c72032011-01-04 20:16:50 +05301/*
2 * mfld_machine.c - ASoc Machine driver for Intel Medfield MID platform
3 *
4 * Copyright (C) 2010 Intel Corp
5 * Author: Vinod Koul <vinod.koul@intel.com>
6 * Author: Harsha Priya <priya.harsha@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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 as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 */
24
25#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26
27#include <linux/init.h>
28#include <linux/device.h>
29#include <linux/slab.h>
Vinod Koul42aee9b2011-02-09 21:44:33 +053030#include <linux/io.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040031#include <linux/module.h>
Vinod Koul55c72032011-01-04 20:16:50 +053032#include <sound/pcm.h>
33#include <sound/pcm_params.h>
34#include <sound/soc.h>
Vinod Koul42aee9b2011-02-09 21:44:33 +053035#include <sound/jack.h>
Vinod Koul55c72032011-01-04 20:16:50 +053036#include "../codecs/sn95031.h"
37
38#define MID_MONO 1
39#define MID_STEREO 2
40#define MID_MAX_CAP 5
Vinod Koul42aee9b2011-02-09 21:44:33 +053041#define MFLD_JACK_INSERT 0x04
42
43enum soc_mic_bias_zones {
44 MFLD_MV_START = 0,
45 /* mic bias volutage range for Headphones*/
46 MFLD_MV_HP = 400,
47 /* mic bias volutage range for American Headset*/
48 MFLD_MV_AM_HS = 650,
49 /* mic bias volutage range for Headset*/
50 MFLD_MV_HS = 2000,
51 MFLD_MV_UNDEFINED,
52};
Vinod Koul55c72032011-01-04 20:16:50 +053053
54static unsigned int hs_switch;
55static unsigned int lo_dac;
Lars-Peter Clausen43b95632014-03-12 15:27:31 +010056static struct snd_soc_codec *mfld_codec;
Vinod Koul55c72032011-01-04 20:16:50 +053057
Vinod Koul42aee9b2011-02-09 21:44:33 +053058struct mfld_mc_private {
Vinod Koul42aee9b2011-02-09 21:44:33 +053059 void __iomem *int_base;
Vinod Koul42aee9b2011-02-09 21:44:33 +053060 u8 interrupt_status;
61};
62
63struct snd_soc_jack mfld_jack;
64
65/*Headset jack detection DAPM pins */
66static struct snd_soc_jack_pin mfld_jack_pins[] = {
67 {
68 .pin = "Headphones",
69 .mask = SND_JACK_HEADPHONE,
70 },
71 {
72 .pin = "AMIC1",
73 .mask = SND_JACK_MICROPHONE,
74 },
75};
76
Vinod Koul7ae74342011-02-10 12:58:01 +053077/* jack detection voltage zones */
78static struct snd_soc_jack_zone mfld_zones[] = {
79 {MFLD_MV_START, MFLD_MV_AM_HS, SND_JACK_HEADPHONE},
80 {MFLD_MV_AM_HS, MFLD_MV_HS, SND_JACK_HEADSET},
81};
82
Vinod Koul55c72032011-01-04 20:16:50 +053083/* sound card controls */
84static const char *headset_switch_text[] = {"Earpiece", "Headset"};
85
86static const char *lo_text[] = {"Vibra", "Headset", "IHF", "None"};
87
88static const struct soc_enum headset_enum =
89 SOC_ENUM_SINGLE_EXT(2, headset_switch_text);
90
91static const struct soc_enum lo_enum =
92 SOC_ENUM_SINGLE_EXT(4, lo_text);
93
94static int headset_get_switch(struct snd_kcontrol *kcontrol,
95 struct snd_ctl_elem_value *ucontrol)
96{
97 ucontrol->value.integer.value[0] = hs_switch;
98 return 0;
99}
100
101static int headset_set_switch(struct snd_kcontrol *kcontrol,
102 struct snd_ctl_elem_value *ucontrol)
103{
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100104 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
105 struct snd_soc_dapm_context *dapm = &card->dapm;
Vinod Koul55c72032011-01-04 20:16:50 +0530106
107 if (ucontrol->value.integer.value[0] == hs_switch)
108 return 0;
109
Charles Keepax121df682014-02-18 15:22:21 +0000110 snd_soc_dapm_mutex_lock(dapm);
111
Vinod Koul55c72032011-01-04 20:16:50 +0530112 if (ucontrol->value.integer.value[0]) {
113 pr_debug("hs_set HS path\n");
Charles Keepax121df682014-02-18 15:22:21 +0000114 snd_soc_dapm_enable_pin_unlocked(dapm, "Headphones");
115 snd_soc_dapm_disable_pin_unlocked(dapm, "EPOUT");
Vinod Koul55c72032011-01-04 20:16:50 +0530116 } else {
117 pr_debug("hs_set EP path\n");
Charles Keepax121df682014-02-18 15:22:21 +0000118 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphones");
119 snd_soc_dapm_enable_pin_unlocked(dapm, "EPOUT");
Vinod Koul55c72032011-01-04 20:16:50 +0530120 }
Charles Keepax121df682014-02-18 15:22:21 +0000121
122 snd_soc_dapm_sync_unlocked(dapm);
123
124 snd_soc_dapm_mutex_unlock(dapm);
125
Vinod Koul55c72032011-01-04 20:16:50 +0530126 hs_switch = ucontrol->value.integer.value[0];
127
128 return 0;
129}
130
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100131static void lo_enable_out_pins(struct snd_soc_dapm_context *dapm)
Vinod Koul55c72032011-01-04 20:16:50 +0530132{
Charles Keepax121df682014-02-18 15:22:21 +0000133 snd_soc_dapm_enable_pin_unlocked(dapm, "IHFOUTL");
134 snd_soc_dapm_enable_pin_unlocked(dapm, "IHFOUTR");
135 snd_soc_dapm_enable_pin_unlocked(dapm, "LINEOUTL");
136 snd_soc_dapm_enable_pin_unlocked(dapm, "LINEOUTR");
137 snd_soc_dapm_enable_pin_unlocked(dapm, "VIB1OUT");
138 snd_soc_dapm_enable_pin_unlocked(dapm, "VIB2OUT");
Vinod Koul55c72032011-01-04 20:16:50 +0530139 if (hs_switch) {
Charles Keepax121df682014-02-18 15:22:21 +0000140 snd_soc_dapm_enable_pin_unlocked(dapm, "Headphones");
141 snd_soc_dapm_disable_pin_unlocked(dapm, "EPOUT");
Vinod Koul55c72032011-01-04 20:16:50 +0530142 } else {
Charles Keepax121df682014-02-18 15:22:21 +0000143 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphones");
144 snd_soc_dapm_enable_pin_unlocked(dapm, "EPOUT");
Vinod Koul55c72032011-01-04 20:16:50 +0530145 }
146}
147
148static int lo_get_switch(struct snd_kcontrol *kcontrol,
149 struct snd_ctl_elem_value *ucontrol)
150{
151 ucontrol->value.integer.value[0] = lo_dac;
152 return 0;
153}
154
155static int lo_set_switch(struct snd_kcontrol *kcontrol,
156 struct snd_ctl_elem_value *ucontrol)
157{
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100158 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
159 struct snd_soc_dapm_context *dapm = &card->dapm;
Vinod Koul55c72032011-01-04 20:16:50 +0530160
161 if (ucontrol->value.integer.value[0] == lo_dac)
162 return 0;
163
Charles Keepax121df682014-02-18 15:22:21 +0000164 snd_soc_dapm_mutex_lock(dapm);
165
Vinod Koul55c72032011-01-04 20:16:50 +0530166 /* we dont want to work with last state of lineout so just enable all
167 * pins and then disable pins not required
168 */
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100169 lo_enable_out_pins(dapm);
Charles Keepax121df682014-02-18 15:22:21 +0000170
Vinod Koul55c72032011-01-04 20:16:50 +0530171 switch (ucontrol->value.integer.value[0]) {
172 case 0:
173 pr_debug("set vibra path\n");
Charles Keepax121df682014-02-18 15:22:21 +0000174 snd_soc_dapm_disable_pin_unlocked(dapm, "VIB1OUT");
175 snd_soc_dapm_disable_pin_unlocked(dapm, "VIB2OUT");
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100176 snd_soc_update_bits(mfld_codec, SN95031_LOCTL, 0x66, 0);
Vinod Koul55c72032011-01-04 20:16:50 +0530177 break;
178
179 case 1:
180 pr_debug("set hs path\n");
Charles Keepax121df682014-02-18 15:22:21 +0000181 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphones");
182 snd_soc_dapm_disable_pin_unlocked(dapm, "EPOUT");
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100183 snd_soc_update_bits(mfld_codec, SN95031_LOCTL, 0x66, 0x22);
Vinod Koul55c72032011-01-04 20:16:50 +0530184 break;
185
186 case 2:
187 pr_debug("set spkr path\n");
Charles Keepax121df682014-02-18 15:22:21 +0000188 snd_soc_dapm_disable_pin_unlocked(dapm, "IHFOUTL");
189 snd_soc_dapm_disable_pin_unlocked(dapm, "IHFOUTR");
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100190 snd_soc_update_bits(mfld_codec, SN95031_LOCTL, 0x66, 0x44);
Vinod Koul55c72032011-01-04 20:16:50 +0530191 break;
192
193 case 3:
194 pr_debug("set null path\n");
Charles Keepax121df682014-02-18 15:22:21 +0000195 snd_soc_dapm_disable_pin_unlocked(dapm, "LINEOUTL");
196 snd_soc_dapm_disable_pin_unlocked(dapm, "LINEOUTR");
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100197 snd_soc_update_bits(mfld_codec, SN95031_LOCTL, 0x66, 0x66);
Vinod Koul55c72032011-01-04 20:16:50 +0530198 break;
199 }
Charles Keepax121df682014-02-18 15:22:21 +0000200
201 snd_soc_dapm_sync_unlocked(dapm);
202
203 snd_soc_dapm_mutex_unlock(dapm);
204
Vinod Koul55c72032011-01-04 20:16:50 +0530205 lo_dac = ucontrol->value.integer.value[0];
206 return 0;
207}
208
209static const struct snd_kcontrol_new mfld_snd_controls[] = {
210 SOC_ENUM_EXT("Playback Switch", headset_enum,
211 headset_get_switch, headset_set_switch),
212 SOC_ENUM_EXT("Lineout Mux", lo_enum,
213 lo_get_switch, lo_set_switch),
214};
215
Vinod Koul42aee9b2011-02-09 21:44:33 +0530216static const struct snd_soc_dapm_widget mfld_widgets[] = {
217 SND_SOC_DAPM_HP("Headphones", NULL),
218 SND_SOC_DAPM_MIC("Mic", NULL),
219};
220
221static const struct snd_soc_dapm_route mfld_map[] = {
222 {"Headphones", NULL, "HPOUTR"},
223 {"Headphones", NULL, "HPOUTL"},
224 {"Mic", NULL, "AMIC1"},
225};
226
227static void mfld_jack_check(unsigned int intr_status)
228{
229 struct mfld_jack_data jack_data;
230
Lars-Peter Clausenc472b932015-03-04 10:33:16 +0100231 if (!mfld_codec)
232 return;
233
Vinod Koul42aee9b2011-02-09 21:44:33 +0530234 jack_data.mfld_jack = &mfld_jack;
235 jack_data.intr_id = intr_status;
236
Lars-Peter Clausenc472b932015-03-04 10:33:16 +0100237 sn95031_jack_detection(mfld_codec, &jack_data);
Vinod Koul42aee9b2011-02-09 21:44:33 +0530238 /* TODO: add american headset detection post gpiolib support */
239}
240
Vinod Koul55c72032011-01-04 20:16:50 +0530241static int mfld_init(struct snd_soc_pcm_runtime *runtime)
242{
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100243 struct snd_soc_dapm_context *dapm = &runtime->card->dapm;
Vinod Koul55c72032011-01-04 20:16:50 +0530244 int ret_val;
245
Vinod Koul55c72032011-01-04 20:16:50 +0530246 /* default is earpiece pin, userspace sets it explcitly */
Vinod Koul42aee9b2011-02-09 21:44:33 +0530247 snd_soc_dapm_disable_pin(dapm, "Headphones");
Vinod Koul55c72032011-01-04 20:16:50 +0530248 /* default is lineout NC, userspace sets it explcitly */
249 snd_soc_dapm_disable_pin(dapm, "LINEOUTL");
250 snd_soc_dapm_disable_pin(dapm, "LINEOUTR");
251 lo_dac = 3;
252 hs_switch = 0;
Harsha Priyad316553a2011-01-28 22:28:32 +0530253 /* we dont use linein in this so set to NC */
254 snd_soc_dapm_disable_pin(dapm, "LINEINL");
255 snd_soc_dapm_disable_pin(dapm, "LINEINR");
Vinod Koul42aee9b2011-02-09 21:44:33 +0530256
257 /* Headset and button jack detection */
Lars-Peter Clausenaf13cbc2015-03-04 10:33:24 +0100258 ret_val = snd_soc_card_jack_new(runtime->card,
259 "Intel(R) MID Audio Jack", SND_JACK_HEADSET |
260 SND_JACK_BTN_0 | SND_JACK_BTN_1, &mfld_jack,
261 mfld_jack_pins, ARRAY_SIZE(mfld_jack_pins));
Vinod Koul42aee9b2011-02-09 21:44:33 +0530262 if (ret_val) {
263 pr_err("jack creation failed\n");
264 return ret_val;
265 }
266
Vinod Koul7ae74342011-02-10 12:58:01 +0530267 ret_val = snd_soc_jack_add_zones(&mfld_jack,
268 ARRAY_SIZE(mfld_zones), mfld_zones);
269 if (ret_val) {
270 pr_err("adding jack zones failed\n");
271 return ret_val;
272 }
Vinod Koul42aee9b2011-02-09 21:44:33 +0530273
Lars-Peter Clausenc472b932015-03-04 10:33:16 +0100274 mfld_codec = runtime->codec;
275
Vinod Koul42aee9b2011-02-09 21:44:33 +0530276 /* we want to check if anything is inserted at boot,
277 * so send a fake event to codec and it will read adc
278 * to find if anything is there or not */
279 mfld_jack_check(MFLD_JACK_INSERT);
280 return ret_val;
Vinod Koul55c72032011-01-04 20:16:50 +0530281}
282
Axel Lin00c65162011-12-14 19:23:01 +0800283static struct snd_soc_dai_link mfld_msic_dailink[] = {
Vinod Koul55c72032011-01-04 20:16:50 +0530284 {
285 .name = "Medfield Headset",
286 .stream_name = "Headset",
287 .cpu_dai_name = "Headset-cpu-dai",
288 .codec_dai_name = "SN95031 Headset",
289 .codec_name = "sn95031",
290 .platform_name = "sst-platform",
291 .init = mfld_init,
292 },
293 {
294 .name = "Medfield Speaker",
295 .stream_name = "Speaker",
296 .cpu_dai_name = "Speaker-cpu-dai",
297 .codec_dai_name = "SN95031 Speaker",
298 .codec_name = "sn95031",
299 .platform_name = "sst-platform",
300 .init = NULL,
301 },
302 {
303 .name = "Medfield Vibra",
304 .stream_name = "Vibra1",
305 .cpu_dai_name = "Vibra1-cpu-dai",
306 .codec_dai_name = "SN95031 Vibra1",
307 .codec_name = "sn95031",
308 .platform_name = "sst-platform",
309 .init = NULL,
310 },
311 {
312 .name = "Medfield Haptics",
313 .stream_name = "Vibra2",
314 .cpu_dai_name = "Vibra2-cpu-dai",
315 .codec_dai_name = "SN95031 Vibra2",
316 .codec_name = "sn95031",
317 .platform_name = "sst-platform",
318 .init = NULL,
319 },
Vinod Koulc514a912012-08-16 17:10:42 +0530320 {
321 .name = "Medfield Compress",
322 .stream_name = "Speaker",
323 .cpu_dai_name = "Compress-cpu-dai",
324 .codec_dai_name = "SN95031 Speaker",
325 .codec_name = "sn95031",
326 .platform_name = "sst-platform",
327 .init = NULL,
328 },
Vinod Koul55c72032011-01-04 20:16:50 +0530329};
330
331/* SoC card */
332static struct snd_soc_card snd_soc_card_mfld = {
333 .name = "medfield_audio",
Axel Lin8270ba02011-12-23 14:50:17 +0800334 .owner = THIS_MODULE,
Vinod Koul55c72032011-01-04 20:16:50 +0530335 .dai_link = mfld_msic_dailink,
336 .num_links = ARRAY_SIZE(mfld_msic_dailink),
Lars-Peter Clausen43b95632014-03-12 15:27:31 +0100337
338 .controls = mfld_snd_controls,
339 .num_controls = ARRAY_SIZE(mfld_snd_controls),
340 .dapm_widgets = mfld_widgets,
341 .num_dapm_widgets = ARRAY_SIZE(mfld_widgets),
342 .dapm_routes = mfld_map,
343 .num_dapm_routes = ARRAY_SIZE(mfld_map),
Vinod Koul55c72032011-01-04 20:16:50 +0530344};
345
Vinod Koul42aee9b2011-02-09 21:44:33 +0530346static irqreturn_t snd_mfld_jack_intr_handler(int irq, void *dev)
347{
348 struct mfld_mc_private *mc_private = (struct mfld_mc_private *) dev;
349
350 memcpy_fromio(&mc_private->interrupt_status,
351 ((void *)(mc_private->int_base)),
352 sizeof(u8));
353 return IRQ_WAKE_THREAD;
354}
355
356static irqreturn_t snd_mfld_jack_detection(int irq, void *data)
357{
358 struct mfld_mc_private *mc_drv_ctx = (struct mfld_mc_private *) data;
359
Vinod Koul42aee9b2011-02-09 21:44:33 +0530360 mfld_jack_check(mc_drv_ctx->interrupt_status);
361
362 return IRQ_HANDLED;
363}
364
Bill Pemberton7759f2e2012-12-07 09:26:25 -0500365static int snd_mfld_mc_probe(struct platform_device *pdev)
Vinod Koul55c72032011-01-04 20:16:50 +0530366{
Vinod Koul42aee9b2011-02-09 21:44:33 +0530367 int ret_val = 0, irq;
368 struct mfld_mc_private *mc_drv_ctx;
369 struct resource *irq_mem;
Vinod Koul55c72032011-01-04 20:16:50 +0530370
371 pr_debug("snd_mfld_mc_probe called\n");
372
Vinod Koul42aee9b2011-02-09 21:44:33 +0530373 /* retrive the irq number */
374 irq = platform_get_irq(pdev, 0);
375
376 /* audio interrupt base of SRAM location where
377 * interrupts are stored by System FW */
Wei Yongjunde693002013-06-25 10:16:56 +0800378 mc_drv_ctx = devm_kzalloc(&pdev->dev, sizeof(*mc_drv_ctx), GFP_ATOMIC);
Vinod Koul42aee9b2011-02-09 21:44:33 +0530379 if (!mc_drv_ctx) {
380 pr_err("allocation failed\n");
Vinod Koul55c72032011-01-04 20:16:50 +0530381 return -ENOMEM;
382 }
Vinod Koul42aee9b2011-02-09 21:44:33 +0530383
384 irq_mem = platform_get_resource_byname(
385 pdev, IORESOURCE_MEM, "IRQ_BASE");
386 if (!irq_mem) {
387 pr_err("no mem resource given\n");
Wei Yongjunde693002013-06-25 10:16:56 +0800388 return -ENODEV;
Vinod Koul42aee9b2011-02-09 21:44:33 +0530389 }
Wei Yongjunde693002013-06-25 10:16:56 +0800390 mc_drv_ctx->int_base = devm_ioremap_nocache(&pdev->dev, irq_mem->start,
391 resource_size(irq_mem));
Vinod Koul42aee9b2011-02-09 21:44:33 +0530392 if (!mc_drv_ctx->int_base) {
393 pr_err("Mapping of cache failed\n");
Wei Yongjunde693002013-06-25 10:16:56 +0800394 return -ENOMEM;
Vinod Koul42aee9b2011-02-09 21:44:33 +0530395 }
396 /* register for interrupt */
Wei Yongjunde693002013-06-25 10:16:56 +0800397 ret_val = devm_request_threaded_irq(&pdev->dev, irq,
398 snd_mfld_jack_intr_handler,
Vinod Koul42aee9b2011-02-09 21:44:33 +0530399 snd_mfld_jack_detection,
400 IRQF_SHARED, pdev->dev.driver->name, mc_drv_ctx);
401 if (ret_val) {
402 pr_err("cannot register IRQ\n");
Wei Yongjunde693002013-06-25 10:16:56 +0800403 return ret_val;
Vinod Koul42aee9b2011-02-09 21:44:33 +0530404 }
Vinod Kould58198b2011-02-15 18:28:55 +0530405 /* register the soc card */
406 snd_soc_card_mfld.dev = &pdev->dev;
Sachin Kamat33c89c32013-09-17 09:49:04 +0530407 ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_mfld);
Vinod Koul55c72032011-01-04 20:16:50 +0530408 if (ret_val) {
Vinod Kould58198b2011-02-15 18:28:55 +0530409 pr_debug("snd_soc_register_card failed %d\n", ret_val);
Wei Yongjunde693002013-06-25 10:16:56 +0800410 return ret_val;
Vinod Koul55c72032011-01-04 20:16:50 +0530411 }
Vinod Koul42aee9b2011-02-09 21:44:33 +0530412 platform_set_drvdata(pdev, mc_drv_ctx);
Vinod Koul55c72032011-01-04 20:16:50 +0530413 pr_debug("successfully exited probe\n");
Wei Yongjunde693002013-06-25 10:16:56 +0800414 return 0;
Vinod Koul55c72032011-01-04 20:16:50 +0530415}
416
Vinod Koul55c72032011-01-04 20:16:50 +0530417static struct platform_driver snd_mfld_mc_driver = {
418 .driver = {
Vinod Koul55c72032011-01-04 20:16:50 +0530419 .name = "msic_audio",
420 },
421 .probe = snd_mfld_mc_probe,
Vinod Koul55c72032011-01-04 20:16:50 +0530422};
423
Axel Lin29515d62011-11-24 11:51:56 +0800424module_platform_driver(snd_mfld_mc_driver);
Vinod Koul55c72032011-01-04 20:16:50 +0530425
426MODULE_DESCRIPTION("ASoC Intel(R) MID Machine driver");
427MODULE_AUTHOR("Vinod Koul <vinod.koul@intel.com>");
428MODULE_AUTHOR("Harsha Priya <priya.harsha@intel.com>");
429MODULE_LICENSE("GPL v2");
430MODULE_ALIAS("platform:msic-audio");