blob: 0180b286bee351858d76b0fbe44ac606f4ed6095 [file] [log] [blame]
Kuninori Morimoto2692c1c2017-04-20 01:36:08 +00001/*
2 * ASoC audio graph sound card support
3 *
4 * Copyright (C) 2016 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/gpio.h>
16#include <linux/module.h>
17#include <linux/of.h>
18#include <linux/of_device.h>
19#include <linux/of_gpio.h>
20#include <linux/of_graph.h>
21#include <linux/platform_device.h>
22#include <linux/string.h>
23#include <sound/jack.h>
24#include <sound/simple_card_utils.h>
25
26struct graph_card_data {
27 struct snd_soc_card snd_card;
28 struct graph_dai_props {
29 struct asoc_simple_dai cpu_dai;
30 struct asoc_simple_dai codec_dai;
31 } *dai_props;
32 struct snd_soc_dai_link *dai_link;
33};
34
35#define graph_priv_to_card(priv) (&(priv)->snd_card)
36#define graph_priv_to_props(priv, i) ((priv)->dai_props + (i))
37#define graph_priv_to_dev(priv) (graph_priv_to_card(priv)->dev)
38#define graph_priv_to_link(priv, i) (graph_priv_to_card(priv)->dai_link + (i))
39
40static int asoc_graph_card_startup(struct snd_pcm_substream *substream)
41{
42 struct snd_soc_pcm_runtime *rtd = substream->private_data;
43 struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
44 struct graph_dai_props *dai_props = graph_priv_to_props(priv, rtd->num);
45 int ret;
46
47 ret = clk_prepare_enable(dai_props->cpu_dai.clk);
48 if (ret)
49 return ret;
50
51 ret = clk_prepare_enable(dai_props->codec_dai.clk);
52 if (ret)
53 clk_disable_unprepare(dai_props->cpu_dai.clk);
54
55 return ret;
56}
57
58static void asoc_graph_card_shutdown(struct snd_pcm_substream *substream)
59{
60 struct snd_soc_pcm_runtime *rtd = substream->private_data;
61 struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
62 struct graph_dai_props *dai_props = graph_priv_to_props(priv, rtd->num);
63
64 clk_disable_unprepare(dai_props->cpu_dai.clk);
65
66 clk_disable_unprepare(dai_props->codec_dai.clk);
67}
68
69static struct snd_soc_ops asoc_graph_card_ops = {
70 .startup = asoc_graph_card_startup,
71 .shutdown = asoc_graph_card_shutdown,
72};
73
74static int asoc_graph_card_dai_init(struct snd_soc_pcm_runtime *rtd)
75{
76 struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
77 struct snd_soc_dai *codec = rtd->codec_dai;
78 struct snd_soc_dai *cpu = rtd->cpu_dai;
79 struct graph_dai_props *dai_props =
80 graph_priv_to_props(priv, rtd->num);
81 int ret;
82
83 ret = asoc_simple_card_init_dai(codec, &dai_props->codec_dai);
84 if (ret < 0)
85 return ret;
86
87 ret = asoc_simple_card_init_dai(cpu, &dai_props->cpu_dai);
88 if (ret < 0)
89 return ret;
90
91 return 0;
92}
93
94static int asoc_graph_card_dai_link_of(struct device_node *cpu_port,
95 struct graph_card_data *priv,
96 int idx)
97{
98 struct device *dev = graph_priv_to_dev(priv);
99 struct snd_soc_dai_link *dai_link = graph_priv_to_link(priv, idx);
100 struct graph_dai_props *dai_props = graph_priv_to_props(priv, idx);
101 struct asoc_simple_dai *cpu_dai = &dai_props->cpu_dai;
102 struct asoc_simple_dai *codec_dai = &dai_props->codec_dai;
103 struct snd_soc_card *card = graph_priv_to_card(priv);
104 struct device_node *cpu_ep = of_get_next_child(cpu_port, NULL);
105 struct device_node *codec_ep = of_graph_get_remote_endpoint(cpu_ep);
106 struct device_node *rcpu_ep = of_graph_get_remote_endpoint(codec_ep);
107 int ret;
108
109 if (rcpu_ep != cpu_ep) {
Colin Ian Kinga619f042017-05-18 08:48:15 +0100110 dev_err(dev, "remote-endpoint mismatch (%s/%s/%s)\n",
Kuninori Morimoto2692c1c2017-04-20 01:36:08 +0000111 cpu_ep->name, codec_ep->name, rcpu_ep->name);
112 ret = -EINVAL;
113 goto dai_link_of_err;
114 }
115
116 ret = asoc_simple_card_parse_daifmt(dev, cpu_ep, codec_ep,
117 NULL, &dai_link->dai_fmt);
118 if (ret < 0)
119 goto dai_link_of_err;
120
121 /*
122 * we need to consider "mclk-fs" around here
123 * see simple-card
124 */
125
126 ret = asoc_simple_card_parse_graph_cpu(cpu_ep, dai_link);
127 if (ret < 0)
128 goto dai_link_of_err;
129
130 ret = asoc_simple_card_parse_graph_codec(codec_ep, dai_link);
131 if (ret < 0)
132 goto dai_link_of_err;
133
134 ret = snd_soc_of_parse_tdm_slot(cpu_ep,
135 &cpu_dai->tx_slot_mask,
136 &cpu_dai->rx_slot_mask,
137 &cpu_dai->slots,
138 &cpu_dai->slot_width);
139 if (ret < 0)
140 goto dai_link_of_err;
141
142 ret = snd_soc_of_parse_tdm_slot(codec_ep,
143 &codec_dai->tx_slot_mask,
144 &codec_dai->rx_slot_mask,
145 &codec_dai->slots,
146 &codec_dai->slot_width);
147 if (ret < 0)
148 goto dai_link_of_err;
149
150 ret = asoc_simple_card_parse_clk_cpu(dev, cpu_ep, dai_link, cpu_dai);
151 if (ret < 0)
152 goto dai_link_of_err;
153
154 ret = asoc_simple_card_parse_clk_codec(dev, codec_ep, dai_link, codec_dai);
155 if (ret < 0)
156 goto dai_link_of_err;
157
158 ret = asoc_simple_card_canonicalize_dailink(dai_link);
159 if (ret < 0)
160 goto dai_link_of_err;
161
162 ret = asoc_simple_card_set_dailink_name(dev, dai_link,
163 "%s-%s",
164 dai_link->cpu_dai_name,
165 dai_link->codec_dai_name);
166 if (ret < 0)
167 goto dai_link_of_err;
168
169 dai_link->ops = &asoc_graph_card_ops;
170 dai_link->init = asoc_graph_card_dai_init;
171
Kuninori Morimoto2692c1c2017-04-20 01:36:08 +0000172 asoc_simple_card_canonicalize_cpu(dai_link,
173 card->num_links == 1);
174
175dai_link_of_err:
176 of_node_put(cpu_ep);
177 of_node_put(rcpu_ep);
178 of_node_put(codec_ep);
179
180 return ret;
181}
182
183static int asoc_graph_card_parse_of(struct graph_card_data *priv)
184{
185 struct of_phandle_iterator it;
186 struct device *dev = graph_priv_to_dev(priv);
187 struct snd_soc_card *card = graph_priv_to_card(priv);
188 struct device_node *node = dev->of_node;
189 int rc, idx = 0;
190 int ret;
191
192 /*
193 * we need to consider "widgets", "routing", "mclk-fs" around here
194 * see simple-card
195 */
196
197 of_for_each_phandle(&it, rc, node, "dais", NULL, 0) {
198 ret = asoc_graph_card_dai_link_of(it.node, priv, idx++);
199 of_node_put(it.node);
200 if (ret < 0)
201 return ret;
202 }
203
204 return asoc_simple_card_parse_card_name(card, NULL);
205}
206
207static int asoc_graph_get_dais_count(struct device *dev)
208{
209 struct of_phandle_iterator it;
210 struct device_node *node = dev->of_node;
211 int count = 0;
212 int rc;
213
214 of_for_each_phandle(&it, rc, node, "dais", NULL, 0) {
215 count++;
216 of_node_put(it.node);
217 }
218
219 return count;
220}
221
222static int asoc_graph_card_probe(struct platform_device *pdev)
223{
224 struct graph_card_data *priv;
225 struct snd_soc_dai_link *dai_link;
226 struct graph_dai_props *dai_props;
227 struct device *dev = &pdev->dev;
228 struct snd_soc_card *card;
229 int num, ret;
230
231 /* Allocate the private data and the DAI link array */
232 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
233 if (!priv)
234 return -ENOMEM;
235
236 num = asoc_graph_get_dais_count(dev);
237 if (num == 0)
238 return -EINVAL;
239
240 dai_props = devm_kzalloc(dev, sizeof(*dai_props) * num, GFP_KERNEL);
241 dai_link = devm_kzalloc(dev, sizeof(*dai_link) * num, GFP_KERNEL);
242 if (!dai_props || !dai_link)
243 return -ENOMEM;
244
245 priv->dai_props = dai_props;
246 priv->dai_link = dai_link;
247
248 /* Init snd_soc_card */
249 card = graph_priv_to_card(priv);
250 card->owner = THIS_MODULE;
251 card->dev = dev;
252 card->dai_link = dai_link;
253 card->num_links = num;
254
255 ret = asoc_graph_card_parse_of(priv);
256 if (ret < 0) {
257 if (ret != -EPROBE_DEFER)
258 dev_err(dev, "parse error %d\n", ret);
259 goto err;
260 }
261
262 snd_soc_card_set_drvdata(card, priv);
263
264 ret = devm_snd_soc_register_card(dev, card);
Kuninori Morimotoecea9312017-05-19 00:58:00 +0000265 if (ret < 0)
266 goto err;
267
268 return 0;
Kuninori Morimoto2692c1c2017-04-20 01:36:08 +0000269err:
270 asoc_simple_card_clean_reference(card);
271
272 return ret;
273}
274
275static int asoc_graph_card_remove(struct platform_device *pdev)
276{
277 struct snd_soc_card *card = platform_get_drvdata(pdev);
278
279 return asoc_simple_card_clean_reference(card);
280}
281
282static const struct of_device_id asoc_graph_of_match[] = {
283 { .compatible = "audio-graph-card", },
284 {},
285};
286MODULE_DEVICE_TABLE(of, asoc_graph_of_match);
287
288static struct platform_driver asoc_graph_card = {
289 .driver = {
290 .name = "asoc-audio-graph-card",
291 .of_match_table = asoc_graph_of_match,
292 },
293 .probe = asoc_graph_card_probe,
294 .remove = asoc_graph_card_remove,
295};
296module_platform_driver(asoc_graph_card);
297
298MODULE_ALIAS("platform:asoc-audio-graph-card");
299MODULE_LICENSE("GPL v2");
300MODULE_DESCRIPTION("ASoC Audio Graph Sound Card");
301MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");