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.

636 lines
19KB

  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. extern unsigned long _flexram_bank_config;
  15. extern unsigned long _estack;
  16. __attribute__ ((used, aligned(1024)))
  17. void (* _VectorsRam[NVIC_NUM_INTERRUPTS+16])(void);
  18. static void memory_copy(uint32_t *dest, const uint32_t *src, uint32_t *dest_end);
  19. static void memory_clear(uint32_t *dest, uint32_t *dest_end);
  20. static void configure_systick(void);
  21. static void reset_PFD();
  22. extern void systick_isr(void);
  23. extern void pendablesrvreq_isr(void);
  24. void configure_cache(void);
  25. void unused_interrupt_vector(void);
  26. void usb_pll_start();
  27. extern void analog_init(void); // analog.c
  28. extern void pwm_init(void); // pwm.c
  29. extern void tempmon_init(void); //tempmon.c
  30. uint32_t set_arm_clock(uint32_t frequency); // clockspeed.c
  31. extern void __libc_init_array(void); // C++ standard library
  32. __attribute__((section(".startup"), optimize("no-tree-loop-distribute-patterns"), naked))
  33. void ResetHandler(void)
  34. {
  35. unsigned int i;
  36. #if defined(__IMXRT1062__)
  37. IOMUXC_GPR_GPR17 = (uint32_t)&_flexram_bank_config;
  38. IOMUXC_GPR_GPR16 = 0x00000007;
  39. IOMUXC_GPR_GPR14 = 0x00AA0000;
  40. __asm__ volatile("mov sp, %0" : : "r" ((uint32_t)&_estack) : );
  41. #endif
  42. // pin 13 - if startup crashes, use this to turn on the LED early for troubleshooting
  43. //IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_03 = 5;
  44. //IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03 = IOMUXC_PAD_DSE(7);
  45. //IOMUXC_GPR_GPR27 = 0xFFFFFFFF;
  46. //GPIO7_GDIR |= (1<<3);
  47. //GPIO7_DR_SET = (1<<3); // digitalWrite(13, HIGH);
  48. // Initialize memory
  49. memory_copy(&_stext, &_stextload, &_etext);
  50. memory_copy(&_sdata, &_sdataload, &_edata);
  51. memory_clear(&_sbss, &_ebss);
  52. // enable FPU
  53. SCB_CPACR = 0x00F00000;
  54. // set up blank interrupt & exception vector table
  55. for (i=0; i < NVIC_NUM_INTERRUPTS + 16; i++) _VectorsRam[i] = &unused_interrupt_vector;
  56. for (i=0; i < NVIC_NUM_INTERRUPTS; i++) NVIC_SET_PRIORITY(i, 128);
  57. SCB_VTOR = (uint32_t)_VectorsRam;
  58. reset_PFD();
  59. // Configure clocks
  60. // TODO: make sure all affected peripherals are turned off!
  61. // PIT & GPT timers to run from 24 MHz clock (independent of CPU speed)
  62. CCM_CSCMR1 = (CCM_CSCMR1 & ~CCM_CSCMR1_PERCLK_PODF(0x3F)) | CCM_CSCMR1_PERCLK_CLK_SEL;
  63. // UARTs run from 24 MHz clock (works if PLL3 off or bypassed)
  64. CCM_CSCDR1 = (CCM_CSCDR1 & ~CCM_CSCDR1_UART_CLK_PODF(0x3F)) | CCM_CSCDR1_UART_CLK_SEL;
  65. #if defined(__IMXRT1062__)
  66. // Use fast GPIO6, GPIO7, GPIO8, GPIO9
  67. IOMUXC_GPR_GPR26 = 0xFFFFFFFF;
  68. IOMUXC_GPR_GPR27 = 0xFFFFFFFF;
  69. IOMUXC_GPR_GPR28 = 0xFFFFFFFF;
  70. IOMUXC_GPR_GPR29 = 0xFFFFFFFF;
  71. #endif
  72. // must enable PRINT_DEBUG_STUFF in debug/print.h
  73. printf_debug_init();
  74. printf("\n***********IMXRT Startup**********\n");
  75. printf("test %d %d %d\n", 1, -1234567, 3);
  76. configure_cache();
  77. configure_systick();
  78. usb_pll_start();
  79. reset_PFD(); //TODO: is this really needed?
  80. set_arm_clock(600000000);
  81. //set_arm_clock(984000000); Ludicrous Speed
  82. // initialize RTC
  83. if (!(SNVS_LPCR & SNVS_LPCR_SRTC_ENV)) {
  84. // if SRTC isn't running, start it with default Jan 1, 2019
  85. SNVS_LPSRTCLR = 1546300800u << 15;
  86. SNVS_LPSRTCMR = 1546300800u >> 17;
  87. SNVS_LPCR |= SNVS_LPCR_SRTC_ENV;
  88. }
  89. SNVS_HPCR |= SNVS_HPCR_RTC_EN | SNVS_HPCR_HP_TS;
  90. while (millis() < 20) ; // wait at least 20ms before starting USB
  91. usb_init();
  92. analog_init();
  93. pwm_init();
  94. tempmon_init();
  95. while (millis() < 300) ; // wait at least 300ms before calling user code
  96. //printf("before C++ constructors\n");
  97. __libc_init_array();
  98. //printf("after C++ constructors\n");
  99. //printf("before setup\n");
  100. setup();
  101. //printf("after setup\n");
  102. while (1) {
  103. //printf("loop\n");
  104. loop();
  105. yield();
  106. }
  107. }
  108. // ARM SysTick is used for most Ardiuno timing functions, delay(), millis(),
  109. // micros(). SysTick can run from either the ARM core clock, or from an
  110. // "external" clock. NXP documents it as "24 MHz XTALOSC can be the external
  111. // clock source of SYSTICK" (RT1052 ref manual, rev 1, page 411). However,
  112. // NXP actually hid an undocumented divide-by-240 circuit in the hardware, so
  113. // the external clock is really 100 kHz. We use this clock rather than the
  114. // ARM clock, to allow SysTick to maintain correct timing even when we change
  115. // the ARM clock to run at different speeds.
  116. #define SYSTICK_EXT_FREQ 100000
  117. extern volatile uint32_t systick_cycle_count;
  118. static void configure_systick(void)
  119. {
  120. _VectorsRam[14] = pendablesrvreq_isr;
  121. _VectorsRam[15] = systick_isr;
  122. SYST_RVR = (SYSTICK_EXT_FREQ / 1000) - 1;
  123. SYST_CVR = 0;
  124. SYST_CSR = SYST_CSR_TICKINT | SYST_CSR_ENABLE;
  125. SCB_SHPR3 = 0x20200000; // Systick, pendablesrvreq_isr = priority 32;
  126. ARM_DEMCR |= ARM_DEMCR_TRCENA;
  127. ARM_DWT_CTRL |= ARM_DWT_CTRL_CYCCNTENA; // turn on cycle counter
  128. systick_cycle_count = ARM_DWT_CYCCNT; // compiled 0, corrected w/1st systick
  129. }
  130. // concise defines for SCB_MPU_RASR and SCB_MPU_RBAR, ARM DDI0403E, pg 696
  131. #define NOEXEC SCB_MPU_RASR_XN
  132. #define READONLY SCB_MPU_RASR_AP(7)
  133. #define READWRITE SCB_MPU_RASR_AP(3)
  134. #define NOACCESS SCB_MPU_RASR_AP(0)
  135. #define MEM_CACHE_WT SCB_MPU_RASR_TEX(0) | SCB_MPU_RASR_C
  136. #define MEM_CACHE_WB SCB_MPU_RASR_TEX(0) | SCB_MPU_RASR_C | SCB_MPU_RASR_B
  137. #define MEM_CACHE_WBWA SCB_MPU_RASR_TEX(1) | SCB_MPU_RASR_C | SCB_MPU_RASR_B
  138. #define MEM_NOCACHE SCB_MPU_RASR_TEX(1)
  139. #define DEV_NOCACHE SCB_MPU_RASR_TEX(2)
  140. #define SIZE_128K (SCB_MPU_RASR_SIZE(16) | SCB_MPU_RASR_ENABLE)
  141. #define SIZE_256K (SCB_MPU_RASR_SIZE(17) | SCB_MPU_RASR_ENABLE)
  142. #define SIZE_512K (SCB_MPU_RASR_SIZE(18) | SCB_MPU_RASR_ENABLE)
  143. #define SIZE_1M (SCB_MPU_RASR_SIZE(19) | SCB_MPU_RASR_ENABLE)
  144. #define SIZE_2M (SCB_MPU_RASR_SIZE(20) | SCB_MPU_RASR_ENABLE)
  145. #define SIZE_4M (SCB_MPU_RASR_SIZE(21) | SCB_MPU_RASR_ENABLE)
  146. #define SIZE_8M (SCB_MPU_RASR_SIZE(22) | SCB_MPU_RASR_ENABLE)
  147. #define SIZE_16M (SCB_MPU_RASR_SIZE(23) | SCB_MPU_RASR_ENABLE)
  148. #define SIZE_32M (SCB_MPU_RASR_SIZE(24) | SCB_MPU_RASR_ENABLE)
  149. #define SIZE_64M (SCB_MPU_RASR_SIZE(25) | SCB_MPU_RASR_ENABLE)
  150. #define REGION(n) (SCB_MPU_RBAR_REGION(n) | SCB_MPU_RBAR_VALID)
  151. __attribute__((section(".progmem")))
  152. void configure_cache(void)
  153. {
  154. //printf("MPU_TYPE = %08lX\n", SCB_MPU_TYPE);
  155. //printf("CCR = %08lX\n", SCB_CCR);
  156. // TODO: check if caches already active - skip?
  157. SCB_MPU_CTRL = 0; // turn off MPU
  158. SCB_MPU_RBAR = 0x00000000 | REGION(0); // ITCM
  159. SCB_MPU_RASR = MEM_NOCACHE | READWRITE | SIZE_512K;
  160. SCB_MPU_RBAR = 0x00200000 | REGION(1); // Boot ROM
  161. SCB_MPU_RASR = MEM_CACHE_WT | READONLY | SIZE_128K;
  162. SCB_MPU_RBAR = 0x20000000 | REGION(2); // DTCM
  163. SCB_MPU_RASR = MEM_NOCACHE | READWRITE | NOEXEC | SIZE_512K;
  164. SCB_MPU_RBAR = 0x20200000 | REGION(3); // RAM (AXI bus)
  165. SCB_MPU_RASR = MEM_CACHE_WBWA | READWRITE | NOEXEC | SIZE_1M;
  166. SCB_MPU_RBAR = 0x40000000 | REGION(4); // Peripherals
  167. SCB_MPU_RASR = DEV_NOCACHE | READWRITE | NOEXEC | SIZE_64M;
  168. SCB_MPU_RBAR = 0x60000000 | REGION(5); // QSPI Flash
  169. SCB_MPU_RASR = MEM_CACHE_WBWA | READONLY | SIZE_16M;
  170. // TODO: 32 byte sub-region at 0x00000000 with NOACCESS, to trap NULL pointer deref
  171. // TODO: protect access to power supply config
  172. // TODO: 32 byte sub-region at end of .bss section with NOACCESS, to trap stack overflow
  173. SCB_MPU_CTRL = SCB_MPU_CTRL_ENABLE;
  174. // cache enable, ARM DDI0403E, pg 628
  175. asm("dsb");
  176. asm("isb");
  177. SCB_CACHE_ICIALLU = 0;
  178. asm("dsb");
  179. asm("isb");
  180. SCB_CCR |= (SCB_CCR_IC | SCB_CCR_DC);
  181. }
  182. __attribute__((section(".progmem")))
  183. void usb_pll_start()
  184. {
  185. while (1) {
  186. uint32_t n = CCM_ANALOG_PLL_USB1; // pg 759
  187. printf("CCM_ANALOG_PLL_USB1=%08lX\n", n);
  188. if (n & CCM_ANALOG_PLL_USB1_DIV_SELECT) {
  189. printf(" ERROR, 528 MHz mode!\n"); // never supposed to use this mode!
  190. CCM_ANALOG_PLL_USB1_CLR = 0xC000; // bypass 24 MHz
  191. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_BYPASS; // bypass
  192. CCM_ANALOG_PLL_USB1_CLR = CCM_ANALOG_PLL_USB1_POWER | // power down
  193. CCM_ANALOG_PLL_USB1_DIV_SELECT | // use 480 MHz
  194. CCM_ANALOG_PLL_USB1_ENABLE | // disable
  195. CCM_ANALOG_PLL_USB1_EN_USB_CLKS; // disable usb
  196. continue;
  197. }
  198. if (!(n & CCM_ANALOG_PLL_USB1_ENABLE)) {
  199. printf(" enable PLL\n");
  200. // TODO: should this be done so early, or later??
  201. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_ENABLE;
  202. continue;
  203. }
  204. if (!(n & CCM_ANALOG_PLL_USB1_POWER)) {
  205. printf(" power up PLL\n");
  206. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_POWER;
  207. continue;
  208. }
  209. if (!(n & CCM_ANALOG_PLL_USB1_LOCK)) {
  210. printf(" wait for lock\n");
  211. continue;
  212. }
  213. if (n & CCM_ANALOG_PLL_USB1_BYPASS) {
  214. printf(" turn off bypass\n");
  215. CCM_ANALOG_PLL_USB1_CLR = CCM_ANALOG_PLL_USB1_BYPASS;
  216. continue;
  217. }
  218. if (!(n & CCM_ANALOG_PLL_USB1_EN_USB_CLKS)) {
  219. printf(" enable USB clocks\n");
  220. CCM_ANALOG_PLL_USB1_SET = CCM_ANALOG_PLL_USB1_EN_USB_CLKS;
  221. continue;
  222. }
  223. return; // everything is as it should be :-)
  224. }
  225. }
  226. __attribute__((section(".progmem")))
  227. void reset_PFD()
  228. {
  229. //Reset PLL2 PFDs, set default frequencies:
  230. CCM_ANALOG_PFD_528_SET = (1 << 31) | (1 << 23) | (1 << 15) | (1 << 7);
  231. CCM_ANALOG_PFD_528 = 0x2018101B; // PFD0:352, PFD1:594, PFD2:396, PFD3:297 MHz
  232. //PLL3:
  233. CCM_ANALOG_PFD_480_SET = (1 << 31) | (1 << 23) | (1 << 15) | (1 << 7);
  234. CCM_ANALOG_PFD_480 = 0x13110D0C; // PFD0:720, PFD1:664, PFD2:508, PFD3:454 MHz
  235. }
  236. // Stack frame
  237. // xPSR
  238. // ReturnAddress
  239. // LR (R14) - typically FFFFFFF9 for IRQ or Exception
  240. // R12
  241. // R3
  242. // R2
  243. // R1
  244. // R0
  245. // Code from :: https://community.nxp.com/thread/389002
  246. __attribute__((naked))
  247. void unused_interrupt_vector(void)
  248. {
  249. __asm( ".syntax unified\n"
  250. "MOVS R0, #4 \n"
  251. "MOV R1, LR \n"
  252. "TST R0, R1 \n"
  253. "BEQ _MSP \n"
  254. "MRS R0, PSP \n"
  255. "B HardFault_HandlerC \n"
  256. "_MSP: \n"
  257. "MRS R0, MSP \n"
  258. "B HardFault_HandlerC \n"
  259. ".syntax divided\n") ;
  260. }
  261. __attribute__((weak))
  262. void HardFault_HandlerC(unsigned int *hardfault_args)
  263. {
  264. volatile unsigned int nn ;
  265. #ifdef PRINT_DEBUG_STUFF
  266. volatile unsigned int stacked_r0 ;
  267. volatile unsigned int stacked_r1 ;
  268. volatile unsigned int stacked_r2 ;
  269. volatile unsigned int stacked_r3 ;
  270. volatile unsigned int stacked_r12 ;
  271. volatile unsigned int stacked_lr ;
  272. volatile unsigned int stacked_pc ;
  273. volatile unsigned int stacked_psr ;
  274. volatile unsigned int _CFSR ;
  275. volatile unsigned int _HFSR ;
  276. volatile unsigned int _DFSR ;
  277. volatile unsigned int _AFSR ;
  278. volatile unsigned int _BFAR ;
  279. volatile unsigned int _MMAR ;
  280. volatile unsigned int addr ;
  281. stacked_r0 = ((unsigned int)hardfault_args[0]) ;
  282. stacked_r1 = ((unsigned int)hardfault_args[1]) ;
  283. stacked_r2 = ((unsigned int)hardfault_args[2]) ;
  284. stacked_r3 = ((unsigned int)hardfault_args[3]) ;
  285. stacked_r12 = ((unsigned int)hardfault_args[4]) ;
  286. stacked_lr = ((unsigned int)hardfault_args[5]) ;
  287. stacked_pc = ((unsigned int)hardfault_args[6]) ;
  288. stacked_psr = ((unsigned int)hardfault_args[7]) ;
  289. // Configurable Fault Status Register
  290. // Consists of MMSR, BFSR and UFSR
  291. //(n & ( 1 << k )) >> k
  292. _CFSR = (*((volatile unsigned int *)(0xE000ED28))) ;
  293. // Hard Fault Status Register
  294. _HFSR = (*((volatile unsigned int *)(0xE000ED2C))) ;
  295. // Debug Fault Status Register
  296. _DFSR = (*((volatile unsigned int *)(0xE000ED30))) ;
  297. // Auxiliary Fault Status Register
  298. _AFSR = (*((volatile unsigned int *)(0xE000ED3C))) ;
  299. // Read the Fault Address Registers. These may not contain valid values.
  300. // Check BFARVALID/MMARVALID to see if they are valid values
  301. // MemManage Fault Address Register
  302. _MMAR = (*((volatile unsigned int *)(0xE000ED34))) ;
  303. // Bus Fault Address Register
  304. _BFAR = (*((volatile unsigned int *)(0xE000ED38))) ;
  305. //__asm("BKPT #0\n") ; // Break into the debugger // NO Debugger here.
  306. asm volatile("mrs %0, ipsr\n" : "=r" (addr)::);
  307. printf("\nFault irq %d\n", addr & 0x1FF);
  308. printf(" stacked_r0 :: %x\n", stacked_r0);
  309. printf(" stacked_r1 :: %x\n", stacked_r1);
  310. printf(" stacked_r2 :: %x\n", stacked_r2);
  311. printf(" stacked_r3 :: %x\n", stacked_r3);
  312. printf(" stacked_r12 :: %x\n", stacked_r12);
  313. printf(" stacked_lr :: %x\n", stacked_lr);
  314. printf(" stacked_pc :: %x\n", stacked_pc);
  315. printf(" stacked_psr :: %x\n", stacked_psr);
  316. printf(" _CFSR :: %x\n", _CFSR);
  317. if(_CFSR > 0){
  318. //Memory Management Faults
  319. if((_CFSR & 1) == 1){
  320. printf(" (IACCVIOL) Instruction Access Violation\n");
  321. } else if(((_CFSR & (0x02))>>1) == 1){
  322. printf(" (DACCVIOL) Data Access Violation\n");
  323. } else if(((_CFSR & (0x08))>>3) == 1){
  324. printf(" (MUNSTKERR) MemMange Fault on Unstacking\n");
  325. } else if(((_CFSR & (0x10))>>4) == 1){
  326. printf(" (MSTKERR) MemMange Fault on stacking\n");
  327. } else if(((_CFSR & (0x20))>>5) == 1){
  328. printf(" (MLSPERR) MemMange Fault on FP Lazy State\n");
  329. }
  330. if(((_CFSR & (0x80))>>7) == 1){
  331. printf(" (MMARVALID) MemMange Fault Address Valid\n");
  332. }
  333. //Bus Fault Status Register
  334. if(((_CFSR & 0x100)>>8) == 1){
  335. printf(" (IBUSERR) Instruction Bus Error\n");
  336. } else if(((_CFSR & (0x200))>>9) == 1){
  337. printf(" (PRECISERR) Data bus error(address in BFAR)\n");
  338. } else if(((_CFSR & (0x400))>>10) == 1){
  339. printf(" (IMPRECISERR) Data bus error but address not related to instruction\n");
  340. } else if(((_CFSR & (0x800))>>11) == 1){
  341. printf(" (UNSTKERR) Bus Fault on unstacking for a return from exception \n");
  342. } else if(((_CFSR & (0x1000))>>12) == 1){
  343. printf(" (STKERR) Bus Fault on stacking for exception entry\n");
  344. } else if(((_CFSR & (0x2000))>>13) == 1){
  345. printf(" (LSPERR) Bus Fault on FP lazy state preservation\n");
  346. }
  347. if(((_CFSR & (0x8000))>>15) == 1){
  348. printf(" (BFARVALID) Bus Fault Address Valid\n");
  349. }
  350. //Usuage Fault Status Register
  351. if(((_CFSR & 0x10000)>>16) == 1){
  352. printf(" (UNDEFINSTR) Undefined instruction\n");
  353. } else if(((_CFSR & (0x20000))>>17) == 1){
  354. printf(" (INVSTATE) Instruction makes illegal use of EPSR)\n");
  355. } else if(((_CFSR & (0x40000))>>18) == 1){
  356. printf(" (INVPC) Usage fault: invalid EXC_RETURN\n");
  357. } else if(((_CFSR & (0x80000))>>19) == 1){
  358. printf(" (NOCP) No Coprocessor \n");
  359. } else if(((_CFSR & (0x1000000))>>24) == 1){
  360. printf(" (UNALIGNED) Unaligned access UsageFault\n");
  361. } else if(((_CFSR & (0x2000000))>>25) == 1){
  362. printf(" (DIVBYZERO) Divide by zero\n");
  363. }
  364. }
  365. printf(" _HFSR :: %x\n", _HFSR);
  366. if(_HFSR > 0){
  367. //Memory Management Faults
  368. if(((_HFSR & (0x02))>>1) == 1){
  369. printf(" (VECTTBL) Bus Fault on Vec Table Read\n");
  370. } else if(((_HFSR & (0x40000000))>>30) == 1){
  371. printf(" (FORCED) Forced Hard Fault\n");
  372. } else if(((_HFSR & (0x80000000))>>31) == 31){
  373. printf(" (DEBUGEVT) Reserved for Debug\n");
  374. }
  375. }
  376. printf(" _DFSR :: %x\n", _DFSR);
  377. printf(" _AFSR :: %x\n", _AFSR);
  378. printf(" _BFAR :: %x\n", _BFAR);
  379. printf(" _MMAR :: %x\n", _MMAR);
  380. #endif
  381. IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_03 = 5; // pin 13
  382. IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03 = IOMUXC_PAD_DSE(7);
  383. GPIO2_GDIR |= (1 << 3);
  384. GPIO2_DR_SET = (1 << 3);
  385. GPIO2_DR_CLEAR = (1 << 3); //digitalWrite(13, LOW);
  386. if ( F_CPU_ACTUAL >= 600000000 )
  387. set_arm_clock(300000000);
  388. while (1)
  389. {
  390. GPIO2_DR_SET = (1 << 3); //digitalWrite(13, HIGH);
  391. // digitalWrite(13, HIGH);
  392. for (nn = 0; nn < 2000000/2; nn++) ;
  393. GPIO2_DR_CLEAR = (1 << 3); //digitalWrite(13, LOW);
  394. // digitalWrite(13, LOW);
  395. for (nn = 0; nn < 18000000/2; nn++) ;
  396. }
  397. }
  398. __attribute__((weak))
  399. void userDebugDump(){
  400. volatile unsigned int nn;
  401. printf("\nuserDebugDump() in startup.c ___ \n");
  402. while (1)
  403. {
  404. GPIO2_DR_SET = (1 << 3); //digitalWrite(13, HIGH);
  405. // digitalWrite(13, HIGH);
  406. for (nn = 0; nn < 2000000; nn++) ;
  407. GPIO2_DR_CLEAR = (1 << 3); //digitalWrite(13, LOW);
  408. // digitalWrite(13, LOW);
  409. for (nn = 0; nn < 18000000; nn++) ;
  410. GPIO2_DR_SET = (1 << 3); //digitalWrite(13, HIGH);
  411. // digitalWrite(13, HIGH);
  412. for (nn = 0; nn < 20000000; nn++) ;
  413. GPIO2_DR_CLEAR = (1 << 3); //digitalWrite(13, LOW);
  414. // digitalWrite(13, LOW);
  415. for (nn = 0; nn < 10000000; nn++) ;
  416. }
  417. }
  418. __attribute__((weak))
  419. void PJRCunused_interrupt_vector(void)
  420. {
  421. // TODO: polling Serial to complete buffered transmits
  422. #ifdef PRINT_DEBUG_STUFF
  423. uint32_t addr;
  424. asm volatile("mrs %0, ipsr\n" : "=r" (addr)::);
  425. printf("\nirq %d\n", addr & 0x1FF);
  426. asm("ldr %0, [sp, #52]" : "=r" (addr) ::);
  427. printf(" %x\n", addr);
  428. asm("ldr %0, [sp, #48]" : "=r" (addr) ::);
  429. printf(" %x\n", addr);
  430. asm("ldr %0, [sp, #44]" : "=r" (addr) ::);
  431. printf(" %x\n", addr);
  432. asm("ldr %0, [sp, #40]" : "=r" (addr) ::);
  433. printf(" %x\n", addr);
  434. asm("ldr %0, [sp, #36]" : "=r" (addr) ::);
  435. printf(" %x\n", addr);
  436. asm("ldr %0, [sp, #33]" : "=r" (addr) ::);
  437. printf(" %x\n", addr);
  438. asm("ldr %0, [sp, #34]" : "=r" (addr) ::);
  439. printf(" %x\n", addr);
  440. asm("ldr %0, [sp, #28]" : "=r" (addr) ::);
  441. printf(" %x\n", addr);
  442. asm("ldr %0, [sp, #24]" : "=r" (addr) ::);
  443. printf(" %x\n", addr);
  444. asm("ldr %0, [sp, #20]" : "=r" (addr) ::);
  445. printf(" %x\n", addr);
  446. asm("ldr %0, [sp, #16]" : "=r" (addr) ::);
  447. printf(" %x\n", addr);
  448. asm("ldr %0, [sp, #12]" : "=r" (addr) ::);
  449. printf(" %x\n", addr);
  450. asm("ldr %0, [sp, #8]" : "=r" (addr) ::);
  451. printf(" %x\n", addr);
  452. asm("ldr %0, [sp, #4]" : "=r" (addr) ::);
  453. printf(" %x\n", addr);
  454. asm("ldr %0, [sp, #0]" : "=r" (addr) ::);
  455. printf(" %x\n", addr);
  456. #endif
  457. #if 1
  458. if ( F_CPU_ACTUAL >= 600000000 )
  459. set_arm_clock(100000000);
  460. IOMUXC_SW_MUX_CTL_PAD_GPIO_B0_03 = 5; // pin 13
  461. IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03 = IOMUXC_PAD_DSE(7);
  462. GPIO2_GDIR |= (1<<3);
  463. GPIO2_DR_SET = (1<<3);
  464. while (1) {
  465. volatile uint32_t n;
  466. GPIO2_DR_SET = (1<<3); //digitalWrite(13, HIGH);
  467. for (n=0; n < 2000000/6; n++) ;
  468. GPIO2_DR_CLEAR = (1<<3); //digitalWrite(13, LOW);
  469. for (n=0; n < 1500000/6; n++) ;
  470. }
  471. #else
  472. if ( F_CPU_ACTUAL >= 600000000 )
  473. set_arm_clock(100000000);
  474. while (1) asm ("WFI");
  475. #endif
  476. }
  477. __attribute__((section(".startup"), optimize("no-tree-loop-distribute-patterns")))
  478. static void memory_copy(uint32_t *dest, const uint32_t *src, uint32_t *dest_end)
  479. {
  480. if (dest == src) return;
  481. while (dest < dest_end) {
  482. *dest++ = *src++;
  483. }
  484. }
  485. __attribute__((section(".startup"), optimize("no-tree-loop-distribute-patterns")))
  486. static void memory_clear(uint32_t *dest, uint32_t *dest_end)
  487. {
  488. while (dest < dest_end) {
  489. *dest++ = 0;
  490. }
  491. }
  492. // syscall functions need to be in the same C file as the entry point "ResetVector"
  493. // otherwise the linker will discard them in some cases.
  494. #include <errno.h>
  495. // from the linker script
  496. extern unsigned long _heap_start;
  497. extern unsigned long _heap_end;
  498. char *__brkval = (char *)&_heap_start;
  499. void * _sbrk(int incr)
  500. {
  501. char *prev = __brkval;
  502. if (incr != 0) {
  503. if (prev + incr > (char *)&_heap_end) {
  504. errno = ENOMEM;
  505. return (void *)-1;
  506. }
  507. __brkval = prev + incr;
  508. }
  509. return prev;
  510. }
  511. __attribute__((weak))
  512. int _read(int file, char *ptr, int len)
  513. {
  514. return 0;
  515. }
  516. __attribute__((weak))
  517. int _close(int fd)
  518. {
  519. return -1;
  520. }
  521. #include <sys/stat.h>
  522. __attribute__((weak))
  523. int _fstat(int fd, struct stat *st)
  524. {
  525. st->st_mode = S_IFCHR;
  526. return 0;
  527. }
  528. __attribute__((weak))
  529. int _isatty(int fd)
  530. {
  531. return 1;
  532. }
  533. __attribute__((weak))
  534. int _lseek(int fd, long long offset, int whence)
  535. {
  536. return -1;
  537. }
  538. __attribute__((weak))
  539. void _exit(int status)
  540. {
  541. while (1) asm ("WFI");
  542. }
  543. __attribute__((weak))
  544. void __cxa_pure_virtual()
  545. {
  546. while (1) asm ("WFI");
  547. }
  548. __attribute__((weak))
  549. int __cxa_guard_acquire (char *g)
  550. {
  551. return !(*g);
  552. }
  553. __attribute__((weak))
  554. void __cxa_guard_release(char *g)
  555. {
  556. *g = 1;
  557. }
  558. __attribute__((weak))
  559. void abort(void)
  560. {
  561. while (1) asm ("WFI");
  562. }