Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

316 Zeilen
10KB

  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #if defined(__IMXRT1052__) || defined(__IMXRT1062__)
  27. #include <Arduino.h>
  28. #include "output_i2s2.h"
  29. #include "memcpy_audio.h"
  30. audio_block_t * AudioOutputI2S2::block_left_1st = NULL;
  31. audio_block_t * AudioOutputI2S2::block_right_1st = NULL;
  32. audio_block_t * AudioOutputI2S2::block_left_2nd = NULL;
  33. audio_block_t * AudioOutputI2S2::block_right_2nd = NULL;
  34. uint16_t AudioOutputI2S2::block_left_offset = 0;
  35. uint16_t AudioOutputI2S2::block_right_offset = 0;
  36. bool AudioOutputI2S2::update_responsibility = false;
  37. DMAChannel AudioOutputI2S2::dma(false);
  38. DMAMEM __attribute__((aligned(32))) static uint32_t i2s2_tx_buffer[AUDIO_BLOCK_SAMPLES];
  39. #include "utility/imxrt_hw.h"
  40. void AudioOutputI2S2::begin(void)
  41. {
  42. dma.begin(true); // Allocate the DMA channel first
  43. block_left_1st = NULL;
  44. block_right_1st = NULL;
  45. config_i2s();
  46. CORE_PIN2_CONFIG = 2; //2:TX_DATA0
  47. dma.TCD->SADDR = i2s2_tx_buffer;
  48. dma.TCD->SOFF = 2;
  49. dma.TCD->ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  50. dma.TCD->NBYTES_MLNO = 2;
  51. dma.TCD->SLAST = -sizeof(i2s2_tx_buffer);
  52. dma.TCD->DOFF = 0;
  53. dma.TCD->CITER_ELINKNO = sizeof(i2s2_tx_buffer) / 2;
  54. dma.TCD->DLASTSGA = 0;
  55. dma.TCD->BITER_ELINKNO = sizeof(i2s2_tx_buffer) / 2;
  56. dma.TCD->CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  57. dma.TCD->DADDR = (void *)((uint32_t)&I2S2_TDR0 + 2);
  58. dma.triggerAtHardwareEvent(DMAMUX_SOURCE_SAI2_TX);
  59. // I2S2_RCSR |= I2S_RCSR_RE;
  60. I2S2_TCSR |= I2S_TCSR_TE | I2S_TCSR_BCE | I2S_TCSR_FRDE;
  61. update_responsibility = update_setup();
  62. dma.attachInterrupt(isr);
  63. dma.enable();
  64. }
  65. void AudioOutputI2S2::isr(void)
  66. {
  67. int16_t *dest;
  68. audio_block_t *blockL, *blockR;
  69. uint32_t saddr, offsetL, offsetR;
  70. saddr = (uint32_t)(dma.TCD->SADDR);
  71. dma.clearInterrupt();
  72. if (saddr < (uint32_t)i2s2_tx_buffer + sizeof(i2s2_tx_buffer) / 2) {
  73. // DMA is transmitting the first half of the buffer
  74. // so we must fill the second half
  75. dest = (int16_t *)&i2s2_tx_buffer[AUDIO_BLOCK_SAMPLES/2];
  76. if (AudioOutputI2S2::update_responsibility) AudioStream::update_all();
  77. } else {
  78. // DMA is transmitting the second half of the buffer
  79. // so we must fill the first half
  80. dest = (int16_t *)i2s2_tx_buffer;
  81. }
  82. blockL = AudioOutputI2S2::block_left_1st;
  83. blockR = AudioOutputI2S2::block_right_1st;
  84. offsetL = AudioOutputI2S2::block_left_offset;
  85. offsetR = AudioOutputI2S2::block_right_offset;
  86. if (blockL && blockR) {
  87. memcpy_tointerleaveLR(dest, blockL->data + offsetL, blockR->data + offsetR);
  88. offsetL += AUDIO_BLOCK_SAMPLES / 2;
  89. offsetR += AUDIO_BLOCK_SAMPLES / 2;
  90. } else if (blockL) {
  91. memcpy_tointerleaveL(dest, blockL->data + offsetL);
  92. offsetL += AUDIO_BLOCK_SAMPLES / 2;
  93. } else if (blockR) {
  94. memcpy_tointerleaveR(dest, blockR->data + offsetR);
  95. offsetR += AUDIO_BLOCK_SAMPLES / 2;
  96. } else {
  97. memset(dest,0,AUDIO_BLOCK_SAMPLES * 2);
  98. }
  99. #if IMXRT_CACHE_ENABLED >= 2
  100. arm_dcache_flush_delete(dest, sizeof(i2s2_tx_buffer) / 2 );
  101. #endif
  102. if (offsetL < AUDIO_BLOCK_SAMPLES) {
  103. AudioOutputI2S2::block_left_offset = offsetL;
  104. } else {
  105. AudioOutputI2S2::block_left_offset = 0;
  106. AudioStream::release(blockL);
  107. AudioOutputI2S2::block_left_1st = AudioOutputI2S2::block_left_2nd;
  108. AudioOutputI2S2::block_left_2nd = NULL;
  109. }
  110. if (offsetR < AUDIO_BLOCK_SAMPLES) {
  111. AudioOutputI2S2::block_right_offset = offsetR;
  112. } else {
  113. AudioOutputI2S2::block_right_offset = 0;
  114. AudioStream::release(blockR);
  115. AudioOutputI2S2::block_right_1st = AudioOutputI2S2::block_right_2nd;
  116. AudioOutputI2S2::block_right_2nd = NULL;
  117. }
  118. }
  119. void AudioOutputI2S2::update(void)
  120. {
  121. // null audio device: discard all incoming data
  122. //if (!active) return;
  123. //audio_block_t *block = receiveReadOnly();
  124. //if (block) release(block);
  125. audio_block_t *block;
  126. block = receiveReadOnly(0); // input 0 = left channel
  127. if (block) {
  128. __disable_irq();
  129. if (block_left_1st == NULL) {
  130. block_left_1st = block;
  131. block_left_offset = 0;
  132. __enable_irq();
  133. } else if (block_left_2nd == NULL) {
  134. block_left_2nd = block;
  135. __enable_irq();
  136. } else {
  137. audio_block_t *tmp = block_left_1st;
  138. block_left_1st = block_left_2nd;
  139. block_left_2nd = block;
  140. block_left_offset = 0;
  141. __enable_irq();
  142. release(tmp);
  143. }
  144. }
  145. block = receiveReadOnly(1); // input 1 = right channel
  146. if (block) {
  147. __disable_irq();
  148. if (block_right_1st == NULL) {
  149. block_right_1st = block;
  150. block_right_offset = 0;
  151. __enable_irq();
  152. } else if (block_right_2nd == NULL) {
  153. block_right_2nd = block;
  154. __enable_irq();
  155. } else {
  156. audio_block_t *tmp = block_right_1st;
  157. block_right_1st = block_right_2nd;
  158. block_right_2nd = block;
  159. block_right_offset = 0;
  160. __enable_irq();
  161. release(tmp);
  162. }
  163. }
  164. }
  165. void AudioOutputI2S2::config_i2s(void)
  166. {
  167. CCM_CCGR5 |= CCM_CCGR5_SAI2(CCM_CCGR_ON);
  168. //PLL:
  169. int fs = AUDIO_SAMPLE_RATE_EXACT;
  170. // PLL between 27*24 = 648MHz und 54*24=1296MHz
  171. int n1 = 4; //SAI prescaler 4 => (n1*n2) = multiple of 4
  172. int n2 = 1 + (24000000 * 27) / (fs * 256 * n1);
  173. double C = ((double)fs * 256 * n1 * n2) / 24000000;
  174. int c0 = C;
  175. int c2 = 10000;
  176. int c1 = C * c2 - (c0 * c2);
  177. set_audioClock(c0, c1, c2);
  178. // clear SAI2_CLK register locations
  179. CCM_CSCMR1 = (CCM_CSCMR1 & ~(CCM_CSCMR1_SAI2_CLK_SEL_MASK))
  180. | CCM_CSCMR1_SAI2_CLK_SEL(2); // &0x03 // (0,1,2): PLL3PFD0, PLL5, PLL4,
  181. CCM_CS2CDR = (CCM_CS2CDR & ~(CCM_CS2CDR_SAI2_CLK_PRED_MASK | CCM_CS2CDR_SAI2_CLK_PODF_MASK))
  182. | CCM_CS2CDR_SAI2_CLK_PRED(n1-1)
  183. | CCM_CS2CDR_SAI2_CLK_PODF(n2-1);
  184. IOMUXC_GPR_GPR1 = (IOMUXC_GPR_GPR1 & ~(IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL_MASK))
  185. | (IOMUXC_GPR_GPR1_SAI2_MCLK_DIR | IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL(0)); //Select MCLK
  186. // if either transmitter or receiver is enabled, do nothing
  187. if (I2S2_TCSR & I2S_TCSR_TE) return;
  188. if (I2S2_RCSR & I2S_RCSR_RE) return;
  189. CORE_PIN5_CONFIG = 2; //2:MCLK
  190. CORE_PIN4_CONFIG = 2; //2:TX_BCLK
  191. CORE_PIN3_CONFIG = 2; //2:TX_SYNC
  192. // CORE_PIN2_CONFIG = 2; //2:TX_DATA0
  193. // CORE_PIN33_CONFIG = 2; //2:RX_DATA0
  194. int rsync = 1;
  195. int tsync = 0;
  196. I2S2_TMR = 0;
  197. //I2S2_TCSR = (1<<25); //Reset
  198. I2S2_TCR1 = I2S_TCR1_RFW(1);
  199. I2S2_TCR2 = I2S_TCR2_SYNC(tsync) | I2S_TCR2_BCP // sync=0; tx is async;
  200. | (I2S_TCR2_BCD | I2S_TCR2_DIV((1)) | I2S_TCR2_MSEL(1));
  201. I2S2_TCR3 = I2S_TCR3_TCE;
  202. I2S2_TCR4 = I2S_TCR4_FRSZ((2-1)) | I2S_TCR4_SYWD((32-1)) | I2S_TCR4_MF | I2S_TCR4_FSD | I2S_TCR4_FSE | I2S_TCR4_FSP;
  203. I2S2_TCR5 = I2S_TCR5_WNW((32-1)) | I2S_TCR5_W0W((32-1)) | I2S_TCR5_FBT((32-1));
  204. I2S2_RMR = 0;
  205. //I2S2_RCSR = (1<<25); //Reset
  206. I2S2_RCR1 = I2S_RCR1_RFW(1);
  207. I2S2_RCR2 = I2S_RCR2_SYNC(rsync) | I2S_RCR2_BCP // sync=0; rx is async;
  208. | (I2S_RCR2_BCD | I2S_RCR2_DIV((1)) | I2S_RCR2_MSEL(1));
  209. I2S2_RCR3 = I2S_RCR3_RCE;
  210. I2S2_RCR4 = I2S_RCR4_FRSZ((2-1)) | I2S_RCR4_SYWD((32-1)) | I2S_RCR4_MF | I2S_RCR4_FSE | I2S_RCR4_FSP | I2S_RCR4_FSD;
  211. I2S2_RCR5 = I2S_RCR5_WNW((32-1)) | I2S_RCR5_W0W((32-1)) | I2S_RCR5_FBT((32-1));
  212. }
  213. /******************************************************************/
  214. #if 0
  215. void AudioOutputI2S2slave::begin(void)
  216. {
  217. dma.begin(true); // Allocate the DMA channel first
  218. //pinMode(2, OUTPUT);
  219. block_left_1st = NULL;
  220. block_right_1st = NULL;
  221. AudioOutputI2S2slave::config_i2s();
  222. CORE_PIN2_CONFIG = 2; //2:TX_DATA0
  223. //CORE_PIN33_CONFIG = 2; //2:RX_DATA0
  224. dma.TCD->SADDR = i2s2_tx_buffer;
  225. dma.TCD->SOFF = 2;
  226. dma.TCD->ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  227. dma.TCD->NBYTES_MLNO = 2;
  228. dma.TCD->SLAST = -sizeof(i2s2_tx_buffer);
  229. dma.TCD->DADDR = (void *)((uint32_t)&I2S2_TDR0 + 2);
  230. dma.TCD->DOFF = 0;
  231. dma.TCD->CITER_ELINKNO = sizeof(i2s2_tx_buffer) / 2;
  232. dma.TCD->DLASTSGA = 0;
  233. dma.TCD->BITER_ELINKNO = sizeof(i2s2_tx_buffer) / 2;
  234. dma.triggerAtHardwareEvent(DMAMUX_SOURCE_SAI2_TX);
  235. update_responsibility = update_setup();
  236. dma.enable();
  237. dma.attachInterrupt(isr);
  238. }
  239. void AudioOutputI2S2slave::config_i2s(void)
  240. {
  241. if (I2S2_TCSR & I2S_TCSR_TE) return;
  242. if (I2S2_TCSR & I2S_RCSR_RE) return;
  243. CCM_CCGR5 |= CCM_CCGR5_SAI2(CCM_CCGR_ON);
  244. /*
  245. CCM_CSCMR1 = (CCM_CSCMR1 & ~(CCM_CSCMR1_SAI2_CLK_SEL_MASK))
  246. | CCM_CSCMR1_SAI2_CLK_SEL(2); // &0x03 // (0,1,2): PLL3PFD0, PLL5, PLL4,
  247. CCM_CS2CDR = (CCM_CS2CDR & ~(CCM_CS2CDR_SAI2_CLK_PRED_MASK | CCM_CS2CDR_SAI2_CLK_PODF_MASK))
  248. | CCM_CS2CDR_SAI2_CLK_PRED(n1-1) | CCM_CS2CDR_SAI2_CLK_PODF(n2-1);
  249. */
  250. // IOMUXC_GPR_GPR1 = (IOMUXC_GPR_GPR1 & ~(IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL_MASK | ((uint32_t)(1<<19)) ))
  251. // /*| (IOMUXC_GPR_GPR1_SAI2_MCLK_DIR*/ | IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL(0); //Select MCLK
  252. CORE_PIN5_CONFIG = 2; //2:MCLK
  253. CORE_PIN4_CONFIG = 2; //2:TX_BCLK
  254. CORE_PIN3_CONFIG = 2; //2:TX_SYNC
  255. int rsync = 1;
  256. int tsync = 0;
  257. // configure transmitter
  258. I2S2_TMR = 0;
  259. I2S2_TCR1 = I2S_TCR1_RFW(1); // watermark at half fifo size
  260. I2S2_TCR2 = I2S_TCR2_SYNC(tsync) | I2S_TCR2_BCP;
  261. I2S2_TCR3 = I2S_TCR3_TCE;
  262. I2S2_TCR4 = I2S_TCR4_FRSZ(1) | I2S_TCR4_SYWD(31) | I2S_TCR4_MF
  263. | I2S_TCR4_FSE | I2S_TCR4_FSP;
  264. I2S2_TCR5 = I2S_TCR5_WNW(31) | I2S_TCR5_W0W(31) | I2S_TCR5_FBT(31);
  265. // configure receiver
  266. I2S2_TMR = 0;
  267. I2S2_TCR1 = I2S_RCR1_RFW(1);
  268. I2S2_TCR2 = I2S_RCR2_SYNC(rsync) | I2S_TCR2_BCP;
  269. I2S2_TCR3 = I2S_RCR3_RCE;
  270. I2S2_TCR4 = I2S_RCR4_FRSZ(1) | I2S_RCR4_SYWD(31) | I2S_RCR4_MF
  271. | I2S_RCR4_FSE | I2S_RCR4_FSP | I2S_RCR4_FSD;
  272. I2S2_TCR5 = I2S_RCR5_WNW(31) | I2S_RCR5_W0W(31) | I2S_RCR5_FBT(31);
  273. }
  274. #endif
  275. #endif //defined(__IMXRT1062__)