bootloader.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. #include <stdint.h>
  2. #include <stdbool.h>
  3. #include <avr/io.h>
  4. #include <avr/eeprom.h>
  5. #include <avr/interrupt.h>
  6. #include <avr/wdt.h>
  7. #include <util/delay.h>
  8. #include "bootloader.h"
  9. #include <avr/boot.h>
  10. #ifdef PROTOCOL_LUFA
  11. #include <LUFA/Drivers/USB/USB.h>
  12. #endif
  13. /* Bootloader Size in *bytes*
  14. *
  15. * AVR Boot section size are defined by setting BOOTSZ fuse in fact. Consult with your MCU datasheet.
  16. * Note that 'Word'(2 bytes) size and address are used in datasheet while TMK uses 'Byte'.
  17. *
  18. *
  19. * Size of Bootloaders in bytes:
  20. * Atmel DFU loader(ATmega32U4) 4096
  21. * Atmel DFU loader(AT90USB128) 8192
  22. * LUFA bootloader(ATmega32U4) 4096
  23. * Arduino Caterina(ATmega32U4) 4096
  24. * USBaspLoader(ATmega***) 2048
  25. * Teensy halfKay(ATmega32U4) 512
  26. * Teensy++ halfKay(AT90USB128) 1024
  27. *
  28. *
  29. * AVR Boot section is located at the end of Flash memory like the followings.
  30. *
  31. *
  32. * byte Atmel/LUFA(ATMega32u4) byte Atmel(AT90SUB128)
  33. * 0x0000 +---------------+ 0x00000 +---------------+
  34. * | | | |
  35. * | | | |
  36. * | Application | | Application |
  37. * | | | |
  38. * = = = =
  39. * | | 32KB-4KB | | 128KB-8KB
  40. * 0x7000 +---------------+ 0x1E000 +---------------+
  41. * | Bootloader | 4KB | Bootloader | 8KB
  42. * 0x7FFF +---------------+ 0x1FFFF +---------------+
  43. *
  44. *
  45. * byte Teensy(ATMega32u4) byte Teensy++(AT90SUB128)
  46. * 0x0000 +---------------+ 0x00000 +---------------+
  47. * | | | |
  48. * | | | |
  49. * | Application | | Application |
  50. * | | | |
  51. * = = = =
  52. * | | 32KB-512B | | 128KB-1KB
  53. * 0x7E00 +---------------+ 0x1FC00 +---------------+
  54. * | Bootloader | 512B | Bootloader | 1KB
  55. * 0x7FFF +---------------+ 0x1FFFF +---------------+
  56. */
  57. #define FLASH_SIZE (FLASHEND + 1L)
  58. #if !defined(BOOTLOADER_SIZE)
  59. uint16_t bootloader_start;
  60. #endif
  61. #define BOOT_SIZE_256 0b110
  62. #define BOOT_SIZE_512 0b100
  63. #define BOOT_SIZE_1024 0b010
  64. #define BOOT_SIZE_2048 0b000
  65. /*
  66. * Entering the Bootloader via Software
  67. * http://www.fourwalledcubicle.com/files/LUFA/Doc/120730/html/_page__software_bootloader_start.html
  68. */
  69. #define BOOTLOADER_RESET_KEY 0xB007B007
  70. uint32_t reset_key __attribute__ ((section (".noinit")));
  71. /* initialize MCU status by watchdog reset */
  72. void bootloader_jump(void) {
  73. #if !defined(BOOTLOADER_SIZE)
  74. uint8_t high_fuse = boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS);
  75. if (high_fuse & BOOT_SIZE_256) {
  76. bootloader_start = (FLASH_SIZE - 512) >> 1;
  77. } else if (high_fuse & BOOT_SIZE_512) {
  78. bootloader_start = (FLASH_SIZE - 1024) >> 1;
  79. } else if (high_fuse & BOOT_SIZE_1024) {
  80. bootloader_start = (FLASH_SIZE - 2048) >> 1;
  81. } else {
  82. bootloader_start = (FLASH_SIZE - 4096) >> 1;
  83. }
  84. #endif
  85. // Something like this might work, but it compiled larger than the block above
  86. // bootloader_start = FLASH_SIZE - (256 << (~high_fuse & 0b110 >> 1));
  87. #if defined(BOOTLOADER_HALFKAY)
  88. // http://www.pjrc.com/teensy/jump_to_bootloader.html
  89. cli();
  90. // disable watchdog, if enabled (it's not)
  91. // disable all peripherals
  92. // a shutdown call might make sense here
  93. UDCON = 1;
  94. USBCON = (1<<FRZCLK); // disable USB
  95. UCSR1B = 0;
  96. _delay_ms(5);
  97. #if defined(__AVR_AT90USB162__) // Teensy 1.0
  98. EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0;
  99. TIMSK0 = 0; TIMSK1 = 0; UCSR1B = 0;
  100. DDRB = 0; DDRC = 0; DDRD = 0;
  101. PORTB = 0; PORTC = 0; PORTD = 0;
  102. asm volatile("jmp 0x3E00");
  103. #elif defined(__AVR_ATmega32U4__) // Teensy 2.0
  104. EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0; ADCSRA = 0;
  105. TIMSK0 = 0; TIMSK1 = 0; TIMSK3 = 0; TIMSK4 = 0; UCSR1B = 0; TWCR = 0;
  106. DDRB = 0; DDRC = 0; DDRD = 0; DDRE = 0; DDRF = 0; TWCR = 0;
  107. PORTB = 0; PORTC = 0; PORTD = 0; PORTE = 0; PORTF = 0;
  108. asm volatile("jmp 0x7E00");
  109. #elif defined(__AVR_AT90USB646__) // Teensy++ 1.0
  110. EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0; ADCSRA = 0;
  111. TIMSK0 = 0; TIMSK1 = 0; TIMSK2 = 0; TIMSK3 = 0; UCSR1B = 0; TWCR = 0;
  112. DDRA = 0; DDRB = 0; DDRC = 0; DDRD = 0; DDRE = 0; DDRF = 0;
  113. PORTA = 0; PORTB = 0; PORTC = 0; PORTD = 0; PORTE = 0; PORTF = 0;
  114. asm volatile("jmp 0xFC00");
  115. #elif defined(__AVR_AT90USB1286__) // Teensy++ 2.0
  116. EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0; ADCSRA = 0;
  117. TIMSK0 = 0; TIMSK1 = 0; TIMSK2 = 0; TIMSK3 = 0; UCSR1B = 0; TWCR = 0;
  118. DDRA = 0; DDRB = 0; DDRC = 0; DDRD = 0; DDRE = 0; DDRF = 0;
  119. PORTA = 0; PORTB = 0; PORTC = 0; PORTD = 0; PORTE = 0; PORTF = 0;
  120. asm volatile("jmp 0x1FC00");
  121. #endif
  122. #elif defined(BOOTLOADER_CATERINA)
  123. // this block may be optional
  124. // TODO: figure it out
  125. uint16_t *const bootKeyPtr = (uint16_t *)0x0800;
  126. // Value used by Caterina bootloader use to determine whether to run the
  127. // sketch or the bootloader programmer.
  128. uint16_t bootKey = 0x7777;
  129. *bootKeyPtr = bootKey;
  130. // setup watchdog timeout
  131. wdt_enable(WDTO_60MS);
  132. while(1) {} // wait for watchdog timer to trigger
  133. #else // Assume remaining boards are DFU, even if the flag isn't set
  134. #ifndef __AVR_ATmega32A__ // no USB - maybe BOOTLOADER_BOOTLOADHID instead though?
  135. UDCON = 1;
  136. USBCON = (1<<FRZCLK); // disable USB
  137. UCSR1B = 0;
  138. _delay_ms(5); // 5 seems to work fine
  139. #endif
  140. #ifdef BOOTLOADER_BOOTLOADHID
  141. // force bootloadHID to stay in bootloader mode, so that it waits
  142. // for a new firmware to be flashed
  143. eeprom_write_byte((uint8_t *)1, 0x00);
  144. #endif
  145. // watchdog reset
  146. reset_key = BOOTLOADER_RESET_KEY;
  147. wdt_enable(WDTO_250MS);
  148. for (;;);
  149. #endif
  150. }
  151. #ifdef __AVR_ATmega32A__
  152. // MCUSR is actually called MCUCSR in ATmega32A
  153. #define MCUSR MCUCSR
  154. #endif
  155. /* this runs before main() */
  156. void bootloader_jump_after_watchdog_reset(void) __attribute__ ((used, naked, section (".init3")));
  157. void bootloader_jump_after_watchdog_reset(void)
  158. {
  159. #ifndef BOOTLOADER_HALFKAY
  160. if ((MCUSR & (1<<WDRF)) && reset_key == BOOTLOADER_RESET_KEY) {
  161. reset_key = 0;
  162. // My custom USBasploader requires this to come up.
  163. MCUSR = 0;
  164. // Seems like Teensy halfkay loader requires clearing WDRF and disabling watchdog.
  165. MCUSR &= ~(1<<WDRF);
  166. wdt_disable();
  167. // This is compled into 'icall', address should be in word unit, not byte.
  168. #ifdef BOOTLOADER_SIZE
  169. ((void (*)(void))( (FLASH_SIZE - BOOTLOADER_SIZE) >> 1))();
  170. #else
  171. asm("ijmp" :: "z" (bootloader_start));
  172. #endif
  173. }
  174. #endif
  175. }
  176. #if 0
  177. /*
  178. * USBaspLoader - I'm not sure if this is used at all in any projects
  179. * would love to support it if it is -Jack
  180. */
  181. #if defined(__AVR_ATmega168__) || defined(__AVR_ATmega168P__) || defined(__AVR_ATmega328P__)
  182. // This makes custom USBasploader come up.
  183. MCUSR = 0;
  184. // initialize ports
  185. PORTB = 0; PORTC= 0; PORTD = 0;
  186. DDRB = 0; DDRC= 0; DDRD = 0;
  187. // disable interrupts
  188. EIMSK = 0; EECR = 0; SPCR = 0;
  189. ACSR = 0; SPMCSR = 0; WDTCSR = 0; PCICR = 0;
  190. TIMSK0 = 0; TIMSK1 = 0; TIMSK2 = 0;
  191. ADCSRA = 0; TWCR = 0; UCSR0B = 0;
  192. #endif
  193. // This is compled into 'icall', address should be in word unit, not byte.
  194. ((void (*)(void))(BOOTLOADER_START/2))();
  195. }
  196. #endif