| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #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) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ret && daifmt) | 
					
						
							|  |  |  | 		ret = snd_soc_dai_set_fmt(dai, daifmt); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 22:46:49 -07:00
										 |  |  | 	if (ret == -ENOTSUPP) { | 
					
						
							|  |  |  | 		dev_dbg(dai->dev, "ASoC: set_fmt is not supported\n"); | 
					
						
							|  |  |  | 		ret = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	if (!ret && set->sysclk) | 
					
						
							|  |  |  | 		ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	struct asoc_simple_card_info *info = asoc_simple_get_card_info(rtd); | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 	struct snd_soc_dai *codec = rtd->codec_dai; | 
					
						
							|  |  |  | 	struct snd_soc_dai *cpu = rtd->cpu_dai; | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	unsigned int daifmt = info->daifmt; | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	ret = __asoc_simple_card_dai_init(codec, &info->codec_dai, daifmt); | 
					
						
							|  |  |  | 	if (ret < 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	ret = __asoc_simple_card_dai_init(cpu, &info->cpu_dai, daifmt); | 
					
						
							|  |  |  | 	if (ret < 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int asoc_simple_card_probe(struct platform_device *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct asoc_simple_card_info *cinfo = pdev->dev.platform_data; | 
					
						
							| 
									
										
										
										
											2012-12-25 22:52:33 -08:00
										 |  |  | 	struct device *dev = &pdev->dev; | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!cinfo) { | 
					
						
							| 
									
										
										
										
											2012-12-25 22:52:33 -08:00
										 |  |  | 		dev_err(dev, "no info for asoc-simple-card\n"); | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!cinfo->name	|| | 
					
						
							|  |  |  | 	    !cinfo->card	|| | 
					
						
							|  |  |  | 	    !cinfo->codec	|| | 
					
						
							|  |  |  | 	    !cinfo->platform	|| | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	    !cinfo->cpu_dai.name || | 
					
						
							|  |  |  | 	    !cinfo->codec_dai.name) { | 
					
						
							| 
									
										
										
										
											2012-12-25 22:52:33 -08:00
										 |  |  | 		dev_err(dev, "insufficient asoc_simple_card_info settings\n"); | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * init snd_soc_dai_link | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	cinfo->snd_link.name		= cinfo->name; | 
					
						
							|  |  |  | 	cinfo->snd_link.stream_name	= cinfo->name; | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	cinfo->snd_link.cpu_dai_name	= cinfo->cpu_dai.name; | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 	cinfo->snd_link.platform_name	= cinfo->platform; | 
					
						
							|  |  |  | 	cinfo->snd_link.codec_name	= cinfo->codec; | 
					
						
							| 
									
										
										
										
											2013-01-10 16:49:11 -08:00
										 |  |  | 	cinfo->snd_link.codec_dai_name	= cinfo->codec_dai.name; | 
					
						
							|  |  |  | 	cinfo->snd_link.init		= asoc_simple_card_dai_init; | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * 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; | 
					
						
							|  |  |  | 	cinfo->snd_card.dev		= &pdev->dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return snd_soc_register_card(&cinfo->snd_card); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int asoc_simple_card_remove(struct platform_device *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct asoc_simple_card_info *cinfo = pdev->dev.platform_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return snd_soc_unregister_card(&cinfo->snd_card); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_driver asoc_simple_card = { | 
					
						
							|  |  |  | 	.driver = { | 
					
						
							|  |  |  | 		.name	= "asoc-simple-card", | 
					
						
							| 
									
										
										
										
											2013-08-23 14:35:17 -03:00
										 |  |  | 		.owner = THIS_MODULE, | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.probe		= asoc_simple_card_probe, | 
					
						
							|  |  |  | 	.remove		= asoc_simple_card_remove, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_platform_driver(asoc_simple_card); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-23 14:35:17 -03:00
										 |  |  | MODULE_ALIAS("platform:asoc-simple-card"); | 
					
						
							| 
									
										
										
										
											2012-04-08 21:17:50 -07:00
										 |  |  | MODULE_LICENSE("GPL"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("ASoC Simple Sound Card"); | 
					
						
							|  |  |  | MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); |