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