simple-card.c 6.9 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
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;

26
	if (daifmt)
27 28
		ret = snd_soc_dai_set_fmt(dai, daifmt);

29 30 31 32 33
	if (ret == -ENOTSUPP) {
		dev_dbg(dai->dev, "ASoC: set_fmt is not supported\n");
		ret = 0;
	}

34 35 36 37 38 39
	if (!ret && set->sysclk)
		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);

	return ret;
}

40 41
static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
{
42 43
	struct asoc_simple_card_info *info =
				snd_soc_card_get_drvdata(rtd->card);
44 45
	struct snd_soc_dai *codec = rtd->codec_dai;
	struct snd_soc_dai *cpu = rtd->cpu_dai;
46
	unsigned int daifmt = info->daifmt;
47 48
	int ret;

49 50 51
	ret = __asoc_simple_card_dai_init(codec, &info->codec_dai, daifmt);
	if (ret < 0)
		return ret;
52

53 54 55
	ret = __asoc_simple_card_dai_init(cpu, &info->cpu_dai, daifmt);
	if (ret < 0)
		return ret;
56 57 58 59

	return 0;
}

60 61 62
static int
asoc_simple_card_sub_parse_of(struct device_node *np,
			      struct asoc_simple_dai *dai,
63 64
			      const struct device_node **p_node,
			      const char **name)
65
{
66
	struct device_node *node;
67 68 69 70 71 72 73
	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()
	 */
74 75
	node = of_parse_phandle(np, "sound-dai", 0);
	if (!node)
76
		return -ENODEV;
77
	*p_node = node;
78 79

	/* get dai->name */
80
	ret = snd_soc_of_get_dai_name(np, name);
81 82 83 84 85 86 87 88 89 90 91 92 93 94
	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>"
95
	 *  or device's module clock.
96
	 */
97 98 99 100 101 102 103 104 105
	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")) {
106 107 108
		of_property_read_u32(np,
				     "system-clock-frequency",
				     &dai->sysclk);
109
	} else {
110
		clk = of_clk_get(node, 0);
111 112
		if (!IS_ERR(clk))
			dai->sysclk = clk_get_rate(clk);
113
	}
114 115 116 117

	ret = 0;

parse_error:
118
	of_node_put(node);
119 120 121 122 123 124

	return ret;
}

static int asoc_simple_card_parse_of(struct device_node *node,
				     struct asoc_simple_card_info *info,
125
				     struct device *dev)
126
{
127
	struct snd_soc_dai_link *dai_link = info->snd_card.dai_link;
128 129
	struct device_node *np;
	char *name;
130
	int ret;
131 132 133 134 135

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

136
	/* DAPM routes */
137
	if (of_property_read_bool(node, "simple-audio-card,routing")) {
138
		ret = snd_soc_of_parse_audio_routing(&info->snd_card,
139
					"simple-audio-card,routing");
140 141 142
		if (ret)
			return ret;
	}
143

144 145 146 147 148 149
	/* 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,
						  &info->cpu_dai,
150 151
						  &dai_link->cpu_of_node,
						  &dai_link->cpu_dai_name);
152 153 154 155 156 157 158 159 160
	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,
						  &info->codec_dai,
161 162
						  &dai_link->codec_of_node,
						  &dai_link->codec_dai_name);
163 164 165
	if (ret < 0)
		return ret;

166
	if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name)
167 168
		return -EINVAL;

169 170
	/* card name is created from CPU/CODEC dai name */
	name = devm_kzalloc(dev,
171 172
			    strlen(dai_link->cpu_dai_name)   +
			    strlen(dai_link->codec_dai_name) + 2,
173
			    GFP_KERNEL);
174 175
	sprintf(name, "%s-%s", dai_link->cpu_dai_name,
				dai_link->codec_dai_name);
176
	info->snd_card.name = name;
177
	dai_link->name = dai_link->stream_name = name;
178 179

	/* simple-card assumes platform == cpu */
180
	dai_link->platform_of_node = dai_link->cpu_of_node;
181

182
	dev_dbg(dev, "card-name : %s\n", name);
183 184
	dev_dbg(dev, "platform : %04x\n", info->daifmt);
	dev_dbg(dev, "cpu : %s / %04x / %d\n",
185
		dai_link->cpu_dai_name,
186 187 188
		info->cpu_dai.fmt,
		info->cpu_dai.sysclk);
	dev_dbg(dev, "codec : %s / %04x / %d\n",
189
		dai_link->codec_dai_name,
190 191 192 193 194 195
		info->codec_dai.fmt,
		info->codec_dai.sysclk);

	return 0;
}

196 197
static int asoc_simple_card_probe(struct platform_device *pdev)
{
198
	struct asoc_simple_card_info *cinfo;
199
	struct snd_soc_dai_link *dai_link;
200
	struct device_node *np = pdev->dev.of_node;
201
	struct device *dev = &pdev->dev;
202
	int ret;
203

204 205 206 207
	cinfo = devm_kzalloc(dev, sizeof(*cinfo), GFP_KERNEL);
	if (!cinfo)
		return -ENOMEM;

208 209 210 211 212
	/*
	 * init snd_soc_card
	 */
	cinfo->snd_card.owner		= THIS_MODULE;
	cinfo->snd_card.dev = dev;
213 214 215
	dai_link = &cinfo->snd_link;
	cinfo->snd_card.dai_link = dai_link;
	cinfo->snd_card.num_links = 1;
216

217
	if (np && of_device_is_available(np)) {
218

219
		ret = asoc_simple_card_parse_of(np, cinfo, dev);
220 221 222 223
		if (ret < 0) {
			if (ret != -EPROBE_DEFER)
				dev_err(dev, "parse error %d\n", ret);
			return ret;
224 225
		}
	} else {
226
		if (!dev->platform_data) {
227 228 229
			dev_err(dev, "no info for asoc-simple-card\n");
			return -EINVAL;
		}
230

231
		memcpy(cinfo, dev->platform_data, sizeof(*cinfo));
232 233 234 235 236 237 238 239 240
		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;
		}
241 242

		cinfo->snd_card.name		= cinfo->card;
243 244 245 246
		dai_link->name		= cinfo->name;
		dai_link->stream_name	= cinfo->name;
		dai_link->platform_name	= cinfo->platform;
		dai_link->codec_name	= cinfo->codec;
247 248
		dai_link->cpu_dai_name	= cinfo->cpu_dai.name;
		dai_link->codec_dai_name = cinfo->codec_dai.name;
249 250 251 252 253
	}

	/*
	 * init snd_soc_dai_link
	 */
254
	dai_link->init = asoc_simple_card_dai_init;
255

256
	snd_soc_card_set_drvdata(&cinfo->snd_card, cinfo);
257

258
	return devm_snd_soc_register_card(&pdev->dev, &cinfo->snd_card);
259 260
}

261 262 263 264 265 266
static const struct of_device_id asoc_simple_of_match[] = {
	{ .compatible = "simple-audio-card", },
	{},
};
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);

267 268 269
static struct platform_driver asoc_simple_card = {
	.driver = {
		.name	= "asoc-simple-card",
270
		.owner = THIS_MODULE,
271
		.of_match_table = asoc_simple_of_match,
272 273 274 275 276 277
	},
	.probe		= asoc_simple_card_probe,
};

module_platform_driver(asoc_simple_card);

278
MODULE_ALIAS("platform:asoc-simple-card");
279 280 281
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("ASoC Simple Sound Card");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");