aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/chibios/bootloader.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/chibios/bootloader.c')
-rw-r--r--tmk_core/common/chibios/bootloader.c84
1 files changed, 69 insertions, 15 deletions
diff --git a/tmk_core/common/chibios/bootloader.c b/tmk_core/common/chibios/bootloader.c
index 4cf5dae7e..dceeaa6b1 100644
--- a/tmk_core/common/chibios/bootloader.c
+++ b/tmk_core/common/chibios/bootloader.c
@@ -3,28 +3,82 @@
3#include "ch.h" 3#include "ch.h"
4#include "hal.h" 4#include "hal.h"
5 5
6#ifdef STM32_BOOTLOADER_ADDRESS
7/* STM32 */
8
9/* This code should be checked whether it runs correctly on platforms */ 6/* This code should be checked whether it runs correctly on platforms */
10# define SYMVAL(sym) (uint32_t)(((uint8_t *)&(sym)) - ((uint8_t *)0)) 7#define SYMVAL(sym) (uint32_t)(((uint8_t *)&(sym)) - ((uint8_t *)0))
8#define BOOTLOADER_MAGIC 0xDEADBEEF
9#define MAGIC_ADDR (unsigned long *)(SYMVAL(__ram0_end__) - 4)
10
11#ifndef STM32_BOOTLOADER_DUAL_BANK
12# define STM32_BOOTLOADER_DUAL_BANK FALSE
13#endif
14
15#if STM32_BOOTLOADER_DUAL_BANK
16
17// Need pin definitions
18# include "config_common.h"
19
20# ifndef STM32_BOOTLOADER_DUAL_BANK_GPIO
21# error "No STM32_BOOTLOADER_DUAL_BANK_GPIO defined, don't know which pin to toggle"
22# endif
23
24# ifndef STM32_BOOTLOADER_DUAL_BANK_POLARITY
25# define STM32_BOOTLOADER_DUAL_BANK_POLARITY 0
26# endif
27
28# ifndef STM32_BOOTLOADER_DUAL_BANK_DELAY
29# define STM32_BOOTLOADER_DUAL_BANK_DELAY 100000
30# endif
31
32extern uint32_t __ram0_end__;
33
34# define bootdelay(loopcount) \
35 do { \
36 for (int i = 0; i < loopcount; ++i) { \
37 __asm__ volatile("nop\n\t" \
38 "nop\n\t" \
39 "nop\n\t"); \
40 } \
41 } while (0)
42
43void bootloader_jump(void) {
44 *MAGIC_ADDR = BOOTLOADER_MAGIC; // set magic flag => reset handler will jump into boot loader
45 NVIC_SystemReset();
46}
47
48void enter_bootloader_mode_if_requested(void) {
49 unsigned long *check = MAGIC_ADDR;
50 if (*check == BOOTLOADER_MAGIC) {
51 *check = 0;
52
53 // For STM32 MCUs with dual-bank flash, and we're incapable of jumping to the bootloader. The first valid flash
54 // bank is executed unconditionally after a reset, so it doesn't enter DFU unless BOOT0 is high. Instead, we do
55 // it with hardware...in this case, we pull a GPIO high/low depending on the configuration, connects 3.3V to
56 // BOOT0's RC charging circuit, lets it charge the capacitor, and issue a system reset. See the QMK discord
57 // #hardware channel pins for an example circuit.
58 palSetPadMode(PAL_PORT(STM32_BOOTLOADER_DUAL_BANK_GPIO), PAL_PAD(STM32_BOOTLOADER_DUAL_BANK_GPIO), PAL_MODE_OUTPUT_PUSHPULL);
59# if STM32_BOOTLOADER_DUAL_BANK_POLARITY
60 palSetPad(PAL_PORT(STM32_BOOTLOADER_DUAL_BANK_GPIO), PAL_PAD(STM32_BOOTLOADER_DUAL_BANK_GPIO));
61# else
62 palClearPad(PAL_PORT(STM32_BOOTLOADER_DUAL_BANK_GPIO), PAL_PAD(STM32_BOOTLOADER_DUAL_BANK_GPIO));
63# endif
64
65 // Wait for a while for the capacitor to charge
66 bootdelay(STM32_BOOTLOADER_DUAL_BANK_DELAY);
67
68 // Issue a system reset to get the ROM bootloader to execute, with BOOT0 high
69 NVIC_SystemReset();
70 }
71}
72
73#elif defined(STM32_BOOTLOADER_ADDRESS) // STM32_BOOTLOADER_DUAL_BANK
74
11extern uint32_t __ram0_end__; 75extern uint32_t __ram0_end__;
12# define BOOTLOADER_MAGIC 0xDEADBEEF
13# define MAGIC_ADDR (unsigned long *)(SYMVAL(__ram0_end__) - 4)
14 76
15/** \brief Jump to the bootloader
16 *
17 * FIXME: needs doc
18 */
19void bootloader_jump(void) { 77void bootloader_jump(void) {
20 *MAGIC_ADDR = BOOTLOADER_MAGIC; // set magic flag => reset handler will jump into boot loader 78 *MAGIC_ADDR = BOOTLOADER_MAGIC; // set magic flag => reset handler will jump into boot loader
21 NVIC_SystemReset(); 79 NVIC_SystemReset();
22} 80}
23 81
24/** \brief Enter bootloader mode if requested
25 *
26 * FIXME: needs doc
27 */
28void enter_bootloader_mode_if_requested(void) { 82void enter_bootloader_mode_if_requested(void) {
29 unsigned long *check = MAGIC_ADDR; 83 unsigned long *check = MAGIC_ADDR;
30 if (*check == BOOTLOADER_MAGIC) { 84 if (*check == BOOTLOADER_MAGIC) {
@@ -41,7 +95,7 @@ void enter_bootloader_mode_if_requested(void) {
41 } 95 }
42} 96}
43 97
44#elif defined(KL2x) || defined(K20x) /* STM32_BOOTLOADER_ADDRESS */ 98#elif defined(KL2x) || defined(K20x) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS
45/* Kinetis */ 99/* Kinetis */
46 100
47# if defined(KIIBOHD_BOOTLOADER) 101# if defined(KIIBOHD_BOOTLOADER)