abe31dcfb4e725847ba1c40170e5bece9c7d8ae3
[deliverable/linux.git] / sound / soc / generic / simple-scu-card.c
1 /*
2 * ASoC simple SCU sound card support
3 *
4 * Copyright (C) 2015 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * based on ${LINUX}/sound/soc/generic/simple-card.c
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 version 2 as
11 * published by the Free Software Foundation.
12 */
13 #include <linux/clk.h>
14 #include <linux/device.h>
15 #include <linux/module.h>
16 #include <linux/of.h>
17 #include <linux/of_device.h>
18 #include <linux/platform_device.h>
19 #include <linux/string.h>
20 #include <sound/jack.h>
21 #include <sound/soc.h>
22 #include <sound/soc-dai.h>
23 #include <sound/simple_card_utils.h>
24
25 struct asoc_simple_card_priv {
26 struct snd_soc_card snd_card;
27 struct snd_soc_codec_conf codec_conf;
28 struct asoc_simple_dai *dai_props;
29 struct snd_soc_dai_link *dai_link;
30 u32 convert_rate;
31 u32 convert_channels;
32 };
33
34 #define simple_priv_to_dev(priv) ((priv)->snd_card.dev)
35 #define simple_priv_to_link(priv, i) ((priv)->snd_card.dai_link + (i))
36 #define simple_priv_to_props(priv, i) ((priv)->dai_props + (i))
37
38 #define DAI "sound-dai"
39 #define CELL "#sound-dai-cells"
40 #define PREFIX "simple-audio-card,"
41
42 static int asoc_simple_card_startup(struct snd_pcm_substream *substream)
43 {
44 struct snd_soc_pcm_runtime *rtd = substream->private_data;
45 struct asoc_simple_card_priv *priv = snd_soc_card_get_drvdata(rtd->card);
46 struct asoc_simple_dai *dai_props =
47 simple_priv_to_props(priv, rtd->num);
48
49 return clk_prepare_enable(dai_props->clk);
50 }
51
52 static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
53 {
54 struct snd_soc_pcm_runtime *rtd = substream->private_data;
55 struct asoc_simple_card_priv *priv = snd_soc_card_get_drvdata(rtd->card);
56 struct asoc_simple_dai *dai_props =
57 simple_priv_to_props(priv, rtd->num);
58
59 clk_disable_unprepare(dai_props->clk);
60 }
61
62 static struct snd_soc_ops asoc_simple_card_ops = {
63 .startup = asoc_simple_card_startup,
64 .shutdown = asoc_simple_card_shutdown,
65 };
66
67 static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
68 {
69 struct asoc_simple_card_priv *priv = snd_soc_card_get_drvdata(rtd->card);
70 struct snd_soc_dai *dai;
71 struct snd_soc_dai_link *dai_link;
72 struct asoc_simple_dai *dai_props;
73 int num = rtd->num;
74
75 dai_link = simple_priv_to_link(priv, num);
76 dai_props = simple_priv_to_props(priv, num);
77 dai = dai_link->dynamic ?
78 rtd->cpu_dai :
79 rtd->codec_dai;
80
81 return asoc_simple_card_init_dai(dai, dai_props);
82 }
83
84 static int asoc_simple_card_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
85 struct snd_pcm_hw_params *params)
86 {
87 struct asoc_simple_card_priv *priv = snd_soc_card_get_drvdata(rtd->card);
88 struct snd_interval *rate = hw_param_interval(params,
89 SNDRV_PCM_HW_PARAM_RATE);
90 struct snd_interval *channels = hw_param_interval(params,
91 SNDRV_PCM_HW_PARAM_CHANNELS);
92
93 if (priv->convert_rate)
94 rate->min =
95 rate->max = priv->convert_rate;
96
97 if (priv->convert_channels)
98 channels->min =
99 channels->max = priv->convert_channels;
100
101 return 0;
102 }
103
104 static int asoc_simple_card_parse_links(struct device_node *np,
105 struct asoc_simple_card_priv *priv,
106 unsigned int daifmt,
107 int idx, bool is_fe)
108 {
109 struct device *dev = simple_priv_to_dev(priv);
110 struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
111 struct asoc_simple_dai *dai_props = simple_priv_to_props(priv, idx);
112 int ret;
113
114 /* Parse TDM slot */
115 ret = snd_soc_of_parse_tdm_slot(np,
116 &dai_props->tx_slot_mask,
117 &dai_props->rx_slot_mask,
118 &dai_props->slots,
119 &dai_props->slot_width);
120 if (ret)
121 return ret;
122
123 if (is_fe) {
124 int is_single_links = 0;
125
126 /* BE is dummy */
127 dai_link->codec_of_node = NULL;
128 dai_link->codec_dai_name = "snd-soc-dummy-dai";
129 dai_link->codec_name = "snd-soc-dummy";
130
131 /* FE settings */
132 dai_link->dynamic = 1;
133 dai_link->dpcm_merged_format = 1;
134
135 ret = asoc_simple_card_parse_cpu(np, dai_link, DAI, CELL,
136 &is_single_links);
137 if (ret)
138 return ret;
139
140 ret = asoc_simple_card_parse_clk_cpu(np, dai_link, dai_props);
141 if (ret < 0)
142 return ret;
143
144 ret = asoc_simple_card_set_dailink_name(dev, dai_link,
145 "fe.%s",
146 dai_link->cpu_dai_name);
147 if (ret < 0)
148 return ret;
149
150 asoc_simple_card_canonicalize_cpu(dai_link, is_single_links);
151 } else {
152 /* FE is dummy */
153 dai_link->cpu_of_node = NULL;
154 dai_link->cpu_dai_name = "snd-soc-dummy-dai";
155 dai_link->cpu_name = "snd-soc-dummy";
156
157 /* BE settings */
158 dai_link->no_pcm = 1;
159 dai_link->be_hw_params_fixup = asoc_simple_card_be_hw_params_fixup;
160
161 ret = asoc_simple_card_parse_codec(np, dai_link, DAI, CELL);
162 if (ret < 0)
163 return ret;
164
165 ret = asoc_simple_card_parse_clk_codec(np, dai_link, dai_props);
166 if (ret < 0)
167 return ret;
168
169 ret = asoc_simple_card_set_dailink_name(dev, dai_link,
170 "be.%s",
171 dai_link->codec_dai_name);
172 if (ret < 0)
173 return ret;
174
175 snd_soc_of_parse_audio_prefix(&priv->snd_card,
176 &priv->codec_conf,
177 dai_link->codec_of_node,
178 PREFIX "prefix");
179 }
180
181 ret = asoc_simple_card_canonicalize_dailink(dai_link);
182 if (ret < 0)
183 return ret;
184
185 dai_link->dai_fmt = daifmt;
186 dai_link->dpcm_playback = 1;
187 dai_link->dpcm_capture = 1;
188 dai_link->ops = &asoc_simple_card_ops;
189 dai_link->init = asoc_simple_card_dai_init;
190
191 dev_dbg(dev, "\t%s / %04x / %d\n",
192 dai_link->name,
193 dai_link->dai_fmt,
194 dai_props->sysclk);
195
196 return 0;
197 }
198
199 static int asoc_simple_card_dai_link_of(struct device_node *node,
200 struct asoc_simple_card_priv *priv)
201 {
202 struct device *dev = simple_priv_to_dev(priv);
203 struct device_node *np;
204 unsigned int daifmt = 0;
205 int ret, i;
206 bool is_fe;
207
208 /* find 1st codec */
209 np = of_get_child_by_name(node, PREFIX "codec");
210 if (!np)
211 return -ENODEV;
212
213 ret = asoc_simple_card_parse_daifmt(dev, node, np,
214 PREFIX, &daifmt);
215 if (ret < 0)
216 return ret;
217
218 i = 0;
219 for_each_child_of_node(node, np) {
220 is_fe = false;
221 if (strcmp(np->name, PREFIX "cpu") == 0)
222 is_fe = true;
223
224 ret = asoc_simple_card_parse_links(np, priv, daifmt, i, is_fe);
225 if (ret < 0)
226 return ret;
227 i++;
228 }
229
230 return 0;
231 }
232
233 static int asoc_simple_card_parse_of(struct device_node *node,
234 struct asoc_simple_card_priv *priv,
235 struct device *dev)
236 {
237 struct asoc_simple_dai *props;
238 struct snd_soc_dai_link *links;
239 int ret;
240 int num;
241
242 if (!node)
243 return -EINVAL;
244
245 num = of_get_child_count(node);
246 props = devm_kzalloc(dev, sizeof(*props) * num, GFP_KERNEL);
247 links = devm_kzalloc(dev, sizeof(*links) * num, GFP_KERNEL);
248 if (!props || !links)
249 return -ENOMEM;
250
251 priv->dai_props = props;
252 priv->dai_link = links;
253
254 /* Init snd_soc_card */
255 priv->snd_card.owner = THIS_MODULE;
256 priv->snd_card.dev = dev;
257 priv->snd_card.dai_link = priv->dai_link;
258 priv->snd_card.num_links = num;
259 priv->snd_card.codec_conf = &priv->codec_conf;
260 priv->snd_card.num_configs = 1;
261
262 ret = snd_soc_of_parse_audio_routing(&priv->snd_card, PREFIX "routing");
263 if (ret < 0)
264 return ret;
265
266 /* sampling rate convert */
267 of_property_read_u32(node, PREFIX "convert-rate", &priv->convert_rate);
268
269 /* channels transfer */
270 of_property_read_u32(node, PREFIX "convert-channels", &priv->convert_channels);
271
272 ret = asoc_simple_card_dai_link_of(node, priv);
273 if (ret < 0)
274 return ret;
275
276 ret = asoc_simple_card_parse_card_name(&priv->snd_card, PREFIX);
277 if (ret < 0)
278 return ret;
279
280 dev_dbg(dev, "New card: %s\n",
281 priv->snd_card.name ? priv->snd_card.name : "");
282 dev_dbg(dev, "convert_rate %d\n", priv->convert_rate);
283 dev_dbg(dev, "convert_channels %d\n", priv->convert_channels);
284
285 return 0;
286 }
287
288 static int asoc_simple_card_probe(struct platform_device *pdev)
289 {
290 struct asoc_simple_card_priv *priv;
291 struct device_node *np = pdev->dev.of_node;
292 struct device *dev = &pdev->dev;
293 int ret;
294
295 /* Allocate the private data */
296 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
297 if (!priv)
298 return -ENOMEM;
299
300 ret = asoc_simple_card_parse_of(np, priv, dev);
301 if (ret < 0) {
302 if (ret != -EPROBE_DEFER)
303 dev_err(dev, "parse error %d\n", ret);
304 goto err;
305 }
306
307 snd_soc_card_set_drvdata(&priv->snd_card, priv);
308
309 ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
310 if (ret >= 0)
311 return ret;
312 err:
313 asoc_simple_card_clean_reference(&priv->snd_card);
314
315 return ret;
316 }
317
318 static int asoc_simple_card_remove(struct platform_device *pdev)
319 {
320 struct snd_soc_card *card = platform_get_drvdata(pdev);
321
322 return asoc_simple_card_clean_reference(card);
323 }
324
325 static const struct of_device_id asoc_simple_of_match[] = {
326 { .compatible = "renesas,rsrc-card", },
327 { .compatible = "simple-scu-audio-card", },
328 {},
329 };
330 MODULE_DEVICE_TABLE(of, asoc_simple_of_match);
331
332 static struct platform_driver asoc_simple_card = {
333 .driver = {
334 .name = "simple-scu-audio-card",
335 .of_match_table = asoc_simple_of_match,
336 },
337 .probe = asoc_simple_card_probe,
338 .remove = asoc_simple_card_remove,
339 };
340
341 module_platform_driver(asoc_simple_card);
342
343 MODULE_ALIAS("platform:asoc-simple-scu-card");
344 MODULE_LICENSE("GPL v2");
345 MODULE_DESCRIPTION("ASoC Simple SCU Sound Card");
346 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
This page took 0.090913 seconds and 4 git commands to generate.