Teensy 4.1 core updated for C++20
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.

414 line
11KB

  1. #include "imxrt.h"
  2. #include "wiring.h"
  3. #include "usb_dev.h"
  4. #include "debug/printf.h"
  5. // from the linker
  6. extern unsigned long _stextload;
  7. extern unsigned long _stext;
  8. extern unsigned long _etext;
  9. extern unsigned long _sdataload;
  10. extern unsigned long _sdata;
  11. extern unsigned long _edata;
  12. extern unsigned long _sbss;
  13. extern unsigned long _ebss;
  14. __attribute__ ((used, aligned(1024)))
  15. void (* _VectorsRam[NVIC_NUM_INTERRUPTS+16])(void);
  16. static void memory_copy(uint32_t *dest, const uint32_t *src, uint32_t *dest_end);
  17. static void memory_clear(uint32_t *dest, uint32_t *dest_end);
  18. static void configure_systick(void);
  19. extern void systick_isr(void);
  20. extern void pendablesrvreq_isr(void);
  21. void configure_cache(void);
  22. void unused_interrupt_vector(void);
  23. void usb_pll_start();
  24. extern void analog_init(void); // analog.c
  25. extern void pwm_init(void); // pwm.c
  26. extern void tempmon_init(void); //tempmon.c
  27. uint32_t set_arm_clock(uint32_t frequency); // clockspeed.c
  28. extern void __libc_init_array(void); // C++ standard library
  29. __attribute__((section(".startup"), optimize("no-tree-loop-distribute-patterns")))
  30. void ResetHandler(void)
  31. {
  32. unsigned int i;
  33. //force the stack to begin at some arbitrary location
  34. //__asm__ volatile("mov sp, %0" : : "r" (0x20010000) : );
  35. // pin 13 - if startup crashes, use this to turn on the LED early for troubleshooting
  36. //IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_03 = 5;
  37. //IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03 = IOMUXC_PAD_DSE(7);
  38. //GPIO2_GDIR |= (1<<3);
  39. //GPIO2_DR_SET = (1<<3); // digitalWrite(13, HIGH);
  40. // Initialize memory
  41. memory_copy(&_stext, &_stextload, &_etext);
  42. memory_copy(&_sdata, &_sdataload, &_edata);
  43. memory_clear(&_sbss, &_ebss);
  44. // enable FPU
  45. SCB_CPACR = 0x00F00000;
  46. // set up blank interrupt & exception vector table
  47. for (i=0; i < NVIC_NUM_INTERRUPTS + 16; i++) _VectorsRam[i] = &unused_interrupt_vector;
  48. for (i=0; i < NVIC_NUM_INTERRUPTS; i++) NVIC_SET_PRIORITY(i, 128);
  49. SCB_VTOR = (uint32_t)_VectorsRam;
  50. // Configure clocks
  51. // TODO: make sure all affected peripherals are turned off!
  52. // PIT & GPT timers to run from 24 MHz clock (independent of CPU speed)
  53. CCM_CSCMR1 = (CCM_CSCMR1 & ~CCM_CSCMR1_PERCLK_PODF(0x3F)) | CCM_CSCMR1_PERCLK_CLK_SEL;
  54. // UARTs run from 24 MHz clock (works if PLL3 off or bypassed)
  55. CCM_CSCDR1 = (CCM_CSCDR1 & ~CCM_CSCDR1_UART_CLK_PODF(0x3F)) | CCM_CSCDR1_UART_CLK_SEL;
  56. // must enable PRINT_DEBUG_STUFF in debug/print.h
  57. printf_debug_init();
  58. printf("\n***********IMXRT Startup**********\n");
  59. printf("test %d %d %d\n", 1, -1234567, 3);
  60. configure_cache();
  61. configure_systick();
  62. usb_pll_start();
  63. CCM_ANALOG_PFD_528_SET = (1 << 31) | (1 << 23) | (1 << 15) | (1 << 7);
  64. CCM_ANALOG_PFD_528 = 0x2018101B; // PFD0:352, PFD1:594, PFD2:396, PFD3:297 MHz
  65. set_arm_clock(600000000);
  66. //set_arm_clock(984000000); Ludicrous Speed
  67. while (millis() < 20) ; // wait at least 20ms before starting USB
  68. usb_init();
  69. analog_init();
  70. pwm_init();
  71. tempmon_init();
  72. while (millis() < 300) ; // wait at least 300ms before calling user code
  73. printf("before C++ constructors\n");
  74. __libc_init_array();
  75. printf("after C++ constructors\n");
  76. printf("before setup\n");
  77. setup();
  78. printf("after setup\n");
  79. while (1) {
  80. //printf("loop\n");
  81. loop();
  82. }
  83. }
  84. // ARM SysTick is used for most Ardiuno timing functions, delay(), millis(),
  85. // micros(). SysTick can run from either the ARM core clock, or from an
  86. // "external" clock. NXP documents it as "24 MHz XTALOSC can be the external
  87. // clock source of SYSTICK" (RT1052 ref manual, rev 1, page 411). However,
  88. // NXP actually hid an undocumented divide-by-240 circuit in the hardware, so
  89. // the external clock is really 100 kHz. We use this clock rather than the
  90. // ARM clock, to allow SysTick to maintain correct timing even when we change
  91. // the ARM clock to run at different speeds.
  92. #define SYSTICK_EXT_FREQ 100000
  93. static void configure_systick(void)
  94. {
  95. _VectorsRam[14] = pendablesrvreq_isr;
  96. _VectorsRam[15] = systick_isr;
  97. SYST_RVR = (SYSTICK_EXT_FREQ / 1000) - 1;
  98. SYST_CVR = 0;
  99. SYST_CSR = SYST_CSR_TICKINT | SYST_CSR_ENABLE;
  100. SCB_SHPR3 = 0x20000000; // Systick = priority 32
  101. ARM_DEMCR |= ARM_DEMCR_TRCENA;
  102. ARM_DWT_CTRL |= ARM_DWT_CTRL_CYCCNTENA; // turn on cycle counter
  103. }
  104. // concise defines for SCB_MPU_RASR and SCB_MPU_RBAR, ARM DDI0403E, pg 696
  105. #define NOEXEC SCB_MPU_RASR_XN
  106. #define READONLY SCB_MPU_RASR_AP(7)
  107. #define READWRITE SCB_MPU_RASR_AP(3)
  108. #define NOACCESS SCB_MPU_RASR_AP(0)
  109. #define MEM_CACHE_WT SCB_MPU_RASR_TEX(0) | SCB_MPU_RASR_C
  110. #define MEM_CACHE_WB SCB_MPU_RASR_TEX(0) | SCB_MPU_RASR_C | SCB_MPU_RASR_B
  111. #define MEM_CACHE_WBWA SCB_MPU_RASR_TEX(1) | SCB_MPU_RASR_C | SCB_MPU_RASR_B
  112. #define MEM_NOCACHE SCB_MPU_RASR_TEX(1)
  113. #define DEV_NOCACHE SCB_MPU_RASR_TEX(2)
  114. #define SIZE_128K (SCB_MPU_RASR_SIZE(16) | SCB_MPU_RASR_ENABLE)
  115. #define SIZE_256K (SCB_MPU_RASR_SIZE(17) | SCB_MPU_RASR_ENABLE)
  116. #define SIZE_512K (SCB_MPU_RASR_SIZE(18) | SCB_MPU_RASR_ENABLE)
  117. #define SIZE_1M (SCB_MPU_RASR_SIZE(19) | SCB_MPU_RASR_ENABLE)
  118. #define SIZE_2M (SCB_MPU_RASR_SIZE(20) | SCB_MPU_RASR_ENABLE)
  119. #define SIZE_4M (SCB_MPU_RASR_SIZE(21) | SCB_MPU_RASR_ENABLE)
  120. #define SIZE_8M (SCB_MPU_RASR_SIZE(22) | SCB_MPU_RASR_ENABLE)
  121. #define SIZE_16M (SCB_MPU_RASR_SIZE(23) | SCB_MPU_RASR_ENABLE)
  122. #define SIZE_32M (SCB_MPU_RASR_SIZE(24) | SCB_MPU_RASR_ENABLE)
  123. #define SIZE_64M (SCB_MPU_RASR_SIZE(25) | SCB_MPU_RASR_ENABLE)
  124. #define REGION(n) (SCB_MPU_RBAR_REGION(n) | SCB_MPU_RBAR_VALID)
  125. __attribute__((section(".progmem")))
  126. void configure_cache(void)
  127. {
  128. //printf("MPU_TYPE = %08lX\n", SCB_MPU_TYPE);
  129. //printf("CCR = %08lX\n", SCB_CCR);
  130. // TODO: check if caches already active - skip?
  131. SCB_MPU_CTRL = 0; // turn off MPU
  132. SCB_MPU_RBAR = 0x00000000 | REGION(0); // ITCM
  133. SCB_MPU_RASR = MEM_NOCACHE | READWRITE | SIZE_512K;
  134. SCB_MPU_RBAR = 0x00200000 | REGION(1); // Boot ROM
  135. SCB_MPU_RASR = MEM_CACHE_WT | READONLY | SIZE_128K;
  136. SCB_MPU_RBAR = 0x20000000 | REGION(2); // DTCM
  137. SCB_MPU_RASR = MEM_NOCACHE | READWRITE | NOEXEC | SIZE_512K;
  138. SCB_MPU_RBAR = 0x20200000 | REGION(3); // RAM (AXI bus)
  139. SCB_MPU_RASR = MEM_CACHE_WBWA | READWRITE | NOEXEC | SIZE_1M;
  140. SCB_MPU_RBAR = 0x40000000 | REGION(4); // Peripherals
  141. SCB_MPU_RASR = DEV_NOCACHE | READWRITE | NOEXEC | SIZE_64M;
  142. SCB_MPU_RBAR = 0x60000000 | REGION(5); // QSPI Flash
  143. SCB_MPU_RASR = MEM_CACHE_WBWA | READONLY | SIZE_16M;
  144. // TODO: 32 byte sub-region at 0x00000000 with NOACCESS, to trap NULL pointer deref
  145. // TODO: protect access to power supply config
  146. // TODO: 32 byte sub-region at end of .bss section with NOACCESS, to trap stack overflow
  147. SCB_MPU_CTRL = SCB_MPU_CTRL_ENABLE;
  148. // cache enable, ARM DDI0403E, pg 628
  149. asm("dsb");
  150. asm("isb");
  151. SCB_CACHE_ICIALLU = 0;
  152. asm("dsb");
  153. asm("isb");
  154. SCB_CCR |= (SCB_CCR_IC | SCB_CCR_DC);
  155. }
  156. __attribute__((section(".progmem")))
  157. void usb_pll_start()
  158. {
  159. while (1) {
  160. uint32_t n = CCM_ANALOG_PLL_USB1; // pg 759
  161. printf("CCM_ANALOG_PLL_USB1=%08lX\n", n);
  162. if (n & CCM_ANALOG_PLL_USB1_DIV_SELECT) {
  163. printf(" ERROR, 528 MHz mode!\n"); // never supposed to use this mode!
  164. CCM_ANALOG_PLL_USB1_CLR = 0xC000; // bypass 24 MHz
  165. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_BYPASS; // bypass
  166. CCM_ANALOG_PLL_USB1_CLR = CCM_ANALOG_PLL_USB1_POWER | // power down
  167. CCM_ANALOG_PLL_USB1_DIV_SELECT | // use 480 MHz
  168. CCM_ANALOG_PLL_USB1_ENABLE | // disable
  169. CCM_ANALOG_PLL_USB1_EN_USB_CLKS; // disable usb
  170. continue;
  171. }
  172. if (!(n & CCM_ANALOG_PLL_USB1_ENABLE)) {
  173. printf(" enable PLL\n");
  174. // TODO: should this be done so early, or later??
  175. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_ENABLE;
  176. continue;
  177. }
  178. if (!(n & CCM_ANALOG_PLL_USB1_POWER)) {
  179. printf(" power up PLL\n");
  180. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_POWER;
  181. continue;
  182. }
  183. if (!(n & CCM_ANALOG_PLL_USB1_LOCK)) {
  184. printf(" wait for lock\n");
  185. continue;
  186. }
  187. if (n & CCM_ANALOG_PLL_USB1_BYPASS) {
  188. printf(" turn off bypass\n");
  189. CCM_ANALOG_PLL_USB1_CLR = CCM_ANALOG_PLL_USB1_BYPASS;
  190. continue;
  191. }
  192. if (!(n & CCM_ANALOG_PLL_USB1_EN_USB_CLKS)) {
  193. printf(" enable USB clocks\n");
  194. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_EN_USB_CLKS;
  195. continue;
  196. }
  197. return; // everything is as it should be :-)
  198. }
  199. }
  200. // Stack frame
  201. // xPSR
  202. // ReturnAddress
  203. // LR (R14) - typically FFFFFFF9 for IRQ or Exception
  204. // R12
  205. // R3
  206. // R2
  207. // R1
  208. // R0
  209. void unused_interrupt_vector(void)
  210. {
  211. // TODO: polling Serial to complete buffered transmits
  212. #ifdef PRINT_DEBUG_STUFF
  213. uint32_t addr;
  214. asm volatile("mrs %0, ipsr\n" : "=r" (addr)::);
  215. printf("\nirq %d\n", addr & 0x1FF);
  216. asm("ldr %0, [sp, #52]" : "=r" (addr) ::);
  217. printf(" %x\n", addr);
  218. asm("ldr %0, [sp, #48]" : "=r" (addr) ::);
  219. printf(" %x\n", addr);
  220. asm("ldr %0, [sp, #44]" : "=r" (addr) ::);
  221. printf(" %x\n", addr);
  222. asm("ldr %0, [sp, #40]" : "=r" (addr) ::);
  223. printf(" %x\n", addr);
  224. asm("ldr %0, [sp, #36]" : "=r" (addr) ::);
  225. printf(" %x\n", addr);
  226. asm("ldr %0, [sp, #33]" : "=r" (addr) ::);
  227. printf(" %x\n", addr);
  228. asm("ldr %0, [sp, #34]" : "=r" (addr) ::);
  229. printf(" %x\n", addr);
  230. asm("ldr %0, [sp, #28]" : "=r" (addr) ::);
  231. printf(" %x\n", addr);
  232. asm("ldr %0, [sp, #24]" : "=r" (addr) ::);
  233. printf(" %x\n", addr);
  234. asm("ldr %0, [sp, #20]" : "=r" (addr) ::);
  235. printf(" %x\n", addr);
  236. asm("ldr %0, [sp, #16]" : "=r" (addr) ::);
  237. printf(" %x\n", addr);
  238. asm("ldr %0, [sp, #12]" : "=r" (addr) ::);
  239. printf(" %x\n", addr);
  240. asm("ldr %0, [sp, #8]" : "=r" (addr) ::);
  241. printf(" %x\n", addr);
  242. asm("ldr %0, [sp, #4]" : "=r" (addr) ::);
  243. printf(" %x\n", addr);
  244. asm("ldr %0, [sp, #0]" : "=r" (addr) ::);
  245. printf(" %x\n", addr);
  246. #endif
  247. #if 1
  248. IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_03 = 5; // pin 13
  249. IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03 = IOMUXC_PAD_DSE(7);
  250. GPIO2_GDIR |= (1<<3);
  251. GPIO2_DR_SET = (1<<3);
  252. while (1) {
  253. volatile uint32_t n;
  254. GPIO2_DR_SET = (1<<3); //digitalWrite(13, HIGH);
  255. for (n=0; n < 2000000; n++) ;
  256. GPIO2_DR_CLEAR = (1<<3); //digitalWrite(13, LOW);
  257. for (n=0; n < 1500000; n++) ;
  258. }
  259. #else
  260. while (1) {
  261. }
  262. #endif
  263. }
  264. __attribute__((section(".startup"), optimize("no-tree-loop-distribute-patterns")))
  265. static void memory_copy(uint32_t *dest, const uint32_t *src, uint32_t *dest_end)
  266. {
  267. if (dest == src) return;
  268. while (dest < dest_end) {
  269. *dest++ = *src++;
  270. }
  271. }
  272. __attribute__((section(".startup"), optimize("no-tree-loop-distribute-patterns")))
  273. static void memory_clear(uint32_t *dest, uint32_t *dest_end)
  274. {
  275. while (dest < dest_end) {
  276. *dest++ = 0;
  277. }
  278. }
  279. // syscall functions need to be in the same C file as the entry point "ResetVector"
  280. // otherwise the linker will discard them in some cases.
  281. #include <errno.h>
  282. // from the linker script
  283. extern unsigned long _heap_start;
  284. extern unsigned long _heap_end;
  285. char *__brkval = (char *)&_heap_start;
  286. void * _sbrk(int incr)
  287. {
  288. char *prev = __brkval;
  289. if (incr != 0) {
  290. if (prev + incr > (char *)&_heap_end) {
  291. errno = ENOMEM;
  292. return (void *)-1;
  293. }
  294. __brkval = prev + incr;
  295. }
  296. return prev;
  297. }
  298. __attribute__((weak))
  299. int _read(int file, char *ptr, int len)
  300. {
  301. return 0;
  302. }
  303. __attribute__((weak))
  304. int _close(int fd)
  305. {
  306. return -1;
  307. }
  308. #include <sys/stat.h>
  309. __attribute__((weak))
  310. int _fstat(int fd, struct stat *st)
  311. {
  312. st->st_mode = S_IFCHR;
  313. return 0;
  314. }
  315. __attribute__((weak))
  316. int _isatty(int fd)
  317. {
  318. return 1;
  319. }
  320. __attribute__((weak))
  321. int _lseek(int fd, long long offset, int whence)
  322. {
  323. return -1;
  324. }
  325. __attribute__((weak))
  326. void _exit(int status)
  327. {
  328. while (1);
  329. }
  330. __attribute__((weak))
  331. void __cxa_pure_virtual()
  332. {
  333. while (1);
  334. }
  335. __attribute__((weak))
  336. int __cxa_guard_acquire (char *g)
  337. {
  338. return !(*g);
  339. }
  340. __attribute__((weak))
  341. void __cxa_guard_release(char *g)
  342. {
  343. *g = 1;
  344. }
  345. __attribute__((weak))
  346. void abort(void)
  347. {
  348. while (1) ;
  349. }