f184d23deaa0f7fc838cad091115637d42606487
[platform/kernel/linux-rpi.git] / sound / soc / intel / boards / bytcr_rt5640.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *  byt_cr_dpcm_rt5640.c - ASoc Machine driver for Intel Byt CR platform
4  *
5  *  Copyright (C) 2014 Intel Corp
6  *  Author: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
7  *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8  *
9  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10  */
11
12 #include <linux/i2c.h>
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/platform_device.h>
17 #include <linux/acpi.h>
18 #include <linux/clk.h>
19 #include <linux/device.h>
20 #include <linux/dmi.h>
21 #include <linux/gpio/consumer.h>
22 #include <linux/gpio/machine.h>
23 #include <linux/input.h>
24 #include <linux/slab.h>
25 #include <sound/pcm.h>
26 #include <sound/pcm_params.h>
27 #include <sound/soc.h>
28 #include <sound/jack.h>
29 #include <sound/soc-acpi.h>
30 #include <dt-bindings/sound/rt5640.h>
31 #include "../../codecs/rt5640.h"
32 #include "../atom/sst-atom-controls.h"
33 #include "../common/soc-intel-quirks.h"
34
35 enum {
36         BYT_RT5640_DMIC1_MAP,
37         BYT_RT5640_DMIC2_MAP,
38         BYT_RT5640_IN1_MAP,
39         BYT_RT5640_IN3_MAP,
40         BYT_RT5640_NO_INTERNAL_MIC_MAP,
41 };
42
43 #define RT5640_JD_SRC_EXT_GPIO                  0x0f
44
45 enum {
46         BYT_RT5640_JD_SRC_GPIO1         = (RT5640_JD_SRC_GPIO1 << 4),
47         BYT_RT5640_JD_SRC_JD1_IN4P      = (RT5640_JD_SRC_JD1_IN4P << 4),
48         BYT_RT5640_JD_SRC_JD2_IN4N      = (RT5640_JD_SRC_JD2_IN4N << 4),
49         BYT_RT5640_JD_SRC_GPIO2         = (RT5640_JD_SRC_GPIO2 << 4),
50         BYT_RT5640_JD_SRC_GPIO3         = (RT5640_JD_SRC_GPIO3 << 4),
51         BYT_RT5640_JD_SRC_GPIO4         = (RT5640_JD_SRC_GPIO4 << 4),
52         BYT_RT5640_JD_SRC_EXT_GPIO      = (RT5640_JD_SRC_EXT_GPIO << 4)
53 };
54
55 enum {
56         BYT_RT5640_OVCD_TH_600UA        = (6 << 8),
57         BYT_RT5640_OVCD_TH_1500UA       = (15 << 8),
58         BYT_RT5640_OVCD_TH_2000UA       = (20 << 8),
59 };
60
61 enum {
62         BYT_RT5640_OVCD_SF_0P5          = (RT5640_OVCD_SF_0P5 << 13),
63         BYT_RT5640_OVCD_SF_0P75         = (RT5640_OVCD_SF_0P75 << 13),
64         BYT_RT5640_OVCD_SF_1P0          = (RT5640_OVCD_SF_1P0 << 13),
65         BYT_RT5640_OVCD_SF_1P5          = (RT5640_OVCD_SF_1P5 << 13),
66 };
67
68 #define BYT_RT5640_MAP(quirk)           ((quirk) &  GENMASK(3, 0))
69 #define BYT_RT5640_JDSRC(quirk)         (((quirk) & GENMASK(7, 4)) >> 4)
70 #define BYT_RT5640_OVCD_TH(quirk)       (((quirk) & GENMASK(12, 8)) >> 8)
71 #define BYT_RT5640_OVCD_SF(quirk)       (((quirk) & GENMASK(14, 13)) >> 13)
72 #define BYT_RT5640_JD_NOT_INV           BIT(16)
73 #define BYT_RT5640_MONO_SPEAKER         BIT(17)
74 #define BYT_RT5640_DIFF_MIC             BIT(18) /* default is single-ended */
75 #define BYT_RT5640_SSP2_AIF2            BIT(19) /* default is using AIF1  */
76 #define BYT_RT5640_SSP0_AIF1            BIT(20)
77 #define BYT_RT5640_SSP0_AIF2            BIT(21)
78 #define BYT_RT5640_MCLK_EN              BIT(22)
79 #define BYT_RT5640_MCLK_25MHZ           BIT(23)
80 #define BYT_RT5640_NO_SPEAKERS          BIT(24)
81 #define BYT_RT5640_LINEOUT              BIT(25)
82 #define BYT_RT5640_LINEOUT_AS_HP2       BIT(26)
83 #define BYT_RT5640_HSMIC2_ON_IN1        BIT(27)
84 #define BYT_RT5640_JD_HP_ELITEP_1000G2  BIT(28)
85 #define BYT_RT5640_USE_AMCR0F28         BIT(29)
86
87 #define BYTCR_INPUT_DEFAULTS                            \
88         (BYT_RT5640_IN3_MAP |                           \
89          BYT_RT5640_JD_SRC_JD1_IN4P |                   \
90          BYT_RT5640_OVCD_TH_2000UA |                    \
91          BYT_RT5640_OVCD_SF_0P75 |                      \
92          BYT_RT5640_DIFF_MIC)
93
94 /* in-diff or dmic-pin + jdsrc + ovcd-th + -sf + jd-inv + terminating entry */
95 #define MAX_NO_PROPS 6
96
97 struct byt_rt5640_private {
98         struct snd_soc_jack jack;
99         struct snd_soc_jack jack2;
100         struct rt5640_set_jack_data jack_data;
101         struct gpio_desc *hsmic_detect;
102         struct clk *mclk;
103         struct device *codec_dev;
104 };
105 static bool is_bytcr;
106
107 static unsigned long byt_rt5640_quirk = BYT_RT5640_MCLK_EN;
108 static int quirk_override = -1;
109 module_param_named(quirk, quirk_override, int, 0444);
110 MODULE_PARM_DESC(quirk, "Board-specific quirk override");
111
112 static void log_quirks(struct device *dev)
113 {
114         int map;
115         bool has_mclk = false;
116         bool has_ssp0 = false;
117         bool has_ssp0_aif1 = false;
118         bool has_ssp0_aif2 = false;
119         bool has_ssp2_aif2 = false;
120
121         map = BYT_RT5640_MAP(byt_rt5640_quirk);
122         switch (map) {
123         case BYT_RT5640_DMIC1_MAP:
124                 dev_info(dev, "quirk DMIC1_MAP enabled\n");
125                 break;
126         case BYT_RT5640_DMIC2_MAP:
127                 dev_info(dev, "quirk DMIC2_MAP enabled\n");
128                 break;
129         case BYT_RT5640_IN1_MAP:
130                 dev_info(dev, "quirk IN1_MAP enabled\n");
131                 break;
132         case BYT_RT5640_IN3_MAP:
133                 dev_info(dev, "quirk IN3_MAP enabled\n");
134                 break;
135         case BYT_RT5640_NO_INTERNAL_MIC_MAP:
136                 dev_info(dev, "quirk NO_INTERNAL_MIC_MAP enabled\n");
137                 break;
138         default:
139                 dev_err(dev, "quirk map 0x%x is not supported, microphone input will not work\n", map);
140                 break;
141         }
142         if (byt_rt5640_quirk & BYT_RT5640_HSMIC2_ON_IN1)
143                 dev_info(dev, "quirk HSMIC2_ON_IN1 enabled\n");
144         if (BYT_RT5640_JDSRC(byt_rt5640_quirk)) {
145                 dev_info(dev, "quirk realtek,jack-detect-source %ld\n",
146                          BYT_RT5640_JDSRC(byt_rt5640_quirk));
147                 dev_info(dev, "quirk realtek,over-current-threshold-microamp %ld\n",
148                          BYT_RT5640_OVCD_TH(byt_rt5640_quirk) * 100);
149                 dev_info(dev, "quirk realtek,over-current-scale-factor %ld\n",
150                          BYT_RT5640_OVCD_SF(byt_rt5640_quirk));
151         }
152         if (byt_rt5640_quirk & BYT_RT5640_JD_NOT_INV)
153                 dev_info(dev, "quirk JD_NOT_INV enabled\n");
154         if (byt_rt5640_quirk & BYT_RT5640_JD_HP_ELITEP_1000G2)
155                 dev_info(dev, "quirk JD_HP_ELITEPAD_1000G2 enabled\n");
156         if (byt_rt5640_quirk & BYT_RT5640_MONO_SPEAKER)
157                 dev_info(dev, "quirk MONO_SPEAKER enabled\n");
158         if (byt_rt5640_quirk & BYT_RT5640_NO_SPEAKERS)
159                 dev_info(dev, "quirk NO_SPEAKERS enabled\n");
160         if (byt_rt5640_quirk & BYT_RT5640_LINEOUT)
161                 dev_info(dev, "quirk LINEOUT enabled\n");
162         if (byt_rt5640_quirk & BYT_RT5640_LINEOUT_AS_HP2)
163                 dev_info(dev, "quirk LINEOUT_AS_HP2 enabled\n");
164         if (byt_rt5640_quirk & BYT_RT5640_DIFF_MIC)
165                 dev_info(dev, "quirk DIFF_MIC enabled\n");
166         if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) {
167                 dev_info(dev, "quirk SSP0_AIF1 enabled\n");
168                 has_ssp0 = true;
169                 has_ssp0_aif1 = true;
170         }
171         if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2) {
172                 dev_info(dev, "quirk SSP0_AIF2 enabled\n");
173                 has_ssp0 = true;
174                 has_ssp0_aif2 = true;
175         }
176         if (byt_rt5640_quirk & BYT_RT5640_SSP2_AIF2) {
177                 dev_info(dev, "quirk SSP2_AIF2 enabled\n");
178                 has_ssp2_aif2 = true;
179         }
180         if (is_bytcr && !has_ssp0)
181                 dev_err(dev, "Invalid routing, bytcr detected but no SSP0-based quirk, audio cannot work with SSP2 on bytcr\n");
182         if (has_ssp0_aif1 && has_ssp0_aif2)
183                 dev_err(dev, "Invalid routing, SSP0 cannot be connected to both AIF1 and AIF2\n");
184         if (has_ssp0 && has_ssp2_aif2)
185                 dev_err(dev, "Invalid routing, cannot have both SSP0 and SSP2 connected to codec\n");
186
187         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN) {
188                 dev_info(dev, "quirk MCLK_EN enabled\n");
189                 has_mclk = true;
190         }
191         if (byt_rt5640_quirk & BYT_RT5640_MCLK_25MHZ) {
192                 if (has_mclk)
193                         dev_info(dev, "quirk MCLK_25MHZ enabled\n");
194                 else
195                         dev_err(dev, "quirk MCLK_25MHZ enabled but quirk MCLK not selected, will be ignored\n");
196         }
197 }
198
199 static int byt_rt5640_prepare_and_enable_pll1(struct snd_soc_dai *codec_dai,
200                                               int rate)
201 {
202         int ret;
203
204         /* Configure the PLL before selecting it */
205         if (!(byt_rt5640_quirk & BYT_RT5640_MCLK_EN)) {
206                 /* use bitclock as PLL input */
207                 if ((byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) ||
208                     (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2)) {
209                         /* 2x16 bit slots on SSP0 */
210                         ret = snd_soc_dai_set_pll(codec_dai, 0,
211                                                   RT5640_PLL1_S_BCLK1,
212                                                   rate * 32, rate * 512);
213                 } else {
214                         /* 2x15 bit slots on SSP2 */
215                         ret = snd_soc_dai_set_pll(codec_dai, 0,
216                                                   RT5640_PLL1_S_BCLK1,
217                                                   rate * 50, rate * 512);
218                 }
219         } else {
220                 if (byt_rt5640_quirk & BYT_RT5640_MCLK_25MHZ) {
221                         ret = snd_soc_dai_set_pll(codec_dai, 0,
222                                                   RT5640_PLL1_S_MCLK,
223                                                   25000000, rate * 512);
224                 } else {
225                         ret = snd_soc_dai_set_pll(codec_dai, 0,
226                                                   RT5640_PLL1_S_MCLK,
227                                                   19200000, rate * 512);
228                 }
229         }
230
231         if (ret < 0) {
232                 dev_err(codec_dai->component->dev, "can't set pll: %d\n", ret);
233                 return ret;
234         }
235
236         ret = snd_soc_dai_set_sysclk(codec_dai, RT5640_SCLK_S_PLL1,
237                                      rate * 512, SND_SOC_CLOCK_IN);
238         if (ret < 0) {
239                 dev_err(codec_dai->component->dev, "can't set clock %d\n", ret);
240                 return ret;
241         }
242
243         return 0;
244 }
245
246 #define BYT_CODEC_DAI1  "rt5640-aif1"
247 #define BYT_CODEC_DAI2  "rt5640-aif2"
248
249 static struct snd_soc_dai *byt_rt5640_get_codec_dai(struct snd_soc_dapm_context *dapm)
250 {
251         struct snd_soc_card *card = dapm->card;
252         struct snd_soc_dai *codec_dai;
253
254         codec_dai = snd_soc_card_get_codec_dai(card, BYT_CODEC_DAI1);
255         if (!codec_dai)
256                 codec_dai = snd_soc_card_get_codec_dai(card, BYT_CODEC_DAI2);
257         if (!codec_dai)
258                 dev_err(card->dev, "Error codec dai not found\n");
259
260         return codec_dai;
261 }
262
263 static int platform_clock_control(struct snd_soc_dapm_widget *w,
264                                   struct snd_kcontrol *k, int  event)
265 {
266         struct snd_soc_dapm_context *dapm = w->dapm;
267         struct snd_soc_card *card = dapm->card;
268         struct snd_soc_dai *codec_dai;
269         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
270         int ret;
271
272         codec_dai = byt_rt5640_get_codec_dai(dapm);
273         if (!codec_dai)
274                 return -EIO;
275
276         if (SND_SOC_DAPM_EVENT_ON(event)) {
277                 ret = clk_prepare_enable(priv->mclk);
278                 if (ret < 0) {
279                         dev_err(card->dev, "could not configure MCLK state\n");
280                         return ret;
281                 }
282                 ret = byt_rt5640_prepare_and_enable_pll1(codec_dai, 48000);
283         } else {
284                 /*
285                  * Set codec clock source to internal clock before
286                  * turning off the platform clock. Codec needs clock
287                  * for Jack detection and button press
288                  */
289                 ret = snd_soc_dai_set_sysclk(codec_dai, RT5640_SCLK_S_RCCLK,
290                                              48000 * 512,
291                                              SND_SOC_CLOCK_IN);
292                 if (!ret)
293                         clk_disable_unprepare(priv->mclk);
294         }
295
296         if (ret < 0) {
297                 dev_err(card->dev, "can't set codec sysclk: %d\n", ret);
298                 return ret;
299         }
300
301         return 0;
302 }
303
304 static int byt_rt5640_event_lineout(struct snd_soc_dapm_widget *w,
305                         struct snd_kcontrol *k, int event)
306 {
307         unsigned int gpio_ctrl3_val = RT5640_GP1_PF_OUT;
308         struct snd_soc_dai *codec_dai;
309
310         if (!(byt_rt5640_quirk & BYT_RT5640_LINEOUT_AS_HP2))
311                 return 0;
312
313         /*
314          * On devices which use line-out as a second headphones output,
315          * the codec's GPIO1 pin is used to enable an external HP-amp.
316          */
317
318         codec_dai = byt_rt5640_get_codec_dai(w->dapm);
319         if (!codec_dai)
320                 return -EIO;
321
322         if (SND_SOC_DAPM_EVENT_ON(event))
323                 gpio_ctrl3_val |= RT5640_GP1_OUT_HI;
324
325         snd_soc_component_update_bits(codec_dai->component, RT5640_GPIO_CTRL3,
326                 RT5640_GP1_PF_MASK | RT5640_GP1_OUT_MASK, gpio_ctrl3_val);
327
328         return 0;
329 }
330
331 static const struct snd_soc_dapm_widget byt_rt5640_widgets[] = {
332         SND_SOC_DAPM_HP("Headphone", NULL),
333         SND_SOC_DAPM_MIC("Headset Mic", NULL),
334         SND_SOC_DAPM_MIC("Headset Mic 2", NULL),
335         SND_SOC_DAPM_MIC("Internal Mic", NULL),
336         SND_SOC_DAPM_SPK("Speaker", NULL),
337         SND_SOC_DAPM_LINE("Line Out", byt_rt5640_event_lineout),
338         SND_SOC_DAPM_SUPPLY("Platform Clock", SND_SOC_NOPM, 0, 0,
339                             platform_clock_control, SND_SOC_DAPM_PRE_PMU |
340                             SND_SOC_DAPM_POST_PMD),
341 };
342
343 static const struct snd_soc_dapm_route byt_rt5640_audio_map[] = {
344         {"Headphone", NULL, "Platform Clock"},
345         {"Headset Mic", NULL, "Platform Clock"},
346         {"Headset Mic", NULL, "MICBIAS1"},
347         {"IN2P", NULL, "Headset Mic"},
348         {"Headphone", NULL, "HPOL"},
349         {"Headphone", NULL, "HPOR"},
350 };
351
352 static const struct snd_soc_dapm_route byt_rt5640_intmic_dmic1_map[] = {
353         {"Internal Mic", NULL, "Platform Clock"},
354         {"DMIC1", NULL, "Internal Mic"},
355 };
356
357 static const struct snd_soc_dapm_route byt_rt5640_intmic_dmic2_map[] = {
358         {"Internal Mic", NULL, "Platform Clock"},
359         {"DMIC2", NULL, "Internal Mic"},
360 };
361
362 static const struct snd_soc_dapm_route byt_rt5640_intmic_in1_map[] = {
363         {"Internal Mic", NULL, "Platform Clock"},
364         {"Internal Mic", NULL, "MICBIAS1"},
365         {"IN1P", NULL, "Internal Mic"},
366 };
367
368 static const struct snd_soc_dapm_route byt_rt5640_intmic_in3_map[] = {
369         {"Internal Mic", NULL, "Platform Clock"},
370         {"Internal Mic", NULL, "MICBIAS1"},
371         {"IN3P", NULL, "Internal Mic"},
372 };
373
374 static const struct snd_soc_dapm_route byt_rt5640_hsmic2_in1_map[] = {
375         {"Headset Mic 2", NULL, "Platform Clock"},
376         {"Headset Mic 2", NULL, "MICBIAS1"},
377         {"IN1P", NULL, "Headset Mic 2"},
378 };
379
380 static const struct snd_soc_dapm_route byt_rt5640_ssp2_aif1_map[] = {
381         {"ssp2 Tx", NULL, "codec_out0"},
382         {"ssp2 Tx", NULL, "codec_out1"},
383         {"codec_in0", NULL, "ssp2 Rx"},
384         {"codec_in1", NULL, "ssp2 Rx"},
385
386         {"AIF1 Playback", NULL, "ssp2 Tx"},
387         {"ssp2 Rx", NULL, "AIF1 Capture"},
388 };
389
390 static const struct snd_soc_dapm_route byt_rt5640_ssp2_aif2_map[] = {
391         {"ssp2 Tx", NULL, "codec_out0"},
392         {"ssp2 Tx", NULL, "codec_out1"},
393         {"codec_in0", NULL, "ssp2 Rx"},
394         {"codec_in1", NULL, "ssp2 Rx"},
395
396         {"AIF2 Playback", NULL, "ssp2 Tx"},
397         {"ssp2 Rx", NULL, "AIF2 Capture"},
398 };
399
400 static const struct snd_soc_dapm_route byt_rt5640_ssp0_aif1_map[] = {
401         {"ssp0 Tx", NULL, "modem_out"},
402         {"modem_in", NULL, "ssp0 Rx"},
403
404         {"AIF1 Playback", NULL, "ssp0 Tx"},
405         {"ssp0 Rx", NULL, "AIF1 Capture"},
406 };
407
408 static const struct snd_soc_dapm_route byt_rt5640_ssp0_aif2_map[] = {
409         {"ssp0 Tx", NULL, "modem_out"},
410         {"modem_in", NULL, "ssp0 Rx"},
411
412         {"AIF2 Playback", NULL, "ssp0 Tx"},
413         {"ssp0 Rx", NULL, "AIF2 Capture"},
414 };
415
416 static const struct snd_soc_dapm_route byt_rt5640_stereo_spk_map[] = {
417         {"Speaker", NULL, "Platform Clock"},
418         {"Speaker", NULL, "SPOLP"},
419         {"Speaker", NULL, "SPOLN"},
420         {"Speaker", NULL, "SPORP"},
421         {"Speaker", NULL, "SPORN"},
422 };
423
424 static const struct snd_soc_dapm_route byt_rt5640_mono_spk_map[] = {
425         {"Speaker", NULL, "Platform Clock"},
426         {"Speaker", NULL, "SPOLP"},
427         {"Speaker", NULL, "SPOLN"},
428 };
429
430 static const struct snd_soc_dapm_route byt_rt5640_lineout_map[] = {
431         {"Line Out", NULL, "Platform Clock"},
432         {"Line Out", NULL, "LOUTR"},
433         {"Line Out", NULL, "LOUTL"},
434 };
435
436 static const struct snd_kcontrol_new byt_rt5640_controls[] = {
437         SOC_DAPM_PIN_SWITCH("Headphone"),
438         SOC_DAPM_PIN_SWITCH("Headset Mic"),
439         SOC_DAPM_PIN_SWITCH("Headset Mic 2"),
440         SOC_DAPM_PIN_SWITCH("Internal Mic"),
441         SOC_DAPM_PIN_SWITCH("Speaker"),
442         SOC_DAPM_PIN_SWITCH("Line Out"),
443 };
444
445 static struct snd_soc_jack_pin rt5640_pins[] = {
446         {
447                 .pin    = "Headphone",
448                 .mask   = SND_JACK_HEADPHONE,
449         },
450         {
451                 .pin    = "Headset Mic",
452                 .mask   = SND_JACK_MICROPHONE,
453         },
454 };
455
456 static struct snd_soc_jack_pin rt5640_pins2[] = {
457         {
458                 /* The 2nd headset jack uses lineout with an external HP-amp */
459                 .pin    = "Line Out",
460                 .mask   = SND_JACK_HEADPHONE,
461         },
462         {
463                 .pin    = "Headset Mic 2",
464                 .mask   = SND_JACK_MICROPHONE,
465         },
466 };
467
468 static struct snd_soc_jack_gpio rt5640_jack_gpio = {
469         .name = "hp-detect",
470         .report = SND_JACK_HEADSET,
471         .invert = true,
472         .debounce_time = 200,
473 };
474
475 static struct snd_soc_jack_gpio rt5640_jack2_gpio = {
476         .name = "hp2-detect",
477         .report = SND_JACK_HEADSET,
478         .invert = true,
479         .debounce_time = 200,
480 };
481
482 static const struct acpi_gpio_params acpi_gpio0 = { 0, 0, false };
483 static const struct acpi_gpio_params acpi_gpio1 = { 1, 0, false };
484 static const struct acpi_gpio_params acpi_gpio2 = { 2, 0, false };
485
486 static const struct acpi_gpio_mapping byt_rt5640_hp_elitepad_1000g2_gpios[] = {
487         { "hp-detect-gpios", &acpi_gpio0, 1, },
488         { "headset-mic-detect-gpios", &acpi_gpio1, 1, },
489         { "hp2-detect-gpios", &acpi_gpio2, 1, },
490         { },
491 };
492
493 static int byt_rt5640_hp_elitepad_1000g2_jack1_check(void *data)
494 {
495         struct byt_rt5640_private *priv = data;
496         int jack_status, mic_status;
497
498         jack_status = gpiod_get_value_cansleep(rt5640_jack_gpio.desc);
499         if (jack_status)
500                 return 0;
501
502         mic_status = gpiod_get_value_cansleep(priv->hsmic_detect);
503         if (mic_status)
504                 return SND_JACK_HEADPHONE;
505         else
506                 return SND_JACK_HEADSET;
507 }
508
509 static int byt_rt5640_hp_elitepad_1000g2_jack2_check(void *data)
510 {
511         struct snd_soc_component *component = data;
512         int jack_status, report;
513
514         jack_status = gpiod_get_value_cansleep(rt5640_jack2_gpio.desc);
515         if (jack_status)
516                 return 0;
517
518         rt5640_enable_micbias1_for_ovcd(component);
519         report = rt5640_detect_headset(component, rt5640_jack2_gpio.desc);
520         rt5640_disable_micbias1_for_ovcd(component);
521
522         return report;
523 }
524
525 static int byt_rt5640_aif1_hw_params(struct snd_pcm_substream *substream,
526                                         struct snd_pcm_hw_params *params)
527 {
528         struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
529         struct snd_soc_dai *dai = asoc_rtd_to_codec(rtd, 0);
530
531         return byt_rt5640_prepare_and_enable_pll1(dai, params_rate(params));
532 }
533
534 /* Please keep this list alphabetically sorted */
535 static const struct dmi_system_id byt_rt5640_quirk_table[] = {
536         {       /* Acer Iconia One 7 B1-750 */
537                 .matches = {
538                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
539                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "VESPA2"),
540                 },
541                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
542                                         BYT_RT5640_JD_SRC_JD1_IN4P |
543                                         BYT_RT5640_OVCD_TH_1500UA |
544                                         BYT_RT5640_OVCD_SF_0P75 |
545                                         BYT_RT5640_SSP0_AIF1 |
546                                         BYT_RT5640_MCLK_EN),
547         },
548         {       /* Acer Iconia Tab 8 W1-810 */
549                 .matches = {
550                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Acer"),
551                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Iconia W1-810"),
552                 },
553                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
554                                         BYT_RT5640_JD_SRC_JD1_IN4P |
555                                         BYT_RT5640_OVCD_TH_1500UA |
556                                         BYT_RT5640_OVCD_SF_0P75 |
557                                         BYT_RT5640_SSP0_AIF1 |
558                                         BYT_RT5640_MCLK_EN),
559         },
560         {       /* Acer One 10 S1002 */
561                 .matches = {
562                         DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
563                         DMI_MATCH(DMI_PRODUCT_NAME, "One S1002"),
564                 },
565                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
566                                         BYT_RT5640_JD_SRC_JD2_IN4N |
567                                         BYT_RT5640_OVCD_TH_2000UA |
568                                         BYT_RT5640_OVCD_SF_0P75 |
569                                         BYT_RT5640_DIFF_MIC |
570                                         BYT_RT5640_SSP0_AIF2 |
571                                         BYT_RT5640_MCLK_EN),
572         },
573         {
574                 .matches = {
575                         DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
576                         DMI_MATCH(DMI_PRODUCT_NAME, "Aspire SW5-012"),
577                 },
578                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
579                                         BYT_RT5640_JD_SRC_JD2_IN4N |
580                                         BYT_RT5640_OVCD_TH_2000UA |
581                                         BYT_RT5640_OVCD_SF_0P75 |
582                                         BYT_RT5640_SSP0_AIF1 |
583                                         BYT_RT5640_MCLK_EN),
584         },
585         {
586                 /* Advantech MICA-071 */
587                 .matches = {
588                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Advantech"),
589                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "MICA-071"),
590                 },
591                 /* OVCD Th = 1500uA to reliable detect head-phones vs -set */
592                 .driver_data = (void *)(BYT_RT5640_IN3_MAP |
593                                         BYT_RT5640_JD_SRC_JD2_IN4N |
594                                         BYT_RT5640_OVCD_TH_1500UA |
595                                         BYT_RT5640_OVCD_SF_0P75 |
596                                         BYT_RT5640_MONO_SPEAKER |
597                                         BYT_RT5640_DIFF_MIC |
598                                         BYT_RT5640_MCLK_EN),
599         },
600         {
601                 .matches = {
602                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ARCHOS"),
603                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ARCHOS 80 Cesium"),
604                 },
605                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
606                                         BYT_RT5640_MONO_SPEAKER |
607                                         BYT_RT5640_SSP0_AIF1 |
608                                         BYT_RT5640_MCLK_EN),
609         },
610         {
611                 .matches = {
612                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ARCHOS"),
613                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ARCHOS 140 CESIUM"),
614                 },
615                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
616                                         BYT_RT5640_JD_SRC_JD2_IN4N |
617                                         BYT_RT5640_OVCD_TH_2000UA |
618                                         BYT_RT5640_OVCD_SF_0P75 |
619                                         BYT_RT5640_SSP0_AIF1 |
620                                         BYT_RT5640_MCLK_EN),
621         },
622         {
623                 .matches = {
624                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
625                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ME176C"),
626                 },
627                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
628                                         BYT_RT5640_JD_SRC_JD2_IN4N |
629                                         BYT_RT5640_OVCD_TH_2000UA |
630                                         BYT_RT5640_OVCD_SF_0P75 |
631                                         BYT_RT5640_SSP0_AIF1 |
632                                         BYT_RT5640_MCLK_EN |
633                                         BYT_RT5640_USE_AMCR0F28),
634         },
635         {
636                 .matches = {
637                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
638                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
639                 },
640                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
641                                         BYT_RT5640_JD_SRC_JD2_IN4N |
642                                         BYT_RT5640_OVCD_TH_2000UA |
643                                         BYT_RT5640_OVCD_SF_0P75 |
644                                         BYT_RT5640_MCLK_EN),
645         },
646         {
647                 .matches = {
648                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
649                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TAF"),
650                 },
651                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
652                                         BYT_RT5640_JD_SRC_JD2_IN4N |
653                                         BYT_RT5640_OVCD_TH_2000UA |
654                                         BYT_RT5640_OVCD_SF_0P75 |
655                                         BYT_RT5640_MONO_SPEAKER |
656                                         BYT_RT5640_DIFF_MIC |
657                                         BYT_RT5640_SSP0_AIF2 |
658                                         BYT_RT5640_MCLK_EN),
659         },
660         {
661                 .matches = {
662                         DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
663                         DMI_MATCH(DMI_PRODUCT_NAME, "TF103C"),
664                 },
665                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
666                                         BYT_RT5640_JD_SRC_EXT_GPIO |
667                                         BYT_RT5640_OVCD_TH_2000UA |
668                                         BYT_RT5640_OVCD_SF_0P75 |
669                                         BYT_RT5640_SSP0_AIF1 |
670                                         BYT_RT5640_MCLK_EN |
671                                         BYT_RT5640_USE_AMCR0F28),
672         },
673         {       /* Chuwi Vi8 (CWI506) */
674                 .matches = {
675                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
676                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "i86"),
677                         /* The above are too generic, also match BIOS info */
678                         DMI_MATCH(DMI_BIOS_VERSION, "CHUWI.D86JLBNR"),
679                 },
680                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
681                                         BYT_RT5640_MONO_SPEAKER |
682                                         BYT_RT5640_SSP0_AIF1 |
683                                         BYT_RT5640_MCLK_EN),
684         },
685         {
686                 /* Chuwi Vi10 (CWI505) */
687                 .matches = {
688                         DMI_MATCH(DMI_BOARD_VENDOR, "Hampoo"),
689                         DMI_MATCH(DMI_BOARD_NAME, "BYT-PF02"),
690                         DMI_MATCH(DMI_SYS_VENDOR, "ilife"),
691                         DMI_MATCH(DMI_PRODUCT_NAME, "S165"),
692                 },
693                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
694                                         BYT_RT5640_JD_SRC_JD2_IN4N |
695                                         BYT_RT5640_OVCD_TH_2000UA |
696                                         BYT_RT5640_OVCD_SF_0P75 |
697                                         BYT_RT5640_DIFF_MIC |
698                                         BYT_RT5640_SSP0_AIF1 |
699                                         BYT_RT5640_MCLK_EN),
700         },
701         {
702                 /* Chuwi Hi8 (CWI509) */
703                 .matches = {
704                         DMI_MATCH(DMI_BOARD_VENDOR, "Hampoo"),
705                         DMI_MATCH(DMI_BOARD_NAME, "BYT-PA03C"),
706                         DMI_MATCH(DMI_SYS_VENDOR, "ilife"),
707                         DMI_MATCH(DMI_PRODUCT_NAME, "S806"),
708                 },
709                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
710                                         BYT_RT5640_JD_SRC_JD2_IN4N |
711                                         BYT_RT5640_OVCD_TH_2000UA |
712                                         BYT_RT5640_OVCD_SF_0P75 |
713                                         BYT_RT5640_MONO_SPEAKER |
714                                         BYT_RT5640_DIFF_MIC |
715                                         BYT_RT5640_SSP0_AIF1 |
716                                         BYT_RT5640_MCLK_EN),
717         },
718         {
719                 .matches = {
720                         DMI_MATCH(DMI_SYS_VENDOR, "Circuitco"),
721                         DMI_MATCH(DMI_PRODUCT_NAME, "Minnowboard Max B3 PLATFORM"),
722                 },
723                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP),
724         },
725         {       /* Connect Tablet 9 */
726                 .matches = {
727                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Connect"),
728                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Tablet 9"),
729                 },
730                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
731                                         BYT_RT5640_MONO_SPEAKER |
732                                         BYT_RT5640_SSP0_AIF1 |
733                                         BYT_RT5640_MCLK_EN),
734         },
735         {
736                 .matches = {
737                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
738                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Venue 8 Pro 5830"),
739                 },
740                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
741                                         BYT_RT5640_JD_SRC_JD2_IN4N |
742                                         BYT_RT5640_OVCD_TH_2000UA |
743                                         BYT_RT5640_OVCD_SF_0P75 |
744                                         BYT_RT5640_MONO_SPEAKER |
745                                         BYT_RT5640_MCLK_EN),
746         },
747         {       /* Estar Beauty HD MID 7316R */
748                 .matches = {
749                         DMI_MATCH(DMI_SYS_VENDOR, "Estar"),
750                         DMI_MATCH(DMI_PRODUCT_NAME, "eSTAR BEAUTY HD Intel Quad core"),
751                 },
752                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
753                                         BYT_RT5640_MONO_SPEAKER |
754                                         BYT_RT5640_SSP0_AIF1 |
755                                         BYT_RT5640_MCLK_EN),
756         },
757         {       /* Glavey TM800A550L */
758                 .matches = {
759                         DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
760                         DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
761                         /* Above strings are too generic, also match on BIOS version */
762                         DMI_MATCH(DMI_BIOS_VERSION, "ZY-8-BI-PX4S70VTR400-X423B-005-D"),
763                 },
764                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
765                                         BYT_RT5640_SSP0_AIF1 |
766                                         BYT_RT5640_MCLK_EN),
767         },
768         {
769                 .matches = {
770                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
771                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP ElitePad 1000 G2"),
772                 },
773                 .driver_data = (void *)(BYT_RT5640_DMIC2_MAP |
774                                         BYT_RT5640_MCLK_EN |
775                                         BYT_RT5640_LINEOUT |
776                                         BYT_RT5640_LINEOUT_AS_HP2 |
777                                         BYT_RT5640_HSMIC2_ON_IN1 |
778                                         BYT_RT5640_JD_HP_ELITEP_1000G2),
779         },
780         {       /* HP Pavilion x2 10-k0XX, 10-n0XX */
781                 .matches = {
782                         DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
783                         DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion x2 Detachable"),
784                 },
785                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
786                                         BYT_RT5640_JD_SRC_JD2_IN4N |
787                                         BYT_RT5640_OVCD_TH_1500UA |
788                                         BYT_RT5640_OVCD_SF_0P75 |
789                                         BYT_RT5640_SSP0_AIF1 |
790                                         BYT_RT5640_MCLK_EN),
791         },
792         {       /* HP Pavilion x2 10-p0XX */
793                 .matches = {
794                         DMI_MATCH(DMI_SYS_VENDOR, "HP"),
795                         DMI_MATCH(DMI_PRODUCT_NAME, "HP x2 Detachable 10-p0XX"),
796                 },
797                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
798                                         BYT_RT5640_JD_SRC_JD1_IN4P |
799                                         BYT_RT5640_OVCD_TH_2000UA |
800                                         BYT_RT5640_OVCD_SF_0P75 |
801                                         BYT_RT5640_MCLK_EN),
802         },
803         {       /* HP Pro Tablet 408 */
804                 .matches = {
805                         DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
806                         DMI_MATCH(DMI_PRODUCT_NAME, "HP Pro Tablet 408"),
807                 },
808                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
809                                         BYT_RT5640_JD_SRC_JD2_IN4N |
810                                         BYT_RT5640_OVCD_TH_1500UA |
811                                         BYT_RT5640_OVCD_SF_0P75 |
812                                         BYT_RT5640_SSP0_AIF1 |
813                                         BYT_RT5640_MCLK_EN),
814         },
815         {       /* HP Stream 7 */
816                 .matches = {
817                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
818                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Stream 7 Tablet"),
819                 },
820                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
821                                         BYT_RT5640_MONO_SPEAKER |
822                                         BYT_RT5640_JD_NOT_INV |
823                                         BYT_RT5640_SSP0_AIF1 |
824                                         BYT_RT5640_MCLK_EN),
825         },
826         {       /* HP Stream 8 */
827                 .matches = {
828                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
829                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Stream 8 Tablet"),
830                 },
831                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
832                                         BYT_RT5640_JD_NOT_INV |
833                                         BYT_RT5640_SSP0_AIF1 |
834                                         BYT_RT5640_MCLK_EN),
835         },
836         {       /* I.T.Works TW891 */
837                 .matches = {
838                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
839                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TW891"),
840                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "To be filled by O.E.M."),
841                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "TW891"),
842                 },
843                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
844                                         BYT_RT5640_MONO_SPEAKER |
845                                         BYT_RT5640_SSP0_AIF1 |
846                                         BYT_RT5640_MCLK_EN),
847         },
848         {       /* Lamina I8270 / T701BR.SE */
849                 .matches = {
850                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Lamina"),
851                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "T701BR.SE"),
852                 },
853                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
854                                         BYT_RT5640_MONO_SPEAKER |
855                                         BYT_RT5640_JD_NOT_INV |
856                                         BYT_RT5640_SSP0_AIF1 |
857                                         BYT_RT5640_MCLK_EN),
858         },
859         {       /* Lenovo Miix 2 8 */
860                 .matches = {
861                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
862                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "20326"),
863                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Hiking"),
864                 },
865                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
866                                         BYT_RT5640_JD_SRC_JD2_IN4N |
867                                         BYT_RT5640_OVCD_TH_2000UA |
868                                         BYT_RT5640_OVCD_SF_0P75 |
869                                         BYT_RT5640_MONO_SPEAKER |
870                                         BYT_RT5640_MCLK_EN),
871         },
872         {       /* Lenovo Miix 3-830 */
873                 .matches = {
874                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
875                         DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 3-830"),
876                 },
877                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
878                                         BYT_RT5640_JD_SRC_JD2_IN4N |
879                                         BYT_RT5640_OVCD_TH_2000UA |
880                                         BYT_RT5640_OVCD_SF_0P75 |
881                                         BYT_RT5640_MONO_SPEAKER |
882                                         BYT_RT5640_DIFF_MIC |
883                                         BYT_RT5640_SSP0_AIF1 |
884                                         BYT_RT5640_MCLK_EN),
885         },
886         {       /* Linx Linx7 tablet */
887                 .matches = {
888                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LINX"),
889                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LINX7"),
890                 },
891                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
892                                         BYT_RT5640_MONO_SPEAKER |
893                                         BYT_RT5640_JD_NOT_INV |
894                                         BYT_RT5640_SSP0_AIF1 |
895                                         BYT_RT5640_MCLK_EN),
896         },
897         {
898                 /* Medion Lifetab S10346 */
899                 .matches = {
900                         DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
901                         DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
902                         /* Above strings are much too generic, also match on BIOS date */
903                         DMI_MATCH(DMI_BIOS_DATE, "10/22/2015"),
904                 },
905                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
906                                         BYT_RT5640_SSP0_AIF1 |
907                                         BYT_RT5640_MCLK_EN),
908         },
909         {       /* Mele PCG03 Mini PC */
910                 .matches = {
911                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Mini PC"),
912                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Mini PC"),
913                 },
914                 .driver_data = (void *)(BYT_RT5640_NO_INTERNAL_MIC_MAP |
915                                         BYT_RT5640_NO_SPEAKERS |
916                                         BYT_RT5640_SSP0_AIF1),
917         },
918         {       /* MPMAN Converter 9, similar hw as the I.T.Works TW891 2-in-1 */
919                 .matches = {
920                         DMI_MATCH(DMI_SYS_VENDOR, "MPMAN"),
921                         DMI_MATCH(DMI_PRODUCT_NAME, "Converter9"),
922                 },
923                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
924                                         BYT_RT5640_MONO_SPEAKER |
925                                         BYT_RT5640_SSP0_AIF1 |
926                                         BYT_RT5640_MCLK_EN),
927         },
928         {
929                 /* MPMAN MPWIN895CL */
930                 .matches = {
931                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "MPMAN"),
932                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "MPWIN8900CL"),
933                 },
934                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
935                                         BYT_RT5640_MONO_SPEAKER |
936                                         BYT_RT5640_SSP0_AIF1 |
937                                         BYT_RT5640_MCLK_EN),
938         },
939         {       /* MSI S100 tablet */
940                 .matches = {
941                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Micro-Star International Co., Ltd."),
942                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "S100"),
943                 },
944                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
945                                         BYT_RT5640_JD_SRC_JD2_IN4N |
946                                         BYT_RT5640_OVCD_TH_2000UA |
947                                         BYT_RT5640_OVCD_SF_0P75 |
948                                         BYT_RT5640_MONO_SPEAKER |
949                                         BYT_RT5640_DIFF_MIC |
950                                         BYT_RT5640_MCLK_EN),
951         },
952         {       /* Nuvison/TMax TM800W560 */
953                 .matches = {
954                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "TMAX"),
955                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TM800W560L"),
956                 },
957                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
958                                         BYT_RT5640_JD_SRC_JD2_IN4N |
959                                         BYT_RT5640_OVCD_TH_2000UA |
960                                         BYT_RT5640_OVCD_SF_0P75 |
961                                         BYT_RT5640_JD_NOT_INV |
962                                         BYT_RT5640_DIFF_MIC |
963                                         BYT_RT5640_SSP0_AIF1 |
964                                         BYT_RT5640_MCLK_EN),
965         },
966         {       /* Onda v975w */
967                 .matches = {
968                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
969                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
970                         /* The above are too generic, also match BIOS info */
971                         DMI_EXACT_MATCH(DMI_BIOS_VERSION, "5.6.5"),
972                         DMI_EXACT_MATCH(DMI_BIOS_DATE, "07/25/2014"),
973                 },
974                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
975                                         BYT_RT5640_JD_SRC_JD2_IN4N |
976                                         BYT_RT5640_OVCD_TH_2000UA |
977                                         BYT_RT5640_OVCD_SF_0P75 |
978                                         BYT_RT5640_DIFF_MIC |
979                                         BYT_RT5640_MCLK_EN),
980         },
981         {       /* Pipo W4 */
982                 .matches = {
983                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
984                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
985                         /* The above are too generic, also match BIOS info */
986                         DMI_MATCH(DMI_BIOS_VERSION, "V8L_WIN32_CHIPHD"),
987                 },
988                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
989                                         BYT_RT5640_MONO_SPEAKER |
990                                         BYT_RT5640_SSP0_AIF1 |
991                                         BYT_RT5640_MCLK_EN),
992         },
993         {       /* Point of View Mobii TAB-P800W (V2.0) */
994                 .matches = {
995                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
996                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
997                         /* The above are too generic, also match BIOS info */
998                         DMI_EXACT_MATCH(DMI_BIOS_VERSION, "3BAIR1014"),
999                         DMI_EXACT_MATCH(DMI_BIOS_DATE, "10/24/2014"),
1000                 },
1001                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
1002                                         BYT_RT5640_JD_SRC_JD2_IN4N |
1003                                         BYT_RT5640_OVCD_TH_2000UA |
1004                                         BYT_RT5640_OVCD_SF_0P75 |
1005                                         BYT_RT5640_MONO_SPEAKER |
1006                                         BYT_RT5640_DIFF_MIC |
1007                                         BYT_RT5640_SSP0_AIF2 |
1008                                         BYT_RT5640_MCLK_EN),
1009         },
1010         {       /* Point of View Mobii TAB-P800W (V2.1) */
1011                 .matches = {
1012                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
1013                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
1014                         /* The above are too generic, also match BIOS info */
1015                         DMI_EXACT_MATCH(DMI_BIOS_VERSION, "3BAIR1013"),
1016                         DMI_EXACT_MATCH(DMI_BIOS_DATE, "08/22/2014"),
1017                 },
1018                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
1019                                         BYT_RT5640_JD_SRC_JD2_IN4N |
1020                                         BYT_RT5640_OVCD_TH_2000UA |
1021                                         BYT_RT5640_OVCD_SF_0P75 |
1022                                         BYT_RT5640_MONO_SPEAKER |
1023                                         BYT_RT5640_DIFF_MIC |
1024                                         BYT_RT5640_SSP0_AIF2 |
1025                                         BYT_RT5640_MCLK_EN),
1026         },
1027         {       /* Point of View Mobii TAB-P1005W-232 (V2.0) */
1028                 .matches = {
1029                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "POV"),
1030                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "I102A"),
1031                 },
1032                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
1033                                         BYT_RT5640_JD_SRC_JD2_IN4N |
1034                                         BYT_RT5640_OVCD_TH_2000UA |
1035                                         BYT_RT5640_OVCD_SF_0P75 |
1036                                         BYT_RT5640_DIFF_MIC |
1037                                         BYT_RT5640_SSP0_AIF1 |
1038                                         BYT_RT5640_MCLK_EN),
1039         },
1040         {
1041                 /* Prowise PT301 */
1042                 .matches = {
1043                         DMI_MATCH(DMI_SYS_VENDOR, "Prowise"),
1044                         DMI_MATCH(DMI_PRODUCT_NAME, "PT301"),
1045                 },
1046                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
1047                                         BYT_RT5640_JD_SRC_JD2_IN4N |
1048                                         BYT_RT5640_OVCD_TH_2000UA |
1049                                         BYT_RT5640_OVCD_SF_0P75 |
1050                                         BYT_RT5640_DIFF_MIC |
1051                                         BYT_RT5640_SSP0_AIF1 |
1052                                         BYT_RT5640_MCLK_EN),
1053         },
1054         {
1055                 /* Teclast X89 */
1056                 .matches = {
1057                         DMI_MATCH(DMI_BOARD_VENDOR, "TECLAST"),
1058                         DMI_MATCH(DMI_BOARD_NAME, "tPAD"),
1059                 },
1060                 .driver_data = (void *)(BYT_RT5640_IN3_MAP |
1061                                         BYT_RT5640_JD_SRC_JD1_IN4P |
1062                                         BYT_RT5640_OVCD_TH_2000UA |
1063                                         BYT_RT5640_OVCD_SF_1P0 |
1064                                         BYT_RT5640_SSP0_AIF1 |
1065                                         BYT_RT5640_MCLK_EN),
1066         },
1067         {       /* Toshiba Satellite Click Mini L9W-B */
1068                 .matches = {
1069                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1070                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "SATELLITE Click Mini L9W-B"),
1071                 },
1072                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
1073                                         BYT_RT5640_JD_SRC_JD2_IN4N |
1074                                         BYT_RT5640_OVCD_TH_1500UA |
1075                                         BYT_RT5640_OVCD_SF_0P75 |
1076                                         BYT_RT5640_SSP0_AIF1 |
1077                                         BYT_RT5640_MCLK_EN),
1078         },
1079         {       /* Toshiba Encore WT8-A */
1080                 .matches = {
1081                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1082                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TOSHIBA WT8-A"),
1083                 },
1084                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
1085                                         BYT_RT5640_JD_SRC_JD2_IN4N |
1086                                         BYT_RT5640_OVCD_TH_2000UA |
1087                                         BYT_RT5640_OVCD_SF_0P75 |
1088                                         BYT_RT5640_JD_NOT_INV |
1089                                         BYT_RT5640_MCLK_EN),
1090         },
1091         {       /* Toshiba Encore WT10-A */
1092                 .matches = {
1093                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
1094                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TOSHIBA WT10-A-103"),
1095                 },
1096                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
1097                                         BYT_RT5640_JD_SRC_JD1_IN4P |
1098                                         BYT_RT5640_OVCD_TH_2000UA |
1099                                         BYT_RT5640_OVCD_SF_0P75 |
1100                                         BYT_RT5640_SSP0_AIF2 |
1101                                         BYT_RT5640_MCLK_EN),
1102         },
1103         {       /* Voyo Winpad A15 */
1104                 .matches = {
1105                         DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
1106                         DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
1107                         /* Above strings are too generic, also match on BIOS date */
1108                         DMI_MATCH(DMI_BIOS_DATE, "11/20/2014"),
1109                 },
1110                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
1111                                         BYT_RT5640_JD_SRC_JD2_IN4N |
1112                                         BYT_RT5640_OVCD_TH_2000UA |
1113                                         BYT_RT5640_OVCD_SF_0P75 |
1114                                         BYT_RT5640_DIFF_MIC |
1115                                         BYT_RT5640_MCLK_EN),
1116         },
1117         {       /* Catch-all for generic Insyde tablets, must be last */
1118                 .matches = {
1119                         DMI_MATCH(DMI_SYS_VENDOR, "Insyde"),
1120                 },
1121                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
1122                                         BYT_RT5640_MCLK_EN |
1123                                         BYT_RT5640_SSP0_AIF1),
1124
1125         },
1126         {}
1127 };
1128
1129 /*
1130  * Note this MUST be called before snd_soc_register_card(), so that the props
1131  * are in place before the codec component driver's probe function parses them.
1132  */
1133 static int byt_rt5640_add_codec_device_props(struct device *i2c_dev,
1134                                              struct byt_rt5640_private *priv)
1135 {
1136         struct property_entry props[MAX_NO_PROPS] = {};
1137         struct fwnode_handle *fwnode;
1138         int cnt = 0;
1139         int ret;
1140
1141         switch (BYT_RT5640_MAP(byt_rt5640_quirk)) {
1142         case BYT_RT5640_DMIC1_MAP:
1143                 props[cnt++] = PROPERTY_ENTRY_U32("realtek,dmic1-data-pin",
1144                                                   RT5640_DMIC1_DATA_PIN_IN1P);
1145                 break;
1146         case BYT_RT5640_DMIC2_MAP:
1147                 props[cnt++] = PROPERTY_ENTRY_U32("realtek,dmic2-data-pin",
1148                                                   RT5640_DMIC2_DATA_PIN_IN1N);
1149                 break;
1150         case BYT_RT5640_IN1_MAP:
1151                 if (byt_rt5640_quirk & BYT_RT5640_DIFF_MIC)
1152                         props[cnt++] =
1153                                 PROPERTY_ENTRY_BOOL("realtek,in1-differential");
1154                 break;
1155         case BYT_RT5640_IN3_MAP:
1156                 if (byt_rt5640_quirk & BYT_RT5640_DIFF_MIC)
1157                         props[cnt++] =
1158                                 PROPERTY_ENTRY_BOOL("realtek,in3-differential");
1159                 break;
1160         }
1161
1162         if (BYT_RT5640_JDSRC(byt_rt5640_quirk)) {
1163                 if (BYT_RT5640_JDSRC(byt_rt5640_quirk) != RT5640_JD_SRC_EXT_GPIO) {
1164                         props[cnt++] = PROPERTY_ENTRY_U32(
1165                                             "realtek,jack-detect-source",
1166                                             BYT_RT5640_JDSRC(byt_rt5640_quirk));
1167                 }
1168
1169                 props[cnt++] = PROPERTY_ENTRY_U32(
1170                                     "realtek,over-current-threshold-microamp",
1171                                     BYT_RT5640_OVCD_TH(byt_rt5640_quirk) * 100);
1172
1173                 props[cnt++] = PROPERTY_ENTRY_U32(
1174                                     "realtek,over-current-scale-factor",
1175                                     BYT_RT5640_OVCD_SF(byt_rt5640_quirk));
1176         }
1177
1178         if (byt_rt5640_quirk & BYT_RT5640_JD_NOT_INV)
1179                 props[cnt++] = PROPERTY_ENTRY_BOOL("realtek,jack-detect-not-inverted");
1180
1181         fwnode = fwnode_create_software_node(props, NULL);
1182         if (IS_ERR(fwnode)) {
1183                 /* put_device() is handled in caller */
1184                 return PTR_ERR(fwnode);
1185         }
1186
1187         ret = device_add_software_node(i2c_dev, to_software_node(fwnode));
1188
1189         fwnode_handle_put(fwnode);
1190
1191         return ret;
1192 }
1193
1194 /* Some Android devs specify IRQs/GPIOS in a special AMCR0F28 ACPI device */
1195 static const struct acpi_gpio_params amcr0f28_jd_gpio = { 1, 0, false };
1196
1197 static const struct acpi_gpio_mapping amcr0f28_gpios[] = {
1198         { "rt5640-jd-gpios", &amcr0f28_jd_gpio, 1 },
1199         { }
1200 };
1201
1202 static int byt_rt5640_get_amcr0f28_settings(struct snd_soc_card *card)
1203 {
1204         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
1205         struct rt5640_set_jack_data *data = &priv->jack_data;
1206         struct acpi_device *adev;
1207         int ret = 0;
1208
1209         adev = acpi_dev_get_first_match_dev("AMCR0F28", "1", -1);
1210         if (!adev) {
1211                 dev_err(card->dev, "error cannot find AMCR0F28 adev\n");
1212                 return -ENOENT;
1213         }
1214
1215         data->codec_irq_override = acpi_dev_gpio_irq_get(adev, 0);
1216         if (data->codec_irq_override < 0) {
1217                 ret = data->codec_irq_override;
1218                 dev_err(card->dev, "error %d getting codec IRQ\n", ret);
1219                 goto put_adev;
1220         }
1221
1222         if (BYT_RT5640_JDSRC(byt_rt5640_quirk) == RT5640_JD_SRC_EXT_GPIO) {
1223                 acpi_dev_add_driver_gpios(adev, amcr0f28_gpios);
1224                 data->jd_gpio = devm_fwnode_gpiod_get(card->dev, acpi_fwnode_handle(adev),
1225                                                       "rt5640-jd", GPIOD_IN, "rt5640-jd");
1226                 acpi_dev_remove_driver_gpios(adev);
1227
1228                 if (IS_ERR(data->jd_gpio)) {
1229                         ret = PTR_ERR(data->jd_gpio);
1230                         dev_err(card->dev, "error %d getting jd GPIO\n", ret);
1231                 }
1232         }
1233
1234 put_adev:
1235         acpi_dev_put(adev);
1236         return ret;
1237 }
1238
1239 static int byt_rt5640_init(struct snd_soc_pcm_runtime *runtime)
1240 {
1241         struct snd_soc_card *card = runtime->card;
1242         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
1243         struct rt5640_set_jack_data *jack_data = &priv->jack_data;
1244         struct snd_soc_component *component = asoc_rtd_to_codec(runtime, 0)->component;
1245         const struct snd_soc_dapm_route *custom_map = NULL;
1246         int num_routes = 0;
1247         int ret;
1248
1249         card->dapm.idle_bias_off = true;
1250         jack_data->use_platform_clock = true;
1251
1252         /* Start with RC clk for jack-detect (we disable MCLK below) */
1253         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN)
1254                 snd_soc_component_update_bits(component, RT5640_GLB_CLK,
1255                         RT5640_SCLK_SRC_MASK, RT5640_SCLK_SRC_RCCLK);
1256
1257         rt5640_sel_asrc_clk_src(component,
1258                                 RT5640_DA_STEREO_FILTER |
1259                                 RT5640_DA_MONO_L_FILTER |
1260                                 RT5640_DA_MONO_R_FILTER |
1261                                 RT5640_AD_STEREO_FILTER |
1262                                 RT5640_AD_MONO_L_FILTER |
1263                                 RT5640_AD_MONO_R_FILTER,
1264                                 RT5640_CLK_SEL_ASRC);
1265
1266         ret = snd_soc_add_card_controls(card, byt_rt5640_controls,
1267                                         ARRAY_SIZE(byt_rt5640_controls));
1268         if (ret) {
1269                 dev_err(card->dev, "unable to add card controls\n");
1270                 return ret;
1271         }
1272
1273         switch (BYT_RT5640_MAP(byt_rt5640_quirk)) {
1274         case BYT_RT5640_IN1_MAP:
1275                 custom_map = byt_rt5640_intmic_in1_map;
1276                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_in1_map);
1277                 break;
1278         case BYT_RT5640_IN3_MAP:
1279                 custom_map = byt_rt5640_intmic_in3_map;
1280                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_in3_map);
1281                 break;
1282         case BYT_RT5640_DMIC1_MAP:
1283                 custom_map = byt_rt5640_intmic_dmic1_map;
1284                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_dmic1_map);
1285                 break;
1286         case BYT_RT5640_DMIC2_MAP:
1287                 custom_map = byt_rt5640_intmic_dmic2_map;
1288                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_dmic2_map);
1289                 break;
1290         }
1291
1292         ret = snd_soc_dapm_add_routes(&card->dapm, custom_map, num_routes);
1293         if (ret)
1294                 return ret;
1295
1296         if (byt_rt5640_quirk & BYT_RT5640_HSMIC2_ON_IN1) {
1297                 ret = snd_soc_dapm_add_routes(&card->dapm,
1298                                         byt_rt5640_hsmic2_in1_map,
1299                                         ARRAY_SIZE(byt_rt5640_hsmic2_in1_map));
1300                 if (ret)
1301                         return ret;
1302         }
1303
1304         if (byt_rt5640_quirk & BYT_RT5640_SSP2_AIF2) {
1305                 ret = snd_soc_dapm_add_routes(&card->dapm,
1306                                         byt_rt5640_ssp2_aif2_map,
1307                                         ARRAY_SIZE(byt_rt5640_ssp2_aif2_map));
1308         } else if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) {
1309                 ret = snd_soc_dapm_add_routes(&card->dapm,
1310                                         byt_rt5640_ssp0_aif1_map,
1311                                         ARRAY_SIZE(byt_rt5640_ssp0_aif1_map));
1312         } else if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2) {
1313                 ret = snd_soc_dapm_add_routes(&card->dapm,
1314                                         byt_rt5640_ssp0_aif2_map,
1315                                         ARRAY_SIZE(byt_rt5640_ssp0_aif2_map));
1316         } else {
1317                 ret = snd_soc_dapm_add_routes(&card->dapm,
1318                                         byt_rt5640_ssp2_aif1_map,
1319                                         ARRAY_SIZE(byt_rt5640_ssp2_aif1_map));
1320         }
1321         if (ret)
1322                 return ret;
1323
1324         if (byt_rt5640_quirk & BYT_RT5640_MONO_SPEAKER) {
1325                 ret = snd_soc_dapm_add_routes(&card->dapm,
1326                                         byt_rt5640_mono_spk_map,
1327                                         ARRAY_SIZE(byt_rt5640_mono_spk_map));
1328         } else if (!(byt_rt5640_quirk & BYT_RT5640_NO_SPEAKERS)) {
1329                 ret = snd_soc_dapm_add_routes(&card->dapm,
1330                                         byt_rt5640_stereo_spk_map,
1331                                         ARRAY_SIZE(byt_rt5640_stereo_spk_map));
1332         }
1333         if (ret)
1334                 return ret;
1335
1336         if (byt_rt5640_quirk & BYT_RT5640_LINEOUT) {
1337                 ret = snd_soc_dapm_add_routes(&card->dapm,
1338                                         byt_rt5640_lineout_map,
1339                                         ARRAY_SIZE(byt_rt5640_lineout_map));
1340                 if (ret)
1341                         return ret;
1342         }
1343
1344         /*
1345          * The firmware might enable the clock at boot (this information
1346          * may or may not be reflected in the enable clock register).
1347          * To change the rate we must disable the clock first to cover
1348          * these cases. Due to common clock framework restrictions that
1349          * do not allow to disable a clock that has not been enabled,
1350          * we need to enable the clock first.
1351          */
1352         ret = clk_prepare_enable(priv->mclk);
1353         if (!ret)
1354                 clk_disable_unprepare(priv->mclk);
1355
1356         if (byt_rt5640_quirk & BYT_RT5640_MCLK_25MHZ)
1357                 ret = clk_set_rate(priv->mclk, 25000000);
1358         else
1359                 ret = clk_set_rate(priv->mclk, 19200000);
1360         if (ret) {
1361                 dev_err(card->dev, "unable to set MCLK rate\n");
1362                 return ret;
1363         }
1364
1365         if (BYT_RT5640_JDSRC(byt_rt5640_quirk)) {
1366                 ret = snd_soc_card_jack_new_pins(card, "Headset",
1367                                                  SND_JACK_HEADSET | SND_JACK_BTN_0,
1368                                                  &priv->jack, rt5640_pins,
1369                                                  ARRAY_SIZE(rt5640_pins));
1370                 if (ret) {
1371                         dev_err(card->dev, "Jack creation failed %d\n", ret);
1372                         return ret;
1373                 }
1374                 snd_jack_set_key(priv->jack.jack, SND_JACK_BTN_0,
1375                                  KEY_PLAYPAUSE);
1376
1377                 if (byt_rt5640_quirk & BYT_RT5640_USE_AMCR0F28) {
1378                         ret = byt_rt5640_get_amcr0f28_settings(card);
1379                         if (ret)
1380                                 return ret;
1381                 }
1382
1383                 snd_soc_component_set_jack(component, &priv->jack, &priv->jack_data);
1384         }
1385
1386         if (byt_rt5640_quirk & BYT_RT5640_JD_HP_ELITEP_1000G2) {
1387                 ret = snd_soc_card_jack_new_pins(card, "Headset",
1388                                                  SND_JACK_HEADSET,
1389                                                  &priv->jack, rt5640_pins,
1390                                                  ARRAY_SIZE(rt5640_pins));
1391                 if (ret)
1392                         return ret;
1393
1394                 ret = snd_soc_card_jack_new_pins(card, "Headset 2",
1395                                                  SND_JACK_HEADSET,
1396                                                  &priv->jack2, rt5640_pins2,
1397                                                  ARRAY_SIZE(rt5640_pins2));
1398                 if (ret)
1399                         return ret;
1400
1401                 rt5640_jack_gpio.data = priv;
1402                 rt5640_jack_gpio.gpiod_dev = priv->codec_dev;
1403                 rt5640_jack_gpio.jack_status_check = byt_rt5640_hp_elitepad_1000g2_jack1_check;
1404                 ret = snd_soc_jack_add_gpios(&priv->jack, 1, &rt5640_jack_gpio);
1405                 if (ret)
1406                         return ret;
1407
1408                 rt5640_set_ovcd_params(component);
1409                 rt5640_jack2_gpio.data = component;
1410                 rt5640_jack2_gpio.gpiod_dev = priv->codec_dev;
1411                 rt5640_jack2_gpio.jack_status_check = byt_rt5640_hp_elitepad_1000g2_jack2_check;
1412                 ret = snd_soc_jack_add_gpios(&priv->jack2, 1, &rt5640_jack2_gpio);
1413                 if (ret) {
1414                         snd_soc_jack_free_gpios(&priv->jack, 1, &rt5640_jack_gpio);
1415                         return ret;
1416                 }
1417         }
1418
1419         return 0;
1420 }
1421
1422 static void byt_rt5640_exit(struct snd_soc_pcm_runtime *runtime)
1423 {
1424         struct snd_soc_card *card = runtime->card;
1425         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
1426
1427         if (byt_rt5640_quirk & BYT_RT5640_JD_HP_ELITEP_1000G2) {
1428                 snd_soc_jack_free_gpios(&priv->jack2, 1, &rt5640_jack2_gpio);
1429                 snd_soc_jack_free_gpios(&priv->jack, 1, &rt5640_jack_gpio);
1430         }
1431 }
1432
1433 static int byt_rt5640_codec_fixup(struct snd_soc_pcm_runtime *rtd,
1434                             struct snd_pcm_hw_params *params)
1435 {
1436         struct snd_interval *rate = hw_param_interval(params,
1437                         SNDRV_PCM_HW_PARAM_RATE);
1438         struct snd_interval *channels = hw_param_interval(params,
1439                                                 SNDRV_PCM_HW_PARAM_CHANNELS);
1440         int ret, bits;
1441
1442         /* The DSP will convert the FE rate to 48k, stereo */
1443         rate->min = rate->max = 48000;
1444         channels->min = channels->max = 2;
1445
1446         if ((byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) ||
1447             (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2)) {
1448                 /* set SSP0 to 16-bit */
1449                 params_set_format(params, SNDRV_PCM_FORMAT_S16_LE);
1450                 bits = 16;
1451         } else {
1452                 /* set SSP2 to 24-bit */
1453                 params_set_format(params, SNDRV_PCM_FORMAT_S24_LE);
1454                 bits = 24;
1455         }
1456
1457         /*
1458          * Default mode for SSP configuration is TDM 4 slot, override config
1459          * with explicit setting to I2S 2ch. The word length is set with
1460          * dai_set_tdm_slot() since there is no other API exposed
1461          */
1462         ret = snd_soc_dai_set_fmt(asoc_rtd_to_cpu(rtd, 0),
1463                                   SND_SOC_DAIFMT_I2S     |
1464                                   SND_SOC_DAIFMT_NB_NF   |
1465                                   SND_SOC_DAIFMT_BP_FP);
1466         if (ret < 0) {
1467                 dev_err(rtd->dev, "can't set format to I2S, err %d\n", ret);
1468                 return ret;
1469         }
1470
1471         ret = snd_soc_dai_set_tdm_slot(asoc_rtd_to_cpu(rtd, 0), 0x3, 0x3, 2, bits);
1472         if (ret < 0) {
1473                 dev_err(rtd->dev, "can't set I2S config, err %d\n", ret);
1474                 return ret;
1475         }
1476
1477         return 0;
1478 }
1479
1480 static int byt_rt5640_aif1_startup(struct snd_pcm_substream *substream)
1481 {
1482         return snd_pcm_hw_constraint_single(substream->runtime,
1483                         SNDRV_PCM_HW_PARAM_RATE, 48000);
1484 }
1485
1486 static const struct snd_soc_ops byt_rt5640_aif1_ops = {
1487         .startup = byt_rt5640_aif1_startup,
1488 };
1489
1490 static const struct snd_soc_ops byt_rt5640_be_ssp2_ops = {
1491         .hw_params = byt_rt5640_aif1_hw_params,
1492 };
1493
1494 SND_SOC_DAILINK_DEF(dummy,
1495         DAILINK_COMP_ARRAY(COMP_DUMMY()));
1496
1497 SND_SOC_DAILINK_DEF(media,
1498         DAILINK_COMP_ARRAY(COMP_CPU("media-cpu-dai")));
1499
1500 SND_SOC_DAILINK_DEF(deepbuffer,
1501         DAILINK_COMP_ARRAY(COMP_CPU("deepbuffer-cpu-dai")));
1502
1503 SND_SOC_DAILINK_DEF(ssp2_port,
1504         /* overwritten for ssp0 routing */
1505         DAILINK_COMP_ARRAY(COMP_CPU("ssp2-port")));
1506 SND_SOC_DAILINK_DEF(ssp2_codec,
1507         DAILINK_COMP_ARRAY(COMP_CODEC(
1508         /* overwritten with HID */ "i2c-10EC5640:00",
1509         /* changed w/ quirk */  "rt5640-aif1")));
1510
1511 SND_SOC_DAILINK_DEF(platform,
1512         DAILINK_COMP_ARRAY(COMP_PLATFORM("sst-mfld-platform")));
1513
1514 static struct snd_soc_dai_link byt_rt5640_dais[] = {
1515         [MERR_DPCM_AUDIO] = {
1516                 .name = "Baytrail Audio Port",
1517                 .stream_name = "Baytrail Audio",
1518                 .nonatomic = true,
1519                 .dynamic = 1,
1520                 .dpcm_playback = 1,
1521                 .dpcm_capture = 1,
1522                 .ops = &byt_rt5640_aif1_ops,
1523                 SND_SOC_DAILINK_REG(media, dummy, platform),
1524         },
1525         [MERR_DPCM_DEEP_BUFFER] = {
1526                 .name = "Deep-Buffer Audio Port",
1527                 .stream_name = "Deep-Buffer Audio",
1528                 .nonatomic = true,
1529                 .dynamic = 1,
1530                 .dpcm_playback = 1,
1531                 .ops = &byt_rt5640_aif1_ops,
1532                 SND_SOC_DAILINK_REG(deepbuffer, dummy, platform),
1533         },
1534                 /* back ends */
1535         {
1536                 .name = "SSP2-Codec",
1537                 .id = 0,
1538                 .no_pcm = 1,
1539                 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF
1540                                                 | SND_SOC_DAIFMT_CBC_CFC,
1541                 .be_hw_params_fixup = byt_rt5640_codec_fixup,
1542                 .dpcm_playback = 1,
1543                 .dpcm_capture = 1,
1544                 .init = byt_rt5640_init,
1545                 .exit = byt_rt5640_exit,
1546                 .ops = &byt_rt5640_be_ssp2_ops,
1547                 SND_SOC_DAILINK_REG(ssp2_port, ssp2_codec, platform),
1548         },
1549 };
1550
1551 /* SoC card */
1552 static char byt_rt5640_codec_name[SND_ACPI_I2C_ID_LEN];
1553 #if !IS_ENABLED(CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES)
1554 static char byt_rt5640_long_name[40]; /* = "bytcr-rt5640-*-spk-*-mic" */
1555 #endif
1556 static char byt_rt5640_components[64]; /* = "cfg-spk:* cfg-mic:* ..." */
1557
1558 static int byt_rt5640_suspend(struct snd_soc_card *card)
1559 {
1560         struct snd_soc_component *component;
1561
1562         if (!BYT_RT5640_JDSRC(byt_rt5640_quirk))
1563                 return 0;
1564
1565         for_each_card_components(card, component) {
1566                 if (!strcmp(component->name, byt_rt5640_codec_name)) {
1567                         dev_dbg(component->dev, "disabling jack detect before suspend\n");
1568                         snd_soc_component_set_jack(component, NULL, NULL);
1569                         break;
1570                 }
1571         }
1572
1573         return 0;
1574 }
1575
1576 static int byt_rt5640_resume(struct snd_soc_card *card)
1577 {
1578         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
1579         struct snd_soc_component *component;
1580
1581         if (!BYT_RT5640_JDSRC(byt_rt5640_quirk))
1582                 return 0;
1583
1584         for_each_card_components(card, component) {
1585                 if (!strcmp(component->name, byt_rt5640_codec_name)) {
1586                         dev_dbg(component->dev, "re-enabling jack detect after resume\n");
1587                         snd_soc_component_set_jack(component, &priv->jack,
1588                                                    &priv->jack_data);
1589                         break;
1590                 }
1591         }
1592
1593         return 0;
1594 }
1595
1596 /* use space before codec name to simplify card ID, and simplify driver name */
1597 #define SOF_CARD_NAME "bytcht rt5640" /* card name will be 'sof-bytcht rt5640' */
1598 #define SOF_DRIVER_NAME "SOF"
1599
1600 #define CARD_NAME "bytcr-rt5640"
1601 #define DRIVER_NAME NULL /* card name will be used for driver name */
1602
1603 static struct snd_soc_card byt_rt5640_card = {
1604         .owner = THIS_MODULE,
1605         .dai_link = byt_rt5640_dais,
1606         .num_links = ARRAY_SIZE(byt_rt5640_dais),
1607         .dapm_widgets = byt_rt5640_widgets,
1608         .num_dapm_widgets = ARRAY_SIZE(byt_rt5640_widgets),
1609         .dapm_routes = byt_rt5640_audio_map,
1610         .num_dapm_routes = ARRAY_SIZE(byt_rt5640_audio_map),
1611         .fully_routed = true,
1612         .suspend_pre = byt_rt5640_suspend,
1613         .resume_post = byt_rt5640_resume,
1614 };
1615
1616 struct acpi_chan_package {   /* ACPICA seems to require 64 bit integers */
1617         u64 aif_value;       /* 1: AIF1, 2: AIF2 */
1618         u64 mclock_value;    /* usually 25MHz (0x17d7940), ignored */
1619 };
1620
1621 static int snd_byt_rt5640_mc_probe(struct platform_device *pdev)
1622 {
1623         struct device *dev = &pdev->dev;
1624         static const char * const map_name[] = { "dmic1", "dmic2", "in1", "in3", "none" };
1625         struct snd_soc_acpi_mach *mach = dev_get_platdata(dev);
1626         __maybe_unused const char *spk_type;
1627         const struct dmi_system_id *dmi_id;
1628         const char *headset2_string = "";
1629         const char *lineout_string = "";
1630         struct byt_rt5640_private *priv;
1631         const char *platform_name;
1632         struct acpi_device *adev;
1633         struct device *codec_dev;
1634         bool sof_parent;
1635         int ret_val = 0;
1636         int dai_index = 0;
1637         int i, cfg_spk;
1638         int aif;
1639
1640         is_bytcr = false;
1641         priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
1642         if (!priv)
1643                 return -ENOMEM;
1644
1645         /* register the soc card */
1646         byt_rt5640_card.dev = dev;
1647         snd_soc_card_set_drvdata(&byt_rt5640_card, priv);
1648
1649         /* fix index of codec dai */
1650         for (i = 0; i < ARRAY_SIZE(byt_rt5640_dais); i++) {
1651                 if (!strcmp(byt_rt5640_dais[i].codecs->name,
1652                             "i2c-10EC5640:00")) {
1653                         dai_index = i;
1654                         break;
1655                 }
1656         }
1657
1658         /* fixup codec name based on HID */
1659         adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
1660         if (adev) {
1661                 snprintf(byt_rt5640_codec_name, sizeof(byt_rt5640_codec_name),
1662                          "i2c-%s", acpi_dev_name(adev));
1663                 byt_rt5640_dais[dai_index].codecs->name = byt_rt5640_codec_name;
1664         } else {
1665                 dev_err(dev, "Error cannot find '%s' dev\n", mach->id);
1666                 return -ENXIO;
1667         }
1668
1669         codec_dev = acpi_get_first_physical_node(adev);
1670         acpi_dev_put(adev);
1671         if (!codec_dev)
1672                 return -EPROBE_DEFER;
1673         priv->codec_dev = get_device(codec_dev);
1674
1675         /*
1676          * swap SSP0 if bytcr is detected
1677          * (will be overridden if DMI quirk is detected)
1678          */
1679         if (soc_intel_is_byt()) {
1680                 if (mach->mach_params.acpi_ipc_irq_index == 0)
1681                         is_bytcr = true;
1682         }
1683
1684         if (is_bytcr) {
1685                 /*
1686                  * Baytrail CR platforms may have CHAN package in BIOS, try
1687                  * to find relevant routing quirk based as done on Windows
1688                  * platforms. We have to read the information directly from the
1689                  * BIOS, at this stage the card is not created and the links
1690                  * with the codec driver/pdata are non-existent
1691                  */
1692
1693                 struct acpi_chan_package chan_package = { 0 };
1694
1695                 /* format specified: 2 64-bit integers */
1696                 struct acpi_buffer format = {sizeof("NN"), "NN"};
1697                 struct acpi_buffer state = {0, NULL};
1698                 struct snd_soc_acpi_package_context pkg_ctx;
1699                 bool pkg_found = false;
1700
1701                 state.length = sizeof(chan_package);
1702                 state.pointer = &chan_package;
1703
1704                 pkg_ctx.name = "CHAN";
1705                 pkg_ctx.length = 2;
1706                 pkg_ctx.format = &format;
1707                 pkg_ctx.state = &state;
1708                 pkg_ctx.data_valid = false;
1709
1710                 pkg_found = snd_soc_acpi_find_package_from_hid(mach->id,
1711                                                                &pkg_ctx);
1712                 if (pkg_found) {
1713                         if (chan_package.aif_value == 1) {
1714                                 dev_info(dev, "BIOS Routing: AIF1 connected\n");
1715                                 byt_rt5640_quirk |= BYT_RT5640_SSP0_AIF1;
1716                         } else  if (chan_package.aif_value == 2) {
1717                                 dev_info(dev, "BIOS Routing: AIF2 connected\n");
1718                                 byt_rt5640_quirk |= BYT_RT5640_SSP0_AIF2;
1719                         } else {
1720                                 dev_info(dev, "BIOS Routing isn't valid, ignored\n");
1721                                 pkg_found = false;
1722                         }
1723                 }
1724
1725                 if (!pkg_found) {
1726                         /* no BIOS indications, assume SSP0-AIF2 connection */
1727                         byt_rt5640_quirk |= BYT_RT5640_SSP0_AIF2;
1728                 }
1729
1730                 /* change defaults for Baytrail-CR capture */
1731                 byt_rt5640_quirk |= BYTCR_INPUT_DEFAULTS;
1732         } else {
1733                 byt_rt5640_quirk |= BYT_RT5640_DMIC1_MAP |
1734                                     BYT_RT5640_JD_SRC_JD2_IN4N |
1735                                     BYT_RT5640_OVCD_TH_2000UA |
1736                                     BYT_RT5640_OVCD_SF_0P75;
1737         }
1738
1739         /* check quirks before creating card */
1740         dmi_id = dmi_first_match(byt_rt5640_quirk_table);
1741         if (dmi_id)
1742                 byt_rt5640_quirk = (unsigned long)dmi_id->driver_data;
1743         if (quirk_override != -1) {
1744                 dev_info(dev, "Overriding quirk 0x%lx => 0x%x\n",
1745                          byt_rt5640_quirk, quirk_override);
1746                 byt_rt5640_quirk = quirk_override;
1747         }
1748
1749         if (byt_rt5640_quirk & BYT_RT5640_JD_HP_ELITEP_1000G2) {
1750                 acpi_dev_add_driver_gpios(ACPI_COMPANION(priv->codec_dev),
1751                                           byt_rt5640_hp_elitepad_1000g2_gpios);
1752
1753                 priv->hsmic_detect = devm_fwnode_gpiod_get(dev, codec_dev->fwnode,
1754                                                            "headset-mic-detect", GPIOD_IN,
1755                                                            "headset-mic-detect");
1756                 if (IS_ERR(priv->hsmic_detect)) {
1757                         ret_val = dev_err_probe(dev, PTR_ERR(priv->hsmic_detect),
1758                                                 "getting hsmic-detect GPIO\n");
1759                         goto err_device;
1760                 }
1761         }
1762
1763         /* Must be called before register_card, also see declaration comment. */
1764         ret_val = byt_rt5640_add_codec_device_props(codec_dev, priv);
1765         if (ret_val)
1766                 goto err_remove_gpios;
1767
1768         log_quirks(dev);
1769
1770         if ((byt_rt5640_quirk & BYT_RT5640_SSP2_AIF2) ||
1771             (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2)) {
1772                 byt_rt5640_dais[dai_index].codecs->dai_name = "rt5640-aif2";
1773                 aif = 2;
1774         } else {
1775                 aif = 1;
1776         }
1777
1778         if ((byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) ||
1779             (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2))
1780                 byt_rt5640_dais[dai_index].cpus->dai_name = "ssp0-port";
1781
1782         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN) {
1783                 priv->mclk = devm_clk_get_optional(dev, "pmc_plt_clk_3");
1784                 if (IS_ERR(priv->mclk)) {
1785                         ret_val = dev_err_probe(dev, PTR_ERR(priv->mclk),
1786                                                 "Failed to get MCLK from pmc_plt_clk_3\n");
1787                         goto err;
1788                 }
1789                 /*
1790                  * Fall back to bit clock usage when clock is not
1791                  * available likely due to missing dependencies.
1792                  */
1793                 if (!priv->mclk)
1794                         byt_rt5640_quirk &= ~BYT_RT5640_MCLK_EN;
1795         }
1796
1797         if (byt_rt5640_quirk & BYT_RT5640_NO_SPEAKERS) {
1798                 cfg_spk = 0;
1799                 spk_type = "none";
1800         } else if (byt_rt5640_quirk & BYT_RT5640_MONO_SPEAKER) {
1801                 cfg_spk = 1;
1802                 spk_type = "mono";
1803         } else {
1804                 cfg_spk = 2;
1805                 spk_type = "stereo";
1806         }
1807
1808         if (byt_rt5640_quirk & BYT_RT5640_LINEOUT) {
1809                 if (byt_rt5640_quirk & BYT_RT5640_LINEOUT_AS_HP2)
1810                         lineout_string = " cfg-hp2:lineout";
1811                 else
1812                         lineout_string = " cfg-lineout:2";
1813         }
1814
1815         if (byt_rt5640_quirk & BYT_RT5640_HSMIC2_ON_IN1)
1816                 headset2_string = " cfg-hs2:in1";
1817
1818         snprintf(byt_rt5640_components, sizeof(byt_rt5640_components),
1819                  "cfg-spk:%d cfg-mic:%s aif:%d%s%s", cfg_spk,
1820                  map_name[BYT_RT5640_MAP(byt_rt5640_quirk)], aif,
1821                  lineout_string, headset2_string);
1822         byt_rt5640_card.components = byt_rt5640_components;
1823 #if !IS_ENABLED(CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES)
1824         snprintf(byt_rt5640_long_name, sizeof(byt_rt5640_long_name),
1825                  "bytcr-rt5640-%s-spk-%s-mic", spk_type,
1826                  map_name[BYT_RT5640_MAP(byt_rt5640_quirk)]);
1827         byt_rt5640_card.long_name = byt_rt5640_long_name;
1828 #endif
1829
1830         /* override platform name, if required */
1831         platform_name = mach->mach_params.platform;
1832
1833         ret_val = snd_soc_fixup_dai_links_platform_name(&byt_rt5640_card,
1834                                                         platform_name);
1835         if (ret_val)
1836                 goto err;
1837
1838         sof_parent = snd_soc_acpi_sof_parent(dev);
1839
1840         /* set card and driver name */
1841         if (sof_parent) {
1842                 byt_rt5640_card.name = SOF_CARD_NAME;
1843                 byt_rt5640_card.driver_name = SOF_DRIVER_NAME;
1844         } else {
1845                 byt_rt5640_card.name = CARD_NAME;
1846                 byt_rt5640_card.driver_name = DRIVER_NAME;
1847         }
1848
1849         /* set pm ops */
1850         if (sof_parent)
1851                 dev->driver->pm = &snd_soc_pm_ops;
1852
1853         ret_val = devm_snd_soc_register_card(dev, &byt_rt5640_card);
1854         if (ret_val) {
1855                 dev_err(dev, "devm_snd_soc_register_card failed %d\n", ret_val);
1856                 goto err;
1857         }
1858         platform_set_drvdata(pdev, &byt_rt5640_card);
1859         return ret_val;
1860
1861 err:
1862         device_remove_software_node(priv->codec_dev);
1863 err_remove_gpios:
1864         if (byt_rt5640_quirk & BYT_RT5640_JD_HP_ELITEP_1000G2)
1865                 acpi_dev_remove_driver_gpios(ACPI_COMPANION(priv->codec_dev));
1866 err_device:
1867         put_device(priv->codec_dev);
1868         return ret_val;
1869 }
1870
1871 static void snd_byt_rt5640_mc_remove(struct platform_device *pdev)
1872 {
1873         struct snd_soc_card *card = platform_get_drvdata(pdev);
1874         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
1875
1876         if (byt_rt5640_quirk & BYT_RT5640_JD_HP_ELITEP_1000G2)
1877                 acpi_dev_remove_driver_gpios(ACPI_COMPANION(priv->codec_dev));
1878
1879         device_remove_software_node(priv->codec_dev);
1880         put_device(priv->codec_dev);
1881 }
1882
1883 static struct platform_driver snd_byt_rt5640_mc_driver = {
1884         .driver = {
1885                 .name = "bytcr_rt5640",
1886         },
1887         .probe = snd_byt_rt5640_mc_probe,
1888         .remove_new = snd_byt_rt5640_mc_remove,
1889 };
1890
1891 module_platform_driver(snd_byt_rt5640_mc_driver);
1892
1893 MODULE_DESCRIPTION("ASoC Intel(R) Baytrail CR Machine driver");
1894 MODULE_AUTHOR("Subhransu S. Prusty <subhransu.s.prusty@intel.com>");
1895 MODULE_LICENSE("GPL v2");
1896 MODULE_ALIAS("platform:bytcr_rt5640");