Lines Matching refs:pPLLInit

135 static HAL_StatusTypeDef RCC_PLL_Config(uint32_t PLLnumber, const RCC_PLLInitTypeDef *pPLLInit);
1937 static HAL_StatusTypeDef RCC_PLL_Config(uint32_t PLLnumber, const RCC_PLLInitTypeDef *pPLLInit) in RCC_PLL_Config() argument
1970 if (pPLLInit->PLLState == RCC_PLL_ON) in RCC_PLL_Config()
1973 assert_param(IS_RCC_PLLSOURCE(pPLLInit->PLLSource)); in RCC_PLL_Config()
1974 assert_param(IS_RCC_PLLM_VALUE(pPLLInit->PLLM)); in RCC_PLL_Config()
1975 assert_param(IS_RCC_PLLN_VALUE(pPLLInit->PLLN)); in RCC_PLL_Config()
1976 assert_param(IS_RCC_PLLP_VALUE(pPLLInit->PLLP)); in RCC_PLL_Config()
1977 assert_param(IS_RCC_PLLQ_VALUE(pPLLInit->PLLQ)); in RCC_PLL_Config()
1978 assert_param(IS_RCC_PLLR_VALUE(pPLLInit->PLLR)); in RCC_PLL_Config()
1979 assert_param(IS_RCC_PLLS_VALUE(pPLLInit->PLLS)); in RCC_PLL_Config()
1980 assert_param(IS_RCC_PLLT_VALUE(pPLLInit->PLLT)); in RCC_PLL_Config()
1982 pllsrc = pPLLInit->PLLSource; in RCC_PLL_Config()
2002 pllvco = (pllvco / pPLLInit->PLLM); in RCC_PLL_Config()
2026 …pllsrc | (pPLLInit->PLLM << (RCC_PLLCKSELR_DIVM1_Pos + ((RCC_PLLCKSELR_DIVM2_Pos - RCC_PLLCKSELR_D… in RCC_PLL_Config()
2039 WRITE_REG(*p_rcc_pll_divr1_reg, ((pPLLInit->PLLN - 1U) | in RCC_PLL_Config()
2040 ((pPLLInit->PLLP - 1U) << RCC_PLL1DIVR1_DIVP_Pos) | in RCC_PLL_Config()
2041 ((pPLLInit->PLLQ - 1U) << RCC_PLL1DIVR1_DIVQ_Pos) | in RCC_PLL_Config()
2042 ((pPLLInit->PLLR - 1U) << RCC_PLL1DIVR1_DIVR_Pos))); in RCC_PLL_Config()
2043 WRITE_REG(*p_rcc_pll_divr2_reg, ((pPLLInit->PLLS - 1U) | in RCC_PLL_Config()
2044 ((pPLLInit->PLLT - 1U) << RCC_PLL2DIVR2_DIVT_Pos))); in RCC_PLL_Config()
2051 if (pPLLInit->PLLFractional != 0U) in RCC_PLL_Config()
2053 assert_param(IS_RCC_PLLFRACN_VALUE(pPLLInit->PLLFractional)); in RCC_PLL_Config()
2058 …MODIFY_REG(*p_rcc_pll_fracr_reg, RCC_PLL1FRACR_FRACN, pPLLInit->PLLFractional << RCC_PLL1FRACR_FRA… in RCC_PLL_Config()