2009-09-28 21:14:37 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/arm/src/stm32/stm32_rcc.c
|
|
|
|
*
|
2017-02-09 17:28:04 +01:00
|
|
|
* Copyright (C) 2009, 2011-2012, 2017 Gregory Nutt. All rights reserved.
|
|
|
|
* Authors: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
* David Sidrane <david_s5@nscdg.com>
|
2009-09-28 21:14:37 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-16 21:05:51 +01:00
|
|
|
#include <stdint.h>
|
2011-11-10 19:45:28 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <assert.h>
|
2009-09-28 21:14:37 +02:00
|
|
|
#include <debug.h>
|
2011-11-10 19:45:28 +01:00
|
|
|
|
2009-09-28 21:14:37 +02:00
|
|
|
#include <arch/board/board.h>
|
|
|
|
|
|
|
|
#include "up_internal.h"
|
|
|
|
#include "up_arch.h"
|
|
|
|
|
|
|
|
#include "chip.h"
|
|
|
|
#include "stm32_rcc.h"
|
2016-06-16 17:52:15 +02:00
|
|
|
#include "stm32_rtc.h"
|
2009-10-11 21:52:20 +02:00
|
|
|
#include "stm32_flash.h"
|
2013-02-09 16:03:49 +01:00
|
|
|
#include "stm32.h"
|
2011-04-15 18:20:25 +02:00
|
|
|
#include "stm32_waste.h"
|
2009-09-28 21:14:37 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 16:04:12 +02:00
|
|
|
* Pre-processor Definitions
|
2009-09-28 21:14:37 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2011-11-10 19:45:28 +01:00
|
|
|
/* Allow up to 100 milliseconds for the high speed clock to become ready.
|
|
|
|
* that is a very long delay, but if the clock does not become ready we are
|
|
|
|
* hosed anyway.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define HSERDY_TIMEOUT (100 * CONFIG_BOARD_LOOPSPERMSEC)
|
2009-09-28 21:14:37 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2011-04-15 18:20:25 +02:00
|
|
|
* Private Functions
|
2009-09-28 21:14:37 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2011-11-22 17:08:21 +01:00
|
|
|
/* Include chip-specific clocking initialization logic */
|
2009-09-28 21:14:37 +02:00
|
|
|
|
2013-05-19 22:35:30 +02:00
|
|
|
#if defined(CONFIG_STM32_STM32L15XX)
|
|
|
|
# include "stm32l15xxx_rcc.c"
|
|
|
|
#elif defined(CONFIG_STM32_STM32F10XX)
|
|
|
|
# include "stm32f10xxx_rcc.c"
|
2012-03-10 01:02:11 +01:00
|
|
|
#elif defined(CONFIG_STM32_STM32F20XX)
|
2013-05-19 22:35:30 +02:00
|
|
|
# include "stm32f20xxx_rcc.c"
|
2013-02-07 23:11:40 +01:00
|
|
|
#elif defined(CONFIG_STM32_STM32F30XX)
|
2013-05-19 22:35:30 +02:00
|
|
|
# include "stm32f30xxx_rcc.c"
|
2017-02-26 12:39:44 +01:00
|
|
|
#elif defined(CONFIG_STM32_STM32F33XX)
|
|
|
|
# include "stm32f33xxx_rcc.c"
|
2015-03-02 17:33:42 +01:00
|
|
|
#elif defined(CONFIG_STM32_STM32F37XX)
|
|
|
|
# include "stm32f37xxx_rcc.c"
|
2011-11-22 17:08:21 +01:00
|
|
|
#elif defined(CONFIG_STM32_STM32F40XX)
|
2013-05-19 22:35:30 +02:00
|
|
|
# include "stm32f40xxx_rcc.c"
|
2011-11-22 17:08:21 +01:00
|
|
|
#else
|
|
|
|
# error "Unsupported STM32 chip"
|
2011-02-27 16:42:07 +01:00
|
|
|
#endif
|
2009-09-28 21:14:37 +02:00
|
|
|
|
2016-06-16 17:52:15 +02:00
|
|
|
#if defined(CONFIG_STM32_STM32L15XX)
|
|
|
|
# define STM32_RCC_XXX STM32_RCC_CSR
|
|
|
|
# define RCC_XXX_YYYRST RCC_CSR_RTCRST
|
|
|
|
#else
|
|
|
|
# define STM32_RCC_XXX STM32_RCC_BDCR
|
|
|
|
# define RCC_XXX_YYYRST RCC_BDCR_BDRST
|
|
|
|
#endif
|
|
|
|
|
2011-02-27 16:42:07 +01:00
|
|
|
/****************************************************************************
|
2011-04-15 18:20:25 +02:00
|
|
|
* Public Functions
|
2011-02-27 16:42:07 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2016-06-16 23:45:57 +02:00
|
|
|
/****************************************************************************
|
2016-06-16 21:36:50 +02:00
|
|
|
* Name: rcc_resetbkp
|
2012-08-02 23:48:54 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2016-06-16 23:45:57 +02:00
|
|
|
* The RTC needs to reset the Backup Domain to change RTCSEL and resetting
|
|
|
|
* the Backup Domain renders to disabling the LSE as consequence. In order
|
|
|
|
* to avoid resetting the Backup Domain when we already configured LSE we
|
|
|
|
* will reset the Backup Domain early (here).
|
2012-08-02 23:48:54 +02:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
2016-06-16 23:45:57 +02:00
|
|
|
****************************************************************************/
|
2012-08-02 23:48:54 +02:00
|
|
|
|
2016-06-16 21:36:50 +02:00
|
|
|
#if defined(CONFIG_RTC) && defined(CONFIG_STM32_PWR) && !defined(CONFIG_STM32_STM32F10XX)
|
2016-06-17 00:22:01 +02:00
|
|
|
static inline void rcc_resetbkp(void)
|
2011-02-27 16:42:07 +01:00
|
|
|
{
|
2016-06-16 17:52:15 +02:00
|
|
|
uint32_t regval;
|
|
|
|
|
|
|
|
/* Check if the RTC is already configured */
|
|
|
|
|
2017-02-09 17:28:04 +01:00
|
|
|
stm32_pwr_initbkp(false);
|
|
|
|
|
2016-06-16 17:52:15 +02:00
|
|
|
regval = getreg32(RTC_MAGIC_REG);
|
2017-04-06 17:53:11 +02:00
|
|
|
if (regval != RTC_MAGIC && regval != RTC_MAGIC_TIME_SET)
|
2016-06-16 17:52:15 +02:00
|
|
|
{
|
2016-08-09 15:50:31 +02:00
|
|
|
stm32_pwr_enablebkp(true);
|
2016-06-16 17:52:15 +02:00
|
|
|
|
|
|
|
/* We might be changing RTCSEL - to ensure such changes work, we must
|
|
|
|
* reset the backup domain (having backed up the RTC_MAGIC token)
|
|
|
|
*/
|
|
|
|
|
|
|
|
modifyreg32(STM32_RCC_XXX, 0, RCC_XXX_YYYRST);
|
|
|
|
modifyreg32(STM32_RCC_XXX, RCC_XXX_YYYRST, 0);
|
|
|
|
|
2016-08-09 15:50:31 +02:00
|
|
|
stm32_pwr_enablebkp(false);
|
2016-06-16 17:52:15 +02:00
|
|
|
}
|
2016-06-16 20:43:35 +02:00
|
|
|
}
|
|
|
|
#else
|
2016-06-16 21:36:50 +02:00
|
|
|
# define rcc_resetbkp()
|
2016-06-16 20:43:35 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-06-16 23:45:57 +02:00
|
|
|
/****************************************************************************
|
2016-06-16 20:43:35 +02:00
|
|
|
* Name: stm32_clockconfig
|
|
|
|
*
|
|
|
|
* Description:
|
2016-06-16 23:45:57 +02:00
|
|
|
* Called to establish the clock settings based on the values in board.h.
|
|
|
|
* This function (by default) will reset most everything, enable the PLL,
|
|
|
|
* and enable peripheral clocking for all peripherals enabled in the NuttX
|
|
|
|
* configuration file.
|
2016-06-16 20:43:35 +02:00
|
|
|
*
|
2016-06-16 23:45:57 +02:00
|
|
|
* If CONFIG_ARCH_BOARD_STM32_CUSTOM_CLOCKCONFIG is defined, then clocking
|
|
|
|
* will be enabled by an externally provided, board-specific function called
|
2016-06-16 20:43:35 +02:00
|
|
|
* stm32_board_clockconfig().
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
2016-06-16 23:45:57 +02:00
|
|
|
****************************************************************************/
|
2016-06-16 20:43:35 +02:00
|
|
|
|
|
|
|
void stm32_clockconfig(void)
|
|
|
|
{
|
|
|
|
/* Make sure that we are starting in the reset state */
|
|
|
|
|
|
|
|
rcc_reset();
|
|
|
|
|
2016-06-16 21:36:50 +02:00
|
|
|
/* Reset backup domain if appropriate */
|
2016-06-16 20:43:35 +02:00
|
|
|
|
2016-06-16 21:36:50 +02:00
|
|
|
rcc_resetbkp();
|
2016-06-16 17:52:15 +02:00
|
|
|
|
2011-02-27 16:42:07 +01:00
|
|
|
#if defined(CONFIG_ARCH_BOARD_STM32_CUSTOM_CLOCKCONFIG)
|
|
|
|
|
|
|
|
/* Invoke Board Custom Clock Configuration */
|
|
|
|
|
|
|
|
stm32_board_clockconfig();
|
2012-03-10 01:02:11 +01:00
|
|
|
|
2011-02-27 16:42:07 +01:00
|
|
|
#else
|
|
|
|
|
|
|
|
/* Invoke standard, fixed clock configuration based on definitions in board.h */
|
|
|
|
|
|
|
|
stm32_stdclockconfig();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enable peripheral clocking */
|
2011-08-20 15:23:34 +02:00
|
|
|
|
2011-11-22 17:08:21 +01:00
|
|
|
rcc_enableperipherals();
|
2011-08-19 18:51:04 +02:00
|
|
|
}
|
2012-08-02 23:48:54 +02:00
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Name: stm32_clockenable
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Re-enable the clock and restore the clock settings based on settings in board.h.
|
|
|
|
* This function is only available to support low-power modes of operation: When
|
|
|
|
* re-awakening from deep-sleep modes, it is necessary to re-enable/re-start the
|
|
|
|
* PLL
|
|
|
|
*
|
|
|
|
* This functional performs a subset of the operations performed by
|
|
|
|
* stm32_clockconfig(): It does not reset any devices, and it does not reset the
|
|
|
|
* currenlty enabled peripheral clocks.
|
|
|
|
*
|
|
|
|
* If CONFIG_ARCH_BOARD_STM32_CUSTOM_CLOCKCONFIG is defined, then clocking will
|
|
|
|
* be enabled by an externally provided, board-specific function called
|
|
|
|
* stm32_board_clockconfig().
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
2012-08-03 17:01:51 +02:00
|
|
|
void stm32_clockenable(void)
|
2012-08-02 23:48:54 +02:00
|
|
|
{
|
|
|
|
#if defined(CONFIG_ARCH_BOARD_STM32_CUSTOM_CLOCKCONFIG)
|
|
|
|
|
|
|
|
/* Invoke Board Custom Clock Configuration */
|
|
|
|
|
|
|
|
stm32_board_clockconfig();
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* Invoke standard, fixed clock configuration based on definitions in board.h */
|
|
|
|
|
|
|
|
stm32_stdclockconfig();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|