aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2011-03-07 02:04:59 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-03-07 07:20:01 -0500
commita077ff9034897232ab4208f55880221390bd6877 (patch)
tree04ff533fc1bd53c69252efc811523f67e2fc9a39 /sound/soc/codecs
parentf5c4ffbd65892829f7ec503a89ea24eb0fc952dc (diff)
ASoC: Add driver for the dfbmcs320 bluetooth module
This patch adds a codec driver for the dfbmcs320 bluetooth module, which is used on the neo1973 boards. The patch also modifies the neo1937_wm8753 sound board driver to use the new driver instead of registering the bluetooth DAI manually. Previously there was a name mismatch between the bluetooth DAI and the bluetooth DAI link and the sound card was not instantiated, with this patch the issue is no longer present and sound support works again. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r--sound/soc/codecs/Kconfig5
-rw-r--r--sound/soc/codecs/Makefile2
-rw-r--r--sound/soc/codecs/dfbmcs320.c72
3 files changed, 78 insertions, 1 deletions
diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig
index 37035e6984bb..212859cf19aa 100644
--- a/sound/soc/codecs/Kconfig
+++ b/sound/soc/codecs/Kconfig
@@ -29,6 +29,7 @@ config SND_SOC_ALL_CODECS
29 select SND_SOC_CS4271 if SND_SOC_I2C_AND_SPI 29 select SND_SOC_CS4271 if SND_SOC_I2C_AND_SPI
30 select SND_SOC_CX20442 30 select SND_SOC_CX20442
31 select SND_SOC_DA7210 if I2C 31 select SND_SOC_DA7210 if I2C
32 select SND_SOC_DFBMCS320
32 select SND_SOC_JZ4740_CODEC if SOC_JZ4740 33 select SND_SOC_JZ4740_CODEC if SOC_JZ4740
33 select SND_SOC_MAX98088 if I2C 34 select SND_SOC_MAX98088 if I2C
34 select SND_SOC_MAX9877 if I2C 35 select SND_SOC_MAX9877 if I2C
@@ -175,6 +176,9 @@ config SND_SOC_L3
175config SND_SOC_DA7210 176config SND_SOC_DA7210
176 tristate 177 tristate
177 178
179config SND_SOC_DFBMCS320
180 tristate
181
178config SND_SOC_DMIC 182config SND_SOC_DMIC
179 tristate 183 tristate
180 184
@@ -361,4 +365,3 @@ config SND_SOC_WM2000
361 365
362config SND_SOC_WM9090 366config SND_SOC_WM9090
363 tristate 367 tristate
364
diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile
index 0663d22e86be..ebb059c0eefc 100644
--- a/sound/soc/codecs/Makefile
+++ b/sound/soc/codecs/Makefile
@@ -15,6 +15,7 @@ snd-soc-cs4270-objs := cs4270.o
15snd-soc-cs4271-objs := cs4271.o 15snd-soc-cs4271-objs := cs4271.o
16snd-soc-cx20442-objs := cx20442.o 16snd-soc-cx20442-objs := cx20442.o
17snd-soc-da7210-objs := da7210.o 17snd-soc-da7210-objs := da7210.o
18snd-soc-dfbmcs320-objs := dfbmcs320.o
18snd-soc-dmic-objs := dmic.o 19snd-soc-dmic-objs := dmic.o
19snd-soc-l3-objs := l3.o 20snd-soc-l3-objs := l3.o
20snd-soc-max98088-objs := max98088.o 21snd-soc-max98088-objs := max98088.o
@@ -101,6 +102,7 @@ obj-$(CONFIG_SND_SOC_CS4270) += snd-soc-cs4270.o
101obj-$(CONFIG_SND_SOC_CS4271) += snd-soc-cs4271.o 102obj-$(CONFIG_SND_SOC_CS4271) += snd-soc-cs4271.o
102obj-$(CONFIG_SND_SOC_CX20442) += snd-soc-cx20442.o 103obj-$(CONFIG_SND_SOC_CX20442) += snd-soc-cx20442.o
103obj-$(CONFIG_SND_SOC_DA7210) += snd-soc-da7210.o 104obj-$(CONFIG_SND_SOC_DA7210) += snd-soc-da7210.o
105obj-$(CONFIG_SND_SOC_DFBMCS320) += snd-soc-dfbmcs320.o
104obj-$(CONFIG_SND_SOC_DMIC) += snd-soc-dmic.o 106obj-$(CONFIG_SND_SOC_DMIC) += snd-soc-dmic.o
105obj-$(CONFIG_SND_SOC_L3) += snd-soc-l3.o 107obj-$(CONFIG_SND_SOC_L3) += snd-soc-l3.o
106obj-$(CONFIG_SND_SOC_JZ4740_CODEC) += snd-soc-jz4740-codec.o 108obj-$(CONFIG_SND_SOC_JZ4740_CODEC) += snd-soc-jz4740-codec.o
diff --git a/sound/soc/codecs/dfbmcs320.c b/sound/soc/codecs/dfbmcs320.c
new file mode 100644
index 000000000000..704bbde65737
--- /dev/null
+++ b/sound/soc/codecs/dfbmcs320.c
@@ -0,0 +1,72 @@
1/*
2 * Driver for the DFBM-CS320 bluetooth module
3 * Copyright 2011 Lars-Peter Clausen <lars@metafoo.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 */
11
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/platform_device.h>
15
16#include <sound/soc.h>
17
18static struct snd_soc_dai_driver dfbmcs320_dai = {
19 .name = "dfbmcs320-pcm",
20 .playback = {
21 .channels_min = 1,
22 .channels_max = 1,
23 .rates = SNDRV_PCM_RATE_8000,
24 .formats = SNDRV_PCM_FMTBIT_S16_LE,
25 },
26 .capture = {
27 .channels_min = 1,
28 .channels_max = 1,
29 .rates = SNDRV_PCM_RATE_8000,
30 .formats = SNDRV_PCM_FMTBIT_S16_LE,
31 },
32};
33
34static struct snd_soc_codec_driver soc_codec_dev_dfbmcs320;
35
36static int __devinit dfbmcs320_probe(struct platform_device *pdev)
37{
38 return snd_soc_register_codec(&pdev->dev, &soc_codec_dev_dfbmcs320,
39 &dfbmcs320_dai, 1);
40}
41
42static int __devexit dfbmcs320_remove(struct platform_device *pdev)
43{
44 snd_soc_unregister_codec(&pdev->dev);
45
46 return 0;
47}
48
49static struct platform_driver dfmcs320_driver = {
50 .driver = {
51 .name = "dfbmcs320",
52 .owner = THIS_MODULE,
53 },
54 .probe = dfbmcs320_probe,
55 .remove = __devexit_p(dfbmcs320_remove),
56};
57
58static int __init dfbmcs320_init(void)
59{
60 return platform_driver_register(&dfmcs320_driver);
61}
62module_init(dfbmcs320_init);
63
64static void __exit dfbmcs320_exit(void)
65{
66 platform_driver_unregister(&dfmcs320_driver);
67}
68module_exit(dfbmcs320_exit);
69
70MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
71MODULE_DESCRIPTION("ASoC DFBM-CS320 bluethooth module driver");
72MODULE_LICENSE("GPL");