summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32/stm32_rcc.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-11-22 16:08:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-11-22 16:08:21 +0000
commit84c5686eebe6ed9e044dfff4199ea4c0f0fc1e6a (patch)
treefd3d96de23b5b5c7021565041f59e7d8c7b69b8b /nuttx/arch/arm/src/stm32/stm32_rcc.c
parent1c87f4d5e59da4337f5372c191a860916f593794 (diff)
downloadpx4-nuttx-84c5686eebe6ed9e044dfff4199ea4c0f0fc1e6a.tar.gz
px4-nuttx-84c5686eebe6ed9e044dfff4199ea4c0f0fc1e6a.tar.bz2
px4-nuttx-84c5686eebe6ed9e044dfff4199ea4c0f0fc1e6a.zip
Working toward clean STM3240xx build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4119 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/stm32/stm32_rcc.c')
-rw-r--r--nuttx/arch/arm/src/stm32/stm32_rcc.c439
1 files changed, 8 insertions, 431 deletions
diff --git a/nuttx/arch/arm/src/stm32/stm32_rcc.c b/nuttx/arch/arm/src/stm32/stm32_rcc.c
index 553ca39a7..e95d437d1 100644
--- a/nuttx/arch/arm/src/stm32/stm32_rcc.c
+++ b/nuttx/arch/arm/src/stm32/stm32_rcc.c
@@ -74,411 +74,14 @@
* Private Functions
****************************************************************************/
-/* Put all RCC registers in reset state */
+/* Include chip-specific clocking initialization logic */
-static inline void rcc_reset(void)
-{
- uint32_t regval;
-
- putreg32(0, STM32_RCC_APB2RSTR); /* Disable APB2 Peripheral Reset */
- putreg32(0, STM32_RCC_APB1RSTR); /* Disable APB1 Peripheral Reset */
- putreg32(RCC_AHBENR_FLITFEN|RCC_AHBENR_SRAMEN, STM32_RCC_AHBENR); /* FLITF and SRAM Clock ON */
- putreg32(0, STM32_RCC_APB2ENR); /* Disable APB2 Peripheral Clock */
- putreg32(0, STM32_RCC_APB1ENR); /* Disable APB1 Peripheral Clock */
-
- regval = getreg32(STM32_RCC_CR); /* Set the HSION bit */
- regval |= RCC_CR_HSION;
- putreg32(regval, STM32_RCC_CR);
-
- regval = getreg32(STM32_RCC_CFGR); /* Reset SW, HPRE, PPRE1, PPRE2, ADCPRE and MCO bits */
- regval &= ~(RCC_CFGR_SW_MASK|RCC_CFGR_HPRE_MASK|RCC_CFGR_PPRE1_MASK|RCC_CFGR_PPRE2_MASK|RCC_CFGR_ADCPRE_MASK|RCC_CFGR_MCO_MASK);
- putreg32(regval, STM32_RCC_CFGR);
-
- regval = getreg32(STM32_RCC_CR); /* Reset HSEON, CSSON and PLLON bits */
- regval &= ~(RCC_CR_HSEON|RCC_CR_CSSON|RCC_CR_PLLON);
- putreg32(regval, STM32_RCC_CR);
-
- regval = getreg32(STM32_RCC_CR); /* Reset HSEBYP bit */
- regval &= ~RCC_CR_HSEBYP;
- putreg32(regval, STM32_RCC_CR);
-
- regval = getreg32(STM32_RCC_CFGR); /* Reset PLLSRC, PLLXTPRE, PLLMUL and USBPRE bits */
- regval &= ~(RCC_CFGR_PLLSRC|RCC_CFGR_PLLXTPRE|RCC_CFGR_PLLMUL_MASK|RCC_CFGR_USBPRE);
- putreg32(regval, STM32_RCC_CFGR);
-
- putreg32(0, STM32_RCC_CIR); /* Disable all interrupts */
-}
-
-static inline void rcc_enableahb(void)
-{
- uint32_t regval;
-
- /* Always enable FLITF clock and SRAM clock */
-
- regval = RCC_AHBENR_FLITFEN|RCC_AHBENR_SRAMEN;
-
-#if CONFIG_STM32_DMA1
- /* DMA 1 clock enable */
-
- regval |= RCC_AHBENR_DMA1EN;
-#endif
-
-#if CONFIG_STM32_DMA2
- /* DMA 2 clock enable */
-
- regval |= RCC_AHBENR_DMA2EN;
-#endif
-
-#if CONFIG_STM32_CRC
- /* CRC clock enable */
-
- regval |= RCC_AHBENR_CRCEN;
-#endif
-
-#if CONFIG_STM32_FSMC
- /* FSMC clock enable */
-
- regval |= RCC_AHBENR_FSMCEN;
-#endif
-
-#if CONFIG_STM32_SDIO
- /* SDIO clock enable */
-
- regval |= RCC_AHBENR_SDIOEN;
-#endif
-
- putreg32(regval, STM32_RCC_AHBENR); /* Enable peripherals */
-}
-
-static inline void rcc_enableapb1(void)
-{
- uint32_t regval;
-
-#if CONFIG_STM32_USB
- /* USB clock divider. This bit must be valid before enabling the USB
- * clock in the RCC_APB1ENR register. This bit can’t be reset if the USB
- * clock is enabled.
- */
-
- regval = getreg32(STM32_RCC_CFGR);
- regval &= ~RCC_CFGR_USBPRE;
- regval |= STM32_CFGR_USBPRE;
- putreg32(regval, STM32_RCC_CFGR);
-#endif
-
- /* Set the appropriate bits in the APB1ENR register to enabled the
- * selected APB1 peripherals.
- */
-
- regval = getreg32(STM32_RCC_APB1ENR);
-#if CONFIG_STM32_TIM2
- /* Timer 2 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_TIM2EN;
-#endif
-#endif
-
-#if CONFIG_STM32_TIM3
- /* Timer 3 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_TIM3EN;
-#endif
-#endif
-
-#if CONFIG_STM32_TIM4
- /* Timer 4 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_TIM4EN;
-#endif
-#endif
-
-#if CONFIG_STM32_TIM5
- /* Timer 5 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_TIM5EN;
-#endif
-#endif
-
-#if CONFIG_STM32_TIM6
- /* Timer 6 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_TIM6EN;
-#endif
-#endif
-
-#if CONFIG_STM32_TIM7
- /* Timer 7 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_TIM7EN;
-#endif
-#endif
-
-#if CONFIG_STM32_WWDG
- /* Window Watchdog clock enable */
-
- regval |= RCC_APB1ENR_WWDGEN;
-#endif
-
-#if CONFIG_STM32_SPI2
- /* SPI 2 clock enable */
-
- regval |= RCC_APB1ENR_SPI2EN;
-#endif
-
-#if CONFIG_STM32_SPI3
- /* SPI 3 clock enable */
-
- regval |= RCC_APB1ENR_SPI3EN;
-#endif
-
-#if CONFIG_STM32_USART2
- /* USART 2 clock enable */
-
- regval |= RCC_APB1ENR_USART2EN;
-#endif
-
-#if CONFIG_STM32_USART3
- /* USART 3 clock enable */
-
- regval |= RCC_APB1ENR_USART3EN;
-#endif
-
-#if CONFIG_STM32_UART4
- /* UART 4 clock enable */
-
- regval |= RCC_APB1ENR_UART4EN;
-#endif
-
-#if CONFIG_STM32_UART5
- /* UART 5 clock enable */
-
- regval |= RCC_APB1ENR_UART5EN;
-#endif
-
-#if CONFIG_STM32_I2C1
- /* I2C 1 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_I2C1EN;
-#endif
-#endif
-
-#if CONFIG_STM32_I2C2
- /* I2C 2 clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB1ENR_I2C2EN;
-#endif
-#endif
-
-#if CONFIG_STM32_USB
- /* USB clock enable */
-
- regval |= RCC_APB1ENR_USBEN;
-#endif
-
-#if CONFIG_STM32_CAN
- /* CAN clock enable */
-
- regval |= RCC_APB1ENR_CANEN;
-#endif
-
-#if CONFIG_STM32_BKP
- /* Backup interface clock enable */
-
- regval |= RCC_APB1ENR_BKPEN;
-#endif
-
-#if CONFIG_STM32_PWR
- /* Power interface clock enable */
-
- regval |= RCC_APB1ENR_PWREN;
-#endif
-
-#if CONFIG_STM32_DAC
- /* DAC interface clock enable */
-
- regval |= RCC_APB1ENR_DACEN;
-#endif
- putreg32(regval, STM32_RCC_APB1ENR);
-}
-
-static inline void rcc_enableapb2(void)
-{
- uint32_t regval;
-
- /* Set the appropriate bits in the APB2ENR register to enabled the
- * selected APB2 peripherals.
- */
-
- /* Enable GPIOA, GPIOB, ... and AFIO clocks */
-
- regval = getreg32(STM32_RCC_APB2ENR);
- regval |= (RCC_APB2ENR_AFIOEN
-#if STM32_NGPIO > 0
- |RCC_APB2ENR_IOPAEN
-#endif
-#if STM32_NGPIO > 16
- |RCC_APB2ENR_IOPBEN
-#endif
-#if STM32_NGPIO > 32
- |RCC_APB2ENR_IOPCEN
-#endif
-#if STM32_NGPIO > 48
- |RCC_APB2ENR_IOPDEN
-#endif
-#if STM32_NGPIO > 64
- |RCC_APB2ENR_IOPEEN
-#endif
-#if STM32_NGPIO > 80
- |RCC_APB2ENR_IOPFEN
-#endif
-#if STM32_NGPIO > 96
- |RCC_APB2ENR_IOPGEN
-#endif
- );
-
-#if CONFIG_STM32_ADC1
- /* ADC 1 interface clock enable */
-
- regval |= RCC_APB2ENR_ADC1EN;
-#endif
-
-#if CONFIG_STM32_ADC2
- /* ADC 2 interface clock enable */
-
- regval |= RCC_APB2ENR_ADC2EN;
-#endif
-
-#if CONFIG_STM32_TIM1
- /* TIM1 Timer clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB2ENR_TIM1EN;
-#endif
-#endif
-
-#if CONFIG_STM32_SPI1
- /* SPI 1 clock enable */
-
- regval |= RCC_APB2ENR_SPI1EN;
-#endif
-
-#if CONFIG_STM32_TIM8
- /* TIM8 Timer clock enable */
-#ifdef CONFIG_STM32_FORCEPOWER
- regval |= RCC_APB2ENR_TIM8EN;
-#endif
-#endif
-
-#if CONFIG_STM32_USART1
- /* USART1 clock enable */
-
- regval |= RCC_APB2ENR_USART1EN;
-#endif
-
-#if CONFIG_STM32_ADC3
- /*ADC3 interface clock enable */
-
- regval |= RCC_APB2ENR_ADC3EN;
-#endif
- putreg32(regval, STM32_RCC_APB2ENR);
-}
-
-/* Called to change to new clock based on settings in board.h
- *
- * NOTE: This logic would need to be extended if you need to select low-
- * power clocking modes!
- */
-
-#ifndef CONFIG_ARCH_BOARD_STM32_CUSTOM_CLOCKCONFIG
-static inline void stm32_stdclockconfig(void)
-{
- uint32_t regval;
- volatile int32_t timeout;
-
- /* Enable External High-Speed Clock (HSE) */
-
- regval = getreg32(STM32_RCC_CR);
- regval &= ~RCC_CR_HSEBYP; /* Disable HSE clock bypass */
- regval |= RCC_CR_HSEON; /* Enable HSE */
- putreg32(regval, STM32_RCC_CR);
-
- /* Wait until the HSE is ready (or until a timeout elapsed) */
-
- for (timeout = HSERDY_TIMEOUT; timeout > 0; timeout--)
- {
- /* Check if the HSERDY flag is the set in the CR */
-
- if ((getreg32(STM32_RCC_CR) & RCC_CR_HSERDY) != 0)
- {
- /* If so, then break-out with timeout > 0 */
-
- break;
- }
- }
-
- /* Check for a timeout. If this timeout occurs, then we are hosed. We
- * have no real back-up plan, although the following logic makes it look
- * as though we do.
- */
-
- if (timeout > 0)
- {
- /* Enable FLASH prefetch buffer and 2 wait states */
-
- regval = getreg32(STM32_FLASH_ACR);
- regval &= ~FLASH_ACR_LATENCY_MASK;
- regval |= (FLASH_ACR_LATENCY_2|FLASH_ACR_PRTFBE);
- putreg32(regval, STM32_FLASH_ACR);
-
- /* Set the HCLK source/divider */
-
- regval = getreg32(STM32_RCC_CFGR);
- regval &= ~RCC_CFGR_HPRE_MASK;
- regval |= STM32_RCC_CFGR_HPRE;
- putreg32(regval, STM32_RCC_CFGR);
-
- /* Set the PCLK2 divider */
-
- regval = getreg32(STM32_RCC_CFGR);
- regval &= ~RCC_CFGR_PPRE2_MASK;
- regval |= STM32_RCC_CFGR_PPRE2;
- putreg32(regval, STM32_RCC_CFGR);
-
- /* Set the PCLK1 divider */
-
- regval = getreg32(STM32_RCC_CFGR);
- regval &= ~RCC_CFGR_PPRE1_MASK;
- regval |= STM32_RCC_CFGR_PPRE1;
- putreg32(regval, STM32_RCC_CFGR);
-
- /* Set the PLL divider and multipler */
-
- regval = getreg32(STM32_RCC_CFGR);
- regval &= ~(RCC_CFGR_PLLSRC|RCC_CFGR_PLLXTPRE|RCC_CFGR_PLLMUL_MASK);
- regval |= (STM32_CFGR_PLLSRC|STM32_CFGR_PLLXTPRE|STM32_CFGR_PLLMUL);
- putreg32(regval, STM32_RCC_CFGR);
-
- /* Enable the PLL */
-
- regval = getreg32(STM32_RCC_CR);
- regval |= RCC_CR_PLLON;
- putreg32(regval, STM32_RCC_CR);
-
- /* Wait until the PLL is ready */
-
- while ((getreg32(STM32_RCC_CR) & RCC_CR_PLLRDY) == 0);
-
- /* Select the system clock source (probably the PLL) */
-
- regval = getreg32(STM32_RCC_CFGR);
- regval &= ~RCC_CFGR_SW_MASK;
- regval |= STM32_SYSCLK_SW;
- putreg32(regval, STM32_RCC_CFGR);
-
- /* Wait until the selected source is used as the system clock source */
-
- while ((getreg32(STM32_RCC_CFGR) & RCC_CFGR_SWS_MASK) != STM32_SYSCLK_SWS);
- }
-}
+#if defined(CONFIG_STM32_STM32F10XX)
+# include "chip/stm32f10xxx_rcc.c"
+#elif defined(CONFIG_STM32_STM32F40XX)
+# include "chip/stm32f40xxx_rcc.c"
+#else
+# error "Unsupported STM32 chip"
#endif
/****************************************************************************
@@ -507,31 +110,5 @@ void stm32_clockconfig(void)
/* Enable peripheral clocking */
- rcc_enableahb();
- rcc_enableapb2();
- rcc_enableapb1();
-}
-
-/*
- * \todo Check for LSE good timeout and return with -1,
- * possible ISR optimization? or at least ISR should be cough in case of failure
- */
-
-void stm32_rcc_enablelse(void)
-{
- /* Enable LSE */
-
- modifyreg16(STM32_RCC_BDCR, 0, RCC_BDCR_LSEON);
-
- /* We could wait for ISR here ... */
-
- while( !(getreg16(STM32_RCC_BDCR) & RCC_BDCR_LSERDY) ) up_waste();
-
- /* Select LSE as RTC Clock Source */
-
- modifyreg16(STM32_RCC_BDCR, RCC_BDCR_RTCSEL_MASK, RCC_BDCR_RTCSEL_LSE);
-
- /* Enable Clock */
-
- modifyreg16(STM32_RCC_BDCR, 0, RCC_BDCR_RTCEN);
+ rcc_enableperipherals();
}