1 /* sound/soc/samsung/s3c24xx_simtec.c
3 * Copyright 2009 Simtec Electronics
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/gpio.h>
11 #include <linux/clk.h>
12 #include <linux/module.h>
14 #include <sound/soc.h>
16 #include <plat/audio-simtec.h>
18 #include "s3c24xx-i2s.h"
19 #include "s3c24xx_simtec.h"
21 static struct s3c24xx_audio_simtec_pdata
*pdata
;
22 static struct clk
*xtal_clk
;
25 static int spk_unmute
;
28 * speaker_gain_get - read the speaker gain setting.
29 * @kcontrol: The control for the speaker gain.
30 * @ucontrol: The value that needs to be updated.
32 * Read the value for the AMP gain control.
34 static int speaker_gain_get(struct snd_kcontrol
*kcontrol
,
35 struct snd_ctl_elem_value
*ucontrol
)
37 ucontrol
->value
.integer
.value
[0] = spk_gain
;
42 * speaker_gain_set - set the value of the speaker amp gain
43 * @value: The value to write.
45 static void speaker_gain_set(int value
)
47 gpio_set_value_cansleep(pdata
->amp_gain
[0], value
& 1);
48 gpio_set_value_cansleep(pdata
->amp_gain
[1], value
>> 1);
52 * speaker_gain_put - set the speaker gain setting.
53 * @kcontrol: The control for the speaker gain.
54 * @ucontrol: The value that needs to be set.
56 * Set the value of the speaker gain from the specified
59 * Note, if the speaker amp is muted, then we do not set a gain value
60 * as at-least one of the ICs that is fitted will try and power up even
61 * if the main control is set to off.
63 static int speaker_gain_put(struct snd_kcontrol
*kcontrol
,
64 struct snd_ctl_elem_value
*ucontrol
)
66 int value
= ucontrol
->value
.integer
.value
[0];
71 speaker_gain_set(value
);
76 static const struct snd_kcontrol_new amp_gain_controls
[] = {
77 SOC_SINGLE_EXT("Speaker Gain", 0, 0, 3, 0,
78 speaker_gain_get
, speaker_gain_put
),
82 * spk_unmute_state - set the unmute state of the speaker
83 * @to: zero to unmute, non-zero to ununmute.
85 static void spk_unmute_state(int to
)
87 pr_debug("%s: to=%d\n", __func__
, to
);
90 gpio_set_value(pdata
->amp_gpio
, to
);
92 /* if we're umuting, also re-set the gain */
93 if (to
&& pdata
->amp_gain
[0] > 0)
94 speaker_gain_set(spk_gain
);
98 * speaker_unmute_get - read the speaker unmute setting.
99 * @kcontrol: The control for the speaker gain.
100 * @ucontrol: The value that needs to be updated.
102 * Read the value for the AMP gain control.
104 static int speaker_unmute_get(struct snd_kcontrol
*kcontrol
,
105 struct snd_ctl_elem_value
*ucontrol
)
107 ucontrol
->value
.integer
.value
[0] = spk_unmute
;
112 * speaker_unmute_put - set the speaker unmute setting.
113 * @kcontrol: The control for the speaker gain.
114 * @ucontrol: The value that needs to be set.
116 * Set the value of the speaker gain from the specified
119 static int speaker_unmute_put(struct snd_kcontrol
*kcontrol
,
120 struct snd_ctl_elem_value
*ucontrol
)
122 spk_unmute_state(ucontrol
->value
.integer
.value
[0]);
126 /* This is added as a manual control as the speaker amps create clicks
127 * when their power state is changed, which are far more noticeable than
128 * anything produced by the CODEC itself.
130 static const struct snd_kcontrol_new amp_unmute_controls
[] = {
131 SOC_SINGLE_EXT("Speaker Switch", 0, 0, 1, 0,
132 speaker_unmute_get
, speaker_unmute_put
),
135 void simtec_audio_init(struct snd_soc_pcm_runtime
*rtd
)
137 struct snd_soc_codec
*codec
= rtd
->codec
;
139 if (pdata
->amp_gpio
> 0) {
140 pr_debug("%s: adding amp routes\n", __func__
);
142 snd_soc_add_controls(codec
, amp_unmute_controls
,
143 ARRAY_SIZE(amp_unmute_controls
));
146 if (pdata
->amp_gain
[0] > 0) {
147 pr_debug("%s: adding amp controls\n", __func__
);
148 snd_soc_add_controls(codec
, amp_gain_controls
,
149 ARRAY_SIZE(amp_gain_controls
));
152 EXPORT_SYMBOL_GPL(simtec_audio_init
);
154 #define CODEC_CLOCK 12000000
157 * simtec_hw_params - update hardware parameters
158 * @substream: The audio substream instance.
159 * @params: The parameters requested.
161 * Update the codec data routing and configuration settings
162 * from the supplied data.
164 static int simtec_hw_params(struct snd_pcm_substream
*substream
,
165 struct snd_pcm_hw_params
*params
)
167 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
168 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
169 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
172 /* Set the CODEC as the bus clock master, I2S */
173 ret
= snd_soc_dai_set_fmt(cpu_dai
, SND_SOC_DAIFMT_I2S
|
174 SND_SOC_DAIFMT_NB_NF
|
175 SND_SOC_DAIFMT_CBM_CFM
);
177 pr_err("%s: failed set cpu dai format\n", __func__
);
181 /* Set the CODEC as the bus clock master */
182 ret
= snd_soc_dai_set_fmt(codec_dai
, SND_SOC_DAIFMT_I2S
|
183 SND_SOC_DAIFMT_NB_NF
|
184 SND_SOC_DAIFMT_CBM_CFM
);
186 pr_err("%s: failed set codec dai format\n", __func__
);
190 ret
= snd_soc_dai_set_sysclk(codec_dai
, 0,
191 CODEC_CLOCK
, SND_SOC_CLOCK_IN
);
193 pr_err( "%s: failed setting codec sysclk\n", __func__
);
197 if (pdata
->use_mpllin
) {
198 ret
= snd_soc_dai_set_sysclk(cpu_dai
, S3C24XX_CLKSRC_MPLL
,
199 0, SND_SOC_CLOCK_OUT
);
202 pr_err("%s: failed to set MPLLin as clksrc\n",
208 if (pdata
->output_cdclk
) {
211 cdclk_scale
= clk_get_rate(xtal_clk
) / CODEC_CLOCK
;
214 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C24XX_DIV_PRESCALER
,
221 static int simtec_call_startup(struct s3c24xx_audio_simtec_pdata
*pd
)
223 /* call any board supplied startup code, this currently only
224 * covers the bast/vr1000 which have a CPLD in the way of the
232 static struct snd_soc_ops simtec_snd_ops
= {
233 .hw_params
= simtec_hw_params
,
237 * attach_gpio_amp - get and configure the necessary gpios
238 * @dev: The device we're probing.
239 * @pd: The platform data supplied by the board.
241 * If there is a GPIO based amplifier attached to the board, claim
242 * the necessary GPIO lines for it, and set default values.
244 static int attach_gpio_amp(struct device
*dev
,
245 struct s3c24xx_audio_simtec_pdata
*pd
)
249 /* attach gpio amp gain (if any) */
250 if (pdata
->amp_gain
[0] > 0) {
251 ret
= gpio_request(pd
->amp_gain
[0], "gpio-amp-gain0");
253 dev_err(dev
, "cannot get amp gpio gain0\n");
257 ret
= gpio_request(pd
->amp_gain
[1], "gpio-amp-gain1");
259 dev_err(dev
, "cannot get amp gpio gain1\n");
260 gpio_free(pdata
->amp_gain
[0]);
264 gpio_direction_output(pd
->amp_gain
[0], 0);
265 gpio_direction_output(pd
->amp_gain
[1], 0);
268 /* note, currently we assume GPA0 isn't valid amp */
269 if (pdata
->amp_gpio
> 0) {
270 ret
= gpio_request(pd
->amp_gpio
, "gpio-amp");
272 dev_err(dev
, "cannot get amp gpio %d (%d)\n",
277 /* set the amp off at startup */
284 if (pd
->amp_gain
[0] > 0) {
285 gpio_free(pd
->amp_gain
[0]);
286 gpio_free(pd
->amp_gain
[1]);
292 static void detach_gpio_amp(struct s3c24xx_audio_simtec_pdata
*pd
)
294 if (pd
->amp_gain
[0] > 0) {
295 gpio_free(pd
->amp_gain
[0]);
296 gpio_free(pd
->amp_gain
[1]);
299 if (pd
->amp_gpio
> 0)
300 gpio_free(pd
->amp_gpio
);
304 static int simtec_audio_resume(struct device
*dev
)
306 simtec_call_startup(pdata
);
310 const struct dev_pm_ops simtec_audio_pmops
= {
311 .resume
= simtec_audio_resume
,
313 EXPORT_SYMBOL_GPL(simtec_audio_pmops
);
316 int __devinit
simtec_audio_core_probe(struct platform_device
*pdev
,
317 struct snd_soc_card
*card
)
319 struct platform_device
*snd_dev
;
322 card
->dai_link
->ops
= &simtec_snd_ops
;
324 pdata
= pdev
->dev
.platform_data
;
326 dev_err(&pdev
->dev
, "no platform data supplied\n");
330 simtec_call_startup(pdata
);
332 xtal_clk
= clk_get(&pdev
->dev
, "xtal");
333 if (IS_ERR(xtal_clk
)) {
334 dev_err(&pdev
->dev
, "could not get clkout0\n");
338 dev_info(&pdev
->dev
, "xtal rate is %ld\n", clk_get_rate(xtal_clk
));
340 ret
= attach_gpio_amp(&pdev
->dev
, pdata
);
344 snd_dev
= platform_device_alloc("soc-audio", -1);
346 dev_err(&pdev
->dev
, "failed to alloc soc-audio devicec\n");
351 platform_set_drvdata(snd_dev
, card
);
353 ret
= platform_device_add(snd_dev
);
355 dev_err(&pdev
->dev
, "failed to add soc-audio dev\n");
359 platform_set_drvdata(pdev
, snd_dev
);
363 platform_device_put(snd_dev
);
366 detach_gpio_amp(pdata
);
372 EXPORT_SYMBOL_GPL(simtec_audio_core_probe
);
374 int __devexit
simtec_audio_remove(struct platform_device
*pdev
)
376 struct platform_device
*snd_dev
= platform_get_drvdata(pdev
);
378 platform_device_unregister(snd_dev
);
380 detach_gpio_amp(pdata
);
384 EXPORT_SYMBOL_GPL(simtec_audio_remove
);
386 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
387 MODULE_DESCRIPTION("ALSA SoC Simtec Audio common support");
388 MODULE_LICENSE("GPL");