blob: cf604a2faa1809fe426baaa827a85020b70ef7a2 [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"
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020037
38#define OMAP3_PANDORA_DAC_POWER_GPIO 118
39#define OMAP3_PANDORA_AMP_POWER_GPIO 14
40
41#define PREFIX "ASoC omap3pandora: "
42
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +020043static struct regulator *omap3pandora_dac_reg;
44
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +030045static int omap3pandora_hw_params(struct snd_pcm_substream *substream,
46 struct snd_pcm_hw_params *params)
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020047{
Jarkko Nikula9e5d86f2009-11-09 08:44:32 +020048 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000049 struct snd_soc_dai *codec_dai = rtd->codec_dai;
50 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020051 int ret;
52
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020053 /* Set the codec system clock for DAC and ADC */
54 ret = snd_soc_dai_set_sysclk(codec_dai, 0, 26000000,
55 SND_SOC_CLOCK_IN);
56 if (ret < 0) {
57 pr_err(PREFIX "can't set codec system clock\n");
58 return ret;
59 }
60
61 /* Set McBSP clock to external */
Jarkko Nikula9e5d86f2009-11-09 08:44:32 +020062 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_SYSCLK_CLKS_EXT,
63 256 * params_rate(params),
64 SND_SOC_CLOCK_IN);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +020065 if (ret < 0) {
66 pr_err(PREFIX "can't set cpu system clock\n");
67 return ret;
68 }
69
70 ret = snd_soc_dai_set_clkdiv(cpu_dai, OMAP_MCBSP_CLKGDV, 8);
71 if (ret < 0) {
72 pr_err(PREFIX "can't set SRG clock divider\n");
73 return ret;
74 }
75
76 return 0;
77}
78
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +020079static int omap3pandora_dac_event(struct snd_soc_dapm_widget *w,
80 struct snd_kcontrol *k, int event)
81{
Mark Browndd194b42013-03-02 15:47:55 +080082 int ret;
83
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +020084 /*
85 * The PCM1773 DAC datasheet requires 1ms delay between switching
86 * VCC power on/off and /PD pin high/low
87 */
88 if (SND_SOC_DAPM_EVENT_ON(event)) {
Mark Browndd194b42013-03-02 15:47:55 +080089 ret = regulator_enable(omap3pandora_dac_reg);
90 if (ret) {
Peter Ujfalusie37e0432013-03-05 15:24:16 +010091 dev_err(w->dapm->dev, "Failed to power DAC: %d\n", ret);
Mark Browndd194b42013-03-02 15:47:55 +080092 return ret;
93 }
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +020094 mdelay(1);
95 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 1);
96 } else {
97 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
98 mdelay(1);
99 regulator_disable(omap3pandora_dac_reg);
100 }
101
102 return 0;
103}
104
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200105static int omap3pandora_hp_event(struct snd_soc_dapm_widget *w,
106 struct snd_kcontrol *k, int event)
107{
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200108 if (SND_SOC_DAPM_EVENT_ON(event))
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200109 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 1);
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200110 else
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200111 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200112
113 return 0;
114}
115
116/*
117 * Audio paths on Pandora board:
118 *
119 * |O| ---> PCM DAC +-> AMP -> Headphone Jack
120 * |M| A +--------> Line Out
121 * |A| <~~clk~~+
122 * |P| <--- TWL4030 <--------- Line In and MICs
123 */
124static const struct snd_soc_dapm_widget omap3pandora_out_dapm_widgets[] = {
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200125 SND_SOC_DAPM_DAC_E("PCM DAC", "HiFi Playback", SND_SOC_NOPM,
126 0, 0, omap3pandora_dac_event,
127 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200128 SND_SOC_DAPM_PGA_E("Headphone Amplifier", SND_SOC_NOPM,
129 0, 0, NULL, 0, omap3pandora_hp_event,
130 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
131 SND_SOC_DAPM_HP("Headphone Jack", NULL),
132 SND_SOC_DAPM_LINE("Line Out", NULL),
133};
134
135static const struct snd_soc_dapm_widget omap3pandora_in_dapm_widgets[] = {
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200136 SND_SOC_DAPM_MIC("Mic (internal)", NULL),
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200137 SND_SOC_DAPM_MIC("Mic (external)", NULL),
138 SND_SOC_DAPM_LINE("Line In", NULL),
139};
140
141static const struct snd_soc_dapm_route omap3pandora_out_map[] = {
Grazvydas Ignotas3b9447f2010-02-05 00:55:33 +0200142 {"PCM DAC", NULL, "APLL Enable"},
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200143 {"Headphone Amplifier", NULL, "PCM DAC"},
144 {"Line Out", NULL, "PCM DAC"},
145 {"Headphone Jack", NULL, "Headphone Amplifier"},
146};
147
148static const struct snd_soc_dapm_route omap3pandora_in_map[] = {
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200149 {"AUXL", NULL, "Line In"},
150 {"AUXR", NULL, "Line In"},
151
Peter Ujfalusie04d6e52012-12-31 11:51:45 +0100152 {"MAINMIC", NULL, "Mic (internal)"},
153 {"Mic (internal)", NULL, "Mic Bias 1"},
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200154
Peter Ujfalusie04d6e52012-12-31 11:51:45 +0100155 {"SUBMIC", NULL, "Mic (external)"},
156 {"Mic (external)", NULL, "Mic Bias 2"},
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200157};
158
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000159static int omap3pandora_out_init(struct snd_soc_pcm_runtime *rtd)
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200160{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000161 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200162 struct snd_soc_dapm_context *dapm = &codec->dapm;
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200163 int ret;
164
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200165 /* All TWL4030 output pins are floating */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200166 snd_soc_dapm_nc_pin(dapm, "EARPIECE");
167 snd_soc_dapm_nc_pin(dapm, "PREDRIVEL");
168 snd_soc_dapm_nc_pin(dapm, "PREDRIVER");
169 snd_soc_dapm_nc_pin(dapm, "HSOL");
170 snd_soc_dapm_nc_pin(dapm, "HSOR");
171 snd_soc_dapm_nc_pin(dapm, "CARKITL");
172 snd_soc_dapm_nc_pin(dapm, "CARKITR");
173 snd_soc_dapm_nc_pin(dapm, "HFL");
174 snd_soc_dapm_nc_pin(dapm, "HFR");
175 snd_soc_dapm_nc_pin(dapm, "VIBRA");
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200176
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200177 ret = snd_soc_dapm_new_controls(dapm, omap3pandora_out_dapm_widgets,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200178 ARRAY_SIZE(omap3pandora_out_dapm_widgets));
179 if (ret < 0)
180 return ret;
181
Peter Ujfalusicb424872011-10-10 15:34:08 +0300182 return snd_soc_dapm_add_routes(dapm, omap3pandora_out_map,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200183 ARRAY_SIZE(omap3pandora_out_map));
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200184}
185
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000186static int omap3pandora_in_init(struct snd_soc_pcm_runtime *rtd)
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200187{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000188 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200189 struct snd_soc_dapm_context *dapm = &codec->dapm;
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200190 int ret;
191
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200192 /* Not comnnected */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200193 snd_soc_dapm_nc_pin(dapm, "HSMIC");
194 snd_soc_dapm_nc_pin(dapm, "CARKITMIC");
195 snd_soc_dapm_nc_pin(dapm, "DIGIMIC0");
196 snd_soc_dapm_nc_pin(dapm, "DIGIMIC1");
Grazvydas Ignotas7f185342008-12-23 12:04:48 +0200197
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200198 ret = snd_soc_dapm_new_controls(dapm, omap3pandora_in_dapm_widgets,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200199 ARRAY_SIZE(omap3pandora_in_dapm_widgets));
200 if (ret < 0)
201 return ret;
202
Peter Ujfalusicb424872011-10-10 15:34:08 +0300203 return snd_soc_dapm_add_routes(dapm, omap3pandora_in_map,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200204 ARRAY_SIZE(omap3pandora_in_map));
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200205}
206
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +0300207static struct snd_soc_ops omap3pandora_ops = {
208 .hw_params = omap3pandora_hw_params,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200209};
210
211/* Digital audio interface glue - connects codec <--> CPU */
212static struct snd_soc_dai_link omap3pandora_dai[] = {
213 {
214 .name = "PCM1773",
215 .stream_name = "HiFi Out",
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200216 .cpu_dai_name = "omap-mcbsp.2",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000217 .codec_dai_name = "twl4030-hifi",
218 .platform_name = "omap-pcm-audio",
219 .codec_name = "twl4030-codec",
Jarkko Nikulacf9feff2011-09-30 16:07:45 +0300220 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
221 SND_SOC_DAIFMT_CBS_CFS,
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +0300222 .ops = &omap3pandora_ops,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200223 .init = omap3pandora_out_init,
224 }, {
225 .name = "TWL4030",
226 .stream_name = "Line/Mic In",
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200227 .cpu_dai_name = "omap-mcbsp.4",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000228 .codec_dai_name = "twl4030-hifi",
229 .platform_name = "omap-pcm-audio",
230 .codec_name = "twl4030-codec",
Jarkko Nikulacf9feff2011-09-30 16:07:45 +0300231 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
232 SND_SOC_DAIFMT_CBS_CFS,
Grazvydas Ignotas4b94dba2010-06-17 16:45:28 +0300233 .ops = &omap3pandora_ops,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200234 .init = omap3pandora_in_init,
235 }
236};
237
238/* SoC card */
239static struct snd_soc_card snd_soc_card_omap3pandora = {
240 .name = "omap3pandora",
Axel Linb425b882011-12-22 11:08:59 +0800241 .owner = THIS_MODULE,
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200242 .dai_link = omap3pandora_dai,
243 .num_links = ARRAY_SIZE(omap3pandora_dai),
244};
245
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200246static struct platform_device *omap3pandora_snd_device;
247
248static int __init omap3pandora_soc_init(void)
249{
250 int ret;
251
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200252 if (!machine_is_omap3_pandora())
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200253 return -ENODEV;
Grazvydas Ignotas8f008062009-01-31 16:29:24 +0200254
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200255 pr_info("OMAP3 Pandora SoC init\n");
256
257 ret = gpio_request(OMAP3_PANDORA_DAC_POWER_GPIO, "dac_power");
258 if (ret) {
259 pr_err(PREFIX "Failed to get DAC power GPIO\n");
260 return ret;
261 }
262
263 ret = gpio_direction_output(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
264 if (ret) {
265 pr_err(PREFIX "Failed to set DAC power GPIO direction\n");
266 goto fail0;
267 }
268
269 ret = gpio_request(OMAP3_PANDORA_AMP_POWER_GPIO, "amp_power");
270 if (ret) {
271 pr_err(PREFIX "Failed to get amp power GPIO\n");
272 goto fail0;
273 }
274
275 ret = gpio_direction_output(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
276 if (ret) {
277 pr_err(PREFIX "Failed to set amp power GPIO direction\n");
278 goto fail1;
279 }
280
281 omap3pandora_snd_device = platform_device_alloc("soc-audio", -1);
282 if (omap3pandora_snd_device == NULL) {
283 pr_err(PREFIX "Platform device allocation failed\n");
284 ret = -ENOMEM;
285 goto fail1;
286 }
287
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000288 platform_set_drvdata(omap3pandora_snd_device, &snd_soc_card_omap3pandora);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200289
290 ret = platform_device_add(omap3pandora_snd_device);
291 if (ret) {
292 pr_err(PREFIX "Unable to add platform device\n");
293 goto fail2;
294 }
295
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200296 omap3pandora_dac_reg = regulator_get(&omap3pandora_snd_device->dev, "vcc");
297 if (IS_ERR(omap3pandora_dac_reg)) {
298 pr_err(PREFIX "Failed to get DAC regulator from %s: %ld\n",
299 dev_name(&omap3pandora_snd_device->dev),
300 PTR_ERR(omap3pandora_dac_reg));
Axel Lin5c12d202010-11-24 15:20:48 +0800301 ret = PTR_ERR(omap3pandora_dac_reg);
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200302 goto fail3;
303 }
304
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200305 return 0;
306
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200307fail3:
308 platform_device_del(omap3pandora_snd_device);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200309fail2:
310 platform_device_put(omap3pandora_snd_device);
311fail1:
312 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
313fail0:
314 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
315 return ret;
316}
317module_init(omap3pandora_soc_init);
318
319static void __exit omap3pandora_soc_exit(void)
320{
Grazvydas Ignotasc50749d2010-02-05 16:29:53 +0200321 regulator_put(omap3pandora_dac_reg);
Grazvydas Ignotas68fb7402008-12-04 22:39:54 +0200322 platform_device_unregister(omap3pandora_snd_device);
323 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
324 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
325}
326module_exit(omap3pandora_soc_exit);
327
328MODULE_AUTHOR("Grazvydas Ignotas <notasas@gmail.com>");
329MODULE_DESCRIPTION("ALSA SoC OMAP3 Pandora");
330MODULE_LICENSE("GPL");