2019-02-03 05:25:22 -04:00
|
|
|
/*
|
|
|
|
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
this header is modelled on the one for the Nucleo-144 H743 board from ChibiOS
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2021-04-04 17:47:46 -03:00
|
|
|
// we want to cope with both revision XY chips and newer chips
|
2022-02-23 16:05:38 -04:00
|
|
|
#if !defined(HAL_CUSTOM_MCU_CLOCKRATE) || HAL_CUSTOM_MCU_CLOCKRATE <= 400000000
|
2021-04-04 17:47:46 -03:00
|
|
|
#define STM32_ENFORCE_H7_REV_XY
|
2022-02-22 10:01:26 -04:00
|
|
|
#endif
|
2021-04-04 17:47:46 -03:00
|
|
|
|
2019-02-03 21:41:00 -04:00
|
|
|
#ifndef STM32_LSECLK
|
|
|
|
#define STM32_LSECLK 32768U
|
|
|
|
#endif
|
|
|
|
#ifndef STM32_LSEDRV
|
2020-01-19 23:20:30 -04:00
|
|
|
#define STM32_LSEDRV (3U << 3U)
|
2019-02-03 21:41:00 -04:00
|
|
|
#endif
|
|
|
|
|
2020-01-19 23:20:30 -04:00
|
|
|
/*
|
|
|
|
* STM32H7xx drivers configuration.
|
|
|
|
* The following settings override the default settings present in
|
|
|
|
* the various device driver implementation headers.
|
|
|
|
* Note that the settings for each driver only have effect if the whole
|
|
|
|
* driver is enabled in halconf.h.
|
|
|
|
*
|
|
|
|
* IRQ priorities:
|
|
|
|
* 15...0 Lowest...Highest.
|
|
|
|
*
|
|
|
|
* DMA priorities:
|
|
|
|
* 0...3 Lowest...Highest.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define STM32H7xx_MCUCONF
|
|
|
|
#define STM32H742_MCUCONF
|
|
|
|
#define STM32H743_MCUCONF
|
|
|
|
#define STM32H753_MCUCONF
|
|
|
|
#define STM32H745_MCUCONF
|
2021-09-04 08:59:15 -03:00
|
|
|
#define STM32H750_MCUCONF
|
2020-01-19 23:20:30 -04:00
|
|
|
#define STM32H755_MCUCONF
|
|
|
|
#define STM32H747_MCUCONF
|
|
|
|
#define STM32H757_MCUCONF
|
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
/*
|
|
|
|
* General settings.
|
|
|
|
*/
|
2023-04-18 17:19:04 -03:00
|
|
|
#ifndef STM32_NO_INIT
|
2023-03-18 03:18:24 -03:00
|
|
|
#define STM32_NO_INIT FALSE
|
2023-04-18 17:19:04 -03:00
|
|
|
#endif
|
2020-01-19 23:20:30 -04:00
|
|
|
#define STM32_TARGET_CORE 1
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Memory attributes settings.
|
|
|
|
*/
|
2022-09-08 15:25:18 -03:00
|
|
|
// Disable ChibiOS memory protection which is fixed to SRAM1-3
|
2022-11-10 12:49:54 -04:00
|
|
|
#define STM32_NOCACHE_ENABLE FALSE
|
|
|
|
//#define STM32_NOCACHE_MPU_REGION MPU_REGION_6
|
|
|
|
//#define STM32_NOCACHE_RBAR 0x24000000U
|
|
|
|
//#define STM32_NOCACHE_RASR MPU_RASR_SIZE_16K
|
2019-02-03 05:25:22 -04:00
|
|
|
|
2022-09-08 15:25:18 -03:00
|
|
|
// enable memory protection on SRAM4, used for bdshot
|
|
|
|
#define STM32_NOCACHE_MPU_REGION_1 MPU_REGION_5
|
|
|
|
#define STM32_NOCACHE_MPU_REGION_1_BASE 0x38000000U
|
|
|
|
#define STM32_NOCACHE_MPU_REGION_1_SIZE MPU_RASR_SIZE_64K
|
2023-04-18 17:19:04 -03:00
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
/*
|
|
|
|
* PWR system settings.
|
2020-01-19 23:20:30 -04:00
|
|
|
* Reading STM32 Reference Manual is required, settings in PWR_CR3 are
|
|
|
|
* very critical.
|
2019-02-03 05:25:22 -04:00
|
|
|
* Register constants are taken from the ST header.
|
|
|
|
*/
|
|
|
|
#define STM32_PWR_CR1 (PWR_CR1_SVOS_1 | PWR_CR1_SVOS_0)
|
|
|
|
#define STM32_PWR_CR2 (PWR_CR2_BREN)
|
2021-05-29 16:47:40 -03:00
|
|
|
#ifdef SMPS_PWR
|
|
|
|
#define STM32_PWR_CR3 (PWR_CR3_SMPSEN | PWR_CR3_USB33DEN)
|
|
|
|
#else
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_PWR_CR3 (PWR_CR3_LDOEN | PWR_CR3_USB33DEN)
|
2021-05-29 16:47:40 -03:00
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_PWR_CPUCR 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clock tree static settings.
|
|
|
|
* Reading STM32 Reference Manual is required.
|
|
|
|
*/
|
2019-02-07 22:19:13 -04:00
|
|
|
#define STM32_LSI_ENABLED FALSE
|
2020-06-30 21:35:00 -03:00
|
|
|
#define STM32_CSI_ENABLED FALSE
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_HSI48_ENABLED TRUE
|
2019-02-08 02:29:56 -04:00
|
|
|
#define STM32_LSE_ENABLED FALSE
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_HSIDIV STM32_HSIDIV_DIV1
|
|
|
|
|
2022-08-14 11:27:11 -03:00
|
|
|
/*
|
|
|
|
* Clock setup for all other H7 variants including H743, H753, H750 and H757
|
|
|
|
*/
|
|
|
|
#define STM32_VOS STM32_VOS_SCALE1
|
2019-02-08 02:29:56 -04:00
|
|
|
/*
|
|
|
|
setup PLLs based on HSE clock
|
|
|
|
*/
|
2020-06-30 21:35:00 -03:00
|
|
|
#if STM32_HSECLK == 0U
|
|
|
|
// no crystal, this gives 400MHz system clock
|
|
|
|
#define STM32_HSE_ENABLED FALSE
|
|
|
|
#define STM32_HSI_ENABLED TRUE
|
|
|
|
#define STM32_PLL1_DIVM_VALUE 4
|
2021-06-22 12:21:18 -03:00
|
|
|
#define STM32_PLL2_DIVM_VALUE 8
|
2020-06-30 21:35:00 -03:00
|
|
|
#define STM32_PLL3_DIVM_VALUE 4
|
|
|
|
#define STM32_PLLSRC STM32_PLLSRC_HSI_CK
|
|
|
|
#define STM32_MCO1SEL STM32_MCO1SEL_HSI_CK
|
|
|
|
#define STM32_CKPERSEL STM32_CKPERSEL_HSI_CK
|
|
|
|
|
|
|
|
#elif STM32_HSECLK == 8000000U
|
2019-03-04 04:36:51 -04:00
|
|
|
// this gives 400MHz system clock
|
2020-06-30 21:35:00 -03:00
|
|
|
#define STM32_HSE_ENABLED TRUE
|
|
|
|
#define STM32_HSI_ENABLED FALSE
|
2019-02-08 02:29:56 -04:00
|
|
|
#define STM32_PLL1_DIVM_VALUE 1
|
|
|
|
#define STM32_PLL2_DIVM_VALUE 1
|
2019-02-13 04:11:04 -04:00
|
|
|
#define STM32_PLL3_DIVM_VALUE 2
|
2020-06-30 21:35:00 -03:00
|
|
|
|
2019-02-08 02:29:56 -04:00
|
|
|
#elif STM32_HSECLK == 16000000U
|
2019-03-04 04:36:51 -04:00
|
|
|
// this gives 400MHz system clock
|
2020-06-30 21:35:00 -03:00
|
|
|
#define STM32_HSE_ENABLED TRUE
|
|
|
|
#define STM32_HSI_ENABLED FALSE
|
2019-02-13 04:11:04 -04:00
|
|
|
#define STM32_PLL1_DIVM_VALUE 2
|
|
|
|
#define STM32_PLL2_DIVM_VALUE 2
|
|
|
|
#define STM32_PLL3_DIVM_VALUE 4
|
2020-06-30 21:35:00 -03:00
|
|
|
|
2019-02-08 02:29:56 -04:00
|
|
|
#elif STM32_HSECLK == 24000000U
|
2019-03-04 04:36:51 -04:00
|
|
|
// this gives 400MHz system clock
|
2020-06-30 21:35:00 -03:00
|
|
|
#define STM32_HSE_ENABLED TRUE
|
|
|
|
#define STM32_HSI_ENABLED FALSE
|
2019-02-21 07:04:18 -04:00
|
|
|
#define STM32_PLL1_DIVM_VALUE 3
|
2021-06-22 12:21:18 -03:00
|
|
|
#define STM32_PLL2_DIVM_VALUE 2
|
2019-03-04 05:27:10 -04:00
|
|
|
#define STM32_PLL3_DIVM_VALUE 6
|
2020-06-30 21:35:00 -03:00
|
|
|
|
2020-04-17 18:28:13 -03:00
|
|
|
#elif STM32_HSECLK == 25000000U
|
|
|
|
// this gives 400MHz system clock
|
2020-06-30 21:35:00 -03:00
|
|
|
#define STM32_HSE_ENABLED TRUE
|
|
|
|
#define STM32_HSI_ENABLED FALSE
|
2020-04-17 18:28:13 -03:00
|
|
|
#define STM32_PLL1_DIVM_VALUE 2
|
2021-06-22 12:21:18 -03:00
|
|
|
#define STM32_PLL2_DIVM_VALUE 5
|
2020-04-17 18:28:13 -03:00
|
|
|
#define STM32_PLL3_DIVM_VALUE 5
|
2019-03-04 05:27:10 -04:00
|
|
|
#else
|
|
|
|
#error "Unsupported HSE clock"
|
|
|
|
#endif
|
|
|
|
|
2020-06-30 21:35:00 -03:00
|
|
|
#if STM32_HSECLK == 0U
|
|
|
|
// no crystal
|
|
|
|
#define STM32_PLL1_DIVN_VALUE 50
|
|
|
|
#define STM32_PLL1_DIVP_VALUE 2
|
2022-02-18 05:27:27 -04:00
|
|
|
#define STM32_PLL1_DIVQ_VALUE 10
|
2020-06-30 21:35:00 -03:00
|
|
|
#define STM32_PLL1_DIVR_VALUE 2
|
|
|
|
|
2021-06-22 12:21:18 -03:00
|
|
|
#define STM32_PLL2_DIVN_VALUE 45
|
|
|
|
#define STM32_PLL2_DIVP_VALUE 2
|
|
|
|
#define STM32_PLL2_DIVQ_VALUE 5
|
2022-11-10 12:49:54 -04:00
|
|
|
#define STM32_PLL2_DIVR_VALUE 8
|
2020-06-30 21:35:00 -03:00
|
|
|
|
|
|
|
#define STM32_PLL3_DIVN_VALUE 15
|
|
|
|
#define STM32_PLL3_DIVQ_VALUE 5
|
|
|
|
#define STM32_PLL3_DIVR_VALUE 8
|
|
|
|
|
2021-06-22 12:21:18 -03:00
|
|
|
#elif (STM32_HSECLK == 8000000U) || (STM32_HSECLK == 16000000U)
|
2019-03-04 05:27:10 -04:00
|
|
|
// common clock tree for multiples of 8MHz crystals
|
2022-02-23 16:05:38 -04:00
|
|
|
#ifdef HAL_CUSTOM_MCU_CLOCKRATE
|
|
|
|
#if HAL_CUSTOM_MCU_CLOCKRATE == 480000000
|
2022-02-22 10:01:26 -04:00
|
|
|
#define STM32_PLL1_DIVN_VALUE 120
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_PLL1_DIVQ_VALUE 12
|
2022-02-22 10:01:26 -04:00
|
|
|
#else
|
2022-02-23 16:05:38 -04:00
|
|
|
#error "Unable to configure custom clockrate"
|
|
|
|
#endif
|
|
|
|
#else
|
2019-03-04 04:36:51 -04:00
|
|
|
#define STM32_PLL1_DIVN_VALUE 100
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_PLL1_DIVQ_VALUE 10
|
2022-02-22 10:01:26 -04:00
|
|
|
#endif
|
2019-02-08 02:29:56 -04:00
|
|
|
#define STM32_PLL1_DIVP_VALUE 2
|
|
|
|
#define STM32_PLL1_DIVR_VALUE 2
|
|
|
|
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_PLL2_DIVN_VALUE 75
|
|
|
|
#define STM32_PLL2_DIVP_VALUE 3
|
|
|
|
#define STM32_PLL2_DIVQ_VALUE 6
|
|
|
|
#define STM32_PLL2_DIVR_VALUE 3
|
2021-06-22 12:21:18 -03:00
|
|
|
|
|
|
|
#define STM32_PLL3_DIVN_VALUE 72
|
|
|
|
#define STM32_PLL3_DIVQ_VALUE 6
|
|
|
|
#define STM32_PLL3_DIVR_VALUE 9
|
|
|
|
|
|
|
|
#elif STM32_HSECLK == 24000000U
|
2022-02-23 16:05:38 -04:00
|
|
|
#ifdef HAL_CUSTOM_MCU_CLOCKRATE
|
|
|
|
#if HAL_CUSTOM_MCU_CLOCKRATE == 480000000
|
2022-02-22 10:01:26 -04:00
|
|
|
#define STM32_PLL1_DIVN_VALUE 120
|
|
|
|
#else
|
2022-02-23 16:05:38 -04:00
|
|
|
#error "Unable to configure custom clockrate"
|
|
|
|
#endif
|
|
|
|
#else
|
2021-06-22 12:21:18 -03:00
|
|
|
#define STM32_PLL1_DIVN_VALUE 100
|
2022-02-22 10:01:26 -04:00
|
|
|
#endif
|
2021-06-22 12:21:18 -03:00
|
|
|
#define STM32_PLL1_DIVP_VALUE 2
|
2022-02-18 05:27:27 -04:00
|
|
|
#define STM32_PLL1_DIVQ_VALUE 10
|
2021-06-22 12:21:18 -03:00
|
|
|
#define STM32_PLL1_DIVR_VALUE 2
|
|
|
|
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_PLL2_DIVN_VALUE 50
|
|
|
|
#define STM32_PLL2_DIVP_VALUE 3
|
|
|
|
#define STM32_PLL2_DIVQ_VALUE 6
|
|
|
|
#define STM32_PLL2_DIVR_VALUE 3
|
2019-02-08 02:29:56 -04:00
|
|
|
|
2019-02-21 18:51:47 -04:00
|
|
|
#define STM32_PLL3_DIVN_VALUE 72
|
|
|
|
#define STM32_PLL3_DIVQ_VALUE 6
|
2019-03-04 05:27:10 -04:00
|
|
|
#define STM32_PLL3_DIVR_VALUE 9
|
2020-04-17 18:28:13 -03:00
|
|
|
|
|
|
|
#elif STM32_HSECLK == 25000000U
|
2022-02-23 16:05:38 -04:00
|
|
|
#ifdef HAL_CUSTOM_MCU_CLOCKRATE
|
|
|
|
#error "Unable to configure custom clockrate"
|
|
|
|
#endif
|
2020-04-17 18:28:13 -03:00
|
|
|
#define STM32_PLL1_DIVN_VALUE 64
|
|
|
|
#define STM32_PLL1_DIVP_VALUE 2
|
2022-02-18 05:27:27 -04:00
|
|
|
#define STM32_PLL1_DIVQ_VALUE 10
|
2020-04-17 18:28:13 -03:00
|
|
|
#define STM32_PLL1_DIVR_VALUE 2
|
|
|
|
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_PLL2_DIVN_VALUE 120
|
|
|
|
#define STM32_PLL2_DIVP_VALUE 3
|
|
|
|
#define STM32_PLL2_DIVQ_VALUE 6
|
|
|
|
#define STM32_PLL2_DIVR_VALUE 3
|
2020-04-17 18:28:13 -03:00
|
|
|
|
|
|
|
#define STM32_PLL3_DIVN_VALUE 48
|
|
|
|
#define STM32_PLL3_DIVQ_VALUE 5
|
|
|
|
#define STM32_PLL3_DIVR_VALUE 8
|
|
|
|
#endif // clock selection
|
2019-02-08 02:29:56 -04:00
|
|
|
|
2020-06-30 21:35:00 -03:00
|
|
|
/*
|
|
|
|
* PLLs static settings.
|
|
|
|
* Reading STM32 Reference Manual is required.
|
|
|
|
*/
|
|
|
|
#ifndef STM32_PLLSRC
|
|
|
|
#define STM32_PLLSRC STM32_PLLSRC_HSE_CK
|
|
|
|
#endif
|
|
|
|
#define STM32_PLLCFGR_MASK ~0
|
|
|
|
|
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_PLL1_ENABLED TRUE
|
|
|
|
#define STM32_PLL1_P_ENABLED TRUE
|
|
|
|
#define STM32_PLL1_Q_ENABLED TRUE
|
|
|
|
#define STM32_PLL1_R_ENABLED TRUE
|
|
|
|
#define STM32_PLL1_FRACN_VALUE 0
|
2019-02-07 22:19:13 -04:00
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_PLL2_ENABLED TRUE
|
|
|
|
#define STM32_PLL2_P_ENABLED TRUE
|
|
|
|
#define STM32_PLL2_Q_ENABLED TRUE
|
|
|
|
#define STM32_PLL2_R_ENABLED TRUE
|
|
|
|
#define STM32_PLL2_FRACN_VALUE 0
|
2019-02-07 22:19:13 -04:00
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_PLL3_ENABLED TRUE
|
2022-11-10 12:49:54 -04:00
|
|
|
#define STM32_PLL3_P_ENABLED FALSE
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_PLL3_Q_ENABLED TRUE
|
|
|
|
#define STM32_PLL3_R_ENABLED TRUE
|
|
|
|
#define STM32_PLL3_FRACN_VALUE 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Core clocks dynamic settings (can be changed at runtime).
|
|
|
|
* Reading STM32 Reference Manual is required.
|
|
|
|
*/
|
|
|
|
#define STM32_SW STM32_SW_PLL1_P_CK
|
2019-02-08 02:29:56 -04:00
|
|
|
#define STM32_RTCSEL STM32_RTCSEL_NOCLK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_D1CPRE STM32_D1CPRE_DIV1
|
2020-02-05 00:44:08 -04:00
|
|
|
#define STM32_D1HPRE STM32_D1HPRE_DIV2
|
|
|
|
#define STM32_D1PPRE3 STM32_D1PPRE3_DIV2
|
|
|
|
#define STM32_D2PPRE1 STM32_D2PPRE1_DIV2
|
|
|
|
#define STM32_D2PPRE2 STM32_D2PPRE2_DIV2
|
|
|
|
#define STM32_D3PPRE4 STM32_D3PPRE4_DIV2
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Peripherals clocks static settings.
|
|
|
|
* Reading STM32 Reference Manual is required.
|
|
|
|
*/
|
2020-06-30 21:35:00 -03:00
|
|
|
#ifndef STM32_MCO1SEL
|
2019-02-07 22:19:13 -04:00
|
|
|
#define STM32_MCO1SEL STM32_MCO1SEL_HSE_CK
|
2020-06-30 21:35:00 -03:00
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_MCO1PRE_VALUE 4
|
|
|
|
#define STM32_MCO2SEL STM32_MCO2SEL_SYS_CK
|
|
|
|
#define STM32_MCO2PRE_VALUE 4
|
|
|
|
#define STM32_TIMPRE_ENABLE TRUE
|
|
|
|
#define STM32_HRTIMSEL 0
|
|
|
|
#define STM32_STOPKERWUCK 0
|
|
|
|
#define STM32_STOPWUCK 0
|
|
|
|
#define STM32_RTCPRE_VALUE 8
|
2020-06-30 21:35:00 -03:00
|
|
|
#ifndef STM32_CKPERSEL
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_CKPERSEL STM32_CKPERSEL_HSE_CK
|
2021-02-18 17:52:58 -04:00
|
|
|
#endif
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_SDMMCSEL STM32_SDMMCSEL_PLL1_Q_CK
|
2023-06-01 12:35:31 -03:00
|
|
|
#ifndef STM32_QSPISEL
|
2021-07-05 06:35:36 -03:00
|
|
|
#define STM32_QSPISEL STM32_QSPISEL_PLL2_R_CK
|
2023-06-01 12:35:31 -03:00
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_FMCSEL STM32_QSPISEL_HCLK
|
2022-08-14 11:27:11 -03:00
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SWPSEL STM32_SWPSEL_PCLK1
|
2022-02-18 05:27:27 -04:00
|
|
|
#define STM32_FDCANSEL STM32_FDCANSEL_PLL1_Q_CK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_DFSDM1SEL STM32_DFSDM1SEL_PCLK2
|
|
|
|
#define STM32_SPDIFSEL STM32_SPDIFSEL_PLL1_Q_CK
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_SPI45SEL STM32_SPI45SEL_PLL2_Q_CK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SPI123SEL STM32_SPI123SEL_PLL1_Q_CK
|
2022-08-14 11:27:11 -03:00
|
|
|
#ifdef STM32_SAI23SEL_PLL1_Q_CK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SAI23SEL STM32_SAI23SEL_PLL1_Q_CK
|
2022-08-14 11:27:11 -03:00
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SAI1SEL STM32_SAI1SEL_PLL1_Q_CK
|
|
|
|
#define STM32_LPTIM1SEL STM32_LPTIM1SEL_PCLK1
|
2019-02-08 02:29:56 -04:00
|
|
|
#define STM32_CECSEL STM32_CECSEL_DISABLE
|
2019-02-21 18:51:47 -04:00
|
|
|
#define STM32_USBSEL STM32_USBSEL_PLL3_Q_CK
|
|
|
|
#define STM32_I2C123SEL STM32_I2C123SEL_PLL3_R_CK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_RNGSEL STM32_RNGSEL_HSI48_CK
|
2023-01-15 11:21:10 -04:00
|
|
|
#define STM32_USART16SEL STM32_USART16SEL_PLL2_Q_CK
|
|
|
|
#define STM32_USART234578SEL STM32_USART234578SEL_PLL2_Q_CK
|
|
|
|
#define STM32_SPI6SEL STM32_SPI6SEL_PLL2_Q_CK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SAI4BSEL STM32_SAI4BSEL_PLL1_Q_CK
|
|
|
|
#define STM32_SAI4ASEL STM32_SAI4ASEL_PLL1_Q_CK
|
2019-03-04 05:27:10 -04:00
|
|
|
#define STM32_ADCSEL STM32_ADCSEL_PLL3_R_CK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_LPTIM345SEL STM32_LPTIM345SEL_PCLK4
|
|
|
|
#define STM32_LPTIM2SEL STM32_LPTIM2SEL_PCLK4
|
2020-01-07 02:13:15 -04:00
|
|
|
#define STM32_I2C4SEL STM32_I2C4SEL_PLL3_R_CK
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_LPUART1SEL STM32_LPUART1SEL_PCLK4
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IRQ system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_IRQ_EXTI0_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI1_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI2_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI3_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI4_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI5_9_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI10_15_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI16_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI17_PRIORITY 15
|
|
|
|
#define STM32_IRQ_EXTI18_PRIORITY 6
|
|
|
|
#define STM32_IRQ_EXTI19_PRIORITY 6
|
2020-01-19 23:20:30 -04:00
|
|
|
#define STM32_IRQ_EXTI20_21_PRIORITY 6
|
|
|
|
|
|
|
|
#define STM32_IRQ_FDCAN1_PRIORITY 10
|
|
|
|
#define STM32_IRQ_FDCAN2_PRIORITY 10
|
|
|
|
|
|
|
|
#define STM32_IRQ_MDMA_PRIORITY 9
|
|
|
|
#define STM32_IRQ_QUADSPI1_PRIORITY 10
|
2022-08-14 11:27:11 -03:00
|
|
|
#define STM32_IRQ_QUADSPI2_PRIORITY 10
|
2020-01-19 23:20:30 -04:00
|
|
|
|
|
|
|
#define STM32_IRQ_SDMMC1_PRIORITY 9
|
|
|
|
#define STM32_IRQ_SDMMC2_PRIORITY 9
|
|
|
|
|
|
|
|
#define STM32_IRQ_TIM1_UP_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM1_CC_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM2_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM3_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM4_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM5_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM6_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM7_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM8_BRK_TIM12_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM8_UP_TIM13_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM8_TRGCO_TIM14_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM8_CC_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM15_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM16_PRIORITY 7
|
|
|
|
#define STM32_IRQ_TIM17_PRIORITY 7
|
|
|
|
|
|
|
|
#define STM32_IRQ_USART1_PRIORITY 12
|
|
|
|
#define STM32_IRQ_USART2_PRIORITY 12
|
|
|
|
#define STM32_IRQ_USART3_PRIORITY 12
|
|
|
|
#define STM32_IRQ_UART4_PRIORITY 12
|
|
|
|
#define STM32_IRQ_UART5_PRIORITY 12
|
|
|
|
#define STM32_IRQ_USART6_PRIORITY 12
|
|
|
|
#define STM32_IRQ_UART7_PRIORITY 12
|
|
|
|
#define STM32_IRQ_UART8_PRIORITY 12
|
2022-08-14 11:27:11 -03:00
|
|
|
#define STM32_IRQ_UART9_PRIORITY 12
|
|
|
|
#define STM32_IRQ_USART10_PRIORITY 12
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ADC driver system settings.
|
|
|
|
*/
|
2023-01-17 00:15:15 -04:00
|
|
|
#ifndef STM32_ADC_DUAL_MODE
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_ADC_DUAL_MODE FALSE
|
2023-01-17 00:15:15 -04:00
|
|
|
#endif
|
|
|
|
#ifndef STM32_ADC_SAMPLES_SIZE
|
2022-11-10 12:49:54 -04:00
|
|
|
#define STM32_ADC_SAMPLES_SIZE 16
|
2023-01-17 00:15:15 -04:00
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_ADC_COMPACT_SAMPLES FALSE
|
|
|
|
#define STM32_ADC_USE_ADC12 TRUE
|
2023-04-26 11:18:36 -03:00
|
|
|
#if !defined(STM32H750xx)
|
2023-01-17 00:15:15 -04:00
|
|
|
#ifndef STM32_ADC_USE_ADC3
|
2021-08-20 21:19:16 -03:00
|
|
|
#define STM32_ADC_USE_ADC3 TRUE
|
2021-09-04 08:59:15 -03:00
|
|
|
#endif
|
2023-01-17 00:15:15 -04:00
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_ADC_ADC12_DMA_PRIORITY 2
|
|
|
|
#define STM32_ADC_ADC3_DMA_PRIORITY 2
|
|
|
|
#define STM32_ADC_ADC12_IRQ_PRIORITY 5
|
|
|
|
#define STM32_ADC_ADC3_IRQ_PRIORITY 5
|
2019-03-04 05:27:10 -04:00
|
|
|
#define STM32_ADC_ADC12_CLOCK_MODE ADC_CCR_CKMODE_ADCCK
|
|
|
|
#define STM32_ADC_ADC3_CLOCK_MODE ADC_CCR_CKMODE_ADCCK
|
2019-02-03 05:25:22 -04:00
|
|
|
|
2019-02-14 06:19:07 -04:00
|
|
|
// we call it ADC1 in hwdef.dat, but driver uses ADC12 for DMA stream
|
2023-04-14 16:48:05 -03:00
|
|
|
#ifdef STM32_ADC_ADC1_DMA_STREAM
|
2019-02-14 06:19:07 -04:00
|
|
|
#define STM32_ADC_ADC12_DMA_STREAM STM32_ADC_ADC1_DMA_STREAM
|
2023-04-14 16:48:05 -03:00
|
|
|
#elif defined(STM32_ADC_ADC2_DMA_STREAM)
|
|
|
|
#define STM32_ADC_ADC12_DMA_STREAM STM32_ADC_ADC2_DMA_STREAM
|
|
|
|
#endif
|
2019-02-14 06:19:07 -04:00
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
/*
|
|
|
|
* CAN driver system settings.
|
|
|
|
*/
|
2020-01-19 23:20:30 -04:00
|
|
|
#define STM32_CAN_USE_FDCAN1 FALSE
|
|
|
|
#define STM32_CAN_USE_FDCAN2 FALSE
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* DAC driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_DAC_DUAL_MODE FALSE
|
|
|
|
#define STM32_DAC_USE_DAC1_CH1 FALSE
|
|
|
|
#define STM32_DAC_USE_DAC1_CH2 FALSE
|
|
|
|
#define STM32_DAC_DAC1_CH1_IRQ_PRIORITY 10
|
|
|
|
#define STM32_DAC_DAC1_CH2_IRQ_PRIORITY 10
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_PRIORITY 2
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_PRIORITY 2
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GPT driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_GPT_USE_TIM1 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM2 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM3 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM4 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM5 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM6 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM7 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM8 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM12 FALSE
|
2020-01-19 23:20:30 -04:00
|
|
|
#define STM32_GPT_USE_TIM13 FALSE
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_GPT_USE_TIM14 FALSE
|
2020-01-19 23:20:30 -04:00
|
|
|
#define STM32_GPT_USE_TIM15 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM16 FALSE
|
|
|
|
#define STM32_GPT_USE_TIM17 FALSE
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* I2C driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_I2C_BUSY_TIMEOUT 50
|
|
|
|
#define STM32_I2C_I2C1_IRQ_PRIORITY 5
|
|
|
|
#define STM32_I2C_I2C2_IRQ_PRIORITY 5
|
|
|
|
#define STM32_I2C_I2C3_IRQ_PRIORITY 5
|
|
|
|
#define STM32_I2C_I2C4_IRQ_PRIORITY 5
|
|
|
|
#define STM32_I2C_I2C1_DMA_PRIORITY 3
|
|
|
|
#define STM32_I2C_I2C2_DMA_PRIORITY 3
|
|
|
|
#define STM32_I2C_I2C3_DMA_PRIORITY 3
|
|
|
|
#define STM32_I2C_I2C4_DMA_PRIORITY 3
|
2022-04-19 06:33:23 -03:00
|
|
|
#define STM32_I2C_DMA_ERROR_HOOK(i2cp) STM32_DMA_ERROR_HOOK(i2cp)
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ICU driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_ICU_USE_TIM1 FALSE
|
|
|
|
#define STM32_ICU_USE_TIM2 FALSE
|
|
|
|
#define STM32_ICU_USE_TIM3 FALSE
|
|
|
|
#define STM32_ICU_USE_TIM4 FALSE
|
|
|
|
#define STM32_ICU_USE_TIM5 FALSE
|
|
|
|
#define STM32_ICU_USE_TIM8 FALSE
|
|
|
|
#define STM32_ICU_USE_TIM9 FALSE
|
|
|
|
#define STM32_ICU_TIM1_IRQ_PRIORITY 7
|
|
|
|
#define STM32_ICU_TIM2_IRQ_PRIORITY 7
|
|
|
|
#define STM32_ICU_TIM3_IRQ_PRIORITY 7
|
|
|
|
#define STM32_ICU_TIM4_IRQ_PRIORITY 7
|
|
|
|
#define STM32_ICU_TIM5_IRQ_PRIORITY 7
|
|
|
|
#define STM32_ICU_TIM8_IRQ_PRIORITY 7
|
|
|
|
#define STM32_ICU_TIM9_IRQ_PRIORITY 7
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MAC driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_MAC_TRANSMIT_BUFFERS 2
|
|
|
|
#define STM32_MAC_RECEIVE_BUFFERS 4
|
|
|
|
#define STM32_MAC_BUFFERS_SIZE 1522
|
|
|
|
#define STM32_MAC_PHY_TIMEOUT 100
|
|
|
|
#define STM32_MAC_ETH1_CHANGE_PHY_STATE TRUE
|
|
|
|
#define STM32_MAC_ETH1_IRQ_PRIORITY 13
|
|
|
|
#define STM32_MAC_IP_CHECKSUM_OFFLOAD 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PWM driver system settings.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RTC driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_RTC_PRESA_VALUE 32
|
|
|
|
#define STM32_RTC_PRESS_VALUE 1024
|
|
|
|
#define STM32_RTC_CR_INIT 0
|
|
|
|
#define STM32_RTC_TAMPCR_INIT 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SDC driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_SDC_SDMMC_UNALIGNED_SUPPORT TRUE
|
|
|
|
#define STM32_SDC_SDMMC_WRITE_TIMEOUT 1000
|
|
|
|
#define STM32_SDC_SDMMC_READ_TIMEOUT 1000
|
|
|
|
#define STM32_SDC_SDMMC_CLOCK_DELAY 10
|
|
|
|
#define STM32_SDC_SDMMC1_DMA_PRIORITY 3
|
2019-02-28 20:31:03 -04:00
|
|
|
#define STM32_SDC_SDMMC1_IRQ_PRIORITY 9
|
2023-02-10 11:15:22 -04:00
|
|
|
#define STM32_SDC_SDMMC_PWRSAV TRUE
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SERIAL driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_SERIAL_USART1_PRIORITY 12
|
|
|
|
#define STM32_SERIAL_USART2_PRIORITY 12
|
|
|
|
#define STM32_SERIAL_USART3_PRIORITY 12
|
|
|
|
#define STM32_SERIAL_UART4_PRIORITY 12
|
|
|
|
#define STM32_SERIAL_UART5_PRIORITY 12
|
|
|
|
#define STM32_SERIAL_USART6_PRIORITY 12
|
|
|
|
#define STM32_SERIAL_UART7_PRIORITY 12
|
|
|
|
#define STM32_SERIAL_UART8_PRIORITY 12
|
|
|
|
|
2022-11-10 12:49:54 -04:00
|
|
|
/*
|
|
|
|
* SIO driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_SIO_USE_USART1 FALSE
|
|
|
|
#define STM32_SIO_USE_USART2 FALSE
|
|
|
|
#define STM32_SIO_USE_USART3 FALSE
|
|
|
|
#define STM32_SIO_USE_UART4 FALSE
|
|
|
|
#define STM32_SIO_USE_UART5 FALSE
|
|
|
|
#define STM32_SIO_USE_USART6 FALSE
|
|
|
|
#define STM32_SIO_USE_UART7 FALSE
|
|
|
|
#define STM32_SIO_USE_UART8 FALSE
|
|
|
|
#define STM32_SIO_USE_LPUART1 FALSE
|
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
/*
|
|
|
|
* SPI driver system settings.
|
|
|
|
*/
|
2019-02-06 17:13:18 -04:00
|
|
|
#ifndef STM32_SPI_USE_SPI1
|
|
|
|
#define STM32_SPI_USE_SPI1 FALSE
|
|
|
|
#endif
|
|
|
|
#ifndef STM32_SPI_USE_SPI2
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SPI_USE_SPI2 FALSE
|
2019-02-06 17:13:18 -04:00
|
|
|
#endif
|
|
|
|
#ifndef STM32_SPI_USE_SPI3
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SPI_USE_SPI3 FALSE
|
2019-02-06 17:13:18 -04:00
|
|
|
#endif
|
|
|
|
#ifndef STM32_SPI_USE_SPI4
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SPI_USE_SPI4 FALSE
|
2019-02-06 17:13:18 -04:00
|
|
|
#endif
|
|
|
|
#ifndef STM32_SPI_USE_SPI5
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SPI_USE_SPI5 FALSE
|
2019-02-06 17:13:18 -04:00
|
|
|
#endif
|
|
|
|
#ifndef STM32_SPI_USE_SPI6
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SPI_USE_SPI6 FALSE
|
2019-02-06 17:13:18 -04:00
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_SPI_SPI1_DMA_PRIORITY 1
|
|
|
|
#define STM32_SPI_SPI2_DMA_PRIORITY 1
|
|
|
|
#define STM32_SPI_SPI3_DMA_PRIORITY 1
|
|
|
|
#define STM32_SPI_SPI4_DMA_PRIORITY 1
|
|
|
|
#define STM32_SPI_SPI5_DMA_PRIORITY 1
|
|
|
|
#define STM32_SPI_SPI6_DMA_PRIORITY 1
|
|
|
|
#define STM32_SPI_SPI1_IRQ_PRIORITY 10
|
|
|
|
#define STM32_SPI_SPI2_IRQ_PRIORITY 10
|
|
|
|
#define STM32_SPI_SPI3_IRQ_PRIORITY 10
|
|
|
|
#define STM32_SPI_SPI4_IRQ_PRIORITY 10
|
|
|
|
#define STM32_SPI_SPI5_IRQ_PRIORITY 10
|
|
|
|
#define STM32_SPI_SPI6_IRQ_PRIORITY 10
|
2022-04-19 06:33:23 -03:00
|
|
|
#define STM32_SPI_DMA_ERROR_HOOK(spip) STM32_DMA_ERROR_HOOK(spip)
|
2019-02-03 05:25:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ST driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_ST_IRQ_PRIORITY 8
|
2019-02-10 06:00:39 -04:00
|
|
|
#ifndef STM32_ST_USE_TIMER
|
|
|
|
#define STM32_ST_USE_TIMER 5
|
|
|
|
#endif
|
2019-02-03 05:25:22 -04:00
|
|
|
|
2022-11-10 12:49:54 -04:00
|
|
|
/*
|
|
|
|
* TRNG driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_TRNG_USE_RNG1 FALSE
|
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
/*
|
|
|
|
* UART driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_UART_USART1_IRQ_PRIORITY 12
|
|
|
|
#define STM32_UART_USART2_IRQ_PRIORITY 12
|
|
|
|
#define STM32_UART_USART3_IRQ_PRIORITY 12
|
|
|
|
#define STM32_UART_UART4_IRQ_PRIORITY 12
|
|
|
|
#define STM32_UART_UART5_IRQ_PRIORITY 12
|
|
|
|
#define STM32_UART_USART6_IRQ_PRIORITY 12
|
|
|
|
#define STM32_UART_USART1_DMA_PRIORITY 0
|
|
|
|
#define STM32_UART_USART2_DMA_PRIORITY 0
|
|
|
|
#define STM32_UART_USART3_DMA_PRIORITY 0
|
|
|
|
#define STM32_UART_UART4_DMA_PRIORITY 0
|
|
|
|
#define STM32_UART_UART5_DMA_PRIORITY 0
|
|
|
|
#define STM32_UART_USART6_DMA_PRIORITY 0
|
|
|
|
#define STM32_UART_UART7_DMA_PRIORITY 0
|
|
|
|
#define STM32_UART_UART8_DMA_PRIORITY 0
|
2022-04-19 06:33:23 -03:00
|
|
|
#define STM32_UART_DMA_ERROR_HOOK(uartp) STM32_DMA_ERROR_HOOK(uartp)
|
2019-02-03 05:25:22 -04:00
|
|
|
|
2021-02-18 17:52:58 -04:00
|
|
|
#define STM32_IRQ_LPUART1_PRIORITY 12
|
|
|
|
|
2019-02-03 05:25:22 -04:00
|
|
|
/*
|
|
|
|
* USB driver system settings.
|
|
|
|
*/
|
2023-04-18 17:19:04 -03:00
|
|
|
#define STM32_USB_USE_OTG1 TRUE
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_USB_USE_OTG2 TRUE
|
|
|
|
#define STM32_USB_OTG1_IRQ_PRIORITY 14
|
|
|
|
#define STM32_USB_OTG2_IRQ_PRIORITY 14
|
2023-06-02 23:07:08 -03:00
|
|
|
#define STM32_USB_OTG1_RX_FIFO_SIZE 512
|
|
|
|
#define STM32_USB_OTG2_RX_FIFO_SIZE 1024
|
2019-02-03 05:25:22 -04:00
|
|
|
#define STM32_USB_HOST_WAKEUP_DURATION 2
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WDG driver system settings.
|
|
|
|
*/
|
|
|
|
#define STM32_WDG_USE_IWDG FALSE
|
|
|
|
|
|
|
|
#define STM32_EXTI_ENHANCED
|
2019-08-23 21:03:52 -03:00
|
|
|
|
|
|
|
// limit ISR count per byte
|
|
|
|
#define STM32_I2C_ISR_LIMIT 6
|
2021-05-01 00:02:18 -03:00
|
|
|
|
|
|
|
// limit SDMMC clock to 12.5MHz by default. This increases
|
|
|
|
// reliability
|
|
|
|
#ifndef STM32_SDC_MAX_CLOCK
|
|
|
|
#define STM32_SDC_MAX_CLOCK 12500000
|
|
|
|
#endif
|
|
|
|
|
2021-05-29 16:47:40 -03:00
|
|
|
#ifndef STM32_WSPI_USE_QUADSPI1
|
|
|
|
#define STM32_WSPI_USE_QUADSPI1 FALSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if STM32_WSPI_USE_QUADSPI1
|
|
|
|
#define STM32_WSPI_QUADSPI1_MDMA_CHANNEL STM32_MDMA_CHANNEL_ID_ANY
|
|
|
|
#define STM32_WSPI_QUADSPI1_MDMA_PRIORITY 1
|
2023-01-31 18:40:00 -04:00
|
|
|
#define STM32_WSPI_QUADSPI1_PRESCALER_VALUE (STM32_QSPICLK / HAL_QSPI1_CLK)
|
2021-05-29 16:47:40 -03:00
|
|
|
#endif
|
2021-08-24 02:18:31 -03:00
|
|
|
|
2023-04-23 13:28:25 -03:00
|
|
|
#if HAL_XIP_ENABLED
|
|
|
|
#define STM32_QSPI_NO_RESET TRUE
|
|
|
|
#endif
|
|
|
|
|
2021-08-24 02:18:31 -03:00
|
|
|
/*
|
|
|
|
we use a fixed allocation of BDMA streams. We previously dynamically
|
|
|
|
allocated these, but bugs in the chip make that unreliable. This is
|
|
|
|
a tested set of allocations that is known to work on boards that are
|
|
|
|
using all 3 of ADC3, I2C4 and SPI6. They are the only peripherals
|
|
|
|
that can use BDMA, so fixed allocation is possible as we have 8
|
|
|
|
streams and a maximum of 6 needed.
|
|
|
|
|
|
|
|
The layout is chosen to:
|
|
|
|
|
|
|
|
- avoid stream 0, as this doesn't work on ADC3 or SPI6_RX for no known reason
|
|
|
|
- leave a gap between the peripheral types, as we have previously found that we sometimes
|
|
|
|
lost SPI6 BDMA completion interrupts if SPI6 and I2c4 are neighbours
|
|
|
|
*/
|
|
|
|
#define STM32_I2C_I2C4_RX_BDMA_STREAM 1
|
|
|
|
#define STM32_I2C_I2C4_TX_BDMA_STREAM 2
|
|
|
|
#define STM32_SPI_SPI6_RX_BDMA_STREAM 4
|
|
|
|
#define STM32_SPI_SPI6_TX_BDMA_STREAM 5
|
|
|
|
#define STM32_ADC_ADC3_BDMA_STREAM 7
|
|
|
|
|
2023-04-22 01:18:40 -03:00
|
|
|
// disable DMA on I2C by default on H7
|
|
|
|
#ifndef STM32_I2C_USE_DMA
|
|
|
|
#define STM32_I2C_USE_DMA FALSE
|
|
|
|
#endif
|