Lines Matching refs:pllfreq
337 uint32_t pllfreq = 0U; in LL_PLL_ConfigSystemClock_HSI() local
343 pllfreq = UTILS_GetPLLOutputFrequency(HSI_VALUE, UTILS_PLLInitStruct); in LL_PLL_ConfigSystemClock_HSI()
359 status = UTILS_EnablePLLAndSwitchSystem(pllfreq, UTILS_ClkInitStruct); in LL_PLL_ConfigSystemClock_HSI()
396 uint32_t pllfreq = 0U; in LL_PLL_ConfigSystemClock_HSE() local
406 pllfreq = UTILS_GetPLLOutputFrequency(HSEFrequency, UTILS_PLLInitStruct); in LL_PLL_ConfigSystemClock_HSE()
433 status = UTILS_EnablePLLAndSwitchSystem(pllfreq, UTILS_ClkInitStruct); in LL_PLL_ConfigSystemClock_HSE()
464 uint32_t pllfreq = 0U; in UTILS_GetPLLOutputFrequency() local
475 pllfreq = PLL_InputFrequency * (PLLMulTable[UTILS_PLLInitStruct->PLLMul >> RCC_CFGR_PLLMUL_Pos]); in UTILS_GetPLLOutputFrequency()
476 assert_param(IS_LL_UTILS_PLLVCO_OUTPUT(pllfreq)); in UTILS_GetPLLOutputFrequency()
480 pllfreq = pllfreq / ((UTILS_PLLInitStruct->PLLDiv >> RCC_CFGR_PLLDIV_Pos)+1U); in UTILS_GetPLLOutputFrequency()
481 assert_param(IS_LL_UTILS_PLL_FREQUENCY(pllfreq)); in UTILS_GetPLLOutputFrequency()
483 return pllfreq; in UTILS_GetPLLOutputFrequency()