simple-card.c 16.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/device.h>
13
#include <linux/gpio.h>
14
#include <linux/module.h>
15
#include <linux/of.h>
16
#include <linux/of_gpio.h>
17
#include <linux/platform_device.h>
18
#include <linux/string.h>
19
#include <sound/jack.h>
20
#include <sound/simple_card.h>
21 22
#include <sound/soc-dai.h>
#include <sound/soc.h>
23

24 25
struct simple_card_data {
	struct snd_soc_card snd_card;
26 27 28
	struct simple_dai_props {
		struct asoc_simple_dai cpu_dai;
		struct asoc_simple_dai codec_dai;
29
		unsigned int mclk_fs;
30
	} *dai_props;
31
	unsigned int mclk_fs;
32
	int gpio_hp_det;
33
	int gpio_hp_det_invert;
34
	int gpio_mic_det;
35
	int gpio_mic_det_invert;
36
	struct snd_soc_dai_link dai_link[];	/* dynamically allocated */
37 38
};

39
#define simple_priv_to_dev(priv) ((priv)->snd_card.dev)
40 41
#define simple_priv_to_link(priv, i) ((priv)->snd_card.dai_link + i)
#define simple_priv_to_props(priv, i) ((priv)->dai_props + i)
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
static int asoc_simple_card_startup(struct snd_pcm_substream *substream)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	struct simple_card_data *priv =	snd_soc_card_get_drvdata(rtd->card);
	struct simple_dai_props *dai_props =
		&priv->dai_props[rtd - rtd->card->rtd];
	int ret;

	ret = clk_prepare_enable(dai_props->cpu_dai.clk);
	if (ret)
		return ret;
	
	ret = clk_prepare_enable(dai_props->codec_dai.clk);
	if (ret)
		clk_disable_unprepare(dai_props->cpu_dai.clk);

	return ret;
}

static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	struct simple_card_data *priv =	snd_soc_card_get_drvdata(rtd->card);
	struct simple_dai_props *dai_props =
		&priv->dai_props[rtd - rtd->card->rtd];

	clk_disable_unprepare(dai_props->cpu_dai.clk);

	clk_disable_unprepare(dai_props->codec_dai.clk);
}

74 75 76 77 78 79
static int asoc_simple_card_hw_params(struct snd_pcm_substream *substream,
				      struct snd_pcm_hw_params *params)
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
	struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
80 81 82
	struct simple_dai_props *dai_props =
		&priv->dai_props[rtd - rtd->card->rtd];
	unsigned int mclk, mclk_fs = 0;
83 84
	int ret = 0;

85 86 87 88 89 90 91
	if (priv->mclk_fs)
		mclk_fs = priv->mclk_fs;
	else if (dai_props->mclk_fs)
		mclk_fs = dai_props->mclk_fs;

	if (mclk_fs) {
		mclk = params_rate(params) * mclk_fs;
92 93 94 95 96 97 98 99
		ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
					     SND_SOC_CLOCK_IN);
	}

	return ret;
}

static struct snd_soc_ops asoc_simple_card_ops = {
100 101
	.startup = asoc_simple_card_startup,
	.shutdown = asoc_simple_card_shutdown,
102 103 104
	.hw_params = asoc_simple_card_hw_params,
};

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
static struct snd_soc_jack simple_card_hp_jack;
static struct snd_soc_jack_pin simple_card_hp_jack_pins[] = {
	{
		.pin = "Headphones",
		.mask = SND_JACK_HEADPHONE,
	},
};
static struct snd_soc_jack_gpio simple_card_hp_jack_gpio = {
	.name = "Headphone detection",
	.report = SND_JACK_HEADPHONE,
	.debounce_time = 150,
};

static struct snd_soc_jack simple_card_mic_jack;
static struct snd_soc_jack_pin simple_card_mic_jack_pins[] = {
	{
		.pin = "Mic Jack",
		.mask = SND_JACK_MICROPHONE,
	},
};
static struct snd_soc_jack_gpio simple_card_mic_jack_gpio = {
	.name = "Mic detection",
	.report = SND_JACK_MICROPHONE,
	.debounce_time = 150,
};

131
static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai,
132
				       struct asoc_simple_dai *set)
133
{
134
	int ret;
135

136
	if (set->sysclk) {
137
		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);
138 139 140 141 142 143
		if (ret && ret != -ENOTSUPP) {
			dev_err(dai->dev, "simple-card: set_sysclk error\n");
			goto err;
		}
	}

144 145 146 147 148 149 150 151 152 153
	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;
		}
	}

154
	ret = 0;
155

156
err:
157 158 159
	return ret;
}

160 161
static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
{
162
	struct simple_card_data *priv =	snd_soc_card_get_drvdata(rtd->card);
163 164
	struct snd_soc_dai *codec = rtd->codec_dai;
	struct snd_soc_dai *cpu = rtd->cpu_dai;
165 166
	struct simple_dai_props *dai_props;
	int num, ret;
167

168 169 170
	num = rtd - rtd->card->rtd;
	dai_props = &priv->dai_props[num];
	ret = __asoc_simple_card_dai_init(codec, &dai_props->codec_dai);
171 172
	if (ret < 0)
		return ret;
173

174
	ret = __asoc_simple_card_dai_init(cpu, &dai_props->cpu_dai);
175 176
	if (ret < 0)
		return ret;
177

178
	if (gpio_is_valid(priv->gpio_hp_det)) {
179 180 181 182 183
		snd_soc_card_jack_new(rtd->card, "Headphones",
				      SND_JACK_HEADPHONE,
				      &simple_card_hp_jack,
				      simple_card_hp_jack_pins,
				      ARRAY_SIZE(simple_card_hp_jack_pins));
184 185

		simple_card_hp_jack_gpio.gpio = priv->gpio_hp_det;
186
		simple_card_hp_jack_gpio.invert = priv->gpio_hp_det_invert;
187 188 189 190 191
		snd_soc_jack_add_gpios(&simple_card_hp_jack, 1,
				       &simple_card_hp_jack_gpio);
	}

	if (gpio_is_valid(priv->gpio_mic_det)) {
192 193 194 195 196
		snd_soc_card_jack_new(rtd->card, "Mic Jack",
				      SND_JACK_MICROPHONE,
				      &simple_card_mic_jack,
				      simple_card_mic_jack_pins,
				      ARRAY_SIZE(simple_card_mic_jack_pins));
197
		simple_card_mic_jack_gpio.gpio = priv->gpio_mic_det;
198
		simple_card_mic_jack_gpio.invert = priv->gpio_mic_det_invert;
199 200 201
		snd_soc_jack_add_gpios(&simple_card_mic_jack, 1,
				       &simple_card_mic_jack_gpio);
	}
202 203 204
	return 0;
}

205 206 207
static int
asoc_simple_card_sub_parse_of(struct device_node *np,
			      struct asoc_simple_dai *dai,
208
			      struct device_node **p_node,
209 210
			      const char **name,
			      int *args_count)
211
{
212
	struct of_phandle_args args;
213
	struct clk *clk;
214
	u32 val;
215 216 217
	int ret;

	/*
218
	 * Get node via "sound-dai = <&phandle port>"
219 220
	 * it will be used as xxx_of_node on soc_bind_dai_link()
	 */
221 222 223 224 225 226 227 228 229
	ret = of_parse_phandle_with_args(np, "sound-dai",
					 "#sound-dai-cells", 0, &args);
	if (ret)
		return ret;

	*p_node = args.np;

	if (args_count)
		*args_count = args.args_count;
230

231
	/* Get dai->name */
232
	ret = snd_soc_of_get_dai_name(np, name);
233
	if (ret < 0)
234
		return ret;
235

236
	/* Parse TDM slot */
237 238
	ret = snd_soc_of_parse_tdm_slot(np, &dai->slots, &dai->slot_width);
	if (ret)
239
		return ret;
240

241
	/*
242 243
	 * Parse dai->sysclk come from "clocks = <&xxx>"
	 * (if system has common clock)
244
	 *  or "system-clock-frequency = <xxx>"
245
	 *  or device's module clock.
246
	 */
247 248 249 250
	if (of_property_read_bool(np, "clocks")) {
		clk = of_clk_get(np, 0);
		if (IS_ERR(clk)) {
			ret = PTR_ERR(clk);
251
			return ret;
252 253 254
		}

		dai->sysclk = clk_get_rate(clk);
255
		dai->clk = clk;
256 257
	} else if (!of_property_read_u32(np, "system-clock-frequency", &val)) {
		dai->sysclk = val;
258
	} else {
259
		clk = of_clk_get(args.np, 0);
260 261
		if (!IS_ERR(clk))
			dai->sysclk = clk_get_rate(clk);
262
	}
263

264
	return 0;
265 266
}

267 268 269 270 271
static int asoc_simple_card_parse_daifmt(struct device_node *node,
					 struct simple_card_data *priv,
					 struct device_node *codec,
					 char *prefix, int idx)
{
272
	struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
	struct device *dev = simple_priv_to_dev(priv);
	struct device_node *bitclkmaster = NULL;
	struct device_node *framemaster = NULL;
	unsigned int daifmt;

	daifmt = snd_soc_of_parse_daifmt(node, prefix,
					 &bitclkmaster, &framemaster);
	daifmt &= ~SND_SOC_DAIFMT_MASTER_MASK;

	if (strlen(prefix) && !bitclkmaster && !framemaster) {
		/*
		 * No dai-link level and master setting was not found from
		 * sound node level, revert back to legacy DT parsing and
		 * take the settings from codec node.
		 */
		dev_dbg(dev, "Revert to legacy daifmt parsing\n");

290
		daifmt = snd_soc_of_parse_daifmt(codec, NULL, NULL, NULL) |
291 292 293 294 295 296 297 298 299 300
			(daifmt & ~SND_SOC_DAIFMT_CLOCK_MASK);
	} else {
		if (codec == bitclkmaster)
			daifmt |= (codec == framemaster) ?
				SND_SOC_DAIFMT_CBM_CFM : SND_SOC_DAIFMT_CBM_CFS;
		else
			daifmt |= (codec == framemaster) ?
				SND_SOC_DAIFMT_CBS_CFM : SND_SOC_DAIFMT_CBS_CFS;
	}

301 302
	dai_link->dai_fmt = daifmt;

303 304 305 306 307 308
	of_node_put(bitclkmaster);
	of_node_put(framemaster);

	return 0;
}

309
static int asoc_simple_card_dai_link_of(struct device_node *node,
310
					struct simple_card_data *priv,
311
					int idx,
312
					bool is_top_level_node)
313
{
314
	struct device *dev = simple_priv_to_dev(priv);
315 316
	struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
	struct simple_dai_props *dai_props = simple_priv_to_props(priv, idx);
317
	struct device_node *cpu = NULL;
318
	struct device_node *plat = NULL;
319
	struct device_node *codec = NULL;
320 321 322
	char *name;
	char prop[128];
	char *prefix = "";
323
	int ret, cpu_args;
324
	u32 val;
325

326
	/* For single DAI link & old style of DT node */
327 328
	if (is_top_level_node)
		prefix = "simple-audio-card,";
329 330

	snprintf(prop, sizeof(prop), "%scpu", prefix);
331 332
	cpu = of_get_child_by_name(node, prop);

333 334 335
	snprintf(prop, sizeof(prop), "%splat", prefix);
	plat = of_get_child_by_name(node, prop);

336 337 338 339
	snprintf(prop, sizeof(prop), "%scodec", prefix);
	codec = of_get_child_by_name(node, prop);

	if (!cpu || !codec) {
340
		ret = -EINVAL;
341
		dev_err(dev, "%s: Can't find %s DT node\n", __func__, prop);
342
		goto dai_link_of_err;
343
	}
344

345
	ret = asoc_simple_card_parse_daifmt(node, priv,
346
					    codec, prefix, idx);
347 348 349
	if (ret < 0)
		goto dai_link_of_err;

350 351 352
	if (!of_property_read_u32(node, "mclk-fs", &val))
		dai_props->mclk_fs = val;

353
	ret = asoc_simple_card_sub_parse_of(cpu, &dai_props->cpu_dai,
354
					    &dai_link->cpu_of_node,
355 356
					    &dai_link->cpu_dai_name,
					    &cpu_args);
357
	if (ret < 0)
358 359
		goto dai_link_of_err;

360
	ret = asoc_simple_card_sub_parse_of(codec, &dai_props->codec_dai,
361
					    &dai_link->codec_of_node,
362
					    &dai_link->codec_dai_name, NULL);
363 364 365 366
	if (ret < 0)
		goto dai_link_of_err;

	if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name) {
367 368
		ret = -EINVAL;
		goto dai_link_of_err;
369 370
	}

371 372 373 374 375 376 377 378 379 380
	if (plat) {
		struct of_phandle_args args;

		ret = of_parse_phandle_with_args(plat, "sound-dai",
						 "#sound-dai-cells", 0, &args);
		dai_link->platform_of_node = args.np;
	} else {
		/* Assumes platform == cpu */
		dai_link->platform_of_node = dai_link->cpu_of_node;
	}
381

382
	/* DAI link name is created from CPU/CODEC dai name */
383 384 385 386
	name = devm_kzalloc(dev,
			    strlen(dai_link->cpu_dai_name)   +
			    strlen(dai_link->codec_dai_name) + 2,
			    GFP_KERNEL);
387 388 389 390 391
	if (!name) {
		ret = -ENOMEM;
		goto dai_link_of_err;
	}

392 393 394
	sprintf(name, "%s-%s", dai_link->cpu_dai_name,
				dai_link->codec_dai_name);
	dai_link->name = dai_link->stream_name = name;
395
	dai_link->ops = &asoc_simple_card_ops;
396
	dai_link->init = asoc_simple_card_dai_init;
397 398

	dev_dbg(dev, "\tname : %s\n", dai_link->stream_name);
399 400
	dev_dbg(dev, "\tformat : %04x\n", dai_link->dai_fmt);
	dev_dbg(dev, "\tcpu : %s / %d\n",
401 402
		dai_link->cpu_dai_name,
		dai_props->cpu_dai.sysclk);
403
	dev_dbg(dev, "\tcodec : %s / %d\n",
404 405 406
		dai_link->codec_dai_name,
		dai_props->codec_dai.sysclk);

407
	/*
408 409 410 411 412
	 * In 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 if cpu_args
	 * was 0. See:
413 414 415
	 *	fmt_single_name()
	 *	fmt_multiple_name()
	 */
416 417
	if (!cpu_args)
		dai_link->cpu_dai_name = NULL;
418

419
dai_link_of_err:
420 421 422
	of_node_put(cpu);
	of_node_put(codec);

423 424 425
	return ret;
}

426
static int asoc_simple_card_parse_of(struct device_node *node,
427
				     struct simple_card_data *priv)
428
{
429
	struct device *dev = simple_priv_to_dev(priv);
430
	enum of_gpio_flags flags;
431
	u32 val;
432
	int ret;
433

434 435 436
	if (!node)
		return -EINVAL;

437
	/* Parse the card name from DT */
438 439
	snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name");

440
	/* The off-codec widgets */
441 442 443 444 445 446 447
	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;
	}

448
	/* DAPM routes */
449
	if (of_property_read_bool(node, "simple-audio-card,routing")) {
450
		ret = snd_soc_of_parse_audio_routing(&priv->snd_card,
451
					"simple-audio-card,routing");
452 453 454
		if (ret)
			return ret;
	}
455

456
	/* Factor to mclk, used in hw_params() */
457 458 459
	ret = of_property_read_u32(node, "simple-audio-card,mclk-fs", &val);
	if (ret == 0)
		priv->mclk_fs = val;
460

461 462 463
	dev_dbg(dev, "New simple-card: %s\n", priv->snd_card.name ?
		priv->snd_card.name : "");

464 465
	/* Single/Muti DAI link(s) & New style of DT node */
	if (of_get_child_by_name(node, "simple-audio-card,dai-link")) {
466
		struct device_node *np = NULL;
467 468 469
		int i = 0;

		for_each_child_of_node(node, np) {
470
			dev_dbg(dev, "\tlink %d:\n", i);
471
			ret = asoc_simple_card_dai_link_of(np, priv,
472
							   i, false);
473 474 475 476
			if (ret < 0) {
				of_node_put(np);
				return ret;
			}
477
			i++;
478
		}
479
	} else {
480
		/* For single DAI link & old style of DT node */
481
		ret = asoc_simple_card_dai_link_of(node, priv, 0, true);
482
		if (ret < 0)
483
			return ret;
484
	}
485

486 487 488
	priv->gpio_hp_det = of_get_named_gpio_flags(node,
				"simple-audio-card,hp-det-gpio", 0, &flags);
	priv->gpio_hp_det_invert = !!(flags & OF_GPIO_ACTIVE_LOW);
489 490 491
	if (priv->gpio_hp_det == -EPROBE_DEFER)
		return -EPROBE_DEFER;

492 493 494
	priv->gpio_mic_det = of_get_named_gpio_flags(node,
				"simple-audio-card,mic-det-gpio", 0, &flags);
	priv->gpio_mic_det_invert = !!(flags & OF_GPIO_ACTIVE_LOW);
495 496 497
	if (priv->gpio_mic_det == -EPROBE_DEFER)
		return -EPROBE_DEFER;

498
	if (!priv->snd_card.name)
499
		priv->snd_card.name = priv->snd_card.dai_link->name;
500

501 502 503
	return 0;
}

504
/* Decrease the reference count of the device nodes */
505
static int asoc_simple_card_unref(struct snd_soc_card *card)
506 507 508 509 510 511 512
{
	struct snd_soc_dai_link *dai_link;
	int num_links;

	for (num_links = 0, dai_link = card->dai_link;
	     num_links < card->num_links;
	     num_links++, dai_link++) {
513 514
		of_node_put(dai_link->cpu_of_node);
		of_node_put(dai_link->codec_of_node);
515 516 517 518
	}
	return 0;
}

519 520
static int asoc_simple_card_probe(struct platform_device *pdev)
{
521
	struct simple_card_data *priv;
522
	struct snd_soc_dai_link *dai_link;
523
	struct device_node *np = pdev->dev.of_node;
524
	struct device *dev = &pdev->dev;
525
	int num_links, ret;
526

527
	/* Get the number of DAI links */
528
	if (np && of_get_child_by_name(np, "simple-audio-card,dai-link"))
529
		num_links = of_get_child_count(np);
530
	else
531
		num_links = 1;
532

533
	/* Allocate the private data and the DAI link array */
534
	priv = devm_kzalloc(dev,
535
			sizeof(*priv) + sizeof(*dai_link) * num_links,
536
			GFP_KERNEL);
537
	if (!priv)
538 539
		return -ENOMEM;

540
	/* Init snd_soc_card */
541 542
	priv->snd_card.owner = THIS_MODULE;
	priv->snd_card.dev = dev;
543
	dai_link = priv->dai_link;
544
	priv->snd_card.dai_link = dai_link;
545
	priv->snd_card.num_links = num_links;
546

547 548 549
	priv->gpio_hp_det = -ENOENT;
	priv->gpio_mic_det = -ENOENT;

550
	/* Get room for the other properties */
551
	priv->dai_props = devm_kzalloc(dev,
552
			sizeof(*priv->dai_props) * num_links,
553 554 555 556
			GFP_KERNEL);
	if (!priv->dai_props)
		return -ENOMEM;

557
	if (np && of_device_is_available(np)) {
558

559
		ret = asoc_simple_card_parse_of(np, priv);
560 561 562
		if (ret < 0) {
			if (ret != -EPROBE_DEFER)
				dev_err(dev, "parse error %d\n", ret);
563
			goto err;
564
		}
565

566
	} else {
567 568 569 570
		struct asoc_simple_card_info *cinfo;

		cinfo = dev->platform_data;
		if (!cinfo) {
571 572 573
			dev_err(dev, "no info for asoc-simple-card\n");
			return -EINVAL;
		}
574

575 576 577 578
		if (!cinfo->name ||
		    !cinfo->codec_dai.name ||
		    !cinfo->codec ||
		    !cinfo->platform ||
579 580 581 582
		    !cinfo->cpu_dai.name) {
			dev_err(dev, "insufficient asoc_simple_card_info settings\n");
			return -EINVAL;
		}
583

584
		priv->snd_card.name	= (cinfo->card) ? cinfo->card : cinfo->name;
585 586 587 588
		dai_link->name		= cinfo->name;
		dai_link->stream_name	= cinfo->name;
		dai_link->platform_name	= cinfo->platform;
		dai_link->codec_name	= cinfo->codec;
589 590
		dai_link->cpu_dai_name	= cinfo->cpu_dai.name;
		dai_link->codec_dai_name = cinfo->codec_dai.name;
591
		dai_link->dai_fmt	= cinfo->daifmt;
592
		dai_link->init		= asoc_simple_card_dai_init;
593 594 595 596
		memcpy(&priv->dai_props->cpu_dai, &cinfo->cpu_dai,
					sizeof(priv->dai_props->cpu_dai));
		memcpy(&priv->dai_props->codec_dai, &cinfo->codec_dai,
					sizeof(priv->dai_props->codec_dai));
597

598 599
	}

600
	snd_soc_card_set_drvdata(&priv->snd_card, priv);
601

602
	ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
603 604
	if (ret >= 0)
		return ret;
605 606

err:
607
	asoc_simple_card_unref(&priv->snd_card);
608
	return ret;
609 610
}

611 612
static int asoc_simple_card_remove(struct platform_device *pdev)
{
613 614 615 616 617 618 619 620 621 622
	struct snd_soc_card *card = platform_get_drvdata(pdev);
	struct simple_card_data *priv = snd_soc_card_get_drvdata(card);

	if (gpio_is_valid(priv->gpio_hp_det))
		snd_soc_jack_free_gpios(&simple_card_hp_jack, 1,
					&simple_card_hp_jack_gpio);
	if (gpio_is_valid(priv->gpio_mic_det))
		snd_soc_jack_free_gpios(&simple_card_mic_jack, 1,
					&simple_card_mic_jack_gpio);

623
	return asoc_simple_card_unref(card);
624 625
}

626 627 628 629 630 631
static const struct of_device_id asoc_simple_of_match[] = {
	{ .compatible = "simple-audio-card", },
	{},
};
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);

632 633
static struct platform_driver asoc_simple_card = {
	.driver = {
634
		.name = "asoc-simple-card",
635
		.of_match_table = asoc_simple_of_match,
636
	},
637
	.probe = asoc_simple_card_probe,
638
	.remove = asoc_simple_card_remove,
639 640 641 642
};

module_platform_driver(asoc_simple_card);

643
MODULE_ALIAS("platform:asoc-simple-card");
644 645 646
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("ASoC Simple Sound Card");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");