blob: 805512f2555a0b95571a4608f6d4e35a71312c5f [file] [log] [blame]
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +02001/*
2 * omap3pandora.c -- SoC audio for Pandora Handheld Console
3 *
4 * Author: GraÅžvydas Ignotas <notasas@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 *
20 */
21
22#include <linux/clk.h>
23#include <linux/platform_device.h>
24#include <linux/gpio.h>
25#include <linux/delay.h>
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +020026#include <linux/regulator/consumer.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040027#include <linux/module.h>
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020028
29#include <sound/core.h>
30#include <sound/pcm.h>
31#include <sound/soc.h>
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020032
33#include <asm/mach-types.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020034#include <linux/platform_data/asoc-ti-mcbsp.h>
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020035
36#include "omap-mcbsp.h"
37#include "omap-pcm.h"
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020038
39#define OMAP3_PANDORA_DAC_POWER_GPIO 118
40#define OMAP3_PANDORA_AMP_POWER_GPIO 14
41
42#define PREFIX "ASoC omap3pandora: "
43
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +020044static struct regulator *omap3pandora_dac_reg;
45
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +030046static int omap3pandora_hw_params(struct snd_pcm_substream *substream,
47 struct snd_pcm_hw_params *params)
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020048{
Jarkko Nikula9e5d86f2009-11-09 08:44:32 +020049 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000050 struct snd_soc_dai *codec_dai = rtd->codec_dai;
51 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020052 int ret;
53
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020054 /* Set the codec system clock for DAC and ADC */
55 ret = snd_soc_dai_set_sysclk(codec_dai, 0, 26000000,
56 SND_SOC_CLOCK_IN);
57 if (ret < 0) {
58 pr_err(PREFIX "can't set codec system clock\n");
59 return ret;
60 }
61
62 /* Set McBSP clock to external */
Jarkko Nikula9e5d86f2009-11-09 08:44:32 +020063 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_SYSCLK_CLKS_EXT,
64 256 * params_rate(params),
65 SND_SOC_CLOCK_IN);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020066 if (ret < 0) {
67 pr_err(PREFIX "can't set cpu system clock\n");
68 return ret;
69 }
70
71 ret = snd_soc_dai_set_clkdiv(cpu_dai, OMAP_MCBSP_CLKGDV, 8);
72 if (ret < 0) {
73 pr_err(PREFIX "can't set SRG clock divider\n");
74 return ret;
75 }
76
77 return 0;
78}
79
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +020080static int omap3pandora_dac_event(struct snd_soc_dapm_widget *w,
81 struct snd_kcontrol *k, int event)
82{
83 /*
84 * The PCM1773 DAC datasheet requires 1ms delay between switching
85 * VCC power on/off and /PD pin high/low
86 */
87 if (SND_SOC_DAPM_EVENT_ON(event)) {
88 regulator_enable(omap3pandora_dac_reg);
89 mdelay(1);
90 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 1);
91 } else {
92 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
93 mdelay(1);
94 regulator_disable(omap3pandora_dac_reg);
95 }
96
97 return 0;
98}
99
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200100static int omap3pandora_hp_event(struct snd_soc_dapm_widget *w,
101 struct snd_kcontrol *k, int event)
102{
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200103 if (SND_SOC_DAPM_EVENT_ON(event))
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200104 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 1);
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200105 else
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200106 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200107
108 return 0;
109}
110
111/*
112 * Audio paths on Pandora board:
113 *
114 * |O| ---> PCM DAC +-> AMP -> Headphone Jack
115 * |M| A +--------> Line Out
116 * |A| <~~clk~~+
117 * |P| <--- TWL4030 <--------- Line In and MICs
118 */
119static const struct snd_soc_dapm_widget omap3pandora_out_dapm_widgets[] = {
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200120 SND_SOC_DAPM_DAC_E("PCM DAC", "HiFi Playback", SND_SOC_NOPM,
121 0, 0, omap3pandora_dac_event,
122 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200123 SND_SOC_DAPM_PGA_E("Headphone Amplifier", SND_SOC_NOPM,
124 0, 0, NULL, 0, omap3pandora_hp_event,
125 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
126 SND_SOC_DAPM_HP("Headphone Jack", NULL),
127 SND_SOC_DAPM_LINE("Line Out", NULL),
128};
129
130static const struct snd_soc_dapm_widget omap3pandora_in_dapm_widgets[] = {
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200131 SND_SOC_DAPM_MIC("Mic (internal)", NULL),
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200132 SND_SOC_DAPM_MIC("Mic (external)", NULL),
133 SND_SOC_DAPM_LINE("Line In", NULL),
134};
135
136static const struct snd_soc_dapm_route omap3pandora_out_map[] = {
Grazvydas Ignotas3b9447f2010-02-05 00:55:33 +0200137 {"PCM DAC", NULL, "APLL Enable"},
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200138 {"Headphone Amplifier", NULL, "PCM DAC"},
139 {"Line Out", NULL, "PCM DAC"},
140 {"Headphone Jack", NULL, "Headphone Amplifier"},
141};
142
143static const struct snd_soc_dapm_route omap3pandora_in_map[] = {
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200144 {"AUXL", NULL, "Line In"},
145 {"AUXR", NULL, "Line In"},
146
Peter Ujfalusie04d6e52012-12-31 11:51:45 +0100147 {"MAINMIC", NULL, "Mic (internal)"},
148 {"Mic (internal)", NULL, "Mic Bias 1"},
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200149
Peter Ujfalusie04d6e52012-12-31 11:51:45 +0100150 {"SUBMIC", NULL, "Mic (external)"},
151 {"Mic (external)", NULL, "Mic Bias 2"},
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200152};
153
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000154static int omap3pandora_out_init(struct snd_soc_pcm_runtime *rtd)
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200155{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000156 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200157 struct snd_soc_dapm_context *dapm = &codec->dapm;
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200158 int ret;
159
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200160 /* All TWL4030 output pins are floating */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200161 snd_soc_dapm_nc_pin(dapm, "EARPIECE");
162 snd_soc_dapm_nc_pin(dapm, "PREDRIVEL");
163 snd_soc_dapm_nc_pin(dapm, "PREDRIVER");
164 snd_soc_dapm_nc_pin(dapm, "HSOL");
165 snd_soc_dapm_nc_pin(dapm, "HSOR");
166 snd_soc_dapm_nc_pin(dapm, "CARKITL");
167 snd_soc_dapm_nc_pin(dapm, "CARKITR");
168 snd_soc_dapm_nc_pin(dapm, "HFL");
169 snd_soc_dapm_nc_pin(dapm, "HFR");
170 snd_soc_dapm_nc_pin(dapm, "VIBRA");
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200171
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200172 ret = snd_soc_dapm_new_controls(dapm, omap3pandora_out_dapm_widgets,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200173 ARRAY_SIZE(omap3pandora_out_dapm_widgets));
174 if (ret < 0)
175 return ret;
176
Peter Ujfalusicb424872011-10-10 15:34:08 +0300177 return snd_soc_dapm_add_routes(dapm, omap3pandora_out_map,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200178 ARRAY_SIZE(omap3pandora_out_map));
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200179}
180
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000181static int omap3pandora_in_init(struct snd_soc_pcm_runtime *rtd)
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200182{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000183 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200184 struct snd_soc_dapm_context *dapm = &codec->dapm;
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200185 int ret;
186
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200187 /* Not comnnected */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200188 snd_soc_dapm_nc_pin(dapm, "HSMIC");
189 snd_soc_dapm_nc_pin(dapm, "CARKITMIC");
190 snd_soc_dapm_nc_pin(dapm, "DIGIMIC0");
191 snd_soc_dapm_nc_pin(dapm, "DIGIMIC1");
Grazvydas Ignotas7f185342008-12-23 12:04:48 +0200192
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200193 ret = snd_soc_dapm_new_controls(dapm, omap3pandora_in_dapm_widgets,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200194 ARRAY_SIZE(omap3pandora_in_dapm_widgets));
195 if (ret < 0)
196 return ret;
197
Peter Ujfalusicb424872011-10-10 15:34:08 +0300198 return snd_soc_dapm_add_routes(dapm, omap3pandora_in_map,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200199 ARRAY_SIZE(omap3pandora_in_map));
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200200}
201
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +0300202static struct snd_soc_ops omap3pandora_ops = {
203 .hw_params = omap3pandora_hw_params,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200204};
205
206/* Digital audio interface glue - connects codec <--> CPU */
207static struct snd_soc_dai_link omap3pandora_dai[] = {
208 {
209 .name = "PCM1773",
210 .stream_name = "HiFi Out",
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200211 .cpu_dai_name = "omap-mcbsp.2",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000212 .codec_dai_name = "twl4030-hifi",
213 .platform_name = "omap-pcm-audio",
214 .codec_name = "twl4030-codec",
Jarkko Nikulacf9feff2011-09-30 16:07:45 +0300215 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
216 SND_SOC_DAIFMT_CBS_CFS,
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +0300217 .ops = &omap3pandora_ops,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200218 .init = omap3pandora_out_init,
219 }, {
220 .name = "TWL4030",
221 .stream_name = "Line/Mic In",
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200222 .cpu_dai_name = "omap-mcbsp.4",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000223 .codec_dai_name = "twl4030-hifi",
224 .platform_name = "omap-pcm-audio",
225 .codec_name = "twl4030-codec",
Jarkko Nikulacf9feff2011-09-30 16:07:45 +0300226 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
227 SND_SOC_DAIFMT_CBS_CFS,
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +0300228 .ops = &omap3pandora_ops,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200229 .init = omap3pandora_in_init,
230 }
231};
232
233/* SoC card */
234static struct snd_soc_card snd_soc_card_omap3pandora = {
235 .name = "omap3pandora",
Axel Linb425b882011-12-22 11:08:59 +0800236 .owner = THIS_MODULE,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200237 .dai_link = omap3pandora_dai,
238 .num_links = ARRAY_SIZE(omap3pandora_dai),
239};
240
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200241static struct platform_device *omap3pandora_snd_device;
242
243static int __init omap3pandora_soc_init(void)
244{
245 int ret;
246
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200247 if (!machine_is_omap3_pandora())
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200248 return -ENODEV;
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200249
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200250 pr_info("OMAP3 Pandora SoC init\n");
251
252 ret = gpio_request(OMAP3_PANDORA_DAC_POWER_GPIO, "dac_power");
253 if (ret) {
254 pr_err(PREFIX "Failed to get DAC power GPIO\n");
255 return ret;
256 }
257
258 ret = gpio_direction_output(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
259 if (ret) {
260 pr_err(PREFIX "Failed to set DAC power GPIO direction\n");
261 goto fail0;
262 }
263
264 ret = gpio_request(OMAP3_PANDORA_AMP_POWER_GPIO, "amp_power");
265 if (ret) {
266 pr_err(PREFIX "Failed to get amp power GPIO\n");
267 goto fail0;
268 }
269
270 ret = gpio_direction_output(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
271 if (ret) {
272 pr_err(PREFIX "Failed to set amp power GPIO direction\n");
273 goto fail1;
274 }
275
276 omap3pandora_snd_device = platform_device_alloc("soc-audio", -1);
277 if (omap3pandora_snd_device == NULL) {
278 pr_err(PREFIX "Platform device allocation failed\n");
279 ret = -ENOMEM;
280 goto fail1;
281 }
282
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000283 platform_set_drvdata(omap3pandora_snd_device, &snd_soc_card_omap3pandora);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200284
285 ret = platform_device_add(omap3pandora_snd_device);
286 if (ret) {
287 pr_err(PREFIX "Unable to add platform device\n");
288 goto fail2;
289 }
290
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200291 omap3pandora_dac_reg = regulator_get(&omap3pandora_snd_device->dev, "vcc");
292 if (IS_ERR(omap3pandora_dac_reg)) {
293 pr_err(PREFIX "Failed to get DAC regulator from %s: %ld\n",
294 dev_name(&omap3pandora_snd_device->dev),
295 PTR_ERR(omap3pandora_dac_reg));
Axel Lin5c12d202010-11-24 15:20:48 +0800296 ret = PTR_ERR(omap3pandora_dac_reg);
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200297 goto fail3;
298 }
299
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200300 return 0;
301
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200302fail3:
303 platform_device_del(omap3pandora_snd_device);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200304fail2:
305 platform_device_put(omap3pandora_snd_device);
306fail1:
307 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
308fail0:
309 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
310 return ret;
311}
312module_init(omap3pandora_soc_init);
313
314static void __exit omap3pandora_soc_exit(void)
315{
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200316 regulator_put(omap3pandora_dac_reg);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200317 platform_device_unregister(omap3pandora_snd_device);
318 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
319 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
320}
321module_exit(omap3pandora_soc_exit);
322
323MODULE_AUTHOR("Grazvydas Ignotas <notasas@gmail.com>");
324MODULE_DESCRIPTION("ALSA SoC OMAP3 Pandora");
325MODULE_LICENSE("GPL");