1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 2 // Copyright 2018 NXP 3 4 #include <linux/bitfield.h> 5 #include <linux/clk.h> 6 #include <linux/device.h> 7 #include <linux/interrupt.h> 8 #include <linux/kobject.h> 9 #include <linux/kernel.h> 10 #include <linux/module.h> 11 #include <linux/of.h> 12 #include <linux/of_address.h> 13 #include <linux/of_irq.h> 14 #include <linux/of_platform.h> 15 #include <linux/pm_runtime.h> 16 #include <linux/regmap.h> 17 #include <linux/sysfs.h> 18 #include <linux/types.h> 19 #include <linux/dma/imx-dma.h> 20 #include <sound/dmaengine_pcm.h> 21 #include <sound/pcm.h> 22 #include <sound/soc.h> 23 #include <sound/tlv.h> 24 #include <sound/core.h> 25 26 #include "fsl_micfil.h" 27 #include "fsl_utils.h" 28 29 #define MICFIL_OSR_DEFAULT 16 30 31 enum quality { 32 QUALITY_HIGH, 33 QUALITY_MEDIUM, 34 QUALITY_LOW, 35 QUALITY_VLOW0, 36 QUALITY_VLOW1, 37 QUALITY_VLOW2, 38 }; 39 40 struct fsl_micfil { 41 struct platform_device *pdev; 42 struct regmap *regmap; 43 const struct fsl_micfil_soc_data *soc; 44 struct clk *busclk; 45 struct clk *mclk; 46 struct clk *pll8k_clk; 47 struct clk *pll11k_clk; 48 struct snd_dmaengine_dai_dma_data dma_params_rx; 49 struct sdma_peripheral_config sdmacfg; 50 struct snd_soc_card *card; 51 unsigned int dataline; 52 char name[32]; 53 int irq[MICFIL_IRQ_LINES]; 54 enum quality quality; 55 int dc_remover; 56 int vad_init_mode; 57 int vad_enabled; 58 int vad_detected; 59 struct fsl_micfil_verid verid; 60 struct fsl_micfil_param param; 61 bool mclk_flag; /* mclk enable flag */ 62 }; 63 64 struct fsl_micfil_soc_data { 65 unsigned int fifos; 66 unsigned int fifo_depth; 67 unsigned int dataline; 68 bool imx; 69 bool use_edma; 70 bool use_verid; 71 u64 formats; 72 }; 73 74 static struct fsl_micfil_soc_data fsl_micfil_imx8mm = { 75 .imx = true, 76 .fifos = 8, 77 .fifo_depth = 8, 78 .dataline = 0xf, 79 .formats = SNDRV_PCM_FMTBIT_S16_LE, 80 }; 81 82 static struct fsl_micfil_soc_data fsl_micfil_imx8mp = { 83 .imx = true, 84 .fifos = 8, 85 .fifo_depth = 32, 86 .dataline = 0xf, 87 .formats = SNDRV_PCM_FMTBIT_S32_LE, 88 }; 89 90 static struct fsl_micfil_soc_data fsl_micfil_imx93 = { 91 .imx = true, 92 .fifos = 8, 93 .fifo_depth = 32, 94 .dataline = 0xf, 95 .formats = SNDRV_PCM_FMTBIT_S32_LE, 96 .use_edma = true, 97 .use_verid = true, 98 }; 99 100 static const struct of_device_id fsl_micfil_dt_ids[] = { 101 { .compatible = "fsl,imx8mm-micfil", .data = &fsl_micfil_imx8mm }, 102 { .compatible = "fsl,imx8mp-micfil", .data = &fsl_micfil_imx8mp }, 103 { .compatible = "fsl,imx93-micfil", .data = &fsl_micfil_imx93 }, 104 {} 105 }; 106 MODULE_DEVICE_TABLE(of, fsl_micfil_dt_ids); 107 108 static const char * const micfil_quality_select_texts[] = { 109 [QUALITY_HIGH] = "High", 110 [QUALITY_MEDIUM] = "Medium", 111 [QUALITY_LOW] = "Low", 112 [QUALITY_VLOW0] = "VLow0", 113 [QUALITY_VLOW1] = "Vlow1", 114 [QUALITY_VLOW2] = "Vlow2", 115 }; 116 117 static const struct soc_enum fsl_micfil_quality_enum = 118 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(micfil_quality_select_texts), 119 micfil_quality_select_texts); 120 121 static DECLARE_TLV_DB_SCALE(gain_tlv, 0, 100, 0); 122 123 static int micfil_set_quality(struct fsl_micfil *micfil) 124 { 125 u32 qsel; 126 127 switch (micfil->quality) { 128 case QUALITY_HIGH: 129 qsel = MICFIL_QSEL_HIGH_QUALITY; 130 break; 131 case QUALITY_MEDIUM: 132 qsel = MICFIL_QSEL_MEDIUM_QUALITY; 133 break; 134 case QUALITY_LOW: 135 qsel = MICFIL_QSEL_LOW_QUALITY; 136 break; 137 case QUALITY_VLOW0: 138 qsel = MICFIL_QSEL_VLOW0_QUALITY; 139 break; 140 case QUALITY_VLOW1: 141 qsel = MICFIL_QSEL_VLOW1_QUALITY; 142 break; 143 case QUALITY_VLOW2: 144 qsel = MICFIL_QSEL_VLOW2_QUALITY; 145 break; 146 } 147 148 return regmap_update_bits(micfil->regmap, REG_MICFIL_CTRL2, 149 MICFIL_CTRL2_QSEL, 150 FIELD_PREP(MICFIL_CTRL2_QSEL, qsel)); 151 } 152 153 static int micfil_quality_get(struct snd_kcontrol *kcontrol, 154 struct snd_ctl_elem_value *ucontrol) 155 { 156 struct snd_soc_component *cmpnt = snd_soc_kcontrol_component(kcontrol); 157 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(cmpnt); 158 159 ucontrol->value.integer.value[0] = micfil->quality; 160 161 return 0; 162 } 163 164 static int micfil_quality_set(struct snd_kcontrol *kcontrol, 165 struct snd_ctl_elem_value *ucontrol) 166 { 167 struct snd_soc_component *cmpnt = snd_soc_kcontrol_component(kcontrol); 168 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(cmpnt); 169 170 micfil->quality = ucontrol->value.integer.value[0]; 171 172 return micfil_set_quality(micfil); 173 } 174 175 static const char * const micfil_hwvad_enable[] = { 176 "Disable (Record only)", 177 "Enable (Record with Vad)", 178 }; 179 180 static const char * const micfil_hwvad_init_mode[] = { 181 "Envelope mode", "Energy mode", 182 }; 183 184 static const char * const micfil_hwvad_hpf_texts[] = { 185 "Filter bypass", 186 "Cut-off @1750Hz", 187 "Cut-off @215Hz", 188 "Cut-off @102Hz", 189 }; 190 191 /* 192 * DC Remover Control 193 * Filter Bypassed 1 1 194 * Cut-off @21Hz 0 0 195 * Cut-off @83Hz 0 1 196 * Cut-off @152HZ 1 0 197 */ 198 static const char * const micfil_dc_remover_texts[] = { 199 "Cut-off @21Hz", "Cut-off @83Hz", 200 "Cut-off @152Hz", "Bypass", 201 }; 202 203 static const struct soc_enum hwvad_enable_enum = 204 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(micfil_hwvad_enable), 205 micfil_hwvad_enable); 206 static const struct soc_enum hwvad_init_mode_enum = 207 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(micfil_hwvad_init_mode), 208 micfil_hwvad_init_mode); 209 static const struct soc_enum hwvad_hpf_enum = 210 SOC_ENUM_SINGLE(REG_MICFIL_VAD0_CTRL2, 0, 211 ARRAY_SIZE(micfil_hwvad_hpf_texts), 212 micfil_hwvad_hpf_texts); 213 static const struct soc_enum fsl_micfil_dc_remover_enum = 214 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(micfil_dc_remover_texts), 215 micfil_dc_remover_texts); 216 217 static int micfil_put_dc_remover_state(struct snd_kcontrol *kcontrol, 218 struct snd_ctl_elem_value *ucontrol) 219 { 220 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; 221 struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol); 222 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(comp); 223 unsigned int *item = ucontrol->value.enumerated.item; 224 int val = snd_soc_enum_item_to_val(e, item[0]); 225 int i = 0, ret = 0; 226 u32 reg_val = 0; 227 228 if (val < 0 || val > 3) 229 return -EINVAL; 230 231 micfil->dc_remover = val; 232 233 /* Calculate total value for all channels */ 234 for (i = 0; i < MICFIL_OUTPUT_CHANNELS; i++) 235 reg_val |= val << MICFIL_DC_CHX_SHIFT(i); 236 237 /* Update DC Remover mode for all channels */ 238 ret = snd_soc_component_update_bits(comp, REG_MICFIL_DC_CTRL, 239 MICFIL_DC_CTRL_CONFIG, reg_val); 240 if (ret < 0) 241 return ret; 242 243 return 0; 244 } 245 246 static int micfil_get_dc_remover_state(struct snd_kcontrol *kcontrol, 247 struct snd_ctl_elem_value *ucontrol) 248 { 249 struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol); 250 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(comp); 251 252 ucontrol->value.enumerated.item[0] = micfil->dc_remover; 253 254 return 0; 255 } 256 257 static int hwvad_put_enable(struct snd_kcontrol *kcontrol, 258 struct snd_ctl_elem_value *ucontrol) 259 { 260 struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol); 261 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; 262 unsigned int *item = ucontrol->value.enumerated.item; 263 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(comp); 264 int val = snd_soc_enum_item_to_val(e, item[0]); 265 266 micfil->vad_enabled = val; 267 268 return 0; 269 } 270 271 static int hwvad_get_enable(struct snd_kcontrol *kcontrol, 272 struct snd_ctl_elem_value *ucontrol) 273 { 274 struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol); 275 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(comp); 276 277 ucontrol->value.enumerated.item[0] = micfil->vad_enabled; 278 279 return 0; 280 } 281 282 static int hwvad_put_init_mode(struct snd_kcontrol *kcontrol, 283 struct snd_ctl_elem_value *ucontrol) 284 { 285 struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol); 286 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; 287 unsigned int *item = ucontrol->value.enumerated.item; 288 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(comp); 289 int val = snd_soc_enum_item_to_val(e, item[0]); 290 291 /* 0 - Envelope-based Mode 292 * 1 - Energy-based Mode 293 */ 294 micfil->vad_init_mode = val; 295 296 return 0; 297 } 298 299 static int hwvad_get_init_mode(struct snd_kcontrol *kcontrol, 300 struct snd_ctl_elem_value *ucontrol) 301 { 302 struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol); 303 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(comp); 304 305 ucontrol->value.enumerated.item[0] = micfil->vad_init_mode; 306 307 return 0; 308 } 309 310 static int hwvad_detected(struct snd_kcontrol *kcontrol, 311 struct snd_ctl_elem_value *ucontrol) 312 { 313 struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol); 314 struct fsl_micfil *micfil = snd_soc_component_get_drvdata(comp); 315 316 ucontrol->value.enumerated.item[0] = micfil->vad_detected; 317 318 return 0; 319 } 320 321 static const struct snd_kcontrol_new fsl_micfil_snd_controls[] = { 322 SOC_SINGLE_SX_TLV("CH0 Volume", REG_MICFIL_OUT_CTRL, 323 MICFIL_OUTGAIN_CHX_SHIFT(0), 0x8, 0xF, gain_tlv), 324 SOC_SINGLE_SX_TLV("CH1 Volume", REG_MICFIL_OUT_CTRL, 325 MICFIL_OUTGAIN_CHX_SHIFT(1), 0x8, 0xF, gain_tlv), 326 SOC_SINGLE_SX_TLV("CH2 Volume", REG_MICFIL_OUT_CTRL, 327 MICFIL_OUTGAIN_CHX_SHIFT(2), 0x8, 0xF, gain_tlv), 328 SOC_SINGLE_SX_TLV("CH3 Volume", REG_MICFIL_OUT_CTRL, 329 MICFIL_OUTGAIN_CHX_SHIFT(3), 0x8, 0xF, gain_tlv), 330 SOC_SINGLE_SX_TLV("CH4 Volume", REG_MICFIL_OUT_CTRL, 331 MICFIL_OUTGAIN_CHX_SHIFT(4), 0x8, 0xF, gain_tlv), 332 SOC_SINGLE_SX_TLV("CH5 Volume", REG_MICFIL_OUT_CTRL, 333 MICFIL_OUTGAIN_CHX_SHIFT(5), 0x8, 0xF, gain_tlv), 334 SOC_SINGLE_SX_TLV("CH6 Volume", REG_MICFIL_OUT_CTRL, 335 MICFIL_OUTGAIN_CHX_SHIFT(6), 0x8, 0xF, gain_tlv), 336 SOC_SINGLE_SX_TLV("CH7 Volume", REG_MICFIL_OUT_CTRL, 337 MICFIL_OUTGAIN_CHX_SHIFT(7), 0x8, 0xF, gain_tlv), 338 SOC_ENUM_EXT("MICFIL Quality Select", 339 fsl_micfil_quality_enum, 340 micfil_quality_get, micfil_quality_set), 341 SOC_ENUM_EXT("HWVAD Enablement Switch", hwvad_enable_enum, 342 hwvad_get_enable, hwvad_put_enable), 343 SOC_ENUM_EXT("HWVAD Initialization Mode", hwvad_init_mode_enum, 344 hwvad_get_init_mode, hwvad_put_init_mode), 345 SOC_ENUM("HWVAD High-Pass Filter", hwvad_hpf_enum), 346 SOC_SINGLE("HWVAD ZCD Switch", REG_MICFIL_VAD0_ZCD, 0, 1, 0), 347 SOC_SINGLE("HWVAD ZCD Auto Threshold Switch", 348 REG_MICFIL_VAD0_ZCD, 2, 1, 0), 349 SOC_ENUM_EXT("MICFIL DC Remover Control", fsl_micfil_dc_remover_enum, 350 micfil_get_dc_remover_state, micfil_put_dc_remover_state), 351 SOC_SINGLE("HWVAD Input Gain", REG_MICFIL_VAD0_CTRL2, 8, 15, 0), 352 SOC_SINGLE("HWVAD Sound Gain", REG_MICFIL_VAD0_SCONFIG, 0, 15, 0), 353 SOC_SINGLE("HWVAD Noise Gain", REG_MICFIL_VAD0_NCONFIG, 0, 15, 0), 354 SOC_SINGLE_RANGE("HWVAD Detector Frame Time", REG_MICFIL_VAD0_CTRL2, 16, 0, 63, 0), 355 SOC_SINGLE("HWVAD Detector Initialization Time", REG_MICFIL_VAD0_CTRL1, 8, 31, 0), 356 SOC_SINGLE("HWVAD Noise Filter Adjustment", REG_MICFIL_VAD0_NCONFIG, 8, 31, 0), 357 SOC_SINGLE("HWVAD ZCD Threshold", REG_MICFIL_VAD0_ZCD, 16, 1023, 0), 358 SOC_SINGLE("HWVAD ZCD Adjustment", REG_MICFIL_VAD0_ZCD, 8, 15, 0), 359 SOC_SINGLE("HWVAD ZCD And Behavior Switch", 360 REG_MICFIL_VAD0_ZCD, 4, 1, 0), 361 SOC_SINGLE_BOOL_EXT("VAD Detected", 0, hwvad_detected, NULL), 362 }; 363 364 static int fsl_micfil_use_verid(struct device *dev) 365 { 366 struct fsl_micfil *micfil = dev_get_drvdata(dev); 367 unsigned int val; 368 int ret; 369 370 if (!micfil->soc->use_verid) 371 return 0; 372 373 ret = regmap_read(micfil->regmap, REG_MICFIL_VERID, &val); 374 if (ret < 0) 375 return ret; 376 377 dev_dbg(dev, "VERID: 0x%016X\n", val); 378 379 micfil->verid.version = val & 380 (MICFIL_VERID_MAJOR_MASK | MICFIL_VERID_MINOR_MASK); 381 micfil->verid.version >>= MICFIL_VERID_MINOR_SHIFT; 382 micfil->verid.feature = val & MICFIL_VERID_FEATURE_MASK; 383 384 ret = regmap_read(micfil->regmap, REG_MICFIL_PARAM, &val); 385 if (ret < 0) 386 return ret; 387 388 dev_dbg(dev, "PARAM: 0x%016X\n", val); 389 390 micfil->param.hwvad_num = (val & MICFIL_PARAM_NUM_HWVAD_MASK) >> 391 MICFIL_PARAM_NUM_HWVAD_SHIFT; 392 micfil->param.hwvad_zcd = val & MICFIL_PARAM_HWVAD_ZCD; 393 micfil->param.hwvad_energy_mode = val & MICFIL_PARAM_HWVAD_ENERGY_MODE; 394 micfil->param.hwvad = val & MICFIL_PARAM_HWVAD; 395 micfil->param.dc_out_bypass = val & MICFIL_PARAM_DC_OUT_BYPASS; 396 micfil->param.dc_in_bypass = val & MICFIL_PARAM_DC_IN_BYPASS; 397 micfil->param.low_power = val & MICFIL_PARAM_LOW_POWER; 398 micfil->param.fil_out_width = val & MICFIL_PARAM_FIL_OUT_WIDTH; 399 micfil->param.fifo_ptrwid = (val & MICFIL_PARAM_FIFO_PTRWID_MASK) >> 400 MICFIL_PARAM_FIFO_PTRWID_SHIFT; 401 micfil->param.npair = (val & MICFIL_PARAM_NPAIR_MASK) >> 402 MICFIL_PARAM_NPAIR_SHIFT; 403 404 return 0; 405 } 406 407 /* The SRES is a self-negated bit which provides the CPU with the 408 * capability to initialize the PDM Interface module through the 409 * slave-bus interface. This bit always reads as zero, and this 410 * bit is only effective when MDIS is cleared 411 */ 412 static int fsl_micfil_reset(struct device *dev) 413 { 414 struct fsl_micfil *micfil = dev_get_drvdata(dev); 415 int ret; 416 417 ret = regmap_clear_bits(micfil->regmap, REG_MICFIL_CTRL1, 418 MICFIL_CTRL1_MDIS); 419 if (ret) 420 return ret; 421 422 ret = regmap_set_bits(micfil->regmap, REG_MICFIL_CTRL1, 423 MICFIL_CTRL1_SRES); 424 if (ret) 425 return ret; 426 427 /* 428 * SRES is self-cleared bit, but REG_MICFIL_CTRL1 is defined 429 * as non-volatile register, so SRES still remain in regmap 430 * cache after set, that every update of REG_MICFIL_CTRL1, 431 * software reset happens. so clear it explicitly. 432 */ 433 ret = regmap_clear_bits(micfil->regmap, REG_MICFIL_CTRL1, 434 MICFIL_CTRL1_SRES); 435 if (ret) 436 return ret; 437 438 /* 439 * Set SRES should clear CHnF flags, But even add delay here 440 * the CHnF may not be cleared sometimes, so clear CHnF explicitly. 441 */ 442 ret = regmap_write_bits(micfil->regmap, REG_MICFIL_STAT, 0xFF, 0xFF); 443 if (ret) 444 return ret; 445 446 return 0; 447 } 448 449 static int fsl_micfil_startup(struct snd_pcm_substream *substream, 450 struct snd_soc_dai *dai) 451 { 452 struct fsl_micfil *micfil = snd_soc_dai_get_drvdata(dai); 453 454 if (!micfil) { 455 dev_err(dai->dev, "micfil dai priv_data not set\n"); 456 return -EINVAL; 457 } 458 459 return 0; 460 } 461 462 /* Enable/disable hwvad interrupts */ 463 static int fsl_micfil_configure_hwvad_interrupts(struct fsl_micfil *micfil, int enable) 464 { 465 u32 vadie_reg = enable ? MICFIL_VAD0_CTRL1_IE : 0; 466 u32 vaderie_reg = enable ? MICFIL_VAD0_CTRL1_ERIE : 0; 467 468 /* Voice Activity Detector Error Interruption */ 469 regmap_update_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 470 MICFIL_VAD0_CTRL1_ERIE, vaderie_reg); 471 472 /* Voice Activity Detector Interruption */ 473 regmap_update_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 474 MICFIL_VAD0_CTRL1_IE, vadie_reg); 475 476 return 0; 477 } 478 479 /* Configuration done only in energy-based initialization mode */ 480 static int fsl_micfil_init_hwvad_energy_mode(struct fsl_micfil *micfil) 481 { 482 /* Keep the VADFRENDIS bitfield cleared. */ 483 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL2, 484 MICFIL_VAD0_CTRL2_FRENDIS); 485 486 /* Keep the VADPREFEN bitfield cleared. */ 487 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL2, 488 MICFIL_VAD0_CTRL2_PREFEN); 489 490 /* Keep the VADSFILEN bitfield cleared. */ 491 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_SCONFIG, 492 MICFIL_VAD0_SCONFIG_SFILEN); 493 494 /* Keep the VADSMAXEN bitfield cleared. */ 495 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_SCONFIG, 496 MICFIL_VAD0_SCONFIG_SMAXEN); 497 498 /* Keep the VADNFILAUTO bitfield asserted. */ 499 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 500 MICFIL_VAD0_NCONFIG_NFILAUT); 501 502 /* Keep the VADNMINEN bitfield cleared. */ 503 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 504 MICFIL_VAD0_NCONFIG_NMINEN); 505 506 /* Keep the VADNDECEN bitfield cleared. */ 507 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 508 MICFIL_VAD0_NCONFIG_NDECEN); 509 510 /* Keep the VADNOREN bitfield cleared. */ 511 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 512 MICFIL_VAD0_NCONFIG_NOREN); 513 514 return 0; 515 } 516 517 /* Configuration done only in envelope-based initialization mode */ 518 static int fsl_micfil_init_hwvad_envelope_mode(struct fsl_micfil *micfil) 519 { 520 /* Assert the VADFRENDIS bitfield */ 521 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL2, 522 MICFIL_VAD0_CTRL2_FRENDIS); 523 524 /* Assert the VADPREFEN bitfield. */ 525 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL2, 526 MICFIL_VAD0_CTRL2_PREFEN); 527 528 /* Assert the VADSFILEN bitfield. */ 529 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_SCONFIG, 530 MICFIL_VAD0_SCONFIG_SFILEN); 531 532 /* Assert the VADSMAXEN bitfield. */ 533 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_SCONFIG, 534 MICFIL_VAD0_SCONFIG_SMAXEN); 535 536 /* Clear the VADNFILAUTO bitfield */ 537 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 538 MICFIL_VAD0_NCONFIG_NFILAUT); 539 540 /* Assert the VADNMINEN bitfield. */ 541 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 542 MICFIL_VAD0_NCONFIG_NMINEN); 543 544 /* Assert the VADNDECEN bitfield. */ 545 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 546 MICFIL_VAD0_NCONFIG_NDECEN); 547 548 /* Assert VADNOREN bitfield. */ 549 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_NCONFIG, 550 MICFIL_VAD0_NCONFIG_NOREN); 551 552 return 0; 553 } 554 555 /* 556 * Hardware Voice Active Detection: The HWVAD takes data from the input 557 * of a selected PDM microphone to detect if there is any 558 * voice activity. When a voice activity is detected, an interrupt could 559 * be delivered to the system. Initialization in section 8.4: 560 * Can work in two modes: 561 * -> Eneveope-based mode (section 8.4.1) 562 * -> Energy-based mode (section 8.4.2) 563 * 564 * It is important to remark that the HWVAD detector could be enabled 565 * or reset only when the MICFIL isn't running i.e. when the BSY_FIL 566 * bit in STAT register is cleared 567 */ 568 static int fsl_micfil_hwvad_enable(struct fsl_micfil *micfil) 569 { 570 int ret; 571 572 micfil->vad_detected = 0; 573 574 /* envelope-based specific initialization */ 575 if (micfil->vad_init_mode == MICFIL_HWVAD_ENVELOPE_MODE) 576 ret = fsl_micfil_init_hwvad_envelope_mode(micfil); 577 else 578 ret = fsl_micfil_init_hwvad_energy_mode(micfil); 579 if (ret) 580 return ret; 581 582 /* Voice Activity Detector Internal Filters Initialization*/ 583 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 584 MICFIL_VAD0_CTRL1_ST10); 585 586 /* Voice Activity Detector Internal Filter */ 587 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 588 MICFIL_VAD0_CTRL1_ST10); 589 590 /* Enable Interrupts */ 591 ret = fsl_micfil_configure_hwvad_interrupts(micfil, 1); 592 if (ret) 593 return ret; 594 595 /* Voice Activity Detector Reset */ 596 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 597 MICFIL_VAD0_CTRL1_RST); 598 599 /* Voice Activity Detector Enabled */ 600 regmap_set_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 601 MICFIL_VAD0_CTRL1_EN); 602 603 return 0; 604 } 605 606 static int fsl_micfil_hwvad_disable(struct fsl_micfil *micfil) 607 { 608 struct device *dev = &micfil->pdev->dev; 609 int ret = 0; 610 611 /* Disable HWVAD */ 612 regmap_clear_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 613 MICFIL_VAD0_CTRL1_EN); 614 615 /* Disable hwvad interrupts */ 616 ret = fsl_micfil_configure_hwvad_interrupts(micfil, 0); 617 if (ret) 618 dev_err(dev, "Failed to disable interrupts\n"); 619 620 return ret; 621 } 622 623 static int fsl_micfil_trigger(struct snd_pcm_substream *substream, int cmd, 624 struct snd_soc_dai *dai) 625 { 626 struct fsl_micfil *micfil = snd_soc_dai_get_drvdata(dai); 627 struct device *dev = &micfil->pdev->dev; 628 int ret; 629 630 switch (cmd) { 631 case SNDRV_PCM_TRIGGER_START: 632 case SNDRV_PCM_TRIGGER_RESUME: 633 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 634 ret = fsl_micfil_reset(dev); 635 if (ret) { 636 dev_err(dev, "failed to soft reset\n"); 637 return ret; 638 } 639 640 /* DMA Interrupt Selection - DISEL bits 641 * 00 - DMA and IRQ disabled 642 * 01 - DMA req enabled 643 * 10 - IRQ enabled 644 * 11 - reserved 645 */ 646 ret = regmap_update_bits(micfil->regmap, REG_MICFIL_CTRL1, 647 MICFIL_CTRL1_DISEL, 648 FIELD_PREP(MICFIL_CTRL1_DISEL, MICFIL_CTRL1_DISEL_DMA)); 649 if (ret) 650 return ret; 651 652 /* Enable the module */ 653 ret = regmap_set_bits(micfil->regmap, REG_MICFIL_CTRL1, 654 MICFIL_CTRL1_PDMIEN | MICFIL_CTRL1_ERREN); 655 if (ret) 656 return ret; 657 658 if (micfil->vad_enabled) 659 fsl_micfil_hwvad_enable(micfil); 660 661 break; 662 case SNDRV_PCM_TRIGGER_STOP: 663 case SNDRV_PCM_TRIGGER_SUSPEND: 664 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 665 if (micfil->vad_enabled) 666 fsl_micfil_hwvad_disable(micfil); 667 668 /* Disable the module */ 669 ret = regmap_clear_bits(micfil->regmap, REG_MICFIL_CTRL1, 670 MICFIL_CTRL1_PDMIEN | MICFIL_CTRL1_ERREN); 671 if (ret) 672 return ret; 673 674 ret = regmap_update_bits(micfil->regmap, REG_MICFIL_CTRL1, 675 MICFIL_CTRL1_DISEL, 676 FIELD_PREP(MICFIL_CTRL1_DISEL, MICFIL_CTRL1_DISEL_DISABLE)); 677 if (ret) 678 return ret; 679 break; 680 default: 681 return -EINVAL; 682 } 683 return 0; 684 } 685 686 static int fsl_micfil_reparent_rootclk(struct fsl_micfil *micfil, unsigned int sample_rate) 687 { 688 struct device *dev = &micfil->pdev->dev; 689 u64 ratio = sample_rate; 690 struct clk *clk; 691 int ret; 692 693 /* Get root clock */ 694 clk = micfil->mclk; 695 696 /* Disable clock first, for it was enabled by pm_runtime */ 697 fsl_asoc_reparent_pll_clocks(dev, clk, micfil->pll8k_clk, 698 micfil->pll11k_clk, ratio); 699 ret = clk_prepare_enable(clk); 700 if (ret) 701 return ret; 702 703 return 0; 704 } 705 706 static int fsl_micfil_hw_params(struct snd_pcm_substream *substream, 707 struct snd_pcm_hw_params *params, 708 struct snd_soc_dai *dai) 709 { 710 struct fsl_micfil *micfil = snd_soc_dai_get_drvdata(dai); 711 unsigned int channels = params_channels(params); 712 unsigned int rate = params_rate(params); 713 int clk_div = 8; 714 int osr = MICFIL_OSR_DEFAULT; 715 int ret; 716 717 /* 1. Disable the module */ 718 ret = regmap_clear_bits(micfil->regmap, REG_MICFIL_CTRL1, 719 MICFIL_CTRL1_PDMIEN); 720 if (ret) 721 return ret; 722 723 /* enable channels */ 724 ret = regmap_update_bits(micfil->regmap, REG_MICFIL_CTRL1, 725 0xFF, ((1 << channels) - 1)); 726 if (ret) 727 return ret; 728 729 ret = fsl_micfil_reparent_rootclk(micfil, rate); 730 if (ret) 731 return ret; 732 733 micfil->mclk_flag = true; 734 735 ret = clk_set_rate(micfil->mclk, rate * clk_div * osr * 8); 736 if (ret) 737 return ret; 738 739 ret = micfil_set_quality(micfil); 740 if (ret) 741 return ret; 742 743 ret = regmap_update_bits(micfil->regmap, REG_MICFIL_CTRL2, 744 MICFIL_CTRL2_CLKDIV | MICFIL_CTRL2_CICOSR, 745 FIELD_PREP(MICFIL_CTRL2_CLKDIV, clk_div) | 746 FIELD_PREP(MICFIL_CTRL2_CICOSR, 16 - osr)); 747 748 /* Configure CIC OSR in VADCICOSR */ 749 regmap_update_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 750 MICFIL_VAD0_CTRL1_CICOSR, 751 FIELD_PREP(MICFIL_VAD0_CTRL1_CICOSR, 16 - osr)); 752 753 /* Configure source channel in VADCHSEL */ 754 regmap_update_bits(micfil->regmap, REG_MICFIL_VAD0_CTRL1, 755 MICFIL_VAD0_CTRL1_CHSEL, 756 FIELD_PREP(MICFIL_VAD0_CTRL1_CHSEL, (channels - 1))); 757 758 micfil->dma_params_rx.peripheral_config = &micfil->sdmacfg; 759 micfil->dma_params_rx.peripheral_size = sizeof(micfil->sdmacfg); 760 micfil->sdmacfg.n_fifos_src = channels; 761 micfil->sdmacfg.sw_done = true; 762 micfil->dma_params_rx.maxburst = channels * MICFIL_DMA_MAXBURST_RX; 763 if (micfil->soc->use_edma) 764 micfil->dma_params_rx.maxburst = channels; 765 766 return 0; 767 } 768 769 static int fsl_micfil_hw_free(struct snd_pcm_substream *substream, 770 struct snd_soc_dai *dai) 771 { 772 struct fsl_micfil *micfil = snd_soc_dai_get_drvdata(dai); 773 774 clk_disable_unprepare(micfil->mclk); 775 micfil->mclk_flag = false; 776 777 return 0; 778 } 779 780 static int fsl_micfil_dai_probe(struct snd_soc_dai *cpu_dai) 781 { 782 struct fsl_micfil *micfil = dev_get_drvdata(cpu_dai->dev); 783 struct device *dev = cpu_dai->dev; 784 unsigned int val = 0; 785 int ret, i; 786 787 micfil->quality = QUALITY_VLOW0; 788 micfil->card = cpu_dai->component->card; 789 790 /* set default gain to 2 */ 791 regmap_write(micfil->regmap, REG_MICFIL_OUT_CTRL, 0x22222222); 792 793 /* set DC Remover in bypass mode*/ 794 for (i = 0; i < MICFIL_OUTPUT_CHANNELS; i++) 795 val |= MICFIL_DC_BYPASS << MICFIL_DC_CHX_SHIFT(i); 796 ret = regmap_update_bits(micfil->regmap, REG_MICFIL_DC_CTRL, 797 MICFIL_DC_CTRL_CONFIG, val); 798 if (ret) { 799 dev_err(dev, "failed to set DC Remover mode bits\n"); 800 return ret; 801 } 802 micfil->dc_remover = MICFIL_DC_BYPASS; 803 804 snd_soc_dai_init_dma_data(cpu_dai, NULL, 805 &micfil->dma_params_rx); 806 807 /* FIFO Watermark Control - FIFOWMK*/ 808 ret = regmap_update_bits(micfil->regmap, REG_MICFIL_FIFO_CTRL, 809 MICFIL_FIFO_CTRL_FIFOWMK, 810 FIELD_PREP(MICFIL_FIFO_CTRL_FIFOWMK, micfil->soc->fifo_depth - 1)); 811 if (ret) 812 return ret; 813 814 return 0; 815 } 816 817 static const struct snd_soc_dai_ops fsl_micfil_dai_ops = { 818 .probe = fsl_micfil_dai_probe, 819 .startup = fsl_micfil_startup, 820 .trigger = fsl_micfil_trigger, 821 .hw_params = fsl_micfil_hw_params, 822 .hw_free = fsl_micfil_hw_free, 823 }; 824 825 static struct snd_soc_dai_driver fsl_micfil_dai = { 826 .capture = { 827 .stream_name = "CPU-Capture", 828 .channels_min = 1, 829 .channels_max = 8, 830 .rates = SNDRV_PCM_RATE_8000_48000, 831 .formats = SNDRV_PCM_FMTBIT_S16_LE, 832 }, 833 .ops = &fsl_micfil_dai_ops, 834 }; 835 836 static const struct snd_soc_component_driver fsl_micfil_component = { 837 .name = "fsl-micfil-dai", 838 .controls = fsl_micfil_snd_controls, 839 .num_controls = ARRAY_SIZE(fsl_micfil_snd_controls), 840 .legacy_dai_naming = 1, 841 }; 842 843 /* REGMAP */ 844 static const struct reg_default fsl_micfil_reg_defaults[] = { 845 {REG_MICFIL_CTRL1, 0x00000000}, 846 {REG_MICFIL_CTRL2, 0x00000000}, 847 {REG_MICFIL_STAT, 0x00000000}, 848 {REG_MICFIL_FIFO_CTRL, 0x0000001F}, 849 {REG_MICFIL_FIFO_STAT, 0x00000000}, 850 {REG_MICFIL_DATACH0, 0x00000000}, 851 {REG_MICFIL_DATACH1, 0x00000000}, 852 {REG_MICFIL_DATACH2, 0x00000000}, 853 {REG_MICFIL_DATACH3, 0x00000000}, 854 {REG_MICFIL_DATACH4, 0x00000000}, 855 {REG_MICFIL_DATACH5, 0x00000000}, 856 {REG_MICFIL_DATACH6, 0x00000000}, 857 {REG_MICFIL_DATACH7, 0x00000000}, 858 {REG_MICFIL_DC_CTRL, 0x00000000}, 859 {REG_MICFIL_OUT_CTRL, 0x00000000}, 860 {REG_MICFIL_OUT_STAT, 0x00000000}, 861 {REG_MICFIL_VAD0_CTRL1, 0x00000000}, 862 {REG_MICFIL_VAD0_CTRL2, 0x000A0000}, 863 {REG_MICFIL_VAD0_STAT, 0x00000000}, 864 {REG_MICFIL_VAD0_SCONFIG, 0x00000000}, 865 {REG_MICFIL_VAD0_NCONFIG, 0x80000000}, 866 {REG_MICFIL_VAD0_NDATA, 0x00000000}, 867 {REG_MICFIL_VAD0_ZCD, 0x00000004}, 868 }; 869 870 static bool fsl_micfil_readable_reg(struct device *dev, unsigned int reg) 871 { 872 struct fsl_micfil *micfil = dev_get_drvdata(dev); 873 874 switch (reg) { 875 case REG_MICFIL_CTRL1: 876 case REG_MICFIL_CTRL2: 877 case REG_MICFIL_STAT: 878 case REG_MICFIL_FIFO_CTRL: 879 case REG_MICFIL_FIFO_STAT: 880 case REG_MICFIL_DATACH0: 881 case REG_MICFIL_DATACH1: 882 case REG_MICFIL_DATACH2: 883 case REG_MICFIL_DATACH3: 884 case REG_MICFIL_DATACH4: 885 case REG_MICFIL_DATACH5: 886 case REG_MICFIL_DATACH6: 887 case REG_MICFIL_DATACH7: 888 case REG_MICFIL_DC_CTRL: 889 case REG_MICFIL_OUT_CTRL: 890 case REG_MICFIL_OUT_STAT: 891 case REG_MICFIL_VAD0_CTRL1: 892 case REG_MICFIL_VAD0_CTRL2: 893 case REG_MICFIL_VAD0_STAT: 894 case REG_MICFIL_VAD0_SCONFIG: 895 case REG_MICFIL_VAD0_NCONFIG: 896 case REG_MICFIL_VAD0_NDATA: 897 case REG_MICFIL_VAD0_ZCD: 898 return true; 899 case REG_MICFIL_FSYNC_CTRL: 900 case REG_MICFIL_VERID: 901 case REG_MICFIL_PARAM: 902 if (micfil->soc->use_verid) 903 return true; 904 fallthrough; 905 default: 906 return false; 907 } 908 } 909 910 static bool fsl_micfil_writeable_reg(struct device *dev, unsigned int reg) 911 { 912 struct fsl_micfil *micfil = dev_get_drvdata(dev); 913 914 switch (reg) { 915 case REG_MICFIL_CTRL1: 916 case REG_MICFIL_CTRL2: 917 case REG_MICFIL_STAT: /* Write 1 to Clear */ 918 case REG_MICFIL_FIFO_CTRL: 919 case REG_MICFIL_FIFO_STAT: /* Write 1 to Clear */ 920 case REG_MICFIL_DC_CTRL: 921 case REG_MICFIL_OUT_CTRL: 922 case REG_MICFIL_OUT_STAT: /* Write 1 to Clear */ 923 case REG_MICFIL_VAD0_CTRL1: 924 case REG_MICFIL_VAD0_CTRL2: 925 case REG_MICFIL_VAD0_STAT: /* Write 1 to Clear */ 926 case REG_MICFIL_VAD0_SCONFIG: 927 case REG_MICFIL_VAD0_NCONFIG: 928 case REG_MICFIL_VAD0_ZCD: 929 return true; 930 case REG_MICFIL_FSYNC_CTRL: 931 if (micfil->soc->use_verid) 932 return true; 933 fallthrough; 934 default: 935 return false; 936 } 937 } 938 939 static bool fsl_micfil_volatile_reg(struct device *dev, unsigned int reg) 940 { 941 switch (reg) { 942 case REG_MICFIL_STAT: 943 case REG_MICFIL_FIFO_STAT: 944 case REG_MICFIL_DATACH0: 945 case REG_MICFIL_DATACH1: 946 case REG_MICFIL_DATACH2: 947 case REG_MICFIL_DATACH3: 948 case REG_MICFIL_DATACH4: 949 case REG_MICFIL_DATACH5: 950 case REG_MICFIL_DATACH6: 951 case REG_MICFIL_DATACH7: 952 case REG_MICFIL_OUT_STAT: 953 case REG_MICFIL_VERID: 954 case REG_MICFIL_PARAM: 955 case REG_MICFIL_VAD0_STAT: 956 case REG_MICFIL_VAD0_NDATA: 957 return true; 958 default: 959 return false; 960 } 961 } 962 963 static const struct regmap_config fsl_micfil_regmap_config = { 964 .reg_bits = 32, 965 .reg_stride = 4, 966 .val_bits = 32, 967 968 .max_register = REG_MICFIL_VAD0_ZCD, 969 .reg_defaults = fsl_micfil_reg_defaults, 970 .num_reg_defaults = ARRAY_SIZE(fsl_micfil_reg_defaults), 971 .readable_reg = fsl_micfil_readable_reg, 972 .volatile_reg = fsl_micfil_volatile_reg, 973 .writeable_reg = fsl_micfil_writeable_reg, 974 .cache_type = REGCACHE_MAPLE, 975 }; 976 977 /* END OF REGMAP */ 978 979 static irqreturn_t micfil_isr(int irq, void *devid) 980 { 981 struct fsl_micfil *micfil = (struct fsl_micfil *)devid; 982 struct platform_device *pdev = micfil->pdev; 983 u32 stat_reg; 984 u32 fifo_stat_reg; 985 u32 ctrl1_reg; 986 bool dma_enabled; 987 int i; 988 989 regmap_read(micfil->regmap, REG_MICFIL_STAT, &stat_reg); 990 regmap_read(micfil->regmap, REG_MICFIL_CTRL1, &ctrl1_reg); 991 regmap_read(micfil->regmap, REG_MICFIL_FIFO_STAT, &fifo_stat_reg); 992 993 dma_enabled = FIELD_GET(MICFIL_CTRL1_DISEL, ctrl1_reg) == MICFIL_CTRL1_DISEL_DMA; 994 995 /* Channel 0-7 Output Data Flags */ 996 for (i = 0; i < MICFIL_OUTPUT_CHANNELS; i++) { 997 if (stat_reg & MICFIL_STAT_CHXF(i)) 998 dev_dbg(&pdev->dev, 999 "Data available in Data Channel %d\n", i); 1000 /* if DMA is not enabled, field must be written with 1 1001 * to clear 1002 */ 1003 if (!dma_enabled) 1004 regmap_write_bits(micfil->regmap, 1005 REG_MICFIL_STAT, 1006 MICFIL_STAT_CHXF(i), 1007 MICFIL_STAT_CHXF(i)); 1008 } 1009 1010 for (i = 0; i < MICFIL_FIFO_NUM; i++) { 1011 if (fifo_stat_reg & MICFIL_FIFO_STAT_FIFOX_OVER(i)) 1012 dev_dbg(&pdev->dev, 1013 "FIFO Overflow Exception flag for channel %d\n", 1014 i); 1015 1016 if (fifo_stat_reg & MICFIL_FIFO_STAT_FIFOX_UNDER(i)) 1017 dev_dbg(&pdev->dev, 1018 "FIFO Underflow Exception flag for channel %d\n", 1019 i); 1020 } 1021 1022 return IRQ_HANDLED; 1023 } 1024 1025 static irqreturn_t micfil_err_isr(int irq, void *devid) 1026 { 1027 struct fsl_micfil *micfil = (struct fsl_micfil *)devid; 1028 struct platform_device *pdev = micfil->pdev; 1029 u32 fifo_stat_reg; 1030 u32 out_stat_reg; 1031 u32 stat_reg; 1032 1033 regmap_read(micfil->regmap, REG_MICFIL_STAT, &stat_reg); 1034 1035 if (stat_reg & MICFIL_STAT_BSY_FIL) 1036 dev_dbg(&pdev->dev, "isr: Decimation Filter is running\n"); 1037 1038 if (stat_reg & MICFIL_STAT_FIR_RDY) 1039 dev_dbg(&pdev->dev, "isr: FIR Filter Data ready\n"); 1040 1041 if (stat_reg & MICFIL_STAT_LOWFREQF) { 1042 dev_dbg(&pdev->dev, "isr: ipg_clk_app is too low\n"); 1043 regmap_write_bits(micfil->regmap, REG_MICFIL_STAT, 1044 MICFIL_STAT_LOWFREQF, MICFIL_STAT_LOWFREQF); 1045 } 1046 1047 regmap_read(micfil->regmap, REG_MICFIL_FIFO_STAT, &fifo_stat_reg); 1048 regmap_write_bits(micfil->regmap, REG_MICFIL_FIFO_STAT, 1049 fifo_stat_reg, fifo_stat_reg); 1050 1051 regmap_read(micfil->regmap, REG_MICFIL_OUT_STAT, &out_stat_reg); 1052 regmap_write_bits(micfil->regmap, REG_MICFIL_OUT_STAT, 1053 out_stat_reg, out_stat_reg); 1054 1055 return IRQ_HANDLED; 1056 } 1057 1058 static irqreturn_t voice_detected_fn(int irq, void *devid) 1059 { 1060 struct fsl_micfil *micfil = (struct fsl_micfil *)devid; 1061 struct snd_kcontrol *kctl; 1062 1063 if (!micfil->card) 1064 return IRQ_HANDLED; 1065 1066 kctl = snd_soc_card_get_kcontrol(micfil->card, "VAD Detected"); 1067 if (!kctl) 1068 return IRQ_HANDLED; 1069 1070 if (micfil->vad_detected) 1071 snd_ctl_notify(micfil->card->snd_card, 1072 SNDRV_CTL_EVENT_MASK_VALUE, 1073 &kctl->id); 1074 1075 return IRQ_HANDLED; 1076 } 1077 1078 static irqreturn_t hwvad_isr(int irq, void *devid) 1079 { 1080 struct fsl_micfil *micfil = (struct fsl_micfil *)devid; 1081 struct device *dev = &micfil->pdev->dev; 1082 u32 vad0_reg; 1083 int ret; 1084 1085 regmap_read(micfil->regmap, REG_MICFIL_VAD0_STAT, &vad0_reg); 1086 1087 /* 1088 * The only difference between MICFIL_VAD0_STAT_EF and 1089 * MICFIL_VAD0_STAT_IF is that the former requires Write 1090 * 1 to Clear. Since both flags are set, it is enough 1091 * to only read one of them 1092 */ 1093 if (vad0_reg & MICFIL_VAD0_STAT_IF) { 1094 /* Write 1 to clear */ 1095 regmap_write_bits(micfil->regmap, REG_MICFIL_VAD0_STAT, 1096 MICFIL_VAD0_STAT_IF, 1097 MICFIL_VAD0_STAT_IF); 1098 1099 micfil->vad_detected = 1; 1100 } 1101 1102 ret = fsl_micfil_hwvad_disable(micfil); 1103 if (ret) 1104 dev_err(dev, "Failed to disable hwvad\n"); 1105 1106 return IRQ_WAKE_THREAD; 1107 } 1108 1109 static irqreturn_t hwvad_err_isr(int irq, void *devid) 1110 { 1111 struct fsl_micfil *micfil = (struct fsl_micfil *)devid; 1112 struct device *dev = &micfil->pdev->dev; 1113 u32 vad0_reg; 1114 1115 regmap_read(micfil->regmap, REG_MICFIL_VAD0_STAT, &vad0_reg); 1116 1117 if (vad0_reg & MICFIL_VAD0_STAT_INSATF) 1118 dev_dbg(dev, "voice activity input overflow/underflow detected\n"); 1119 1120 return IRQ_HANDLED; 1121 } 1122 1123 static int fsl_micfil_runtime_suspend(struct device *dev); 1124 static int fsl_micfil_runtime_resume(struct device *dev); 1125 1126 static int fsl_micfil_probe(struct platform_device *pdev) 1127 { 1128 struct device_node *np = pdev->dev.of_node; 1129 struct fsl_micfil *micfil; 1130 struct resource *res; 1131 void __iomem *regs; 1132 int ret, i; 1133 1134 micfil = devm_kzalloc(&pdev->dev, sizeof(*micfil), GFP_KERNEL); 1135 if (!micfil) 1136 return -ENOMEM; 1137 1138 micfil->pdev = pdev; 1139 strscpy(micfil->name, np->name, sizeof(micfil->name)); 1140 1141 micfil->soc = of_device_get_match_data(&pdev->dev); 1142 1143 /* ipg_clk is used to control the registers 1144 * ipg_clk_app is used to operate the filter 1145 */ 1146 micfil->mclk = devm_clk_get(&pdev->dev, "ipg_clk_app"); 1147 if (IS_ERR(micfil->mclk)) { 1148 dev_err(&pdev->dev, "failed to get core clock: %ld\n", 1149 PTR_ERR(micfil->mclk)); 1150 return PTR_ERR(micfil->mclk); 1151 } 1152 1153 micfil->busclk = devm_clk_get(&pdev->dev, "ipg_clk"); 1154 if (IS_ERR(micfil->busclk)) { 1155 dev_err(&pdev->dev, "failed to get ipg clock: %ld\n", 1156 PTR_ERR(micfil->busclk)); 1157 return PTR_ERR(micfil->busclk); 1158 } 1159 1160 fsl_asoc_get_pll_clocks(&pdev->dev, &micfil->pll8k_clk, 1161 &micfil->pll11k_clk); 1162 1163 /* init regmap */ 1164 regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res); 1165 if (IS_ERR(regs)) 1166 return PTR_ERR(regs); 1167 1168 micfil->regmap = devm_regmap_init_mmio(&pdev->dev, 1169 regs, 1170 &fsl_micfil_regmap_config); 1171 if (IS_ERR(micfil->regmap)) { 1172 dev_err(&pdev->dev, "failed to init MICFIL regmap: %ld\n", 1173 PTR_ERR(micfil->regmap)); 1174 return PTR_ERR(micfil->regmap); 1175 } 1176 1177 /* dataline mask for RX */ 1178 ret = of_property_read_u32_index(np, 1179 "fsl,dataline", 1180 0, 1181 &micfil->dataline); 1182 if (ret) 1183 micfil->dataline = 1; 1184 1185 if (micfil->dataline & ~micfil->soc->dataline) { 1186 dev_err(&pdev->dev, "dataline setting error, Mask is 0x%X\n", 1187 micfil->soc->dataline); 1188 return -EINVAL; 1189 } 1190 1191 /* get IRQs */ 1192 for (i = 0; i < MICFIL_IRQ_LINES; i++) { 1193 micfil->irq[i] = platform_get_irq(pdev, i); 1194 if (micfil->irq[i] < 0) 1195 return micfil->irq[i]; 1196 } 1197 1198 /* Digital Microphone interface interrupt */ 1199 ret = devm_request_irq(&pdev->dev, micfil->irq[0], 1200 micfil_isr, IRQF_SHARED, 1201 micfil->name, micfil); 1202 if (ret) { 1203 dev_err(&pdev->dev, "failed to claim mic interface irq %u\n", 1204 micfil->irq[0]); 1205 return ret; 1206 } 1207 1208 /* Digital Microphone interface error interrupt */ 1209 ret = devm_request_irq(&pdev->dev, micfil->irq[1], 1210 micfil_err_isr, IRQF_SHARED, 1211 micfil->name, micfil); 1212 if (ret) { 1213 dev_err(&pdev->dev, "failed to claim mic interface error irq %u\n", 1214 micfil->irq[1]); 1215 return ret; 1216 } 1217 1218 /* Digital Microphone interface voice activity detector event */ 1219 ret = devm_request_threaded_irq(&pdev->dev, micfil->irq[2], 1220 hwvad_isr, voice_detected_fn, 1221 IRQF_SHARED, micfil->name, micfil); 1222 if (ret) { 1223 dev_err(&pdev->dev, "failed to claim hwvad event irq %u\n", 1224 micfil->irq[0]); 1225 return ret; 1226 } 1227 1228 /* Digital Microphone interface voice activity detector error */ 1229 ret = devm_request_irq(&pdev->dev, micfil->irq[3], 1230 hwvad_err_isr, IRQF_SHARED, 1231 micfil->name, micfil); 1232 if (ret) { 1233 dev_err(&pdev->dev, "failed to claim hwvad error irq %u\n", 1234 micfil->irq[1]); 1235 return ret; 1236 } 1237 1238 micfil->dma_params_rx.chan_name = "rx"; 1239 micfil->dma_params_rx.addr = res->start + REG_MICFIL_DATACH0; 1240 micfil->dma_params_rx.maxburst = MICFIL_DMA_MAXBURST_RX; 1241 1242 platform_set_drvdata(pdev, micfil); 1243 1244 pm_runtime_enable(&pdev->dev); 1245 if (!pm_runtime_enabled(&pdev->dev)) { 1246 ret = fsl_micfil_runtime_resume(&pdev->dev); 1247 if (ret) 1248 goto err_pm_disable; 1249 } 1250 1251 ret = pm_runtime_resume_and_get(&pdev->dev); 1252 if (ret < 0) 1253 goto err_pm_get_sync; 1254 1255 /* Get micfil version */ 1256 ret = fsl_micfil_use_verid(&pdev->dev); 1257 if (ret < 0) 1258 dev_warn(&pdev->dev, "Error reading MICFIL version: %d\n", ret); 1259 1260 ret = pm_runtime_put_sync(&pdev->dev); 1261 if (ret < 0 && ret != -ENOSYS) 1262 goto err_pm_get_sync; 1263 1264 regcache_cache_only(micfil->regmap, true); 1265 1266 /* 1267 * Register platform component before registering cpu dai for there 1268 * is not defer probe for platform component in snd_soc_add_pcm_runtime(). 1269 */ 1270 ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0); 1271 if (ret) { 1272 dev_err(&pdev->dev, "failed to pcm register\n"); 1273 goto err_pm_disable; 1274 } 1275 1276 fsl_micfil_dai.capture.formats = micfil->soc->formats; 1277 1278 ret = devm_snd_soc_register_component(&pdev->dev, &fsl_micfil_component, 1279 &fsl_micfil_dai, 1); 1280 if (ret) { 1281 dev_err(&pdev->dev, "failed to register component %s\n", 1282 fsl_micfil_component.name); 1283 goto err_pm_disable; 1284 } 1285 1286 return ret; 1287 1288 err_pm_get_sync: 1289 if (!pm_runtime_status_suspended(&pdev->dev)) 1290 fsl_micfil_runtime_suspend(&pdev->dev); 1291 err_pm_disable: 1292 pm_runtime_disable(&pdev->dev); 1293 1294 return ret; 1295 } 1296 1297 static void fsl_micfil_remove(struct platform_device *pdev) 1298 { 1299 pm_runtime_disable(&pdev->dev); 1300 } 1301 1302 static int fsl_micfil_runtime_suspend(struct device *dev) 1303 { 1304 struct fsl_micfil *micfil = dev_get_drvdata(dev); 1305 1306 regcache_cache_only(micfil->regmap, true); 1307 1308 if (micfil->mclk_flag) 1309 clk_disable_unprepare(micfil->mclk); 1310 clk_disable_unprepare(micfil->busclk); 1311 1312 return 0; 1313 } 1314 1315 static int fsl_micfil_runtime_resume(struct device *dev) 1316 { 1317 struct fsl_micfil *micfil = dev_get_drvdata(dev); 1318 int ret; 1319 1320 ret = clk_prepare_enable(micfil->busclk); 1321 if (ret < 0) 1322 return ret; 1323 1324 if (micfil->mclk_flag) { 1325 ret = clk_prepare_enable(micfil->mclk); 1326 if (ret < 0) { 1327 clk_disable_unprepare(micfil->busclk); 1328 return ret; 1329 } 1330 } 1331 1332 regcache_cache_only(micfil->regmap, false); 1333 regcache_mark_dirty(micfil->regmap); 1334 regcache_sync(micfil->regmap); 1335 1336 return 0; 1337 } 1338 1339 static const struct dev_pm_ops fsl_micfil_pm_ops = { 1340 SET_RUNTIME_PM_OPS(fsl_micfil_runtime_suspend, 1341 fsl_micfil_runtime_resume, 1342 NULL) 1343 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, 1344 pm_runtime_force_resume) 1345 }; 1346 1347 static struct platform_driver fsl_micfil_driver = { 1348 .probe = fsl_micfil_probe, 1349 .remove = fsl_micfil_remove, 1350 .driver = { 1351 .name = "fsl-micfil-dai", 1352 .pm = &fsl_micfil_pm_ops, 1353 .of_match_table = fsl_micfil_dt_ids, 1354 }, 1355 }; 1356 module_platform_driver(fsl_micfil_driver); 1357 1358 MODULE_AUTHOR("Cosmin-Gabriel Samoila <cosmin.samoila@nxp.com>"); 1359 MODULE_DESCRIPTION("NXP PDM Microphone Interface (MICFIL) driver"); 1360 MODULE_LICENSE("Dual BSD/GPL"); 1361