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 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
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 82 83
	struct simple_dai_props *dai_props =
		&priv->dai_props[rtd - rtd->card->rtd];
	unsigned int mclk, mclk_fs = 0;
84 85
	int ret = 0;

86 87 88 89 90 91 92
	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;
93 94
		ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
					     SND_SOC_CLOCK_IN);
95 96 97 98 99 100 101
		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;
102 103
	}

104
err:
105 106 107 108
	return ret;
}

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

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 139
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,
};

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

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

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

165
	ret = 0;
166

167
err:
168 169 170
	return ret;
}

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

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

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

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

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

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

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

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

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

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

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

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

277
	return 0;
278 279
}

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

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

314 315
	dai_link->dai_fmt = daifmt;

316 317 318 319 320 321
	of_node_put(bitclkmaster);
	of_node_put(framemaster);

	return 0;
}

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

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

	snprintf(prop, sizeof(prop), "%scpu", prefix);
344 345
	cpu = of_get_child_by_name(node, prop);

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

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

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

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

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

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

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

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

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

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

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

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

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

432
dai_link_of_err:
433 434 435
	of_node_put(cpu);
	of_node_put(codec);

436 437 438
	return ret;
}

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

447 448 449
	if (!node)
		return -EINVAL;

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

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

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

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

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

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

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

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

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

511
	if (!priv->snd_card.name)
512
		priv->snd_card.name = priv->snd_card.dai_link->name;
513

514 515 516
	return 0;
}

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

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

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

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

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

560 561 562
	priv->gpio_hp_det = -ENOENT;
	priv->gpio_mic_det = -ENOENT;

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

570
	if (np && of_device_is_available(np)) {
571

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

579
	} else {
580 581 582 583
		struct asoc_simple_card_info *cinfo;

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

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

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

611 612
	}

613
	snd_soc_card_set_drvdata(&priv->snd_card, priv);
614

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

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

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

636
	return asoc_simple_card_unref(card);
637 638
}

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

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

module_platform_driver(asoc_simple_card);

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