2016-05-23 15:05:56 +02:00
|
|
|
/************************************************************************************
|
|
|
|
* configs/stm32f746-ws/include/board.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
* Author: Mark Olsson <post@markolsson.se>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_STM32F746_WS_INCLUDE_BOARD_H
|
|
|
|
#define __CONFIG_STM32F746_WS_INCLUDE_BOARD_H
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Included Files
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
# include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
#include "stm32_rcc.h"
|
|
|
|
#ifdef CONFIG_STM32F7_SDMMC1
|
|
|
|
# include "stm32_sdmmc.h"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
/* Clocking *************************************************************************/
|
|
|
|
/* The STM32F7 Discovery board provides the following clock sources:
|
|
|
|
*
|
|
|
|
* X1: 24 MHz oscillator for USB OTG HS PHY and camera module (daughter board)
|
|
|
|
* X2: 25 MHz oscillator for STM32F746NGH6 microcontroller and Ethernet PHY.
|
|
|
|
* X3: 32.768 KHz crystal for STM32F746NGH6 embedded RTC
|
|
|
|
*
|
|
|
|
* So we have these clock source available within the STM32
|
|
|
|
*
|
|
|
|
* HSI: 16 MHz RC factory-trimmed
|
|
|
|
* LSI: 32 KHz RC
|
|
|
|
* HSE: On-board crystal frequency is 25MHz
|
|
|
|
* LSE: 32.768 kHz
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define STM32_BOARD_XTAL 8000000ul
|
|
|
|
|
|
|
|
#define STM32_HSI_FREQUENCY 16000000ul
|
|
|
|
#define STM32_LSI_FREQUENCY 32000
|
|
|
|
#define STM32_HSE_FREQUENCY STM32_BOARD_XTAL
|
|
|
|
#define STM32_LSE_FREQUENCY 32768
|
|
|
|
|
|
|
|
/* Main PLL Configuration.
|
|
|
|
*
|
|
|
|
* PLL source is HSE = 8,000,000
|
|
|
|
*
|
|
|
|
* PLL_VCO = (STM32_HSE_FREQUENCY / PLLM) * PLLN
|
|
|
|
* Subject to:
|
|
|
|
*
|
|
|
|
* 2 <= PLLM <= 63
|
|
|
|
* 192 <= PLLN <= 432
|
|
|
|
* 192 MHz <= PLL_VCO <= 432MHz
|
|
|
|
*
|
|
|
|
* SYSCLK = PLL_VCO / PLLP
|
|
|
|
* Subject to
|
|
|
|
*
|
|
|
|
* PLLP = {2, 4, 6, 8}
|
|
|
|
* SYSCLK <= 216 MHz
|
|
|
|
*
|
|
|
|
* USB OTG FS, SDMMC and RNG Clock = PLL_VCO / PLLQ
|
|
|
|
* Subject to
|
|
|
|
* The USB OTG FS requires a 48 MHz clock to work correctly. The SDMMC
|
|
|
|
* and the random number generator need a frequency lower than or equal
|
|
|
|
* to 48 MHz to work correctly.
|
|
|
|
*
|
|
|
|
* 2 <= PLLQ <= 15
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Highest SYSCLK with USB OTG FS clock <= 48MHz
|
|
|
|
*
|
|
|
|
* PLL_VCO = (8,000,000 / 8) * 432 = 432 MHz
|
|
|
|
* SYSCLK = 432 MHz / 2 = 216 MHz
|
|
|
|
* USB OTG FS, SDMMC and RNG Clock = 432 MHz / 9 = 48 MHz
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define STM32_PLLCFG_PLLM RCC_PLLCFG_PLLM(8)
|
|
|
|
#define STM32_PLLCFG_PLLN RCC_PLLCFG_PLLN(432)
|
|
|
|
#define STM32_PLLCFG_PLLP RCC_PLLCFG_PLLP_2
|
|
|
|
#define STM32_PLLCFG_PLLQ RCC_PLLCFG_PLLQ(9)
|
|
|
|
|
|
|
|
#define STM32_VCO_FREQUENCY ((STM32_HSE_FREQUENCY / 8) * 432)
|
|
|
|
#define STM32_SYSCLK_FREQUENCY (STM32_VCO_FREQUENCY / 2)
|
|
|
|
#define STM32_OTGFS_FREQUENCY (STM32_VCO_FREQUENCY / 9)
|
|
|
|
|
|
|
|
/* Several prescalers allow the configuration of the two AHB buses, the
|
|
|
|
* high-speed APB (APB2) and the low-speed APB (APB1) domains. The maximum
|
|
|
|
* frequency of the two AHB buses is 216 MHz while the maximum frequency of
|
|
|
|
* the high-speed APB domains is 108 MHz. The maximum allowed frequency of
|
|
|
|
* the low-speed APB domain is 54 MHz.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* AHB clock (HCLK) is SYSCLK (216 MHz) */
|
|
|
|
|
|
|
|
#define STM32_RCC_CFGR_HPRE RCC_CFGR_HPRE_SYSCLK /* HCLK = SYSCLK / 1 */
|
|
|
|
#define STM32_HCLK_FREQUENCY STM32_SYSCLK_FREQUENCY
|
|
|
|
#define STM32_BOARD_HCLK STM32_HCLK_FREQUENCY /* same as above, to satisfy compiler */
|
|
|
|
|
|
|
|
/* APB1 clock (PCLK1) is HCLK/4 (54 MHz) */
|
|
|
|
|
|
|
|
#define STM32_RCC_CFGR_PPRE1 RCC_CFGR_PPRE1_HCLKd4 /* PCLK1 = HCLK / 4 */
|
|
|
|
#define STM32_PCLK1_FREQUENCY (STM32_HCLK_FREQUENCY/4)
|
|
|
|
|
|
|
|
/* Timers driven from APB1 will be twice PCLK1 */
|
|
|
|
|
|
|
|
#define STM32_APB1_TIM2_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM3_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM4_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM5_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM6_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM7_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM12_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM13_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
#define STM32_APB1_TIM14_CLKIN (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
|
|
|
|
/* APB2 clock (PCLK2) is HCLK/2 (108MHz) */
|
|
|
|
|
|
|
|
#define STM32_RCC_CFGR_PPRE2 RCC_CFGR_PPRE2_HCLKd2 /* PCLK2 = HCLK / 2 */
|
|
|
|
#define STM32_PCLK2_FREQUENCY (STM32_HCLK_FREQUENCY/2)
|
|
|
|
|
|
|
|
/* Timers driven from APB2 will be twice PCLK2 */
|
|
|
|
|
|
|
|
#define STM32_APB2_TIM1_CLKIN (2*STM32_PCLK2_FREQUENCY)
|
|
|
|
#define STM32_APB2_TIM8_CLKIN (2*STM32_PCLK2_FREQUENCY)
|
|
|
|
#define STM32_APB2_TIM9_CLKIN (2*STM32_PCLK2_FREQUENCY)
|
|
|
|
#define STM32_APB2_TIM10_CLKIN (2*STM32_PCLK2_FREQUENCY)
|
|
|
|
#define STM32_APB2_TIM11_CLKIN (2*STM32_PCLK2_FREQUENCY)
|
|
|
|
|
2016-06-03 17:19:22 +02:00
|
|
|
/* Timer Frequencies, if APBx is set to 1, frequency is same to APBx
|
|
|
|
* otherwise frequency is 2xAPBx.
|
|
|
|
* Note: TIM1,8 are on APB2, others on APB1
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define STM32_TIM18_FREQUENCY (2*STM32_PCLK2_FREQUENCY)
|
|
|
|
#define STM32_TIM27_FREQUENCY (2*STM32_PCLK1_FREQUENCY)
|
|
|
|
|
2016-05-23 15:05:56 +02:00
|
|
|
/* FLASH wait states
|
|
|
|
*
|
|
|
|
* --------- ---------- -----------
|
|
|
|
* VDD MAX SYSCLK WAIT STATES
|
|
|
|
* --------- ---------- -----------
|
|
|
|
* 1.7-2.1 V 180 MHz 8
|
|
|
|
* 2.1-2.4 V 216 MHz 9
|
|
|
|
* 2.4-2.7 V 216 MHz 8
|
|
|
|
* 2.7-3.6 V 216 MHz 7
|
|
|
|
* --------- ---------- -----------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BOARD_FLASH_WAITSTATES 7
|
|
|
|
|
|
|
|
/* Alternate function pin selections ************************************************/
|
|
|
|
|
|
|
|
/* USART6:
|
|
|
|
*
|
|
|
|
* These configurations assume that you are using a standard Arduio RS-232 shield
|
|
|
|
* with the serial interface with RX on pin D0 and TX on pin D1:
|
|
|
|
*
|
|
|
|
* -------- ---------------
|
|
|
|
* STM32F7
|
|
|
|
* ARDUIONO FUNCTION GPIO
|
|
|
|
* -- ----- --------- -----
|
|
|
|
* DO RX USART6_RX PC7
|
|
|
|
* D1 TX USART6_TX PC6
|
|
|
|
* -- ----- --------- -----
|
|
|
|
*/
|
|
|
|
|
2016-05-24 17:57:39 +02:00
|
|
|
#define GPIO_USART6_RX GPIO_USART6_RX_1
|
|
|
|
#define GPIO_USART6_TX GPIO_USART6_TX_1
|
|
|
|
|
2016-05-24 23:23:57 +02:00
|
|
|
#define GPIO_SPI1_SCK GPIO_SPI1_SCK_1
|
|
|
|
#define GPIO_SPI1_MISO GPIO_SPI1_MISO_1
|
|
|
|
#define GPIO_SPI1_MOSI GPIO_SPI1_MOSI_1
|
2016-05-24 17:57:39 +02:00
|
|
|
|
2016-05-24 23:23:57 +02:00
|
|
|
#define GPIO_I2C1_SCL GPIO_I2C1_SCL_1
|
|
|
|
#define GPIO_I2C1_SDA GPIO_I2C1_SDA_1
|
2016-05-23 15:05:56 +02:00
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Public Data
|
|
|
|
************************************************************************************/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Name: stm32_boardinitialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* All STM32 architectures must provide the following entry point. This entry point
|
|
|
|
* is called early in the initialization -- after all memory has been configured
|
|
|
|
* and mapped but before any devices have been initialized.
|
|
|
|
*
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
void stm32_boardinitialize(void);
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __CONFIG_STM32F746_WS_INCLUDE_BOARD_H */
|