simple-card.c 17.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/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
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 =
48
		&priv->dai_props[rtd->num];
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
	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 =
67
		&priv->dai_props[rtd->num];
68 69 70 71 72 73

	clk_disable_unprepare(dai_props->cpu_dai.clk);

	clk_disable_unprepare(dai_props->codec_dai.clk);
}

74 75 76 77 78
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;
79
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
80
	struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
81
	struct simple_dai_props *dai_props = &priv->dai_props[rtd->num];
82
	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
		ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
					     SND_SOC_CLOCK_IN);
94 95 96 97 98 99 100
		if (ret && ret != -ENOTSUPP)
			goto err;

		ret = snd_soc_dai_set_sysclk(cpu_dai, 0, mclk,
					     SND_SOC_CLOCK_OUT);
		if (ret && ret != -ENOTSUPP)
			goto err;
101 102
	}

103
err:
104 105 106 107
	return ret;
}

static struct snd_soc_ops asoc_simple_card_ops = {
108 109
	.startup = asoc_simple_card_startup,
	.shutdown = asoc_simple_card_shutdown,
110 111 112
	.hw_params = asoc_simple_card_hw_params,
};

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
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,
};

139
static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai,
140
				       struct asoc_simple_dai *set)
141
{
142
	int ret;
143

144
	if (set->sysclk) {
145
		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0);
146 147 148 149 150 151
		if (ret && ret != -ENOTSUPP) {
			dev_err(dai->dev, "simple-card: set_sysclk error\n");
			goto err;
		}
	}

152
	if (set->slots) {
153 154 155
		ret = snd_soc_dai_set_tdm_slot(dai,
					       set->tx_slot_mask,
					       set->rx_slot_mask,
156 157 158 159 160 161 162 163
						set->slots,
						set->slot_width);
		if (ret && ret != -ENOTSUPP) {
			dev_err(dai->dev, "simple-card: set_tdm_slot error\n");
			goto err;
		}
	}

164
	ret = 0;
165

166
err:
167 168 169
	return ret;
}

170 171
static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd)
{
172
	struct simple_card_data *priv =	snd_soc_card_get_drvdata(rtd->card);
173 174
	struct snd_soc_dai *codec = rtd->codec_dai;
	struct snd_soc_dai *cpu = rtd->cpu_dai;
175
	struct simple_dai_props *dai_props;
176
	int ret;
177

178
	dai_props = &priv->dai_props[rtd->num];
179
	ret = __asoc_simple_card_dai_init(codec, &dai_props->codec_dai);
180 181
	if (ret < 0)
		return ret;
182

183
	ret = __asoc_simple_card_dai_init(cpu, &dai_props->cpu_dai);
184 185
	if (ret < 0)
		return ret;
186

187
	if (gpio_is_valid(priv->gpio_hp_det)) {
188 189 190 191 192
		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));
193 194

		simple_card_hp_jack_gpio.gpio = priv->gpio_hp_det;
195
		simple_card_hp_jack_gpio.invert = priv->gpio_hp_det_invert;
196 197 198 199 200
		snd_soc_jack_add_gpios(&simple_card_hp_jack, 1,
				       &simple_card_hp_jack_gpio);
	}

	if (gpio_is_valid(priv->gpio_mic_det)) {
201 202 203 204 205
		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));
206
		simple_card_mic_jack_gpio.gpio = priv->gpio_mic_det;
207
		simple_card_mic_jack_gpio.invert = priv->gpio_mic_det_invert;
208 209 210
		snd_soc_jack_add_gpios(&simple_card_mic_jack, 1,
				       &simple_card_mic_jack_gpio);
	}
211 212 213
	return 0;
}

214 215 216
static int
asoc_simple_card_sub_parse_of(struct device_node *np,
			      struct asoc_simple_dai *dai,
217
			      struct device_node **p_node,
218 219
			      const char **name,
			      int *args_count)
220
{
221
	struct of_phandle_args args;
222
	struct clk *clk;
223
	u32 val;
224 225 226
	int ret;

	/*
227
	 * Get node via "sound-dai = <&phandle port>"
228 229
	 * it will be used as xxx_of_node on soc_bind_dai_link()
	 */
230 231 232 233 234 235 236 237 238
	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;
239

240
	/* Get dai->name */
241
	ret = snd_soc_of_get_dai_name(np, name);
242
	if (ret < 0)
243
		return ret;
244

245
	/* Parse TDM slot */
246 247 248
	ret = snd_soc_of_parse_tdm_slot(np, &dai->tx_slot_mask,
					&dai->rx_slot_mask,
					&dai->slots, &dai->slot_width);
249
	if (ret)
250
		return ret;
251

252
	/*
253 254
	 * Parse dai->sysclk come from "clocks = <&xxx>"
	 * (if system has common clock)
255
	 *  or "system-clock-frequency = <xxx>"
256
	 *  or device's module clock.
257
	 */
258 259 260 261
	if (of_property_read_bool(np, "clocks")) {
		clk = of_clk_get(np, 0);
		if (IS_ERR(clk)) {
			ret = PTR_ERR(clk);
262
			return ret;
263 264 265
		}

		dai->sysclk = clk_get_rate(clk);
266
		dai->clk = clk;
267 268
	} else if (!of_property_read_u32(np, "system-clock-frequency", &val)) {
		dai->sysclk = val;
269
	} else {
270
		clk = of_clk_get(args.np, 0);
271 272
		if (!IS_ERR(clk))
			dai->sysclk = clk_get_rate(clk);
273
	}
274

275
	return 0;
276 277
}

278 279 280 281 282
static int asoc_simple_card_parse_daifmt(struct device_node *node,
					 struct simple_card_data *priv,
					 struct device_node *codec,
					 char *prefix, int idx)
{
283
	struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
	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");

301
		daifmt = snd_soc_of_parse_daifmt(codec, NULL, NULL, NULL) |
302 303 304 305 306 307 308 309 310 311
			(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;
	}

312 313
	dai_link->dai_fmt = daifmt;

314 315 316 317 318 319
	of_node_put(bitclkmaster);
	of_node_put(framemaster);

	return 0;
}

320
static int asoc_simple_card_dai_link_of(struct device_node *node,
321
					struct simple_card_data *priv,
322
					int idx,
323
					bool is_top_level_node)
324
{
325
	struct device *dev = simple_priv_to_dev(priv);
326 327
	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);
328
	struct device_node *cpu = NULL;
329
	struct device_node *plat = NULL;
330
	struct device_node *codec = NULL;
331 332 333
	char *name;
	char prop[128];
	char *prefix = "";
334
	int ret, cpu_args;
335
	u32 val;
336

337
	/* For single DAI link & old style of DT node */
338 339
	if (is_top_level_node)
		prefix = "simple-audio-card,";
340 341

	snprintf(prop, sizeof(prop), "%scpu", prefix);
342 343
	cpu = of_get_child_by_name(node, prop);

344 345 346
	snprintf(prop, sizeof(prop), "%splat", prefix);
	plat = of_get_child_by_name(node, prop);

347 348 349 350
	snprintf(prop, sizeof(prop), "%scodec", prefix);
	codec = of_get_child_by_name(node, prop);

	if (!cpu || !codec) {
351
		ret = -EINVAL;
352
		dev_err(dev, "%s: Can't find %s DT node\n", __func__, prop);
353
		goto dai_link_of_err;
354
	}
355

356
	ret = asoc_simple_card_parse_daifmt(node, priv,
357
					    codec, prefix, idx);
358 359 360
	if (ret < 0)
		goto dai_link_of_err;

361 362 363
	if (!of_property_read_u32(node, "mclk-fs", &val))
		dai_props->mclk_fs = val;

364
	ret = asoc_simple_card_sub_parse_of(cpu, &dai_props->cpu_dai,
365
					    &dai_link->cpu_of_node,
366 367
					    &dai_link->cpu_dai_name,
					    &cpu_args);
368
	if (ret < 0)
369 370
		goto dai_link_of_err;

371
	ret = asoc_simple_card_sub_parse_of(codec, &dai_props->codec_dai,
372
					    &dai_link->codec_of_node,
373
					    &dai_link->codec_dai_name, NULL);
374 375 376 377
	if (ret < 0)
		goto dai_link_of_err;

	if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name) {
378 379
		ret = -EINVAL;
		goto dai_link_of_err;
380 381
	}

382 383 384 385 386 387 388 389 390 391
	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;
	}
392

393
	/* DAI link name is created from CPU/CODEC dai name */
394 395 396 397
	name = devm_kzalloc(dev,
			    strlen(dai_link->cpu_dai_name)   +
			    strlen(dai_link->codec_dai_name) + 2,
			    GFP_KERNEL);
398 399 400 401 402
	if (!name) {
		ret = -ENOMEM;
		goto dai_link_of_err;
	}

403 404 405
	sprintf(name, "%s-%s", dai_link->cpu_dai_name,
				dai_link->codec_dai_name);
	dai_link->name = dai_link->stream_name = name;
406
	dai_link->ops = &asoc_simple_card_ops;
407
	dai_link->init = asoc_simple_card_dai_init;
408 409

	dev_dbg(dev, "\tname : %s\n", dai_link->stream_name);
410 411
	dev_dbg(dev, "\tformat : %04x\n", dai_link->dai_fmt);
	dev_dbg(dev, "\tcpu : %s / %d\n",
412 413
		dai_link->cpu_dai_name,
		dai_props->cpu_dai.sysclk);
414
	dev_dbg(dev, "\tcodec : %s / %d\n",
415 416 417
		dai_link->codec_dai_name,
		dai_props->codec_dai.sysclk);

418
	/*
419 420 421 422 423
	 * 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:
424 425 426
	 *	fmt_single_name()
	 *	fmt_multiple_name()
	 */
427 428
	if (!cpu_args)
		dai_link->cpu_dai_name = NULL;
429

430
dai_link_of_err:
431 432 433
	of_node_put(cpu);
	of_node_put(codec);

434 435 436
	return ret;
}

437
static int asoc_simple_card_parse_of(struct device_node *node,
438
				     struct simple_card_data *priv)
439
{
440
	struct device *dev = simple_priv_to_dev(priv);
441
	enum of_gpio_flags flags;
442
	u32 val;
443
	int ret;
444

445 446 447
	if (!node)
		return -EINVAL;

448
	/* Parse the card name from DT */
449 450
	snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name");

451
	/* The off-codec widgets */
452 453 454 455 456 457 458
	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;
	}

459
	/* DAPM routes */
460
	if (of_property_read_bool(node, "simple-audio-card,routing")) {
461
		ret = snd_soc_of_parse_audio_routing(&priv->snd_card,
462
					"simple-audio-card,routing");
463 464 465
		if (ret)
			return ret;
	}
466

467
	/* Factor to mclk, used in hw_params() */
468 469 470
	ret = of_property_read_u32(node, "simple-audio-card,mclk-fs", &val);
	if (ret == 0)
		priv->mclk_fs = val;
471

472 473 474
	dev_dbg(dev, "New simple-card: %s\n", priv->snd_card.name ?
		priv->snd_card.name : "");

475 476
	/* Single/Muti DAI link(s) & New style of DT node */
	if (of_get_child_by_name(node, "simple-audio-card,dai-link")) {
477
		struct device_node *np = NULL;
478 479 480
		int i = 0;

		for_each_child_of_node(node, np) {
481
			dev_dbg(dev, "\tlink %d:\n", i);
482
			ret = asoc_simple_card_dai_link_of(np, priv,
483
							   i, false);
484 485 486 487
			if (ret < 0) {
				of_node_put(np);
				return ret;
			}
488
			i++;
489
		}
490
	} else {
491
		/* For single DAI link & old style of DT node */
492
		ret = asoc_simple_card_dai_link_of(node, priv, 0, true);
493
		if (ret < 0)
494
			return ret;
495
	}
496

497 498 499
	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);
500 501 502
	if (priv->gpio_hp_det == -EPROBE_DEFER)
		return -EPROBE_DEFER;

503 504 505
	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);
506 507 508
	if (priv->gpio_mic_det == -EPROBE_DEFER)
		return -EPROBE_DEFER;

509
	if (!priv->snd_card.name)
510
		priv->snd_card.name = priv->snd_card.dai_link->name;
511

512 513 514
	return 0;
}

515
/* Decrease the reference count of the device nodes */
516
static int asoc_simple_card_unref(struct snd_soc_card *card)
517 518 519 520 521 522 523
{
	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++) {
524 525
		of_node_put(dai_link->cpu_of_node);
		of_node_put(dai_link->codec_of_node);
526 527 528 529
	}
	return 0;
}

530 531
static int asoc_simple_card_probe(struct platform_device *pdev)
{
532
	struct simple_card_data *priv;
533
	struct snd_soc_dai_link *dai_link;
534
	struct device_node *np = pdev->dev.of_node;
535
	struct device *dev = &pdev->dev;
536
	int num_links, ret;
537

538
	/* Get the number of DAI links */
539
	if (np && of_get_child_by_name(np, "simple-audio-card,dai-link"))
540
		num_links = of_get_child_count(np);
541
	else
542
		num_links = 1;
543

544
	/* Allocate the private data and the DAI link array */
545
	priv = devm_kzalloc(dev,
546
			sizeof(*priv) + sizeof(*dai_link) * num_links,
547
			GFP_KERNEL);
548
	if (!priv)
549 550
		return -ENOMEM;

551
	/* Init snd_soc_card */
552 553
	priv->snd_card.owner = THIS_MODULE;
	priv->snd_card.dev = dev;
554
	dai_link = priv->dai_link;
555
	priv->snd_card.dai_link = dai_link;
556
	priv->snd_card.num_links = num_links;
557

558 559 560
	priv->gpio_hp_det = -ENOENT;
	priv->gpio_mic_det = -ENOENT;

561
	/* Get room for the other properties */
562
	priv->dai_props = devm_kzalloc(dev,
563
			sizeof(*priv->dai_props) * num_links,
564 565 566 567
			GFP_KERNEL);
	if (!priv->dai_props)
		return -ENOMEM;

568
	if (np && of_device_is_available(np)) {
569

570
		ret = asoc_simple_card_parse_of(np, priv);
571 572 573
		if (ret < 0) {
			if (ret != -EPROBE_DEFER)
				dev_err(dev, "parse error %d\n", ret);
574
			goto err;
575
		}
576

577
	} else {
578 579 580 581
		struct asoc_simple_card_info *cinfo;

		cinfo = dev->platform_data;
		if (!cinfo) {
582 583 584
			dev_err(dev, "no info for asoc-simple-card\n");
			return -EINVAL;
		}
585

586 587 588 589
		if (!cinfo->name ||
		    !cinfo->codec_dai.name ||
		    !cinfo->codec ||
		    !cinfo->platform ||
590 591 592 593
		    !cinfo->cpu_dai.name) {
			dev_err(dev, "insufficient asoc_simple_card_info settings\n");
			return -EINVAL;
		}
594

595
		priv->snd_card.name	= (cinfo->card) ? cinfo->card : cinfo->name;
596 597 598 599
		dai_link->name		= cinfo->name;
		dai_link->stream_name	= cinfo->name;
		dai_link->platform_name	= cinfo->platform;
		dai_link->codec_name	= cinfo->codec;
600 601
		dai_link->cpu_dai_name	= cinfo->cpu_dai.name;
		dai_link->codec_dai_name = cinfo->codec_dai.name;
602
		dai_link->dai_fmt	= cinfo->daifmt;
603
		dai_link->init		= asoc_simple_card_dai_init;
604 605 606 607
		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));
608

609 610
	}

611
	snd_soc_card_set_drvdata(&priv->snd_card, priv);
612

613
	ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
614 615
	if (ret >= 0)
		return ret;
616 617

err:
618
	asoc_simple_card_unref(&priv->snd_card);
619
	return ret;
620 621
}

622 623
static int asoc_simple_card_remove(struct platform_device *pdev)
{
624 625 626 627 628 629 630 631 632 633
	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);

634
	return asoc_simple_card_unref(card);
635 636
}

637 638 639 640 641 642
static const struct of_device_id asoc_simple_of_match[] = {
	{ .compatible = "simple-audio-card", },
	{},
};
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);

643 644
static struct platform_driver asoc_simple_card = {
	.driver = {
645
		.name = "asoc-simple-card",
646
		.of_match_table = asoc_simple_of_match,
647
	},
648
	.probe = asoc_simple_card_probe,
649
	.remove = asoc_simple_card_remove,
650 651 652 653
};

module_platform_driver(asoc_simple_card);

654
MODULE_ALIAS("platform:asoc-simple-card");
655 656 657
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("ASoC Simple Sound Card");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");