Lines Matching refs:psConfig
331 am_hal_pdm_configure(void *pHandle, const am_hal_pdm_config_t *psConfig) in am_hal_pdm_configure() argument
347 ui32Temp |= _VAL2FLD(PDM_PCFG_SOFTMUTE, psConfig->bSoftMute) in am_hal_pdm_configure()
348 | _VAL2FLD( PDM_PCFG_CYCLES, psConfig->ui32GainChangeDelay) in am_hal_pdm_configure()
349 | _VAL2FLD( PDM_PCFG_HPCUTOFF, psConfig->ui32HighPassCutoff) in am_hal_pdm_configure()
350 | _VAL2FLD( PDM_PCFG_ADCHPD, psConfig->bHighPassEnable) in am_hal_pdm_configure()
351 | _VAL2FLD( PDM_PCFG_SINCRATE, psConfig->ui32DecimationRate) in am_hal_pdm_configure()
352 | _VAL2FLD( PDM_PCFG_MCLKDIV, psConfig->eClkDivider) in am_hal_pdm_configure()
353 | _VAL2FLD( PDM_PCFG_PGALEFT, psConfig->eLeftGain) in am_hal_pdm_configure()
354 | _VAL2FLD( PDM_PCFG_PGARIGHT, psConfig->eRightGain) in am_hal_pdm_configure()
355 | _VAL2FLD( PDM_PCFG_LRSWAP, psConfig->bLRSwap); in am_hal_pdm_configure()
358 if (!psConfig->bDoNotStartPdm) in am_hal_pdm_configure()
381 _VAL2FLD(PDM_VCFG_CHSET, psConfig->ePCMChannels) | in am_hal_pdm_configure()
382 _VAL2FLD(PDM_VCFG_PCMPACK, psConfig->bDataPacking) | in am_hal_pdm_configure()
383 _VAL2FLD(PDM_VCFG_SELAP, psConfig->ePDMClkSource) | in am_hal_pdm_configure()
384 _VAL2FLD(PDM_VCFG_DMICKDEL, psConfig->bPDMSampleDelay) | in am_hal_pdm_configure()
385 _VAL2FLD(PDM_VCFG_BCLKINV, psConfig->bInvertI2SBCLK) | in am_hal_pdm_configure()
386 _VAL2FLD(PDM_VCFG_I2SEN, psConfig->bI2SEnable) | in am_hal_pdm_configure()
387 _VAL2FLD(PDM_VCFG_PDMCLKSEL, psConfig->ePDMClkSpeed); in am_hal_pdm_configure()