aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/au1x/db1200.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/au1x/db1200.c')
-rw-r--r--sound/soc/au1x/db1200.c40
1 files changed, 14 insertions, 26 deletions
diff --git a/sound/soc/au1x/db1200.c b/sound/soc/au1x/db1200.c
index cdf7be1b9b91..1d3e258c9ea8 100644
--- a/sound/soc/au1x/db1200.c
+++ b/sound/soc/au1x/db1200.c
@@ -13,13 +13,11 @@
13#include <sound/core.h> 13#include <sound/core.h>
14#include <sound/pcm.h> 14#include <sound/pcm.h>
15#include <sound/soc.h> 15#include <sound/soc.h>
16#include <sound/soc-dapm.h>
17#include <asm/mach-au1x00/au1000.h> 16#include <asm/mach-au1x00/au1000.h>
18#include <asm/mach-au1x00/au1xxx_psc.h> 17#include <asm/mach-au1x00/au1xxx_psc.h>
19#include <asm/mach-au1x00/au1xxx_dbdma.h> 18#include <asm/mach-au1x00/au1xxx_dbdma.h>
20#include <asm/mach-db1x00/bcsr.h> 19#include <asm/mach-db1x00/bcsr.h>
21 20
22#include "../codecs/ac97.h"
23#include "../codecs/wm8731.h" 21#include "../codecs/wm8731.h"
24#include "psc.h" 22#include "psc.h"
25 23
@@ -28,20 +26,16 @@
28static struct snd_soc_dai_link db1200_ac97_dai = { 26static struct snd_soc_dai_link db1200_ac97_dai = {
29 .name = "AC97", 27 .name = "AC97",
30 .stream_name = "AC97 HiFi", 28 .stream_name = "AC97 HiFi",
31 .cpu_dai = &au1xpsc_ac97_dai, 29 .codec_dai_name = "ac97-hifi",
32 .codec_dai = &ac97_dai, 30 .cpu_dai_name = "au1xpsc_ac97.1",
31 .platform_name = "au1xpsc-pcm.1",
32 .codec_name = "ac97-codec.1",
33}; 33};
34 34
35static struct snd_soc_card db1200_ac97_machine = { 35static struct snd_soc_card db1200_ac97_machine = {
36 .name = "DB1200_AC97", 36 .name = "DB1200_AC97",
37 .dai_link = &db1200_ac97_dai, 37 .dai_link = &db1200_ac97_dai,
38 .num_links = 1, 38 .num_links = 1,
39 .platform = &au1xpsc_soc_platform,
40};
41
42static struct snd_soc_device db1200_ac97_devdata = {
43 .card = &db1200_ac97_machine,
44 .codec_dev = &soc_codec_dev_ac97,
45}; 39};
46 40
47/*------------------------- I2S PART ---------------------------*/ 41/*------------------------- I2S PART ---------------------------*/
@@ -49,12 +43,12 @@ static struct snd_soc_device db1200_ac97_devdata = {
49static int db1200_i2s_startup(struct snd_pcm_substream *substream) 43static int db1200_i2s_startup(struct snd_pcm_substream *substream)
50{ 44{
51 struct snd_soc_pcm_runtime *rtd = substream->private_data; 45 struct snd_soc_pcm_runtime *rtd = substream->private_data;
52 struct snd_soc_dai *codec_dai = rtd->dai->codec_dai; 46 struct snd_soc_dai *codec_dai = rtd->codec_dai;
53 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; 47 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
54 int ret; 48 int ret;
55 49
56 /* WM8731 has its own 12MHz crystal */ 50 /* WM8731 has its own 12MHz crystal */
57 snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK, 51 snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_XTAL,
58 12000000, SND_SOC_CLOCK_IN); 52 12000000, SND_SOC_CLOCK_IN);
59 53
60 /* codec is bitclock and lrclk master */ 54 /* codec is bitclock and lrclk master */
@@ -80,8 +74,10 @@ static struct snd_soc_ops db1200_i2s_wm8731_ops = {
80static struct snd_soc_dai_link db1200_i2s_dai = { 74static struct snd_soc_dai_link db1200_i2s_dai = {
81 .name = "WM8731", 75 .name = "WM8731",
82 .stream_name = "WM8731 PCM", 76 .stream_name = "WM8731 PCM",
83 .cpu_dai = &au1xpsc_i2s_dai, 77 .codec_dai_name = "wm8731-hifi",
84 .codec_dai = &wm8731_dai, 78 .cpu_dai_name = "au1xpsc_i2s.1",
79 .platform_name = "au1xpsc-pcm.1",
80 .codec_name = "wm8731.0-001b",
85 .ops = &db1200_i2s_wm8731_ops, 81 .ops = &db1200_i2s_wm8731_ops,
86}; 82};
87 83
@@ -89,12 +85,6 @@ static struct snd_soc_card db1200_i2s_machine = {
89 .name = "DB1200_I2S", 85 .name = "DB1200_I2S",
90 .dai_link = &db1200_i2s_dai, 86 .dai_link = &db1200_i2s_dai,
91 .num_links = 1, 87 .num_links = 1,
92 .platform = &au1xpsc_soc_platform,
93};
94
95static struct snd_soc_device db1200_i2s_devdata = {
96 .card = &db1200_i2s_machine,
97 .codec_dev = &soc_codec_dev_wm8731,
98}; 88};
99 89
100/*------------------------- COMMON PART ---------------------------*/ 90/*------------------------- COMMON PART ---------------------------*/
@@ -106,18 +96,16 @@ static int __init db1200_audio_load(void)
106 int ret; 96 int ret;
107 97
108 ret = -ENOMEM; 98 ret = -ENOMEM;
109 db1200_asoc_dev = platform_device_alloc("soc-audio", -1); 99 db1200_asoc_dev = platform_device_alloc("soc-audio", 1); /* PSC1 */
110 if (!db1200_asoc_dev) 100 if (!db1200_asoc_dev)
111 goto out; 101 goto out;
112 102
113 /* DB1200 board setup set PSC1MUX to preferred audio device */ 103 /* DB1200 board setup set PSC1MUX to preferred audio device */
114 if (bcsr_read(BCSR_RESETS) & BCSR_RESETS_PSC1MUX) 104 if (bcsr_read(BCSR_RESETS) & BCSR_RESETS_PSC1MUX)
115 platform_set_drvdata(db1200_asoc_dev, &db1200_i2s_devdata); 105 platform_set_drvdata(db1200_asoc_dev, &db1200_i2s_machine);
116 else 106 else
117 platform_set_drvdata(db1200_asoc_dev, &db1200_ac97_devdata); 107 platform_set_drvdata(db1200_asoc_dev, &db1200_ac97_machine);
118 108
119 db1200_ac97_devdata.dev = &db1200_asoc_dev->dev;
120 db1200_i2s_devdata.dev = &db1200_asoc_dev->dev;
121 ret = platform_device_add(db1200_asoc_dev); 109 ret = platform_device_add(db1200_asoc_dev);
122 110
123 if (ret) { 111 if (ret) {