Lines Matching refs:p_cfg
241 nrf_auxpll_config_t * p_cfg);
250 nrf_auxpll_config_t const * p_cfg);
479 nrf_auxpll_config_t * p_cfg) in nrf_auxpll_config_get() argument
481 NRFX_ASSERT(p_cfg); in nrf_auxpll_config_get()
484 p_cfg->outdrive = in nrf_auxpll_config_get()
487 p_cfg->current_tune = in nrf_auxpll_config_get()
490 p_cfg->sdm_off = in nrf_auxpll_config_get()
493 p_cfg->dither_off = in nrf_auxpll_config_get()
496 p_cfg->range = (nrf_auxpll_divider_range_t)((reg & AUXPLL_CONFIG_CFGSTATIC_AUXPLLRANGE_Msk) in nrf_auxpll_config_get()
501 nrf_auxpll_config_t const * p_cfg) in nrf_auxpll_config_set() argument
503 NRFX_ASSERT(p_cfg); in nrf_auxpll_config_set()
506 ((p_cfg->outdrive << AUXPLL_CONFIG_CFGSTATIC_OUTDRIVE_Pos) in nrf_auxpll_config_set()
508 | ((p_cfg->current_tune << AUXPLL_CONFIG_CFGSTATIC_SELCONSTANTI_Pos) in nrf_auxpll_config_set()
510 | ((p_cfg->sdm_off << AUXPLL_CONFIG_CFGSTATIC_SDMOFF_Pos) in nrf_auxpll_config_set()
512 | ((p_cfg->dither_off << AUXPLL_CONFIG_CFGSTATIC_SDMDITHEROFF_Pos) in nrf_auxpll_config_set()
514 | ((p_cfg->range << AUXPLL_CONFIG_CFGSTATIC_AUXPLLRANGE_Pos) in nrf_auxpll_config_set()