Linux 4.7-rc1
[deliverable/linux.git] / sound / soc / generic / simple-card.c
CommitLineData
f2390880
KM
1/*
2 * ASoC simple sound card support
3 *
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
fa558c28 11#include <linux/clk.h>
6ff62eed 12#include <linux/device.h>
3fe24032 13#include <linux/gpio.h>
f2390880 14#include <linux/module.h>
fa558c28 15#include <linux/of.h>
3fe24032 16#include <linux/of_gpio.h>
f2390880 17#include <linux/platform_device.h>
ca919fe4 18#include <linux/string.h>
3fe24032 19#include <sound/jack.h>
f2390880 20#include <sound/simple_card.h>
6ff62eed
XL
21#include <sound/soc-dai.h>
22#include <sound/soc.h>
f2390880 23
45fce594
JFM
24struct simple_card_data {
25 struct snd_soc_card snd_card;
cf7dc23c
JFM
26 struct simple_dai_props {
27 struct asoc_simple_dai cpu_dai;
28 struct asoc_simple_dai codec_dai;
85a4bfd8 29 unsigned int mclk_fs;
cf7dc23c 30 } *dai_props;
2942a0e2 31 unsigned int mclk_fs;
3fe24032 32 int gpio_hp_det;
4476159f 33 int gpio_hp_det_invert;
3fe24032 34 int gpio_mic_det;
4476159f 35 int gpio_mic_det_invert;
cf7dc23c 36 struct snd_soc_dai_link dai_link[]; /* dynamically allocated */
45fce594
JFM
37};
38
f531913f 39#define simple_priv_to_dev(priv) ((priv)->snd_card.dev)
9810f537
KM
40#define simple_priv_to_link(priv, i) ((priv)->snd_card.dai_link + i)
41#define simple_priv_to_props(priv, i) ((priv)->dai_props + i)
f531913f 42
f9911803
JS
43static int asoc_simple_card_startup(struct snd_pcm_substream *substream)
44{
45 struct snd_soc_pcm_runtime *rtd = substream->private_data;
46 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
47 struct simple_dai_props *dai_props =
1a497983 48 &priv->dai_props[rtd->num];
f9911803
JS
49 int ret;
50
51 ret = clk_prepare_enable(dai_props->cpu_dai.clk);
52 if (ret)
53 return ret;
54
55 ret = clk_prepare_enable(dai_props->codec_dai.clk);
56 if (ret)
57 clk_disable_unprepare(dai_props->cpu_dai.clk);
58
59 return ret;
60}
61
62static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
63{
64 struct snd_soc_pcm_runtime *rtd = substream->private_data;
65 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
66 struct simple_dai_props *dai_props =
1a497983 67 &priv->dai_props[rtd->num];
f9911803
JS
68
69 clk_disable_unprepare(dai_props->cpu_dai.clk);
70
71 clk_disable_unprepare(dai_props->codec_dai.clk);
72}
73
2942a0e2
AL
74static int asoc_simple_card_hw_params(struct snd_pcm_substream *substream,
75 struct snd_pcm_hw_params *params)
76{
77 struct snd_soc_pcm_runtime *rtd = substream->private_data;
78 struct snd_soc_dai *codec_dai = rtd->codec_dai;
e2257971 79 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2942a0e2 80 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
1a497983 81 struct simple_dai_props *dai_props = &priv->dai_props[rtd->num];
85a4bfd8 82 unsigned int mclk, mclk_fs = 0;
2942a0e2
AL
83 int ret = 0;
84
85a4bfd8
AP
85 if (priv->mclk_fs)
86 mclk_fs = priv->mclk_fs;
87 else if (dai_props->mclk_fs)
88 mclk_fs = dai_props->mclk_fs;
89
90 if (mclk_fs) {
91 mclk = params_rate(params) * mclk_fs;
2942a0e2
AL
92 ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
93 SND_SOC_CLOCK_IN);
e2257971
AP
94 if (ret && ret != -ENOTSUPP)
95 goto err;
96
97 ret = snd_soc_dai_set_sysclk(cpu_dai, 0, mclk,
98 SND_SOC_CLOCK_OUT);
99 if (ret && ret != -ENOTSUPP)
100 goto err;
2942a0e2 101 }
ee43a1a0 102 return 0;
e2257971 103err:
2942a0e2
AL
104 return ret;
105}
106
107static struct snd_soc_ops asoc_simple_card_ops = {
f9911803
JS
108 .startup = asoc_simple_card_startup,
109 .shutdown = asoc_simple_card_shutdown,
2942a0e2
AL
110 .hw_params = asoc_simple_card_hw_params,
111};
112
3fe24032
DR
113static struct snd_soc_jack simple_card_hp_jack;
114static struct snd_soc_jack_pin simple_card_hp_jack_pins[] = {
115 {
116 .pin = "Headphones",
117 .mask = SND_JACK_HEADPHONE,
118 },
119};
120static struct snd_soc_jack_gpio simple_card_hp_jack_gpio = {
121 .name = "Headphone detection",
122 .report = SND_JACK_HEADPHONE,
123 .debounce_time = 150,
124};
125
126static struct snd_soc_jack simple_card_mic_jack;
127static struct snd_soc_jack_pin simple_card_mic_jack_pins[] = {
128 {
129 .pin = "Mic Jack",
130 .mask = SND_JACK_MICROPHONE,
131 },
132};
133static struct snd_soc_jack_gpio simple_card_mic_jack_gpio = {
134 .name = "Mic detection",
135 .report = SND_JACK_MICROPHONE,
136 .debounce_time = 150,
137};
138
a4a2992c 139static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai,
30d0341e 140 struct asoc_simple_dai *set)
a4a2992c 141{
4763ebe2 142 int ret;
a4a2992c 143
4763ebe2 144 if (set->sysclk) {
a4a2992c 145 ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);
4763ebe2
XL
146 if (ret && ret != -ENOTSUPP) {
147 dev_err(dai->dev, "simple-card: set_sysclk error\n");
148 goto err;
149 }
150 }
151
6ff62eed 152 if (set->slots) {
6131084a
JS
153 ret = snd_soc_dai_set_tdm_slot(dai,
154 set->tx_slot_mask,
155 set->rx_slot_mask,
6ff62eed
XL
156 set->slots,
157 set->slot_width);
158 if (ret && ret != -ENOTSUPP) {
159 dev_err(dai->dev, "simple-card: set_tdm_slot error\n");
160 goto err;
161 }
162 }
163
4763ebe2 164 ret = 0;
a4a2992c 165
4763ebe2 166err:
a4a2992c
KM
167 return ret;
168}
169
f2390880
KM
170static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
171{
781cbebe 172 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
f2390880
KM
173 struct snd_soc_dai *codec = rtd->codec_dai;
174 struct snd_soc_dai *cpu = rtd->cpu_dai;
6a91a17b 175 struct simple_dai_props *dai_props;
1a497983 176 int ret;
f2390880 177
1a497983 178 dai_props = &priv->dai_props[rtd->num];
6a91a17b 179 ret = __asoc_simple_card_dai_init(codec, &dai_props->codec_dai);
a4a2992c
KM
180 if (ret < 0)
181 return ret;
f2390880 182
6a91a17b 183 ret = __asoc_simple_card_dai_init(cpu, &dai_props->cpu_dai);
a4a2992c
KM
184 if (ret < 0)
185 return ret;
f2390880 186
3fe24032 187 if (gpio_is_valid(priv->gpio_hp_det)) {
386669fc
LPC
188 snd_soc_card_jack_new(rtd->card, "Headphones",
189 SND_JACK_HEADPHONE,
190 &simple_card_hp_jack,
191 simple_card_hp_jack_pins,
192 ARRAY_SIZE(simple_card_hp_jack_pins));
3fe24032
DR
193
194 simple_card_hp_jack_gpio.gpio = priv->gpio_hp_det;
4476159f 195 simple_card_hp_jack_gpio.invert = priv->gpio_hp_det_invert;
3fe24032
DR
196 snd_soc_jack_add_gpios(&simple_card_hp_jack, 1,
197 &simple_card_hp_jack_gpio);
198 }
199
200 if (gpio_is_valid(priv->gpio_mic_det)) {
386669fc
LPC
201 snd_soc_card_jack_new(rtd->card, "Mic Jack",
202 SND_JACK_MICROPHONE,
203 &simple_card_mic_jack,
204 simple_card_mic_jack_pins,
205 ARRAY_SIZE(simple_card_mic_jack_pins));
3fe24032 206 simple_card_mic_jack_gpio.gpio = priv->gpio_mic_det;
4476159f 207 simple_card_mic_jack_gpio.invert = priv->gpio_mic_det_invert;
3fe24032
DR
208 snd_soc_jack_add_gpios(&simple_card_mic_jack, 1,
209 &simple_card_mic_jack_gpio);
210 }
f2390880
KM
211 return 0;
212}
213
fa558c28
KM
214static int
215asoc_simple_card_sub_parse_of(struct device_node *np,
216 struct asoc_simple_dai *dai,
8ea21348 217 struct device_node **p_node,
7c7b9cf5
KM
218 const char **name,
219 int *args_count)
fa558c28 220{
7c7b9cf5 221 struct of_phandle_args args;
fa558c28 222 struct clk *clk;
c7099eb1 223 u32 val;
fa558c28
KM
224 int ret;
225
226 /*
0dd4fc3c 227 * Get node via "sound-dai = <&phandle port>"
fa558c28
KM
228 * it will be used as xxx_of_node on soc_bind_dai_link()
229 */
7c7b9cf5
KM
230 ret = of_parse_phandle_with_args(np, "sound-dai",
231 "#sound-dai-cells", 0, &args);
232 if (ret)
233 return ret;
234
235 *p_node = args.np;
236
237 if (args_count)
238 *args_count = args.args_count;
fa558c28 239
0dd4fc3c 240 /* Get dai->name */
52008472 241 ret = snd_soc_of_get_dai_name(np, name);
fa558c28 242 if (ret < 0)
e512e001 243 return ret;
fa558c28 244
0dd4fc3c 245 /* Parse TDM slot */
6131084a
JS
246 ret = snd_soc_of_parse_tdm_slot(np, &dai->tx_slot_mask,
247 &dai->rx_slot_mask,
248 &dai->slots, &dai->slot_width);
6ff62eed 249 if (ret)
e512e001 250 return ret;
6ff62eed 251
fa558c28 252 /*
0dd4fc3c
XL
253 * Parse dai->sysclk come from "clocks = <&xxx>"
254 * (if system has common clock)
fa558c28 255 * or "system-clock-frequency = <xxx>"
71467e46 256 * or device's module clock.
fa558c28 257 */
71467e46
XL
258 if (of_property_read_bool(np, "clocks")) {
259 clk = of_clk_get(np, 0);
260 if (IS_ERR(clk)) {
261 ret = PTR_ERR(clk);
e512e001 262 return ret;
71467e46
XL
263 }
264
265 dai->sysclk = clk_get_rate(clk);
f9911803 266 dai->clk = clk;
c7099eb1
JS
267 } else if (!of_property_read_u32(np, "system-clock-frequency", &val)) {
268 dai->sysclk = val;
71467e46 269 } else {
88a60e55 270 clk = of_clk_get(args.np, 0);
e2a19ac6
XL
271 if (!IS_ERR(clk))
272 dai->sysclk = clk_get_rate(clk);
71467e46 273 }
fa558c28 274
e512e001 275 return 0;
fa558c28
KM
276}
277
1b5721b2
KM
278static int asoc_simple_card_parse_daifmt(struct device_node *node,
279 struct simple_card_data *priv,
1b5721b2
KM
280 struct device_node *codec,
281 char *prefix, int idx)
282{
1efb53a2 283 struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
1b5721b2
KM
284 struct device *dev = simple_priv_to_dev(priv);
285 struct device_node *bitclkmaster = NULL;
286 struct device_node *framemaster = NULL;
1b5721b2
KM
287 unsigned int daifmt;
288
289 daifmt = snd_soc_of_parse_daifmt(node, prefix,
290 &bitclkmaster, &framemaster);
291 daifmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
292
293 if (strlen(prefix) && !bitclkmaster && !framemaster) {
294 /*
295 * No dai-link level and master setting was not found from
296 * sound node level, revert back to legacy DT parsing and
297 * take the settings from codec node.
298 */
299 dev_dbg(dev, "Revert to legacy daifmt parsing\n");
300
1efb53a2 301 daifmt = snd_soc_of_parse_daifmt(codec, NULL, NULL, NULL) |
1b5721b2
KM
302 (daifmt & ~SND_SOC_DAIFMT_CLOCK_MASK);
303 } else {
304 if (codec == bitclkmaster)
305 daifmt |= (codec == framemaster) ?
306 SND_SOC_DAIFMT_CBM_CFM : SND_SOC_DAIFMT_CBM_CFS;
307 else
308 daifmt |= (codec == framemaster) ?
309 SND_SOC_DAIFMT_CBS_CFM : SND_SOC_DAIFMT_CBS_CFS;
1b5721b2
KM
310 }
311
1efb53a2
LPC
312 dai_link->dai_fmt = daifmt;
313
1b5721b2
KM
314 of_node_put(bitclkmaster);
315 of_node_put(framemaster);
316
317 return 0;
318}
319
2d82eeb0 320static int asoc_simple_card_dai_link_of(struct device_node *node,
f531913f 321 struct simple_card_data *priv,
9810f537 322 int idx,
2d82eeb0 323 bool is_top_level_node)
6a91a17b 324{
f531913f 325 struct device *dev = simple_priv_to_dev(priv);
9810f537
KM
326 struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
327 struct simple_dai_props *dai_props = simple_priv_to_props(priv, idx);
1b5721b2 328 struct device_node *cpu = NULL;
e0ae225b 329 struct device_node *plat = NULL;
1b5721b2 330 struct device_node *codec = NULL;
b3ca11ff
JS
331 char *name;
332 char prop[128];
333 char *prefix = "";
7c7b9cf5 334 int ret, cpu_args;
85a4bfd8 335 u32 val;
6a91a17b 336
2080437d 337 /* For single DAI link & old style of DT node */
64872215
JS
338 if (is_top_level_node)
339 prefix = "simple-audio-card,";
b3ca11ff 340
b3ca11ff 341 snprintf(prop, sizeof(prop), "%scpu", prefix);
1b5721b2
KM
342 cpu = of_get_child_by_name(node, prop);
343
e0ae225b
JN
344 snprintf(prop, sizeof(prop), "%splat", prefix);
345 plat = of_get_child_by_name(node, prop);
346
1b5721b2
KM
347 snprintf(prop, sizeof(prop), "%scodec", prefix);
348 codec = of_get_child_by_name(node, prop);
349
350 if (!cpu || !codec) {
b3ca11ff 351 ret = -EINVAL;
966b8063 352 dev_err(dev, "%s: Can't find %s DT node\n", __func__, prop);
b3ca11ff 353 goto dai_link_of_err;
6a91a17b 354 }
b3ca11ff 355
1b5721b2 356 ret = asoc_simple_card_parse_daifmt(node, priv,
7195d920 357 codec, prefix, idx);
1b5721b2
KM
358 if (ret < 0)
359 goto dai_link_of_err;
360
85a4bfd8
AP
361 if (!of_property_read_u32(node, "mclk-fs", &val))
362 dai_props->mclk_fs = val;
363
1b5721b2 364 ret = asoc_simple_card_sub_parse_of(cpu, &dai_props->cpu_dai,
b3ca11ff 365 &dai_link->cpu_of_node,
7c7b9cf5
KM
366 &dai_link->cpu_dai_name,
367 &cpu_args);
6a91a17b 368 if (ret < 0)
b3ca11ff
JS
369 goto dai_link_of_err;
370
1b5721b2 371 ret = asoc_simple_card_sub_parse_of(codec, &dai_props->codec_dai,
b3ca11ff 372 &dai_link->codec_of_node,
7c7b9cf5 373 &dai_link->codec_dai_name, NULL);
b3ca11ff
JS
374 if (ret < 0)
375 goto dai_link_of_err;
376
b3ca11ff 377 if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name) {
781cbebe
NC
378 ret = -EINVAL;
379 goto dai_link_of_err;
b3ca11ff
JS
380 }
381
e0ae225b
JN
382 if (plat) {
383 struct of_phandle_args args;
384
385 ret = of_parse_phandle_with_args(plat, "sound-dai",
386 "#sound-dai-cells", 0, &args);
387 dai_link->platform_of_node = args.np;
388 } else {
389 /* Assumes platform == cpu */
390 dai_link->platform_of_node = dai_link->cpu_of_node;
391 }
b3ca11ff 392
0dd4fc3c 393 /* DAI link name is created from CPU/CODEC dai name */
b3ca11ff
JS
394 name = devm_kzalloc(dev,
395 strlen(dai_link->cpu_dai_name) +
396 strlen(dai_link->codec_dai_name) + 2,
397 GFP_KERNEL);
31f3032c
VT
398 if (!name) {
399 ret = -ENOMEM;
400 goto dai_link_of_err;
401 }
402
b3ca11ff
JS
403 sprintf(name, "%s-%s", dai_link->cpu_dai_name,
404 dai_link->codec_dai_name);
405 dai_link->name = dai_link->stream_name = name;
2942a0e2 406 dai_link->ops = &asoc_simple_card_ops;
a5960bd5 407 dai_link->init = asoc_simple_card_dai_init;
b3ca11ff
JS
408
409 dev_dbg(dev, "\tname : %s\n", dai_link->stream_name);
1efb53a2
LPC
410 dev_dbg(dev, "\tformat : %04x\n", dai_link->dai_fmt);
411 dev_dbg(dev, "\tcpu : %s / %d\n",
b3ca11ff 412 dai_link->cpu_dai_name,
b3ca11ff 413 dai_props->cpu_dai.sysclk);
1efb53a2 414 dev_dbg(dev, "\tcodec : %s / %d\n",
b3ca11ff 415 dai_link->codec_dai_name,
b3ca11ff
JS
416 dai_props->codec_dai.sysclk);
417
179949bc 418 /*
0dd4fc3c
XL
419 * In soc_bind_dai_link() will check cpu name after
420 * of_node matching if dai_link has cpu_dai_name.
421 * but, it will never match if name was created by
422 * fmt_single_name() remove cpu_dai_name if cpu_args
423 * was 0. See:
179949bc
KM
424 * fmt_single_name()
425 * fmt_multiple_name()
426 */
7c7b9cf5
KM
427 if (!cpu_args)
428 dai_link->cpu_dai_name = NULL;
179949bc 429
b3ca11ff 430dai_link_of_err:
1b5721b2
KM
431 of_node_put(cpu);
432 of_node_put(codec);
433
6a91a17b
JFM
434 return ret;
435}
436
fa558c28 437static int asoc_simple_card_parse_of(struct device_node *node,
f531913f 438 struct simple_card_data *priv)
fa558c28 439{
f531913f 440 struct device *dev = simple_priv_to_dev(priv);
4476159f 441 enum of_gpio_flags flags;
c7099eb1 442 u32 val;
d4c22094 443 int ret;
fa558c28 444
2080437d
XL
445 if (!node)
446 return -EINVAL;
447
0dd4fc3c 448 /* Parse the card name from DT */
2772555b
XL
449 snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name");
450
0dd4fc3c 451 /* The off-codec widgets */
9d681f5b
XL
452 if (of_property_read_bool(node, "simple-audio-card,widgets")) {
453 ret = snd_soc_of_parse_audio_simple_widgets(&priv->snd_card,
454 "simple-audio-card,widgets");
455 if (ret)
456 return ret;
457 }
458
d4c22094 459 /* DAPM routes */
8c0b8230 460 if (of_property_read_bool(node, "simple-audio-card,routing")) {
b367a325 461 ret = snd_soc_of_parse_audio_routing(&priv->snd_card,
8c0b8230 462 "simple-audio-card,routing");
f87a3e82
XL
463 if (ret)
464 return ret;
465 }
d4c22094 466
2942a0e2 467 /* Factor to mclk, used in hw_params() */
c7099eb1
JS
468 ret = of_property_read_u32(node, "simple-audio-card,mclk-fs", &val);
469 if (ret == 0)
470 priv->mclk_fs = val;
2942a0e2 471
b3ca11ff
JS
472 dev_dbg(dev, "New simple-card: %s\n", priv->snd_card.name ?
473 priv->snd_card.name : "");
474
2080437d
XL
475 /* Single/Muti DAI link(s) & New style of DT node */
476 if (of_get_child_by_name(node, "simple-audio-card,dai-link")) {
b3ca11ff 477 struct device_node *np = NULL;
a44a750e
KM
478 int i = 0;
479
480 for_each_child_of_node(node, np) {
b3ca11ff 481 dev_dbg(dev, "\tlink %d:\n", i);
f531913f 482 ret = asoc_simple_card_dai_link_of(np, priv,
9810f537 483 i, false);
b3ca11ff
JS
484 if (ret < 0) {
485 of_node_put(np);
486 return ret;
487 }
a44a750e 488 i++;
6a91a17b 489 }
b3ca11ff 490 } else {
2080437d 491 /* For single DAI link & old style of DT node */
9810f537 492 ret = asoc_simple_card_dai_link_of(node, priv, 0, true);
6a91a17b 493 if (ret < 0)
b3ca11ff 494 return ret;
6a91a17b 495 }
dd41e0c4 496
4476159f
J
497 priv->gpio_hp_det = of_get_named_gpio_flags(node,
498 "simple-audio-card,hp-det-gpio", 0, &flags);
499 priv->gpio_hp_det_invert = !!(flags & OF_GPIO_ACTIVE_LOW);
3fe24032
DR
500 if (priv->gpio_hp_det == -EPROBE_DEFER)
501 return -EPROBE_DEFER;
502
4476159f
J
503 priv->gpio_mic_det = of_get_named_gpio_flags(node,
504 "simple-audio-card,mic-det-gpio", 0, &flags);
505 priv->gpio_mic_det_invert = !!(flags & OF_GPIO_ACTIVE_LOW);
3fe24032
DR
506 if (priv->gpio_mic_det == -EPROBE_DEFER)
507 return -EPROBE_DEFER;
508
2772555b 509 if (!priv->snd_card.name)
b3ca11ff 510 priv->snd_card.name = priv->snd_card.dai_link->name;
f687d900 511
fa558c28
KM
512 return 0;
513}
514
0dd4fc3c 515/* Decrease the reference count of the device nodes */
7ddfdb5c 516static int asoc_simple_card_unref(struct snd_soc_card *card)
e512e001 517{
e512e001 518 struct snd_soc_dai_link *dai_link;
e512e001
JFM
519 int num_links;
520
521 for (num_links = 0, dai_link = card->dai_link;
522 num_links < card->num_links;
523 num_links++, dai_link++) {
0099c762
JFM
524 of_node_put(dai_link->cpu_of_node);
525 of_node_put(dai_link->codec_of_node);
e512e001
JFM
526 }
527 return 0;
528}
529
f2390880
KM
530static int asoc_simple_card_probe(struct platform_device *pdev)
531{
45fce594 532 struct simple_card_data *priv;
5ca8ba41 533 struct snd_soc_dai_link *dai_link;
fa558c28 534 struct device_node *np = pdev->dev.of_node;
f89983ef 535 struct device *dev = &pdev->dev;
2080437d 536 int num_links, ret;
6a91a17b 537
0dd4fc3c 538 /* Get the number of DAI links */
2080437d 539 if (np && of_get_child_by_name(np, "simple-audio-card,dai-link"))
6a91a17b 540 num_links = of_get_child_count(np);
2080437d 541 else
6a91a17b 542 num_links = 1;
f2390880 543
0dd4fc3c 544 /* Allocate the private data and the DAI link array */
cf7dc23c 545 priv = devm_kzalloc(dev,
6a91a17b 546 sizeof(*priv) + sizeof(*dai_link) * num_links,
cf7dc23c 547 GFP_KERNEL);
ca65b492 548 if (!priv)
ca919fe4
XL
549 return -ENOMEM;
550
0dd4fc3c 551 /* Init snd_soc_card */
ca65b492
JFM
552 priv->snd_card.owner = THIS_MODULE;
553 priv->snd_card.dev = dev;
cf7dc23c 554 dai_link = priv->dai_link;
ca65b492 555 priv->snd_card.dai_link = dai_link;
6a91a17b 556 priv->snd_card.num_links = num_links;
201a0eac 557
2dbab978
GU
558 priv->gpio_hp_det = -ENOENT;
559 priv->gpio_mic_det = -ENOENT;
560
0dd4fc3c 561 /* Get room for the other properties */
cf7dc23c 562 priv->dai_props = devm_kzalloc(dev,
6a91a17b 563 sizeof(*priv->dai_props) * num_links,
cf7dc23c
JFM
564 GFP_KERNEL);
565 if (!priv->dai_props)
566 return -ENOMEM;
567
fa558c28 568 if (np && of_device_is_available(np)) {
ca919fe4 569
f531913f 570 ret = asoc_simple_card_parse_of(np, priv);
ca919fe4
XL
571 if (ret < 0) {
572 if (ret != -EPROBE_DEFER)
573 dev_err(dev, "parse error %d\n", ret);
e512e001 574 goto err;
fa558c28 575 }
6a91a17b 576
fa558c28 577 } else {
ca65b492
JFM
578 struct asoc_simple_card_info *cinfo;
579
580 cinfo = dev->platform_data;
581 if (!cinfo) {
34787d0a
XL
582 dev_err(dev, "no info for asoc-simple-card\n");
583 return -EINVAL;
584 }
fa558c28 585
781cbebe
NC
586 if (!cinfo->name ||
587 !cinfo->codec_dai.name ||
588 !cinfo->codec ||
589 !cinfo->platform ||
7722f830
JFM
590 !cinfo->cpu_dai.name) {
591 dev_err(dev, "insufficient asoc_simple_card_info settings\n");
592 return -EINVAL;
593 }
2bee9914 594
12ffa6fc 595 priv->snd_card.name = (cinfo->card) ? cinfo->card : cinfo->name;
5ca8ba41
JFM
596 dai_link->name = cinfo->name;
597 dai_link->stream_name = cinfo->name;
598 dai_link->platform_name = cinfo->platform;
599 dai_link->codec_name = cinfo->codec;
52008472
JFM
600 dai_link->cpu_dai_name = cinfo->cpu_dai.name;
601 dai_link->codec_dai_name = cinfo->codec_dai.name;
1efb53a2 602 dai_link->dai_fmt = cinfo->daifmt;
a5960bd5 603 dai_link->init = asoc_simple_card_dai_init;
cf7dc23c
JFM
604 memcpy(&priv->dai_props->cpu_dai, &cinfo->cpu_dai,
605 sizeof(priv->dai_props->cpu_dai));
606 memcpy(&priv->dai_props->codec_dai, &cinfo->codec_dai,
607 sizeof(priv->dai_props->codec_dai));
81985bd6 608
f2390880
KM
609 }
610
ca65b492 611 snd_soc_card_set_drvdata(&priv->snd_card, priv);
f2390880 612
e512e001 613 ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
e3c4a28b
XL
614 if (ret >= 0)
615 return ret;
e512e001
JFM
616
617err:
7ddfdb5c 618 asoc_simple_card_unref(&priv->snd_card);
e512e001 619 return ret;
f2390880
KM
620}
621
e3c4a28b
XL
622static int asoc_simple_card_remove(struct platform_device *pdev)
623{
3fe24032
DR
624 struct snd_soc_card *card = platform_get_drvdata(pdev);
625 struct simple_card_data *priv = snd_soc_card_get_drvdata(card);
626
627 if (gpio_is_valid(priv->gpio_hp_det))
628 snd_soc_jack_free_gpios(&simple_card_hp_jack, 1,
629 &simple_card_hp_jack_gpio);
630 if (gpio_is_valid(priv->gpio_mic_det))
631 snd_soc_jack_free_gpios(&simple_card_mic_jack, 1,
632 &simple_card_mic_jack_gpio);
633
7ddfdb5c 634 return asoc_simple_card_unref(card);
e3c4a28b
XL
635}
636
fa558c28
KM
637static const struct of_device_id asoc_simple_of_match[] = {
638 { .compatible = "simple-audio-card", },
639 {},
640};
641MODULE_DEVICE_TABLE(of, asoc_simple_of_match);
642
f2390880
KM
643static struct platform_driver asoc_simple_card = {
644 .driver = {
781cbebe 645 .name = "asoc-simple-card",
7c376711 646 .pm = &snd_soc_pm_ops,
fa558c28 647 .of_match_table = asoc_simple_of_match,
f2390880 648 },
781cbebe 649 .probe = asoc_simple_card_probe,
e3c4a28b 650 .remove = asoc_simple_card_remove,
f2390880
KM
651};
652
653module_platform_driver(asoc_simple_card);
654
c445be35 655MODULE_ALIAS("platform:asoc-simple-card");
f2390880
KM
656MODULE_LICENSE("GPL");
657MODULE_DESCRIPTION("ASoC Simple Sound Card");
658MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
This page took 0.646224 seconds and 5 git commands to generate.