2 * This file is part of Cleanflight.
4 * Cleanflight is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * Cleanflight is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
25 #include "drivers/accgyro/accgyro_mpu.h"
26 #include "drivers/exti.h"
27 #include "drivers/nvic.h"
28 #include "drivers/persistent.h"
29 #include "drivers/system.h"
31 void SystemClock_Config(void);
33 LOCAL_UNUSED_FUNCTION
static void configureMasterClockOutputs(void)
35 // Initialize pins for MCO1 and MCO2 for clock testing/verification
37 GPIO_InitTypeDef GPIO_InitStruct
;
39 GPIO_InitStruct
.Pin
= GPIO_PIN_8
;
40 GPIO_InitStruct
.Mode
= GPIO_MODE_AF_PP
;
41 GPIO_InitStruct
.Pull
= GPIO_NOPULL
;
42 GPIO_InitStruct
.Speed
= GPIO_SPEED_FREQ_VERY_HIGH
;
43 GPIO_InitStruct
.Alternate
= GPIO_AF0_MCO
;
45 HAL_GPIO_Init(GPIOA
, &GPIO_InitStruct
);
47 GPIO_InitStruct
.Pin
= GPIO_PIN_9
;
48 GPIO_InitStruct
.Mode
= GPIO_MODE_AF_PP
;
49 GPIO_InitStruct
.Pull
= GPIO_NOPULL
;
50 GPIO_InitStruct
.Speed
= GPIO_SPEED_FREQ_VERY_HIGH
;
51 GPIO_InitStruct
.Alternate
= GPIO_AF0_MCO
;
53 HAL_GPIO_Init(GPIOC
, &GPIO_InitStruct
);
56 bool isMPUSoftReset(void)
58 if (cachedRccCsrValue
& RCC_RSR_SFTRSTF
)
64 #if defined(USE_FLASH_MEMORY_MAPPED)
67 * Memory mapped targets use a bootloader which enables memory mapped mode before running the firmware directly from external flash.
68 * Code running from external flash, i.e. most of the firmware, must not disable peripherals or reconfigure pins used by the CPU to access the flash chip.
69 * Refer to reference manuals and linker scripts for addresses of memory mapped regions.
70 * STM32H830 - RM0468 "Table 6. Memory map and default device memory area attributes"
72 * If the config is also stored on the same flash chip that code is running from then VERY special care must be taken when detecting the flash chip
73 * and when writing an updated config back to the flash.
76 static bool memoryMappedModeEnabledOnBoot
= false;
78 bool isMemoryMappedModeEnabledOnBoot(void)
80 return memoryMappedModeEnabledOnBoot
;
83 void memoryMappedModeInit(void)
85 #if defined(STM32H730xx) || defined(STM32H723xx)
86 // Smaller MCU packages have ONE OCTOSPI interface which supports memory mapped mode.
87 memoryMappedModeEnabledOnBoot
= READ_BIT(OCTOSPI1
->CR
, OCTOSPI_CR_FMODE
) == OCTOSPI_CR_FMODE
;
89 #error No Memory Mapped implementation on current MCU.
93 bool isMemoryMappedModeEnabledOnBoot(void)
101 // Configure NVIC preempt/priority groups
102 HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITY_GROUPING
);
104 // cache RCC->RSR value to use it in isMPUSoftReset() and others
105 cachedRccCsrValue
= RCC
->RSR
;
107 /* Accounts for OP Bootloader, set the Vector Table base address as specified in .ld file */
108 //extern void *isr_vector_table_base;
109 //NVIC_SetVectorTable((uint32_t)&isr_vector_table_base, 0x0);
110 //__HAL_RCC_USB_OTG_FS_CLK_DISABLE;
114 #if defined(STM32H743xx) || defined(STM32H750xx)
115 __HAL_RCC_D2SRAM1_CLK_ENABLE();
116 __HAL_RCC_D2SRAM2_CLK_ENABLE();
117 __HAL_RCC_D2SRAM3_CLK_ENABLE();
118 #elif defined(STM32H7A3xx) || defined(STM32H7A3xxQ)
119 __HAL_RCC_AHBSRAM1_CLK_ENABLE();
120 __HAL_RCC_AHBSRAM2_CLK_ENABLE();
121 #elif defined(STM32H723xx) || defined(STM32H725xx) || defined(STM32H730xx)
122 __HAL_RCC_D2SRAM1_CLK_ENABLE();
123 __HAL_RCC_D2SRAM2_CLK_ENABLE();
128 #ifdef USE_MCO_OUTPUTS
129 configureMasterClockOutputs();
132 // Init cycle counter
135 // SysTick is updated whenever HAL_RCC_ClockConfig is called.
138 void systemReset(void)
147 void systemResetWithoutDisablingCaches(void)
153 void systemResetToBootloader(bootloaderRequestType_e requestType
)
155 switch (requestType
) {
156 #if defined(USE_FLASH_BOOT_LOADER)
157 case BOOTLOADER_REQUEST_FLASH
:
158 persistentObjectWrite(PERSISTENT_OBJECT_RESET_REASON
, RESET_BOOTLOADER_REQUEST_FLASH
);
162 case BOOTLOADER_REQUEST_ROM
:
164 persistentObjectWrite(PERSISTENT_OBJECT_RESET_REASON
, RESET_BOOTLOADER_REQUEST_ROM
);
173 #if defined(STM32H743xx) || defined(STM32H750xx) || defined(STM32H723xx) || defined(STM32H725xx) || defined(STM32H730xx)
174 #define SYSMEMBOOT_VECTOR_TABLE ((uint32_t *)0x1ff09800)
175 #elif defined(STM32H7A3xx) || defined(STM32H7A3xxQ)
176 #define SYSMEMBOOT_VECTOR_TABLE ((uint32_t *)0x1ff0a000)
181 typedef void *(*bootJumpPtr
)(void);
183 static void systemJumpToBootloader(void)
185 __SYSCFG_CLK_ENABLE();
187 uint32_t bootStack
= SYSMEMBOOT_VECTOR_TABLE
[0];
189 bootJumpPtr SysMemBootJump
= (bootJumpPtr
)SYSMEMBOOT_VECTOR_TABLE
[1];
191 __set_MSP(bootStack
); //Set the main stack pointer to its default values
198 void systemProcessResetReason(void)
200 uint32_t bootloaderRequest
= persistentObjectRead(PERSISTENT_OBJECT_RESET_REASON
);
202 switch (bootloaderRequest
) {
203 #if defined(USE_FLASH_BOOT_LOADER)
204 case RESET_BOOTLOADER_REQUEST_FLASH
:
206 case RESET_BOOTLOADER_REQUEST_ROM
:
207 persistentObjectWrite(PERSISTENT_OBJECT_RESET_REASON
, RESET_BOOTLOADER_POST
);
208 systemJumpToBootloader();
213 persistentObjectWrite(PERSISTENT_OBJECT_RESET_REASON
, RESET_NONE
);
216 case RESET_BOOTLOADER_POST
:
217 // Boot loader activity magically prevents SysTick from interrupting.
218 // Issue a soft reset to prevent the condition.
219 persistentObjectWrite(PERSISTENT_OBJECT_RESET_REASON
, RESET_FORCED
);
220 systemResetWithoutDisablingCaches(); // observed that disabling dcache after cold boot with BOOT pin high causes segfault.
224 case RESET_MSC_REQUEST
: