Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ch-bootloader-jump.patch 3.8KB

Squashed 'tmk_core/' changes from 57d27a8..08ce4c3 08ce4c3 Add update for chibios in README 30cac1d Merge remote-tracking branch 'flabbergast-tmk_keyboard/chibios' f218a38 core: Remove unused warning. Fix tmk_keyboard/#293 3e68807 Chibios: add more guards for transmitting (fix a deadlock bug). cecc807 core: Speed up compilation d01d959 Merge remote-tracking branch 'upstream/master' into chibios 8ff12ae Merge pull request #230 from jerryen/master 3afb83d core: Add note about sudo and git 2525d5d Chibios: Update to new USB API. 2fc5cd6 Merge branch 'master' into chibios 6f5511a core: Fix variable initialize 02a15fa core: Fix variable init and header include 1833ca1 Merge pull request #292 from obones/command_warning bc9dc6f Merge pull request #294 from shayneholmes/fix-debug-message c1b891b Merge pull request #295 from doopai/master 1da837c core: Add macro commands SM(), RM() and CM() d9d5a93 Add support for storing, restoring and clearing modifiers in macros 4f371c0 core: Add dfu-programmer example to doc/build.md ba3792e core: Fix doc/build.md 4b99fed remove SERIAL_SOFT_DEBUG macro 984accb Fix typo in bootmagic debug message 67a7ea1 usb_usb: Fix for keymap editor 2fc9ae4 host_driver is only used if KEYBOARD_LOCK_ENABLE is defined a35cdea Chibios: add 'core/protocol' to the makefiles' search path. 5ed2fd6 Merge remote-tracking branch 'upstream/master' into chibios bbc4851 Do timeout when writing to CONSOLE EP queue. 2450559 Remove an errant comma trailing the KC_ERAS macro alias 8465747 Merge pull request #270 from jeffgran/single-tap-toggle a37339a Merge pull request #271 from jeffgran/default-layer-toggle 8e732f7 core: Update doc/build.md and remove other_projects.md e47dc15 Workaround for compiler warnings when console disabled. 4184c52 Add maple mini code. b555238 core: Fix rules.mk for dfu target 26dacf4 add ACTION_DEFAULT_LAYER_TOGGLE to toggle a default layer on/off 83607d9 enable TAPPING_TOGGLE=1 to work correctly bef3089 Merge branch 'master' into chibios f7a55fd core: Fix debug print of usb_hid 1402f7d core: Add keycode KC_JPY for JIS 8e3a460 Chibios: Remove the wait in the main loop. 7d41746 ChibiOS: prettify/document sleep_led code. 235cdee ChibiOS: Update infinity bootloader code to match updated ChibiOS. 807bf1e Chibios: Add breathing sleep LED on Kinetis MCUs. ba3bf7c ChibiOS: make reset request more CMSISy. bf2ffd4 Add correct chibios/bootloader_jump for infinity KB. f5e03fd Chibios/usb_main: rename a variable for clarity. 63a330c Fix drop key stroke d8f5b06 Fix report size of boot protocol. 38abb50 ChibiOS/STM32: send remote wakeup. 6725650 ChibiOS/kinetis: sending remote wakeup. 69f6e54 Chibios: use WFI in idle. WIP suspend stuff. 02f044b Move chibios/cortex selection to local Makefiles. fa59dfa Rename chibios example keyboard. 5c060de Add eeprom support for chibios/kinetis. efd0044 Move declaration of keymap_config. 7196b24 Make bootmagic.c code portable (_delay_ms -> wait_ms). 37b15b2 Add missing #include to keymap.c. 31316e3 Merge branch 'master' into chibios 166f312 Fix chibios/usb_main GET_REPORT handing. 57ac6c2 Add ARM Teensies bootloader code. 1758086 Move STM32 bootloader address config to separate .h file. 03bb026 Rename some Makefile defines. 76ba6ac NKRO fixes. 06498f8 Update chibios README. db0a4f5 Add basic sleep_led for chibios. c3f930e Move AVR specific sleep_led.c into avr. 4069494 Fix bootloader-jump compiling. 9117f7b Small updates. 269cb85 Implement jump-to-bootloader. 7e81b34 Move chibios to tool. 923a892 Make usb_main more USB_DRIVER #define independent. aa054f0 Add ChibiOS support (USB stack + support files). 1e3e282 Modularity and gcc warnings fixes. 2f60ce0 Add KEYBOARD_LOCK_ENABLE to makefile git-subtree-dir: tmk_core git-subtree-split: 08ce4c3021d2ecd446c5b9a137aded65423d241e
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. diff --git a/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s b/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s
  2. index 51a79bb..42d07bd 100644
  3. --- a/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s
  4. +++ b/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s
  5. @@ -105,6 +105,13 @@
  6. #define CRT0_CALL_DESTRUCTORS TRUE
  7. #endif
  8. +/**
  9. + * @brief Magic number for jumping to bootloader.
  10. + */
  11. +#if !defined(MAGIC_BOOTLOADER_NUMBER) || defined(__DOXYGEN__)
  12. +#define MAGIC_BOOTLOADER_NUMBER 0xDEADBEEF
  13. +#endif
  14. +
  15. /*===========================================================================*/
  16. /* Code section. */
  17. /*===========================================================================*/
  18. @@ -124,6 +131,17 @@
  19. .thumb_func
  20. .global Reset_Handler
  21. Reset_Handler:
  22. +
  23. +#ifdef STM32_BOOTLOADER_ADDRESS
  24. + /* jump to bootloader code */
  25. + ldr r0, =__ram0_end__-4
  26. + ldr r1, =MAGIC_BOOTLOADER_NUMBER
  27. + ldr r2, [r0, #0]
  28. + str r0, [r0, #0] /* erase stored magic */
  29. + cmp r2, r1
  30. + beq Bootloader_Jump
  31. +#endif /* STM32_BOOTLOADER_ADDRESS */
  32. +
  33. /* Interrupts are globally masked initially.*/
  34. cpsid i
  35. @@ -242,6 +260,21 @@ endfiniloop:
  36. ldr r1, =__default_exit
  37. bx r1
  38. +#ifdef STM32_BOOTLOADER_ADDRESS
  39. +/*
  40. + * Jump-to-bootloader function.
  41. + */
  42. +
  43. + .align 2
  44. + .thumb_func
  45. +Bootloader_Jump:
  46. + ldr r0, =STM32_BOOTLOADER_ADDRESS
  47. + ldr r1, [r0, #0]
  48. + mov sp, r1
  49. + ldr r0, [r0, #4]
  50. + bx r0
  51. +#endif /* STM32_BOOTLOADER_ADDRESS */
  52. +
  53. #endif
  54. /** @} */
  55. diff --git a/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s b/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s
  56. index 4812a29..dca9f88 100644
  57. --- a/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s
  58. +++ b/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s
  59. @@ -140,6 +140,13 @@
  60. #define CRT0_CPACR_INIT 0x00F00000
  61. #endif
  62. +/**
  63. + * @brief Magic number for jumping to bootloader.
  64. + */
  65. +#if !defined(MAGIC_BOOTLOADER_NUMBER) || defined(__DOXYGEN__)
  66. +#define MAGIC_BOOTLOADER_NUMBER 0xDEADBEEF
  67. +#endif
  68. +
  69. /*===========================================================================*/
  70. /* Code section. */
  71. /*===========================================================================*/
  72. @@ -164,6 +171,17 @@
  73. .thumb_func
  74. .global Reset_Handler
  75. Reset_Handler:
  76. +
  77. +#ifdef STM32_BOOTLOADER_ADDRESS
  78. + /* jump to bootloader code */
  79. + ldr r0, =__ram0_end__-4
  80. + ldr r1, =MAGIC_BOOTLOADER_NUMBER
  81. + ldr r2, [r0, #0]
  82. + str r0, [r0, #0] /* erase stored magic */
  83. + cmp r2, r1
  84. + beq Bootloader_Jump
  85. +#endif /* STM32_BOOTLOADER_ADDRESS */
  86. +
  87. /* Interrupts are globally masked initially.*/
  88. cpsid i
  89. @@ -305,6 +323,21 @@ endfiniloop:
  90. /* Branching to the defined exit handler.*/
  91. b __default_exit
  92. +#ifdef STM32_BOOTLOADER_ADDRESS
  93. +/*
  94. + * Jump-to-bootloader function.
  95. + */
  96. +
  97. + .align 2
  98. + .thumb_func
  99. +Bootloader_Jump:
  100. + ldr r0, =STM32_BOOTLOADER_ADDRESS
  101. + ldr r1, [r0, #0]
  102. + mov sp, r1
  103. + ldr r0, [r0, #4]
  104. + bx r0
  105. +#endif /* STM32_BOOTLOADER_ADDRESS */
  106. +
  107. #endif /* !defined(__DOXYGEN__) */
  108. /** @} */