2019-03-24 10:41:40 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2018-11-06 SummerGift first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
|
|
|
|
void SystemClock_Config(void)
|
|
|
|
{
|
|
|
|
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
|
|
|
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
|
|
|
|
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
|
|
|
|
|
2019-06-05 14:24:57 +08:00
|
|
|
/** Supply configuration update enable
|
2019-03-24 10:41:40 +08:00
|
|
|
*/
|
2019-06-05 14:24:57 +08:00
|
|
|
HAL_PWREx_ConfigSupply(PWR_LDO_SUPPLY);
|
|
|
|
/** Configure the main internal regulator output voltage
|
2019-03-24 10:41:40 +08:00
|
|
|
*/
|
|
|
|
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
|
|
|
|
|
2019-06-05 14:24:57 +08:00
|
|
|
while(!__HAL_PWR_GET_FLAG(PWR_FLAG_VOSRDY)) {}
|
|
|
|
/** Configure LSE Drive Capability
|
|
|
|
*/
|
|
|
|
HAL_PWR_EnableBkUpAccess();
|
|
|
|
__HAL_RCC_LSEDRIVE_CONFIG(RCC_LSEDRIVE_LOW);
|
|
|
|
/** Macro to configure the PLL clock source
|
2019-04-15 10:41:36 +08:00
|
|
|
*/
|
|
|
|
__HAL_RCC_PLL_PLLSOURCE_CONFIG(RCC_PLLSOURCE_HSE);
|
2019-06-05 14:24:57 +08:00
|
|
|
/** Initializes the CPU, AHB and APB busses clocks
|
2019-03-24 10:41:40 +08:00
|
|
|
*/
|
2019-07-14 16:34:59 +08:00
|
|
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE
|
|
|
|
|RCC_OSCILLATORTYPE_LSE;
|
2019-03-24 10:41:40 +08:00
|
|
|
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
|
2019-06-05 14:24:57 +08:00
|
|
|
RCC_OscInitStruct.LSEState = RCC_LSE_ON;
|
2019-07-14 16:34:59 +08:00
|
|
|
RCC_OscInitStruct.LSIState = RCC_LSI_ON;
|
2019-03-24 10:41:40 +08:00
|
|
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
|
|
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
|
|
|
|
RCC_OscInitStruct.PLL.PLLM = 5;
|
|
|
|
RCC_OscInitStruct.PLL.PLLN = 160;
|
|
|
|
RCC_OscInitStruct.PLL.PLLP = 2;
|
2020-05-17 13:31:18 +08:00
|
|
|
RCC_OscInitStruct.PLL.PLLQ = 4;
|
2019-03-24 10:41:40 +08:00
|
|
|
RCC_OscInitStruct.PLL.PLLR = 2;
|
|
|
|
RCC_OscInitStruct.PLL.PLLRGE = RCC_PLL1VCIRANGE_2;
|
|
|
|
RCC_OscInitStruct.PLL.PLLVCOSEL = RCC_PLL1VCOWIDE;
|
|
|
|
RCC_OscInitStruct.PLL.PLLFRACN = 0;
|
|
|
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
|
|
|
|
{
|
|
|
|
Error_Handler();
|
|
|
|
}
|
2019-06-05 14:24:57 +08:00
|
|
|
/** Initializes the CPU, AHB and APB busses clocks
|
2019-03-24 10:41:40 +08:00
|
|
|
*/
|
|
|
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
|
|
|
|
|RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2
|
|
|
|
|RCC_CLOCKTYPE_D3PCLK1|RCC_CLOCKTYPE_D1PCLK1;
|
|
|
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
|
|
|
|
RCC_ClkInitStruct.SYSCLKDivider = RCC_SYSCLK_DIV1;
|
|
|
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_HCLK_DIV2;
|
|
|
|
RCC_ClkInitStruct.APB3CLKDivider = RCC_APB3_DIV2;
|
|
|
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_APB1_DIV2;
|
|
|
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_APB2_DIV2;
|
|
|
|
RCC_ClkInitStruct.APB4CLKDivider = RCC_APB4_DIV2;
|
|
|
|
|
|
|
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
|
|
|
|
{
|
|
|
|
Error_Handler();
|
|
|
|
}
|
2019-06-05 14:24:57 +08:00
|
|
|
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_RTC|RCC_PERIPHCLK_LTDC
|
2020-04-09 16:48:01 +08:00
|
|
|
|RCC_PERIPHCLK_USART2|RCC_PERIPHCLK_USART1
|
|
|
|
|RCC_PERIPHCLK_SPI2|RCC_PERIPHCLK_QSPI
|
|
|
|
|RCC_PERIPHCLK_FMC;
|
2019-04-15 10:41:36 +08:00
|
|
|
PeriphClkInitStruct.PLL3.PLL3M = 5;
|
|
|
|
PeriphClkInitStruct.PLL3.PLL3N = 160;
|
|
|
|
PeriphClkInitStruct.PLL3.PLL3P = 2;
|
|
|
|
PeriphClkInitStruct.PLL3.PLL3Q = 2;
|
|
|
|
PeriphClkInitStruct.PLL3.PLL3R = 88;
|
|
|
|
PeriphClkInitStruct.PLL3.PLL3RGE = RCC_PLL3VCIRANGE_2;
|
|
|
|
PeriphClkInitStruct.PLL3.PLL3VCOSEL = RCC_PLL3VCOWIDE;
|
|
|
|
PeriphClkInitStruct.PLL3.PLL3FRACN = 0;
|
|
|
|
PeriphClkInitStruct.FmcClockSelection = RCC_FMCCLKSOURCE_D1HCLK;
|
2019-10-13 14:16:29 +08:00
|
|
|
PeriphClkInitStruct.QspiClockSelection = RCC_QSPICLKSOURCE_D1HCLK;
|
2020-01-15 14:29:33 +08:00
|
|
|
PeriphClkInitStruct.Spi123ClockSelection = RCC_SPI123CLKSOURCE_PLL;
|
2020-04-09 16:48:01 +08:00
|
|
|
PeriphClkInitStruct.Usart234578ClockSelection = RCC_USART234578CLKSOURCE_D2PCLK1;
|
2019-03-24 10:41:40 +08:00
|
|
|
PeriphClkInitStruct.Usart16ClockSelection = RCC_USART16CLKSOURCE_D2PCLK2;
|
2019-06-05 14:24:57 +08:00
|
|
|
PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_LSE;
|
2019-03-24 10:41:40 +08:00
|
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
|
|
|
|
{
|
|
|
|
Error_Handler();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|