Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 1 | /* |
Manuel Lauss | f869d42 | 2011-11-10 12:06:16 +0000 | [diff] [blame] | 2 | * DB1200/DB1300/DB1550 ASoC audio fabric support code. |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 3 | * |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 4 | * (c) 2008-2011 Manuel Lauss <manuel.lauss@googlemail.com> |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 5 | * |
| 6 | */ |
| 7 | |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/moduleparam.h> |
| 10 | #include <linux/timer.h> |
| 11 | #include <linux/interrupt.h> |
| 12 | #include <linux/platform_device.h> |
| 13 | #include <sound/core.h> |
| 14 | #include <sound/pcm.h> |
| 15 | #include <sound/soc.h> |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 16 | #include <asm/mach-au1x00/au1000.h> |
| 17 | #include <asm/mach-au1x00/au1xxx_psc.h> |
| 18 | #include <asm/mach-au1x00/au1xxx_dbdma.h> |
| 19 | #include <asm/mach-db1x00/bcsr.h> |
| 20 | |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 21 | #include "../codecs/wm8731.h" |
| 22 | #include "psc.h" |
| 23 | |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 24 | static struct platform_device_id db1200_pids[] = { |
| 25 | { |
| 26 | .name = "db1200-ac97", |
| 27 | .driver_data = 0, |
| 28 | }, { |
| 29 | .name = "db1200-i2s", |
| 30 | .driver_data = 1, |
Manuel Lauss | 64cd04d | 2011-11-10 12:03:26 +0000 | [diff] [blame] | 31 | }, { |
| 32 | .name = "db1300-ac97", |
| 33 | .driver_data = 2, |
| 34 | }, { |
| 35 | .name = "db1300-i2s", |
| 36 | .driver_data = 3, |
Manuel Lauss | f869d42 | 2011-11-10 12:06:16 +0000 | [diff] [blame] | 37 | }, { |
| 38 | .name = "db1550-ac97", |
| 39 | .driver_data = 4, |
| 40 | }, { |
| 41 | .name = "db1550-i2s", |
| 42 | .driver_data = 5, |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 43 | }, |
| 44 | {}, |
| 45 | }; |
| 46 | |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 47 | /*------------------------- AC97 PART ---------------------------*/ |
| 48 | |
| 49 | static struct snd_soc_dai_link db1200_ac97_dai = { |
| 50 | .name = "AC97", |
| 51 | .stream_name = "AC97 HiFi", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 52 | .codec_dai_name = "ac97-hifi", |
Manuel Lauss | ffc4fdb | 2010-08-26 14:53:51 +0200 | [diff] [blame] | 53 | .cpu_dai_name = "au1xpsc_ac97.1", |
| 54 | .platform_name = "au1xpsc-pcm.1", |
| 55 | .codec_name = "ac97-codec.1", |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | static struct snd_soc_card db1200_ac97_machine = { |
| 59 | .name = "DB1200_AC97", |
Axel Lin | 662d4e5c | 2011-12-23 09:53:55 +0800 | [diff] [blame] | 60 | .owner = THIS_MODULE, |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 61 | .dai_link = &db1200_ac97_dai, |
| 62 | .num_links = 1, |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 63 | }; |
| 64 | |
Manuel Lauss | 64cd04d | 2011-11-10 12:03:26 +0000 | [diff] [blame] | 65 | static struct snd_soc_dai_link db1300_ac97_dai = { |
| 66 | .name = "AC97", |
| 67 | .stream_name = "AC97 HiFi", |
| 68 | .codec_dai_name = "wm9712-hifi", |
| 69 | .cpu_dai_name = "au1xpsc_ac97.1", |
| 70 | .platform_name = "au1xpsc-pcm.1", |
| 71 | .codec_name = "wm9712-codec.1", |
| 72 | }; |
| 73 | |
| 74 | static struct snd_soc_card db1300_ac97_machine = { |
| 75 | .name = "DB1300_AC97", |
| 76 | .dai_link = &db1300_ac97_dai, |
| 77 | .num_links = 1, |
| 78 | }; |
| 79 | |
Manuel Lauss | f869d42 | 2011-11-10 12:06:16 +0000 | [diff] [blame] | 80 | static struct snd_soc_card db1550_ac97_machine = { |
| 81 | .name = "DB1550_AC97", |
| 82 | .dai_link = &db1200_ac97_dai, |
| 83 | .num_links = 1, |
| 84 | }; |
| 85 | |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 86 | /*------------------------- I2S PART ---------------------------*/ |
| 87 | |
| 88 | static int db1200_i2s_startup(struct snd_pcm_substream *substream) |
| 89 | { |
| 90 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 91 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 92 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 93 | int ret; |
| 94 | |
| 95 | /* WM8731 has its own 12MHz crystal */ |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 96 | snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_XTAL, |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 97 | 12000000, SND_SOC_CLOCK_IN); |
| 98 | |
| 99 | /* codec is bitclock and lrclk master */ |
| 100 | ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_LEFT_J | |
| 101 | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM); |
| 102 | if (ret < 0) |
| 103 | goto out; |
| 104 | |
| 105 | ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_LEFT_J | |
| 106 | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM); |
| 107 | if (ret < 0) |
| 108 | goto out; |
| 109 | |
| 110 | ret = 0; |
| 111 | out: |
| 112 | return ret; |
| 113 | } |
| 114 | |
| 115 | static struct snd_soc_ops db1200_i2s_wm8731_ops = { |
| 116 | .startup = db1200_i2s_startup, |
| 117 | }; |
| 118 | |
| 119 | static struct snd_soc_dai_link db1200_i2s_dai = { |
| 120 | .name = "WM8731", |
| 121 | .stream_name = "WM8731 PCM", |
Manuel Lauss | ffc4fdb | 2010-08-26 14:53:51 +0200 | [diff] [blame] | 122 | .codec_dai_name = "wm8731-hifi", |
| 123 | .cpu_dai_name = "au1xpsc_i2s.1", |
| 124 | .platform_name = "au1xpsc-pcm.1", |
Mark Brown | 99b59f3 | 2011-03-27 14:35:15 +0100 | [diff] [blame] | 125 | .codec_name = "wm8731.0-001b", |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 126 | .ops = &db1200_i2s_wm8731_ops, |
| 127 | }; |
| 128 | |
| 129 | static struct snd_soc_card db1200_i2s_machine = { |
| 130 | .name = "DB1200_I2S", |
Axel Lin | 662d4e5c | 2011-12-23 09:53:55 +0800 | [diff] [blame] | 131 | .owner = THIS_MODULE, |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 132 | .dai_link = &db1200_i2s_dai, |
| 133 | .num_links = 1, |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 134 | }; |
| 135 | |
Manuel Lauss | 64cd04d | 2011-11-10 12:03:26 +0000 | [diff] [blame] | 136 | static struct snd_soc_dai_link db1300_i2s_dai = { |
| 137 | .name = "WM8731", |
| 138 | .stream_name = "WM8731 PCM", |
| 139 | .codec_dai_name = "wm8731-hifi", |
| 140 | .cpu_dai_name = "au1xpsc_i2s.2", |
| 141 | .platform_name = "au1xpsc-pcm.2", |
| 142 | .codec_name = "wm8731.0-001b", |
| 143 | .ops = &db1200_i2s_wm8731_ops, |
| 144 | }; |
| 145 | |
| 146 | static struct snd_soc_card db1300_i2s_machine = { |
| 147 | .name = "DB1300_I2S", |
| 148 | .dai_link = &db1300_i2s_dai, |
| 149 | .num_links = 1, |
| 150 | }; |
| 151 | |
Manuel Lauss | f869d42 | 2011-11-10 12:06:16 +0000 | [diff] [blame] | 152 | static struct snd_soc_dai_link db1550_i2s_dai = { |
| 153 | .name = "WM8731", |
| 154 | .stream_name = "WM8731 PCM", |
| 155 | .codec_dai_name = "wm8731-hifi", |
| 156 | .cpu_dai_name = "au1xpsc_i2s.3", |
| 157 | .platform_name = "au1xpsc-pcm.3", |
| 158 | .codec_name = "wm8731.0-001b", |
| 159 | .ops = &db1200_i2s_wm8731_ops, |
| 160 | }; |
| 161 | |
| 162 | static struct snd_soc_card db1550_i2s_machine = { |
| 163 | .name = "DB1550_I2S", |
| 164 | .dai_link = &db1550_i2s_dai, |
| 165 | .num_links = 1, |
| 166 | }; |
| 167 | |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 168 | /*------------------------- COMMON PART ---------------------------*/ |
| 169 | |
Bill Pemberton | 5c658be | 2012-12-07 09:26:22 -0500 | [diff] [blame] | 170 | static struct snd_soc_card *db1200_cards[] = { |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 171 | &db1200_ac97_machine, |
| 172 | &db1200_i2s_machine, |
Manuel Lauss | 64cd04d | 2011-11-10 12:03:26 +0000 | [diff] [blame] | 173 | &db1300_ac97_machine, |
| 174 | &db1300_i2s_machine, |
Manuel Lauss | f869d42 | 2011-11-10 12:06:16 +0000 | [diff] [blame] | 175 | &db1550_ac97_machine, |
| 176 | &db1550_i2s_machine, |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 177 | }; |
| 178 | |
Bill Pemberton | 5c658be | 2012-12-07 09:26:22 -0500 | [diff] [blame] | 179 | static int db1200_audio_probe(struct platform_device *pdev) |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 180 | { |
| 181 | const struct platform_device_id *pid = platform_get_device_id(pdev); |
| 182 | struct snd_soc_card *card; |
| 183 | |
| 184 | card = db1200_cards[pid->driver_data]; |
| 185 | card->dev = &pdev->dev; |
| 186 | return snd_soc_register_card(card); |
| 187 | } |
| 188 | |
Bill Pemberton | 5c658be | 2012-12-07 09:26:22 -0500 | [diff] [blame] | 189 | static int db1200_audio_remove(struct platform_device *pdev) |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 190 | { |
| 191 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 192 | snd_soc_unregister_card(card); |
| 193 | return 0; |
| 194 | } |
| 195 | |
| 196 | static struct platform_driver db1200_audio_driver = { |
| 197 | .driver = { |
| 198 | .name = "db1200-ac97", |
| 199 | .owner = THIS_MODULE, |
| 200 | .pm = &snd_soc_pm_ops, |
| 201 | }, |
| 202 | .id_table = db1200_pids, |
| 203 | .probe = db1200_audio_probe, |
Bill Pemberton | 5c658be | 2012-12-07 09:26:22 -0500 | [diff] [blame] | 204 | .remove = db1200_audio_remove, |
Manuel Lauss | adbc7a5 | 2011-07-25 13:45:03 +0200 | [diff] [blame] | 205 | }; |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 206 | |
Axel Lin | 8a124f9 | 2011-11-25 10:06:59 +0800 | [diff] [blame] | 207 | module_platform_driver(db1200_audio_driver); |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 208 | |
| 209 | MODULE_LICENSE("GPL"); |
Manuel Lauss | f869d42 | 2011-11-10 12:06:16 +0000 | [diff] [blame] | 210 | MODULE_DESCRIPTION("DB1200/DB1300/DB1550 ASoC audio support"); |
Manuel Lauss | 05ae323 | 2009-11-02 21:21:44 +0100 | [diff] [blame] | 211 | MODULE_AUTHOR("Manuel Lauss"); |