2 * ASoC simple sound card support
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
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.
11 #include <linux/clk.h>
12 #include <linux/device.h>
13 #include <linux/gpio.h>
14 #include <linux/module.h>
16 #include <linux/of_gpio.h>
17 #include <linux/platform_device.h>
18 #include <linux/string.h>
19 #include <sound/jack.h>
20 #include <sound/simple_card.h>
21 #include <sound/soc-dai.h>
22 #include <sound/soc.h>
24 struct asoc_simple_jack {
25 struct snd_soc_jack jack;
26 struct snd_soc_jack_pin pin;
27 struct snd_soc_jack_gpio gpio;
30 struct simple_card_data {
31 struct snd_soc_card snd_card;
32 struct simple_dai_props {
33 struct asoc_simple_dai cpu_dai;
34 struct asoc_simple_dai codec_dai;
38 struct asoc_simple_jack hp_jack;
39 struct asoc_simple_jack mic_jack;
40 struct snd_soc_dai_link *dai_link;
43 #define simple_priv_to_card(priv) (&(priv)->snd_card)
44 #define simple_priv_to_props(priv, i) ((priv)->dai_props + (i))
45 #define simple_priv_to_dev(priv) (simple_priv_to_card(priv)->dev)
46 #define simple_priv_to_link(priv, i) (simple_priv_to_card(priv)->dai_link + (i))
48 #define DAI "sound-dai"
49 #define CELL "#sound-dai-cells"
50 #define PREFIX "simple-audio-card,"
52 #define asoc_simple_card_init_hp(card, sjack, prefix)\
53 asoc_simple_card_init_jack(card, sjack, 1, prefix)
54 #define asoc_simple_card_init_mic(card, sjack, prefix)\
55 asoc_simple_card_init_jack(card, sjack, 0, prefix)
56 static int asoc_simple_card_init_jack(struct snd_soc_card *card,
57 struct asoc_simple_jack *sjack,
58 int is_hp, char *prefix)
60 struct device *dev = card->dev;
61 enum of_gpio_flags flags;
68 sjack->gpio.gpio = -ENOENT;
71 snprintf(prop, sizeof(prop), "%shp-det-gpio", prefix);
72 pin_name = "Headphones";
73 gpio_name = "Headphone detection";
74 mask = SND_JACK_HEADPHONE;
76 snprintf(prop, sizeof(prop), "%smic-det-gpio", prefix);
77 pin_name = "Mic Jack";
78 gpio_name = "Mic detection";
79 mask = SND_JACK_MICROPHONE;
82 det = of_get_named_gpio_flags(dev->of_node, prop, 0, &flags);
83 if (det == -EPROBE_DEFER)
86 if (gpio_is_valid(det)) {
87 sjack->pin.pin = pin_name;
88 sjack->pin.mask = mask;
90 sjack->gpio.name = gpio_name;
91 sjack->gpio.report = mask;
92 sjack->gpio.gpio = det;
93 sjack->gpio.invert = !!(flags & OF_GPIO_ACTIVE_LOW);
94 sjack->gpio.debounce_time = 150;
96 snd_soc_card_jack_new(card, pin_name, mask,
100 snd_soc_jack_add_gpios(&sjack->jack, 1,
107 static void asoc_simple_card_remove_jack(struct asoc_simple_jack *sjack)
109 if (gpio_is_valid(sjack->gpio.gpio))
110 snd_soc_jack_free_gpios(&sjack->jack, 1, &sjack->gpio);
113 static int asoc_simple_card_startup(struct snd_pcm_substream *substream)
115 struct snd_soc_pcm_runtime *rtd = substream->private_data;
116 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
117 struct simple_dai_props *dai_props =
118 simple_priv_to_props(priv, rtd->num);
121 ret = clk_prepare_enable(dai_props->cpu_dai.clk);
125 ret = clk_prepare_enable(dai_props->codec_dai.clk);
127 clk_disable_unprepare(dai_props->cpu_dai.clk);
132 static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
134 struct snd_soc_pcm_runtime *rtd = substream->private_data;
135 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
136 struct simple_dai_props *dai_props =
137 simple_priv_to_props(priv, rtd->num);
139 clk_disable_unprepare(dai_props->cpu_dai.clk);
141 clk_disable_unprepare(dai_props->codec_dai.clk);
144 static int asoc_simple_card_hw_params(struct snd_pcm_substream *substream,
145 struct snd_pcm_hw_params *params)
147 struct snd_soc_pcm_runtime *rtd = substream->private_data;
148 struct snd_soc_dai *codec_dai = rtd->codec_dai;
149 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
150 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
151 struct simple_dai_props *dai_props =
152 simple_priv_to_props(priv, rtd->num);
153 unsigned int mclk, mclk_fs = 0;
157 mclk_fs = priv->mclk_fs;
158 else if (dai_props->mclk_fs)
159 mclk_fs = dai_props->mclk_fs;
162 mclk = params_rate(params) * mclk_fs;
163 ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
165 if (ret && ret != -ENOTSUPP)
168 ret = snd_soc_dai_set_sysclk(cpu_dai, 0, mclk,
170 if (ret && ret != -ENOTSUPP)
178 static const struct snd_soc_ops asoc_simple_card_ops = {
179 .startup = asoc_simple_card_startup,
180 .shutdown = asoc_simple_card_shutdown,
181 .hw_params = asoc_simple_card_hw_params,
184 static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
186 struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
187 struct snd_soc_dai *codec = rtd->codec_dai;
188 struct snd_soc_dai *cpu = rtd->cpu_dai;
189 struct simple_dai_props *dai_props =
190 simple_priv_to_props(priv, rtd->num);
193 ret = asoc_simple_card_init_dai(codec, &dai_props->codec_dai);
197 ret = asoc_simple_card_init_dai(cpu, &dai_props->cpu_dai);
201 ret = asoc_simple_card_init_hp(rtd->card, &priv->hp_jack, PREFIX);
205 ret = asoc_simple_card_init_mic(rtd->card, &priv->mic_jack, PREFIX);
212 static int asoc_simple_card_dai_link_of(struct device_node *node,
213 struct simple_card_data *priv,
215 bool is_top_level_node)
217 struct device *dev = simple_priv_to_dev(priv);
218 struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
219 struct simple_dai_props *dai_props = simple_priv_to_props(priv, idx);
220 struct asoc_simple_dai *cpu_dai = &dai_props->cpu_dai;
221 struct asoc_simple_dai *codec_dai = &dai_props->codec_dai;
222 struct device_node *cpu = NULL;
223 struct device_node *plat = NULL;
224 struct device_node *codec = NULL;
229 /* For single DAI link & old style of DT node */
230 if (is_top_level_node)
233 snprintf(prop, sizeof(prop), "%scpu", prefix);
234 cpu = of_get_child_by_name(node, prop);
236 snprintf(prop, sizeof(prop), "%splat", prefix);
237 plat = of_get_child_by_name(node, prop);
239 snprintf(prop, sizeof(prop), "%scodec", prefix);
240 codec = of_get_child_by_name(node, prop);
242 if (!cpu || !codec) {
244 dev_err(dev, "%s: Can't find %s DT node\n", __func__, prop);
245 goto dai_link_of_err;
248 ret = asoc_simple_card_parse_daifmt(dev, node, codec,
249 prefix, &dai_link->dai_fmt);
251 goto dai_link_of_err;
253 of_property_read_u32(node, "mclk-fs", &dai_props->mclk_fs);
255 ret = asoc_simple_card_parse_cpu(cpu, dai_link,
256 DAI, CELL, &single_cpu);
258 goto dai_link_of_err;
260 ret = asoc_simple_card_parse_codec(codec, dai_link, DAI, CELL);
262 goto dai_link_of_err;
264 ret = asoc_simple_card_parse_platform(plat, dai_link, DAI, CELL);
266 goto dai_link_of_err;
268 ret = snd_soc_of_parse_tdm_slot(cpu, &cpu_dai->tx_slot_mask,
269 &cpu_dai->rx_slot_mask,
271 &cpu_dai->slot_width);
273 goto dai_link_of_err;
275 ret = snd_soc_of_parse_tdm_slot(codec, &codec_dai->tx_slot_mask,
276 &codec_dai->rx_slot_mask,
278 &codec_dai->slot_width);
280 goto dai_link_of_err;
282 ret = asoc_simple_card_parse_clk_cpu(dev, cpu, dai_link, cpu_dai);
284 goto dai_link_of_err;
286 ret = asoc_simple_card_parse_clk_codec(dev, codec, dai_link, codec_dai);
288 goto dai_link_of_err;
290 ret = asoc_simple_card_canonicalize_dailink(dai_link);
292 goto dai_link_of_err;
294 ret = asoc_simple_card_set_dailink_name(dev, dai_link,
296 dai_link->cpu_dai_name,
297 dai_link->codec_dai_name);
299 goto dai_link_of_err;
301 dai_link->ops = &asoc_simple_card_ops;
302 dai_link->init = asoc_simple_card_dai_init;
304 asoc_simple_card_canonicalize_cpu(dai_link, single_cpu);
313 static int asoc_simple_card_parse_aux_devs(struct device_node *node,
314 struct simple_card_data *priv)
316 struct device *dev = simple_priv_to_dev(priv);
317 struct device_node *aux_node;
318 struct snd_soc_card *card = simple_priv_to_card(priv);
321 if (!of_find_property(node, PREFIX "aux-devs", &len))
322 return 0; /* Ok to have no aux-devs */
324 n = len / sizeof(__be32);
328 card->aux_dev = devm_kzalloc(dev,
329 n * sizeof(*card->aux_dev), GFP_KERNEL);
333 for (i = 0; i < n; i++) {
334 aux_node = of_parse_phandle(node, PREFIX "aux-devs", i);
337 card->aux_dev[i].codec_of_node = aux_node;
340 card->num_aux_devs = n;
344 static int asoc_simple_card_parse_of(struct device_node *node,
345 struct simple_card_data *priv)
347 struct device *dev = simple_priv_to_dev(priv);
348 struct snd_soc_card *card = simple_priv_to_card(priv);
349 struct device_node *dai_link;
355 dai_link = of_get_child_by_name(node, PREFIX "dai-link");
357 /* The off-codec widgets */
358 if (of_property_read_bool(node, PREFIX "widgets")) {
359 ret = snd_soc_of_parse_audio_simple_widgets(card,
366 if (of_property_read_bool(node, PREFIX "routing")) {
367 ret = snd_soc_of_parse_audio_routing(card,
373 /* Factor to mclk, used in hw_params() */
374 of_property_read_u32(node, PREFIX "mclk-fs", &priv->mclk_fs);
376 /* Single/Muti DAI link(s) & New style of DT node */
378 struct device_node *np = NULL;
381 for_each_child_of_node(node, np) {
382 dev_dbg(dev, "\tlink %d:\n", i);
383 ret = asoc_simple_card_dai_link_of(np, priv,
392 /* For single DAI link & old style of DT node */
393 ret = asoc_simple_card_dai_link_of(node, priv, 0, true);
398 ret = asoc_simple_card_parse_card_name(card, PREFIX);
402 ret = asoc_simple_card_parse_aux_devs(node, priv);
405 of_node_put(dai_link);
410 static int asoc_simple_card_probe(struct platform_device *pdev)
412 struct simple_card_data *priv;
413 struct snd_soc_dai_link *dai_link;
414 struct simple_dai_props *dai_props;
415 struct device *dev = &pdev->dev;
416 struct device_node *np = dev->of_node;
417 struct snd_soc_card *card;
420 /* Get the number of DAI links */
421 if (np && of_get_child_by_name(np, PREFIX "dai-link"))
422 num = of_get_child_count(np);
426 /* Allocate the private data and the DAI link array */
427 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
431 dai_props = devm_kzalloc(dev, sizeof(*dai_props) * num, GFP_KERNEL);
432 dai_link = devm_kzalloc(dev, sizeof(*dai_link) * num, GFP_KERNEL);
433 if (!dai_props || !dai_link)
436 priv->dai_props = dai_props;
437 priv->dai_link = dai_link;
439 /* Init snd_soc_card */
440 card = simple_priv_to_card(priv);
441 card->owner = THIS_MODULE;
443 card->dai_link = priv->dai_link;
444 card->num_links = num;
446 if (np && of_device_is_available(np)) {
448 ret = asoc_simple_card_parse_of(np, priv);
450 if (ret != -EPROBE_DEFER)
451 dev_err(dev, "parse error %d\n", ret);
456 struct asoc_simple_card_info *cinfo;
458 cinfo = dev->platform_data;
460 dev_err(dev, "no info for asoc-simple-card\n");
465 !cinfo->codec_dai.name ||
468 !cinfo->cpu_dai.name) {
469 dev_err(dev, "insufficient asoc_simple_card_info settings\n");
473 card->name = (cinfo->card) ? cinfo->card : cinfo->name;
474 dai_link->name = cinfo->name;
475 dai_link->stream_name = cinfo->name;
476 dai_link->platform_name = cinfo->platform;
477 dai_link->codec_name = cinfo->codec;
478 dai_link->cpu_dai_name = cinfo->cpu_dai.name;
479 dai_link->codec_dai_name = cinfo->codec_dai.name;
480 dai_link->dai_fmt = cinfo->daifmt;
481 dai_link->init = asoc_simple_card_dai_init;
482 memcpy(&priv->dai_props->cpu_dai, &cinfo->cpu_dai,
483 sizeof(priv->dai_props->cpu_dai));
484 memcpy(&priv->dai_props->codec_dai, &cinfo->codec_dai,
485 sizeof(priv->dai_props->codec_dai));
488 snd_soc_card_set_drvdata(card, priv);
490 ret = devm_snd_soc_register_card(dev, card);
496 asoc_simple_card_clean_reference(card);
501 static int asoc_simple_card_remove(struct platform_device *pdev)
503 struct snd_soc_card *card = platform_get_drvdata(pdev);
504 struct simple_card_data *priv = snd_soc_card_get_drvdata(card);
506 asoc_simple_card_remove_jack(&priv->hp_jack);
507 asoc_simple_card_remove_jack(&priv->mic_jack);
509 return asoc_simple_card_clean_reference(card);
512 static const struct of_device_id asoc_simple_of_match[] = {
513 { .compatible = "simple-audio-card", },
516 MODULE_DEVICE_TABLE(of, asoc_simple_of_match);
518 static struct platform_driver asoc_simple_card = {
520 .name = "asoc-simple-card",
521 .pm = &snd_soc_pm_ops,
522 .of_match_table = asoc_simple_of_match,
524 .probe = asoc_simple_card_probe,
525 .remove = asoc_simple_card_remove,
528 module_platform_driver(asoc_simple_card);
530 MODULE_ALIAS("platform:asoc-simple-card");
531 MODULE_LICENSE("GPL v2");
532 MODULE_DESCRIPTION("ASoC Simple Sound Card");
533 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");