simple-card.c 8.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * ASoC simple sound card support
 *
 * Copyright (C) 2012 Renesas Solutions Corp.
 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
11
#include <linux/clk.h>
12
#include <linux/device.h>
13
#include <linux/module.h>
14
#include <linux/of.h>
15
#include <linux/platform_device.h>
16
#include <linux/string.h>
17
#include <sound/simple_card.h>
18 19
#include <sound/soc-dai.h>
#include <sound/soc.h>
20

21 22 23 24 25 26 27 28
struct simple_card_data {
	struct snd_soc_card snd_card;
	unsigned int daifmt;
	struct asoc_simple_dai cpu_dai;
	struct asoc_simple_dai codec_dai;
	struct snd_soc_dai_link snd_link;
};

29
static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai,
30
				       struct asoc_simple_dai *set)
31
{
32
	int ret;
33

34 35
	if (set->fmt) {
		ret = snd_soc_dai_set_fmt(dai, set->fmt);
36 37 38 39
		if (ret && ret != -ENOTSUPP) {
			dev_err(dai->dev, "simple-card: set_fmt error\n");
			goto err;
		}
40 41
	}

42
	if (set->sysclk) {
43
		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);
44 45 46 47 48 49
		if (ret && ret != -ENOTSUPP) {
			dev_err(dai->dev, "simple-card: set_sysclk error\n");
			goto err;
		}
	}

50 51 52 53 54 55 56 57 58 59
	if (set->slots) {
		ret = snd_soc_dai_set_tdm_slot(dai, 0, 0,
						set->slots,
						set->slot_width);
		if (ret && ret != -ENOTSUPP) {
			dev_err(dai->dev, "simple-card: set_tdm_slot error\n");
			goto err;
		}
	}

60
	ret = 0;
61

62
err:
63 64 65
	return ret;
}

66 67
static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
{
68
	struct simple_card_data *priv =
69
				snd_soc_card_get_drvdata(rtd->card);
70 71 72 73
	struct snd_soc_dai *codec = rtd->codec_dai;
	struct snd_soc_dai *cpu = rtd->cpu_dai;
	int ret;

74
	ret = __asoc_simple_card_dai_init(codec, &priv->codec_dai);
75 76
	if (ret < 0)
		return ret;
77

78
	ret = __asoc_simple_card_dai_init(cpu, &priv->cpu_dai);
79 80
	if (ret < 0)
		return ret;
81 82 83 84

	return 0;
}

85 86
static int
asoc_simple_card_sub_parse_of(struct device_node *np,
87
			      unsigned int daifmt,
88
			      struct asoc_simple_dai *dai,
89 90
			      const struct device_node **p_node,
			      const char **name)
91
{
92
	struct device_node *node;
93 94 95 96 97 98 99
	struct clk *clk;
	int ret;

	/*
	 * get node via "sound-dai = <&phandle port>"
	 * it will be used as xxx_of_node on soc_bind_dai_link()
	 */
100 101
	node = of_parse_phandle(np, "sound-dai", 0);
	if (!node)
102
		return -ENODEV;
103
	*p_node = node;
104 105

	/* get dai->name */
106
	ret = snd_soc_of_get_dai_name(np, name);
107 108 109
	if (ret < 0)
		goto parse_error;

110 111 112 113 114
	/* parse TDM slot */
	ret = snd_soc_of_parse_tdm_slot(np, &dai->slots, &dai->slot_width);
	if (ret)
		goto parse_error;

115 116 117 118 119 120
	/*
	 * bitclock-inversion, frame-inversion
	 * bitclock-master,    frame-master
	 * and specific "format" if it has
	 */
	dai->fmt = snd_soc_of_parse_daifmt(np, NULL);
121
	dai->fmt |= daifmt;
122 123 124 125 126

	/*
	 * dai->sysclk come from
	 *  "clocks = <&xxx>" (if system has common clock)
	 *  or "system-clock-frequency = <xxx>"
127
	 *  or device's module clock.
128
	 */
129 130 131 132 133 134 135 136 137
	if (of_property_read_bool(np, "clocks")) {
		clk = of_clk_get(np, 0);
		if (IS_ERR(clk)) {
			ret = PTR_ERR(clk);
			goto parse_error;
		}

		dai->sysclk = clk_get_rate(clk);
	} else if (of_property_read_bool(np, "system-clock-frequency")) {
138 139 140
		of_property_read_u32(np,
				     "system-clock-frequency",
				     &dai->sysclk);
141
	} else {
142
		clk = of_clk_get(node, 0);
143 144
		if (!IS_ERR(clk))
			dai->sysclk = clk_get_rate(clk);
145
	}
146 147 148 149

	ret = 0;

parse_error:
150
	of_node_put(node);
151 152 153 154 155

	return ret;
}

static int asoc_simple_card_parse_of(struct device_node *node,
156
				     struct simple_card_data *priv,
157
				     struct device *dev)
158
{
159
	struct snd_soc_dai_link *dai_link = priv->snd_card.dai_link;
160 161
	struct device_node *np;
	char *name;
162
	int ret;
163

164 165 166
	/* parsing the card name from DT */
	snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name");

167
	/* get CPU/CODEC common format via simple-audio-card,format */
168
	priv->daifmt = snd_soc_of_parse_daifmt(node, "simple-audio-card,") &
169 170
		(SND_SOC_DAIFMT_FORMAT_MASK | SND_SOC_DAIFMT_INV_MASK);

171 172 173 174 175 176 177 178
	/* off-codec widgets */
	if (of_property_read_bool(node, "simple-audio-card,widgets")) {
		ret = snd_soc_of_parse_audio_simple_widgets(&priv->snd_card,
					"simple-audio-card,widgets");
		if (ret)
			return ret;
	}

179
	/* DAPM routes */
180
	if (of_property_read_bool(node, "simple-audio-card,routing")) {
181
		ret = snd_soc_of_parse_audio_routing(&priv->snd_card,
182
					"simple-audio-card,routing");
183 184 185
		if (ret)
			return ret;
	}
186

187 188 189 190
	/* CPU sub-node */
	ret = -EINVAL;
	np = of_get_child_by_name(node, "simple-audio-card,cpu");
	if (np)
191
		ret = asoc_simple_card_sub_parse_of(np, priv->daifmt,
192
						  &priv->cpu_dai,
193 194
						  &dai_link->cpu_of_node,
						  &dai_link->cpu_dai_name);
195 196 197 198 199 200 201
	if (ret < 0)
		return ret;

	/* CODEC sub-node */
	ret = -EINVAL;
	np = of_get_child_by_name(node, "simple-audio-card,codec");
	if (np)
202
		ret = asoc_simple_card_sub_parse_of(np, priv->daifmt,
203
						  &priv->codec_dai,
204 205
						  &dai_link->codec_of_node,
						  &dai_link->codec_dai_name);
206 207 208
	if (ret < 0)
		return ret;

209
	if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name)
210 211
		return -EINVAL;

212 213
	/* card name is created from CPU/CODEC dai name */
	name = devm_kzalloc(dev,
214 215
			    strlen(dai_link->cpu_dai_name)   +
			    strlen(dai_link->codec_dai_name) + 2,
216
			    GFP_KERNEL);
217 218
	sprintf(name, "%s-%s", dai_link->cpu_dai_name,
				dai_link->codec_dai_name);
219 220
	if (!priv->snd_card.name)
		priv->snd_card.name = name;
221
	dai_link->name = dai_link->stream_name = name;
222 223

	/* simple-card assumes platform == cpu */
224
	dai_link->platform_of_node = dai_link->cpu_of_node;
225

226
	dev_dbg(dev, "card-name : %s\n", name);
227
	dev_dbg(dev, "platform : %04x\n", priv->daifmt);
228
	dev_dbg(dev, "cpu : %s / %04x / %d\n",
229
		dai_link->cpu_dai_name,
230 231
		priv->cpu_dai.fmt,
		priv->cpu_dai.sysclk);
232
	dev_dbg(dev, "codec : %s / %04x / %d\n",
233
		dai_link->codec_dai_name,
234 235
		priv->codec_dai.fmt,
		priv->codec_dai.sysclk);
236

237 238 239 240 241 242 243 244 245 246 247
	/*
	 * soc_bind_dai_link() will check cpu name
	 * after of_node matching if dai_link has cpu_dai_name.
	 * but, it will never match if name was created by fmt_single_name()
	 * remove cpu_dai_name to escape name matching.
	 * see
	 *	fmt_single_name()
	 *	fmt_multiple_name()
	 */
	dai_link->cpu_dai_name = NULL;

248 249 250
	return 0;
}

251 252
static int asoc_simple_card_probe(struct platform_device *pdev)
{
253
	struct simple_card_data *priv;
254
	struct snd_soc_dai_link *dai_link;
255
	struct device_node *np = pdev->dev.of_node;
256
	struct device *dev = &pdev->dev;
257
	int ret;
258

259 260
	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
	if (!priv)
261 262
		return -ENOMEM;

263 264 265
	/*
	 * init snd_soc_card
	 */
266 267 268 269 270
	priv->snd_card.owner = THIS_MODULE;
	priv->snd_card.dev = dev;
	dai_link = &priv->snd_link;
	priv->snd_card.dai_link = dai_link;
	priv->snd_card.num_links = 1;
271

272
	if (np && of_device_is_available(np)) {
273

274
		ret = asoc_simple_card_parse_of(np, priv, dev);
275 276 277 278
		if (ret < 0) {
			if (ret != -EPROBE_DEFER)
				dev_err(dev, "parse error %d\n", ret);
			return ret;
279 280
		}
	} else {
281 282 283 284
		struct asoc_simple_card_info *cinfo;

		cinfo = dev->platform_data;
		if (!cinfo) {
285 286 287
			dev_err(dev, "no info for asoc-simple-card\n");
			return -EINVAL;
		}
288

289 290 291 292 293 294 295 296 297
		if (!cinfo->name	||
		    !cinfo->card	||
		    !cinfo->codec_dai.name	||
		    !cinfo->codec	||
		    !cinfo->platform	||
		    !cinfo->cpu_dai.name) {
			dev_err(dev, "insufficient asoc_simple_card_info settings\n");
			return -EINVAL;
		}
298

299
		priv->snd_card.name	= cinfo->card;
300 301 302 303
		dai_link->name		= cinfo->name;
		dai_link->stream_name	= cinfo->name;
		dai_link->platform_name	= cinfo->platform;
		dai_link->codec_name	= cinfo->codec;
304 305
		dai_link->cpu_dai_name	= cinfo->cpu_dai.name;
		dai_link->codec_dai_name = cinfo->codec_dai.name;
306 307 308 309
		memcpy(&priv->cpu_dai, &cinfo->cpu_dai,
						sizeof(priv->cpu_dai));
		memcpy(&priv->codec_dai, &cinfo->codec_dai,
						sizeof(priv->codec_dai));
310 311 312

		priv->cpu_dai.fmt	|= cinfo->daifmt;
		priv->codec_dai.fmt	|= cinfo->daifmt;
313 314 315 316 317
	}

	/*
	 * init snd_soc_dai_link
	 */
318
	dai_link->init = asoc_simple_card_dai_init;
319

320
	snd_soc_card_set_drvdata(&priv->snd_card, priv);
321

322
	return devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
323 324
}

325 326 327 328 329 330
static const struct of_device_id asoc_simple_of_match[] = {
	{ .compatible = "simple-audio-card", },
	{},
};
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);

331 332 333
static struct platform_driver asoc_simple_card = {
	.driver = {
		.name	= "asoc-simple-card",
334
		.owner = THIS_MODULE,
335
		.of_match_table = asoc_simple_of_match,
336 337 338 339 340 341
	},
	.probe		= asoc_simple_card_probe,
};

module_platform_driver(asoc_simple_card);

342
MODULE_ALIAS("platform:asoc-simple-card");
343 344 345
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("ASoC Simple Sound Card");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");