1 // SPDX-License-Identifier: GPL-2.0-only 2 // 3 // rt5682s.c -- RT5682I-VS ALSA SoC audio component driver 4 // 5 // Copyright 2021 Realtek Semiconductor Corp. 6 // Author: Derek Fang <derek.fang@realtek.com> 7 // 8 9 #include <linux/module.h> 10 #include <linux/moduleparam.h> 11 #include <linux/init.h> 12 #include <linux/delay.h> 13 #include <linux/pm.h> 14 #include <linux/pm_runtime.h> 15 #include <linux/i2c.h> 16 #include <linux/platform_device.h> 17 #include <linux/spi/spi.h> 18 #include <linux/acpi.h> 19 #include <linux/gpio.h> 20 #include <linux/of_gpio.h> 21 #include <linux/mutex.h> 22 #include <sound/core.h> 23 #include <sound/pcm.h> 24 #include <sound/pcm_params.h> 25 #include <sound/jack.h> 26 #include <sound/soc.h> 27 #include <sound/soc-dapm.h> 28 #include <sound/initval.h> 29 #include <sound/tlv.h> 30 #include <sound/rt5682s.h> 31 32 #include "rt5682s.h" 33 34 #define DEVICE_ID 0x6749 35 36 static const struct rt5682s_platform_data i2s_default_platform_data = { 37 .dmic1_data_pin = RT5682S_DMIC1_DATA_GPIO2, 38 .dmic1_clk_pin = RT5682S_DMIC1_CLK_GPIO3, 39 .jd_src = RT5682S_JD1, 40 .dai_clk_names[RT5682S_DAI_WCLK_IDX] = "rt5682-dai-wclk", 41 .dai_clk_names[RT5682S_DAI_BCLK_IDX] = "rt5682-dai-bclk", 42 }; 43 44 static const char *rt5682s_supply_names[RT5682S_NUM_SUPPLIES] = { 45 "AVDD", 46 "MICVDD", 47 }; 48 49 static const struct reg_sequence patch_list[] = { 50 {RT5682S_I2C_CTRL, 0x0007}, 51 {RT5682S_DIG_IN_CTRL_1, 0x0000}, 52 {RT5682S_CHOP_DAC_2, 0x2020}, 53 {RT5682S_VREF_REC_OP_FB_CAP_CTRL_2, 0x0101}, 54 {RT5682S_VREF_REC_OP_FB_CAP_CTRL_1, 0x80c0}, 55 {RT5682S_HP_CALIB_CTRL_9, 0x0002}, 56 {RT5682S_DEPOP_1, 0x0000}, 57 {RT5682S_HP_CHARGE_PUMP_2, 0x3c15}, 58 {RT5682S_DAC1_DIG_VOL, 0xfefe}, 59 {RT5682S_SAR_IL_CMD_2, 0xac00}, 60 {RT5682S_SAR_IL_CMD_3, 0x024c}, 61 {RT5682S_CBJ_CTRL_6, 0x0804}, 62 }; 63 64 static void rt5682s_apply_patch_list(struct rt5682s_priv *rt5682s, 65 struct device *dev) 66 { 67 int ret; 68 69 ret = regmap_multi_reg_write(rt5682s->regmap, patch_list, ARRAY_SIZE(patch_list)); 70 if (ret) 71 dev_warn(dev, "Failed to apply regmap patch: %d\n", ret); 72 } 73 74 static const struct reg_default rt5682s_reg[] = { 75 {0x0002, 0x8080}, 76 {0x0003, 0x0001}, 77 {0x0005, 0x0000}, 78 {0x0006, 0x0000}, 79 {0x0008, 0x8007}, 80 {0x000b, 0x0000}, 81 {0x000f, 0x4000}, 82 {0x0010, 0x4040}, 83 {0x0011, 0x0000}, 84 {0x0012, 0x0000}, 85 {0x0013, 0x1200}, 86 {0x0014, 0x200a}, 87 {0x0015, 0x0404}, 88 {0x0016, 0x0404}, 89 {0x0017, 0x05a4}, 90 {0x0019, 0xffff}, 91 {0x001c, 0x2f2f}, 92 {0x001f, 0x0000}, 93 {0x0022, 0x5757}, 94 {0x0023, 0x0039}, 95 {0x0024, 0x000b}, 96 {0x0026, 0xc0c4}, 97 {0x0029, 0x8080}, 98 {0x002a, 0xa0a0}, 99 {0x002b, 0x0300}, 100 {0x0030, 0x0000}, 101 {0x003c, 0x08c0}, 102 {0x0044, 0x1818}, 103 {0x004b, 0x00c0}, 104 {0x004c, 0x0000}, 105 {0x004d, 0x0000}, 106 {0x0061, 0x00c0}, 107 {0x0062, 0x008a}, 108 {0x0063, 0x0800}, 109 {0x0064, 0x0000}, 110 {0x0065, 0x0000}, 111 {0x0066, 0x0030}, 112 {0x0067, 0x000c}, 113 {0x0068, 0x0000}, 114 {0x0069, 0x0000}, 115 {0x006a, 0x0000}, 116 {0x006b, 0x0000}, 117 {0x006c, 0x0000}, 118 {0x006d, 0x2200}, 119 {0x006e, 0x0810}, 120 {0x006f, 0xe4de}, 121 {0x0070, 0x3320}, 122 {0x0071, 0x0000}, 123 {0x0073, 0x0000}, 124 {0x0074, 0x0000}, 125 {0x0075, 0x0002}, 126 {0x0076, 0x0001}, 127 {0x0079, 0x0000}, 128 {0x007a, 0x0000}, 129 {0x007b, 0x0000}, 130 {0x007c, 0x0100}, 131 {0x007e, 0x0000}, 132 {0x007f, 0x0000}, 133 {0x0080, 0x0000}, 134 {0x0083, 0x0000}, 135 {0x0084, 0x0000}, 136 {0x0085, 0x0000}, 137 {0x0086, 0x0005}, 138 {0x0087, 0x0000}, 139 {0x0088, 0x0000}, 140 {0x008c, 0x0003}, 141 {0x008e, 0x0060}, 142 {0x008f, 0x4da1}, 143 {0x0091, 0x1c15}, 144 {0x0092, 0x0425}, 145 {0x0093, 0x0000}, 146 {0x0094, 0x0080}, 147 {0x0095, 0x008f}, 148 {0x0096, 0x0000}, 149 {0x0097, 0x0000}, 150 {0x0098, 0x0000}, 151 {0x0099, 0x0000}, 152 {0x009a, 0x0000}, 153 {0x009b, 0x0000}, 154 {0x009c, 0x0000}, 155 {0x009d, 0x0000}, 156 {0x009e, 0x0000}, 157 {0x009f, 0x0009}, 158 {0x00a0, 0x0000}, 159 {0x00a3, 0x0002}, 160 {0x00a4, 0x0001}, 161 {0x00b6, 0x0000}, 162 {0x00b7, 0x0000}, 163 {0x00b8, 0x0000}, 164 {0x00b9, 0x0002}, 165 {0x00be, 0x0000}, 166 {0x00c0, 0x0160}, 167 {0x00c1, 0x82a0}, 168 {0x00c2, 0x0000}, 169 {0x00d0, 0x0000}, 170 {0x00d2, 0x3300}, 171 {0x00d3, 0x2200}, 172 {0x00d4, 0x0000}, 173 {0x00d9, 0x0000}, 174 {0x00da, 0x0000}, 175 {0x00db, 0x0000}, 176 {0x00dc, 0x00c0}, 177 {0x00dd, 0x2220}, 178 {0x00de, 0x3131}, 179 {0x00df, 0x3131}, 180 {0x00e0, 0x3131}, 181 {0x00e2, 0x0000}, 182 {0x00e3, 0x4000}, 183 {0x00e4, 0x0aa0}, 184 {0x00e5, 0x3131}, 185 {0x00e6, 0x3131}, 186 {0x00e7, 0x3131}, 187 {0x00e8, 0x3131}, 188 {0x00ea, 0xb320}, 189 {0x00eb, 0x0000}, 190 {0x00f0, 0x0000}, 191 {0x00f6, 0x0000}, 192 {0x00fa, 0x0000}, 193 {0x00fb, 0x0000}, 194 {0x00fc, 0x0000}, 195 {0x00fd, 0x0000}, 196 {0x00fe, 0x10ec}, 197 {0x00ff, 0x6749}, 198 {0x0100, 0xa000}, 199 {0x010b, 0x0066}, 200 {0x010c, 0x6666}, 201 {0x010d, 0x2202}, 202 {0x010e, 0x6666}, 203 {0x010f, 0xa800}, 204 {0x0110, 0x0006}, 205 {0x0111, 0x0460}, 206 {0x0112, 0x2000}, 207 {0x0113, 0x0200}, 208 {0x0117, 0x8000}, 209 {0x0118, 0x0303}, 210 {0x0125, 0x0020}, 211 {0x0132, 0x5026}, 212 {0x0136, 0x8000}, 213 {0x0139, 0x0005}, 214 {0x013a, 0x3030}, 215 {0x013b, 0xa000}, 216 {0x013c, 0x4110}, 217 {0x013f, 0x0000}, 218 {0x0145, 0x0022}, 219 {0x0146, 0x0000}, 220 {0x0147, 0x0000}, 221 {0x0148, 0x0000}, 222 {0x0156, 0x0022}, 223 {0x0157, 0x0303}, 224 {0x0158, 0x2222}, 225 {0x0159, 0x0000}, 226 {0x0160, 0x4ec0}, 227 {0x0161, 0x0080}, 228 {0x0162, 0x0200}, 229 {0x0163, 0x0800}, 230 {0x0164, 0x0000}, 231 {0x0165, 0x0000}, 232 {0x0166, 0x0000}, 233 {0x0167, 0x000f}, 234 {0x0168, 0x000f}, 235 {0x0169, 0x0001}, 236 {0x0190, 0x4131}, 237 {0x0194, 0x0000}, 238 {0x0195, 0x0000}, 239 {0x0197, 0x0022}, 240 {0x0198, 0x0000}, 241 {0x0199, 0x0000}, 242 {0x01ac, 0x0000}, 243 {0x01ad, 0x0000}, 244 {0x01ae, 0x0000}, 245 {0x01af, 0x2000}, 246 {0x01b0, 0x0000}, 247 {0x01b1, 0x0000}, 248 {0x01b2, 0x0000}, 249 {0x01b3, 0x0017}, 250 {0x01b4, 0x004b}, 251 {0x01b5, 0x0000}, 252 {0x01b6, 0x03e8}, 253 {0x01b7, 0x0000}, 254 {0x01b8, 0x0000}, 255 {0x01b9, 0x0400}, 256 {0x01ba, 0xb5b6}, 257 {0x01bb, 0x9124}, 258 {0x01bc, 0x4924}, 259 {0x01bd, 0x0009}, 260 {0x01be, 0x0018}, 261 {0x01bf, 0x002a}, 262 {0x01c0, 0x004c}, 263 {0x01c1, 0x0097}, 264 {0x01c2, 0x01c3}, 265 {0x01c3, 0x03e9}, 266 {0x01c4, 0x1389}, 267 {0x01c5, 0xc351}, 268 {0x01c6, 0x02a0}, 269 {0x01c7, 0x0b0f}, 270 {0x01c8, 0x402f}, 271 {0x01c9, 0x0702}, 272 {0x01ca, 0x0000}, 273 {0x01cb, 0x0000}, 274 {0x01cc, 0x5757}, 275 {0x01cd, 0x5757}, 276 {0x01ce, 0x5757}, 277 {0x01cf, 0x5757}, 278 {0x01d0, 0x5757}, 279 {0x01d1, 0x5757}, 280 {0x01d2, 0x5757}, 281 {0x01d3, 0x5757}, 282 {0x01d4, 0x5757}, 283 {0x01d5, 0x5757}, 284 {0x01d6, 0x0000}, 285 {0x01d7, 0x0000}, 286 {0x01d8, 0x0162}, 287 {0x01d9, 0x0007}, 288 {0x01da, 0x0000}, 289 {0x01db, 0x0004}, 290 {0x01dc, 0x0000}, 291 {0x01de, 0x7c00}, 292 {0x01df, 0x0020}, 293 {0x01e0, 0x04c1}, 294 {0x01e1, 0x0000}, 295 {0x01e2, 0x0000}, 296 {0x01e3, 0x0000}, 297 {0x01e4, 0x0000}, 298 {0x01e5, 0x0000}, 299 {0x01e6, 0x0001}, 300 {0x01e7, 0x0000}, 301 {0x01e8, 0x0000}, 302 {0x01eb, 0x0000}, 303 {0x01ec, 0x0000}, 304 {0x01ed, 0x0000}, 305 {0x01ee, 0x0000}, 306 {0x01ef, 0x0000}, 307 {0x01f0, 0x0000}, 308 {0x01f1, 0x0000}, 309 {0x01f2, 0x0000}, 310 {0x01f3, 0x0000}, 311 {0x01f4, 0x0000}, 312 {0x0210, 0x6297}, 313 {0x0211, 0xa004}, 314 {0x0212, 0x0365}, 315 {0x0213, 0xf7ff}, 316 {0x0214, 0xf24c}, 317 {0x0215, 0x0102}, 318 {0x0216, 0x00a3}, 319 {0x0217, 0x0048}, 320 {0x0218, 0xa2c0}, 321 {0x0219, 0x0400}, 322 {0x021a, 0x00c8}, 323 {0x021b, 0x00c0}, 324 {0x021c, 0x0000}, 325 {0x021d, 0x024c}, 326 {0x02fa, 0x0000}, 327 {0x02fb, 0x0000}, 328 {0x02fc, 0x0000}, 329 {0x03fe, 0x0000}, 330 {0x03ff, 0x0000}, 331 {0x0500, 0x0000}, 332 {0x0600, 0x0000}, 333 {0x0610, 0x6666}, 334 {0x0611, 0xa9aa}, 335 {0x0620, 0x6666}, 336 {0x0621, 0xa9aa}, 337 {0x0630, 0x6666}, 338 {0x0631, 0xa9aa}, 339 {0x0640, 0x6666}, 340 {0x0641, 0xa9aa}, 341 {0x07fa, 0x0000}, 342 {0x08fa, 0x0000}, 343 {0x08fb, 0x0000}, 344 {0x0d00, 0x0000}, 345 {0x1100, 0x0000}, 346 {0x1101, 0x0000}, 347 {0x1102, 0x0000}, 348 {0x1103, 0x0000}, 349 {0x1104, 0x0000}, 350 {0x1105, 0x0000}, 351 {0x1106, 0x0000}, 352 {0x1107, 0x0000}, 353 {0x1108, 0x0000}, 354 {0x1109, 0x0000}, 355 {0x110a, 0x0000}, 356 {0x110b, 0x0000}, 357 {0x110c, 0x0000}, 358 {0x1111, 0x0000}, 359 {0x1112, 0x0000}, 360 {0x1113, 0x0000}, 361 {0x1114, 0x0000}, 362 {0x1115, 0x0000}, 363 {0x1116, 0x0000}, 364 {0x1117, 0x0000}, 365 {0x1118, 0x0000}, 366 {0x1119, 0x0000}, 367 {0x111a, 0x0000}, 368 {0x111b, 0x0000}, 369 {0x111c, 0x0000}, 370 {0x1401, 0x0404}, 371 {0x1402, 0x0007}, 372 {0x1403, 0x0365}, 373 {0x1404, 0x0210}, 374 {0x1405, 0x0365}, 375 {0x1406, 0x0210}, 376 {0x1407, 0x0000}, 377 {0x1408, 0x0000}, 378 {0x1409, 0x0000}, 379 {0x140a, 0x0000}, 380 {0x140b, 0x0000}, 381 {0x140c, 0x0000}, 382 {0x140d, 0x0000}, 383 {0x140e, 0x0000}, 384 {0x140f, 0x0000}, 385 {0x1410, 0x0000}, 386 {0x1411, 0x0000}, 387 {0x1801, 0x0004}, 388 {0x1802, 0x0000}, 389 {0x1803, 0x0000}, 390 {0x1804, 0x0000}, 391 {0x1805, 0x00ff}, 392 {0x2c00, 0x0000}, 393 {0x3400, 0x0200}, 394 {0x3404, 0x0000}, 395 {0x3405, 0x0000}, 396 {0x3406, 0x0000}, 397 {0x3407, 0x0000}, 398 {0x3408, 0x0000}, 399 {0x3409, 0x0000}, 400 {0x340a, 0x0000}, 401 {0x340b, 0x0000}, 402 {0x340c, 0x0000}, 403 {0x340d, 0x0000}, 404 {0x340e, 0x0000}, 405 {0x340f, 0x0000}, 406 {0x3410, 0x0000}, 407 {0x3411, 0x0000}, 408 {0x3412, 0x0000}, 409 {0x3413, 0x0000}, 410 {0x3414, 0x0000}, 411 {0x3415, 0x0000}, 412 {0x3424, 0x0000}, 413 {0x3425, 0x0000}, 414 {0x3426, 0x0000}, 415 {0x3427, 0x0000}, 416 {0x3428, 0x0000}, 417 {0x3429, 0x0000}, 418 {0x342a, 0x0000}, 419 {0x342b, 0x0000}, 420 {0x342c, 0x0000}, 421 {0x342d, 0x0000}, 422 {0x342e, 0x0000}, 423 {0x342f, 0x0000}, 424 {0x3430, 0x0000}, 425 {0x3431, 0x0000}, 426 {0x3432, 0x0000}, 427 {0x3433, 0x0000}, 428 {0x3434, 0x0000}, 429 {0x3435, 0x0000}, 430 {0x3440, 0x6319}, 431 {0x3441, 0x3771}, 432 {0x3500, 0x0002}, 433 {0x3501, 0x5728}, 434 {0x3b00, 0x3010}, 435 {0x3b01, 0x3300}, 436 {0x3b02, 0x2200}, 437 {0x3b03, 0x0100}, 438 }; 439 440 static bool rt5682s_volatile_register(struct device *dev, unsigned int reg) 441 { 442 switch (reg) { 443 case RT5682S_RESET: 444 case RT5682S_CBJ_CTRL_2: 445 case RT5682S_I2S1_F_DIV_CTRL_2: 446 case RT5682S_I2S2_F_DIV_CTRL_2: 447 case RT5682S_INT_ST_1: 448 case RT5682S_GPIO_ST: 449 case RT5682S_IL_CMD_1: 450 case RT5682S_4BTN_IL_CMD_1: 451 case RT5682S_AJD1_CTRL: 452 case RT5682S_VERSION_ID...RT5682S_DEVICE_ID: 453 case RT5682S_STO_NG2_CTRL_1: 454 case RT5682S_STO_NG2_CTRL_5...RT5682S_STO_NG2_CTRL_7: 455 case RT5682S_STO1_DAC_SIL_DET: 456 case RT5682S_HP_IMP_SENS_CTRL_1...RT5682S_HP_IMP_SENS_CTRL_4: 457 case RT5682S_HP_IMP_SENS_CTRL_13: 458 case RT5682S_HP_IMP_SENS_CTRL_14: 459 case RT5682S_HP_IMP_SENS_CTRL_43...RT5682S_HP_IMP_SENS_CTRL_46: 460 case RT5682S_HP_CALIB_CTRL_1: 461 case RT5682S_HP_CALIB_CTRL_10: 462 case RT5682S_HP_CALIB_ST_1...RT5682S_HP_CALIB_ST_11: 463 case RT5682S_SAR_IL_CMD_2...RT5682S_SAR_IL_CMD_5: 464 case RT5682S_SAR_IL_CMD_10: 465 case RT5682S_SAR_IL_CMD_11: 466 case RT5682S_VERSION_ID_HIDE: 467 case RT5682S_VERSION_ID_CUS: 468 case RT5682S_I2C_TRANS_CTRL: 469 case RT5682S_DMIC_FLOAT_DET: 470 case RT5682S_HA_CMP_OP_1: 471 case RT5682S_NEW_CBJ_DET_CTL_10...RT5682S_NEW_CBJ_DET_CTL_16: 472 case RT5682S_CLK_SW_TEST_1: 473 case RT5682S_CLK_SW_TEST_2: 474 case RT5682S_EFUSE_READ_1...RT5682S_EFUSE_READ_18: 475 case RT5682S_PILOT_DIG_CTL_1: 476 return true; 477 default: 478 return false; 479 } 480 } 481 482 static bool rt5682s_readable_register(struct device *dev, unsigned int reg) 483 { 484 switch (reg) { 485 case RT5682S_RESET: 486 case RT5682S_VERSION_ID: 487 case RT5682S_VENDOR_ID: 488 case RT5682S_DEVICE_ID: 489 case RT5682S_HP_CTRL_1: 490 case RT5682S_HP_CTRL_2: 491 case RT5682S_HPL_GAIN: 492 case RT5682S_HPR_GAIN: 493 case RT5682S_I2C_CTRL: 494 case RT5682S_CBJ_BST_CTRL: 495 case RT5682S_CBJ_DET_CTRL: 496 case RT5682S_CBJ_CTRL_1...RT5682S_CBJ_CTRL_8: 497 case RT5682S_DAC1_DIG_VOL: 498 case RT5682S_STO1_ADC_DIG_VOL: 499 case RT5682S_STO1_ADC_BOOST: 500 case RT5682S_HP_IMP_GAIN_1: 501 case RT5682S_HP_IMP_GAIN_2: 502 case RT5682S_SIDETONE_CTRL: 503 case RT5682S_STO1_ADC_MIXER: 504 case RT5682S_AD_DA_MIXER: 505 case RT5682S_STO1_DAC_MIXER: 506 case RT5682S_A_DAC1_MUX: 507 case RT5682S_DIG_INF2_DATA: 508 case RT5682S_REC_MIXER: 509 case RT5682S_CAL_REC: 510 case RT5682S_HP_ANA_OST_CTRL_1...RT5682S_HP_ANA_OST_CTRL_3: 511 case RT5682S_PWR_DIG_1...RT5682S_PWR_MIXER: 512 case RT5682S_MB_CTRL: 513 case RT5682S_CLK_GATE_TCON_1...RT5682S_CLK_GATE_TCON_3: 514 case RT5682S_CLK_DET...RT5682S_LPF_AD_DMIC: 515 case RT5682S_I2S1_SDP: 516 case RT5682S_I2S2_SDP: 517 case RT5682S_ADDA_CLK_1: 518 case RT5682S_ADDA_CLK_2: 519 case RT5682S_I2S1_F_DIV_CTRL_1: 520 case RT5682S_I2S1_F_DIV_CTRL_2: 521 case RT5682S_TDM_CTRL: 522 case RT5682S_TDM_ADDA_CTRL_1: 523 case RT5682S_TDM_ADDA_CTRL_2: 524 case RT5682S_DATA_SEL_CTRL_1: 525 case RT5682S_TDM_TCON_CTRL_1: 526 case RT5682S_TDM_TCON_CTRL_2: 527 case RT5682S_GLB_CLK: 528 case RT5682S_PLL_TRACK_1...RT5682S_PLL_TRACK_6: 529 case RT5682S_PLL_TRACK_11: 530 case RT5682S_DEPOP_1: 531 case RT5682S_HP_CHARGE_PUMP_1: 532 case RT5682S_HP_CHARGE_PUMP_2: 533 case RT5682S_HP_CHARGE_PUMP_3: 534 case RT5682S_MICBIAS_1...RT5682S_MICBIAS_3: 535 case RT5682S_PLL_TRACK_12...RT5682S_PLL_CTRL_7: 536 case RT5682S_RC_CLK_CTRL: 537 case RT5682S_I2S2_M_CLK_CTRL_1: 538 case RT5682S_I2S2_F_DIV_CTRL_1: 539 case RT5682S_I2S2_F_DIV_CTRL_2: 540 case RT5682S_IRQ_CTRL_1...RT5682S_IRQ_CTRL_4: 541 case RT5682S_INT_ST_1: 542 case RT5682S_GPIO_CTRL_1: 543 case RT5682S_GPIO_CTRL_2: 544 case RT5682S_GPIO_ST: 545 case RT5682S_HP_AMP_DET_CTRL_1: 546 case RT5682S_MID_HP_AMP_DET: 547 case RT5682S_LOW_HP_AMP_DET: 548 case RT5682S_DELAY_BUF_CTRL: 549 case RT5682S_SV_ZCD_1: 550 case RT5682S_SV_ZCD_2: 551 case RT5682S_IL_CMD_1...RT5682S_IL_CMD_6: 552 case RT5682S_4BTN_IL_CMD_1...RT5682S_4BTN_IL_CMD_7: 553 case RT5682S_ADC_STO1_HP_CTRL_1: 554 case RT5682S_ADC_STO1_HP_CTRL_2: 555 case RT5682S_AJD1_CTRL: 556 case RT5682S_JD_CTRL_1: 557 case RT5682S_DUMMY_1...RT5682S_DUMMY_3: 558 case RT5682S_DAC_ADC_DIG_VOL1: 559 case RT5682S_BIAS_CUR_CTRL_2...RT5682S_BIAS_CUR_CTRL_10: 560 case RT5682S_VREF_REC_OP_FB_CAP_CTRL_1: 561 case RT5682S_VREF_REC_OP_FB_CAP_CTRL_2: 562 case RT5682S_CHARGE_PUMP_1: 563 case RT5682S_DIG_IN_CTRL_1: 564 case RT5682S_PAD_DRIVING_CTRL: 565 case RT5682S_CHOP_DAC_1: 566 case RT5682S_CHOP_DAC_2: 567 case RT5682S_CHOP_ADC: 568 case RT5682S_CALIB_ADC_CTRL: 569 case RT5682S_VOL_TEST: 570 case RT5682S_SPKVDD_DET_ST: 571 case RT5682S_TEST_MODE_CTRL_1...RT5682S_TEST_MODE_CTRL_4: 572 case RT5682S_PLL_INTERNAL_1...RT5682S_PLL_INTERNAL_4: 573 case RT5682S_STO_NG2_CTRL_1...RT5682S_STO_NG2_CTRL_10: 574 case RT5682S_STO1_DAC_SIL_DET: 575 case RT5682S_SIL_PSV_CTRL1: 576 case RT5682S_SIL_PSV_CTRL2: 577 case RT5682S_SIL_PSV_CTRL3: 578 case RT5682S_SIL_PSV_CTRL4: 579 case RT5682S_SIL_PSV_CTRL5: 580 case RT5682S_HP_IMP_SENS_CTRL_1...RT5682S_HP_IMP_SENS_CTRL_46: 581 case RT5682S_HP_LOGIC_CTRL_1...RT5682S_HP_LOGIC_CTRL_3: 582 case RT5682S_HP_CALIB_CTRL_1...RT5682S_HP_CALIB_CTRL_11: 583 case RT5682S_HP_CALIB_ST_1...RT5682S_HP_CALIB_ST_11: 584 case RT5682S_SAR_IL_CMD_1...RT5682S_SAR_IL_CMD_14: 585 case RT5682S_DUMMY_4...RT5682S_DUMMY_6: 586 case RT5682S_VERSION_ID_HIDE: 587 case RT5682S_VERSION_ID_CUS: 588 case RT5682S_SCAN_CTL: 589 case RT5682S_HP_AMP_DET: 590 case RT5682S_BIAS_CUR_CTRL_11: 591 case RT5682S_BIAS_CUR_CTRL_12: 592 case RT5682S_BIAS_CUR_CTRL_13: 593 case RT5682S_BIAS_CUR_CTRL_14: 594 case RT5682S_BIAS_CUR_CTRL_15: 595 case RT5682S_BIAS_CUR_CTRL_16: 596 case RT5682S_BIAS_CUR_CTRL_17: 597 case RT5682S_BIAS_CUR_CTRL_18: 598 case RT5682S_I2C_TRANS_CTRL: 599 case RT5682S_DUMMY_7: 600 case RT5682S_DUMMY_8: 601 case RT5682S_DMIC_FLOAT_DET: 602 case RT5682S_HA_CMP_OP_1...RT5682S_HA_CMP_OP_13: 603 case RT5682S_HA_CMP_OP_14...RT5682S_HA_CMP_OP_25: 604 case RT5682S_NEW_CBJ_DET_CTL_1...RT5682S_NEW_CBJ_DET_CTL_16: 605 case RT5682S_DA_FILTER_1...RT5682S_DA_FILTER_5: 606 case RT5682S_CLK_SW_TEST_1: 607 case RT5682S_CLK_SW_TEST_2: 608 case RT5682S_CLK_SW_TEST_3...RT5682S_CLK_SW_TEST_14: 609 case RT5682S_EFUSE_MANU_WRITE_1...RT5682S_EFUSE_MANU_WRITE_6: 610 case RT5682S_EFUSE_READ_1...RT5682S_EFUSE_READ_18: 611 case RT5682S_EFUSE_TIMING_CTL_1: 612 case RT5682S_EFUSE_TIMING_CTL_2: 613 case RT5682S_PILOT_DIG_CTL_1: 614 case RT5682S_PILOT_DIG_CTL_2: 615 case RT5682S_HP_AMP_DET_CTL_1...RT5682S_HP_AMP_DET_CTL_4: 616 return true; 617 default: 618 return false; 619 } 620 } 621 622 static void rt5682s_reset(struct rt5682s_priv *rt5682s) 623 { 624 regmap_write(rt5682s->regmap, RT5682S_RESET, 0); 625 } 626 627 static int rt5682s_button_detect(struct snd_soc_component *component) 628 { 629 int btn_type, val; 630 631 val = snd_soc_component_read(component, RT5682S_4BTN_IL_CMD_1); 632 btn_type = val & 0xfff0; 633 snd_soc_component_write(component, RT5682S_4BTN_IL_CMD_1, val); 634 dev_dbg(component->dev, "%s btn_type=%x\n", __func__, btn_type); 635 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_2, 636 RT5682S_SAR_ADC_PSV_MASK, RT5682S_SAR_ADC_PSV_ENTRY); 637 638 return btn_type; 639 } 640 641 enum { 642 SAR_PWR_OFF, 643 SAR_PWR_NORMAL, 644 SAR_PWR_SAVING, 645 }; 646 647 static void rt5682s_sar_power_mode(struct snd_soc_component *component, 648 int mode, int jd_step) 649 { 650 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 651 652 mutex_lock(&rt5682s->sar_mutex); 653 654 switch (mode) { 655 case SAR_PWR_SAVING: 656 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_3, 657 RT5682S_CBJ_IN_BUF_MASK, RT5682S_CBJ_IN_BUF_DIS); 658 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_1, 659 RT5682S_MB1_PATH_MASK | RT5682S_MB2_PATH_MASK, 660 RT5682S_CTRL_MB1_REG | RT5682S_CTRL_MB2_REG); 661 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_1, 662 RT5682S_SAR_BUTDET_MASK | RT5682S_SAR_BUTDET_POW_MASK | 663 RT5682S_SAR_SEL_MB1_2_CTL_MASK, RT5682S_SAR_BUTDET_DIS | 664 RT5682S_SAR_BUTDET_POW_SAV | RT5682S_SAR_SEL_MB1_2_MANU); 665 usleep_range(5000, 5500); 666 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_1, 667 RT5682S_SAR_BUTDET_MASK, RT5682S_SAR_BUTDET_EN); 668 usleep_range(5000, 5500); 669 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_2, 670 RT5682S_SAR_ADC_PSV_MASK, RT5682S_SAR_ADC_PSV_ENTRY); 671 break; 672 case SAR_PWR_NORMAL: 673 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_3, 674 RT5682S_CBJ_IN_BUF_MASK, RT5682S_CBJ_IN_BUF_EN); 675 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_1, 676 RT5682S_MB1_PATH_MASK | RT5682S_MB2_PATH_MASK, 677 RT5682S_CTRL_MB1_FSM | RT5682S_CTRL_MB2_FSM); 678 if (!jd_step) { 679 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_1, 680 RT5682S_SAR_SEL_MB1_2_CTL_MASK, RT5682S_SAR_SEL_MB1_2_AUTO); 681 usleep_range(5000, 5500); 682 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_1, 683 RT5682S_SAR_BUTDET_MASK | RT5682S_SAR_BUTDET_POW_MASK, 684 RT5682S_SAR_BUTDET_EN | RT5682S_SAR_BUTDET_POW_NORM); 685 } 686 break; 687 case SAR_PWR_OFF: 688 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_1, 689 RT5682S_SAR_BUTDET_MASK | RT5682S_SAR_BUTDET_POW_MASK | 690 RT5682S_SAR_SEL_MB1_2_CTL_MASK, RT5682S_SAR_BUTDET_DIS | 691 RT5682S_SAR_BUTDET_POW_SAV | RT5682S_SAR_SEL_MB1_2_MANU); 692 break; 693 default: 694 dev_err(component->dev, "Invalid SAR Power mode: %d\n", mode); 695 break; 696 } 697 698 mutex_unlock(&rt5682s->sar_mutex); 699 } 700 701 static void rt5682s_enable_push_button_irq(struct snd_soc_component *component) 702 { 703 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_13, 704 RT5682S_SAR_SOUR_MASK, RT5682S_SAR_SOUR_BTN); 705 snd_soc_component_write(component, RT5682S_IL_CMD_1, 0x0040); 706 snd_soc_component_update_bits(component, RT5682S_4BTN_IL_CMD_2, 707 RT5682S_4BTN_IL_MASK | RT5682S_4BTN_IL_RST_MASK, 708 RT5682S_4BTN_IL_EN | RT5682S_4BTN_IL_NOR); 709 snd_soc_component_update_bits(component, RT5682S_IRQ_CTRL_3, 710 RT5682S_IL_IRQ_MASK, RT5682S_IL_IRQ_EN); 711 } 712 713 static void rt5682s_disable_push_button_irq(struct snd_soc_component *component) 714 { 715 snd_soc_component_update_bits(component, RT5682S_IRQ_CTRL_3, 716 RT5682S_IL_IRQ_MASK, RT5682S_IL_IRQ_DIS); 717 snd_soc_component_update_bits(component, RT5682S_4BTN_IL_CMD_2, 718 RT5682S_4BTN_IL_MASK, RT5682S_4BTN_IL_DIS); 719 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_13, 720 RT5682S_SAR_SOUR_MASK, RT5682S_SAR_SOUR_TYPE); 721 } 722 723 /** 724 * rt5682s_headset_detect - Detect headset. 725 * @component: SoC audio component device. 726 * @jack_insert: Jack insert or not. 727 * 728 * Detect whether is headset or not when jack inserted. 729 * 730 * Returns detect status. 731 */ 732 static int rt5682s_headset_detect(struct snd_soc_component *component, int jack_insert) 733 { 734 unsigned int val, count; 735 int jack_type = 0; 736 737 if (jack_insert) { 738 rt5682s_disable_push_button_irq(component); 739 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 740 RT5682S_PWR_VREF1 | RT5682S_PWR_VREF2 | RT5682S_PWR_MB, 741 RT5682S_PWR_VREF1 | RT5682S_PWR_VREF2 | RT5682S_PWR_MB); 742 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 743 RT5682S_PWR_FV1 | RT5682S_PWR_FV2, 0); 744 usleep_range(15000, 20000); 745 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 746 RT5682S_PWR_FV1 | RT5682S_PWR_FV2, 747 RT5682S_PWR_FV1 | RT5682S_PWR_FV2); 748 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_3, 749 RT5682S_PWR_CBJ, RT5682S_PWR_CBJ); 750 snd_soc_component_write(component, RT5682S_SAR_IL_CMD_3, 0x0365); 751 snd_soc_component_update_bits(component, RT5682S_HP_CHARGE_PUMP_2, 752 RT5682S_OSW_L_MASK | RT5682S_OSW_R_MASK, 753 RT5682S_OSW_L_DIS | RT5682S_OSW_R_DIS); 754 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_13, 755 RT5682S_SAR_SOUR_MASK, RT5682S_SAR_SOUR_TYPE); 756 rt5682s_sar_power_mode(component, SAR_PWR_NORMAL, 1); 757 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_1, 758 RT5682S_TRIG_JD_MASK, RT5682S_TRIG_JD_LOW); 759 usleep_range(45000, 50000); 760 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_1, 761 RT5682S_TRIG_JD_MASK, RT5682S_TRIG_JD_HIGH); 762 763 count = 0; 764 do { 765 usleep_range(10000, 15000); 766 val = snd_soc_component_read(component, RT5682S_CBJ_CTRL_2) 767 & RT5682S_JACK_TYPE_MASK; 768 count++; 769 } while (val == 0 && count < 50); 770 771 dev_dbg(component->dev, "%s, val=%d, count=%d\n", __func__, val, count); 772 773 switch (val) { 774 case 0x1: 775 case 0x2: 776 jack_type = SND_JACK_HEADSET; 777 snd_soc_component_write(component, RT5682S_SAR_IL_CMD_3, 0x024c); 778 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_1, 779 RT5682S_FAST_OFF_MASK, RT5682S_FAST_OFF_EN); 780 snd_soc_component_update_bits(component, RT5682S_SAR_IL_CMD_1, 781 RT5682S_SAR_SEL_MB1_2_MASK, val << RT5682S_SAR_SEL_MB1_2_SFT); 782 if (!snd_soc_dapm_get_pin_status(&component->dapm, "SAR")) 783 rt5682s_sar_power_mode(component, SAR_PWR_SAVING, 1); 784 rt5682s_enable_push_button_irq(component); 785 break; 786 default: 787 jack_type = SND_JACK_HEADPHONE; 788 break; 789 } 790 snd_soc_component_update_bits(component, RT5682S_HP_CHARGE_PUMP_2, 791 RT5682S_OSW_L_MASK | RT5682S_OSW_R_MASK, 792 RT5682S_OSW_L_EN | RT5682S_OSW_R_EN); 793 usleep_range(35000, 40000); 794 } else { 795 rt5682s_sar_power_mode(component, SAR_PWR_OFF, 1); 796 rt5682s_disable_push_button_irq(component); 797 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_1, 798 RT5682S_TRIG_JD_MASK, RT5682S_TRIG_JD_LOW); 799 800 if (!snd_soc_dapm_get_pin_status(&component->dapm, "MICBIAS")) 801 snd_soc_component_update_bits(component, 802 RT5682S_PWR_ANLG_1, RT5682S_PWR_MB, 0); 803 if (!snd_soc_dapm_get_pin_status(&component->dapm, "Vref2")) 804 snd_soc_component_update_bits(component, 805 RT5682S_PWR_ANLG_1, RT5682S_PWR_VREF2, 0); 806 807 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_3, 808 RT5682S_PWR_CBJ, 0); 809 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_1, 810 RT5682S_FAST_OFF_MASK, RT5682S_FAST_OFF_DIS); 811 snd_soc_component_update_bits(component, RT5682S_CBJ_CTRL_3, 812 RT5682S_CBJ_IN_BUF_MASK, RT5682S_CBJ_IN_BUF_DIS); 813 jack_type = 0; 814 } 815 816 dev_dbg(component->dev, "jack_type = %d\n", jack_type); 817 818 return jack_type; 819 } 820 821 static void rt5682s_jack_detect_handler(struct work_struct *work) 822 { 823 struct rt5682s_priv *rt5682s = 824 container_of(work, struct rt5682s_priv, jack_detect_work.work); 825 int val, btn_type; 826 827 while (!rt5682s->component) 828 usleep_range(10000, 15000); 829 830 while (!rt5682s->component->card->instantiated) 831 usleep_range(10000, 15000); 832 833 mutex_lock(&rt5682s->jdet_mutex); 834 mutex_lock(&rt5682s->calibrate_mutex); 835 836 val = snd_soc_component_read(rt5682s->component, RT5682S_AJD1_CTRL) 837 & RT5682S_JDH_RS_MASK; 838 if (!val) { 839 /* jack in */ 840 if (rt5682s->jack_type == 0) { 841 /* jack was out, report jack type */ 842 rt5682s->jack_type = rt5682s_headset_detect(rt5682s->component, 1); 843 rt5682s->irq_work_delay_time = 0; 844 } else if ((rt5682s->jack_type & SND_JACK_HEADSET) == SND_JACK_HEADSET) { 845 /* jack is already in, report button event */ 846 rt5682s->jack_type = SND_JACK_HEADSET; 847 btn_type = rt5682s_button_detect(rt5682s->component); 848 /** 849 * rt5682s can report three kinds of button behavior, 850 * one click, double click and hold. However, 851 * currently we will report button pressed/released 852 * event. So all the three button behaviors are 853 * treated as button pressed. 854 */ 855 switch (btn_type) { 856 case 0x8000: 857 case 0x4000: 858 case 0x2000: 859 rt5682s->jack_type |= SND_JACK_BTN_0; 860 break; 861 case 0x1000: 862 case 0x0800: 863 case 0x0400: 864 rt5682s->jack_type |= SND_JACK_BTN_1; 865 break; 866 case 0x0200: 867 case 0x0100: 868 case 0x0080: 869 rt5682s->jack_type |= SND_JACK_BTN_2; 870 break; 871 case 0x0040: 872 case 0x0020: 873 case 0x0010: 874 rt5682s->jack_type |= SND_JACK_BTN_3; 875 break; 876 case 0x0000: /* unpressed */ 877 break; 878 default: 879 dev_err(rt5682s->component->dev, 880 "Unexpected button code 0x%04x\n", btn_type); 881 break; 882 } 883 } 884 } else { 885 /* jack out */ 886 rt5682s->jack_type = rt5682s_headset_detect(rt5682s->component, 0); 887 rt5682s->irq_work_delay_time = 50; 888 } 889 890 snd_soc_jack_report(rt5682s->hs_jack, rt5682s->jack_type, 891 SND_JACK_HEADSET | SND_JACK_BTN_0 | SND_JACK_BTN_1 | 892 SND_JACK_BTN_2 | SND_JACK_BTN_3); 893 894 if (rt5682s->jack_type & (SND_JACK_BTN_0 | SND_JACK_BTN_1 | 895 SND_JACK_BTN_2 | SND_JACK_BTN_3)) 896 schedule_delayed_work(&rt5682s->jd_check_work, 0); 897 else 898 cancel_delayed_work_sync(&rt5682s->jd_check_work); 899 900 mutex_unlock(&rt5682s->calibrate_mutex); 901 mutex_unlock(&rt5682s->jdet_mutex); 902 } 903 904 static void rt5682s_jd_check_handler(struct work_struct *work) 905 { 906 struct rt5682s_priv *rt5682s = 907 container_of(work, struct rt5682s_priv, jd_check_work.work); 908 909 if (snd_soc_component_read(rt5682s->component, RT5682S_AJD1_CTRL) 910 & RT5682S_JDH_RS_MASK) { 911 /* jack out */ 912 rt5682s->jack_type = rt5682s_headset_detect(rt5682s->component, 0); 913 914 snd_soc_jack_report(rt5682s->hs_jack, rt5682s->jack_type, 915 SND_JACK_HEADSET | SND_JACK_BTN_0 | SND_JACK_BTN_1 | 916 SND_JACK_BTN_2 | SND_JACK_BTN_3); 917 } else { 918 schedule_delayed_work(&rt5682s->jd_check_work, 500); 919 } 920 } 921 922 static irqreturn_t rt5682s_irq(int irq, void *data) 923 { 924 struct rt5682s_priv *rt5682s = data; 925 926 mod_delayed_work(system_power_efficient_wq, &rt5682s->jack_detect_work, 927 msecs_to_jiffies(rt5682s->irq_work_delay_time)); 928 929 return IRQ_HANDLED; 930 } 931 932 static int rt5682s_set_jack_detect(struct snd_soc_component *component, 933 struct snd_soc_jack *hs_jack, void *data) 934 { 935 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 936 int btndet_delay = 16; 937 938 rt5682s->hs_jack = hs_jack; 939 940 if (!hs_jack) { 941 regmap_update_bits(rt5682s->regmap, RT5682S_IRQ_CTRL_2, 942 RT5682S_JD1_EN_MASK, RT5682S_JD1_DIS); 943 regmap_update_bits(rt5682s->regmap, RT5682S_RC_CLK_CTRL, 944 RT5682S_POW_JDH, 0); 945 cancel_delayed_work_sync(&rt5682s->jack_detect_work); 946 947 return 0; 948 } 949 950 switch (rt5682s->pdata.jd_src) { 951 case RT5682S_JD1: 952 regmap_update_bits(rt5682s->regmap, RT5682S_CBJ_CTRL_5, 953 RT5682S_JD_FAST_OFF_SRC_MASK, RT5682S_JD_FAST_OFF_SRC_JDH); 954 regmap_update_bits(rt5682s->regmap, RT5682S_CBJ_CTRL_2, 955 RT5682S_EXT_JD_SRC, RT5682S_EXT_JD_SRC_MANUAL); 956 regmap_update_bits(rt5682s->regmap, RT5682S_CBJ_CTRL_1, 957 RT5682S_EMB_JD_MASK | RT5682S_DET_TYPE | 958 RT5682S_POL_FAST_OFF_MASK | RT5682S_MIC_CAP_MASK, 959 RT5682S_EMB_JD_EN | RT5682S_DET_TYPE | 960 RT5682S_POL_FAST_OFF_HIGH | RT5682S_MIC_CAP_HS); 961 regmap_update_bits(rt5682s->regmap, RT5682S_SAR_IL_CMD_1, 962 RT5682S_SAR_POW_MASK, RT5682S_SAR_POW_EN); 963 regmap_update_bits(rt5682s->regmap, RT5682S_GPIO_CTRL_1, 964 RT5682S_GP1_PIN_MASK, RT5682S_GP1_PIN_IRQ); 965 regmap_update_bits(rt5682s->regmap, RT5682S_PWR_ANLG_3, 966 RT5682S_PWR_BGLDO, RT5682S_PWR_BGLDO); 967 regmap_update_bits(rt5682s->regmap, RT5682S_PWR_ANLG_2, 968 RT5682S_PWR_JD_MASK, RT5682S_PWR_JD_ENABLE); 969 regmap_update_bits(rt5682s->regmap, RT5682S_RC_CLK_CTRL, 970 RT5682S_POW_IRQ | RT5682S_POW_JDH, RT5682S_POW_IRQ | RT5682S_POW_JDH); 971 regmap_update_bits(rt5682s->regmap, RT5682S_IRQ_CTRL_2, 972 RT5682S_JD1_EN_MASK | RT5682S_JD1_POL_MASK, 973 RT5682S_JD1_EN | RT5682S_JD1_POL_NOR); 974 regmap_update_bits(rt5682s->regmap, RT5682S_4BTN_IL_CMD_4, 975 RT5682S_4BTN_IL_HOLD_WIN_MASK | RT5682S_4BTN_IL_CLICK_WIN_MASK, 976 (btndet_delay << RT5682S_4BTN_IL_HOLD_WIN_SFT | btndet_delay)); 977 regmap_update_bits(rt5682s->regmap, RT5682S_4BTN_IL_CMD_5, 978 RT5682S_4BTN_IL_HOLD_WIN_MASK | RT5682S_4BTN_IL_CLICK_WIN_MASK, 979 (btndet_delay << RT5682S_4BTN_IL_HOLD_WIN_SFT | btndet_delay)); 980 regmap_update_bits(rt5682s->regmap, RT5682S_4BTN_IL_CMD_6, 981 RT5682S_4BTN_IL_HOLD_WIN_MASK | RT5682S_4BTN_IL_CLICK_WIN_MASK, 982 (btndet_delay << RT5682S_4BTN_IL_HOLD_WIN_SFT | btndet_delay)); 983 regmap_update_bits(rt5682s->regmap, RT5682S_4BTN_IL_CMD_7, 984 RT5682S_4BTN_IL_HOLD_WIN_MASK | RT5682S_4BTN_IL_CLICK_WIN_MASK, 985 (btndet_delay << RT5682S_4BTN_IL_HOLD_WIN_SFT | btndet_delay)); 986 987 mod_delayed_work(system_power_efficient_wq, 988 &rt5682s->jack_detect_work, msecs_to_jiffies(250)); 989 break; 990 991 case RT5682S_JD_NULL: 992 regmap_update_bits(rt5682s->regmap, RT5682S_IRQ_CTRL_2, 993 RT5682S_JD1_EN_MASK, RT5682S_JD1_DIS); 994 regmap_update_bits(rt5682s->regmap, RT5682S_RC_CLK_CTRL, 995 RT5682S_POW_JDH, 0); 996 break; 997 998 default: 999 dev_warn(component->dev, "Wrong JD source\n"); 1000 break; 1001 } 1002 1003 return 0; 1004 } 1005 1006 static const DECLARE_TLV_DB_SCALE(dac_vol_tlv, -9562, 75, 0); 1007 static const DECLARE_TLV_DB_SCALE(adc_vol_tlv, -1725, 75, 0); 1008 static const DECLARE_TLV_DB_SCALE(adc_bst_tlv, 0, 1200, 0); 1009 static const DECLARE_TLV_DB_SCALE(cbj_bst_tlv, -1200, 150, 0); 1010 1011 static const struct snd_kcontrol_new rt5682s_snd_controls[] = { 1012 /* DAC Digital Volume */ 1013 SOC_DOUBLE_TLV("DAC1 Playback Volume", RT5682S_DAC1_DIG_VOL, 1014 RT5682S_L_VOL_SFT + 1, RT5682S_R_VOL_SFT + 1, 127, 0, dac_vol_tlv), 1015 1016 /* CBJ Boost Volume */ 1017 SOC_SINGLE_TLV("CBJ Boost Volume", RT5682S_REC_MIXER, 1018 RT5682S_BST_CBJ_SFT, 35, 0, cbj_bst_tlv), 1019 1020 /* ADC Digital Volume Control */ 1021 SOC_DOUBLE("STO1 ADC Capture Switch", RT5682S_STO1_ADC_DIG_VOL, 1022 RT5682S_L_MUTE_SFT, RT5682S_R_MUTE_SFT, 1, 1), 1023 SOC_DOUBLE_TLV("STO1 ADC Capture Volume", RT5682S_STO1_ADC_DIG_VOL, 1024 RT5682S_L_VOL_SFT + 1, RT5682S_R_VOL_SFT + 1, 63, 0, adc_vol_tlv), 1025 1026 /* ADC Boost Volume Control */ 1027 SOC_DOUBLE_TLV("STO1 ADC Boost Gain Volume", RT5682S_STO1_ADC_BOOST, 1028 RT5682S_STO1_ADC_L_BST_SFT, RT5682S_STO1_ADC_R_BST_SFT, 3, 0, adc_bst_tlv), 1029 }; 1030 1031 /** 1032 * rt5682s_sel_asrc_clk_src - select ASRC clock source for a set of filters 1033 * @component: SoC audio component device. 1034 * @filter_mask: mask of filters. 1035 * @clk_src: clock source 1036 * 1037 * The ASRC function is for asynchronous MCLK and LRCK. Also, since RT5682S can 1038 * only support standard 32fs or 64fs i2s format, ASRC should be enabled to 1039 * support special i2s clock format such as Intel's 100fs(100 * sampling rate). 1040 * ASRC function will track i2s clock and generate a corresponding system clock 1041 * for codec. This function provides an API to select the clock source for a 1042 * set of filters specified by the mask. And the component driver will turn on 1043 * ASRC for these filters if ASRC is selected as their clock source. 1044 */ 1045 int rt5682s_sel_asrc_clk_src(struct snd_soc_component *component, 1046 unsigned int filter_mask, unsigned int clk_src) 1047 { 1048 switch (clk_src) { 1049 case RT5682S_CLK_SEL_SYS: 1050 case RT5682S_CLK_SEL_I2S1_ASRC: 1051 case RT5682S_CLK_SEL_I2S2_ASRC: 1052 break; 1053 1054 default: 1055 return -EINVAL; 1056 } 1057 1058 if (filter_mask & RT5682S_DA_STEREO1_FILTER) { 1059 snd_soc_component_update_bits(component, RT5682S_PLL_TRACK_2, 1060 RT5682S_FILTER_CLK_SEL_MASK, clk_src << RT5682S_FILTER_CLK_SEL_SFT); 1061 } 1062 1063 if (filter_mask & RT5682S_AD_STEREO1_FILTER) { 1064 snd_soc_component_update_bits(component, RT5682S_PLL_TRACK_3, 1065 RT5682S_FILTER_CLK_SEL_MASK, clk_src << RT5682S_FILTER_CLK_SEL_SFT); 1066 } 1067 1068 snd_soc_component_update_bits(component, RT5682S_PLL_TRACK_11, 1069 RT5682S_ASRCIN_AUTO_CLKOUT_MASK, RT5682S_ASRCIN_AUTO_CLKOUT_EN); 1070 1071 return 0; 1072 } 1073 EXPORT_SYMBOL_GPL(rt5682s_sel_asrc_clk_src); 1074 1075 static int rt5682s_div_sel(struct rt5682s_priv *rt5682s, 1076 int target, const int div[], int size) 1077 { 1078 int i; 1079 1080 if (rt5682s->sysclk < target) { 1081 dev_err(rt5682s->component->dev, 1082 "sysclk rate %d is too low\n", rt5682s->sysclk); 1083 return 0; 1084 } 1085 1086 for (i = 0; i < size - 1; i++) { 1087 dev_dbg(rt5682s->component->dev, "div[%d]=%d\n", i, div[i]); 1088 if (target * div[i] == rt5682s->sysclk) 1089 return i; 1090 if (target * div[i + 1] > rt5682s->sysclk) { 1091 dev_dbg(rt5682s->component->dev, 1092 "can't find div for sysclk %d\n", rt5682s->sysclk); 1093 return i; 1094 } 1095 } 1096 1097 if (target * div[i] < rt5682s->sysclk) 1098 dev_err(rt5682s->component->dev, 1099 "sysclk rate %d is too high\n", rt5682s->sysclk); 1100 1101 return size - 1; 1102 } 1103 1104 static int get_clk_info(int sclk, int rate) 1105 { 1106 int i; 1107 static const int pd[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48}; 1108 1109 if (sclk <= 0 || rate <= 0) 1110 return -EINVAL; 1111 1112 rate = rate << 8; 1113 for (i = 0; i < ARRAY_SIZE(pd); i++) 1114 if (sclk == rate * pd[i]) 1115 return i; 1116 1117 return -EINVAL; 1118 } 1119 1120 /** 1121 * set_dmic_clk - Set parameter of dmic. 1122 * 1123 * @w: DAPM widget. 1124 * @kcontrol: The kcontrol of this widget. 1125 * @event: Event id. 1126 * 1127 * Choose dmic clock between 1MHz and 3MHz. 1128 * It is better for clock to approximate 3MHz. 1129 */ 1130 static int set_dmic_clk(struct snd_soc_dapm_widget *w, 1131 struct snd_kcontrol *kcontrol, int event) 1132 { 1133 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1134 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1135 int idx, dmic_clk_rate = 3072000; 1136 static const int div[] = {2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128}; 1137 1138 if (rt5682s->pdata.dmic_clk_rate) 1139 dmic_clk_rate = rt5682s->pdata.dmic_clk_rate; 1140 1141 idx = rt5682s_div_sel(rt5682s, dmic_clk_rate, div, ARRAY_SIZE(div)); 1142 1143 snd_soc_component_update_bits(component, RT5682S_DMIC_CTRL_1, 1144 RT5682S_DMIC_CLK_MASK, idx << RT5682S_DMIC_CLK_SFT); 1145 1146 return 0; 1147 } 1148 1149 static int set_filter_clk(struct snd_soc_dapm_widget *w, 1150 struct snd_kcontrol *kcontrol, int event) 1151 { 1152 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1153 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1154 int ref, val, reg, idx; 1155 static const int div_f[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48}; 1156 static const int div_o[] = {1, 2, 4, 6, 8, 12, 16, 24, 32, 48}; 1157 1158 val = snd_soc_component_read(component, RT5682S_GPIO_CTRL_1) 1159 & RT5682S_GP4_PIN_MASK; 1160 1161 if (w->shift == RT5682S_PWR_ADC_S1F_BIT && val == RT5682S_GP4_PIN_ADCDAT2) 1162 ref = 256 * rt5682s->lrck[RT5682S_AIF2]; 1163 else 1164 ref = 256 * rt5682s->lrck[RT5682S_AIF1]; 1165 1166 idx = rt5682s_div_sel(rt5682s, ref, div_f, ARRAY_SIZE(div_f)); 1167 1168 if (w->shift == RT5682S_PWR_ADC_S1F_BIT) 1169 reg = RT5682S_PLL_TRACK_3; 1170 else 1171 reg = RT5682S_PLL_TRACK_2; 1172 1173 snd_soc_component_update_bits(component, reg, 1174 RT5682S_FILTER_CLK_DIV_MASK, idx << RT5682S_FILTER_CLK_DIV_SFT); 1175 1176 /* select over sample rate */ 1177 for (idx = 0; idx < ARRAY_SIZE(div_o); idx++) { 1178 if (rt5682s->sysclk <= 12288000 * div_o[idx]) 1179 break; 1180 } 1181 1182 snd_soc_component_update_bits(component, RT5682S_ADDA_CLK_1, 1183 RT5682S_ADC_OSR_MASK | RT5682S_DAC_OSR_MASK, 1184 (idx << RT5682S_ADC_OSR_SFT) | (idx << RT5682S_DAC_OSR_SFT)); 1185 1186 return 0; 1187 } 1188 1189 static int set_dmic_power(struct snd_soc_dapm_widget *w, 1190 struct snd_kcontrol *kcontrol, int event) 1191 { 1192 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1193 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1194 unsigned int delay = 50, val; 1195 1196 if (rt5682s->pdata.dmic_delay) 1197 delay = rt5682s->pdata.dmic_delay; 1198 1199 switch (event) { 1200 case SND_SOC_DAPM_POST_PMU: 1201 val = (snd_soc_component_read(component, RT5682S_GLB_CLK) 1202 & RT5682S_SCLK_SRC_MASK) >> RT5682S_SCLK_SRC_SFT; 1203 if (val == RT5682S_CLK_SRC_PLL1 || val == RT5682S_CLK_SRC_PLL2) 1204 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 1205 RT5682S_PWR_VREF2 | RT5682S_PWR_MB, 1206 RT5682S_PWR_VREF2 | RT5682S_PWR_MB); 1207 1208 /*Add delay to avoid pop noise*/ 1209 msleep(delay); 1210 break; 1211 1212 case SND_SOC_DAPM_POST_PMD: 1213 if (!rt5682s->jack_type) { 1214 if (!snd_soc_dapm_get_pin_status(w->dapm, "MICBIAS")) 1215 snd_soc_component_update_bits(component, 1216 RT5682S_PWR_ANLG_1, RT5682S_PWR_MB, 0); 1217 if (!snd_soc_dapm_get_pin_status(w->dapm, "Vref2")) 1218 snd_soc_component_update_bits(component, 1219 RT5682S_PWR_ANLG_1, RT5682S_PWR_VREF2, 0); 1220 } 1221 break; 1222 } 1223 1224 return 0; 1225 } 1226 1227 static int set_i2s_clk(struct snd_soc_dapm_widget *w, 1228 struct snd_kcontrol *kcontrol, int event) 1229 { 1230 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1231 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1232 int pre_div, id; 1233 unsigned int reg, mask, sft; 1234 1235 if (event != SND_SOC_DAPM_PRE_PMU) 1236 return 0; 1237 1238 if (w->shift == RT5682S_PWR_I2S2_BIT) { 1239 id = RT5682S_AIF2; 1240 reg = RT5682S_I2S2_M_CLK_CTRL_1; 1241 mask = RT5682S_I2S2_M_D_MASK; 1242 sft = RT5682S_I2S2_M_D_SFT; 1243 } else { 1244 id = RT5682S_AIF1; 1245 reg = RT5682S_ADDA_CLK_1; 1246 mask = RT5682S_I2S_M_D_MASK; 1247 sft = RT5682S_I2S_M_D_SFT; 1248 } 1249 1250 if (!rt5682s->master[id]) 1251 return 0; 1252 1253 pre_div = get_clk_info(rt5682s->sysclk, rt5682s->lrck[id]); 1254 if (pre_div < 0) { 1255 dev_err(component->dev, "get pre_div failed\n"); 1256 return -EINVAL; 1257 } 1258 1259 dev_dbg(component->dev, "lrck is %dHz and pre_div is %d for iis %d master\n", 1260 rt5682s->lrck[id], pre_div, id); 1261 snd_soc_component_update_bits(component, reg, mask, pre_div << sft); 1262 1263 return 0; 1264 } 1265 1266 static int is_sys_clk_from_plla(struct snd_soc_dapm_widget *w, 1267 struct snd_soc_dapm_widget *sink) 1268 { 1269 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1270 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1271 1272 if ((rt5682s->sysclk_src == RT5682S_CLK_SRC_PLL1) || 1273 (rt5682s->sysclk_src == RT5682S_CLK_SRC_PLL2 && rt5682s->pll_comb == USE_PLLAB)) 1274 return 1; 1275 1276 return 0; 1277 } 1278 1279 static int is_sys_clk_from_pllb(struct snd_soc_dapm_widget *w, 1280 struct snd_soc_dapm_widget *sink) 1281 { 1282 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1283 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1284 1285 if (rt5682s->sysclk_src == RT5682S_CLK_SRC_PLL2) 1286 return 1; 1287 1288 return 0; 1289 } 1290 1291 static int is_using_asrc(struct snd_soc_dapm_widget *w, 1292 struct snd_soc_dapm_widget *sink) 1293 { 1294 unsigned int reg, sft, val; 1295 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1296 1297 switch (w->shift) { 1298 case RT5682S_ADC_STO1_ASRC_SFT: 1299 reg = RT5682S_PLL_TRACK_3; 1300 sft = RT5682S_FILTER_CLK_SEL_SFT; 1301 break; 1302 case RT5682S_DAC_STO1_ASRC_SFT: 1303 reg = RT5682S_PLL_TRACK_2; 1304 sft = RT5682S_FILTER_CLK_SEL_SFT; 1305 break; 1306 default: 1307 return 0; 1308 } 1309 1310 val = (snd_soc_component_read(component, reg) >> sft) & 0xf; 1311 switch (val) { 1312 case RT5682S_CLK_SEL_I2S1_ASRC: 1313 case RT5682S_CLK_SEL_I2S2_ASRC: 1314 return 1; 1315 default: 1316 return 0; 1317 } 1318 } 1319 1320 static int rt5682s_hp_amp_event(struct snd_soc_dapm_widget *w, 1321 struct snd_kcontrol *kcontrol, int event) 1322 { 1323 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1324 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1325 1326 switch (event) { 1327 case SND_SOC_DAPM_POST_PMU: 1328 snd_soc_component_update_bits(component, RT5682S_DEPOP_1, 1329 RT5682S_OUT_HP_L_EN | RT5682S_OUT_HP_R_EN, 1330 RT5682S_OUT_HP_L_EN | RT5682S_OUT_HP_R_EN); 1331 usleep_range(15000, 20000); 1332 snd_soc_component_update_bits(component, RT5682S_DEPOP_1, 1333 RT5682S_LDO_PUMP_EN | RT5682S_PUMP_EN | 1334 RT5682S_CAPLESS_L_EN | RT5682S_CAPLESS_R_EN, 1335 RT5682S_LDO_PUMP_EN | RT5682S_PUMP_EN | 1336 RT5682S_CAPLESS_L_EN | RT5682S_CAPLESS_R_EN); 1337 snd_soc_component_write(component, RT5682S_BIAS_CUR_CTRL_11, 0x6666); 1338 snd_soc_component_write(component, RT5682S_BIAS_CUR_CTRL_12, 0xa82a); 1339 1340 mutex_lock(&rt5682s->jdet_mutex); 1341 1342 snd_soc_component_update_bits(component, RT5682S_HP_CTRL_2, 1343 RT5682S_HPO_L_PATH_MASK | RT5682S_HPO_R_PATH_MASK | 1344 RT5682S_HPO_SEL_IP_EN_SW, RT5682S_HPO_L_PATH_EN | 1345 RT5682S_HPO_R_PATH_EN | RT5682S_HPO_IP_EN_GATING); 1346 usleep_range(5000, 10000); 1347 snd_soc_component_update_bits(component, RT5682S_HP_AMP_DET_CTL_1, 1348 RT5682S_CP_SW_SIZE_MASK, RT5682S_CP_SW_SIZE_L | RT5682S_CP_SW_SIZE_S); 1349 1350 mutex_unlock(&rt5682s->jdet_mutex); 1351 break; 1352 1353 case SND_SOC_DAPM_POST_PMD: 1354 snd_soc_component_update_bits(component, RT5682S_HP_CTRL_2, 1355 RT5682S_HPO_L_PATH_MASK | RT5682S_HPO_R_PATH_MASK | 1356 RT5682S_HPO_SEL_IP_EN_SW, 0); 1357 snd_soc_component_update_bits(component, RT5682S_HP_AMP_DET_CTL_1, 1358 RT5682S_CP_SW_SIZE_MASK, RT5682S_CP_SW_SIZE_M); 1359 snd_soc_component_update_bits(component, RT5682S_DEPOP_1, 1360 RT5682S_LDO_PUMP_EN | RT5682S_PUMP_EN | 1361 RT5682S_CAPLESS_L_EN | RT5682S_CAPLESS_R_EN, 0); 1362 snd_soc_component_update_bits(component, RT5682S_DEPOP_1, 1363 RT5682S_OUT_HP_L_EN | RT5682S_OUT_HP_R_EN, 0); 1364 break; 1365 } 1366 1367 return 0; 1368 } 1369 1370 static int rt5682s_stereo1_adc_mixl_event(struct snd_soc_dapm_widget *w, 1371 struct snd_kcontrol *kcontrol, int event) 1372 { 1373 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1374 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1375 unsigned int delay = 0; 1376 1377 if (rt5682s->pdata.amic_delay) 1378 delay = rt5682s->pdata.amic_delay; 1379 1380 switch (event) { 1381 case SND_SOC_DAPM_POST_PMU: 1382 msleep(delay); 1383 snd_soc_component_update_bits(component, RT5682S_STO1_ADC_DIG_VOL, 1384 RT5682S_L_MUTE, 0); 1385 break; 1386 case SND_SOC_DAPM_PRE_PMD: 1387 snd_soc_component_update_bits(component, RT5682S_STO1_ADC_DIG_VOL, 1388 RT5682S_L_MUTE, RT5682S_L_MUTE); 1389 break; 1390 } 1391 1392 return 0; 1393 } 1394 1395 static int sar_power_event(struct snd_soc_dapm_widget *w, 1396 struct snd_kcontrol *kcontrol, int event) 1397 { 1398 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); 1399 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 1400 1401 if ((rt5682s->jack_type & SND_JACK_HEADSET) != SND_JACK_HEADSET) 1402 return 0; 1403 1404 switch (event) { 1405 case SND_SOC_DAPM_PRE_PMU: 1406 rt5682s_sar_power_mode(component, SAR_PWR_NORMAL, 0); 1407 break; 1408 case SND_SOC_DAPM_POST_PMD: 1409 rt5682s_sar_power_mode(component, SAR_PWR_SAVING, 0); 1410 break; 1411 } 1412 1413 return 0; 1414 } 1415 1416 /* Interface data select */ 1417 static const char * const rt5682s_data_select[] = { 1418 "L/R", "R/L", "L/L", "R/R" 1419 }; 1420 1421 static SOC_ENUM_SINGLE_DECL(rt5682s_if2_adc_enum, RT5682S_DIG_INF2_DATA, 1422 RT5682S_IF2_ADC_SEL_SFT, rt5682s_data_select); 1423 1424 static SOC_ENUM_SINGLE_DECL(rt5682s_if1_01_adc_enum, RT5682S_TDM_ADDA_CTRL_1, 1425 RT5682S_IF1_ADC1_SEL_SFT, rt5682s_data_select); 1426 1427 static SOC_ENUM_SINGLE_DECL(rt5682s_if1_23_adc_enum, RT5682S_TDM_ADDA_CTRL_1, 1428 RT5682S_IF1_ADC2_SEL_SFT, rt5682s_data_select); 1429 1430 static SOC_ENUM_SINGLE_DECL(rt5682s_if1_45_adc_enum, RT5682S_TDM_ADDA_CTRL_1, 1431 RT5682S_IF1_ADC3_SEL_SFT, rt5682s_data_select); 1432 1433 static SOC_ENUM_SINGLE_DECL(rt5682s_if1_67_adc_enum, RT5682S_TDM_ADDA_CTRL_1, 1434 RT5682S_IF1_ADC4_SEL_SFT, rt5682s_data_select); 1435 1436 static const struct snd_kcontrol_new rt5682s_if2_adc_swap_mux = 1437 SOC_DAPM_ENUM("IF2 ADC Swap Mux", rt5682s_if2_adc_enum); 1438 1439 static const struct snd_kcontrol_new rt5682s_if1_01_adc_swap_mux = 1440 SOC_DAPM_ENUM("IF1 01 ADC Swap Mux", rt5682s_if1_01_adc_enum); 1441 1442 static const struct snd_kcontrol_new rt5682s_if1_23_adc_swap_mux = 1443 SOC_DAPM_ENUM("IF1 23 ADC Swap Mux", rt5682s_if1_23_adc_enum); 1444 1445 static const struct snd_kcontrol_new rt5682s_if1_45_adc_swap_mux = 1446 SOC_DAPM_ENUM("IF1 45 ADC Swap Mux", rt5682s_if1_45_adc_enum); 1447 1448 static const struct snd_kcontrol_new rt5682s_if1_67_adc_swap_mux = 1449 SOC_DAPM_ENUM("IF1 67 ADC Swap Mux", rt5682s_if1_67_adc_enum); 1450 1451 /* Digital Mixer */ 1452 static const struct snd_kcontrol_new rt5682s_sto1_adc_l_mix[] = { 1453 SOC_DAPM_SINGLE("ADC1 Switch", RT5682S_STO1_ADC_MIXER, 1454 RT5682S_M_STO1_ADC_L1_SFT, 1, 1), 1455 SOC_DAPM_SINGLE("ADC2 Switch", RT5682S_STO1_ADC_MIXER, 1456 RT5682S_M_STO1_ADC_L2_SFT, 1, 1), 1457 }; 1458 1459 static const struct snd_kcontrol_new rt5682s_sto1_adc_r_mix[] = { 1460 SOC_DAPM_SINGLE("ADC1 Switch", RT5682S_STO1_ADC_MIXER, 1461 RT5682S_M_STO1_ADC_R1_SFT, 1, 1), 1462 SOC_DAPM_SINGLE("ADC2 Switch", RT5682S_STO1_ADC_MIXER, 1463 RT5682S_M_STO1_ADC_R2_SFT, 1, 1), 1464 }; 1465 1466 static const struct snd_kcontrol_new rt5682s_dac_l_mix[] = { 1467 SOC_DAPM_SINGLE("Stereo ADC Switch", RT5682S_AD_DA_MIXER, 1468 RT5682S_M_ADCMIX_L_SFT, 1, 1), 1469 SOC_DAPM_SINGLE("DAC1 Switch", RT5682S_AD_DA_MIXER, 1470 RT5682S_M_DAC1_L_SFT, 1, 1), 1471 }; 1472 1473 static const struct snd_kcontrol_new rt5682s_dac_r_mix[] = { 1474 SOC_DAPM_SINGLE("Stereo ADC Switch", RT5682S_AD_DA_MIXER, 1475 RT5682S_M_ADCMIX_R_SFT, 1, 1), 1476 SOC_DAPM_SINGLE("DAC1 Switch", RT5682S_AD_DA_MIXER, 1477 RT5682S_M_DAC1_R_SFT, 1, 1), 1478 }; 1479 1480 static const struct snd_kcontrol_new rt5682s_sto1_dac_l_mix[] = { 1481 SOC_DAPM_SINGLE("DAC L1 Switch", RT5682S_STO1_DAC_MIXER, 1482 RT5682S_M_DAC_L1_STO_L_SFT, 1, 1), 1483 SOC_DAPM_SINGLE("DAC R1 Switch", RT5682S_STO1_DAC_MIXER, 1484 RT5682S_M_DAC_R1_STO_L_SFT, 1, 1), 1485 }; 1486 1487 static const struct snd_kcontrol_new rt5682s_sto1_dac_r_mix[] = { 1488 SOC_DAPM_SINGLE("DAC L1 Switch", RT5682S_STO1_DAC_MIXER, 1489 RT5682S_M_DAC_L1_STO_R_SFT, 1, 1), 1490 SOC_DAPM_SINGLE("DAC R1 Switch", RT5682S_STO1_DAC_MIXER, 1491 RT5682S_M_DAC_R1_STO_R_SFT, 1, 1), 1492 }; 1493 1494 /* Analog Input Mixer */ 1495 static const struct snd_kcontrol_new rt5682s_rec1_l_mix[] = { 1496 SOC_DAPM_SINGLE("CBJ Switch", RT5682S_REC_MIXER, 1497 RT5682S_M_CBJ_RM1_L_SFT, 1, 1), 1498 }; 1499 1500 static const struct snd_kcontrol_new rt5682s_rec1_r_mix[] = { 1501 SOC_DAPM_SINGLE("CBJ Switch", RT5682S_REC_MIXER, 1502 RT5682S_M_CBJ_RM1_R_SFT, 1, 1), 1503 }; 1504 1505 /* STO1 ADC1 Source */ 1506 /* MX-26 [13] [5] */ 1507 static const char * const rt5682s_sto1_adc1_src[] = { 1508 "DAC MIX", "ADC" 1509 }; 1510 1511 static SOC_ENUM_SINGLE_DECL(rt5682s_sto1_adc1l_enum, RT5682S_STO1_ADC_MIXER, 1512 RT5682S_STO1_ADC1L_SRC_SFT, rt5682s_sto1_adc1_src); 1513 1514 static const struct snd_kcontrol_new rt5682s_sto1_adc1l_mux = 1515 SOC_DAPM_ENUM("Stereo1 ADC1L Source", rt5682s_sto1_adc1l_enum); 1516 1517 static SOC_ENUM_SINGLE_DECL(rt5682s_sto1_adc1r_enum, RT5682S_STO1_ADC_MIXER, 1518 RT5682S_STO1_ADC1R_SRC_SFT, rt5682s_sto1_adc1_src); 1519 1520 static const struct snd_kcontrol_new rt5682s_sto1_adc1r_mux = 1521 SOC_DAPM_ENUM("Stereo1 ADC1L Source", rt5682s_sto1_adc1r_enum); 1522 1523 /* STO1 ADC Source */ 1524 /* MX-26 [11:10] [3:2] */ 1525 static const char * const rt5682s_sto1_adc_src[] = { 1526 "ADC1 L", "ADC1 R" 1527 }; 1528 1529 static SOC_ENUM_SINGLE_DECL(rt5682s_sto1_adcl_enum, RT5682S_STO1_ADC_MIXER, 1530 RT5682S_STO1_ADCL_SRC_SFT, rt5682s_sto1_adc_src); 1531 1532 static const struct snd_kcontrol_new rt5682s_sto1_adcl_mux = 1533 SOC_DAPM_ENUM("Stereo1 ADCL Source", rt5682s_sto1_adcl_enum); 1534 1535 static SOC_ENUM_SINGLE_DECL(rt5682s_sto1_adcr_enum, RT5682S_STO1_ADC_MIXER, 1536 RT5682S_STO1_ADCR_SRC_SFT, rt5682s_sto1_adc_src); 1537 1538 static const struct snd_kcontrol_new rt5682s_sto1_adcr_mux = 1539 SOC_DAPM_ENUM("Stereo1 ADCR Source", rt5682s_sto1_adcr_enum); 1540 1541 /* STO1 ADC2 Source */ 1542 /* MX-26 [12] [4] */ 1543 static const char * const rt5682s_sto1_adc2_src[] = { 1544 "DAC MIX", "DMIC" 1545 }; 1546 1547 static SOC_ENUM_SINGLE_DECL(rt5682s_sto1_adc2l_enum, RT5682S_STO1_ADC_MIXER, 1548 RT5682S_STO1_ADC2L_SRC_SFT, rt5682s_sto1_adc2_src); 1549 1550 static const struct snd_kcontrol_new rt5682s_sto1_adc2l_mux = 1551 SOC_DAPM_ENUM("Stereo1 ADC2L Source", rt5682s_sto1_adc2l_enum); 1552 1553 static SOC_ENUM_SINGLE_DECL(rt5682s_sto1_adc2r_enum, RT5682S_STO1_ADC_MIXER, 1554 RT5682S_STO1_ADC2R_SRC_SFT, rt5682s_sto1_adc2_src); 1555 1556 static const struct snd_kcontrol_new rt5682s_sto1_adc2r_mux = 1557 SOC_DAPM_ENUM("Stereo1 ADC2R Source", rt5682s_sto1_adc2r_enum); 1558 1559 /* MX-79 [6:4] I2S1 ADC data location */ 1560 static const unsigned int rt5682s_if1_adc_slot_values[] = { 1561 0, 2, 4, 6, 1562 }; 1563 1564 static const char * const rt5682s_if1_adc_slot_src[] = { 1565 "Slot 0", "Slot 2", "Slot 4", "Slot 6" 1566 }; 1567 1568 static SOC_VALUE_ENUM_SINGLE_DECL(rt5682s_if1_adc_slot_enum, 1569 RT5682S_TDM_CTRL, RT5682S_TDM_ADC_LCA_SFT, RT5682S_TDM_ADC_LCA_MASK, 1570 rt5682s_if1_adc_slot_src, rt5682s_if1_adc_slot_values); 1571 1572 static const struct snd_kcontrol_new rt5682s_if1_adc_slot_mux = 1573 SOC_DAPM_ENUM("IF1 ADC Slot location", rt5682s_if1_adc_slot_enum); 1574 1575 /* Analog DAC L1 Source, Analog DAC R1 Source*/ 1576 /* MX-2B [4], MX-2B [0]*/ 1577 static const char * const rt5682s_alg_dac1_src[] = { 1578 "Stereo1 DAC Mixer", "DAC1" 1579 }; 1580 1581 static SOC_ENUM_SINGLE_DECL(rt5682s_alg_dac_l1_enum, RT5682S_A_DAC1_MUX, 1582 RT5682S_A_DACL1_SFT, rt5682s_alg_dac1_src); 1583 1584 static const struct snd_kcontrol_new rt5682s_alg_dac_l1_mux = 1585 SOC_DAPM_ENUM("Analog DAC L1 Source", rt5682s_alg_dac_l1_enum); 1586 1587 static SOC_ENUM_SINGLE_DECL(rt5682s_alg_dac_r1_enum, RT5682S_A_DAC1_MUX, 1588 RT5682S_A_DACR1_SFT, rt5682s_alg_dac1_src); 1589 1590 static const struct snd_kcontrol_new rt5682s_alg_dac_r1_mux = 1591 SOC_DAPM_ENUM("Analog DAC R1 Source", rt5682s_alg_dac_r1_enum); 1592 1593 static const unsigned int rt5682s_adcdat_pin_values[] = { 1594 1, 3, 1595 }; 1596 1597 static const char * const rt5682s_adcdat_pin_select[] = { 1598 "ADCDAT1", "ADCDAT2", 1599 }; 1600 1601 static SOC_VALUE_ENUM_SINGLE_DECL(rt5682s_adcdat_pin_enum, 1602 RT5682S_GPIO_CTRL_1, RT5682S_GP4_PIN_SFT, RT5682S_GP4_PIN_MASK, 1603 rt5682s_adcdat_pin_select, rt5682s_adcdat_pin_values); 1604 1605 static const struct snd_kcontrol_new rt5682s_adcdat_pin_ctrl = 1606 SOC_DAPM_ENUM("ADCDAT", rt5682s_adcdat_pin_enum); 1607 1608 static const struct snd_soc_dapm_widget rt5682s_dapm_widgets[] = { 1609 SND_SOC_DAPM_SUPPLY("LDO MB1", RT5682S_PWR_ANLG_3, 1610 RT5682S_PWR_LDO_MB1_BIT, 0, NULL, 0), 1611 SND_SOC_DAPM_SUPPLY("LDO MB2", RT5682S_PWR_ANLG_3, 1612 RT5682S_PWR_LDO_MB2_BIT, 0, NULL, 0), 1613 SND_SOC_DAPM_SUPPLY("LDO", RT5682S_PWR_ANLG_3, 1614 RT5682S_PWR_LDO_BIT, 0, NULL, 0), 1615 SND_SOC_DAPM_SUPPLY("Vref2", SND_SOC_NOPM, 0, 0, NULL, 0), 1616 SND_SOC_DAPM_SUPPLY("MICBIAS", SND_SOC_NOPM, 0, 0, NULL, 0), 1617 1618 /* PLL Powers */ 1619 SND_SOC_DAPM_SUPPLY_S("PLLA_LDO", 0, RT5682S_PWR_ANLG_3, 1620 RT5682S_PWR_LDO_PLLA_BIT, 0, NULL, 0), 1621 SND_SOC_DAPM_SUPPLY_S("PLLB_LDO", 0, RT5682S_PWR_ANLG_3, 1622 RT5682S_PWR_LDO_PLLB_BIT, 0, NULL, 0), 1623 SND_SOC_DAPM_SUPPLY_S("PLLA_BIAS", 0, RT5682S_PWR_ANLG_3, 1624 RT5682S_PWR_BIAS_PLLA_BIT, 0, NULL, 0), 1625 SND_SOC_DAPM_SUPPLY_S("PLLB_BIAS", 0, RT5682S_PWR_ANLG_3, 1626 RT5682S_PWR_BIAS_PLLB_BIT, 0, NULL, 0), 1627 SND_SOC_DAPM_SUPPLY_S("PLLA", 0, RT5682S_PWR_ANLG_3, 1628 RT5682S_PWR_PLLA_BIT, 0, NULL, 0), 1629 SND_SOC_DAPM_SUPPLY_S("PLLB", 0, RT5682S_PWR_ANLG_3, 1630 RT5682S_PWR_PLLB_BIT, 0, set_filter_clk, SND_SOC_DAPM_PRE_PMU), 1631 SND_SOC_DAPM_SUPPLY_S("PLLA_RST", 1, RT5682S_PWR_ANLG_3, 1632 RT5682S_RSTB_PLLA_BIT, 0, NULL, 0), 1633 SND_SOC_DAPM_SUPPLY_S("PLLB_RST", 1, RT5682S_PWR_ANLG_3, 1634 RT5682S_RSTB_PLLB_BIT, 0, NULL, 0), 1635 1636 /* ASRC */ 1637 SND_SOC_DAPM_SUPPLY_S("DAC STO1 ASRC", 1, RT5682S_PLL_TRACK_1, 1638 RT5682S_DAC_STO1_ASRC_SFT, 0, NULL, 0), 1639 SND_SOC_DAPM_SUPPLY_S("ADC STO1 ASRC", 1, RT5682S_PLL_TRACK_1, 1640 RT5682S_ADC_STO1_ASRC_SFT, 0, NULL, 0), 1641 SND_SOC_DAPM_SUPPLY_S("AD ASRC", 1, RT5682S_PLL_TRACK_1, 1642 RT5682S_AD_ASRC_SFT, 0, NULL, 0), 1643 SND_SOC_DAPM_SUPPLY_S("DA ASRC", 1, RT5682S_PLL_TRACK_1, 1644 RT5682S_DA_ASRC_SFT, 0, NULL, 0), 1645 SND_SOC_DAPM_SUPPLY_S("DMIC ASRC", 1, RT5682S_PLL_TRACK_1, 1646 RT5682S_DMIC_ASRC_SFT, 0, NULL, 0), 1647 1648 /* Input Side */ 1649 SND_SOC_DAPM_SUPPLY("MICBIAS1", RT5682S_PWR_ANLG_2, 1650 RT5682S_PWR_MB1_BIT, 0, NULL, 0), 1651 SND_SOC_DAPM_SUPPLY("MICBIAS2", RT5682S_PWR_ANLG_2, 1652 RT5682S_PWR_MB2_BIT, 0, NULL, 0), 1653 1654 /* Input Lines */ 1655 SND_SOC_DAPM_INPUT("DMIC L1"), 1656 SND_SOC_DAPM_INPUT("DMIC R1"), 1657 1658 SND_SOC_DAPM_INPUT("IN1P"), 1659 1660 SND_SOC_DAPM_SUPPLY("DMIC CLK", SND_SOC_NOPM, 0, 0, 1661 set_dmic_clk, SND_SOC_DAPM_PRE_PMU), 1662 SND_SOC_DAPM_SUPPLY("DMIC1 Power", RT5682S_DMIC_CTRL_1, RT5682S_DMIC_1_EN_SFT, 0, 1663 set_dmic_power, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD), 1664 1665 /* Boost */ 1666 SND_SOC_DAPM_PGA("BST1 CBJ", SND_SOC_NOPM, 0, 0, NULL, 0), 1667 1668 /* REC Mixer */ 1669 SND_SOC_DAPM_MIXER("RECMIX1L", SND_SOC_NOPM, 0, 0, rt5682s_rec1_l_mix, 1670 ARRAY_SIZE(rt5682s_rec1_l_mix)), 1671 SND_SOC_DAPM_MIXER("RECMIX1R", SND_SOC_NOPM, 0, 0, rt5682s_rec1_r_mix, 1672 ARRAY_SIZE(rt5682s_rec1_r_mix)), 1673 SND_SOC_DAPM_SUPPLY("RECMIX1L Power", RT5682S_CAL_REC, 1674 RT5682S_PWR_RM1_L_BIT, 0, NULL, 0), 1675 SND_SOC_DAPM_SUPPLY("RECMIX1R Power", RT5682S_CAL_REC, 1676 RT5682S_PWR_RM1_R_BIT, 0, NULL, 0), 1677 1678 /* ADCs */ 1679 SND_SOC_DAPM_ADC("ADC1 L", NULL, SND_SOC_NOPM, 0, 0), 1680 SND_SOC_DAPM_ADC("ADC1 R", NULL, SND_SOC_NOPM, 0, 0), 1681 1682 SND_SOC_DAPM_SUPPLY("ADC1 L Power", RT5682S_PWR_DIG_1, 1683 RT5682S_PWR_ADC_L1_BIT, 0, NULL, 0), 1684 SND_SOC_DAPM_SUPPLY("ADC1 R Power", RT5682S_PWR_DIG_1, 1685 RT5682S_PWR_ADC_R1_BIT, 0, NULL, 0), 1686 SND_SOC_DAPM_SUPPLY("ADC1 clock", RT5682S_CHOP_ADC, 1687 RT5682S_CKGEN_ADC1_SFT, 0, NULL, 0), 1688 1689 /* ADC Mux */ 1690 SND_SOC_DAPM_MUX("Stereo1 ADC L1 Mux", SND_SOC_NOPM, 0, 0, 1691 &rt5682s_sto1_adc1l_mux), 1692 SND_SOC_DAPM_MUX("Stereo1 ADC R1 Mux", SND_SOC_NOPM, 0, 0, 1693 &rt5682s_sto1_adc1r_mux), 1694 SND_SOC_DAPM_MUX("Stereo1 ADC L2 Mux", SND_SOC_NOPM, 0, 0, 1695 &rt5682s_sto1_adc2l_mux), 1696 SND_SOC_DAPM_MUX("Stereo1 ADC R2 Mux", SND_SOC_NOPM, 0, 0, 1697 &rt5682s_sto1_adc2r_mux), 1698 SND_SOC_DAPM_MUX("Stereo1 ADC L Mux", SND_SOC_NOPM, 0, 0, 1699 &rt5682s_sto1_adcl_mux), 1700 SND_SOC_DAPM_MUX("Stereo1 ADC R Mux", SND_SOC_NOPM, 0, 0, 1701 &rt5682s_sto1_adcr_mux), 1702 SND_SOC_DAPM_MUX("IF1_ADC Mux", SND_SOC_NOPM, 0, 0, 1703 &rt5682s_if1_adc_slot_mux), 1704 1705 /* ADC Mixer */ 1706 SND_SOC_DAPM_SUPPLY("ADC Stereo1 Filter", RT5682S_PWR_DIG_2, 1707 RT5682S_PWR_ADC_S1F_BIT, 0, set_filter_clk, SND_SOC_DAPM_PRE_PMU), 1708 SND_SOC_DAPM_MIXER_E("Stereo1 ADC MIXL", SND_SOC_NOPM, 0, 0, 1709 rt5682s_sto1_adc_l_mix, ARRAY_SIZE(rt5682s_sto1_adc_l_mix), 1710 rt5682s_stereo1_adc_mixl_event, 1711 SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMU), 1712 SND_SOC_DAPM_MIXER("Stereo1 ADC MIXR", RT5682S_STO1_ADC_DIG_VOL, 1713 RT5682S_R_MUTE_SFT, 1, rt5682s_sto1_adc_r_mix, 1714 ARRAY_SIZE(rt5682s_sto1_adc_r_mix)), 1715 1716 /* ADC PGA */ 1717 SND_SOC_DAPM_PGA("Stereo1 ADC MIX", SND_SOC_NOPM, 0, 0, NULL, 0), 1718 1719 /* Digital Interface */ 1720 SND_SOC_DAPM_SUPPLY("I2S1", RT5682S_PWR_DIG_1, RT5682S_PWR_I2S1_BIT, 1721 0, set_i2s_clk, SND_SOC_DAPM_PRE_PMU), 1722 SND_SOC_DAPM_SUPPLY("I2S2", RT5682S_PWR_DIG_1, RT5682S_PWR_I2S2_BIT, 1723 0, set_i2s_clk, SND_SOC_DAPM_PRE_PMU), 1724 SND_SOC_DAPM_PGA("IF1 DAC1 L", SND_SOC_NOPM, 0, 0, NULL, 0), 1725 SND_SOC_DAPM_PGA("IF1 DAC1 R", SND_SOC_NOPM, 0, 0, NULL, 0), 1726 1727 /* Digital Interface Select */ 1728 SND_SOC_DAPM_MUX("IF1 01 ADC Swap Mux", SND_SOC_NOPM, 0, 0, 1729 &rt5682s_if1_01_adc_swap_mux), 1730 SND_SOC_DAPM_MUX("IF1 23 ADC Swap Mux", SND_SOC_NOPM, 0, 0, 1731 &rt5682s_if1_23_adc_swap_mux), 1732 SND_SOC_DAPM_MUX("IF1 45 ADC Swap Mux", SND_SOC_NOPM, 0, 0, 1733 &rt5682s_if1_45_adc_swap_mux), 1734 SND_SOC_DAPM_MUX("IF1 67 ADC Swap Mux", SND_SOC_NOPM, 0, 0, 1735 &rt5682s_if1_67_adc_swap_mux), 1736 SND_SOC_DAPM_MUX("IF2 ADC Swap Mux", SND_SOC_NOPM, 0, 0, 1737 &rt5682s_if2_adc_swap_mux), 1738 1739 SND_SOC_DAPM_MUX("ADCDAT Mux", SND_SOC_NOPM, 0, 0, &rt5682s_adcdat_pin_ctrl), 1740 1741 /* Audio Interface */ 1742 SND_SOC_DAPM_AIF_OUT("AIF1TX", "AIF1 Capture", 0, RT5682S_I2S1_SDP, 1743 RT5682S_SEL_ADCDAT_SFT, 1), 1744 SND_SOC_DAPM_AIF_OUT("AIF2TX", "AIF2 Capture", 0, RT5682S_I2S2_SDP, 1745 RT5682S_I2S2_PIN_CFG_SFT, 1), 1746 SND_SOC_DAPM_AIF_IN("AIF1RX", "AIF1 Playback", 0, SND_SOC_NOPM, 0, 0), 1747 1748 /* Output Side */ 1749 /* DAC mixer before sound effect */ 1750 SND_SOC_DAPM_MIXER("DAC1 MIXL", SND_SOC_NOPM, 0, 0, 1751 rt5682s_dac_l_mix, ARRAY_SIZE(rt5682s_dac_l_mix)), 1752 SND_SOC_DAPM_MIXER("DAC1 MIXR", SND_SOC_NOPM, 0, 0, 1753 rt5682s_dac_r_mix, ARRAY_SIZE(rt5682s_dac_r_mix)), 1754 1755 /* DAC channel Mux */ 1756 SND_SOC_DAPM_MUX("DAC L1 Source", SND_SOC_NOPM, 0, 0, &rt5682s_alg_dac_l1_mux), 1757 SND_SOC_DAPM_MUX("DAC R1 Source", SND_SOC_NOPM, 0, 0, &rt5682s_alg_dac_r1_mux), 1758 1759 /* DAC Mixer */ 1760 SND_SOC_DAPM_SUPPLY("DAC Stereo1 Filter", RT5682S_PWR_DIG_2, 1761 RT5682S_PWR_DAC_S1F_BIT, 0, set_filter_clk, SND_SOC_DAPM_PRE_PMU), 1762 SND_SOC_DAPM_MIXER("Stereo1 DAC MIXL", SND_SOC_NOPM, 0, 0, 1763 rt5682s_sto1_dac_l_mix, ARRAY_SIZE(rt5682s_sto1_dac_l_mix)), 1764 SND_SOC_DAPM_MIXER("Stereo1 DAC MIXR", SND_SOC_NOPM, 0, 0, 1765 rt5682s_sto1_dac_r_mix, ARRAY_SIZE(rt5682s_sto1_dac_r_mix)), 1766 1767 /* DACs */ 1768 SND_SOC_DAPM_DAC("DAC L1", NULL, RT5682S_PWR_DIG_1, RT5682S_PWR_DAC_L1_BIT, 0), 1769 SND_SOC_DAPM_DAC("DAC R1", NULL, RT5682S_PWR_DIG_1, RT5682S_PWR_DAC_R1_BIT, 0), 1770 1771 /* HPO */ 1772 SND_SOC_DAPM_PGA_S("HP Amp", 1, SND_SOC_NOPM, 0, 0, rt5682s_hp_amp_event, 1773 SND_SOC_DAPM_POST_PMD | SND_SOC_DAPM_POST_PMU), 1774 1775 /* CLK DET */ 1776 SND_SOC_DAPM_SUPPLY("CLKDET SYS", RT5682S_CLK_DET, 1777 RT5682S_SYS_CLK_DET_SFT, 0, NULL, 0), 1778 SND_SOC_DAPM_SUPPLY("CLKDET PLL1", RT5682S_CLK_DET, 1779 RT5682S_PLL1_CLK_DET_SFT, 0, NULL, 0), 1780 SND_SOC_DAPM_SUPPLY("MCLK0 DET PWR", RT5682S_PWR_ANLG_2, 1781 RT5682S_PWR_MCLK0_WD_BIT, 0, NULL, 0), 1782 1783 /* SAR */ 1784 SND_SOC_DAPM_SUPPLY("SAR", SND_SOC_NOPM, 0, 0, sar_power_event, 1785 SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD), 1786 1787 /* Output Lines */ 1788 SND_SOC_DAPM_OUTPUT("HPOL"), 1789 SND_SOC_DAPM_OUTPUT("HPOR"), 1790 }; 1791 1792 static const struct snd_soc_dapm_route rt5682s_dapm_routes[] = { 1793 /*PLL*/ 1794 {"ADC Stereo1 Filter", NULL, "PLLA", is_sys_clk_from_plla}, 1795 {"ADC Stereo1 Filter", NULL, "PLLB", is_sys_clk_from_pllb}, 1796 {"DAC Stereo1 Filter", NULL, "PLLA", is_sys_clk_from_plla}, 1797 {"DAC Stereo1 Filter", NULL, "PLLB", is_sys_clk_from_pllb}, 1798 {"PLLA", NULL, "PLLA_LDO"}, 1799 {"PLLA", NULL, "PLLA_BIAS"}, 1800 {"PLLA", NULL, "PLLA_RST"}, 1801 {"PLLB", NULL, "PLLB_LDO"}, 1802 {"PLLB", NULL, "PLLB_BIAS"}, 1803 {"PLLB", NULL, "PLLB_RST"}, 1804 1805 /*ASRC*/ 1806 {"ADC Stereo1 Filter", NULL, "ADC STO1 ASRC", is_using_asrc}, 1807 {"DAC Stereo1 Filter", NULL, "DAC STO1 ASRC", is_using_asrc}, 1808 {"ADC STO1 ASRC", NULL, "AD ASRC"}, 1809 {"ADC STO1 ASRC", NULL, "DA ASRC"}, 1810 {"DAC STO1 ASRC", NULL, "AD ASRC"}, 1811 {"DAC STO1 ASRC", NULL, "DA ASRC"}, 1812 1813 {"CLKDET SYS", NULL, "MCLK0 DET PWR"}, 1814 1815 {"BST1 CBJ", NULL, "IN1P"}, 1816 {"BST1 CBJ", NULL, "SAR"}, 1817 1818 {"RECMIX1L", "CBJ Switch", "BST1 CBJ"}, 1819 {"RECMIX1L", NULL, "RECMIX1L Power"}, 1820 {"RECMIX1R", "CBJ Switch", "BST1 CBJ"}, 1821 {"RECMIX1R", NULL, "RECMIX1R Power"}, 1822 1823 {"ADC1 L", NULL, "RECMIX1L"}, 1824 {"ADC1 L", NULL, "ADC1 L Power"}, 1825 {"ADC1 L", NULL, "ADC1 clock"}, 1826 {"ADC1 R", NULL, "RECMIX1R"}, 1827 {"ADC1 R", NULL, "ADC1 R Power"}, 1828 {"ADC1 R", NULL, "ADC1 clock"}, 1829 1830 {"DMIC L1", NULL, "DMIC CLK"}, 1831 {"DMIC L1", NULL, "DMIC1 Power"}, 1832 {"DMIC R1", NULL, "DMIC CLK"}, 1833 {"DMIC R1", NULL, "DMIC1 Power"}, 1834 {"DMIC CLK", NULL, "DMIC ASRC"}, 1835 1836 {"Stereo1 ADC L Mux", "ADC1 L", "ADC1 L"}, 1837 {"Stereo1 ADC L Mux", "ADC1 R", "ADC1 R"}, 1838 {"Stereo1 ADC R Mux", "ADC1 L", "ADC1 L"}, 1839 {"Stereo1 ADC R Mux", "ADC1 R", "ADC1 R"}, 1840 1841 {"Stereo1 ADC L1 Mux", "ADC", "Stereo1 ADC L Mux"}, 1842 {"Stereo1 ADC L1 Mux", "DAC MIX", "Stereo1 DAC MIXL"}, 1843 {"Stereo1 ADC L2 Mux", "DMIC", "DMIC L1"}, 1844 {"Stereo1 ADC L2 Mux", "DAC MIX", "Stereo1 DAC MIXL"}, 1845 1846 {"Stereo1 ADC R1 Mux", "ADC", "Stereo1 ADC R Mux"}, 1847 {"Stereo1 ADC R1 Mux", "DAC MIX", "Stereo1 DAC MIXR"}, 1848 {"Stereo1 ADC R2 Mux", "DMIC", "DMIC R1"}, 1849 {"Stereo1 ADC R2 Mux", "DAC MIX", "Stereo1 DAC MIXR"}, 1850 1851 {"Stereo1 ADC MIXL", "ADC1 Switch", "Stereo1 ADC L1 Mux"}, 1852 {"Stereo1 ADC MIXL", "ADC2 Switch", "Stereo1 ADC L2 Mux"}, 1853 {"Stereo1 ADC MIXL", NULL, "ADC Stereo1 Filter"}, 1854 1855 {"Stereo1 ADC MIXR", "ADC1 Switch", "Stereo1 ADC R1 Mux"}, 1856 {"Stereo1 ADC MIXR", "ADC2 Switch", "Stereo1 ADC R2 Mux"}, 1857 {"Stereo1 ADC MIXR", NULL, "ADC Stereo1 Filter"}, 1858 1859 {"Stereo1 ADC MIX", NULL, "Stereo1 ADC MIXL"}, 1860 {"Stereo1 ADC MIX", NULL, "Stereo1 ADC MIXR"}, 1861 1862 {"IF1 01 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"}, 1863 {"IF1 01 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"}, 1864 {"IF1 01 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"}, 1865 {"IF1 01 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"}, 1866 {"IF1 23 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"}, 1867 {"IF1 23 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"}, 1868 {"IF1 23 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"}, 1869 {"IF1 23 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"}, 1870 {"IF1 45 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"}, 1871 {"IF1 45 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"}, 1872 {"IF1 45 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"}, 1873 {"IF1 45 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"}, 1874 {"IF1 67 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"}, 1875 {"IF1 67 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"}, 1876 {"IF1 67 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"}, 1877 {"IF1 67 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"}, 1878 1879 {"IF1_ADC Mux", "Slot 0", "IF1 01 ADC Swap Mux"}, 1880 {"IF1_ADC Mux", "Slot 2", "IF1 23 ADC Swap Mux"}, 1881 {"IF1_ADC Mux", "Slot 4", "IF1 45 ADC Swap Mux"}, 1882 {"IF1_ADC Mux", "Slot 6", "IF1 67 ADC Swap Mux"}, 1883 {"ADCDAT Mux", "ADCDAT1", "IF1_ADC Mux"}, 1884 {"AIF1TX", NULL, "I2S1"}, 1885 {"AIF1TX", NULL, "ADCDAT Mux"}, 1886 {"IF2 ADC Swap Mux", "L/R", "Stereo1 ADC MIX"}, 1887 {"IF2 ADC Swap Mux", "R/L", "Stereo1 ADC MIX"}, 1888 {"IF2 ADC Swap Mux", "L/L", "Stereo1 ADC MIX"}, 1889 {"IF2 ADC Swap Mux", "R/R", "Stereo1 ADC MIX"}, 1890 {"ADCDAT Mux", "ADCDAT2", "IF2 ADC Swap Mux"}, 1891 {"AIF2TX", NULL, "ADCDAT Mux"}, 1892 1893 {"IF1 DAC1 L", NULL, "AIF1RX"}, 1894 {"IF1 DAC1 L", NULL, "I2S1"}, 1895 {"IF1 DAC1 L", NULL, "DAC Stereo1 Filter"}, 1896 {"IF1 DAC1 R", NULL, "AIF1RX"}, 1897 {"IF1 DAC1 R", NULL, "I2S1"}, 1898 {"IF1 DAC1 R", NULL, "DAC Stereo1 Filter"}, 1899 1900 {"DAC1 MIXL", "Stereo ADC Switch", "Stereo1 ADC MIXL"}, 1901 {"DAC1 MIXL", "DAC1 Switch", "IF1 DAC1 L"}, 1902 {"DAC1 MIXR", "Stereo ADC Switch", "Stereo1 ADC MIXR"}, 1903 {"DAC1 MIXR", "DAC1 Switch", "IF1 DAC1 R"}, 1904 1905 {"Stereo1 DAC MIXL", "DAC L1 Switch", "DAC1 MIXL"}, 1906 {"Stereo1 DAC MIXL", "DAC R1 Switch", "DAC1 MIXR"}, 1907 1908 {"Stereo1 DAC MIXR", "DAC R1 Switch", "DAC1 MIXR"}, 1909 {"Stereo1 DAC MIXR", "DAC L1 Switch", "DAC1 MIXL"}, 1910 1911 {"DAC L1 Source", "DAC1", "DAC1 MIXL"}, 1912 {"DAC L1 Source", "Stereo1 DAC Mixer", "Stereo1 DAC MIXL"}, 1913 {"DAC R1 Source", "DAC1", "DAC1 MIXR"}, 1914 {"DAC R1 Source", "Stereo1 DAC Mixer", "Stereo1 DAC MIXR"}, 1915 1916 {"DAC L1", NULL, "DAC L1 Source"}, 1917 {"DAC R1", NULL, "DAC R1 Source"}, 1918 1919 {"HP Amp", NULL, "DAC L1"}, 1920 {"HP Amp", NULL, "DAC R1"}, 1921 {"HP Amp", NULL, "CLKDET SYS"}, 1922 {"HP Amp", NULL, "SAR"}, 1923 1924 {"HPOL", NULL, "HP Amp"}, 1925 {"HPOR", NULL, "HP Amp"}, 1926 }; 1927 1928 static int rt5682s_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask, 1929 unsigned int rx_mask, int slots, int slot_width) 1930 { 1931 struct snd_soc_component *component = dai->component; 1932 unsigned int cl, val = 0; 1933 1934 if (tx_mask || rx_mask) 1935 snd_soc_component_update_bits(component, 1936 RT5682S_TDM_ADDA_CTRL_2, RT5682S_TDM_EN, RT5682S_TDM_EN); 1937 else 1938 snd_soc_component_update_bits(component, 1939 RT5682S_TDM_ADDA_CTRL_2, RT5682S_TDM_EN, 0); 1940 1941 switch (slots) { 1942 case 4: 1943 val |= RT5682S_TDM_TX_CH_4; 1944 val |= RT5682S_TDM_RX_CH_4; 1945 break; 1946 case 6: 1947 val |= RT5682S_TDM_TX_CH_6; 1948 val |= RT5682S_TDM_RX_CH_6; 1949 break; 1950 case 8: 1951 val |= RT5682S_TDM_TX_CH_8; 1952 val |= RT5682S_TDM_RX_CH_8; 1953 break; 1954 case 2: 1955 break; 1956 default: 1957 return -EINVAL; 1958 } 1959 1960 snd_soc_component_update_bits(component, RT5682S_TDM_CTRL, 1961 RT5682S_TDM_TX_CH_MASK | RT5682S_TDM_RX_CH_MASK, val); 1962 1963 switch (slot_width) { 1964 case 8: 1965 if (tx_mask || rx_mask) 1966 return -EINVAL; 1967 cl = RT5682S_I2S1_TX_CHL_8 | RT5682S_I2S1_RX_CHL_8; 1968 break; 1969 case 16: 1970 val = RT5682S_TDM_CL_16; 1971 cl = RT5682S_I2S1_TX_CHL_16 | RT5682S_I2S1_RX_CHL_16; 1972 break; 1973 case 20: 1974 val = RT5682S_TDM_CL_20; 1975 cl = RT5682S_I2S1_TX_CHL_20 | RT5682S_I2S1_RX_CHL_20; 1976 break; 1977 case 24: 1978 val = RT5682S_TDM_CL_24; 1979 cl = RT5682S_I2S1_TX_CHL_24 | RT5682S_I2S1_RX_CHL_24; 1980 break; 1981 case 32: 1982 val = RT5682S_TDM_CL_32; 1983 cl = RT5682S_I2S1_TX_CHL_32 | RT5682S_I2S1_RX_CHL_32; 1984 break; 1985 default: 1986 return -EINVAL; 1987 } 1988 1989 snd_soc_component_update_bits(component, RT5682S_TDM_TCON_CTRL_1, 1990 RT5682S_TDM_CL_MASK, val); 1991 snd_soc_component_update_bits(component, RT5682S_I2S1_SDP, 1992 RT5682S_I2S1_TX_CHL_MASK | RT5682S_I2S1_RX_CHL_MASK, cl); 1993 1994 return 0; 1995 } 1996 1997 static int rt5682s_hw_params(struct snd_pcm_substream *substream, 1998 struct snd_pcm_hw_params *params, struct snd_soc_dai *dai) 1999 { 2000 struct snd_soc_component *component = dai->component; 2001 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2002 unsigned int len_1 = 0, len_2 = 0; 2003 int frame_size; 2004 2005 rt5682s->lrck[dai->id] = params_rate(params); 2006 2007 frame_size = snd_soc_params_to_frame_size(params); 2008 if (frame_size < 0) { 2009 dev_err(component->dev, "Unsupported frame size: %d\n", frame_size); 2010 return -EINVAL; 2011 } 2012 2013 switch (params_width(params)) { 2014 case 16: 2015 break; 2016 case 20: 2017 len_1 |= RT5682S_I2S1_DL_20; 2018 len_2 |= RT5682S_I2S2_DL_20; 2019 break; 2020 case 24: 2021 len_1 |= RT5682S_I2S1_DL_24; 2022 len_2 |= RT5682S_I2S2_DL_24; 2023 break; 2024 case 32: 2025 len_1 |= RT5682S_I2S1_DL_32; 2026 len_2 |= RT5682S_I2S2_DL_24; 2027 break; 2028 case 8: 2029 len_1 |= RT5682S_I2S2_DL_8; 2030 len_2 |= RT5682S_I2S2_DL_8; 2031 break; 2032 default: 2033 return -EINVAL; 2034 } 2035 2036 switch (dai->id) { 2037 case RT5682S_AIF1: 2038 snd_soc_component_update_bits(component, RT5682S_I2S1_SDP, 2039 RT5682S_I2S1_DL_MASK, len_1); 2040 if (params_channels(params) == 1) /* mono mode */ 2041 snd_soc_component_update_bits(component, RT5682S_I2S1_SDP, 2042 RT5682S_I2S1_MONO_MASK, RT5682S_I2S1_MONO_EN); 2043 else 2044 snd_soc_component_update_bits(component, RT5682S_I2S1_SDP, 2045 RT5682S_I2S1_MONO_MASK, RT5682S_I2S1_MONO_DIS); 2046 break; 2047 case RT5682S_AIF2: 2048 snd_soc_component_update_bits(component, RT5682S_I2S2_SDP, 2049 RT5682S_I2S2_DL_MASK, len_2); 2050 if (params_channels(params) == 1) /* mono mode */ 2051 snd_soc_component_update_bits(component, RT5682S_I2S2_SDP, 2052 RT5682S_I2S2_MONO_MASK, RT5682S_I2S2_MONO_EN); 2053 else 2054 snd_soc_component_update_bits(component, RT5682S_I2S2_SDP, 2055 RT5682S_I2S2_MONO_MASK, RT5682S_I2S2_MONO_DIS); 2056 break; 2057 default: 2058 dev_err(component->dev, "Invalid dai->id: %d\n", dai->id); 2059 return -EINVAL; 2060 } 2061 2062 return 0; 2063 } 2064 2065 static int rt5682s_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt) 2066 { 2067 struct snd_soc_component *component = dai->component; 2068 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2069 unsigned int reg_val = 0, tdm_ctrl = 0; 2070 2071 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { 2072 case SND_SOC_DAIFMT_CBM_CFM: 2073 rt5682s->master[dai->id] = 1; 2074 break; 2075 case SND_SOC_DAIFMT_CBS_CFS: 2076 rt5682s->master[dai->id] = 0; 2077 break; 2078 default: 2079 return -EINVAL; 2080 } 2081 2082 switch (fmt & SND_SOC_DAIFMT_INV_MASK) { 2083 case SND_SOC_DAIFMT_NB_NF: 2084 break; 2085 case SND_SOC_DAIFMT_IB_NF: 2086 reg_val |= RT5682S_I2S_BP_INV; 2087 tdm_ctrl |= RT5682S_TDM_S_BP_INV; 2088 break; 2089 case SND_SOC_DAIFMT_NB_IF: 2090 if (dai->id == RT5682S_AIF1) 2091 tdm_ctrl |= RT5682S_TDM_S_LP_INV | RT5682S_TDM_M_BP_INV; 2092 else 2093 return -EINVAL; 2094 break; 2095 case SND_SOC_DAIFMT_IB_IF: 2096 if (dai->id == RT5682S_AIF1) 2097 tdm_ctrl |= RT5682S_TDM_S_BP_INV | RT5682S_TDM_S_LP_INV | 2098 RT5682S_TDM_M_BP_INV | RT5682S_TDM_M_LP_INV; 2099 else 2100 return -EINVAL; 2101 break; 2102 default: 2103 return -EINVAL; 2104 } 2105 2106 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { 2107 case SND_SOC_DAIFMT_I2S: 2108 break; 2109 case SND_SOC_DAIFMT_LEFT_J: 2110 reg_val |= RT5682S_I2S_DF_LEFT; 2111 tdm_ctrl |= RT5682S_TDM_DF_LEFT; 2112 break; 2113 case SND_SOC_DAIFMT_DSP_A: 2114 reg_val |= RT5682S_I2S_DF_PCM_A; 2115 tdm_ctrl |= RT5682S_TDM_DF_PCM_A; 2116 break; 2117 case SND_SOC_DAIFMT_DSP_B: 2118 reg_val |= RT5682S_I2S_DF_PCM_B; 2119 tdm_ctrl |= RT5682S_TDM_DF_PCM_B; 2120 break; 2121 default: 2122 return -EINVAL; 2123 } 2124 2125 switch (dai->id) { 2126 case RT5682S_AIF1: 2127 snd_soc_component_update_bits(component, RT5682S_I2S1_SDP, 2128 RT5682S_I2S_DF_MASK, reg_val); 2129 snd_soc_component_update_bits(component, RT5682S_TDM_TCON_CTRL_1, 2130 RT5682S_TDM_MS_MASK | RT5682S_TDM_S_BP_MASK | 2131 RT5682S_TDM_DF_MASK | RT5682S_TDM_M_BP_MASK | 2132 RT5682S_TDM_M_LP_MASK | RT5682S_TDM_S_LP_MASK, 2133 tdm_ctrl | rt5682s->master[dai->id]); 2134 break; 2135 case RT5682S_AIF2: 2136 if (rt5682s->master[dai->id] == 0) 2137 reg_val |= RT5682S_I2S2_MS_S; 2138 snd_soc_component_update_bits(component, RT5682S_I2S2_SDP, 2139 RT5682S_I2S2_MS_MASK | RT5682S_I2S_BP_MASK | 2140 RT5682S_I2S_DF_MASK, reg_val); 2141 break; 2142 default: 2143 dev_err(component->dev, "Invalid dai->id: %d\n", dai->id); 2144 return -EINVAL; 2145 } 2146 return 0; 2147 } 2148 2149 static int rt5682s_set_component_sysclk(struct snd_soc_component *component, 2150 int clk_id, int source, unsigned int freq, int dir) 2151 { 2152 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2153 unsigned int src = 0; 2154 2155 if (freq == rt5682s->sysclk && clk_id == rt5682s->sysclk_src) 2156 return 0; 2157 2158 switch (clk_id) { 2159 case RT5682S_SCLK_S_MCLK: 2160 src = RT5682S_CLK_SRC_MCLK; 2161 break; 2162 case RT5682S_SCLK_S_PLL1: 2163 src = RT5682S_CLK_SRC_PLL1; 2164 break; 2165 case RT5682S_SCLK_S_PLL2: 2166 src = RT5682S_CLK_SRC_PLL2; 2167 break; 2168 case RT5682S_SCLK_S_RCCLK: 2169 src = RT5682S_CLK_SRC_RCCLK; 2170 break; 2171 default: 2172 dev_err(component->dev, "Invalid clock id (%d)\n", clk_id); 2173 return -EINVAL; 2174 } 2175 2176 snd_soc_component_update_bits(component, RT5682S_GLB_CLK, 2177 RT5682S_SCLK_SRC_MASK, src << RT5682S_SCLK_SRC_SFT); 2178 snd_soc_component_update_bits(component, RT5682S_ADDA_CLK_1, 2179 RT5682S_I2S_M_CLK_SRC_MASK, src << RT5682S_I2S_M_CLK_SRC_SFT); 2180 snd_soc_component_update_bits(component, RT5682S_I2S2_M_CLK_CTRL_1, 2181 RT5682S_I2S2_M_CLK_SRC_MASK, src << RT5682S_I2S2_M_CLK_SRC_SFT); 2182 2183 rt5682s->sysclk = freq; 2184 rt5682s->sysclk_src = clk_id; 2185 2186 dev_dbg(component->dev, "Sysclk is %dHz and clock id is %d\n", 2187 freq, clk_id); 2188 2189 return 0; 2190 } 2191 2192 static const struct pll_calc_map plla_table[] = { 2193 {2048000, 24576000, 0, 46, 2, true, false, false, false}, 2194 {256000, 24576000, 0, 382, 2, true, false, false, false}, 2195 {512000, 24576000, 0, 190, 2, true, false, false, false}, 2196 {4096000, 24576000, 0, 22, 2, true, false, false, false}, 2197 {1024000, 24576000, 0, 94, 2, true, false, false, false}, 2198 {11289600, 22579200, 1, 22, 2, false, false, false, false}, 2199 {1411200, 22579200, 0, 62, 2, true, false, false, false}, 2200 {2822400, 22579200, 0, 30, 2, true, false, false, false}, 2201 {12288000, 24576000, 1, 22, 2, false, false, false, false}, 2202 {1536000, 24576000, 0, 62, 2, true, false, false, false}, 2203 {3072000, 24576000, 0, 30, 2, true, false, false, false}, 2204 {24576000, 49152000, 4, 22, 0, false, false, false, false}, 2205 {3072000, 49152000, 0, 30, 0, true, false, false, false}, 2206 {6144000, 49152000, 0, 30, 0, false, false, false, false}, 2207 {49152000, 98304000, 10, 22, 0, false, true, false, false}, 2208 {6144000, 98304000, 0, 30, 0, false, true, false, false}, 2209 {12288000, 98304000, 1, 22, 0, false, true, false, false}, 2210 {48000000, 3840000, 10, 22, 23, false, false, false, false}, 2211 {24000000, 3840000, 4, 22, 23, false, false, false, false}, 2212 {19200000, 3840000, 3, 23, 23, false, false, false, false}, 2213 {38400000, 3840000, 8, 23, 23, false, false, false, false}, 2214 }; 2215 2216 static const struct pll_calc_map pllb_table[] = { 2217 {48000000, 24576000, 8, 6, 3, false, false, false, false}, 2218 {48000000, 22579200, 23, 12, 3, false, false, false, true}, 2219 {24000000, 24576000, 3, 6, 3, false, false, false, false}, 2220 {24000000, 22579200, 23, 26, 3, false, false, false, true}, 2221 {19200000, 24576000, 2, 6, 3, false, false, false, false}, 2222 {19200000, 22579200, 3, 5, 3, false, false, false, true}, 2223 {38400000, 24576000, 6, 6, 3, false, false, false, false}, 2224 {38400000, 22579200, 8, 5, 3, false, false, false, true}, 2225 {3840000, 49152000, 0, 6, 0, true, false, false, false}, 2226 }; 2227 2228 static int find_pll_inter_combination(unsigned int f_in, unsigned int f_out, 2229 struct pll_calc_map *a, struct pll_calc_map *b) 2230 { 2231 int i, j; 2232 2233 /* Look at PLLA table */ 2234 for (i = 0; i < ARRAY_SIZE(plla_table); i++) { 2235 if (plla_table[i].freq_in == f_in && plla_table[i].freq_out == f_out) { 2236 memcpy(a, plla_table + i, sizeof(*a)); 2237 return USE_PLLA; 2238 } 2239 } 2240 2241 /* Look at PLLB table */ 2242 for (i = 0; i < ARRAY_SIZE(pllb_table); i++) { 2243 if (pllb_table[i].freq_in == f_in && pllb_table[i].freq_out == f_out) { 2244 memcpy(b, pllb_table + i, sizeof(*b)); 2245 return USE_PLLB; 2246 } 2247 } 2248 2249 /* Find a combination of PLLA & PLLB */ 2250 for (i = ARRAY_SIZE(plla_table) - 1; i >= 0; i--) { 2251 if (plla_table[i].freq_in == f_in && plla_table[i].freq_out == 3840000) { 2252 for (j = ARRAY_SIZE(pllb_table) - 1; j >= 0; j--) { 2253 if (pllb_table[j].freq_in == 3840000 && 2254 pllb_table[j].freq_out == f_out) { 2255 memcpy(a, plla_table + i, sizeof(*a)); 2256 memcpy(b, pllb_table + j, sizeof(*b)); 2257 return USE_PLLAB; 2258 } 2259 } 2260 } 2261 } 2262 2263 return -EINVAL; 2264 } 2265 2266 static int rt5682s_set_component_pll(struct snd_soc_component *component, 2267 int pll_id, int source, unsigned int freq_in, 2268 unsigned int freq_out) 2269 { 2270 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2271 struct pll_calc_map a_map, b_map; 2272 2273 if (source == rt5682s->pll_src[pll_id] && freq_in == rt5682s->pll_in[pll_id] && 2274 freq_out == rt5682s->pll_out[pll_id]) 2275 return 0; 2276 2277 if (!freq_in || !freq_out) { 2278 dev_dbg(component->dev, "PLL disabled\n"); 2279 rt5682s->pll_in[pll_id] = 0; 2280 rt5682s->pll_out[pll_id] = 0; 2281 snd_soc_component_update_bits(component, RT5682S_GLB_CLK, 2282 RT5682S_SCLK_SRC_MASK, RT5682S_CLK_SRC_MCLK << RT5682S_SCLK_SRC_SFT); 2283 return 0; 2284 } 2285 2286 switch (source) { 2287 case RT5682S_PLL_S_MCLK: 2288 snd_soc_component_update_bits(component, RT5682S_GLB_CLK, 2289 RT5682S_PLL_SRC_MASK, RT5682S_PLL_SRC_MCLK); 2290 break; 2291 case RT5682S_PLL_S_BCLK1: 2292 snd_soc_component_update_bits(component, RT5682S_GLB_CLK, 2293 RT5682S_PLL_SRC_MASK, RT5682S_PLL_SRC_BCLK1); 2294 break; 2295 default: 2296 dev_err(component->dev, "Unknown PLL Source %d\n", source); 2297 return -EINVAL; 2298 } 2299 2300 rt5682s->pll_comb = find_pll_inter_combination(freq_in, freq_out, 2301 &a_map, &b_map); 2302 2303 if ((pll_id == RT5682S_PLL1 && rt5682s->pll_comb == USE_PLLA) || 2304 (pll_id == RT5682S_PLL2 && (rt5682s->pll_comb == USE_PLLB || 2305 rt5682s->pll_comb == USE_PLLAB))) { 2306 dev_dbg(component->dev, 2307 "Supported freq conversion for PLL%d:(%d->%d): %d\n", 2308 pll_id + 1, freq_in, freq_out, rt5682s->pll_comb); 2309 } else { 2310 dev_err(component->dev, 2311 "Unsupported freq conversion for PLL%d:(%d->%d): %d\n", 2312 pll_id + 1, freq_in, freq_out, rt5682s->pll_comb); 2313 return -EINVAL; 2314 } 2315 2316 if (rt5682s->pll_comb == USE_PLLA || rt5682s->pll_comb == USE_PLLAB) { 2317 dev_dbg(component->dev, 2318 "PLLA: fin=%d fout=%d m_bp=%d k_bp=%d m=%d n=%d k=%d\n", 2319 a_map.freq_in, a_map.freq_out, a_map.m_bp, a_map.k_bp, 2320 (a_map.m_bp ? 0 : a_map.m), a_map.n, (a_map.k_bp ? 0 : a_map.k)); 2321 snd_soc_component_update_bits(component, RT5682S_PLL_CTRL_1, 2322 RT5682S_PLLA_N_MASK, a_map.n); 2323 snd_soc_component_update_bits(component, RT5682S_PLL_CTRL_2, 2324 RT5682S_PLLA_M_MASK | RT5682S_PLLA_K_MASK, 2325 a_map.m << RT5682S_PLLA_M_SFT | a_map.k); 2326 snd_soc_component_update_bits(component, RT5682S_PLL_CTRL_6, 2327 RT5682S_PLLA_M_BP_MASK | RT5682S_PLLA_K_BP_MASK, 2328 a_map.m_bp << RT5682S_PLLA_M_BP_SFT | 2329 a_map.k_bp << RT5682S_PLLA_K_BP_SFT); 2330 } 2331 2332 if (rt5682s->pll_comb == USE_PLLB || rt5682s->pll_comb == USE_PLLAB) { 2333 dev_dbg(component->dev, 2334 "PLLB: fin=%d fout=%d m_bp=%d k_bp=%d m=%d n=%d k=%d byp_ps=%d sel_ps=%d\n", 2335 b_map.freq_in, b_map.freq_out, b_map.m_bp, b_map.k_bp, 2336 (b_map.m_bp ? 0 : b_map.m), b_map.n, (b_map.k_bp ? 0 : b_map.k), 2337 b_map.byp_ps, b_map.sel_ps); 2338 snd_soc_component_update_bits(component, RT5682S_PLL_CTRL_3, 2339 RT5682S_PLLB_N_MASK, b_map.n); 2340 snd_soc_component_update_bits(component, RT5682S_PLL_CTRL_4, 2341 RT5682S_PLLB_M_MASK | RT5682S_PLLB_K_MASK, 2342 b_map.m << RT5682S_PLLB_M_SFT | b_map.k); 2343 snd_soc_component_update_bits(component, RT5682S_PLL_CTRL_6, 2344 RT5682S_PLLB_SEL_PS_MASK | RT5682S_PLLB_BYP_PS_MASK | 2345 RT5682S_PLLB_M_BP_MASK | RT5682S_PLLB_K_BP_MASK, 2346 b_map.sel_ps << RT5682S_PLLB_SEL_PS_SFT | 2347 b_map.byp_ps << RT5682S_PLLB_BYP_PS_SFT | 2348 b_map.m_bp << RT5682S_PLLB_M_BP_SFT | 2349 b_map.k_bp << RT5682S_PLLB_K_BP_SFT); 2350 } 2351 2352 if (rt5682s->pll_comb == USE_PLLB) 2353 snd_soc_component_update_bits(component, RT5682S_PLL_CTRL_7, 2354 RT5682S_PLLB_SRC_MASK, RT5682S_PLLB_SRC_DFIN); 2355 2356 rt5682s->pll_in[pll_id] = freq_in; 2357 rt5682s->pll_out[pll_id] = freq_out; 2358 rt5682s->pll_src[pll_id] = source; 2359 2360 return 0; 2361 } 2362 2363 static int rt5682s_set_bclk1_ratio(struct snd_soc_dai *dai, 2364 unsigned int ratio) 2365 { 2366 struct snd_soc_component *component = dai->component; 2367 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2368 2369 rt5682s->bclk[dai->id] = ratio; 2370 2371 switch (ratio) { 2372 case 256: 2373 snd_soc_component_update_bits(component, RT5682S_TDM_TCON_CTRL_1, 2374 RT5682S_TDM_BCLK_MS1_MASK, RT5682S_TDM_BCLK_MS1_256); 2375 break; 2376 case 128: 2377 snd_soc_component_update_bits(component, RT5682S_TDM_TCON_CTRL_1, 2378 RT5682S_TDM_BCLK_MS1_MASK, RT5682S_TDM_BCLK_MS1_128); 2379 break; 2380 case 64: 2381 snd_soc_component_update_bits(component, RT5682S_TDM_TCON_CTRL_1, 2382 RT5682S_TDM_BCLK_MS1_MASK, RT5682S_TDM_BCLK_MS1_64); 2383 break; 2384 case 32: 2385 snd_soc_component_update_bits(component, RT5682S_TDM_TCON_CTRL_1, 2386 RT5682S_TDM_BCLK_MS1_MASK, RT5682S_TDM_BCLK_MS1_32); 2387 break; 2388 default: 2389 dev_err(dai->dev, "Invalid bclk1 ratio %d\n", ratio); 2390 return -EINVAL; 2391 } 2392 2393 return 0; 2394 } 2395 2396 static int rt5682s_set_bclk2_ratio(struct snd_soc_dai *dai, unsigned int ratio) 2397 { 2398 struct snd_soc_component *component = dai->component; 2399 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2400 2401 rt5682s->bclk[dai->id] = ratio; 2402 2403 switch (ratio) { 2404 case 64: 2405 snd_soc_component_update_bits(component, RT5682S_ADDA_CLK_2, 2406 RT5682S_I2S2_BCLK_MS2_MASK, RT5682S_I2S2_BCLK_MS2_64); 2407 break; 2408 case 32: 2409 snd_soc_component_update_bits(component, RT5682S_ADDA_CLK_2, 2410 RT5682S_I2S2_BCLK_MS2_MASK, RT5682S_I2S2_BCLK_MS2_32); 2411 break; 2412 default: 2413 dev_err(dai->dev, "Invalid bclk2 ratio %d\n", ratio); 2414 return -EINVAL; 2415 } 2416 2417 return 0; 2418 } 2419 2420 static int rt5682s_set_bias_level(struct snd_soc_component *component, 2421 enum snd_soc_bias_level level) 2422 { 2423 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2424 2425 switch (level) { 2426 case SND_SOC_BIAS_PREPARE: 2427 regmap_update_bits(rt5682s->regmap, RT5682S_PWR_DIG_1, 2428 RT5682S_PWR_LDO, RT5682S_PWR_LDO); 2429 break; 2430 case SND_SOC_BIAS_STANDBY: 2431 regmap_update_bits(rt5682s->regmap, RT5682S_PWR_DIG_1, 2432 RT5682S_DIG_GATE_CTRL, RT5682S_DIG_GATE_CTRL); 2433 break; 2434 case SND_SOC_BIAS_OFF: 2435 regmap_update_bits(rt5682s->regmap, RT5682S_PWR_DIG_1, 2436 RT5682S_DIG_GATE_CTRL | RT5682S_PWR_LDO, 0); 2437 break; 2438 case SND_SOC_BIAS_ON: 2439 break; 2440 } 2441 2442 return 0; 2443 } 2444 2445 #ifdef CONFIG_COMMON_CLK 2446 #define CLK_PLL2_FIN 48000000 2447 #define CLK_48 48000 2448 #define CLK_44 44100 2449 2450 static bool rt5682s_clk_check(struct rt5682s_priv *rt5682s) 2451 { 2452 if (!rt5682s->master[RT5682S_AIF1]) { 2453 dev_dbg(rt5682s->component->dev, "dai clk fmt not set correctly\n"); 2454 return false; 2455 } 2456 return true; 2457 } 2458 2459 static int rt5682s_wclk_prepare(struct clk_hw *hw) 2460 { 2461 struct rt5682s_priv *rt5682s = 2462 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_WCLK_IDX]); 2463 struct snd_soc_component *component = rt5682s->component; 2464 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component); 2465 2466 if (!rt5682s_clk_check(rt5682s)) 2467 return -EINVAL; 2468 2469 snd_soc_dapm_mutex_lock(dapm); 2470 2471 snd_soc_dapm_force_enable_pin_unlocked(dapm, "MICBIAS"); 2472 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 2473 RT5682S_PWR_MB, RT5682S_PWR_MB); 2474 2475 snd_soc_dapm_force_enable_pin_unlocked(dapm, "Vref2"); 2476 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 2477 RT5682S_PWR_VREF2 | RT5682S_PWR_FV2, RT5682S_PWR_VREF2); 2478 usleep_range(15000, 20000); 2479 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 2480 RT5682S_PWR_FV2, RT5682S_PWR_FV2); 2481 2482 snd_soc_dapm_force_enable_pin_unlocked(dapm, "I2S1"); 2483 /* Only need to power PLLB due to the rate set restriction */ 2484 snd_soc_dapm_force_enable_pin_unlocked(dapm, "PLLB"); 2485 snd_soc_dapm_sync_unlocked(dapm); 2486 2487 snd_soc_dapm_mutex_unlock(dapm); 2488 2489 return 0; 2490 } 2491 2492 static void rt5682s_wclk_unprepare(struct clk_hw *hw) 2493 { 2494 struct rt5682s_priv *rt5682s = 2495 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_WCLK_IDX]); 2496 struct snd_soc_component *component = rt5682s->component; 2497 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component); 2498 2499 if (!rt5682s_clk_check(rt5682s)) 2500 return; 2501 2502 snd_soc_dapm_mutex_lock(dapm); 2503 2504 snd_soc_dapm_disable_pin_unlocked(dapm, "MICBIAS"); 2505 snd_soc_dapm_disable_pin_unlocked(dapm, "Vref2"); 2506 if (!rt5682s->jack_type) 2507 snd_soc_component_update_bits(component, RT5682S_PWR_ANLG_1, 2508 RT5682S_PWR_VREF2 | RT5682S_PWR_FV2 | RT5682S_PWR_MB, 0); 2509 2510 snd_soc_dapm_disable_pin_unlocked(dapm, "I2S1"); 2511 snd_soc_dapm_disable_pin_unlocked(dapm, "PLLB"); 2512 snd_soc_dapm_sync_unlocked(dapm); 2513 2514 snd_soc_dapm_mutex_unlock(dapm); 2515 } 2516 2517 static unsigned long rt5682s_wclk_recalc_rate(struct clk_hw *hw, 2518 unsigned long parent_rate) 2519 { 2520 struct rt5682s_priv *rt5682s = 2521 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_WCLK_IDX]); 2522 struct snd_soc_component *component = rt5682s->component; 2523 const char * const clk_name = clk_hw_get_name(hw); 2524 2525 if (!rt5682s_clk_check(rt5682s)) 2526 return 0; 2527 /* 2528 * Only accept to set wclk rate to 44.1k or 48kHz. 2529 */ 2530 if (rt5682s->lrck[RT5682S_AIF1] != CLK_48 && 2531 rt5682s->lrck[RT5682S_AIF1] != CLK_44) { 2532 dev_warn(component->dev, "%s: clk %s only support %d or %d Hz output\n", 2533 __func__, clk_name, CLK_44, CLK_48); 2534 return 0; 2535 } 2536 2537 return rt5682s->lrck[RT5682S_AIF1]; 2538 } 2539 2540 static long rt5682s_wclk_round_rate(struct clk_hw *hw, unsigned long rate, 2541 unsigned long *parent_rate) 2542 { 2543 struct rt5682s_priv *rt5682s = 2544 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_WCLK_IDX]); 2545 struct snd_soc_component *component = rt5682s->component; 2546 const char * const clk_name = clk_hw_get_name(hw); 2547 2548 if (!rt5682s_clk_check(rt5682s)) 2549 return -EINVAL; 2550 /* 2551 * Only accept to set wclk rate to 44.1k or 48kHz. 2552 * It will force to 48kHz if not both. 2553 */ 2554 if (rate != CLK_48 && rate != CLK_44) { 2555 dev_warn(component->dev, "%s: clk %s only support %d or %d Hz output\n", 2556 __func__, clk_name, CLK_44, CLK_48); 2557 rate = CLK_48; 2558 } 2559 2560 return rate; 2561 } 2562 2563 static int rt5682s_wclk_set_rate(struct clk_hw *hw, unsigned long rate, 2564 unsigned long parent_rate) 2565 { 2566 struct rt5682s_priv *rt5682s = 2567 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_WCLK_IDX]); 2568 struct snd_soc_component *component = rt5682s->component; 2569 struct clk *parent_clk; 2570 const char * const clk_name = clk_hw_get_name(hw); 2571 unsigned int clk_pll2_fout; 2572 2573 if (!rt5682s_clk_check(rt5682s)) 2574 return -EINVAL; 2575 2576 /* 2577 * Whether the wclk's parent clk (mclk) exists or not, please ensure 2578 * it is fixed or set to 48MHz before setting wclk rate. It's a 2579 * temporary limitation. Only accept 48MHz clk as the clk provider. 2580 * 2581 * It will set the codec anyway by assuming mclk is 48MHz. 2582 */ 2583 parent_clk = clk_get_parent(hw->clk); 2584 if (!parent_clk) 2585 dev_warn(component->dev, 2586 "Parent mclk of wclk not acquired in driver. Please ensure mclk was provided as %d Hz.\n", 2587 CLK_PLL2_FIN); 2588 2589 if (parent_rate != CLK_PLL2_FIN) 2590 dev_warn(component->dev, "clk %s only support %d Hz input\n", 2591 clk_name, CLK_PLL2_FIN); 2592 2593 /* 2594 * To achieve the rate conversion from 48MHz to 44.1k or 48kHz, 2595 * PLL2 is needed. 2596 */ 2597 clk_pll2_fout = rate * 512; 2598 rt5682s_set_component_pll(component, RT5682S_PLL2, RT5682S_PLL_S_MCLK, 2599 CLK_PLL2_FIN, clk_pll2_fout); 2600 2601 rt5682s_set_component_sysclk(component, RT5682S_SCLK_S_PLL2, 0, 2602 clk_pll2_fout, SND_SOC_CLOCK_IN); 2603 2604 rt5682s->lrck[RT5682S_AIF1] = rate; 2605 2606 return 0; 2607 } 2608 2609 static unsigned long rt5682s_bclk_recalc_rate(struct clk_hw *hw, 2610 unsigned long parent_rate) 2611 { 2612 struct rt5682s_priv *rt5682s = 2613 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_BCLK_IDX]); 2614 struct snd_soc_component *component = rt5682s->component; 2615 unsigned int bclks_per_wclk; 2616 2617 bclks_per_wclk = snd_soc_component_read(component, RT5682S_TDM_TCON_CTRL_1); 2618 2619 switch (bclks_per_wclk & RT5682S_TDM_BCLK_MS1_MASK) { 2620 case RT5682S_TDM_BCLK_MS1_256: 2621 return parent_rate * 256; 2622 case RT5682S_TDM_BCLK_MS1_128: 2623 return parent_rate * 128; 2624 case RT5682S_TDM_BCLK_MS1_64: 2625 return parent_rate * 64; 2626 case RT5682S_TDM_BCLK_MS1_32: 2627 return parent_rate * 32; 2628 default: 2629 return 0; 2630 } 2631 } 2632 2633 static unsigned long rt5682s_bclk_get_factor(unsigned long rate, 2634 unsigned long parent_rate) 2635 { 2636 unsigned long factor; 2637 2638 factor = rate / parent_rate; 2639 if (factor < 64) 2640 return 32; 2641 else if (factor < 128) 2642 return 64; 2643 else if (factor < 256) 2644 return 128; 2645 else 2646 return 256; 2647 } 2648 2649 static long rt5682s_bclk_round_rate(struct clk_hw *hw, unsigned long rate, 2650 unsigned long *parent_rate) 2651 { 2652 struct rt5682s_priv *rt5682s = 2653 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_BCLK_IDX]); 2654 unsigned long factor; 2655 2656 if (!*parent_rate || !rt5682s_clk_check(rt5682s)) 2657 return -EINVAL; 2658 2659 /* 2660 * BCLK rates are set as a multiplier of WCLK in HW. 2661 * We don't allow changing the parent WCLK. We just do 2662 * some rounding down based on the parent WCLK rate 2663 * and find the appropriate multiplier of BCLK to 2664 * get the rounded down BCLK value. 2665 */ 2666 factor = rt5682s_bclk_get_factor(rate, *parent_rate); 2667 2668 return *parent_rate * factor; 2669 } 2670 2671 static int rt5682s_bclk_set_rate(struct clk_hw *hw, unsigned long rate, 2672 unsigned long parent_rate) 2673 { 2674 struct rt5682s_priv *rt5682s = 2675 container_of(hw, struct rt5682s_priv, dai_clks_hw[RT5682S_DAI_BCLK_IDX]); 2676 struct snd_soc_component *component = rt5682s->component; 2677 struct snd_soc_dai *dai; 2678 unsigned long factor; 2679 2680 if (!rt5682s_clk_check(rt5682s)) 2681 return -EINVAL; 2682 2683 factor = rt5682s_bclk_get_factor(rate, parent_rate); 2684 2685 for_each_component_dais(component, dai) 2686 if (dai->id == RT5682S_AIF1) 2687 break; 2688 if (!dai) { 2689 dev_err(component->dev, "dai %d not found in component\n", 2690 RT5682S_AIF1); 2691 return -ENODEV; 2692 } 2693 2694 return rt5682s_set_bclk1_ratio(dai, factor); 2695 } 2696 2697 static const struct clk_ops rt5682s_dai_clk_ops[RT5682S_DAI_NUM_CLKS] = { 2698 [RT5682S_DAI_WCLK_IDX] = { 2699 .prepare = rt5682s_wclk_prepare, 2700 .unprepare = rt5682s_wclk_unprepare, 2701 .recalc_rate = rt5682s_wclk_recalc_rate, 2702 .round_rate = rt5682s_wclk_round_rate, 2703 .set_rate = rt5682s_wclk_set_rate, 2704 }, 2705 [RT5682S_DAI_BCLK_IDX] = { 2706 .recalc_rate = rt5682s_bclk_recalc_rate, 2707 .round_rate = rt5682s_bclk_round_rate, 2708 .set_rate = rt5682s_bclk_set_rate, 2709 }, 2710 }; 2711 2712 static int rt5682s_register_dai_clks(struct snd_soc_component *component) 2713 { 2714 struct device *dev = component->dev; 2715 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2716 struct rt5682s_platform_data *pdata = &rt5682s->pdata; 2717 struct clk_hw *dai_clk_hw; 2718 int i, ret; 2719 2720 for (i = 0; i < RT5682S_DAI_NUM_CLKS; ++i) { 2721 struct clk_init_data init = { }; 2722 struct clk_parent_data parent_data; 2723 const struct clk_hw *parent; 2724 2725 dai_clk_hw = &rt5682s->dai_clks_hw[i]; 2726 2727 switch (i) { 2728 case RT5682S_DAI_WCLK_IDX: 2729 /* Make MCLK the parent of WCLK */ 2730 if (rt5682s->mclk) { 2731 parent_data = (struct clk_parent_data){ 2732 .fw_name = "mclk", 2733 }; 2734 init.parent_data = &parent_data; 2735 init.num_parents = 1; 2736 } 2737 break; 2738 case RT5682S_DAI_BCLK_IDX: 2739 /* Make WCLK the parent of BCLK */ 2740 parent = &rt5682s->dai_clks_hw[RT5682S_DAI_WCLK_IDX]; 2741 init.parent_hws = &parent; 2742 init.num_parents = 1; 2743 break; 2744 default: 2745 dev_err(dev, "Invalid clock index\n"); 2746 return -EINVAL; 2747 } 2748 2749 init.name = pdata->dai_clk_names[i]; 2750 init.ops = &rt5682s_dai_clk_ops[i]; 2751 init.flags = CLK_GET_RATE_NOCACHE | CLK_SET_RATE_GATE; 2752 dai_clk_hw->init = &init; 2753 2754 ret = devm_clk_hw_register(dev, dai_clk_hw); 2755 if (ret) { 2756 dev_warn(dev, "Failed to register %s: %d\n", init.name, ret); 2757 return ret; 2758 } 2759 2760 if (dev->of_node) { 2761 devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, dai_clk_hw); 2762 } else { 2763 ret = devm_clk_hw_register_clkdev(dev, dai_clk_hw, 2764 init.name, dev_name(dev)); 2765 if (ret) 2766 return ret; 2767 } 2768 } 2769 2770 return 0; 2771 } 2772 2773 static int rt5682s_dai_probe_clks(struct snd_soc_component *component) 2774 { 2775 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2776 int ret; 2777 2778 /* Check if MCLK provided */ 2779 rt5682s->mclk = devm_clk_get(component->dev, "mclk"); 2780 if (IS_ERR(rt5682s->mclk)) { 2781 if (PTR_ERR(rt5682s->mclk) != -ENOENT) { 2782 ret = PTR_ERR(rt5682s->mclk); 2783 return ret; 2784 } 2785 rt5682s->mclk = NULL; 2786 } 2787 2788 /* Register CCF DAI clock control */ 2789 ret = rt5682s_register_dai_clks(component); 2790 if (ret) 2791 return ret; 2792 2793 /* Initial setup for CCF */ 2794 rt5682s->lrck[RT5682S_AIF1] = CLK_48; 2795 2796 return 0; 2797 } 2798 #else 2799 static inline int rt5682s_dai_probe_clks(struct snd_soc_component *component) 2800 { 2801 return 0; 2802 } 2803 #endif /* CONFIG_COMMON_CLK */ 2804 2805 static int rt5682s_probe(struct snd_soc_component *component) 2806 { 2807 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2808 struct snd_soc_dapm_context *dapm = &component->dapm; 2809 int ret; 2810 2811 rt5682s->component = component; 2812 2813 ret = rt5682s_dai_probe_clks(component); 2814 if (ret) 2815 return ret; 2816 2817 snd_soc_dapm_disable_pin(dapm, "MICBIAS"); 2818 snd_soc_dapm_disable_pin(dapm, "Vref2"); 2819 snd_soc_dapm_sync(dapm); 2820 return 0; 2821 } 2822 2823 static void rt5682s_remove(struct snd_soc_component *component) 2824 { 2825 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2826 2827 rt5682s_reset(rt5682s); 2828 } 2829 2830 #ifdef CONFIG_PM 2831 static int rt5682s_suspend(struct snd_soc_component *component) 2832 { 2833 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2834 2835 cancel_delayed_work_sync(&rt5682s->jack_detect_work); 2836 cancel_delayed_work_sync(&rt5682s->jd_check_work); 2837 2838 if (rt5682s->hs_jack && rt5682s->jack_type == SND_JACK_HEADSET) 2839 snd_soc_component_update_bits(component, RT5682S_4BTN_IL_CMD_2, 2840 RT5682S_4BTN_IL_MASK, RT5682S_4BTN_IL_DIS); 2841 2842 regcache_cache_only(rt5682s->regmap, true); 2843 regcache_mark_dirty(rt5682s->regmap); 2844 2845 return 0; 2846 } 2847 2848 static int rt5682s_resume(struct snd_soc_component *component) 2849 { 2850 struct rt5682s_priv *rt5682s = snd_soc_component_get_drvdata(component); 2851 2852 regcache_cache_only(rt5682s->regmap, false); 2853 regcache_sync(rt5682s->regmap); 2854 2855 if (rt5682s->hs_jack) { 2856 rt5682s->jack_type = 0; 2857 rt5682s_sar_power_mode(component, SAR_PWR_NORMAL, 0); 2858 mod_delayed_work(system_power_efficient_wq, 2859 &rt5682s->jack_detect_work, msecs_to_jiffies(0)); 2860 } 2861 2862 return 0; 2863 } 2864 #else 2865 #define rt5682s_suspend NULL 2866 #define rt5682s_resume NULL 2867 #endif 2868 2869 static const struct snd_soc_dai_ops rt5682s_aif1_dai_ops = { 2870 .hw_params = rt5682s_hw_params, 2871 .set_fmt = rt5682s_set_dai_fmt, 2872 .set_tdm_slot = rt5682s_set_tdm_slot, 2873 .set_bclk_ratio = rt5682s_set_bclk1_ratio, 2874 }; 2875 2876 static const struct snd_soc_dai_ops rt5682s_aif2_dai_ops = { 2877 .hw_params = rt5682s_hw_params, 2878 .set_fmt = rt5682s_set_dai_fmt, 2879 .set_bclk_ratio = rt5682s_set_bclk2_ratio, 2880 }; 2881 2882 static const struct snd_soc_component_driver rt5682s_soc_component_dev = { 2883 .probe = rt5682s_probe, 2884 .remove = rt5682s_remove, 2885 .suspend = rt5682s_suspend, 2886 .resume = rt5682s_resume, 2887 .set_bias_level = rt5682s_set_bias_level, 2888 .controls = rt5682s_snd_controls, 2889 .num_controls = ARRAY_SIZE(rt5682s_snd_controls), 2890 .dapm_widgets = rt5682s_dapm_widgets, 2891 .num_dapm_widgets = ARRAY_SIZE(rt5682s_dapm_widgets), 2892 .dapm_routes = rt5682s_dapm_routes, 2893 .num_dapm_routes = ARRAY_SIZE(rt5682s_dapm_routes), 2894 .set_sysclk = rt5682s_set_component_sysclk, 2895 .set_pll = rt5682s_set_component_pll, 2896 .set_jack = rt5682s_set_jack_detect, 2897 .use_pmdown_time = 1, 2898 .endianness = 1, 2899 .non_legacy_dai_naming = 1, 2900 }; 2901 2902 static int rt5682s_parse_dt(struct rt5682s_priv *rt5682s, struct device *dev) 2903 { 2904 device_property_read_u32(dev, "realtek,dmic1-data-pin", 2905 &rt5682s->pdata.dmic1_data_pin); 2906 device_property_read_u32(dev, "realtek,dmic1-clk-pin", 2907 &rt5682s->pdata.dmic1_clk_pin); 2908 device_property_read_u32(dev, "realtek,jd-src", 2909 &rt5682s->pdata.jd_src); 2910 device_property_read_u32(dev, "realtek,dmic-clk-rate-hz", 2911 &rt5682s->pdata.dmic_clk_rate); 2912 device_property_read_u32(dev, "realtek,dmic-delay-ms", 2913 &rt5682s->pdata.dmic_delay); 2914 device_property_read_u32(dev, "realtek,amic-delay-ms", 2915 &rt5682s->pdata.amic_delay); 2916 2917 rt5682s->pdata.ldo1_en = of_get_named_gpio(dev->of_node, 2918 "realtek,ldo1-en-gpios", 0); 2919 2920 if (device_property_read_string_array(dev, "clock-output-names", 2921 rt5682s->pdata.dai_clk_names, 2922 RT5682S_DAI_NUM_CLKS) < 0) 2923 dev_warn(dev, "Using default DAI clk names: %s, %s\n", 2924 rt5682s->pdata.dai_clk_names[RT5682S_DAI_WCLK_IDX], 2925 rt5682s->pdata.dai_clk_names[RT5682S_DAI_BCLK_IDX]); 2926 2927 rt5682s->pdata.dmic_clk_driving_high = device_property_read_bool(dev, 2928 "realtek,dmic-clk-driving-high"); 2929 2930 return 0; 2931 } 2932 2933 static void rt5682s_calibrate(struct rt5682s_priv *rt5682s) 2934 { 2935 unsigned int count, value; 2936 2937 mutex_lock(&rt5682s->calibrate_mutex); 2938 2939 regmap_write(rt5682s->regmap, RT5682S_PWR_ANLG_1, 0xaa80); 2940 usleep_range(15000, 20000); 2941 regmap_write(rt5682s->regmap, RT5682S_PWR_ANLG_1, 0xfa80); 2942 regmap_write(rt5682s->regmap, RT5682S_PWR_DIG_1, 0x01c0); 2943 regmap_write(rt5682s->regmap, RT5682S_MICBIAS_2, 0x0380); 2944 regmap_write(rt5682s->regmap, RT5682S_GLB_CLK, 0x8000); 2945 regmap_write(rt5682s->regmap, RT5682S_ADDA_CLK_1, 0x1001); 2946 regmap_write(rt5682s->regmap, RT5682S_CHOP_DAC_2, 0x3030); 2947 regmap_write(rt5682s->regmap, RT5682S_CHOP_ADC, 0xb000); 2948 regmap_write(rt5682s->regmap, RT5682S_STO1_ADC_MIXER, 0x686c); 2949 regmap_write(rt5682s->regmap, RT5682S_CAL_REC, 0x5151); 2950 regmap_write(rt5682s->regmap, RT5682S_HP_CALIB_CTRL_2, 0x0321); 2951 regmap_write(rt5682s->regmap, RT5682S_HP_LOGIC_CTRL_2, 0x0004); 2952 regmap_write(rt5682s->regmap, RT5682S_HP_CALIB_CTRL_1, 0x7c00); 2953 regmap_write(rt5682s->regmap, RT5682S_HP_CALIB_CTRL_1, 0xfc00); 2954 2955 for (count = 0; count < 60; count++) { 2956 regmap_read(rt5682s->regmap, RT5682S_HP_CALIB_ST_1, &value); 2957 if (!(value & 0x8000)) 2958 break; 2959 2960 usleep_range(10000, 10005); 2961 } 2962 2963 if (count >= 60) 2964 dev_err(rt5682s->component->dev, "HP Calibration Failure\n"); 2965 2966 /* restore settings */ 2967 regmap_write(rt5682s->regmap, RT5682S_MICBIAS_2, 0x0180); 2968 regmap_write(rt5682s->regmap, RT5682S_CAL_REC, 0x5858); 2969 regmap_write(rt5682s->regmap, RT5682S_STO1_ADC_MIXER, 0xc0c4); 2970 regmap_write(rt5682s->regmap, RT5682S_HP_CALIB_CTRL_2, 0x0320); 2971 regmap_write(rt5682s->regmap, RT5682S_PWR_DIG_1, 0x00c0); 2972 regmap_write(rt5682s->regmap, RT5682S_PWR_ANLG_1, 0x0800); 2973 regmap_write(rt5682s->regmap, RT5682S_GLB_CLK, 0x0000); 2974 2975 mutex_unlock(&rt5682s->calibrate_mutex); 2976 } 2977 2978 static const struct regmap_config rt5682s_regmap = { 2979 .reg_bits = 16, 2980 .val_bits = 16, 2981 .max_register = RT5682S_MAX_REG, 2982 .volatile_reg = rt5682s_volatile_register, 2983 .readable_reg = rt5682s_readable_register, 2984 .cache_type = REGCACHE_RBTREE, 2985 .reg_defaults = rt5682s_reg, 2986 .num_reg_defaults = ARRAY_SIZE(rt5682s_reg), 2987 .use_single_read = true, 2988 .use_single_write = true, 2989 }; 2990 2991 static struct snd_soc_dai_driver rt5682s_dai[] = { 2992 { 2993 .name = "rt5682s-aif1", 2994 .id = RT5682S_AIF1, 2995 .playback = { 2996 .stream_name = "AIF1 Playback", 2997 .channels_min = 1, 2998 .channels_max = 2, 2999 .rates = RT5682S_STEREO_RATES, 3000 .formats = RT5682S_FORMATS, 3001 }, 3002 .capture = { 3003 .stream_name = "AIF1 Capture", 3004 .channels_min = 1, 3005 .channels_max = 2, 3006 .rates = RT5682S_STEREO_RATES, 3007 .formats = RT5682S_FORMATS, 3008 }, 3009 .ops = &rt5682s_aif1_dai_ops, 3010 }, 3011 { 3012 .name = "rt5682s-aif2", 3013 .id = RT5682S_AIF2, 3014 .capture = { 3015 .stream_name = "AIF2 Capture", 3016 .channels_min = 1, 3017 .channels_max = 2, 3018 .rates = RT5682S_STEREO_RATES, 3019 .formats = RT5682S_FORMATS, 3020 }, 3021 .ops = &rt5682s_aif2_dai_ops, 3022 }, 3023 }; 3024 3025 static void rt5682s_i2c_disable_regulators(void *data) 3026 { 3027 struct rt5682s_priv *rt5682s = data; 3028 3029 regulator_bulk_disable(ARRAY_SIZE(rt5682s->supplies), rt5682s->supplies); 3030 } 3031 3032 static int rt5682s_i2c_probe(struct i2c_client *i2c, 3033 const struct i2c_device_id *id) 3034 { 3035 struct rt5682s_platform_data *pdata = dev_get_platdata(&i2c->dev); 3036 struct rt5682s_priv *rt5682s; 3037 int i, ret; 3038 unsigned int val; 3039 3040 rt5682s = devm_kzalloc(&i2c->dev, sizeof(struct rt5682s_priv), GFP_KERNEL); 3041 if (!rt5682s) 3042 return -ENOMEM; 3043 3044 i2c_set_clientdata(i2c, rt5682s); 3045 3046 rt5682s->pdata = i2s_default_platform_data; 3047 3048 if (pdata) 3049 rt5682s->pdata = *pdata; 3050 else 3051 rt5682s_parse_dt(rt5682s, &i2c->dev); 3052 3053 rt5682s->regmap = devm_regmap_init_i2c(i2c, &rt5682s_regmap); 3054 if (IS_ERR(rt5682s->regmap)) { 3055 ret = PTR_ERR(rt5682s->regmap); 3056 dev_err(&i2c->dev, "Failed to allocate register map: %d\n", ret); 3057 return ret; 3058 } 3059 3060 for (i = 0; i < ARRAY_SIZE(rt5682s->supplies); i++) 3061 rt5682s->supplies[i].supply = rt5682s_supply_names[i]; 3062 3063 ret = devm_regulator_bulk_get(&i2c->dev, 3064 ARRAY_SIZE(rt5682s->supplies), rt5682s->supplies); 3065 if (ret) { 3066 dev_err(&i2c->dev, "Failed to request supplies: %d\n", ret); 3067 return ret; 3068 } 3069 3070 ret = devm_add_action_or_reset(&i2c->dev, rt5682s_i2c_disable_regulators, rt5682s); 3071 if (ret) 3072 return ret; 3073 3074 ret = regulator_bulk_enable(ARRAY_SIZE(rt5682s->supplies), rt5682s->supplies); 3075 if (ret) { 3076 dev_err(&i2c->dev, "Failed to enable supplies: %d\n", ret); 3077 return ret; 3078 } 3079 3080 if (gpio_is_valid(rt5682s->pdata.ldo1_en)) { 3081 if (devm_gpio_request_one(&i2c->dev, rt5682s->pdata.ldo1_en, 3082 GPIOF_OUT_INIT_HIGH, "rt5682s")) 3083 dev_err(&i2c->dev, "Fail gpio_request gpio_ldo\n"); 3084 } 3085 3086 /* Sleep for 50 ms minimum */ 3087 usleep_range(50000, 55000); 3088 3089 regmap_read(rt5682s->regmap, RT5682S_DEVICE_ID, &val); 3090 if (val != DEVICE_ID) { 3091 dev_err(&i2c->dev, "Device with ID register %x is not rt5682s\n", val); 3092 return -ENODEV; 3093 } 3094 3095 rt5682s_reset(rt5682s); 3096 rt5682s_apply_patch_list(rt5682s, &i2c->dev); 3097 3098 regmap_update_bits(rt5682s->regmap, RT5682S_PWR_DIG_2, 3099 RT5682S_DLDO_I_LIMIT_MASK, RT5682S_DLDO_I_LIMIT_DIS); 3100 usleep_range(20000, 25000); 3101 3102 mutex_init(&rt5682s->calibrate_mutex); 3103 mutex_init(&rt5682s->sar_mutex); 3104 mutex_init(&rt5682s->jdet_mutex); 3105 rt5682s_calibrate(rt5682s); 3106 3107 regmap_update_bits(rt5682s->regmap, RT5682S_MICBIAS_2, 3108 RT5682S_PWR_CLK25M_MASK | RT5682S_PWR_CLK1M_MASK, 3109 RT5682S_PWR_CLK25M_PD | RT5682S_PWR_CLK1M_PU); 3110 regmap_update_bits(rt5682s->regmap, RT5682S_PWR_ANLG_1, 3111 RT5682S_PWR_BG, RT5682S_PWR_BG); 3112 regmap_update_bits(rt5682s->regmap, RT5682S_HP_LOGIC_CTRL_2, 3113 RT5682S_HP_SIG_SRC_MASK, RT5682S_HP_SIG_SRC_1BIT_CTL); 3114 regmap_update_bits(rt5682s->regmap, RT5682S_HP_CHARGE_PUMP_2, 3115 RT5682S_PM_HP_MASK, RT5682S_PM_HP_HV); 3116 regmap_update_bits(rt5682s->regmap, RT5682S_HP_AMP_DET_CTL_1, 3117 RT5682S_CP_SW_SIZE_MASK, RT5682S_CP_SW_SIZE_M); 3118 3119 /* DMIC data pin */ 3120 switch (rt5682s->pdata.dmic1_data_pin) { 3121 case RT5682S_DMIC1_DATA_NULL: 3122 break; 3123 case RT5682S_DMIC1_DATA_GPIO2: /* share with LRCK2 */ 3124 regmap_update_bits(rt5682s->regmap, RT5682S_DMIC_CTRL_1, 3125 RT5682S_DMIC_1_DP_MASK, RT5682S_DMIC_1_DP_GPIO2); 3126 regmap_update_bits(rt5682s->regmap, RT5682S_GPIO_CTRL_1, 3127 RT5682S_GP2_PIN_MASK, RT5682S_GP2_PIN_DMIC_SDA); 3128 break; 3129 case RT5682S_DMIC1_DATA_GPIO5: /* share with DACDAT1 */ 3130 regmap_update_bits(rt5682s->regmap, RT5682S_DMIC_CTRL_1, 3131 RT5682S_DMIC_1_DP_MASK, RT5682S_DMIC_1_DP_GPIO5); 3132 regmap_update_bits(rt5682s->regmap, RT5682S_GPIO_CTRL_1, 3133 RT5682S_GP5_PIN_MASK, RT5682S_GP5_PIN_DMIC_SDA); 3134 break; 3135 default: 3136 dev_warn(&i2c->dev, "invalid DMIC_DAT pin\n"); 3137 break; 3138 } 3139 3140 /* DMIC clk pin */ 3141 switch (rt5682s->pdata.dmic1_clk_pin) { 3142 case RT5682S_DMIC1_CLK_NULL: 3143 break; 3144 case RT5682S_DMIC1_CLK_GPIO1: /* share with IRQ */ 3145 regmap_update_bits(rt5682s->regmap, RT5682S_GPIO_CTRL_1, 3146 RT5682S_GP1_PIN_MASK, RT5682S_GP1_PIN_DMIC_CLK); 3147 break; 3148 case RT5682S_DMIC1_CLK_GPIO3: /* share with BCLK2 */ 3149 regmap_update_bits(rt5682s->regmap, RT5682S_GPIO_CTRL_1, 3150 RT5682S_GP3_PIN_MASK, RT5682S_GP3_PIN_DMIC_CLK); 3151 if (rt5682s->pdata.dmic_clk_driving_high) 3152 regmap_update_bits(rt5682s->regmap, RT5682S_PAD_DRIVING_CTRL, 3153 RT5682S_PAD_DRV_GP3_MASK, RT5682S_PAD_DRV_GP3_HIGH); 3154 break; 3155 default: 3156 dev_warn(&i2c->dev, "invalid DMIC_CLK pin\n"); 3157 break; 3158 } 3159 3160 INIT_DELAYED_WORK(&rt5682s->jack_detect_work, rt5682s_jack_detect_handler); 3161 INIT_DELAYED_WORK(&rt5682s->jd_check_work, rt5682s_jd_check_handler); 3162 3163 if (i2c->irq) { 3164 ret = devm_request_threaded_irq(&i2c->dev, i2c->irq, NULL, rt5682s_irq, 3165 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, 3166 "rt5682s", rt5682s); 3167 if (ret) 3168 dev_err(&i2c->dev, "Failed to reguest IRQ: %d\n", ret); 3169 } 3170 3171 return devm_snd_soc_register_component(&i2c->dev, &rt5682s_soc_component_dev, 3172 rt5682s_dai, ARRAY_SIZE(rt5682s_dai)); 3173 } 3174 3175 static void rt5682s_i2c_shutdown(struct i2c_client *client) 3176 { 3177 struct rt5682s_priv *rt5682s = i2c_get_clientdata(client); 3178 3179 disable_irq(client->irq); 3180 cancel_delayed_work_sync(&rt5682s->jack_detect_work); 3181 cancel_delayed_work_sync(&rt5682s->jd_check_work); 3182 3183 rt5682s_reset(rt5682s); 3184 } 3185 3186 static int rt5682s_i2c_remove(struct i2c_client *client) 3187 { 3188 rt5682s_i2c_shutdown(client); 3189 3190 return 0; 3191 } 3192 3193 static const struct of_device_id rt5682s_of_match[] = { 3194 {.compatible = "realtek,rt5682s"}, 3195 {}, 3196 }; 3197 MODULE_DEVICE_TABLE(of, rt5682s_of_match); 3198 3199 static const struct acpi_device_id rt5682s_acpi_match[] = { 3200 {"RTL5682", 0,}, 3201 {}, 3202 }; 3203 MODULE_DEVICE_TABLE(acpi, rt5682s_acpi_match); 3204 3205 static const struct i2c_device_id rt5682s_i2c_id[] = { 3206 {"rt5682s", 0}, 3207 {} 3208 }; 3209 MODULE_DEVICE_TABLE(i2c, rt5682s_i2c_id); 3210 3211 static struct i2c_driver rt5682s_i2c_driver = { 3212 .driver = { 3213 .name = "rt5682s", 3214 .of_match_table = rt5682s_of_match, 3215 .acpi_match_table = rt5682s_acpi_match, 3216 .probe_type = PROBE_PREFER_ASYNCHRONOUS, 3217 }, 3218 .probe = rt5682s_i2c_probe, 3219 .remove = rt5682s_i2c_remove, 3220 .shutdown = rt5682s_i2c_shutdown, 3221 .id_table = rt5682s_i2c_id, 3222 }; 3223 module_i2c_driver(rt5682s_i2c_driver); 3224 3225 MODULE_DESCRIPTION("ASoC RT5682I-VS driver"); 3226 MODULE_AUTHOR("Derek Fang <derek.fang@realtek.com>"); 3227 MODULE_LICENSE("GPL v2"); 3228