]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - sound/soc/ti/omap3pandora.c
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / sound / soc / ti / omap3pandora.c
CommitLineData
2b27bdcc 1// SPDX-License-Identifier: GPL-2.0-only
68fb7407
GI
2/*
3 * omap3pandora.c -- SoC audio for Pandora Handheld Console
4 *
5 * Author: GraÅžvydas Ignotas <notasas@gmail.com>
68fb7407
GI
6 */
7
8#include <linux/clk.h>
9#include <linux/platform_device.h>
10#include <linux/gpio.h>
11#include <linux/delay.h>
c50749de 12#include <linux/regulator/consumer.h>
da155d5b 13#include <linux/module.h>
68fb7407
GI
14
15#include <sound/core.h>
16#include <sound/pcm.h>
17#include <sound/soc.h>
68fb7407
GI
18
19#include <asm/mach-types.h>
2203747c 20#include <linux/platform_data/asoc-ti-mcbsp.h>
68fb7407
GI
21
22#include "omap-mcbsp.h"
68fb7407
GI
23
24#define OMAP3_PANDORA_DAC_POWER_GPIO 118
25#define OMAP3_PANDORA_AMP_POWER_GPIO 14
26
27#define PREFIX "ASoC omap3pandora: "
28
c50749de
GI
29static struct regulator *omap3pandora_dac_reg;
30
4b94dba0
GI
31static int omap3pandora_hw_params(struct snd_pcm_substream *substream,
32 struct snd_pcm_hw_params *params)
68fb7407 33{
9e5d86fe 34 struct snd_soc_pcm_runtime *rtd = substream->private_data;
f0fba2ad
LG
35 struct snd_soc_dai *codec_dai = rtd->codec_dai;
36 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
68fb7407
GI
37 int ret;
38
68fb7407
GI
39 /* Set the codec system clock for DAC and ADC */
40 ret = snd_soc_dai_set_sysclk(codec_dai, 0, 26000000,
41 SND_SOC_CLOCK_IN);
42 if (ret < 0) {
43 pr_err(PREFIX "can't set codec system clock\n");
44 return ret;
45 }
46
47 /* Set McBSP clock to external */
9e5d86fe
JN
48 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_SYSCLK_CLKS_EXT,
49 256 * params_rate(params),
50 SND_SOC_CLOCK_IN);
68fb7407
GI
51 if (ret < 0) {
52 pr_err(PREFIX "can't set cpu system clock\n");
53 return ret;
54 }
55
56 ret = snd_soc_dai_set_clkdiv(cpu_dai, OMAP_MCBSP_CLKGDV, 8);
57 if (ret < 0) {
58 pr_err(PREFIX "can't set SRG clock divider\n");
59 return ret;
60 }
61
62 return 0;
63}
64
c50749de 65static int omap3pandora_dac_event(struct snd_soc_dapm_widget *w,
68fb7407
GI
66 struct snd_kcontrol *k, int event)
67{
dd194b48
MB
68 int ret;
69
c50749de
GI
70 /*
71 * The PCM1773 DAC datasheet requires 1ms delay between switching
72 * VCC power on/off and /PD pin high/low
73 */
68fb7407 74 if (SND_SOC_DAPM_EVENT_ON(event)) {
dd194b48
MB
75 ret = regulator_enable(omap3pandora_dac_reg);
76 if (ret) {
e37e0430 77 dev_err(w->dapm->dev, "Failed to power DAC: %d\n", ret);
dd194b48
MB
78 return ret;
79 }
c50749de 80 mdelay(1);
68fb7407 81 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 1);
68fb7407 82 } else {
68fb7407 83 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
c50749de
GI
84 mdelay(1);
85 regulator_disable(omap3pandora_dac_reg);
68fb7407
GI
86 }
87
88 return 0;
89}
90
c50749de
GI
91static int omap3pandora_hp_event(struct snd_soc_dapm_widget *w,
92 struct snd_kcontrol *k, int event)
93{
94 if (SND_SOC_DAPM_EVENT_ON(event))
95 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 1);
96 else
97 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
98
99 return 0;
100}
101
68fb7407
GI
102/*
103 * Audio paths on Pandora board:
104 *
105 * |O| ---> PCM DAC +-> AMP -> Headphone Jack
106 * |M| A +--------> Line Out
107 * |A| <~~clk~~+
108 * |P| <--- TWL4030 <--------- Line In and MICs
109 */
b2e69054 110static const struct snd_soc_dapm_widget omap3pandora_dapm_widgets[] = {
c50749de
GI
111 SND_SOC_DAPM_DAC_E("PCM DAC", "HiFi Playback", SND_SOC_NOPM,
112 0, 0, omap3pandora_dac_event,
113 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
68fb7407
GI
114 SND_SOC_DAPM_PGA_E("Headphone Amplifier", SND_SOC_NOPM,
115 0, 0, NULL, 0, omap3pandora_hp_event,
116 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
117 SND_SOC_DAPM_HP("Headphone Jack", NULL),
118 SND_SOC_DAPM_LINE("Line Out", NULL),
68fb7407 119
8f008062 120 SND_SOC_DAPM_MIC("Mic (internal)", NULL),
68fb7407
GI
121 SND_SOC_DAPM_MIC("Mic (external)", NULL),
122 SND_SOC_DAPM_LINE("Line In", NULL),
123};
124
b2e69054 125static const struct snd_soc_dapm_route omap3pandora_map[] = {
3b9447fb 126 {"PCM DAC", NULL, "APLL Enable"},
68fb7407
GI
127 {"Headphone Amplifier", NULL, "PCM DAC"},
128 {"Line Out", NULL, "PCM DAC"},
129 {"Headphone Jack", NULL, "Headphone Amplifier"},
68fb7407 130
8f008062
GI
131 {"AUXL", NULL, "Line In"},
132 {"AUXR", NULL, "Line In"},
133
e04d6e55
PU
134 {"MAINMIC", NULL, "Mic (internal)"},
135 {"Mic (internal)", NULL, "Mic Bias 1"},
8f008062 136
e04d6e55
PU
137 {"SUBMIC", NULL, "Mic (external)"},
138 {"Mic (external)", NULL, "Mic Bias 2"},
68fb7407
GI
139};
140
f0fba2ad 141static int omap3pandora_out_init(struct snd_soc_pcm_runtime *rtd)
68fb7407 142{
987731bb 143 struct snd_soc_dapm_context *dapm = &rtd->card->dapm;
68fb7407 144
8f008062 145 /* All TWL4030 output pins are floating */
ce6120cc
LG
146 snd_soc_dapm_nc_pin(dapm, "EARPIECE");
147 snd_soc_dapm_nc_pin(dapm, "PREDRIVEL");
148 snd_soc_dapm_nc_pin(dapm, "PREDRIVER");
149 snd_soc_dapm_nc_pin(dapm, "HSOL");
150 snd_soc_dapm_nc_pin(dapm, "HSOR");
151 snd_soc_dapm_nc_pin(dapm, "CARKITL");
152 snd_soc_dapm_nc_pin(dapm, "CARKITR");
153 snd_soc_dapm_nc_pin(dapm, "HFL");
154 snd_soc_dapm_nc_pin(dapm, "HFR");
155 snd_soc_dapm_nc_pin(dapm, "VIBRA");
156
b2e69054 157 return 0;
68fb7407
GI
158}
159
f0fba2ad 160static int omap3pandora_in_init(struct snd_soc_pcm_runtime *rtd)
68fb7407 161{
987731bb 162 struct snd_soc_dapm_context *dapm = &rtd->card->dapm;
68fb7407 163
8f008062 164 /* Not comnnected */
ce6120cc
LG
165 snd_soc_dapm_nc_pin(dapm, "HSMIC");
166 snd_soc_dapm_nc_pin(dapm, "CARKITMIC");
167 snd_soc_dapm_nc_pin(dapm, "DIGIMIC0");
168 snd_soc_dapm_nc_pin(dapm, "DIGIMIC1");
7f185340 169
b2e69054 170 return 0;
68fb7407
GI
171}
172
2261cf1c 173static const struct snd_soc_ops omap3pandora_ops = {
4b94dba0 174 .hw_params = omap3pandora_hw_params,
68fb7407
GI
175};
176
177/* Digital audio interface glue - connects codec <--> CPU */
178static struct snd_soc_dai_link omap3pandora_dai[] = {
179 {
180 .name = "PCM1773",
181 .stream_name = "HiFi Out",
45656b44 182 .cpu_dai_name = "omap-mcbsp.2",
f0fba2ad 183 .codec_dai_name = "twl4030-hifi",
bffbe637 184 .platform_name = "omap-mcbsp.2",
f0fba2ad 185 .codec_name = "twl4030-codec",
cf9feff2
JN
186 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
187 SND_SOC_DAIFMT_CBS_CFS,
4b94dba0 188 .ops = &omap3pandora_ops,
68fb7407
GI
189 .init = omap3pandora_out_init,
190 }, {
191 .name = "TWL4030",
192 .stream_name = "Line/Mic In",
45656b44 193 .cpu_dai_name = "omap-mcbsp.4",
f0fba2ad 194 .codec_dai_name = "twl4030-hifi",
bffbe637 195 .platform_name = "omap-mcbsp.4",
f0fba2ad 196 .codec_name = "twl4030-codec",
cf9feff2
JN
197 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
198 SND_SOC_DAIFMT_CBS_CFS,
4b94dba0 199 .ops = &omap3pandora_ops,
68fb7407
GI
200 .init = omap3pandora_in_init,
201 }
202};
203
204/* SoC card */
205static struct snd_soc_card snd_soc_card_omap3pandora = {
206 .name = "omap3pandora",
b425b884 207 .owner = THIS_MODULE,
68fb7407
GI
208 .dai_link = omap3pandora_dai,
209 .num_links = ARRAY_SIZE(omap3pandora_dai),
b2e69054
LPC
210
211 .dapm_widgets = omap3pandora_dapm_widgets,
212 .num_dapm_widgets = ARRAY_SIZE(omap3pandora_dapm_widgets),
213 .dapm_routes = omap3pandora_map,
214 .num_dapm_routes = ARRAY_SIZE(omap3pandora_map),
68fb7407
GI
215};
216
68fb7407
GI
217static struct platform_device *omap3pandora_snd_device;
218
219static int __init omap3pandora_soc_init(void)
220{
221 int ret;
222
8f008062 223 if (!machine_is_omap3_pandora())
68fb7407 224 return -ENODEV;
8f008062 225
68fb7407
GI
226 pr_info("OMAP3 Pandora SoC init\n");
227
228 ret = gpio_request(OMAP3_PANDORA_DAC_POWER_GPIO, "dac_power");
229 if (ret) {
230 pr_err(PREFIX "Failed to get DAC power GPIO\n");
231 return ret;
232 }
233
234 ret = gpio_direction_output(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
235 if (ret) {
236 pr_err(PREFIX "Failed to set DAC power GPIO direction\n");
237 goto fail0;
238 }
239
240 ret = gpio_request(OMAP3_PANDORA_AMP_POWER_GPIO, "amp_power");
241 if (ret) {
242 pr_err(PREFIX "Failed to get amp power GPIO\n");
243 goto fail0;
244 }
245
246 ret = gpio_direction_output(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
247 if (ret) {
248 pr_err(PREFIX "Failed to set amp power GPIO direction\n");
249 goto fail1;
250 }
251
252 omap3pandora_snd_device = platform_device_alloc("soc-audio", -1);
253 if (omap3pandora_snd_device == NULL) {
254 pr_err(PREFIX "Platform device allocation failed\n");
255 ret = -ENOMEM;
256 goto fail1;
257 }
258
f0fba2ad 259 platform_set_drvdata(omap3pandora_snd_device, &snd_soc_card_omap3pandora);
68fb7407
GI
260
261 ret = platform_device_add(omap3pandora_snd_device);
262 if (ret) {
263 pr_err(PREFIX "Unable to add platform device\n");
264 goto fail2;
265 }
266
c50749de
GI
267 omap3pandora_dac_reg = regulator_get(&omap3pandora_snd_device->dev, "vcc");
268 if (IS_ERR(omap3pandora_dac_reg)) {
269 pr_err(PREFIX "Failed to get DAC regulator from %s: %ld\n",
270 dev_name(&omap3pandora_snd_device->dev),
271 PTR_ERR(omap3pandora_dac_reg));
5c12d201 272 ret = PTR_ERR(omap3pandora_dac_reg);
c50749de
GI
273 goto fail3;
274 }
275
68fb7407
GI
276 return 0;
277
c50749de
GI
278fail3:
279 platform_device_del(omap3pandora_snd_device);
68fb7407
GI
280fail2:
281 platform_device_put(omap3pandora_snd_device);
282fail1:
283 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
284fail0:
285 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
286 return ret;
287}
288module_init(omap3pandora_soc_init);
289
290static void __exit omap3pandora_soc_exit(void)
291{
c50749de 292 regulator_put(omap3pandora_dac_reg);
68fb7407
GI
293 platform_device_unregister(omap3pandora_snd_device);
294 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
295 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
296}
297module_exit(omap3pandora_soc_exit);
298
299MODULE_AUTHOR("Grazvydas Ignotas <notasas@gmail.com>");
300MODULE_DESCRIPTION("ALSA SoC OMAP3 Pandora");
301MODULE_LICENSE("GPL");