simple-card.c 6.6 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 12
#include <linux/clk.h>
#include <linux/of.h>
13 14 15 16 17 18 19
#include <linux/platform_device.h>
#include <linux/module.h>
#include <sound/simple_card.h>

#define asoc_simple_get_card_info(p) \
	container_of(p->dai_link, struct asoc_simple_card_info, snd_link)

20 21 22 23 24 25 26 27
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;

28
	if (daifmt)
29 30
		ret = snd_soc_dai_set_fmt(dai, daifmt);

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

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

	return ret;
}

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

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

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

	return 0;
}

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
static int
asoc_simple_card_sub_parse_of(struct device_node *np,
			      struct asoc_simple_dai *dai,
			      struct device_node **node)
{
	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()
	 */
	*node = of_parse_phandle(np, "sound-dai", 0);
	if (!*node)
		return -ENODEV;

	/* get dai->name */
	ret = snd_soc_of_get_dai_name(np, &dai->name);
	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>"
	 */
	clk = of_clk_get(np, 0);
	if (IS_ERR(clk))
		of_property_read_u32(np,
				     "system-clock-frequency",
				     &dai->sysclk);
	else
		dai->sysclk = clk_get_rate(clk);

	ret = 0;

parse_error:
	of_node_put(*node);

	return ret;
}

static int asoc_simple_card_parse_of(struct device_node *node,
				     struct asoc_simple_card_info *info,
				     struct device *dev,
				     struct device_node **of_cpu,
				     struct device_node **of_codec,
				     struct device_node **of_platform)
{
	struct device_node *np;
	char *name;
119
	int ret;
120 121 122 123 124

	/* 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);

125 126 127 128 129 130
	/* DAPM routes */
	ret = snd_soc_of_parse_audio_routing(&info->snd_card,
					"simple-audio-routing");
	if (ret)
		return ret;

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
	/* 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,
						  of_cpu);
	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,
						  of_codec);
	if (ret < 0)
		return ret;

	/* card name is created from CPU/CODEC dai name */
	name = devm_kzalloc(dev,
			    strlen(info->cpu_dai.name)   +
			    strlen(info->codec_dai.name) + 2,
			    GFP_KERNEL);
	sprintf(name, "%s-%s", info->cpu_dai.name, info->codec_dai.name);
	info->name = info->card = name;

	/* simple-card assumes platform == cpu */
	*of_platform = *of_cpu;

	dev_dbg(dev, "card-name : %s\n", info->card);
	dev_dbg(dev, "platform : %04x\n", info->daifmt);
	dev_dbg(dev, "cpu : %s / %04x / %d\n",
		info->cpu_dai.name,
		info->cpu_dai.fmt,
		info->cpu_dai.sysclk);
	dev_dbg(dev, "codec : %s / %04x / %d\n",
		info->codec_dai.name,
		info->codec_dai.fmt,
		info->codec_dai.sysclk);

	return 0;
}

176 177
static int asoc_simple_card_probe(struct platform_device *pdev)
{
178 179 180
	struct asoc_simple_card_info *cinfo;
	struct device_node *np = pdev->dev.of_node;
	struct device_node *of_cpu, *of_codec, *of_platform;
181
	struct device *dev = &pdev->dev;
182

183 184 185 186 187 188 189 190
	cinfo		= NULL;
	of_cpu		= NULL;
	of_codec	= NULL;
	of_platform	= NULL;
	if (np && of_device_is_available(np)) {
		cinfo = devm_kzalloc(dev, sizeof(*cinfo), GFP_KERNEL);
		if (cinfo) {
			int ret;
191
			cinfo->snd_card.dev = &pdev->dev;
192 193 194 195 196 197 198 199 200 201 202
			ret = asoc_simple_card_parse_of(np, cinfo, dev,
							&of_cpu,
							&of_codec,
							&of_platform);
			if (ret < 0) {
				if (ret != -EPROBE_DEFER)
					dev_err(dev, "parse error %d\n", ret);
				return ret;
			}
		}
	} else {
203
		cinfo->snd_card.dev = &pdev->dev;
204 205 206
		cinfo = pdev->dev.platform_data;
	}

207
	if (!cinfo) {
208
		dev_err(dev, "no info for asoc-simple-card\n");
209 210 211 212 213
		return -EINVAL;
	}

	if (!cinfo->name	||
	    !cinfo->card	||
214 215 216 217
	    !cinfo->codec_dai.name	||
	    !(cinfo->codec		|| of_codec)	||
	    !(cinfo->platform		|| of_platform)	||
	    !(cinfo->cpu_dai.name	|| of_cpu)) {
218
		dev_err(dev, "insufficient asoc_simple_card_info settings\n");
219 220 221 222 223 224 225 226
		return -EINVAL;
	}

	/*
	 * init snd_soc_dai_link
	 */
	cinfo->snd_link.name		= cinfo->name;
	cinfo->snd_link.stream_name	= cinfo->name;
227
	cinfo->snd_link.cpu_dai_name	= cinfo->cpu_dai.name;
228 229
	cinfo->snd_link.platform_name	= cinfo->platform;
	cinfo->snd_link.codec_name	= cinfo->codec;
230
	cinfo->snd_link.codec_dai_name	= cinfo->codec_dai.name;
231 232 233
	cinfo->snd_link.cpu_of_node	= of_cpu;
	cinfo->snd_link.codec_of_node	= of_codec;
	cinfo->snd_link.platform_of_node = of_platform;
234
	cinfo->snd_link.init		= asoc_simple_card_dai_init;
235 236 237 238 239 240 241 242 243

	/*
	 * init snd_soc_card
	 */
	cinfo->snd_card.name		= cinfo->card;
	cinfo->snd_card.owner		= THIS_MODULE;
	cinfo->snd_card.dai_link	= &cinfo->snd_link;
	cinfo->snd_card.num_links	= 1;

244
	return devm_snd_soc_register_card(&pdev->dev, &cinfo->snd_card);
245 246
}

247 248 249 250 251 252
static const struct of_device_id asoc_simple_of_match[] = {
	{ .compatible = "simple-audio-card", },
	{},
};
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);

253 254 255
static struct platform_driver asoc_simple_card = {
	.driver = {
		.name	= "asoc-simple-card",
256
		.owner = THIS_MODULE,
257
		.of_match_table = asoc_simple_of_match,
258 259 260 261 262 263
	},
	.probe		= asoc_simple_card_probe,
};

module_platform_driver(asoc_simple_card);

264
MODULE_ALIAS("platform:asoc-simple-card");
265 266 267
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("ASoC Simple Sound Card");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");