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
	return 0;
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
	int ret;

226 227 228
	if (!np)
		return 0;

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

243
	/* Get dai->name */
244 245 246 247 248 249 250 251
	if (name) {
		ret = snd_soc_of_get_dai_name(np, name);
		if (ret < 0)
			return ret;
	}

	if (!dai)
		return 0;
252

253
	/* Parse TDM slot */
254 255 256
	ret = snd_soc_of_parse_tdm_slot(np, &dai->tx_slot_mask,
					&dai->rx_slot_mask,
					&dai->slots, &dai->slot_width);
257
	if (ret)
258
		return ret;
259

260
	/*
261 262
	 * Parse dai->sysclk come from "clocks = <&xxx>"
	 * (if system has common clock)
263
	 *  or "system-clock-frequency = <xxx>"
264
	 *  or device's module clock.
265
	 */
266 267 268 269
	if (of_property_read_bool(np, "clocks")) {
		clk = of_clk_get(np, 0);
		if (IS_ERR(clk)) {
			ret = PTR_ERR(clk);
270
			return ret;
271 272 273
		}

		dai->sysclk = clk_get_rate(clk);
274
		dai->clk = clk;
275 276
	} else if (!of_property_read_u32(np, "system-clock-frequency", &val)) {
		dai->sysclk = val;
277
	} else {
278
		clk = of_clk_get(args.np, 0);
279 280
		if (!IS_ERR(clk))
			dai->sysclk = clk_get_rate(clk);
281
	}
282

283
	return 0;
284 285
}

286 287 288 289 290
static int asoc_simple_card_parse_daifmt(struct device_node *node,
					 struct simple_card_data *priv,
					 struct device_node *codec,
					 char *prefix, int idx)
{
291
	struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx);
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
	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");

309
		daifmt = snd_soc_of_parse_daifmt(codec, NULL, NULL, NULL) |
310 311 312 313 314 315 316 317 318 319
			(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;
	}

320 321
	dai_link->dai_fmt = daifmt;

322 323 324 325 326 327
	of_node_put(bitclkmaster);
	of_node_put(framemaster);

	return 0;
}

328
static int asoc_simple_card_dai_link_of(struct device_node *node,
329
					struct simple_card_data *priv,
330
					int idx,
331
					bool is_top_level_node)
332
{
333
	struct device *dev = simple_priv_to_dev(priv);
334 335
	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);
336
	struct device_node *cpu = NULL;
337
	struct device_node *plat = NULL;
338
	struct device_node *codec = NULL;
339 340 341
	char *name;
	char prop[128];
	char *prefix = "";
342
	int ret, cpu_args;
343
	u32 val;
344

345
	/* For single DAI link & old style of DT node */
346 347
	if (is_top_level_node)
		prefix = "simple-audio-card,";
348 349

	snprintf(prop, sizeof(prop), "%scpu", prefix);
350 351
	cpu = of_get_child_by_name(node, prop);

352 353 354
	snprintf(prop, sizeof(prop), "%splat", prefix);
	plat = of_get_child_by_name(node, prop);

355 356 357 358
	snprintf(prop, sizeof(prop), "%scodec", prefix);
	codec = of_get_child_by_name(node, prop);

	if (!cpu || !codec) {
359
		ret = -EINVAL;
360
		dev_err(dev, "%s: Can't find %s DT node\n", __func__, prop);
361
		goto dai_link_of_err;
362
	}
363

364
	ret = asoc_simple_card_parse_daifmt(node, priv,
365
					    codec, prefix, idx);
366 367 368
	if (ret < 0)
		goto dai_link_of_err;

369 370 371
	if (!of_property_read_u32(node, "mclk-fs", &val))
		dai_props->mclk_fs = val;

372
	ret = asoc_simple_card_sub_parse_of(cpu, &dai_props->cpu_dai,
373
					    &dai_link->cpu_of_node,
374 375
					    &dai_link->cpu_dai_name,
					    &cpu_args);
376
	if (ret < 0)
377 378
		goto dai_link_of_err;

379
	ret = asoc_simple_card_sub_parse_of(codec, &dai_props->codec_dai,
380
					    &dai_link->codec_of_node,
381
					    &dai_link->codec_dai_name, NULL);
382 383 384
	if (ret < 0)
		goto dai_link_of_err;

385 386 387 388 389 390
	ret = asoc_simple_card_sub_parse_of(plat, NULL,
					    &dai_link->platform_of_node,
					    NULL, NULL);
	if (ret < 0)
		goto dai_link_of_err;

391
	if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name) {
392 393
		ret = -EINVAL;
		goto dai_link_of_err;
394 395
	}

396 397
	/* Assumes platform == cpu */
	if (!dai_link->platform_of_node)
398
		dai_link->platform_of_node = dai_link->cpu_of_node;
399

400
	/* DAI link name is created from CPU/CODEC dai name */
401 402 403 404
	name = devm_kzalloc(dev,
			    strlen(dai_link->cpu_dai_name)   +
			    strlen(dai_link->codec_dai_name) + 2,
			    GFP_KERNEL);
405 406 407 408 409
	if (!name) {
		ret = -ENOMEM;
		goto dai_link_of_err;
	}

410 411 412
	sprintf(name, "%s-%s", dai_link->cpu_dai_name,
				dai_link->codec_dai_name);
	dai_link->name = dai_link->stream_name = name;
413
	dai_link->ops = &asoc_simple_card_ops;
414
	dai_link->init = asoc_simple_card_dai_init;
415 416

	dev_dbg(dev, "\tname : %s\n", dai_link->stream_name);
417 418
	dev_dbg(dev, "\tformat : %04x\n", dai_link->dai_fmt);
	dev_dbg(dev, "\tcpu : %s / %d\n",
419 420
		dai_link->cpu_dai_name,
		dai_props->cpu_dai.sysclk);
421
	dev_dbg(dev, "\tcodec : %s / %d\n",
422 423 424
		dai_link->codec_dai_name,
		dai_props->codec_dai.sysclk);

425
	/*
426 427 428 429 430
	 * 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:
431 432 433
	 *	fmt_single_name()
	 *	fmt_multiple_name()
	 */
434 435
	if (!cpu_args)
		dai_link->cpu_dai_name = NULL;
436

437
dai_link_of_err:
438 439 440
	of_node_put(cpu);
	of_node_put(codec);

441 442 443
	return ret;
}

444
static int asoc_simple_card_parse_of(struct device_node *node,
445
				     struct simple_card_data *priv)
446
{
447
	struct device *dev = simple_priv_to_dev(priv);
448
	enum of_gpio_flags flags;
449
	u32 val;
450
	int ret;
451

452 453 454
	if (!node)
		return -EINVAL;

455
	/* Parse the card name from DT */
456 457
	snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name");

458
	/* The off-codec widgets */
459 460 461 462 463 464 465
	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;
	}

466
	/* DAPM routes */
467
	if (of_property_read_bool(node, "simple-audio-card,routing")) {
468
		ret = snd_soc_of_parse_audio_routing(&priv->snd_card,
469
					"simple-audio-card,routing");
470 471 472
		if (ret)
			return ret;
	}
473

474
	/* Factor to mclk, used in hw_params() */
475 476 477
	ret = of_property_read_u32(node, "simple-audio-card,mclk-fs", &val);
	if (ret == 0)
		priv->mclk_fs = val;
478

479 480 481
	dev_dbg(dev, "New simple-card: %s\n", priv->snd_card.name ?
		priv->snd_card.name : "");

482 483
	/* Single/Muti DAI link(s) & New style of DT node */
	if (of_get_child_by_name(node, "simple-audio-card,dai-link")) {
484
		struct device_node *np = NULL;
485 486 487
		int i = 0;

		for_each_child_of_node(node, np) {
488
			dev_dbg(dev, "\tlink %d:\n", i);
489
			ret = asoc_simple_card_dai_link_of(np, priv,
490
							   i, false);
491 492 493 494
			if (ret < 0) {
				of_node_put(np);
				return ret;
			}
495
			i++;
496
		}
497
	} else {
498
		/* For single DAI link & old style of DT node */
499
		ret = asoc_simple_card_dai_link_of(node, priv, 0, true);
500
		if (ret < 0)
501
			return ret;
502
	}
503

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

510 511 512
	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);
513 514 515
	if (priv->gpio_mic_det == -EPROBE_DEFER)
		return -EPROBE_DEFER;

516
	if (!priv->snd_card.name)
517
		priv->snd_card.name = priv->snd_card.dai_link->name;
518

519 520 521
	return 0;
}

522
/* Decrease the reference count of the device nodes */
523
static int asoc_simple_card_unref(struct snd_soc_card *card)
524 525 526 527 528 529 530
{
	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++) {
531 532
		of_node_put(dai_link->cpu_of_node);
		of_node_put(dai_link->codec_of_node);
533 534 535 536
	}
	return 0;
}

537 538
static int asoc_simple_card_probe(struct platform_device *pdev)
{
539
	struct simple_card_data *priv;
540
	struct snd_soc_dai_link *dai_link;
541
	struct device_node *np = pdev->dev.of_node;
542
	struct device *dev = &pdev->dev;
543
	int num_links, ret;
544

545
	/* Get the number of DAI links */
546
	if (np && of_get_child_by_name(np, "simple-audio-card,dai-link"))
547
		num_links = of_get_child_count(np);
548
	else
549
		num_links = 1;
550

551
	/* Allocate the private data and the DAI link array */
552
	priv = devm_kzalloc(dev,
553
			sizeof(*priv) + sizeof(*dai_link) * num_links,
554
			GFP_KERNEL);
555
	if (!priv)
556 557
		return -ENOMEM;

558
	/* Init snd_soc_card */
559 560
	priv->snd_card.owner = THIS_MODULE;
	priv->snd_card.dev = dev;
561
	dai_link = priv->dai_link;
562
	priv->snd_card.dai_link = dai_link;
563
	priv->snd_card.num_links = num_links;
564

565 566 567
	priv->gpio_hp_det = -ENOENT;
	priv->gpio_mic_det = -ENOENT;

568
	/* Get room for the other properties */
569
	priv->dai_props = devm_kzalloc(dev,
570
			sizeof(*priv->dai_props) * num_links,
571 572 573 574
			GFP_KERNEL);
	if (!priv->dai_props)
		return -ENOMEM;

575
	if (np && of_device_is_available(np)) {
576

577
		ret = asoc_simple_card_parse_of(np, priv);
578 579 580
		if (ret < 0) {
			if (ret != -EPROBE_DEFER)
				dev_err(dev, "parse error %d\n", ret);
581
			goto err;
582
		}
583

584
	} else {
585 586 587 588
		struct asoc_simple_card_info *cinfo;

		cinfo = dev->platform_data;
		if (!cinfo) {
589 590 591
			dev_err(dev, "no info for asoc-simple-card\n");
			return -EINVAL;
		}
592

593 594 595 596
		if (!cinfo->name ||
		    !cinfo->codec_dai.name ||
		    !cinfo->codec ||
		    !cinfo->platform ||
597 598 599 600
		    !cinfo->cpu_dai.name) {
			dev_err(dev, "insufficient asoc_simple_card_info settings\n");
			return -EINVAL;
		}
601

602
		priv->snd_card.name	= (cinfo->card) ? cinfo->card : cinfo->name;
603 604 605 606
		dai_link->name		= cinfo->name;
		dai_link->stream_name	= cinfo->name;
		dai_link->platform_name	= cinfo->platform;
		dai_link->codec_name	= cinfo->codec;
607 608
		dai_link->cpu_dai_name	= cinfo->cpu_dai.name;
		dai_link->codec_dai_name = cinfo->codec_dai.name;
609
		dai_link->dai_fmt	= cinfo->daifmt;
610
		dai_link->init		= asoc_simple_card_dai_init;
611 612 613 614
		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));
615

616 617
	}

618
	snd_soc_card_set_drvdata(&priv->snd_card, priv);
619

620
	ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card);
621 622
	if (ret >= 0)
		return ret;
623 624

err:
625
	asoc_simple_card_unref(&priv->snd_card);
626
	return ret;
627 628
}

629 630
static int asoc_simple_card_remove(struct platform_device *pdev)
{
631 632 633 634 635 636 637 638 639 640
	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);

641
	return asoc_simple_card_unref(card);
642 643
}

644 645 646 647 648 649
static const struct of_device_id asoc_simple_of_match[] = {
	{ .compatible = "simple-audio-card", },
	{},
};
MODULE_DEVICE_TABLE(of, asoc_simple_of_match);

650 651
static struct platform_driver asoc_simple_card = {
	.driver = {
652
		.name = "asoc-simple-card",
653
		.pm = &snd_soc_pm_ops,
654
		.of_match_table = asoc_simple_of_match,
655
	},
656
	.probe = asoc_simple_card_probe,
657
	.remove = asoc_simple_card_remove,
658 659 660 661
};

module_platform_driver(asoc_simple_card);

662
MODULE_ALIAS("platform:asoc-simple-card");
663 664 665
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("ASoC Simple Sound Card");
MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");