2 * harmony.c - Harmony machine ASoC driver
4 * Author: Stephen Warren <swarren@nvidia.com>
5 * Copyright (C) 2010-2011 - NVIDIA, Inc.
7 * Based on code copyright/by:
9 * (c) 2009, 2010 Nvidia Graphics Pvt. Ltd.
11 * Copyright 2007 Wolfson Microelectronics PLC.
12 * Author: Graeme Gregory
13 * graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * version 2 as published by the Free Software Foundation.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
31 #include <asm/mach-types.h>
33 #include <linux/module.h>
34 #include <linux/platform_device.h>
35 #include <linux/slab.h>
36 #include <linux/gpio.h>
38 #include <mach/harmony_audio.h>
40 #include <sound/core.h>
41 #include <sound/jack.h>
42 #include <sound/pcm.h>
43 #include <sound/pcm_params.h>
44 #include <sound/soc.h>
46 #include "tegra_das.h"
47 #include "tegra_i2s.h"
48 #include "tegra_pcm.h"
49 #include "tegra_asoc_utils.h"
51 #define DRV_NAME "tegra-snd-harmony"
53 struct tegra_harmony
{
54 struct tegra_asoc_utils_data util_data
;
55 struct harmony_audio_platform_data
*pdata
;
56 int gpio_spkr_en_requested
;
59 static int harmony_asoc_hw_params(struct snd_pcm_substream
*substream
,
60 struct snd_pcm_hw_params
*params
)
62 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
63 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
64 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
65 struct snd_soc_codec
*codec
= rtd
->codec
;
66 struct snd_soc_card
*card
= codec
->card
;
67 struct tegra_harmony
*harmony
= snd_soc_card_get_drvdata(card
);
68 int srate
, mclk
, mclk_change
;
71 srate
= params_rate(params
);
82 /* FIXME: Codec only requires >= 3MHz if OSR==0 */
83 while (mclk
< 6000000)
86 err
= tegra_asoc_utils_set_rate(&harmony
->util_data
, srate
, mclk
,
89 dev_err(card
->dev
, "Can't configure clocks\n");
93 err
= snd_soc_dai_set_fmt(codec_dai
,
95 SND_SOC_DAIFMT_NB_NF
|
96 SND_SOC_DAIFMT_CBS_CFS
);
98 dev_err(card
->dev
, "codec_dai fmt not set\n");
102 err
= snd_soc_dai_set_fmt(cpu_dai
,
104 SND_SOC_DAIFMT_NB_NF
|
105 SND_SOC_DAIFMT_CBS_CFS
);
107 dev_err(card
->dev
, "cpu_dai fmt not set\n");
112 err
= snd_soc_dai_set_sysclk(codec_dai
, 0, mclk
,
115 dev_err(card
->dev
, "codec_dai clock not set\n");
123 static struct snd_soc_ops harmony_asoc_ops
= {
124 .hw_params
= harmony_asoc_hw_params
,
127 static struct snd_soc_jack harmony_hp_jack
;
129 static struct snd_soc_jack_pin harmony_hp_jack_pins
[] = {
131 .pin
= "Headphone Jack",
132 .mask
= SND_JACK_HEADPHONE
,
136 static struct snd_soc_jack_gpio harmony_hp_jack_gpios
[] = {
138 .name
= "headphone detect",
139 .report
= SND_JACK_HEADPHONE
,
140 .debounce_time
= 150,
145 static int harmony_event_int_spk(struct snd_soc_dapm_widget
*w
,
146 struct snd_kcontrol
*k
, int event
)
148 struct snd_soc_codec
*codec
= w
->codec
;
149 struct snd_soc_card
*card
= codec
->card
;
150 struct tegra_harmony
*harmony
= snd_soc_card_get_drvdata(card
);
151 struct harmony_audio_platform_data
*pdata
= harmony
->pdata
;
153 gpio_set_value_cansleep(pdata
->gpio_spkr_en
,
154 SND_SOC_DAPM_EVENT_ON(event
));
159 static const struct snd_soc_dapm_widget harmony_dapm_widgets
[] = {
160 SND_SOC_DAPM_SPK("Int Spk", harmony_event_int_spk
),
161 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
162 SND_SOC_DAPM_MIC("Mic Jack", NULL
),
165 static const struct snd_soc_dapm_route harmony_audio_map
[] = {
166 {"Headphone Jack", NULL
, "HPOUTR"},
167 {"Headphone Jack", NULL
, "HPOUTL"},
168 {"Int Spk", NULL
, "ROP"},
169 {"Int Spk", NULL
, "RON"},
170 {"Int Spk", NULL
, "LOP"},
171 {"Int Spk", NULL
, "LON"},
172 {"Mic Bias", NULL
, "Mic Jack"},
173 {"IN1L", NULL
, "Mic Bias"},
176 static const struct snd_kcontrol_new harmony_controls
[] = {
177 SOC_DAPM_PIN_SWITCH("Int Spk"),
180 static int harmony_asoc_init(struct snd_soc_pcm_runtime
*rtd
)
182 struct snd_soc_codec
*codec
= rtd
->codec
;
183 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
184 struct snd_soc_card
*card
= codec
->card
;
185 struct tegra_harmony
*harmony
= snd_soc_card_get_drvdata(card
);
186 struct harmony_audio_platform_data
*pdata
= harmony
->pdata
;
189 ret
= gpio_request(pdata
->gpio_spkr_en
, "spkr_en");
191 dev_err(card
->dev
, "cannot get spkr_en gpio\n");
194 harmony
->gpio_spkr_en_requested
= 1;
196 gpio_direction_output(pdata
->gpio_spkr_en
, 0);
198 ret
= snd_soc_add_controls(codec
, harmony_controls
,
199 ARRAY_SIZE(harmony_controls
));
203 snd_soc_dapm_new_controls(dapm
, harmony_dapm_widgets
,
204 ARRAY_SIZE(harmony_dapm_widgets
));
206 snd_soc_dapm_add_routes(dapm
, harmony_audio_map
,
207 ARRAY_SIZE(harmony_audio_map
));
209 snd_soc_dapm_enable_pin(dapm
, "Mic Jack");
210 snd_soc_dapm_sync(dapm
);
212 harmony_hp_jack_gpios
[0].gpio
= pdata
->gpio_hp_det
;
213 snd_soc_jack_new(codec
, "Headphone Jack", SND_JACK_HEADPHONE
,
215 snd_soc_jack_add_pins(&harmony_hp_jack
,
216 ARRAY_SIZE(harmony_hp_jack_pins
),
217 harmony_hp_jack_pins
);
218 snd_soc_jack_add_gpios(&harmony_hp_jack
,
219 ARRAY_SIZE(harmony_hp_jack_gpios
),
220 harmony_hp_jack_gpios
);
225 static struct snd_soc_dai_link harmony_wm8903_dai
= {
227 .stream_name
= "WM8903 PCM",
228 .codec_name
= "wm8903-codec.0-001a",
229 .platform_name
= "tegra-pcm-audio",
230 .cpu_dai_name
= "tegra-i2s.0",
231 .codec_dai_name
= "wm8903-hifi",
232 .init
= harmony_asoc_init
,
233 .ops
= &harmony_asoc_ops
,
236 static struct snd_soc_card snd_soc_harmony
= {
237 .name
= "tegra-harmony",
238 .dai_link
= &harmony_wm8903_dai
,
242 static __devinit
int tegra_snd_harmony_probe(struct platform_device
*pdev
)
244 struct snd_soc_card
*card
= &snd_soc_harmony
;
245 struct tegra_harmony
*harmony
;
246 struct harmony_audio_platform_data
*pdata
;
249 if (!machine_is_harmony()) {
250 dev_err(&pdev
->dev
, "Not running on Tegra Harmony!\n");
254 pdata
= pdev
->dev
.platform_data
;
256 dev_err(&pdev
->dev
, "no platform data supplied\n");
260 harmony
= kzalloc(sizeof(struct tegra_harmony
), GFP_KERNEL
);
262 dev_err(&pdev
->dev
, "Can't allocate tegra_harmony\n");
266 harmony
->pdata
= pdata
;
268 ret
= tegra_asoc_utils_init(&harmony
->util_data
, &pdev
->dev
);
270 goto err_free_harmony
;
272 card
->dev
= &pdev
->dev
;
273 platform_set_drvdata(pdev
, card
);
274 snd_soc_card_set_drvdata(card
, harmony
);
276 ret
= snd_soc_register_card(card
);
278 dev_err(&pdev
->dev
, "snd_soc_register_card failed (%d)\n",
280 goto err_clear_drvdata
;
286 snd_soc_card_set_drvdata(card
, NULL
);
287 platform_set_drvdata(pdev
, NULL
);
289 tegra_asoc_utils_fini(&harmony
->util_data
);
295 static int __devexit
tegra_snd_harmony_remove(struct platform_device
*pdev
)
297 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
298 struct tegra_harmony
*harmony
= snd_soc_card_get_drvdata(card
);
299 struct harmony_audio_platform_data
*pdata
= harmony
->pdata
;
301 snd_soc_unregister_card(card
);
303 snd_soc_card_set_drvdata(card
, NULL
);
304 platform_set_drvdata(pdev
, NULL
);
307 tegra_asoc_utils_fini(&harmony
->util_data
);
309 if (harmony
->gpio_spkr_en_requested
)
310 gpio_free(pdata
->gpio_spkr_en
);
317 static struct platform_driver tegra_snd_harmony_driver
= {
320 .owner
= THIS_MODULE
,
322 .probe
= tegra_snd_harmony_probe
,
323 .remove
= __devexit_p(tegra_snd_harmony_remove
),
326 static int __init
snd_tegra_harmony_init(void)
328 return platform_driver_register(&tegra_snd_harmony_driver
);
330 module_init(snd_tegra_harmony_init
);
332 static void __exit
snd_tegra_harmony_exit(void)
334 platform_driver_unregister(&tegra_snd_harmony_driver
);
336 module_exit(snd_tegra_harmony_exit
);
338 MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
339 MODULE_DESCRIPTION("Harmony machine ASoC driver");
340 MODULE_LICENSE("GPL");