ASoC: Intel: bytcr_rt5640: Update quirk for Teclast X89
[sfrench/cifs-2.6.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/input.h>
22 #include <linux/slab.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/jack.h>
27 #include <sound/soc-acpi.h>
28 #include <dt-bindings/sound/rt5640.h>
29 #include "../../codecs/rt5640.h"
30 #include "../atom/sst-atom-controls.h"
31 #include "../common/sst-dsp.h"
32 #include "../common/soc-intel-quirks.h"
33
34 enum {
35         BYT_RT5640_DMIC1_MAP,
36         BYT_RT5640_DMIC2_MAP,
37         BYT_RT5640_IN1_MAP,
38         BYT_RT5640_IN3_MAP,
39 };
40
41 enum {
42         BYT_RT5640_JD_SRC_GPIO1         = (RT5640_JD_SRC_GPIO1 << 4),
43         BYT_RT5640_JD_SRC_JD1_IN4P      = (RT5640_JD_SRC_JD1_IN4P << 4),
44         BYT_RT5640_JD_SRC_JD2_IN4N      = (RT5640_JD_SRC_JD2_IN4N << 4),
45         BYT_RT5640_JD_SRC_GPIO2         = (RT5640_JD_SRC_GPIO2 << 4),
46         BYT_RT5640_JD_SRC_GPIO3         = (RT5640_JD_SRC_GPIO3 << 4),
47         BYT_RT5640_JD_SRC_GPIO4         = (RT5640_JD_SRC_GPIO4 << 4),
48 };
49
50 enum {
51         BYT_RT5640_OVCD_TH_600UA        = (6 << 8),
52         BYT_RT5640_OVCD_TH_1500UA       = (15 << 8),
53         BYT_RT5640_OVCD_TH_2000UA       = (20 << 8),
54 };
55
56 enum {
57         BYT_RT5640_OVCD_SF_0P5          = (RT5640_OVCD_SF_0P5 << 13),
58         BYT_RT5640_OVCD_SF_0P75         = (RT5640_OVCD_SF_0P75 << 13),
59         BYT_RT5640_OVCD_SF_1P0          = (RT5640_OVCD_SF_1P0 << 13),
60         BYT_RT5640_OVCD_SF_1P5          = (RT5640_OVCD_SF_1P5 << 13),
61 };
62
63 #define BYT_RT5640_MAP(quirk)           ((quirk) &  GENMASK(3, 0))
64 #define BYT_RT5640_JDSRC(quirk)         (((quirk) & GENMASK(7, 4)) >> 4)
65 #define BYT_RT5640_OVCD_TH(quirk)       (((quirk) & GENMASK(12, 8)) >> 8)
66 #define BYT_RT5640_OVCD_SF(quirk)       (((quirk) & GENMASK(14, 13)) >> 13)
67 #define BYT_RT5640_JD_NOT_INV           BIT(16)
68 #define BYT_RT5640_MONO_SPEAKER         BIT(17)
69 #define BYT_RT5640_DIFF_MIC             BIT(18) /* default is single-ended */
70 #define BYT_RT5640_SSP2_AIF2            BIT(19) /* default is using AIF1  */
71 #define BYT_RT5640_SSP0_AIF1            BIT(20)
72 #define BYT_RT5640_SSP0_AIF2            BIT(21)
73 #define BYT_RT5640_MCLK_EN              BIT(22)
74 #define BYT_RT5640_MCLK_25MHZ           BIT(23)
75
76 #define BYTCR_INPUT_DEFAULTS                            \
77         (BYT_RT5640_IN3_MAP |                           \
78          BYT_RT5640_JD_SRC_JD1_IN4P |                   \
79          BYT_RT5640_OVCD_TH_2000UA |                    \
80          BYT_RT5640_OVCD_SF_0P75 |                      \
81          BYT_RT5640_DIFF_MIC)
82
83 /* in-diff or dmic-pin + jdsrc + ovcd-th + -sf + jd-inv + terminating entry */
84 #define MAX_NO_PROPS 6
85
86 struct byt_rt5640_private {
87         struct snd_soc_jack jack;
88         struct clk *mclk;
89 };
90 static bool is_bytcr;
91
92 static unsigned long byt_rt5640_quirk = BYT_RT5640_MCLK_EN;
93 static int quirk_override = -1;
94 module_param_named(quirk, quirk_override, int, 0444);
95 MODULE_PARM_DESC(quirk, "Board-specific quirk override");
96
97 static void log_quirks(struct device *dev)
98 {
99         int map;
100         bool has_mclk = false;
101         bool has_ssp0 = false;
102         bool has_ssp0_aif1 = false;
103         bool has_ssp0_aif2 = false;
104         bool has_ssp2_aif2 = false;
105
106         map = BYT_RT5640_MAP(byt_rt5640_quirk);
107         switch (map) {
108         case BYT_RT5640_DMIC1_MAP:
109                 dev_info(dev, "quirk DMIC1_MAP enabled\n");
110                 break;
111         case BYT_RT5640_DMIC2_MAP:
112                 dev_info(dev, "quirk DMIC2_MAP enabled\n");
113                 break;
114         case BYT_RT5640_IN1_MAP:
115                 dev_info(dev, "quirk IN1_MAP enabled\n");
116                 break;
117         case BYT_RT5640_IN3_MAP:
118                 dev_info(dev, "quirk IN3_MAP enabled\n");
119                 break;
120         default:
121                 dev_err(dev, "quirk map 0x%x is not supported, microphone input will not work\n", map);
122                 break;
123         }
124         if (BYT_RT5640_JDSRC(byt_rt5640_quirk)) {
125                 dev_info(dev, "quirk realtek,jack-detect-source %ld\n",
126                          BYT_RT5640_JDSRC(byt_rt5640_quirk));
127                 dev_info(dev, "quirk realtek,over-current-threshold-microamp %ld\n",
128                          BYT_RT5640_OVCD_TH(byt_rt5640_quirk) * 100);
129                 dev_info(dev, "quirk realtek,over-current-scale-factor %ld\n",
130                          BYT_RT5640_OVCD_SF(byt_rt5640_quirk));
131         }
132         if (byt_rt5640_quirk & BYT_RT5640_JD_NOT_INV)
133                 dev_info(dev, "quirk JD_NOT_INV enabled\n");
134         if (byt_rt5640_quirk & BYT_RT5640_MONO_SPEAKER)
135                 dev_info(dev, "quirk MONO_SPEAKER enabled\n");
136         if (byt_rt5640_quirk & BYT_RT5640_DIFF_MIC)
137                 dev_info(dev, "quirk DIFF_MIC enabled\n");
138         if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) {
139                 dev_info(dev, "quirk SSP0_AIF1 enabled\n");
140                 has_ssp0 = true;
141                 has_ssp0_aif1 = true;
142         }
143         if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2) {
144                 dev_info(dev, "quirk SSP0_AIF2 enabled\n");
145                 has_ssp0 = true;
146                 has_ssp0_aif2 = true;
147         }
148         if (byt_rt5640_quirk & BYT_RT5640_SSP2_AIF2) {
149                 dev_info(dev, "quirk SSP2_AIF2 enabled\n");
150                 has_ssp2_aif2 = true;
151         }
152         if (is_bytcr && !has_ssp0)
153                 dev_err(dev, "Invalid routing, bytcr detected but no SSP0-based quirk, audio cannot work with SSP2 on bytcr\n");
154         if (has_ssp0_aif1 && has_ssp0_aif2)
155                 dev_err(dev, "Invalid routing, SSP0 cannot be connected to both AIF1 and AIF2\n");
156         if (has_ssp0 && has_ssp2_aif2)
157                 dev_err(dev, "Invalid routing, cannot have both SSP0 and SSP2 connected to codec\n");
158
159         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN) {
160                 dev_info(dev, "quirk MCLK_EN enabled\n");
161                 has_mclk = true;
162         }
163         if (byt_rt5640_quirk & BYT_RT5640_MCLK_25MHZ) {
164                 if (has_mclk)
165                         dev_info(dev, "quirk MCLK_25MHZ enabled\n");
166                 else
167                         dev_err(dev, "quirk MCLK_25MHZ enabled but quirk MCLK not selected, will be ignored\n");
168         }
169 }
170
171 static int byt_rt5640_prepare_and_enable_pll1(struct snd_soc_dai *codec_dai,
172                                               int rate)
173 {
174         int ret;
175
176         /* Configure the PLL before selecting it */
177         if (!(byt_rt5640_quirk & BYT_RT5640_MCLK_EN)) {
178                 /* use bitclock as PLL input */
179                 if ((byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) ||
180                     (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2)) {
181                         /* 2x16 bit slots on SSP0 */
182                         ret = snd_soc_dai_set_pll(codec_dai, 0,
183                                                   RT5640_PLL1_S_BCLK1,
184                                                   rate * 32, rate * 512);
185                 } else {
186                         /* 2x15 bit slots on SSP2 */
187                         ret = snd_soc_dai_set_pll(codec_dai, 0,
188                                                   RT5640_PLL1_S_BCLK1,
189                                                   rate * 50, rate * 512);
190                 }
191         } else {
192                 if (byt_rt5640_quirk & BYT_RT5640_MCLK_25MHZ) {
193                         ret = snd_soc_dai_set_pll(codec_dai, 0,
194                                                   RT5640_PLL1_S_MCLK,
195                                                   25000000, rate * 512);
196                 } else {
197                         ret = snd_soc_dai_set_pll(codec_dai, 0,
198                                                   RT5640_PLL1_S_MCLK,
199                                                   19200000, rate * 512);
200                 }
201         }
202
203         if (ret < 0) {
204                 dev_err(codec_dai->component->dev, "can't set pll: %d\n", ret);
205                 return ret;
206         }
207
208         ret = snd_soc_dai_set_sysclk(codec_dai, RT5640_SCLK_S_PLL1,
209                                      rate * 512, SND_SOC_CLOCK_IN);
210         if (ret < 0) {
211                 dev_err(codec_dai->component->dev, "can't set clock %d\n", ret);
212                 return ret;
213         }
214
215         return 0;
216 }
217
218 #define BYT_CODEC_DAI1  "rt5640-aif1"
219 #define BYT_CODEC_DAI2  "rt5640-aif2"
220
221 static int platform_clock_control(struct snd_soc_dapm_widget *w,
222                                   struct snd_kcontrol *k, int  event)
223 {
224         struct snd_soc_dapm_context *dapm = w->dapm;
225         struct snd_soc_card *card = dapm->card;
226         struct snd_soc_dai *codec_dai;
227         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
228         int ret;
229
230         codec_dai = snd_soc_card_get_codec_dai(card, BYT_CODEC_DAI1);
231         if (!codec_dai)
232                 codec_dai = snd_soc_card_get_codec_dai(card, BYT_CODEC_DAI2);
233
234         if (!codec_dai) {
235                 dev_err(card->dev,
236                         "Codec dai not found; Unable to set platform clock\n");
237                 return -EIO;
238         }
239
240         if (SND_SOC_DAPM_EVENT_ON(event)) {
241                 if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN) {
242                         ret = clk_prepare_enable(priv->mclk);
243                         if (ret < 0) {
244                                 dev_err(card->dev,
245                                         "could not configure MCLK state\n");
246                                 return ret;
247                         }
248                 }
249                 ret = byt_rt5640_prepare_and_enable_pll1(codec_dai, 48000);
250         } else {
251                 /*
252                  * Set codec clock source to internal clock before
253                  * turning off the platform clock. Codec needs clock
254                  * for Jack detection and button press
255                  */
256                 ret = snd_soc_dai_set_sysclk(codec_dai, RT5640_SCLK_S_RCCLK,
257                                              48000 * 512,
258                                              SND_SOC_CLOCK_IN);
259                 if (!ret) {
260                         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN)
261                                 clk_disable_unprepare(priv->mclk);
262                 }
263         }
264
265         if (ret < 0) {
266                 dev_err(card->dev, "can't set codec sysclk: %d\n", ret);
267                 return ret;
268         }
269
270         return 0;
271 }
272
273 static const struct snd_soc_dapm_widget byt_rt5640_widgets[] = {
274         SND_SOC_DAPM_HP("Headphone", NULL),
275         SND_SOC_DAPM_MIC("Headset Mic", NULL),
276         SND_SOC_DAPM_MIC("Internal Mic", NULL),
277         SND_SOC_DAPM_SPK("Speaker", NULL),
278         SND_SOC_DAPM_SUPPLY("Platform Clock", SND_SOC_NOPM, 0, 0,
279                             platform_clock_control, SND_SOC_DAPM_PRE_PMU |
280                             SND_SOC_DAPM_POST_PMD),
281
282 };
283
284 static const struct snd_soc_dapm_route byt_rt5640_audio_map[] = {
285         {"Headphone", NULL, "Platform Clock"},
286         {"Headset Mic", NULL, "Platform Clock"},
287         {"Internal Mic", NULL, "Platform Clock"},
288         {"Speaker", NULL, "Platform Clock"},
289
290         {"Headset Mic", NULL, "MICBIAS1"},
291         {"IN2P", NULL, "Headset Mic"},
292         {"Headphone", NULL, "HPOL"},
293         {"Headphone", NULL, "HPOR"},
294 };
295
296 static const struct snd_soc_dapm_route byt_rt5640_intmic_dmic1_map[] = {
297         {"DMIC1", NULL, "Internal Mic"},
298 };
299
300 static const struct snd_soc_dapm_route byt_rt5640_intmic_dmic2_map[] = {
301         {"DMIC2", NULL, "Internal Mic"},
302 };
303
304 static const struct snd_soc_dapm_route byt_rt5640_intmic_in1_map[] = {
305         {"Internal Mic", NULL, "MICBIAS1"},
306         {"IN1P", NULL, "Internal Mic"},
307 };
308
309 static const struct snd_soc_dapm_route byt_rt5640_intmic_in3_map[] = {
310         {"Internal Mic", NULL, "MICBIAS1"},
311         {"IN3P", NULL, "Internal Mic"},
312 };
313
314 static const struct snd_soc_dapm_route byt_rt5640_ssp2_aif1_map[] = {
315         {"ssp2 Tx", NULL, "codec_out0"},
316         {"ssp2 Tx", NULL, "codec_out1"},
317         {"codec_in0", NULL, "ssp2 Rx"},
318         {"codec_in1", NULL, "ssp2 Rx"},
319
320         {"AIF1 Playback", NULL, "ssp2 Tx"},
321         {"ssp2 Rx", NULL, "AIF1 Capture"},
322 };
323
324 static const struct snd_soc_dapm_route byt_rt5640_ssp2_aif2_map[] = {
325         {"ssp2 Tx", NULL, "codec_out0"},
326         {"ssp2 Tx", NULL, "codec_out1"},
327         {"codec_in0", NULL, "ssp2 Rx"},
328         {"codec_in1", NULL, "ssp2 Rx"},
329
330         {"AIF2 Playback", NULL, "ssp2 Tx"},
331         {"ssp2 Rx", NULL, "AIF2 Capture"},
332 };
333
334 static const struct snd_soc_dapm_route byt_rt5640_ssp0_aif1_map[] = {
335         {"ssp0 Tx", NULL, "modem_out"},
336         {"modem_in", NULL, "ssp0 Rx"},
337
338         {"AIF1 Playback", NULL, "ssp0 Tx"},
339         {"ssp0 Rx", NULL, "AIF1 Capture"},
340 };
341
342 static const struct snd_soc_dapm_route byt_rt5640_ssp0_aif2_map[] = {
343         {"ssp0 Tx", NULL, "modem_out"},
344         {"modem_in", NULL, "ssp0 Rx"},
345
346         {"AIF2 Playback", NULL, "ssp0 Tx"},
347         {"ssp0 Rx", NULL, "AIF2 Capture"},
348 };
349
350 static const struct snd_soc_dapm_route byt_rt5640_stereo_spk_map[] = {
351         {"Speaker", NULL, "SPOLP"},
352         {"Speaker", NULL, "SPOLN"},
353         {"Speaker", NULL, "SPORP"},
354         {"Speaker", NULL, "SPORN"},
355 };
356
357 static const struct snd_soc_dapm_route byt_rt5640_mono_spk_map[] = {
358         {"Speaker", NULL, "SPOLP"},
359         {"Speaker", NULL, "SPOLN"},
360 };
361
362 static const struct snd_kcontrol_new byt_rt5640_controls[] = {
363         SOC_DAPM_PIN_SWITCH("Headphone"),
364         SOC_DAPM_PIN_SWITCH("Headset Mic"),
365         SOC_DAPM_PIN_SWITCH("Internal Mic"),
366         SOC_DAPM_PIN_SWITCH("Speaker"),
367 };
368
369 static struct snd_soc_jack_pin rt5640_pins[] = {
370         {
371                 .pin    = "Headphone",
372                 .mask   = SND_JACK_HEADPHONE,
373         },
374         {
375                 .pin    = "Headset Mic",
376                 .mask   = SND_JACK_MICROPHONE,
377         },
378 };
379
380 static int byt_rt5640_aif1_hw_params(struct snd_pcm_substream *substream,
381                                         struct snd_pcm_hw_params *params)
382 {
383         struct snd_soc_pcm_runtime *rtd = substream->private_data;
384         struct snd_soc_dai *dai = rtd->codec_dai;
385
386         return byt_rt5640_prepare_and_enable_pll1(dai, params_rate(params));
387 }
388
389 /* Please keep this list alphabetically sorted */
390 static const struct dmi_system_id byt_rt5640_quirk_table[] = {
391         {       /* Acer Iconia Tab 8 W1-810 */
392                 .matches = {
393                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Acer"),
394                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Iconia W1-810"),
395                 },
396                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
397                                         BYT_RT5640_JD_SRC_JD1_IN4P |
398                                         BYT_RT5640_OVCD_TH_1500UA |
399                                         BYT_RT5640_OVCD_SF_0P75 |
400                                         BYT_RT5640_SSP0_AIF1 |
401                                         BYT_RT5640_MCLK_EN),
402         },
403         {
404                 .matches = {
405                         DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
406                         DMI_MATCH(DMI_PRODUCT_NAME, "Aspire SW5-012"),
407                 },
408                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
409                                                  BYT_RT5640_MCLK_EN |
410                                                  BYT_RT5640_SSP0_AIF1),
411
412         },
413         {
414                 .matches = {
415                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ARCHOS"),
416                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ARCHOS 80 Cesium"),
417                 },
418                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
419                                         BYT_RT5640_MONO_SPEAKER |
420                                         BYT_RT5640_SSP0_AIF1 |
421                                         BYT_RT5640_MCLK_EN),
422         },
423         {
424                 .matches = {
425                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
426                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ME176C"),
427                 },
428                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
429                                         BYT_RT5640_JD_SRC_JD2_IN4N |
430                                         BYT_RT5640_OVCD_TH_2000UA |
431                                         BYT_RT5640_OVCD_SF_0P75 |
432                                         BYT_RT5640_SSP0_AIF1 |
433                                         BYT_RT5640_MCLK_EN),
434         },
435         {
436                 .matches = {
437                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
438                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
439                 },
440                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
441                                         BYT_RT5640_JD_SRC_JD2_IN4N |
442                                         BYT_RT5640_OVCD_TH_2000UA |
443                                         BYT_RT5640_OVCD_SF_0P75 |
444                                         BYT_RT5640_MCLK_EN),
445         },
446         {
447                 .matches = {
448                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
449                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TAF"),
450                 },
451                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
452                                         BYT_RT5640_MONO_SPEAKER |
453                                         BYT_RT5640_DIFF_MIC |
454                                         BYT_RT5640_SSP0_AIF2 |
455                                         BYT_RT5640_MCLK_EN),
456         },
457         {       /* Chuwi Vi8 (CWI506) */
458                 .matches = {
459                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
460                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "i86"),
461                         /* The above are too generic, also match BIOS info */
462                         DMI_MATCH(DMI_BIOS_VERSION, "CHUWI.D86JLBNR"),
463                 },
464                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
465                                         BYT_RT5640_MONO_SPEAKER |
466                                         BYT_RT5640_SSP0_AIF1 |
467                                         BYT_RT5640_MCLK_EN),
468         },
469         {
470                 /* Chuwi Vi10 (CWI505) */
471                 .matches = {
472                         DMI_MATCH(DMI_BOARD_VENDOR, "Hampoo"),
473                         DMI_MATCH(DMI_BOARD_NAME, "BYT-PF02"),
474                         DMI_MATCH(DMI_SYS_VENDOR, "ilife"),
475                         DMI_MATCH(DMI_PRODUCT_NAME, "S165"),
476                 },
477                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
478                                         BYT_RT5640_JD_SRC_JD2_IN4N |
479                                         BYT_RT5640_OVCD_TH_2000UA |
480                                         BYT_RT5640_OVCD_SF_0P75 |
481                                         BYT_RT5640_DIFF_MIC |
482                                         BYT_RT5640_SSP0_AIF1 |
483                                         BYT_RT5640_MCLK_EN),
484         },
485         {
486                 .matches = {
487                         DMI_MATCH(DMI_SYS_VENDOR, "Circuitco"),
488                         DMI_MATCH(DMI_PRODUCT_NAME, "Minnowboard Max B3 PLATFORM"),
489                 },
490                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP),
491         },
492         {       /* Connect Tablet 9 */
493                 .matches = {
494                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Connect"),
495                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Tablet 9"),
496                 },
497                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
498                                         BYT_RT5640_MONO_SPEAKER |
499                                         BYT_RT5640_SSP0_AIF1 |
500                                         BYT_RT5640_MCLK_EN),
501         },
502         {
503                 .matches = {
504                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
505                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Venue 8 Pro 5830"),
506                 },
507                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
508                                         BYT_RT5640_JD_SRC_JD2_IN4N |
509                                         BYT_RT5640_OVCD_TH_2000UA |
510                                         BYT_RT5640_OVCD_SF_0P75 |
511                                         BYT_RT5640_MONO_SPEAKER |
512                                         BYT_RT5640_MCLK_EN),
513         },
514         {
515                 .matches = {
516                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
517                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP ElitePad 1000 G2"),
518                 },
519                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
520                                         BYT_RT5640_MCLK_EN),
521         },
522         {       /* HP Pavilion x2 10-n000nd */
523                 .matches = {
524                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
525                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Pavilion x2 Detachable"),
526                 },
527                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
528                                         BYT_RT5640_JD_SRC_JD2_IN4N |
529                                         BYT_RT5640_OVCD_TH_1500UA |
530                                         BYT_RT5640_OVCD_SF_0P75 |
531                                         BYT_RT5640_SSP0_AIF1 |
532                                         BYT_RT5640_MCLK_EN),
533         },
534         {       /* HP Stream 7 */
535                 .matches = {
536                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
537                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Stream 7 Tablet"),
538                 },
539                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
540                                         BYT_RT5640_MONO_SPEAKER |
541                                         BYT_RT5640_JD_NOT_INV |
542                                         BYT_RT5640_SSP0_AIF1 |
543                                         BYT_RT5640_MCLK_EN),
544         },
545         {       /* I.T.Works TW891 */
546                 .matches = {
547                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
548                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TW891"),
549                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "To be filled by O.E.M."),
550                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "TW891"),
551                 },
552                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
553                                         BYT_RT5640_MONO_SPEAKER |
554                                         BYT_RT5640_SSP0_AIF1 |
555                                         BYT_RT5640_MCLK_EN),
556         },
557         {       /* Lamina I8270 / T701BR.SE */
558                 .matches = {
559                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Lamina"),
560                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "T701BR.SE"),
561                 },
562                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
563                                         BYT_RT5640_MONO_SPEAKER |
564                                         BYT_RT5640_JD_NOT_INV |
565                                         BYT_RT5640_SSP0_AIF1 |
566                                         BYT_RT5640_MCLK_EN),
567         },
568         {       /* Lenovo Miix 2 8 */
569                 .matches = {
570                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
571                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "20326"),
572                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Hiking"),
573                 },
574                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
575                                         BYT_RT5640_JD_SRC_JD2_IN4N |
576                                         BYT_RT5640_OVCD_TH_2000UA |
577                                         BYT_RT5640_OVCD_SF_0P75 |
578                                         BYT_RT5640_MONO_SPEAKER |
579                                         BYT_RT5640_MCLK_EN),
580         },
581         {       /* Linx Linx7 tablet */
582                 .matches = {
583                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LINX"),
584                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LINX7"),
585                 },
586                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
587                                         BYT_RT5640_MONO_SPEAKER |
588                                         BYT_RT5640_JD_NOT_INV |
589                                         BYT_RT5640_SSP0_AIF1 |
590                                         BYT_RT5640_MCLK_EN),
591         },
592         {       /* MSI S100 tablet */
593                 .matches = {
594                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Micro-Star International Co., Ltd."),
595                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "S100"),
596                 },
597                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
598                                         BYT_RT5640_JD_SRC_JD2_IN4N |
599                                         BYT_RT5640_OVCD_TH_2000UA |
600                                         BYT_RT5640_OVCD_SF_0P75 |
601                                         BYT_RT5640_MONO_SPEAKER |
602                                         BYT_RT5640_DIFF_MIC |
603                                         BYT_RT5640_MCLK_EN),
604         },
605         {       /* Nuvison/TMax TM800W560 */
606                 .matches = {
607                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "TMAX"),
608                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "TM800W560L"),
609                 },
610                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
611                                         BYT_RT5640_JD_SRC_JD2_IN4N |
612                                         BYT_RT5640_OVCD_TH_2000UA |
613                                         BYT_RT5640_OVCD_SF_0P75 |
614                                         BYT_RT5640_JD_NOT_INV |
615                                         BYT_RT5640_DIFF_MIC |
616                                         BYT_RT5640_SSP0_AIF1 |
617                                         BYT_RT5640_MCLK_EN),
618         },
619         {       /* Onda v975w */
620                 .matches = {
621                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
622                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
623                         /* The above are too generic, also match BIOS info */
624                         DMI_EXACT_MATCH(DMI_BIOS_VERSION, "5.6.5"),
625                         DMI_EXACT_MATCH(DMI_BIOS_DATE, "07/25/2014"),
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_DIFF_MIC |
632                                         BYT_RT5640_MCLK_EN),
633         },
634         {       /* Pipo W4 */
635                 .matches = {
636                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
637                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
638                         /* The above are too generic, also match BIOS info */
639                         DMI_MATCH(DMI_BIOS_VERSION, "V8L_WIN32_CHIPHD"),
640                 },
641                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
642                                         BYT_RT5640_MONO_SPEAKER |
643                                         BYT_RT5640_SSP0_AIF1 |
644                                         BYT_RT5640_MCLK_EN),
645         },
646         {       /* Point of View Mobii TAB-P800W (V2.0) */
647                 .matches = {
648                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
649                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
650                         /* The above are too generic, also match BIOS info */
651                         DMI_EXACT_MATCH(DMI_BIOS_VERSION, "3BAIR1014"),
652                         DMI_EXACT_MATCH(DMI_BIOS_DATE, "10/24/2014"),
653                 },
654                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
655                                         BYT_RT5640_JD_SRC_JD2_IN4N |
656                                         BYT_RT5640_OVCD_TH_2000UA |
657                                         BYT_RT5640_OVCD_SF_0P75 |
658                                         BYT_RT5640_MONO_SPEAKER |
659                                         BYT_RT5640_DIFF_MIC |
660                                         BYT_RT5640_SSP0_AIF2 |
661                                         BYT_RT5640_MCLK_EN),
662         },
663         {       /* Point of View Mobii TAB-P800W (V2.1) */
664                 .matches = {
665                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
666                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
667                         /* The above are too generic, also match BIOS info */
668                         DMI_EXACT_MATCH(DMI_BIOS_VERSION, "3BAIR1013"),
669                         DMI_EXACT_MATCH(DMI_BIOS_DATE, "08/22/2014"),
670                 },
671                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
672                                         BYT_RT5640_JD_SRC_JD2_IN4N |
673                                         BYT_RT5640_OVCD_TH_2000UA |
674                                         BYT_RT5640_OVCD_SF_0P75 |
675                                         BYT_RT5640_MONO_SPEAKER |
676                                         BYT_RT5640_DIFF_MIC |
677                                         BYT_RT5640_SSP0_AIF2 |
678                                         BYT_RT5640_MCLK_EN),
679         },
680         {       /* Point of View Mobii TAB-P1005W-232 (V2.0) */
681                 .matches = {
682                         DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "POV"),
683                         DMI_EXACT_MATCH(DMI_BOARD_NAME, "I102A"),
684                 },
685                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
686                                         BYT_RT5640_JD_SRC_JD2_IN4N |
687                                         BYT_RT5640_OVCD_TH_2000UA |
688                                         BYT_RT5640_OVCD_SF_0P75 |
689                                         BYT_RT5640_DIFF_MIC |
690                                         BYT_RT5640_SSP0_AIF1 |
691                                         BYT_RT5640_MCLK_EN),
692         },
693         {
694                 /* Prowise PT301 */
695                 .matches = {
696                         DMI_MATCH(DMI_SYS_VENDOR, "Prowise"),
697                         DMI_MATCH(DMI_PRODUCT_NAME, "PT301"),
698                 },
699                 .driver_data = (void *)(BYT_RT5640_IN1_MAP |
700                                         BYT_RT5640_JD_SRC_JD2_IN4N |
701                                         BYT_RT5640_OVCD_TH_2000UA |
702                                         BYT_RT5640_OVCD_SF_0P75 |
703                                         BYT_RT5640_DIFF_MIC |
704                                         BYT_RT5640_SSP0_AIF1 |
705                                         BYT_RT5640_MCLK_EN),
706         },
707         {
708                 /* Teclast X89 */
709                 .matches = {
710                         DMI_MATCH(DMI_BOARD_VENDOR, "TECLAST"),
711                         DMI_MATCH(DMI_BOARD_NAME, "tPAD"),
712                 },
713                 .driver_data = (void *)(BYT_RT5640_IN3_MAP |
714                                         BYT_RT5640_JD_SRC_JD1_IN4P |
715                                         BYT_RT5640_OVCD_TH_2000UA |
716                                         BYT_RT5640_OVCD_SF_1P0 |
717                                         BYT_RT5640_SSP0_AIF1 |
718                                         BYT_RT5640_MCLK_EN),
719         },
720         {       /* Toshiba Satellite Click Mini L9W-B */
721                 .matches = {
722                         DMI_EXACT_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
723                         DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "SATELLITE Click Mini L9W-B"),
724                 },
725                 .driver_data = (void *)(BYT_RT5640_DMIC1_MAP |
726                                         BYT_RT5640_JD_SRC_JD2_IN4N |
727                                         BYT_RT5640_OVCD_TH_1500UA |
728                                         BYT_RT5640_OVCD_SF_0P75 |
729                                         BYT_RT5640_SSP0_AIF1 |
730                                         BYT_RT5640_MCLK_EN),
731         },
732         {       /* Catch-all for generic Insyde tablets, must be last */
733                 .matches = {
734                         DMI_MATCH(DMI_SYS_VENDOR, "Insyde"),
735                 },
736                 .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
737                                         BYT_RT5640_MCLK_EN |
738                                         BYT_RT5640_SSP0_AIF1),
739
740         },
741         {}
742 };
743
744 /*
745  * Note this MUST be called before snd_soc_register_card(), so that the props
746  * are in place before the codec component driver's probe function parses them.
747  */
748 static int byt_rt5640_add_codec_device_props(const char *i2c_dev_name)
749 {
750         struct property_entry props[MAX_NO_PROPS] = {};
751         struct device *i2c_dev;
752         int ret, cnt = 0;
753
754         i2c_dev = bus_find_device_by_name(&i2c_bus_type, NULL, i2c_dev_name);
755         if (!i2c_dev)
756                 return -EPROBE_DEFER;
757
758         switch (BYT_RT5640_MAP(byt_rt5640_quirk)) {
759         case BYT_RT5640_DMIC1_MAP:
760                 props[cnt++] = PROPERTY_ENTRY_U32("realtek,dmic1-data-pin",
761                                                   RT5640_DMIC1_DATA_PIN_IN1P);
762                 break;
763         case BYT_RT5640_DMIC2_MAP:
764                 props[cnt++] = PROPERTY_ENTRY_U32("realtek,dmic2-data-pin",
765                                                   RT5640_DMIC2_DATA_PIN_IN1N);
766                 break;
767         case BYT_RT5640_IN1_MAP:
768                 if (byt_rt5640_quirk & BYT_RT5640_DIFF_MIC)
769                         props[cnt++] =
770                                 PROPERTY_ENTRY_BOOL("realtek,in1-differential");
771                 break;
772         case BYT_RT5640_IN3_MAP:
773                 if (byt_rt5640_quirk & BYT_RT5640_DIFF_MIC)
774                         props[cnt++] =
775                                 PROPERTY_ENTRY_BOOL("realtek,in3-differential");
776                 break;
777         }
778
779         if (BYT_RT5640_JDSRC(byt_rt5640_quirk)) {
780                 props[cnt++] = PROPERTY_ENTRY_U32(
781                                     "realtek,jack-detect-source",
782                                     BYT_RT5640_JDSRC(byt_rt5640_quirk));
783
784                 props[cnt++] = PROPERTY_ENTRY_U32(
785                                     "realtek,over-current-threshold-microamp",
786                                     BYT_RT5640_OVCD_TH(byt_rt5640_quirk) * 100);
787
788                 props[cnt++] = PROPERTY_ENTRY_U32(
789                                     "realtek,over-current-scale-factor",
790                                     BYT_RT5640_OVCD_SF(byt_rt5640_quirk));
791         }
792
793         if (byt_rt5640_quirk & BYT_RT5640_JD_NOT_INV)
794                 props[cnt++] = PROPERTY_ENTRY_BOOL("realtek,jack-detect-not-inverted");
795
796         ret = device_add_properties(i2c_dev, props);
797         put_device(i2c_dev);
798
799         return ret;
800 }
801
802 static int byt_rt5640_init(struct snd_soc_pcm_runtime *runtime)
803 {
804         struct snd_soc_card *card = runtime->card;
805         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
806         struct snd_soc_component *component = runtime->codec_dai->component;
807         const struct snd_soc_dapm_route *custom_map;
808         int num_routes;
809         int ret;
810
811         card->dapm.idle_bias_off = true;
812
813         /* Start with RC clk for jack-detect (we disable MCLK below) */
814         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN)
815                 snd_soc_component_update_bits(component, RT5640_GLB_CLK,
816                         RT5640_SCLK_SRC_MASK, RT5640_SCLK_SRC_RCCLK);
817
818         rt5640_sel_asrc_clk_src(component,
819                                 RT5640_DA_STEREO_FILTER |
820                                 RT5640_DA_MONO_L_FILTER |
821                                 RT5640_DA_MONO_R_FILTER |
822                                 RT5640_AD_STEREO_FILTER |
823                                 RT5640_AD_MONO_L_FILTER |
824                                 RT5640_AD_MONO_R_FILTER,
825                                 RT5640_CLK_SEL_ASRC);
826
827         ret = snd_soc_add_card_controls(card, byt_rt5640_controls,
828                                         ARRAY_SIZE(byt_rt5640_controls));
829         if (ret) {
830                 dev_err(card->dev, "unable to add card controls\n");
831                 return ret;
832         }
833
834         switch (BYT_RT5640_MAP(byt_rt5640_quirk)) {
835         case BYT_RT5640_IN1_MAP:
836                 custom_map = byt_rt5640_intmic_in1_map;
837                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_in1_map);
838                 break;
839         case BYT_RT5640_IN3_MAP:
840                 custom_map = byt_rt5640_intmic_in3_map;
841                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_in3_map);
842                 break;
843         case BYT_RT5640_DMIC2_MAP:
844                 custom_map = byt_rt5640_intmic_dmic2_map;
845                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_dmic2_map);
846                 break;
847         default:
848                 custom_map = byt_rt5640_intmic_dmic1_map;
849                 num_routes = ARRAY_SIZE(byt_rt5640_intmic_dmic1_map);
850         }
851
852         ret = snd_soc_dapm_add_routes(&card->dapm, custom_map, num_routes);
853         if (ret)
854                 return ret;
855
856         if (byt_rt5640_quirk & BYT_RT5640_SSP2_AIF2) {
857                 ret = snd_soc_dapm_add_routes(&card->dapm,
858                                         byt_rt5640_ssp2_aif2_map,
859                                         ARRAY_SIZE(byt_rt5640_ssp2_aif2_map));
860         } else if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) {
861                 ret = snd_soc_dapm_add_routes(&card->dapm,
862                                         byt_rt5640_ssp0_aif1_map,
863                                         ARRAY_SIZE(byt_rt5640_ssp0_aif1_map));
864         } else if (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2) {
865                 ret = snd_soc_dapm_add_routes(&card->dapm,
866                                         byt_rt5640_ssp0_aif2_map,
867                                         ARRAY_SIZE(byt_rt5640_ssp0_aif2_map));
868         } else {
869                 ret = snd_soc_dapm_add_routes(&card->dapm,
870                                         byt_rt5640_ssp2_aif1_map,
871                                         ARRAY_SIZE(byt_rt5640_ssp2_aif1_map));
872         }
873         if (ret)
874                 return ret;
875
876         if (byt_rt5640_quirk & BYT_RT5640_MONO_SPEAKER) {
877                 ret = snd_soc_dapm_add_routes(&card->dapm,
878                                         byt_rt5640_mono_spk_map,
879                                         ARRAY_SIZE(byt_rt5640_mono_spk_map));
880         } else {
881                 ret = snd_soc_dapm_add_routes(&card->dapm,
882                                         byt_rt5640_stereo_spk_map,
883                                         ARRAY_SIZE(byt_rt5640_stereo_spk_map));
884         }
885         if (ret)
886                 return ret;
887
888         snd_soc_dapm_ignore_suspend(&card->dapm, "Headphone");
889         snd_soc_dapm_ignore_suspend(&card->dapm, "Speaker");
890
891         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN) {
892                 /*
893                  * The firmware might enable the clock at
894                  * boot (this information may or may not
895                  * be reflected in the enable clock register).
896                  * To change the rate we must disable the clock
897                  * first to cover these cases. Due to common
898                  * clock framework restrictions that do not allow
899                  * to disable a clock that has not been enabled,
900                  * we need to enable the clock first.
901                  */
902                 ret = clk_prepare_enable(priv->mclk);
903                 if (!ret)
904                         clk_disable_unprepare(priv->mclk);
905
906                 if (byt_rt5640_quirk & BYT_RT5640_MCLK_25MHZ)
907                         ret = clk_set_rate(priv->mclk, 25000000);
908                 else
909                         ret = clk_set_rate(priv->mclk, 19200000);
910
911                 if (ret) {
912                         dev_err(card->dev, "unable to set MCLK rate\n");
913                         return ret;
914                 }
915         }
916
917         if (BYT_RT5640_JDSRC(byt_rt5640_quirk)) {
918                 ret = snd_soc_card_jack_new(card, "Headset",
919                                             SND_JACK_HEADSET | SND_JACK_BTN_0,
920                                             &priv->jack, rt5640_pins,
921                                             ARRAY_SIZE(rt5640_pins));
922                 if (ret) {
923                         dev_err(card->dev, "Jack creation failed %d\n", ret);
924                         return ret;
925                 }
926                 snd_jack_set_key(priv->jack.jack, SND_JACK_BTN_0,
927                                  KEY_PLAYPAUSE);
928                 snd_soc_component_set_jack(component, &priv->jack, NULL);
929         }
930
931         return 0;
932 }
933
934 static const struct snd_soc_pcm_stream byt_rt5640_dai_params = {
935         .formats = SNDRV_PCM_FMTBIT_S24_LE,
936         .rate_min = 48000,
937         .rate_max = 48000,
938         .channels_min = 2,
939         .channels_max = 2,
940 };
941
942 static int byt_rt5640_codec_fixup(struct snd_soc_pcm_runtime *rtd,
943                             struct snd_pcm_hw_params *params)
944 {
945         struct snd_interval *rate = hw_param_interval(params,
946                         SNDRV_PCM_HW_PARAM_RATE);
947         struct snd_interval *channels = hw_param_interval(params,
948                                                 SNDRV_PCM_HW_PARAM_CHANNELS);
949         int ret;
950
951         /* The DSP will covert the FE rate to 48k, stereo */
952         rate->min = rate->max = 48000;
953         channels->min = channels->max = 2;
954
955         if ((byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) ||
956                 (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2)) {
957
958                 /* set SSP0 to 16-bit */
959                 params_set_format(params, SNDRV_PCM_FORMAT_S16_LE);
960
961                 /*
962                  * Default mode for SSP configuration is TDM 4 slot, override config
963                  * with explicit setting to I2S 2ch 16-bit. The word length is set with
964                  * dai_set_tdm_slot() since there is no other API exposed
965                  */
966                 ret = snd_soc_dai_set_fmt(rtd->cpu_dai,
967                                         SND_SOC_DAIFMT_I2S     |
968                                         SND_SOC_DAIFMT_NB_NF   |
969                                         SND_SOC_DAIFMT_CBS_CFS
970                         );
971                 if (ret < 0) {
972                         dev_err(rtd->dev, "can't set format to I2S, err %d\n", ret);
973                         return ret;
974                 }
975
976                 ret = snd_soc_dai_set_tdm_slot(rtd->cpu_dai, 0x3, 0x3, 2, 16);
977                 if (ret < 0) {
978                         dev_err(rtd->dev, "can't set I2S config, err %d\n", ret);
979                         return ret;
980                 }
981
982         } else {
983
984                 /* set SSP2 to 24-bit */
985                 params_set_format(params, SNDRV_PCM_FORMAT_S24_LE);
986
987                 /*
988                  * Default mode for SSP configuration is TDM 4 slot, override config
989                  * with explicit setting to I2S 2ch 24-bit. The word length is set with
990                  * dai_set_tdm_slot() since there is no other API exposed
991                  */
992                 ret = snd_soc_dai_set_fmt(rtd->cpu_dai,
993                                         SND_SOC_DAIFMT_I2S     |
994                                         SND_SOC_DAIFMT_NB_NF   |
995                                         SND_SOC_DAIFMT_CBS_CFS
996                         );
997                 if (ret < 0) {
998                         dev_err(rtd->dev, "can't set format to I2S, err %d\n", ret);
999                         return ret;
1000                 }
1001
1002                 ret = snd_soc_dai_set_tdm_slot(rtd->cpu_dai, 0x3, 0x3, 2, 24);
1003                 if (ret < 0) {
1004                         dev_err(rtd->dev, "can't set I2S config, err %d\n", ret);
1005                         return ret;
1006                 }
1007         }
1008         return 0;
1009 }
1010
1011 static int byt_rt5640_aif1_startup(struct snd_pcm_substream *substream)
1012 {
1013         return snd_pcm_hw_constraint_single(substream->runtime,
1014                         SNDRV_PCM_HW_PARAM_RATE, 48000);
1015 }
1016
1017 static const struct snd_soc_ops byt_rt5640_aif1_ops = {
1018         .startup = byt_rt5640_aif1_startup,
1019 };
1020
1021 static const struct snd_soc_ops byt_rt5640_be_ssp2_ops = {
1022         .hw_params = byt_rt5640_aif1_hw_params,
1023 };
1024
1025 SND_SOC_DAILINK_DEF(dummy,
1026         DAILINK_COMP_ARRAY(COMP_DUMMY()));
1027
1028 SND_SOC_DAILINK_DEF(media,
1029         DAILINK_COMP_ARRAY(COMP_CPU("media-cpu-dai")));
1030
1031 SND_SOC_DAILINK_DEF(deepbuffer,
1032         DAILINK_COMP_ARRAY(COMP_CPU("deepbuffer-cpu-dai")));
1033
1034 SND_SOC_DAILINK_DEF(ssp2_port,
1035         /* overwritten for ssp0 routing */
1036         DAILINK_COMP_ARRAY(COMP_CPU("ssp2-port")));
1037 SND_SOC_DAILINK_DEF(ssp2_codec,
1038         DAILINK_COMP_ARRAY(COMP_CODEC(
1039         /* overwritten with HID */ "i2c-10EC5640:00",
1040         /* changed w/ quirk */  "rt5640-aif1")));
1041
1042 SND_SOC_DAILINK_DEF(platform,
1043         DAILINK_COMP_ARRAY(COMP_PLATFORM("sst-mfld-platform")));
1044
1045 static struct snd_soc_dai_link byt_rt5640_dais[] = {
1046         [MERR_DPCM_AUDIO] = {
1047                 .name = "Baytrail Audio Port",
1048                 .stream_name = "Baytrail Audio",
1049                 .nonatomic = true,
1050                 .dynamic = 1,
1051                 .dpcm_playback = 1,
1052                 .dpcm_capture = 1,
1053                 .ops = &byt_rt5640_aif1_ops,
1054                 SND_SOC_DAILINK_REG(media, dummy, platform),
1055         },
1056         [MERR_DPCM_DEEP_BUFFER] = {
1057                 .name = "Deep-Buffer Audio Port",
1058                 .stream_name = "Deep-Buffer Audio",
1059                 .nonatomic = true,
1060                 .dynamic = 1,
1061                 .dpcm_playback = 1,
1062                 .ops = &byt_rt5640_aif1_ops,
1063                 SND_SOC_DAILINK_REG(deepbuffer, dummy, platform),
1064         },
1065                 /* back ends */
1066         {
1067                 .name = "SSP2-Codec",
1068                 .id = 0,
1069                 .no_pcm = 1,
1070                 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF
1071                                                 | SND_SOC_DAIFMT_CBS_CFS,
1072                 .be_hw_params_fixup = byt_rt5640_codec_fixup,
1073                 .ignore_suspend = 1,
1074                 .nonatomic = true,
1075                 .dpcm_playback = 1,
1076                 .dpcm_capture = 1,
1077                 .init = byt_rt5640_init,
1078                 .ops = &byt_rt5640_be_ssp2_ops,
1079                 SND_SOC_DAILINK_REG(ssp2_port, ssp2_codec, platform),
1080         },
1081 };
1082
1083 /* SoC card */
1084 static char byt_rt5640_codec_name[SND_ACPI_I2C_ID_LEN];
1085 static char byt_rt5640_codec_aif_name[12]; /*  = "rt5640-aif[1|2]" */
1086 static char byt_rt5640_cpu_dai_name[10]; /*  = "ssp[0|2]-port" */
1087 static char byt_rt5640_long_name[40]; /* = "bytcr-rt5640-*-spk-*-mic" */
1088
1089 static int byt_rt5640_suspend(struct snd_soc_card *card)
1090 {
1091         struct snd_soc_component *component;
1092
1093         if (!BYT_RT5640_JDSRC(byt_rt5640_quirk))
1094                 return 0;
1095
1096         for_each_card_components(card, component) {
1097                 if (!strcmp(component->name, byt_rt5640_codec_name)) {
1098                         dev_dbg(component->dev, "disabling jack detect before suspend\n");
1099                         snd_soc_component_set_jack(component, NULL, NULL);
1100                         break;
1101                 }
1102         }
1103
1104         return 0;
1105 }
1106
1107 static int byt_rt5640_resume(struct snd_soc_card *card)
1108 {
1109         struct byt_rt5640_private *priv = snd_soc_card_get_drvdata(card);
1110         struct snd_soc_component *component;
1111
1112         if (!BYT_RT5640_JDSRC(byt_rt5640_quirk))
1113                 return 0;
1114
1115         for_each_card_components(card, component) {
1116                 if (!strcmp(component->name, byt_rt5640_codec_name)) {
1117                         dev_dbg(component->dev, "re-enabling jack detect after resume\n");
1118                         snd_soc_component_set_jack(component, &priv->jack, NULL);
1119                         break;
1120                 }
1121         }
1122
1123         return 0;
1124 }
1125
1126 static struct snd_soc_card byt_rt5640_card = {
1127         .name = "bytcr-rt5640",
1128         .owner = THIS_MODULE,
1129         .dai_link = byt_rt5640_dais,
1130         .num_links = ARRAY_SIZE(byt_rt5640_dais),
1131         .dapm_widgets = byt_rt5640_widgets,
1132         .num_dapm_widgets = ARRAY_SIZE(byt_rt5640_widgets),
1133         .dapm_routes = byt_rt5640_audio_map,
1134         .num_dapm_routes = ARRAY_SIZE(byt_rt5640_audio_map),
1135         .fully_routed = true,
1136         .suspend_pre = byt_rt5640_suspend,
1137         .resume_post = byt_rt5640_resume,
1138 };
1139
1140 struct acpi_chan_package {   /* ACPICA seems to require 64 bit integers */
1141         u64 aif_value;       /* 1: AIF1, 2: AIF2 */
1142         u64 mclock_value;    /* usually 25MHz (0x17d7940), ignored */
1143 };
1144
1145 static int snd_byt_rt5640_mc_probe(struct platform_device *pdev)
1146 {
1147         static const char * const map_name[] = { "dmic1", "dmic2", "in1", "in3" };
1148         const struct dmi_system_id *dmi_id;
1149         struct byt_rt5640_private *priv;
1150         struct snd_soc_acpi_mach *mach;
1151         const char *platform_name;
1152         struct acpi_device *adev;
1153         int ret_val = 0;
1154         int dai_index = 0;
1155         int i;
1156
1157         is_bytcr = false;
1158         priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
1159         if (!priv)
1160                 return -ENOMEM;
1161
1162         /* register the soc card */
1163         byt_rt5640_card.dev = &pdev->dev;
1164         mach = byt_rt5640_card.dev->platform_data;
1165         snd_soc_card_set_drvdata(&byt_rt5640_card, priv);
1166
1167         /* fix index of codec dai */
1168         for (i = 0; i < ARRAY_SIZE(byt_rt5640_dais); i++) {
1169                 if (!strcmp(byt_rt5640_dais[i].codecs->name,
1170                             "i2c-10EC5640:00")) {
1171                         dai_index = i;
1172                         break;
1173                 }
1174         }
1175
1176         /* fixup codec name based on HID */
1177         adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
1178         if (adev) {
1179                 snprintf(byt_rt5640_codec_name, sizeof(byt_rt5640_codec_name),
1180                          "i2c-%s", acpi_dev_name(adev));
1181                 put_device(&adev->dev);
1182                 byt_rt5640_dais[dai_index].codecs->name = byt_rt5640_codec_name;
1183         }
1184
1185         /*
1186          * swap SSP0 if bytcr is detected
1187          * (will be overridden if DMI quirk is detected)
1188          */
1189         if (soc_intel_is_byt()) {
1190                 if (mach->mach_params.acpi_ipc_irq_index == 0)
1191                         is_bytcr = true;
1192         }
1193
1194         if (is_bytcr) {
1195                 /*
1196                  * Baytrail CR platforms may have CHAN package in BIOS, try
1197                  * to find relevant routing quirk based as done on Windows
1198                  * platforms. We have to read the information directly from the
1199                  * BIOS, at this stage the card is not created and the links
1200                  * with the codec driver/pdata are non-existent
1201                  */
1202
1203                 struct acpi_chan_package chan_package;
1204
1205                 /* format specified: 2 64-bit integers */
1206                 struct acpi_buffer format = {sizeof("NN"), "NN"};
1207                 struct acpi_buffer state = {0, NULL};
1208                 struct snd_soc_acpi_package_context pkg_ctx;
1209                 bool pkg_found = false;
1210
1211                 state.length = sizeof(chan_package);
1212                 state.pointer = &chan_package;
1213
1214                 pkg_ctx.name = "CHAN";
1215                 pkg_ctx.length = 2;
1216                 pkg_ctx.format = &format;
1217                 pkg_ctx.state = &state;
1218                 pkg_ctx.data_valid = false;
1219
1220                 pkg_found = snd_soc_acpi_find_package_from_hid(mach->id,
1221                                                                &pkg_ctx);
1222                 if (pkg_found) {
1223                         if (chan_package.aif_value == 1) {
1224                                 dev_info(&pdev->dev, "BIOS Routing: AIF1 connected\n");
1225                                 byt_rt5640_quirk |= BYT_RT5640_SSP0_AIF1;
1226                         } else  if (chan_package.aif_value == 2) {
1227                                 dev_info(&pdev->dev, "BIOS Routing: AIF2 connected\n");
1228                                 byt_rt5640_quirk |= BYT_RT5640_SSP0_AIF2;
1229                         } else {
1230                                 dev_info(&pdev->dev, "BIOS Routing isn't valid, ignored\n");
1231                                 pkg_found = false;
1232                         }
1233                 }
1234
1235                 if (!pkg_found) {
1236                         /* no BIOS indications, assume SSP0-AIF2 connection */
1237                         byt_rt5640_quirk |= BYT_RT5640_SSP0_AIF2;
1238                 }
1239
1240                 /* change defaults for Baytrail-CR capture */
1241                 byt_rt5640_quirk |= BYTCR_INPUT_DEFAULTS;
1242         } else {
1243                 byt_rt5640_quirk |= BYT_RT5640_DMIC1_MAP |
1244                                     BYT_RT5640_JD_SRC_JD2_IN4N |
1245                                     BYT_RT5640_OVCD_TH_2000UA |
1246                                     BYT_RT5640_OVCD_SF_0P75;
1247         }
1248
1249         /* check quirks before creating card */
1250         dmi_id = dmi_first_match(byt_rt5640_quirk_table);
1251         if (dmi_id)
1252                 byt_rt5640_quirk = (unsigned long)dmi_id->driver_data;
1253         if (quirk_override != -1) {
1254                 dev_info(&pdev->dev, "Overriding quirk 0x%x => 0x%x\n",
1255                          (unsigned int)byt_rt5640_quirk, quirk_override);
1256                 byt_rt5640_quirk = quirk_override;
1257         }
1258
1259         /* Must be called before register_card, also see declaration comment. */
1260         ret_val = byt_rt5640_add_codec_device_props(byt_rt5640_codec_name);
1261         if (ret_val)
1262                 return ret_val;
1263
1264         log_quirks(&pdev->dev);
1265
1266         if ((byt_rt5640_quirk & BYT_RT5640_SSP2_AIF2) ||
1267             (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2)) {
1268
1269                 /* fixup codec aif name */
1270                 snprintf(byt_rt5640_codec_aif_name,
1271                         sizeof(byt_rt5640_codec_aif_name),
1272                         "%s", "rt5640-aif2");
1273
1274                 byt_rt5640_dais[dai_index].codecs->dai_name =
1275                         byt_rt5640_codec_aif_name;
1276         }
1277
1278         if ((byt_rt5640_quirk & BYT_RT5640_SSP0_AIF1) ||
1279             (byt_rt5640_quirk & BYT_RT5640_SSP0_AIF2)) {
1280
1281                 /* fixup cpu dai name name */
1282                 snprintf(byt_rt5640_cpu_dai_name,
1283                         sizeof(byt_rt5640_cpu_dai_name),
1284                         "%s", "ssp0-port");
1285
1286                 byt_rt5640_dais[dai_index].cpus->dai_name =
1287                         byt_rt5640_cpu_dai_name;
1288         }
1289
1290         if (byt_rt5640_quirk & BYT_RT5640_MCLK_EN) {
1291                 priv->mclk = devm_clk_get(&pdev->dev, "pmc_plt_clk_3");
1292                 if (IS_ERR(priv->mclk)) {
1293                         ret_val = PTR_ERR(priv->mclk);
1294
1295                         dev_err(&pdev->dev,
1296                                 "Failed to get MCLK from pmc_plt_clk_3: %d\n",
1297                                 ret_val);
1298
1299                         /*
1300                          * Fall back to bit clock usage for -ENOENT (clock not
1301                          * available likely due to missing dependencies), bail
1302                          * for all other errors, including -EPROBE_DEFER
1303                          */
1304                         if (ret_val != -ENOENT)
1305                                 return ret_val;
1306                         byt_rt5640_quirk &= ~BYT_RT5640_MCLK_EN;
1307                 }
1308         }
1309
1310         snprintf(byt_rt5640_long_name, sizeof(byt_rt5640_long_name),
1311                  "bytcr-rt5640-%s-spk-%s-mic",
1312                  (byt_rt5640_quirk & BYT_RT5640_MONO_SPEAKER) ?
1313                         "mono" : "stereo",
1314                  map_name[BYT_RT5640_MAP(byt_rt5640_quirk)]);
1315         byt_rt5640_card.long_name = byt_rt5640_long_name;
1316
1317         /* override plaform name, if required */
1318         platform_name = mach->mach_params.platform;
1319
1320         ret_val = snd_soc_fixup_dai_links_platform_name(&byt_rt5640_card,
1321                                                         platform_name);
1322         if (ret_val)
1323                 return ret_val;
1324
1325         ret_val = devm_snd_soc_register_card(&pdev->dev, &byt_rt5640_card);
1326
1327         if (ret_val) {
1328                 dev_err(&pdev->dev, "devm_snd_soc_register_card failed %d\n",
1329                         ret_val);
1330                 return ret_val;
1331         }
1332         platform_set_drvdata(pdev, &byt_rt5640_card);
1333         return ret_val;
1334 }
1335
1336 static struct platform_driver snd_byt_rt5640_mc_driver = {
1337         .driver = {
1338                 .name = "bytcr_rt5640",
1339         },
1340         .probe = snd_byt_rt5640_mc_probe,
1341 };
1342
1343 module_platform_driver(snd_byt_rt5640_mc_driver);
1344
1345 MODULE_DESCRIPTION("ASoC Intel(R) Baytrail CR Machine driver");
1346 MODULE_AUTHOR("Subhransu S. Prusty <subhransu.s.prusty@intel.com>");
1347 MODULE_LICENSE("GPL v2");
1348 MODULE_ALIAS("platform:bytcr_rt5640");