Teensy 4.1 core updated for C++20
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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