Kiibohd Controller
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

mk20dx.c 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2013 PJRC.COM, LLC.
  4. * Modifications by Jacob Alexander 2014-2015
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sublicense, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * 1. The above copyright notice and this permission notice shall be
  15. * included in all copies or substantial portions of the Software.
  16. *
  17. * 2. If the Software is incorporated into a build system that allows
  18. * selection among a list of target devices, then similar target
  19. * devices manufactured by PJRC.COM must be included in the list of
  20. * target devices and selectable in the same manner.
  21. *
  22. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  23. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  25. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  26. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  28. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  29. * SOFTWARE.
  30. */
  31. // ----- Includes -----
  32. // Debug Includes
  33. #if defined(_bootloader_)
  34. #include <inttypes.h>
  35. #include <debug.h>
  36. #else
  37. #include <print.h>
  38. #endif
  39. // Local Includes
  40. #include "mk20dx.h"
  41. // ----- Variables -----
  42. extern unsigned long _stext;
  43. extern unsigned long _etext;
  44. extern unsigned long _sdata;
  45. extern unsigned long _edata;
  46. extern unsigned long _sbss;
  47. extern unsigned long _ebss;
  48. extern unsigned long _estack;
  49. const uint8_t sys_reset_to_loader_magic[22] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff";
  50. // ----- Function Declarations -----
  51. extern int main();
  52. void ResetHandler();
  53. // ----- Interrupts -----
  54. // NVIC - Default ISR
  55. void fault_isr()
  56. {
  57. print("Fault!");
  58. while ( 1 )
  59. {
  60. // keep polling some communication while in fault
  61. // mode, so we don't completely die.
  62. if ( SIM_SCGC4 & SIM_SCGC4_USBOTG ) usb_isr();
  63. if ( SIM_SCGC4 & SIM_SCGC4_UART0 ) uart0_status_isr();
  64. if ( SIM_SCGC4 & SIM_SCGC4_UART1 ) uart1_status_isr();
  65. if ( SIM_SCGC4 & SIM_SCGC4_UART2 ) uart2_status_isr();
  66. }
  67. }
  68. void unused_isr()
  69. {
  70. fault_isr();
  71. }
  72. // NVIC - SysTick ISR
  73. extern volatile uint32_t systick_millis_count;
  74. void systick_default_isr()
  75. {
  76. systick_millis_count++;
  77. }
  78. // NVIC - Non-Maskable Interrupt ISR
  79. void nmi_default_isr()
  80. {
  81. print("NMI!");
  82. }
  83. // NVIC - Hard Fault ISR
  84. void hard_fault_default_isr()
  85. {
  86. print("Hard Fault!");
  87. }
  88. // NVIC - Memory Manager Fault ISR
  89. void memmanage_fault_default_isr()
  90. {
  91. print("Memory Manager Fault!");
  92. }
  93. // NVIC - Bus Fault ISR
  94. void bus_fault_default_isr()
  95. {
  96. print("Bus Fault!");
  97. }
  98. // NVIC - Usage Fault ISR
  99. void usage_fault_default_isr()
  100. {
  101. print("Usage Fault!");
  102. }
  103. // NVIC - Default ISR/Vector Linking
  104. void nmi_isr() __attribute__ ((weak, alias("nmi_default_isr")));
  105. void hard_fault_isr() __attribute__ ((weak, alias("hard_fault_default_isr")));
  106. void memmanage_fault_isr() __attribute__ ((weak, alias("memmanage_fault_default_isr")));
  107. void bus_fault_isr() __attribute__ ((weak, alias("bus_fault_default_isr")));
  108. void usage_fault_isr() __attribute__ ((weak, alias("usage_fault_default_isr")));
  109. void svcall_isr() __attribute__ ((weak, alias("unused_isr")));
  110. void debugmonitor_isr() __attribute__ ((weak, alias("unused_isr")));
  111. void pendablesrvreq_isr() __attribute__ ((weak, alias("unused_isr")));
  112. void systick_isr() __attribute__ ((weak, alias("systick_default_isr")));
  113. void dma_ch0_isr() __attribute__ ((weak, alias("unused_isr")));
  114. void dma_ch1_isr() __attribute__ ((weak, alias("unused_isr")));
  115. void dma_ch2_isr() __attribute__ ((weak, alias("unused_isr")));
  116. void dma_ch3_isr() __attribute__ ((weak, alias("unused_isr")));
  117. void dma_ch4_isr() __attribute__ ((weak, alias("unused_isr")));
  118. void dma_ch5_isr() __attribute__ ((weak, alias("unused_isr")));
  119. void dma_ch6_isr() __attribute__ ((weak, alias("unused_isr")));
  120. void dma_ch7_isr() __attribute__ ((weak, alias("unused_isr")));
  121. void dma_ch8_isr() __attribute__ ((weak, alias("unused_isr")));
  122. void dma_ch9_isr() __attribute__ ((weak, alias("unused_isr")));
  123. void dma_ch10_isr() __attribute__ ((weak, alias("unused_isr")));
  124. void dma_ch11_isr() __attribute__ ((weak, alias("unused_isr")));
  125. void dma_ch12_isr() __attribute__ ((weak, alias("unused_isr")));
  126. void dma_ch13_isr() __attribute__ ((weak, alias("unused_isr")));
  127. void dma_ch14_isr() __attribute__ ((weak, alias("unused_isr")));
  128. void dma_ch15_isr() __attribute__ ((weak, alias("unused_isr")));
  129. void dma_error_isr() __attribute__ ((weak, alias("unused_isr")));
  130. void mcm_isr() __attribute__ ((weak, alias("unused_isr")));
  131. void flash_cmd_isr() __attribute__ ((weak, alias("unused_isr")));
  132. void flash_error_isr() __attribute__ ((weak, alias("unused_isr")));
  133. void low_voltage_isr() __attribute__ ((weak, alias("unused_isr")));
  134. void wakeup_isr() __attribute__ ((weak, alias("unused_isr")));
  135. void watchdog_isr() __attribute__ ((weak, alias("unused_isr")));
  136. void i2c0_isr() __attribute__ ((weak, alias("unused_isr")));
  137. void i2c1_isr() __attribute__ ((weak, alias("unused_isr")));
  138. void i2c2_isr() __attribute__ ((weak, alias("unused_isr")));
  139. void spi0_isr() __attribute__ ((weak, alias("unused_isr")));
  140. void spi1_isr() __attribute__ ((weak, alias("unused_isr")));
  141. void spi2_isr() __attribute__ ((weak, alias("unused_isr")));
  142. void sdhc_isr() __attribute__ ((weak, alias("unused_isr")));
  143. void can0_message_isr() __attribute__ ((weak, alias("unused_isr")));
  144. void can0_bus_off_isr() __attribute__ ((weak, alias("unused_isr")));
  145. void can0_error_isr() __attribute__ ((weak, alias("unused_isr")));
  146. void can0_tx_warn_isr() __attribute__ ((weak, alias("unused_isr")));
  147. void can0_rx_warn_isr() __attribute__ ((weak, alias("unused_isr")));
  148. void can0_wakeup_isr() __attribute__ ((weak, alias("unused_isr")));
  149. void i2s0_tx_isr() __attribute__ ((weak, alias("unused_isr")));
  150. void i2s0_rx_isr() __attribute__ ((weak, alias("unused_isr")));
  151. void uart0_lon_isr() __attribute__ ((weak, alias("unused_isr")));
  152. void uart0_status_isr() __attribute__ ((weak, alias("unused_isr")));
  153. void uart0_error_isr() __attribute__ ((weak, alias("unused_isr")));
  154. void uart1_status_isr() __attribute__ ((weak, alias("unused_isr")));
  155. void uart1_error_isr() __attribute__ ((weak, alias("unused_isr")));
  156. void uart2_status_isr() __attribute__ ((weak, alias("unused_isr")));
  157. void uart2_error_isr() __attribute__ ((weak, alias("unused_isr")));
  158. void uart3_status_isr() __attribute__ ((weak, alias("unused_isr")));
  159. void uart3_error_isr() __attribute__ ((weak, alias("unused_isr")));
  160. void uart4_status_isr() __attribute__ ((weak, alias("unused_isr")));
  161. void uart4_error_isr() __attribute__ ((weak, alias("unused_isr")));
  162. void uart5_status_isr() __attribute__ ((weak, alias("unused_isr")));
  163. void uart5_error_isr() __attribute__ ((weak, alias("unused_isr")));
  164. void adc0_isr() __attribute__ ((weak, alias("unused_isr")));
  165. void adc1_isr() __attribute__ ((weak, alias("unused_isr")));
  166. void cmp0_isr() __attribute__ ((weak, alias("unused_isr")));
  167. void cmp1_isr() __attribute__ ((weak, alias("unused_isr")));
  168. void cmp2_isr() __attribute__ ((weak, alias("unused_isr")));
  169. void ftm0_isr() __attribute__ ((weak, alias("unused_isr")));
  170. void ftm1_isr() __attribute__ ((weak, alias("unused_isr")));
  171. void ftm2_isr() __attribute__ ((weak, alias("unused_isr")));
  172. void ftm3_isr() __attribute__ ((weak, alias("unused_isr")));
  173. void cmt_isr() __attribute__ ((weak, alias("unused_isr")));
  174. void rtc_alarm_isr() __attribute__ ((weak, alias("unused_isr")));
  175. void rtc_seconds_isr() __attribute__ ((weak, alias("unused_isr")));
  176. void pit0_isr() __attribute__ ((weak, alias("unused_isr")));
  177. void pit1_isr() __attribute__ ((weak, alias("unused_isr")));
  178. void pit2_isr() __attribute__ ((weak, alias("unused_isr")));
  179. void pit3_isr() __attribute__ ((weak, alias("unused_isr")));
  180. void pdb_isr() __attribute__ ((weak, alias("unused_isr")));
  181. void usb_isr() __attribute__ ((weak, alias("unused_isr")));
  182. void usb_charge_isr() __attribute__ ((weak, alias("unused_isr")));
  183. void dac0_isr() __attribute__ ((weak, alias("unused_isr")));
  184. void dac1_isr() __attribute__ ((weak, alias("unused_isr")));
  185. void tsi0_isr() __attribute__ ((weak, alias("unused_isr")));
  186. void mcg_isr() __attribute__ ((weak, alias("unused_isr")));
  187. void lptmr_isr() __attribute__ ((weak, alias("unused_isr")));
  188. void porta_isr() __attribute__ ((weak, alias("unused_isr")));
  189. void portb_isr() __attribute__ ((weak, alias("unused_isr")));
  190. void portc_isr() __attribute__ ((weak, alias("unused_isr")));
  191. void portd_isr() __attribute__ ((weak, alias("unused_isr")));
  192. void porte_isr() __attribute__ ((weak, alias("unused_isr")));
  193. void software_isr() __attribute__ ((weak, alias("unused_isr")));
  194. // NVIC - Interrupt Vector Table
  195. __attribute__ ((section(".vectors"), used))
  196. void (* const gVectors[])() =
  197. {
  198. (void (*)(void))((unsigned long)&_estack), // 0 ARM: Initial Stack Pointer
  199. ResetHandler, // 1 ARM: Initial Program Counter
  200. nmi_isr, // 2 ARM: Non-maskable Interrupt (NMI)
  201. hard_fault_isr, // 3 ARM: Hard Fault
  202. memmanage_fault_isr, // 4 ARM: MemManage Fault
  203. bus_fault_isr, // 5 ARM: Bus Fault
  204. usage_fault_isr, // 6 ARM: Usage Fault
  205. fault_isr, // 7 --
  206. fault_isr, // 8 --
  207. fault_isr, // 9 --
  208. fault_isr, // 10 --
  209. svcall_isr, // 11 ARM: Supervisor call (SVCall)
  210. debugmonitor_isr, // 12 ARM: Debug Monitor
  211. fault_isr, // 13 --
  212. pendablesrvreq_isr, // 14 ARM: Pendable req serv(PendableSrvReq)
  213. systick_isr, // 15 ARM: System tick timer (SysTick)
  214. #if defined(_mk20dx128_) || defined(_mk20dx128vlf5_)
  215. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  216. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  217. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  218. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  219. dma_error_isr, // 20 DMA error interrupt channel
  220. unused_isr, // 21 DMA --
  221. flash_cmd_isr, // 22 Flash Memory Command complete
  222. flash_error_isr, // 23 Flash Read collision
  223. low_voltage_isr, // 24 Low-voltage detect/warning
  224. wakeup_isr, // 25 Low Leakage Wakeup
  225. watchdog_isr, // 26 Both EWM and WDOG interrupt
  226. i2c0_isr, // 27 I2C0
  227. spi0_isr, // 28 SPI0
  228. i2s0_tx_isr, // 29 I2S0 Transmit
  229. i2s0_rx_isr, // 30 I2S0 Receive
  230. uart0_lon_isr, // 31 UART0 CEA709.1-B (LON) status
  231. uart0_status_isr, // 32 UART0 status
  232. uart0_error_isr, // 33 UART0 error
  233. uart1_status_isr, // 34 UART1 status
  234. uart1_error_isr, // 35 UART1 error
  235. uart2_status_isr, // 36 UART2 status
  236. uart2_error_isr, // 37 UART2 error
  237. adc0_isr, // 38 ADC0
  238. cmp0_isr, // 39 CMP0
  239. cmp1_isr, // 40 CMP1
  240. ftm0_isr, // 41 FTM0
  241. ftm1_isr, // 42 FTM1
  242. cmt_isr, // 43 CMT
  243. rtc_alarm_isr, // 44 RTC Alarm interrupt
  244. rtc_seconds_isr, // 45 RTC Seconds interrupt
  245. pit0_isr, // 46 PIT Channel 0
  246. pit1_isr, // 47 PIT Channel 1
  247. pit2_isr, // 48 PIT Channel 2
  248. pit3_isr, // 49 PIT Channel 3
  249. pdb_isr, // 50 PDB Programmable Delay Block
  250. usb_isr, // 51 USB OTG
  251. usb_charge_isr, // 52 USB Charger Detect
  252. tsi0_isr, // 53 TSI0
  253. mcg_isr, // 54 MCG
  254. lptmr_isr, // 55 Low Power Timer
  255. porta_isr, // 56 Pin detect (Port A)
  256. portb_isr, // 57 Pin detect (Port B)
  257. portc_isr, // 58 Pin detect (Port C)
  258. portd_isr, // 59 Pin detect (Port D)
  259. porte_isr, // 60 Pin detect (Port E)
  260. software_isr, // 61 Software interrupt
  261. #elif defined(_mk20dx256_) || defined(_mk20dx256vlh7_)
  262. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  263. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  264. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  265. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  266. dma_ch4_isr, // 20 DMA channel 4 transfer complete
  267. dma_ch5_isr, // 21 DMA channel 5 transfer complete
  268. dma_ch6_isr, // 22 DMA channel 6 transfer complete
  269. dma_ch7_isr, // 23 DMA channel 7 transfer complete
  270. dma_ch8_isr, // 24 DMA channel 8 transfer complete
  271. dma_ch9_isr, // 25 DMA channel 9 transfer complete
  272. dma_ch10_isr, // 26 DMA channel 10 transfer complete
  273. dma_ch11_isr, // 27 DMA channel 10 transfer complete
  274. dma_ch12_isr, // 28 DMA channel 10 transfer complete
  275. dma_ch13_isr, // 29 DMA channel 10 transfer complete
  276. dma_ch14_isr, // 30 DMA channel 10 transfer complete
  277. dma_ch15_isr, // 31 DMA channel 10 transfer complete
  278. dma_error_isr, // 32 DMA error interrupt channel
  279. unused_isr, // 33 --
  280. flash_cmd_isr, // 34 Flash Memory Command complete
  281. flash_error_isr, // 35 Flash Read collision
  282. low_voltage_isr, // 36 Low-voltage detect/warning
  283. wakeup_isr, // 37 Low Leakage Wakeup
  284. watchdog_isr, // 38 Both EWM and WDOG interrupt
  285. unused_isr, // 39 --
  286. i2c0_isr, // 40 I2C0
  287. i2c1_isr, // 41 I2C1
  288. spi0_isr, // 42 SPI0
  289. spi1_isr, // 43 SPI1
  290. unused_isr, // 44 --
  291. can0_message_isr, // 45 CAN OR'ed Message buffer (0-15)
  292. can0_bus_off_isr, // 46 CAN Bus Off
  293. can0_error_isr, // 47 CAN Error
  294. can0_tx_warn_isr, // 48 CAN Transmit Warning
  295. can0_rx_warn_isr, // 49 CAN Receive Warning
  296. can0_wakeup_isr, // 50 CAN Wake Up
  297. i2s0_tx_isr, // 51 I2S0 Transmit
  298. i2s0_rx_isr, // 52 I2S0 Receive
  299. unused_isr, // 53 --
  300. unused_isr, // 54 --
  301. unused_isr, // 55 --
  302. unused_isr, // 56 --
  303. unused_isr, // 57 --
  304. unused_isr, // 58 --
  305. unused_isr, // 59 --
  306. uart0_lon_isr, // 60 UART0 CEA709.1-B (LON) status
  307. uart0_status_isr, // 61 UART0 status
  308. uart0_error_isr, // 62 UART0 error
  309. uart1_status_isr, // 63 UART1 status
  310. uart1_error_isr, // 64 UART1 error
  311. uart2_status_isr, // 65 UART2 status
  312. uart2_error_isr, // 66 UART2 error
  313. unused_isr, // 67 --
  314. unused_isr, // 68 --
  315. unused_isr, // 69 --
  316. unused_isr, // 70 --
  317. unused_isr, // 71 --
  318. unused_isr, // 72 --
  319. adc0_isr, // 73 ADC0
  320. adc1_isr, // 74 ADC1
  321. cmp0_isr, // 75 CMP0
  322. cmp1_isr, // 76 CMP1
  323. cmp2_isr, // 77 CMP2
  324. ftm0_isr, // 78 FTM0
  325. ftm1_isr, // 79 FTM1
  326. ftm2_isr, // 80 FTM2
  327. cmt_isr, // 81 CMT
  328. rtc_alarm_isr, // 82 RTC Alarm interrupt
  329. rtc_seconds_isr, // 83 RTC Seconds interrupt
  330. pit0_isr, // 84 PIT Channel 0
  331. pit1_isr, // 85 PIT Channel 1
  332. pit2_isr, // 86 PIT Channel 2
  333. pit3_isr, // 87 PIT Channel 3
  334. pdb_isr, // 88 PDB Programmable Delay Block
  335. usb_isr, // 89 USB OTG
  336. usb_charge_isr, // 90 USB Charger Detect
  337. unused_isr, // 91 --
  338. unused_isr, // 92 --
  339. unused_isr, // 93 --
  340. unused_isr, // 94 --
  341. unused_isr, // 95 --
  342. unused_isr, // 96 --
  343. dac0_isr, // 97 DAC0
  344. unused_isr, // 98 --
  345. tsi0_isr, // 99 TSI0
  346. mcg_isr, // 100 MCG
  347. lptmr_isr, // 101 Low Power Timer
  348. unused_isr, // 102 --
  349. porta_isr, // 103 Pin detect (Port A)
  350. portb_isr, // 104 Pin detect (Port B)
  351. portc_isr, // 105 Pin detect (Port C)
  352. portd_isr, // 106 Pin detect (Port D)
  353. porte_isr, // 107 Pin detect (Port E)
  354. unused_isr, // 108 --
  355. unused_isr, // 109 --
  356. software_isr, // 110 Software interrupt
  357. #endif
  358. };
  359. // ----- Flash Configuration -----
  360. // Only necessary for Teensy 3s, MCHCK uses the Bootloader to handle this
  361. #if defined(_mk20dx128_) || defined(_mk20dx256_)
  362. __attribute__ ((section(".flashconfig"), used))
  363. const uint8_t flashconfigbytes[16] = {
  364. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  365. 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF
  366. };
  367. #elif defined(_mk20dx128vlf5_) && defined(_bootloader_)
  368. // XXX Byte labels may be in incorrect positions, double check before modifying
  369. // FSEC is in correct location -Jacob
  370. __attribute__ ((section(".flashconfig"), used))
  371. const uint8_t flashconfigbytes[16] = {
  372. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, // Backdoor Verif Key 28.3.1
  373. //
  374. // Protecting the first 4k of Flash memory from being over-written while running (bootloader protection)
  375. // Still possible to overwrite the bootloader using an external flashing device
  376. // For more details see:
  377. // http://cache.freescale.com/files/training/doc/dwf/AMF_ENT_T1031_Boston.pdf (page 8)
  378. // http://cache.freescale.com/files/microcontrollers/doc/app_note/AN4507.pdf
  379. // http://cache.freescale.com/files/32bit/doc/ref_manual/K20P48M50SF0RM.pdf (28.34.6)
  380. //
  381. 0xFF, 0xFF, 0xFF, 0xFE, // Program Flash Protection Bytes FPROT0-3
  382. 0xBE, // Flash security byte FSEC
  383. 0x03, // Flash nonvolatile option byte FOPT
  384. 0xFF, // EEPROM Protection Byte FEPROT
  385. 0xFF, // Data Flash Protection Byte FDPROT
  386. };
  387. #elif defined(_mk20dx256vlh7_) && defined(_bootloader_)
  388. // XXX Byte labels may be in incorrect positions, double check before modifying
  389. // FSEC is in correct location -Jacob
  390. __attribute__ ((section(".flashconfig"), used))
  391. const uint8_t flashconfigbytes[16] = {
  392. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, // Backdoor Verif Key 28.3.1
  393. //
  394. // Protecting the first 8k of Flash memory from being over-written while running (bootloader protection)
  395. // Still possible to overwrite the bootloader using an external flashing device
  396. // For more details see:
  397. // http://cache.freescale.com/files/training/doc/dwf/AMF_ENT_T1031_Boston.pdf (page 8)
  398. // http://cache.freescale.com/files/microcontrollers/doc/app_note/AN4507.pdf
  399. // http://cache.freescale.com/files/32bit/doc/ref_manual/K20P64M72SF1RM.pdf (28.34.6)
  400. //
  401. 0xFF, 0xFF, 0xFF, 0xFE, // Program Flash Protection Bytes FPROT0-3
  402. 0xBE, // Flash security byte FSEC
  403. 0x03, // Flash nonvolatile option byte FOPT
  404. 0xFF, // EEPROM Protection Byte FEPROT
  405. 0xFF, // Data Flash Protection Byte FDPROT
  406. };
  407. #endif
  408. // ----- Functions -----
  409. #if ( defined(_mk20dx128vlf5_) || defined(_mk20dx256vlh7_) ) && defined(_bootloader_) // Bootloader Section
  410. __attribute__((noreturn))
  411. static inline void jump_to_app( uintptr_t addr )
  412. {
  413. // addr is in r0
  414. __asm__("ldr sp, [%[addr], #0]\n"
  415. "ldr pc, [%[addr], #4]"
  416. :: [addr] "r" (addr));
  417. // NOTREACHED
  418. __builtin_unreachable();
  419. }
  420. #endif
  421. void *memset( void *addr, int val, unsigned int len )
  422. {
  423. char *buf = addr;
  424. for (; len > 0; --len, ++buf)
  425. *buf = val;
  426. return (addr);
  427. }
  428. int memcmp( const void *a, const void *b, unsigned int len )
  429. {
  430. const uint8_t *ap = a, *bp = b;
  431. int val = 0;
  432. for (; len > 0 && (val = *ap - *bp) == 0; --len, ++ap, ++bp)
  433. /* NOTHING */;
  434. return (val);
  435. }
  436. void *memcpy( void *dst, const void *src, unsigned int len )
  437. {
  438. char *dstbuf = dst;
  439. const char *srcbuf = src;
  440. for (; len > 0; --len, ++dstbuf, ++srcbuf)
  441. *dstbuf = *srcbuf;
  442. return (dst);
  443. }
  444. // ----- Chip Entry Point -----
  445. __attribute__ ((section(".startup")))
  446. void ResetHandler()
  447. {
  448. #if ( defined(_mk20dx128vlf5_) || defined(_mk20dx256vlh7_) ) && defined(_bootloader_) // Bootloader Section
  449. extern uint32_t _app_rom;
  450. // We treat _app_rom as pointer to directly read the stack
  451. // pointer and check for valid app code. This is no fool
  452. // proof method, but it should help for the first flash.
  453. //
  454. // Purposefully disabling the watchdog *after* the reset check this way
  455. // if the chip goes into an odd state we'll reset to the bootloader (invalid firmware image)
  456. // RCM_SRS0 & 0x20
  457. //
  458. // Also checking for ARM lock-up signal (invalid firmware image)
  459. // RCM_SRS1 & 0x02
  460. if ( // PIN (External Reset Pin/Switch)
  461. RCM_SRS0 & 0x40
  462. // WDOG (Watchdog timeout)
  463. || RCM_SRS0 & 0x20
  464. // LOCKUP (ARM Core LOCKUP event)
  465. || RCM_SRS1 & 0x02
  466. // Blank flash check
  467. || _app_rom == 0xffffffff
  468. // Software reset
  469. || memcmp( (uint8_t*)&VBAT, sys_reset_to_loader_magic, sizeof(sys_reset_to_loader_magic) ) == 0
  470. )
  471. {
  472. memset( (uint8_t*)&VBAT, 0, sizeof(VBAT) );
  473. }
  474. else
  475. {
  476. uint32_t addr = (uintptr_t)&_app_rom;
  477. SCB_VTOR = addr; // relocate vector table
  478. jump_to_app( addr );
  479. }
  480. #endif
  481. // Disable Watchdog
  482. WDOG_UNLOCK = WDOG_UNLOCK_SEQ1;
  483. WDOG_UNLOCK = WDOG_UNLOCK_SEQ2;
  484. WDOG_STCTRLH = WDOG_STCTRLH_ALLOWUPDATE;
  485. uint32_t *src = (uint32_t*)&_etext;
  486. uint32_t *dest = (uint32_t*)&_sdata;
  487. // Enable clocks to always-used peripherals
  488. SIM_SCGC5 = 0x00043F82; // Clocks active to all GPIO
  489. SIM_SCGC6 = SIM_SCGC6_FTM0 | SIM_SCGC6_FTM1 | SIM_SCGC6_ADC0 | SIM_SCGC6_FTFL;
  490. #if defined(_mk20dx128_)
  491. SIM_SCGC6 |= SIM_SCGC6_RTC;
  492. #elif defined(_mk20dx256_) || defined(_mk20dx256vlh7_)
  493. SIM_SCGC3 = SIM_SCGC3_ADC1 | SIM_SCGC3_FTM2;
  494. SIM_SCGC6 |= SIM_SCGC6_RTC;
  495. #endif
  496. #if defined(_mk20dx128_) || defined(_mk20dx256_) // Teensy 3s
  497. // if the RTC oscillator isn't enabled, get it started early
  498. if ( !(RTC_CR & RTC_CR_OSCE) )
  499. {
  500. RTC_SR = 0;
  501. RTC_CR = RTC_CR_SC16P | RTC_CR_SC4P | RTC_CR_OSCE;
  502. }
  503. #endif
  504. // release I/O pins hold, if we woke up from VLLS mode
  505. if ( PMC_REGSC & PMC_REGSC_ACKISO )
  506. {
  507. PMC_REGSC |= PMC_REGSC_ACKISO;
  508. }
  509. // Prepare RAM
  510. while ( dest < (uint32_t*)&_edata ) *dest++ = *src++;
  511. dest = (uint32_t*)&_sbss;
  512. while ( dest < (uint32_t*)&_ebss ) *dest++ = 0;
  513. // MCHCK / Kiibohd-dfu
  514. #if defined(_mk20dx128vlf5_)
  515. // Default all interrupts to medium priority level
  516. for ( unsigned int i = 0; i < NVIC_NUM_INTERRUPTS; i++ )
  517. {
  518. NVIC_SET_PRIORITY( i, 128 );
  519. }
  520. // FLL at 48MHz
  521. MCG_C4 = MCG_C4_DMX32 | MCG_C4_DRST_DRS( 1 );
  522. // USB Clock and FLL select
  523. SIM_SOPT2 = SIM_SOPT2_USBSRC | SIM_SOPT2_TRACECLKSEL;
  524. // Teensy 3.0 and 3.1 and Kiibohd-dfu (mk20dx256vlh7)
  525. #else
  526. #if defined(_mk20dx128_) || defined(_mk20dx256_)
  527. // use vector table in flash
  528. SCB_VTOR = 0;
  529. #endif
  530. // default all interrupts to medium priority level
  531. for ( unsigned int i = 0; i < NVIC_NUM_INTERRUPTS; i++ )
  532. {
  533. NVIC_SET_PRIORITY( i, 128 );
  534. }
  535. // start in FEI mode
  536. // enable capacitors for crystal
  537. OSC0_CR = OSC_SC8P | OSC_SC2P;
  538. // enable osc, 8-32 MHz range, low power mode
  539. MCG_C2 = MCG_C2_RANGE0( 2 ) | MCG_C2_EREFS;
  540. // switch to crystal as clock source, FLL input = 16 MHz / 512
  541. MCG_C1 = MCG_C1_CLKS( 2 ) | MCG_C1_FRDIV( 4 );
  542. // wait for crystal oscillator to begin
  543. while ( (MCG_S & MCG_S_OSCINIT0) == 0 );
  544. // wait for FLL to use oscillator
  545. while ( (MCG_S & MCG_S_IREFST) != 0 );
  546. // wait for MCGOUT to use oscillator
  547. while ( (MCG_S & MCG_S_CLKST_MASK) != MCG_S_CLKST( 2 ) );
  548. // now we're in FBE mode
  549. #if F_CPU == 72000000
  550. // config PLL input for 16 MHz Crystal / 8 = 2 MHz
  551. MCG_C5 = MCG_C5_PRDIV0( 7 );
  552. #else
  553. // config PLL input for 16 MHz Crystal / 4 = 4 MHz
  554. MCG_C5 = MCG_C5_PRDIV0( 3 );
  555. #endif
  556. #if F_CPU == 72000000
  557. // config PLL for 72 MHz output (36 * 2 MHz Ext PLL)
  558. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0( 12 );
  559. #else
  560. // config PLL for 96 MHz output
  561. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0( 0 );
  562. #endif
  563. // wait for PLL to start using xtal as its input
  564. while ( !(MCG_S & MCG_S_PLLST) );
  565. // wait for PLL to lock
  566. while ( !(MCG_S & MCG_S_LOCK0) );
  567. // now we're in PBE mode
  568. #if F_CPU == 96000000
  569. // config divisors: 96 MHz core, 48 MHz bus, 24 MHz flash
  570. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1( 0 ) | SIM_CLKDIV1_OUTDIV2( 1 ) | SIM_CLKDIV1_OUTDIV4( 3 );
  571. #elif F_CPU == 72000000
  572. // config divisors: 72 MHz core, 36 MHz bus, 24 MHz flash
  573. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1( 0 ) | SIM_CLKDIV1_OUTDIV2( 1 ) | SIM_CLKDIV1_OUTDIV4( 2 );
  574. #elif F_CPU == 48000000
  575. // config divisors: 48 MHz core, 48 MHz bus, 24 MHz flash
  576. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1( 1 ) | SIM_CLKDIV1_OUTDIV2( 1 ) | SIM_CLKDIV1_OUTDIV4( 3 );
  577. #elif F_CPU == 24000000
  578. // config divisors: 24 MHz core, 24 MHz bus, 24 MHz flash
  579. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1( 3 ) | SIM_CLKDIV1_OUTDIV2( 3 ) | SIM_CLKDIV1_OUTDIV4( 3 );
  580. #else
  581. #error "Error, F_CPU must be 96000000, 72000000, 48000000, or 24000000"
  582. #endif
  583. // switch to PLL as clock source, FLL input = 16 MHz / 512
  584. MCG_C1 = MCG_C1_CLKS( 0 ) | MCG_C1_FRDIV( 4 );
  585. // wait for PLL clock to be used
  586. while ( (MCG_S & MCG_S_CLKST_MASK) != MCG_S_CLKST( 3 ) );
  587. // now we're in PEE mode
  588. #if F_CPU == 72000000
  589. // configure USB for 48 MHz clock
  590. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV( 2 ) | SIM_CLKDIV2_USBFRAC; // USB = 72 MHz PLL / 1.5
  591. #else
  592. // configure USB for 48 MHz clock
  593. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV( 1 ); // USB = 96 MHz PLL / 2
  594. #endif
  595. // USB uses PLL clock, trace is CPU clock, CLKOUT=OSCERCLK0
  596. SIM_SOPT2 = SIM_SOPT2_USBSRC | SIM_SOPT2_PLLFLLSEL | SIM_SOPT2_TRACECLKSEL | SIM_SOPT2_CLKOUTSEL( 6 );
  597. #endif
  598. #if !defined(_bootloader_)
  599. // Initialize the SysTick counter
  600. SYST_RVR = (F_CPU / 1000) - 1;
  601. SYST_CSR = SYST_CSR_CLKSOURCE | SYST_CSR_TICKINT | SYST_CSR_ENABLE;
  602. __enable_irq();
  603. #else
  604. // Disable Watchdog for bootloader
  605. WDOG_STCTRLH &= ~WDOG_STCTRLH_WDOGEN;
  606. #endif
  607. main();
  608. while ( 1 ); // Shouldn't get here...
  609. }
  610. // ----- RAM Setup -----
  611. char *__brkval = (char *)&_ebss;
  612. void * _sbrk( int incr )
  613. {
  614. char *prev = __brkval;
  615. __brkval += incr;
  616. return prev;
  617. }
  618. // ----- Interrupt Execution Priority -----
  619. int nvic_execution_priority()
  620. {
  621. int priority = 256;
  622. uint32_t primask, faultmask, basepri, ipsr;
  623. // full algorithm in ARM DDI0403D, page B1-639
  624. // this isn't quite complete, but hopefully good enough
  625. asm volatile( "mrs %0, faultmask\n" : "=r" (faultmask):: );
  626. if ( faultmask )
  627. {
  628. return -1;
  629. }
  630. asm volatile( "mrs %0, primask\n" : "=r" (primask):: );
  631. if ( primask )
  632. {
  633. return 0;
  634. }
  635. asm volatile( "mrs %0, ipsr\n" : "=r" (ipsr):: );
  636. if ( ipsr )
  637. {
  638. if ( ipsr < 16)
  639. {
  640. priority = 0; // could be non-zero
  641. }
  642. else
  643. {
  644. priority = NVIC_GET_PRIORITY( ipsr - 16 );
  645. }
  646. }
  647. asm volatile( "mrs %0, basepri\n" : "=r" (basepri):: );
  648. if ( basepri > 0 && basepri < priority )
  649. {
  650. priority = basepri;
  651. }
  652. return priority;
  653. }