Some checks failed
Basic Checks / license-check (push) Has been cancelled
Basic Checks / include-check (push) Has been cancelled
Basic Checks / style-check (push) Has been cancelled
Basic Checks / docs-check (push) Has been cancelled
Basic Checks / python-tests (push) Has been cancelled
Basic Checks / pin-validation (push) Has been cancelled
Basic Checks / cmake-checks (push) Has been cancelled
Basic Checks / frozen-tools-check (push) Has been cancelled
Publish or Update docker image for head of branch / prepare-tags (push) Has been cancelled
Release or update docker image for a released mbed-os version / prepare-tags (push) Has been cancelled
Publish or Update docker image for head of branch / build-container (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/amd64) (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/arm64) (push) Has been cancelled
Publish or Update docker image for head of branch / deploy-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / build-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/amd64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/arm64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / deploy-container (push) Has been cancelled
Prune temporary docker images / prune-images (push) Has been cancelled
176 lines
6.7 KiB
C
176 lines
6.7 KiB
C
/* mbed Microcontroller Library
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
******************************************************************************
|
|
*
|
|
* Copyright (c) 2015-2021 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
* the "License"; You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/**
|
|
* This file configures the system clock depending on config from targets.json:
|
|
*-----------------------------------------------------------------------------
|
|
* System clock source | 1- USE_PLL_HSE_EXTC (external clock)
|
|
* | 2- USE_PLL_HSE_XTAL (external xtal)
|
|
* | 3- USE_PLL_HSI (internal 16 MHz)
|
|
* | 4- USE_PLL_MSI (internal 100kHz to 48 MHz)
|
|
*-----------------------------------------------------------------------------
|
|
* SYSCLK(MHz) | 160
|
|
* AHBCLK (MHz) | 160
|
|
* APB1CLK (MHz) | 160
|
|
* APB2CLK (MHz) | 160
|
|
* APB3CLK (MHz) | 160
|
|
* USB capable | TODO
|
|
*-----------------------------------------------------------------------------
|
|
**/
|
|
|
|
#include "stm32u5xx.h"
|
|
#include "mbed_error.h"
|
|
|
|
// clock source is selected with CLOCK_SOURCE in json config
|
|
#define USE_PLL_HSE_EXTC 0x8 // Use external clock (OSC_IN)
|
|
#define USE_PLL_HSE_XTAL 0x4 // Use external xtal (OSC_IN/OSC_OUT)
|
|
#define USE_PLL_HSI 0x2 // Use HSI internal clock
|
|
#define USE_PLL_MSI 0x1 // Use MSI internal clock
|
|
|
|
#if ( ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) )
|
|
uint8_t SetSysClock_PLL_HSE(uint8_t bypass);
|
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) */
|
|
|
|
#if ((CLOCK_SOURCE) & USE_PLL_HSI)
|
|
uint8_t SetSysClock_PLL_HSI(void);
|
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
|
|
|
|
#if ((CLOCK_SOURCE) & USE_PLL_MSI)
|
|
uint8_t SetSysClock_PLL_MSI(void);
|
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_MSI) */
|
|
|
|
|
|
/**
|
|
* @brief Configures the System clock source, PLL Multiplier and Divider factors,
|
|
* AHB/APBx prescalers and Flash settings
|
|
* @note This function is called in mbed_sdk_init() function (targets/TARGET_STM/mbed_overrides.c)
|
|
* and after each deepsleep period in hal_deepsleep() (targets/TARGET_STM/sleep.c)
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
|
|
MBED_WEAK void SetSysClock(void)
|
|
{
|
|
#if ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC)
|
|
/* 1- Try to start with HSE and external clock */
|
|
if (SetSysClock_PLL_HSE(1) == 0)
|
|
#endif
|
|
{
|
|
#if ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL)
|
|
/* 2- If fail try to start with HSE and external xtal */
|
|
if (SetSysClock_PLL_HSE(0) == 0)
|
|
#endif
|
|
{
|
|
#if ((CLOCK_SOURCE) & USE_PLL_HSI)
|
|
/* 3- If fail start with HSI clock */
|
|
if (SetSysClock_PLL_HSI() == 0)
|
|
#endif
|
|
{
|
|
#if ((CLOCK_SOURCE) & USE_PLL_MSI)
|
|
/* 4- If fail start with MSI clock */
|
|
if (SetSysClock_PLL_MSI() == 0)
|
|
#endif
|
|
{
|
|
{
|
|
error("SetSysClock failed\n");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#if ( ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) )
|
|
/******************************************************************************/
|
|
/* PLL (clocked by HSE) used as System clock source */
|
|
/******************************************************************************/
|
|
MBED_WEAK uint8_t SetSysClock_PLL_HSE(uint8_t bypass)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSE_XTAL) || ((CLOCK_SOURCE) & USE_PLL_HSE_EXTC) */
|
|
|
|
#if ((CLOCK_SOURCE) & USE_PLL_HSI)
|
|
/******************************************************************************/
|
|
/* PLL (clocked by HSI) used as System clock source */
|
|
/******************************************************************************/
|
|
uint8_t SetSysClock_PLL_HSI(void)
|
|
{
|
|
return 0; // TODO
|
|
}
|
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_HSI) */
|
|
|
|
#if ((CLOCK_SOURCE) & USE_PLL_MSI)
|
|
/******************************************************************************/
|
|
/* PLL (clocked by MSI) used as System clock source */
|
|
/******************************************************************************/
|
|
MBED_WEAK uint8_t SetSysClock_PLL_MSI(void)
|
|
{
|
|
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
|
|
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
|
RCC_PeriphCLKInitTypeDef PeriphClkInit = {0};
|
|
|
|
__HAL_RCC_PWR_CLK_ENABLE();
|
|
HAL_PWREx_DisableUCPDDeadBattery(); /* Disable the internal Pull-Up in Dead Battery pins of UCPD peripheral */
|
|
HAL_PWREx_EnableVddA();
|
|
HAL_PWREx_ControlVoltageScaling(PWR_REGULATOR_VOLTAGE_SCALE1);
|
|
|
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI48 | RCC_OSCILLATORTYPE_HSI
|
|
| RCC_OSCILLATORTYPE_MSI;
|
|
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
|
|
RCC_OscInitStruct.HSI48State = RCC_HSI48_ON;
|
|
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
|
|
RCC_OscInitStruct.MSIState = RCC_MSI_ON;
|
|
RCC_OscInitStruct.MSICalibrationValue = RCC_MSICALIBRATION_DEFAULT;
|
|
RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_0;
|
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_MSI;
|
|
RCC_OscInitStruct.PLL.PLLMBOOST = RCC_PLLMBOOST_DIV4;
|
|
RCC_OscInitStruct.PLL.PLLM = 3;
|
|
RCC_OscInitStruct.PLL.PLLN = 10;
|
|
RCC_OscInitStruct.PLL.PLLP = 2;
|
|
RCC_OscInitStruct.PLL.PLLQ = 2;
|
|
RCC_OscInitStruct.PLL.PLLR = 1;
|
|
RCC_OscInitStruct.PLL.PLLRGE = RCC_PLLVCIRANGE_1;
|
|
RCC_OscInitStruct.PLL.PLLFRACN = 0;
|
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) {
|
|
return 0; // FAIL
|
|
}
|
|
|
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK
|
|
| RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2
|
|
| RCC_CLOCKTYPE_PCLK3;
|
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
|
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
|
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
|
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
|
|
RCC_ClkInitStruct.APB3CLKDivider = RCC_HCLK_DIV1;
|
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_4) != HAL_OK) {
|
|
return 0; // FAIL
|
|
}
|
|
|
|
PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_RNG;
|
|
PeriphClkInit.RngClockSelection = RCC_RNGCLKSOURCE_HSI48;
|
|
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK) {
|
|
return 0; // FAIL
|
|
}
|
|
|
|
HAL_ICACHE_ConfigAssociativityMode(ICACHE_1WAY);
|
|
HAL_ICACHE_Enable();
|
|
|
|
return 1; // OK
|
|
}
|
|
#endif /* ((CLOCK_SOURCE) & USE_PLL_MSI) */
|