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