blob: 161be8b7d1317b0825b61ce18c6f44431f641d06 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Janusz Krzysztofik459dc352009-07-22 05:22:28 +02002/*
3 * cx20442.c -- CX20442 ALSA Soc Audio driver
4 *
5 * Copyright 2009 Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
6 *
7 * Initially based on sound/soc/codecs/wm8400.c
8 * Copyright 2008, 2009 Wolfson Microelectronics PLC.
9 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
Janusz Krzysztofik459dc352009-07-22 05:22:28 +020010 */
11
Janusz Krzysztofikad120da2009-07-29 12:24:46 +020012#include <linux/tty.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040014#include <linux/module.h>
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +010015#include <linux/regulator/consumer.h>
Janusz Krzysztofikad120da2009-07-29 12:24:46 +020016
Janusz Krzysztofik459dc352009-07-22 05:22:28 +020017#include <sound/core.h>
18#include <sound/initval.h>
Liam Girdwoodce6120c2010-11-05 15:53:46 +020019#include <sound/soc.h>
Janusz Krzysztofik459dc352009-07-22 05:22:28 +020020
21#include "cx20442.h"
22
23
24struct cx20442_priv {
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +000025 struct tty_struct *tty;
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +010026 struct regulator *por;
Kuninori Morimoto3c897242018-01-16 02:00:18 +000027 u8 reg_cache;
Janusz Krzysztofik459dc352009-07-22 05:22:28 +020028};
29
30#define CX20442_PM 0x0
31
32#define CX20442_TELIN 0
33#define CX20442_TELOUT 1
34#define CX20442_MIC 2
35#define CX20442_SPKOUT 3
36#define CX20442_AGC 4
37
38static const struct snd_soc_dapm_widget cx20442_dapm_widgets[] = {
39 SND_SOC_DAPM_OUTPUT("TELOUT"),
40 SND_SOC_DAPM_OUTPUT("SPKOUT"),
41 SND_SOC_DAPM_OUTPUT("AGCOUT"),
42
43 SND_SOC_DAPM_MIXER("SPKOUT Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
44
45 SND_SOC_DAPM_PGA("TELOUT Amp", CX20442_PM, CX20442_TELOUT, 0, NULL, 0),
46 SND_SOC_DAPM_PGA("SPKOUT Amp", CX20442_PM, CX20442_SPKOUT, 0, NULL, 0),
47 SND_SOC_DAPM_PGA("SPKOUT AGC", CX20442_PM, CX20442_AGC, 0, NULL, 0),
48
49 SND_SOC_DAPM_DAC("DAC", "Playback", SND_SOC_NOPM, 0, 0),
50 SND_SOC_DAPM_ADC("ADC", "Capture", SND_SOC_NOPM, 0, 0),
51
52 SND_SOC_DAPM_MIXER("Input Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
53
54 SND_SOC_DAPM_MICBIAS("TELIN Bias", CX20442_PM, CX20442_TELIN, 0),
55 SND_SOC_DAPM_MICBIAS("MIC Bias", CX20442_PM, CX20442_MIC, 0),
56
57 SND_SOC_DAPM_PGA("MIC AGC", CX20442_PM, CX20442_AGC, 0, NULL, 0),
58
59 SND_SOC_DAPM_INPUT("TELIN"),
60 SND_SOC_DAPM_INPUT("MIC"),
61 SND_SOC_DAPM_INPUT("AGCIN"),
62};
63
64static const struct snd_soc_dapm_route cx20442_audio_map[] = {
65 {"TELOUT", NULL, "TELOUT Amp"},
66
67 {"SPKOUT", NULL, "SPKOUT Mixer"},
68 {"SPKOUT Mixer", NULL, "SPKOUT Amp"},
69
70 {"TELOUT Amp", NULL, "DAC"},
71 {"SPKOUT Amp", NULL, "DAC"},
72
73 {"SPKOUT Mixer", NULL, "SPKOUT AGC"},
74 {"SPKOUT AGC", NULL, "AGCIN"},
75
76 {"AGCOUT", NULL, "MIC AGC"},
77 {"MIC AGC", NULL, "MIC"},
78
79 {"MIC Bias", NULL, "MIC"},
80 {"Input Mixer", NULL, "MIC Bias"},
81
82 {"TELIN Bias", NULL, "TELIN"},
83 {"Input Mixer", NULL, "TELIN Bias"},
84
85 {"ADC", NULL, "Input Mixer"},
86};
87
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +000088static unsigned int cx20442_read_reg_cache(struct snd_soc_component *component,
Kuninori Morimoto3c897242018-01-16 02:00:18 +000089 unsigned int reg)
90{
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +000091 struct cx20442_priv *cx20442 = snd_soc_component_get_drvdata(component);
Kuninori Morimoto3c897242018-01-16 02:00:18 +000092
93 if (reg >= 1)
94 return -EINVAL;
95
96 return cx20442->reg_cache;
97}
98
Janusz Krzysztofik459dc352009-07-22 05:22:28 +020099enum v253_vls {
100 V253_VLS_NONE = 0,
101 V253_VLS_T,
102 V253_VLS_L,
103 V253_VLS_LT,
104 V253_VLS_S,
105 V253_VLS_ST,
106 V253_VLS_M,
107 V253_VLS_MST,
108 V253_VLS_S1,
109 V253_VLS_S1T,
110 V253_VLS_MS1T,
111 V253_VLS_M1,
112 V253_VLS_M1ST,
113 V253_VLS_M1S1T,
114 V253_VLS_H,
115 V253_VLS_HT,
116 V253_VLS_MS,
117 V253_VLS_MS1,
118 V253_VLS_M1S,
119 V253_VLS_M1S1,
120 V253_VLS_TEST,
121};
122
123static int cx20442_pm_to_v253_vls(u8 value)
124{
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200125 switch (value & ~(1 << CX20442_AGC)) {
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200126 case 0:
127 return V253_VLS_T;
128 case (1 << CX20442_SPKOUT):
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200129 case (1 << CX20442_MIC):
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200130 case (1 << CX20442_SPKOUT) | (1 << CX20442_MIC):
131 return V253_VLS_M1S1;
132 case (1 << CX20442_TELOUT):
133 case (1 << CX20442_TELIN):
134 case (1 << CX20442_TELOUT) | (1 << CX20442_TELIN):
135 return V253_VLS_L;
136 case (1 << CX20442_TELOUT) | (1 << CX20442_MIC):
137 return V253_VLS_NONE;
138 }
139 return -EINVAL;
140}
141static int cx20442_pm_to_v253_vsp(u8 value)
142{
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200143 switch (value & ~(1 << CX20442_AGC)) {
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200144 case (1 << CX20442_SPKOUT):
145 case (1 << CX20442_MIC):
146 case (1 << CX20442_SPKOUT) | (1 << CX20442_MIC):
147 return (bool)(value & (1 << CX20442_AGC));
148 }
149 return (value & (1 << CX20442_AGC)) ? -EINVAL : 0;
150}
151
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000152static int cx20442_write(struct snd_soc_component *component, unsigned int reg,
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200153 unsigned int value)
154{
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000155 struct cx20442_priv *cx20442 = snd_soc_component_get_drvdata(component);
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200156 int vls, vsp, old, len;
157 char buf[18];
158
Kuninori Morimoto3c897242018-01-16 02:00:18 +0000159 if (reg >= 1)
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200160 return -EINVAL;
161
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000162 /* tty and write pointers required for talking to the modem
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200163 * are expected to be set by the line discipline initialization code */
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000164 if (!cx20442->tty || !cx20442->tty->ops->write)
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200165 return -EIO;
166
Kuninori Morimoto3c897242018-01-16 02:00:18 +0000167 old = cx20442->reg_cache;
168 cx20442->reg_cache = value;
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200169
170 vls = cx20442_pm_to_v253_vls(value);
171 if (vls < 0)
172 return vls;
173
174 vsp = cx20442_pm_to_v253_vsp(value);
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200175 if (vsp < 0)
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200176 return vsp;
177
178 if ((vls == V253_VLS_T) ||
179 (vls == cx20442_pm_to_v253_vls(old))) {
180 if (vsp == cx20442_pm_to_v253_vsp(old))
181 return 0;
182 len = snprintf(buf, ARRAY_SIZE(buf), "at+vsp=%d\r", vsp);
183 } else if (vsp == cx20442_pm_to_v253_vsp(old))
184 len = snprintf(buf, ARRAY_SIZE(buf), "at+vls=%d\r", vls);
185 else
186 len = snprintf(buf, ARRAY_SIZE(buf),
187 "at+vls=%d;+vsp=%d\r", vls, vsp);
188
189 if (unlikely(len > (ARRAY_SIZE(buf) - 1)))
190 return -ENOMEM;
191
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000192 dev_dbg(component->dev, "%s: %s\n", __func__, buf);
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000193 if (cx20442->tty->ops->write(cx20442->tty, buf, len) != len)
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200194 return -EIO;
195
196 return 0;
197}
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200198
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200199/*
200 * Line discpline related code
201 *
202 * Any of the callback functions below can be used in two ways:
203 * 1) registerd by a machine driver as one of line discipline operations,
204 * 2) called from a machine's provided line discipline callback function
205 * in case when extra machine specific code must be run as well.
206 */
207
208/* Modem init: echo off, digital speaker off, quiet off, voice mode */
209static const char *v253_init = "ate0m0q0+fclass=8\r";
210
211/* Line discipline .open() */
212static int v253_open(struct tty_struct *tty)
213{
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200214 int ret, len = strlen(v253_init);
215
216 /* Doesn't make sense without write callback */
217 if (!tty->ops->write)
218 return -EINVAL;
219
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000220 /* Won't work if no codec pointer has been passed by a card driver */
221 if (!tty->disc_data)
222 return -ENODEV;
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200223
Janusz Krzysztofik86c0ae72016-06-16 22:04:35 +0200224 tty->receive_room = 16;
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200225 if (tty->ops->write(tty, v253_init, len) != len) {
226 ret = -EIO;
227 goto err;
228 }
229 /* Actual setup will be performed after the modem responds. */
230 return 0;
231err:
232 tty->disc_data = NULL;
233 return ret;
234}
235
236/* Line discipline .close() */
237static void v253_close(struct tty_struct *tty)
238{
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000239 struct snd_soc_component *component = tty->disc_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000240 struct cx20442_priv *cx20442;
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200241
242 tty->disc_data = NULL;
243
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000244 if (!component)
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200245 return;
246
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000247 cx20442 = snd_soc_component_get_drvdata(component);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000248
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200249 /* Prevent the codec driver from further accessing the modem */
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000250 cx20442->tty = NULL;
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000251 component->card->pop_time = 0;
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200252}
253
254/* Line discipline .hangup() */
255static int v253_hangup(struct tty_struct *tty)
256{
257 v253_close(tty);
258 return 0;
259}
260
261/* Line discipline .receive_buf() */
Linus Torvaldsbb3d6bf2011-06-04 07:00:50 +0900262static void v253_receive(struct tty_struct *tty,
263 const unsigned char *cp, char *fp, int count)
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200264{
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000265 struct snd_soc_component *component = tty->disc_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000266 struct cx20442_priv *cx20442;
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200267
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000268 if (!component)
Linus Torvaldsbb3d6bf2011-06-04 07:00:50 +0900269 return;
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200270
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000271 cx20442 = snd_soc_component_get_drvdata(component);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000272
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000273 if (!cx20442->tty) {
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200274 /* First modem response, complete setup procedure */
275
276 /* Set up codec driver access to modem controls */
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000277 cx20442->tty = tty;
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000278 component->card->pop_time = 1;
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200279 }
280}
281
282/* Line discipline .write_wakeup() */
283static void v253_wakeup(struct tty_struct *tty)
284{
285}
286
287struct tty_ldisc_ops v253_ops = {
288 .magic = TTY_LDISC_MAGIC,
289 .name = "cx20442",
290 .owner = THIS_MODULE,
291 .open = v253_open,
292 .close = v253_close,
293 .hangup = v253_hangup,
294 .receive_buf = v253_receive,
295 .write_wakeup = v253_wakeup,
296};
297EXPORT_SYMBOL_GPL(v253_ops);
298
299
300/*
301 * Codec DAI
302 */
303
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000304static struct snd_soc_dai_driver cx20442_dai = {
Janusz Krzysztofik53946372010-08-19 15:15:50 +0200305 .name = "cx20442-voice",
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200306 .playback = {
307 .stream_name = "Playback",
308 .channels_min = 1,
309 .channels_max = 1,
310 .rates = SNDRV_PCM_RATE_8000,
311 .formats = SNDRV_PCM_FMTBIT_S16_LE,
312 },
313 .capture = {
314 .stream_name = "Capture",
315 .channels_min = 1,
316 .channels_max = 1,
317 .rates = SNDRV_PCM_RATE_8000,
318 .formats = SNDRV_PCM_FMTBIT_S16_LE,
319 },
320};
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200321
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000322static int cx20442_set_bias_level(struct snd_soc_component *component,
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +0100323 enum snd_soc_bias_level level)
324{
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000325 struct cx20442_priv *cx20442 = snd_soc_component_get_drvdata(component);
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +0100326 int err = 0;
327
328 switch (level) {
329 case SND_SOC_BIAS_PREPARE:
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000330 if (snd_soc_component_get_bias_level(component) != SND_SOC_BIAS_STANDBY)
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +0100331 break;
332 if (IS_ERR(cx20442->por))
333 err = PTR_ERR(cx20442->por);
334 else
335 err = regulator_enable(cx20442->por);
336 break;
337 case SND_SOC_BIAS_STANDBY:
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000338 if (snd_soc_component_get_bias_level(component) != SND_SOC_BIAS_PREPARE)
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +0100339 break;
340 if (IS_ERR(cx20442->por))
341 err = PTR_ERR(cx20442->por);
342 else
343 err = regulator_disable(cx20442->por);
344 break;
345 default:
346 break;
347 }
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +0100348
349 return err;
350}
351
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000352static int cx20442_component_probe(struct snd_soc_component *component)
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200353{
354 struct cx20442_priv *cx20442;
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200355
356 cx20442 = kzalloc(sizeof(struct cx20442_priv), GFP_KERNEL);
357 if (cx20442 == NULL)
358 return -ENOMEM;
359
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000360 cx20442->por = regulator_get(component->dev, "POR");
Janusz Krzysztofik50c67872018-06-24 20:14:41 +0200361 if (IS_ERR(cx20442->por)) {
362 int err = PTR_ERR(cx20442->por);
363
364 dev_warn(component->dev, "failed to get POR supply (%d)", err);
365 /*
366 * When running on a non-dt platform and requested regulator
367 * is not available, regulator_get() never returns
368 * -EPROBE_DEFER as it is not able to justify if the regulator
369 * may still appear later. On the other hand, the board can
370 * still set full constraints flag at late_initcall in order
371 * to instruct regulator_get() to return a dummy one if
372 * sufficient. Hence, if we get -ENODEV here, let's convert
373 * it to -EPROBE_DEFER and wait for the board to decide or
374 * let Deferred Probe infrastructure handle this error.
375 */
376 if (err == -ENODEV)
377 err = -EPROBE_DEFER;
378 kfree(cx20442);
379 return err;
380 }
381
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000382 cx20442->tty = NULL;
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +0100383
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000384 snd_soc_component_set_drvdata(component, cx20442);
385 component->card->pop_time = 0;
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200386
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000387 return 0;
388}
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200389
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000390/* power down chip */
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000391static void cx20442_component_remove(struct snd_soc_component *component)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000392{
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000393 struct cx20442_priv *cx20442 = snd_soc_component_get_drvdata(component);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000394
Kuninori Morimotofac3f5e2017-11-09 01:04:09 +0000395 if (cx20442->tty) {
396 struct tty_struct *tty = cx20442->tty;
Mark Brownaaed2a62014-03-04 17:20:56 +0800397 tty_hangup(tty);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000398 }
399
Janusz Krzysztofikf75a8ff2011-12-30 04:04:54 +0100400 if (!IS_ERR(cx20442->por)) {
401 /* should be already in STANDBY, hence disabled */
402 regulator_put(cx20442->por);
403 }
404
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000405 snd_soc_component_set_drvdata(component, NULL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000406 kfree(cx20442);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000407}
408
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000409static const struct snd_soc_component_driver cx20442_component_dev = {
410 .probe = cx20442_component_probe,
411 .remove = cx20442_component_remove,
412 .set_bias_level = cx20442_set_bias_level,
413 .read = cx20442_read_reg_cache,
414 .write = cx20442_write,
415 .dapm_widgets = cx20442_dapm_widgets,
416 .num_dapm_widgets = ARRAY_SIZE(cx20442_dapm_widgets),
417 .dapm_routes = cx20442_audio_map,
418 .num_dapm_routes = ARRAY_SIZE(cx20442_audio_map),
419 .idle_bias_on = 1,
420 .use_pmdown_time = 1,
421 .endianness = 1,
422 .non_legacy_dai_naming = 1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000423};
424
425static int cx20442_platform_probe(struct platform_device *pdev)
426{
Kuninori Morimotod0fdfe32018-01-29 04:15:57 +0000427 return devm_snd_soc_register_component(&pdev->dev,
428 &cx20442_component_dev, &cx20442_dai, 1);
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200429}
430
431static struct platform_driver cx20442_platform_driver = {
432 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000433 .name = "cx20442-codec",
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200434 },
435 .probe = cx20442_platform_probe,
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200436};
437
Mark Brown5bbcc3c2011-11-23 22:52:08 +0000438module_platform_driver(cx20442_platform_driver);
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200439
440MODULE_DESCRIPTION("ASoC CX20442-11 voice modem codec driver");
441MODULE_AUTHOR("Janusz Krzysztofik");
442MODULE_LICENSE("GPL");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000443MODULE_ALIAS("platform:cx20442-codec");