Merge tag 'powerpc-5.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux/fpc-iii.git] / sound / soc / tegra / tegra_max98090.c
blob00c19704057b675bcf6201c61e0fffd6e403d309
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Tegra machine ASoC driver for boards using a MAX90809 CODEC.
5 * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved.
7 * Based on code copyright/by:
9 * Copyright (C) 2010-2012 - NVIDIA, Inc.
10 * Copyright (C) 2011 The AC100 Kernel Team <ac100@lists.lauchpad.net>
11 * (c) 2009, 2010 Nvidia Graphics Pvt. Ltd.
12 * Copyright 2007 Wolfson Microelectronics PLC.
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/slab.h>
18 #include <linux/gpio.h>
19 #include <linux/of_gpio.h>
21 #include <sound/core.h>
22 #include <sound/jack.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
27 #include "tegra_asoc_utils.h"
29 #define DRV_NAME "tegra-snd-max98090"
31 struct tegra_max98090 {
32 struct tegra_asoc_utils_data util_data;
33 int gpio_hp_det;
34 int gpio_mic_det;
37 static int tegra_max98090_asoc_hw_params(struct snd_pcm_substream *substream,
38 struct snd_pcm_hw_params *params)
40 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
41 struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
42 struct snd_soc_card *card = rtd->card;
43 struct tegra_max98090 *machine = snd_soc_card_get_drvdata(card);
44 int srate, mclk;
45 int err;
47 srate = params_rate(params);
48 switch (srate) {
49 case 8000:
50 case 16000:
51 case 24000:
52 case 32000:
53 case 48000:
54 case 64000:
55 case 96000:
56 mclk = 12288000;
57 break;
58 case 11025:
59 case 22050:
60 case 44100:
61 case 88200:
62 mclk = 11289600;
63 break;
64 default:
65 mclk = 12000000;
66 break;
69 err = tegra_asoc_utils_set_rate(&machine->util_data, srate, mclk);
70 if (err < 0) {
71 dev_err(card->dev, "Can't configure clocks\n");
72 return err;
75 err = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
76 SND_SOC_CLOCK_IN);
77 if (err < 0) {
78 dev_err(card->dev, "codec_dai clock not set\n");
79 return err;
82 return 0;
85 static const struct snd_soc_ops tegra_max98090_ops = {
86 .hw_params = tegra_max98090_asoc_hw_params,
89 static struct snd_soc_jack tegra_max98090_hp_jack;
91 static struct snd_soc_jack_pin tegra_max98090_hp_jack_pins[] = {
93 .pin = "Headphones",
94 .mask = SND_JACK_HEADPHONE,
98 static struct snd_soc_jack_gpio tegra_max98090_hp_jack_gpio = {
99 .name = "Headphone detection",
100 .report = SND_JACK_HEADPHONE,
101 .debounce_time = 150,
102 .invert = 1,
105 static struct snd_soc_jack tegra_max98090_mic_jack;
107 static struct snd_soc_jack_pin tegra_max98090_mic_jack_pins[] = {
109 .pin = "Mic Jack",
110 .mask = SND_JACK_MICROPHONE,
114 static struct snd_soc_jack_gpio tegra_max98090_mic_jack_gpio = {
115 .name = "Mic detection",
116 .report = SND_JACK_MICROPHONE,
117 .debounce_time = 150,
118 .invert = 1,
121 static const struct snd_soc_dapm_widget tegra_max98090_dapm_widgets[] = {
122 SND_SOC_DAPM_HP("Headphones", NULL),
123 SND_SOC_DAPM_SPK("Speakers", NULL),
124 SND_SOC_DAPM_MIC("Mic Jack", NULL),
125 SND_SOC_DAPM_MIC("Int Mic", NULL),
128 static const struct snd_kcontrol_new tegra_max98090_controls[] = {
129 SOC_DAPM_PIN_SWITCH("Headphones"),
130 SOC_DAPM_PIN_SWITCH("Speakers"),
131 SOC_DAPM_PIN_SWITCH("Mic Jack"),
132 SOC_DAPM_PIN_SWITCH("Int Mic"),
135 static int tegra_max98090_asoc_init(struct snd_soc_pcm_runtime *rtd)
137 struct tegra_max98090 *machine = snd_soc_card_get_drvdata(rtd->card);
139 if (gpio_is_valid(machine->gpio_hp_det)) {
140 snd_soc_card_jack_new(rtd->card, "Headphones",
141 SND_JACK_HEADPHONE,
142 &tegra_max98090_hp_jack,
143 tegra_max98090_hp_jack_pins,
144 ARRAY_SIZE(tegra_max98090_hp_jack_pins));
146 tegra_max98090_hp_jack_gpio.gpio = machine->gpio_hp_det;
147 snd_soc_jack_add_gpios(&tegra_max98090_hp_jack,
149 &tegra_max98090_hp_jack_gpio);
152 if (gpio_is_valid(machine->gpio_mic_det)) {
153 snd_soc_card_jack_new(rtd->card, "Mic Jack",
154 SND_JACK_MICROPHONE,
155 &tegra_max98090_mic_jack,
156 tegra_max98090_mic_jack_pins,
157 ARRAY_SIZE(tegra_max98090_mic_jack_pins));
159 tegra_max98090_mic_jack_gpio.gpio = machine->gpio_mic_det;
160 snd_soc_jack_add_gpios(&tegra_max98090_mic_jack,
162 &tegra_max98090_mic_jack_gpio);
165 return 0;
168 SND_SOC_DAILINK_DEFS(pcm,
169 DAILINK_COMP_ARRAY(COMP_EMPTY()),
170 DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "HiFi")),
171 DAILINK_COMP_ARRAY(COMP_EMPTY()));
173 static struct snd_soc_dai_link tegra_max98090_dai = {
174 .name = "max98090",
175 .stream_name = "max98090 PCM",
176 .init = tegra_max98090_asoc_init,
177 .ops = &tegra_max98090_ops,
178 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
179 SND_SOC_DAIFMT_CBS_CFS,
180 SND_SOC_DAILINK_REG(pcm),
183 static struct snd_soc_card snd_soc_tegra_max98090 = {
184 .name = "tegra-max98090",
185 .owner = THIS_MODULE,
186 .dai_link = &tegra_max98090_dai,
187 .num_links = 1,
188 .controls = tegra_max98090_controls,
189 .num_controls = ARRAY_SIZE(tegra_max98090_controls),
190 .dapm_widgets = tegra_max98090_dapm_widgets,
191 .num_dapm_widgets = ARRAY_SIZE(tegra_max98090_dapm_widgets),
192 .fully_routed = true,
195 static int tegra_max98090_probe(struct platform_device *pdev)
197 struct device_node *np = pdev->dev.of_node;
198 struct snd_soc_card *card = &snd_soc_tegra_max98090;
199 struct tegra_max98090 *machine;
200 int ret;
202 machine = devm_kzalloc(&pdev->dev,
203 sizeof(struct tegra_max98090), GFP_KERNEL);
204 if (!machine)
205 return -ENOMEM;
207 card->dev = &pdev->dev;
208 snd_soc_card_set_drvdata(card, machine);
210 machine->gpio_hp_det = of_get_named_gpio(np, "nvidia,hp-det-gpios", 0);
211 if (machine->gpio_hp_det == -EPROBE_DEFER)
212 return -EPROBE_DEFER;
214 machine->gpio_mic_det =
215 of_get_named_gpio(np, "nvidia,mic-det-gpios", 0);
216 if (machine->gpio_mic_det == -EPROBE_DEFER)
217 return -EPROBE_DEFER;
219 ret = snd_soc_of_parse_card_name(card, "nvidia,model");
220 if (ret)
221 return ret;
223 ret = snd_soc_of_parse_audio_routing(card, "nvidia,audio-routing");
224 if (ret)
225 return ret;
227 tegra_max98090_dai.codecs->of_node = of_parse_phandle(np,
228 "nvidia,audio-codec", 0);
229 if (!tegra_max98090_dai.codecs->of_node) {
230 dev_err(&pdev->dev,
231 "Property 'nvidia,audio-codec' missing or invalid\n");
232 return -EINVAL;
235 tegra_max98090_dai.cpus->of_node = of_parse_phandle(np,
236 "nvidia,i2s-controller", 0);
237 if (!tegra_max98090_dai.cpus->of_node) {
238 dev_err(&pdev->dev,
239 "Property 'nvidia,i2s-controller' missing or invalid\n");
240 return -EINVAL;
243 tegra_max98090_dai.platforms->of_node = tegra_max98090_dai.cpus->of_node;
245 ret = tegra_asoc_utils_init(&machine->util_data, &pdev->dev);
246 if (ret)
247 return ret;
249 ret = devm_snd_soc_register_card(&pdev->dev, card);
250 if (ret)
251 return dev_err_probe(&pdev->dev, ret,
252 "snd_soc_register_card failed\n");
254 return 0;
257 static const struct of_device_id tegra_max98090_of_match[] = {
258 { .compatible = "nvidia,tegra-audio-max98090", },
262 static struct platform_driver tegra_max98090_driver = {
263 .driver = {
264 .name = DRV_NAME,
265 .pm = &snd_soc_pm_ops,
266 .of_match_table = tegra_max98090_of_match,
268 .probe = tegra_max98090_probe,
270 module_platform_driver(tegra_max98090_driver);
272 MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
273 MODULE_DESCRIPTION("Tegra max98090 machine ASoC driver");
274 MODULE_LICENSE("GPL v2");
275 MODULE_ALIAS("platform:" DRV_NAME);
276 MODULE_DEVICE_TABLE(of, tegra_max98090_of_match);