Lines Matching refs:pllfreq

377   uint32_t pllfreq;  in LL_PLL_ConfigSystemClock_CSI()  local
406 pllfreq = UTILS_GetPLLOutputFrequency(CSI_VALUE, UTILS_PLLInitStruct); in LL_PLL_ConfigSystemClock_CSI()
428 status = UTILS_EnablePLLAndSwitchSystem(pllfreq, UTILS_ClkInitStruct); in LL_PLL_ConfigSystemClock_CSI()
467 uint32_t pllfreq; in LL_PLL_ConfigSystemClock_HSI() local
499 pllfreq = UTILS_GetPLLOutputFrequency(hsi_clk, UTILS_PLLInitStruct); in LL_PLL_ConfigSystemClock_HSI()
521 status = UTILS_EnablePLLAndSwitchSystem(pllfreq, UTILS_ClkInitStruct); in LL_PLL_ConfigSystemClock_HSI()
562 uint32_t pllfreq; in LL_PLL_ConfigSystemClock_HSE() local
593 pllfreq = UTILS_GetPLLOutputFrequency(HSEFrequency, UTILS_PLLInitStruct); in LL_PLL_ConfigSystemClock_HSE()
632 status = UTILS_EnablePLLAndSwitchSystem(pllfreq, UTILS_ClkInitStruct); in LL_PLL_ConfigSystemClock_HSE()
844 uint32_t pllfreq; in UTILS_GetPLLOutputFrequency() local
854 pllfreq = PLL_InputFrequency / (UTILS_PLLInitStruct->PLLM); in UTILS_GetPLLOutputFrequency()
855 assert_param(IS_LL_UTILS_PLLVCO_INPUT(pllfreq, UTILS_PLLInitStruct->VCO_Input)); in UTILS_GetPLLOutputFrequency()
858 pllfreq = pllfreq * (UTILS_PLLInitStruct->PLLN); in UTILS_GetPLLOutputFrequency()
859 assert_param(IS_LL_UTILS_PLLVCO_OUTPUT(pllfreq, UTILS_PLLInitStruct->VCO_Output)); in UTILS_GetPLLOutputFrequency()
862 pllfreq = pllfreq / (UTILS_PLLInitStruct->PLLP); in UTILS_GetPLLOutputFrequency()
863 assert_param(IS_LL_UTILS_PLL_FREQUENCY(pllfreq)); in UTILS_GetPLLOutputFrequency()
865 return pllfreq; in UTILS_GetPLLOutputFrequency()