simple-card.c 7.2 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/module.h>
13
#include <linux/of.h>
14
#include <linux/platform_device.h>
15
#include <linux/string.h>
16 17
#include <sound/simple_card.h>

18 19 20 21 22 23 24 25
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;
};

26 27 28 29 30 31 32 33
static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai,
				       struct asoc_simple_dai *set,
				       unsigned int daifmt)
{
	int ret = 0;

	daifmt |= set->fmt;

34
	if (daifmt)
35 36
		ret = snd_soc_dai_set_fmt(dai, daifmt);

37 38 39 40 41
	if (ret == -ENOTSUPP) {
		dev_dbg(dai->dev, "ASoC: set_fmt is not supported\n");
		ret = 0;
	}

42 43 44 45 46 47
	if (!ret && set->sysclk)
		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);

	return ret;
}

48 49
static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
{
50
	struct simple_card_data *priv =
51
				snd_soc_card_get_drvdata(rtd->card);
52 53
	struct snd_soc_dai *codec = rtd->codec_dai;
	struct snd_soc_dai *cpu = rtd->cpu_dai;
54
	unsigned int daifmt = priv->daifmt;
55 56
	int ret;

57
	ret = __asoc_simple_card_dai_init(codec, &priv->codec_dai, daifmt);
58 59
	if (ret < 0)
		return ret;
60

61
	ret = __asoc_simple_card_dai_init(cpu, &priv->cpu_dai, daifmt);
62 63
	if (ret < 0)
		return ret;
64 65 66 67

	return 0;
}

68 69 70
static int
asoc_simple_card_sub_parse_of(struct device_node *np,
			      struct asoc_simple_dai *dai,
71 72
			      const struct device_node **p_node,
			      const char **name)
73
{
74
	struct device_node *node;
75 76 77 78 79 80 81
	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()
	 */
82 83
	node = of_parse_phandle(np, "sound-dai", 0);
	if (!node)
84
		return -ENODEV;
85
	*p_node = node;
86 87

	/* get dai->name */
88
	ret = snd_soc_of_get_dai_name(np, name);
89 90 91 92 93 94 95 96 97 98 99 100 101 102
	if (ret < 0)
		goto parse_error;

	/*
	 * bitclock-inversion, frame-inversion
	 * bitclock-master,    frame-master
	 * and specific "format" if it has
	 */
	dai->fmt = snd_soc_of_parse_daifmt(np, NULL);

	/*
	 * dai->sysclk come from
	 *  "clocks = <&xxx>" (if system has common clock)
	 *  or "system-clock-frequency = <xxx>"
103
	 *  or device's module clock.
104
	 */
105 106 107 108 109 110 111 112 113
	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")) {
114 115 116
		of_property_read_u32(np,
				     "system-clock-frequency",
				     &dai->sysclk);
117
	} else {
118
		clk = of_clk_get(node, 0);
119 120
		if (!IS_ERR(clk))
			dai->sysclk = clk_get_rate(clk);
121
	}
122 123 124 125

	ret = 0;

parse_error:
126
	of_node_put(node);
127 128 129 130 131

	return ret;
}

static int asoc_simple_card_parse_of(struct device_node *node,
132
				     struct simple_card_data *priv,
133
				     struct device *dev)
134
{
135
	struct snd_soc_dai_link *dai_link = priv->snd_card.dai_link;
136 137
	struct device_node *np;
	char *name;
138
	int ret;
139 140

	/* get CPU/CODEC common format via simple-audio-card,format */
141
	priv->daifmt = snd_soc_of_parse_daifmt(node, "simple-audio-card,") &
142 143
		(SND_SOC_DAIFMT_FORMAT_MASK | SND_SOC_DAIFMT_INV_MASK);

144
	/* DAPM routes */
145
	if (of_property_read_bool(node, "simple-audio-card,routing")) {
146
		ret = snd_soc_of_parse_audio_routing(&priv->snd_card,
147
					"simple-audio-card,routing");
148 149 150
		if (ret)
			return ret;
	}
151

152 153 154 155 156
	/* CPU sub-node */
	ret = -EINVAL;
	np = of_get_child_by_name(node, "simple-audio-card,cpu");
	if (np)
		ret = asoc_simple_card_sub_parse_of(np,
157
						  &priv->cpu_dai,
158 159
						  &dai_link->cpu_of_node,
						  &dai_link->cpu_dai_name);
160 161 162 163 164 165 166 167
	if (ret < 0)
		return ret;

	/* CODEC sub-node */
	ret = -EINVAL;
	np = of_get_child_by_name(node, "simple-audio-card,codec");
	if (np)
		ret = asoc_simple_card_sub_parse_of(np,
168
						  &priv->codec_dai,
169 170
						  &dai_link->codec_of_node,
						  &dai_link->codec_dai_name);
171 172 173
	if (ret < 0)
		return ret;

174
	if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name)
175 176
		return -EINVAL;

177 178
	/* card name is created from CPU/CODEC dai name */
	name = devm_kzalloc(dev,
179 180
			    strlen(dai_link->cpu_dai_name)   +
			    strlen(dai_link->codec_dai_name) + 2,
181
			    GFP_KERNEL);
182 183
	sprintf(name, "%s-%s", dai_link->cpu_dai_name,
				dai_link->codec_dai_name);
184
	priv->snd_card.name = name;
185
	dai_link->name = dai_link->stream_name = name;
186 187

	/* simple-card assumes platform == cpu */
188
	dai_link->platform_of_node = dai_link->cpu_of_node;
189

190
	dev_dbg(dev, "card-name : %s\n", name);
191
	dev_dbg(dev, "platform : %04x\n", priv->daifmt);
192
	dev_dbg(dev, "cpu : %s / %04x / %d\n",
193
		dai_link->cpu_dai_name,
194 195
		priv->cpu_dai.fmt,
		priv->cpu_dai.sysclk);
196
	dev_dbg(dev, "codec : %s / %04x / %d\n",
197
		dai_link->codec_dai_name,
198 199
		priv->codec_dai.fmt,
		priv->codec_dai.sysclk);
200 201 202 203

	return 0;
}

204 205
static int asoc_simple_card_probe(struct platform_device *pdev)
{
206
	struct simple_card_data *priv;
207
	struct snd_soc_dai_link *dai_link;
208
	struct device_node *np = pdev->dev.of_node;
209
	struct device *dev = &pdev->dev;
210
	int ret;
211

212 213
	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
	if (!priv)
214 215
		return -ENOMEM;

216 217 218
	/*
	 * init snd_soc_card
	 */
219 220 221 222 223
	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;
224

225
	if (np && of_device_is_available(np)) {
226

227
		ret = asoc_simple_card_parse_of(np, priv, dev);
228 229 230 231
		if (ret < 0) {
			if (ret != -EPROBE_DEFER)
				dev_err(dev, "parse error %d\n", ret);
			return ret;
232 233
		}
	} else {
234 235 236 237
		struct asoc_simple_card_info *cinfo;

		cinfo = dev->platform_data;
		if (!cinfo) {
238 239 240
			dev_err(dev, "no info for asoc-simple-card\n");
			return -EINVAL;
		}
241

242 243 244 245 246 247 248 249 250
		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;
		}
251

252
		priv->snd_card.name	= cinfo->card;
253 254 255 256
		dai_link->name		= cinfo->name;
		dai_link->stream_name	= cinfo->name;
		dai_link->platform_name	= cinfo->platform;
		dai_link->codec_name	= cinfo->codec;
257 258
		dai_link->cpu_dai_name	= cinfo->cpu_dai.name;
		dai_link->codec_dai_name = cinfo->codec_dai.name;
259 260 261 262
		memcpy(&priv->cpu_dai, &cinfo->cpu_dai,
						sizeof(priv->cpu_dai));
		memcpy(&priv->codec_dai, &cinfo->codec_dai,
						sizeof(priv->codec_dai));
263 264 265 266 267
	}

	/*
	 * init snd_soc_dai_link
	 */
268
	dai_link->init = asoc_simple_card_dai_init;
269

270
	snd_soc_card_set_drvdata(&priv->snd_card, priv);
271

272
	return devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
273 274
}

275 276 277 278 279 280
static const struct of_device_id asoc_simple_of_match[] = {
	{ .compatible = "simple-audio-card", },
	{},
};
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);

281 282 283
static struct platform_driver asoc_simple_card = {
	.driver = {
		.name	= "asoc-simple-card",
284
		.owner = THIS_MODULE,
285
		.of_match_table = asoc_simple_of_match,
286 287 288 289 290 291
	},
	.probe		= asoc_simple_card_probe,
};

module_platform_driver(asoc_simple_card);

292
MODULE_ALIAS("platform:asoc-simple-card");
293 294 295
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("ASoC Simple Sound Card");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");