]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
Add correct chibios/bootloader_jump for infinity KB.
authorflabbergast <s3+flabbergast@sdfeu.org>
Sat, 17 Oct 2015 17:20:12 +0000 (18:20 +0100)
committerflabbergast <s3+flabbergast@sdfeu.org>
Sat, 17 Oct 2015 17:20:12 +0000 (18:20 +0100)
tmk_core/common/chibios/bootloader.c

index cac5220996ef6b35c629f774ae6051e3566aa5d2..fa9511282c29e49326a0e6f281bdb08b9946ffef 100644 (file)
@@ -23,10 +23,24 @@ void bootloader_jump(void) {
 #elif defined(KL2x) || defined(K20x) /* STM32_BOOTLOADER_ADDRESS */
 /* Kinetis */
 
+#if defined(KIIBOHD_BOOTLOADER)
+/* Kiibohd Bootloader (MCHCK and Infinity KB) */
+#define SCB_AIRCR   (*(volatile uint32_t *)0xE000ED0C) // Application Interrupt and Reset Control
+#define VBAT        (*(volatile uint8_t  *)0x4003E000) // VBAT register file (32 bytes)
+const uint8_t sys_reset_to_loader_magic[] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff";
+void bootloader_jump(void) {
+  __builtin_memcpy((void *)&VBAT, (const void *)sys_reset_to_loader_magic, sizeof(sys_reset_to_loader_magic));
+  // request reset
+  SCB_AIRCR = 0x05FA0004;
+}
+
+#else /* defined(KIIBOHD_BOOTLOADER) */
+/* Default for Kinetis - expecting an ARM Teensy */
 void bootloader_jump(void) {
        chThdSleepMilliseconds(100);
        __BKPT(0);
 }
+#endif /* defined(KIIBOHD_BOOTLOADER) */
 
 #else /* neither STM32 nor KINETIS */
 void bootloader_jump(void) {}