ASoC: tegra: Add sink for the internal mic to tegra_max98090
[deliverable/linux.git] / sound / soc / tegra / tegra_max98090.c
CommitLineData
7637af2e
SW
1/*
2 * Tegra machine ASoC driver for boards using a MAX90809 CODEC.
3 *
4 * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions 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 it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * Based on code copyright/by:
19 *
20 * Copyright (C) 2010-2012 - NVIDIA, Inc.
21 * Copyright (C) 2011 The AC100 Kernel Team <ac100@lists.lauchpad.net>
22 * (c) 2009, 2010 Nvidia Graphics Pvt. Ltd.
23 * Copyright 2007 Wolfson Microelectronics PLC.
24 */
25
26#include <linux/module.h>
27#include <linux/platform_device.h>
28#include <linux/slab.h>
29#include <linux/gpio.h>
30#include <linux/of_gpio.h>
31
32#include <sound/core.h>
33#include <sound/jack.h>
34#include <sound/pcm.h>
35#include <sound/pcm_params.h>
36#include <sound/soc.h>
37
38#include "tegra_asoc_utils.h"
39
40#define DRV_NAME "tegra-snd-max98090"
41
42struct tegra_max98090 {
43 struct tegra_asoc_utils_data util_data;
44 int gpio_hp_det;
9766a1cf 45 int gpio_mic_det;
7637af2e
SW
46};
47
48static int tegra_max98090_asoc_hw_params(struct snd_pcm_substream *substream,
49 struct snd_pcm_hw_params *params)
50{
51 struct snd_soc_pcm_runtime *rtd = substream->private_data;
52 struct snd_soc_dai *codec_dai = rtd->codec_dai;
093c4e5c 53 struct snd_soc_card *card = rtd->card;
7637af2e
SW
54 struct tegra_max98090 *machine = snd_soc_card_get_drvdata(card);
55 int srate, mclk;
56 int err;
57
58 srate = params_rate(params);
59 switch (srate) {
60 case 8000:
61 case 16000:
62 case 24000:
63 case 32000:
64 case 48000:
65 case 64000:
66 case 96000:
67 mclk = 12288000;
68 break;
69 case 11025:
70 case 22050:
71 case 44100:
72 case 88200:
73 mclk = 11289600;
74 break;
75 default:
76 mclk = 12000000;
77 break;
78 }
79
80 err = tegra_asoc_utils_set_rate(&machine->util_data, srate, mclk);
81 if (err < 0) {
82 dev_err(card->dev, "Can't configure clocks\n");
83 return err;
84 }
85
86 err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
87 SND_SOC_CLOCK_IN);
88 if (err < 0) {
89 dev_err(card->dev, "codec_dai clock not set\n");
90 return err;
91 }
92
93 return 0;
94}
95
96static struct snd_soc_ops tegra_max98090_ops = {
97 .hw_params = tegra_max98090_asoc_hw_params,
98};
99
100static struct snd_soc_jack tegra_max98090_hp_jack;
101
102static struct snd_soc_jack_pin tegra_max98090_hp_jack_pins[] = {
103 {
104 .pin = "Headphones",
105 .mask = SND_JACK_HEADPHONE,
106 },
107};
108
109static struct snd_soc_jack_gpio tegra_max98090_hp_jack_gpio = {
110 .name = "Headphone detection",
111 .report = SND_JACK_HEADPHONE,
112 .debounce_time = 150,
113 .invert = 1,
114};
115
9766a1cf
DR
116static struct snd_soc_jack tegra_max98090_mic_jack;
117
118static struct snd_soc_jack_pin tegra_max98090_mic_jack_pins[] = {
119 {
120 .pin = "Mic Jack",
121 .mask = SND_JACK_MICROPHONE,
122 },
123};
124
125static struct snd_soc_jack_gpio tegra_max98090_mic_jack_gpio = {
126 .name = "Mic detection",
127 .report = SND_JACK_MICROPHONE,
128 .debounce_time = 150,
129 .invert = 1,
130};
131
7637af2e
SW
132static const struct snd_soc_dapm_widget tegra_max98090_dapm_widgets[] = {
133 SND_SOC_DAPM_HP("Headphones", NULL),
134 SND_SOC_DAPM_SPK("Speakers", NULL),
135 SND_SOC_DAPM_MIC("Mic Jack", NULL),
3a4562f7 136 SND_SOC_DAPM_MIC("Int Mic", NULL),
7637af2e
SW
137};
138
139static const struct snd_kcontrol_new tegra_max98090_controls[] = {
a0cf43e2 140 SOC_DAPM_PIN_SWITCH("Headphones"),
7637af2e 141 SOC_DAPM_PIN_SWITCH("Speakers"),
3a4562f7 142 SOC_DAPM_PIN_SWITCH("Int Mic"),
7637af2e
SW
143};
144
145static int tegra_max98090_asoc_init(struct snd_soc_pcm_runtime *rtd)
146{
147 struct snd_soc_dai *codec_dai = rtd->codec_dai;
148 struct snd_soc_codec *codec = codec_dai->codec;
093c4e5c 149 struct tegra_max98090 *machine = snd_soc_card_get_drvdata(rtd->card);
7637af2e
SW
150
151 if (gpio_is_valid(machine->gpio_hp_det)) {
152 snd_soc_jack_new(codec, "Headphones", SND_JACK_HEADPHONE,
153 &tegra_max98090_hp_jack);
154 snd_soc_jack_add_pins(&tegra_max98090_hp_jack,
155 ARRAY_SIZE(tegra_max98090_hp_jack_pins),
156 tegra_max98090_hp_jack_pins);
157
158 tegra_max98090_hp_jack_gpio.gpio = machine->gpio_hp_det;
159 snd_soc_jack_add_gpios(&tegra_max98090_hp_jack,
160 1,
161 &tegra_max98090_hp_jack_gpio);
162 }
163
9766a1cf
DR
164 if (gpio_is_valid(machine->gpio_mic_det)) {
165 snd_soc_jack_new(codec, "Mic Jack", SND_JACK_MICROPHONE,
166 &tegra_max98090_mic_jack);
167 snd_soc_jack_add_pins(&tegra_max98090_mic_jack,
168 ARRAY_SIZE(tegra_max98090_mic_jack_pins),
169 tegra_max98090_mic_jack_pins);
170
171 tegra_max98090_mic_jack_gpio.gpio = machine->gpio_mic_det;
172 snd_soc_jack_add_gpios(&tegra_max98090_mic_jack,
173 1,
174 &tegra_max98090_mic_jack_gpio);
175 }
176
7637af2e
SW
177 return 0;
178}
179
fb6b8e71
SW
180static int tegra_max98090_card_remove(struct snd_soc_card *card)
181{
182 struct tegra_max98090 *machine = snd_soc_card_get_drvdata(card);
183
184 if (gpio_is_valid(machine->gpio_hp_det)) {
185 snd_soc_jack_free_gpios(&tegra_max98090_hp_jack, 1,
186 &tegra_max98090_hp_jack_gpio);
187 }
188
9766a1cf
DR
189 if (gpio_is_valid(machine->gpio_mic_det)) {
190 snd_soc_jack_free_gpios(&tegra_max98090_mic_jack, 1,
191 &tegra_max98090_mic_jack_gpio);
192 }
193
fb6b8e71
SW
194 return 0;
195}
196
7637af2e
SW
197static struct snd_soc_dai_link tegra_max98090_dai = {
198 .name = "max98090",
199 .stream_name = "max98090 PCM",
200 .codec_dai_name = "HiFi",
201 .init = tegra_max98090_asoc_init,
202 .ops = &tegra_max98090_ops,
203 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
204 SND_SOC_DAIFMT_CBS_CFS,
205};
206
207static struct snd_soc_card snd_soc_tegra_max98090 = {
208 .name = "tegra-max98090",
209 .owner = THIS_MODULE,
fb6b8e71 210 .remove = tegra_max98090_card_remove,
7637af2e
SW
211 .dai_link = &tegra_max98090_dai,
212 .num_links = 1,
213 .controls = tegra_max98090_controls,
214 .num_controls = ARRAY_SIZE(tegra_max98090_controls),
215 .dapm_widgets = tegra_max98090_dapm_widgets,
216 .num_dapm_widgets = ARRAY_SIZE(tegra_max98090_dapm_widgets),
217 .fully_routed = true,
218};
219
220static int tegra_max98090_probe(struct platform_device *pdev)
221{
222 struct device_node *np = pdev->dev.of_node;
223 struct snd_soc_card *card = &snd_soc_tegra_max98090;
224 struct tegra_max98090 *machine;
225 int ret;
226
227 machine = devm_kzalloc(&pdev->dev,
228 sizeof(struct tegra_max98090), GFP_KERNEL);
229 if (!machine) {
230 dev_err(&pdev->dev, "Can't allocate tegra_max98090\n");
231 return -ENOMEM;
232 }
233
234 card->dev = &pdev->dev;
235 platform_set_drvdata(pdev, card);
236 snd_soc_card_set_drvdata(card, machine);
237
238 machine->gpio_hp_det = of_get_named_gpio(np, "nvidia,hp-det-gpios", 0);
239 if (machine->gpio_hp_det == -EPROBE_DEFER)
240 return -EPROBE_DEFER;
241
9766a1cf
DR
242 machine->gpio_mic_det =
243 of_get_named_gpio(np, "nvidia,mic-det-gpios", 0);
244 if (machine->gpio_mic_det == -EPROBE_DEFER)
245 return -EPROBE_DEFER;
246
7637af2e
SW
247 ret = snd_soc_of_parse_card_name(card, "nvidia,model");
248 if (ret)
249 goto err;
250
251 ret = snd_soc_of_parse_audio_routing(card, "nvidia,audio-routing");
252 if (ret)
253 goto err;
254
255 tegra_max98090_dai.codec_of_node = of_parse_phandle(np,
256 "nvidia,audio-codec", 0);
257 if (!tegra_max98090_dai.codec_of_node) {
258 dev_err(&pdev->dev,
259 "Property 'nvidia,audio-codec' missing or invalid\n");
260 ret = -EINVAL;
261 goto err;
262 }
263
264 tegra_max98090_dai.cpu_of_node = of_parse_phandle(np,
265 "nvidia,i2s-controller", 0);
266 if (!tegra_max98090_dai.cpu_of_node) {
267 dev_err(&pdev->dev,
268 "Property 'nvidia,i2s-controller' missing or invalid\n");
269 ret = -EINVAL;
270 goto err;
271 }
272
273 tegra_max98090_dai.platform_of_node = tegra_max98090_dai.cpu_of_node;
274
275 ret = tegra_asoc_utils_init(&machine->util_data, &pdev->dev);
276 if (ret)
277 goto err;
278
279 ret = snd_soc_register_card(card);
280 if (ret) {
281 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n",
282 ret);
283 goto err_fini_utils;
284 }
285
286 return 0;
287
288err_fini_utils:
289 tegra_asoc_utils_fini(&machine->util_data);
290err:
291 return ret;
292}
293
294static int tegra_max98090_remove(struct platform_device *pdev)
295{
296 struct snd_soc_card *card = platform_get_drvdata(pdev);
297 struct tegra_max98090 *machine = snd_soc_card_get_drvdata(card);
298
7637af2e
SW
299 snd_soc_unregister_card(card);
300
301 tegra_asoc_utils_fini(&machine->util_data);
302
303 return 0;
304}
305
306static const struct of_device_id tegra_max98090_of_match[] = {
307 { .compatible = "nvidia,tegra-audio-max98090", },
308 {},
309};
310
311static struct platform_driver tegra_max98090_driver = {
312 .driver = {
313 .name = DRV_NAME,
7637af2e
SW
314 .pm = &snd_soc_pm_ops,
315 .of_match_table = tegra_max98090_of_match,
316 },
317 .probe = tegra_max98090_probe,
318 .remove = tegra_max98090_remove,
319};
320module_platform_driver(tegra_max98090_driver);
321
322MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
323MODULE_DESCRIPTION("Tegra max98090 machine ASoC driver");
324MODULE_LICENSE("GPL v2");
325MODULE_ALIAS("platform:" DRV_NAME);
326MODULE_DEVICE_TABLE(of, tegra_max98090_of_match);
This page took 0.070272 seconds and 5 git commands to generate.