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.

output_i2s2.cpp 10KB

5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
5 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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. static uint32_t i2s2_tx_buffer[AUDIO_BLOCK_SAMPLES];
  38. DMAChannel AudioOutputI2S2::dma(false);
  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. return;
  99. }
  100. if (offsetL < AUDIO_BLOCK_SAMPLES) {
  101. AudioOutputI2S2::block_left_offset = offsetL;
  102. } else {
  103. AudioOutputI2S2::block_left_offset = 0;
  104. AudioStream::release(blockL);
  105. AudioOutputI2S2::block_left_1st = AudioOutputI2S2::block_left_2nd;
  106. AudioOutputI2S2::block_left_2nd = NULL;
  107. }
  108. if (offsetR < AUDIO_BLOCK_SAMPLES) {
  109. AudioOutputI2S2::block_right_offset = offsetR;
  110. } else {
  111. AudioOutputI2S2::block_right_offset = 0;
  112. AudioStream::release(blockR);
  113. AudioOutputI2S2::block_right_1st = AudioOutputI2S2::block_right_2nd;
  114. AudioOutputI2S2::block_right_2nd = NULL;
  115. }
  116. }
  117. void AudioOutputI2S2::update(void)
  118. {
  119. // null audio device: discard all incoming data
  120. //if (!active) return;
  121. //audio_block_t *block = receiveReadOnly();
  122. //if (block) release(block);
  123. audio_block_t *block;
  124. block = receiveReadOnly(0); // input 0 = left channel
  125. if (block) {
  126. __disable_irq();
  127. if (block_left_1st == NULL) {
  128. block_left_1st = block;
  129. block_left_offset = 0;
  130. __enable_irq();
  131. } else if (block_left_2nd == NULL) {
  132. block_left_2nd = block;
  133. __enable_irq();
  134. } else {
  135. audio_block_t *tmp = block_left_1st;
  136. block_left_1st = block_left_2nd;
  137. block_left_2nd = block;
  138. block_left_offset = 0;
  139. __enable_irq();
  140. release(tmp);
  141. }
  142. }
  143. block = receiveReadOnly(1); // input 1 = right channel
  144. if (block) {
  145. __disable_irq();
  146. if (block_right_1st == NULL) {
  147. block_right_1st = block;
  148. block_right_offset = 0;
  149. __enable_irq();
  150. } else if (block_right_2nd == NULL) {
  151. block_right_2nd = block;
  152. __enable_irq();
  153. } else {
  154. audio_block_t *tmp = block_right_1st;
  155. block_right_1st = block_right_2nd;
  156. block_right_2nd = block;
  157. block_right_offset = 0;
  158. __enable_irq();
  159. release(tmp);
  160. }
  161. }
  162. }
  163. void AudioOutputI2S2::config_i2s(void)
  164. {
  165. CCM_CCGR5 |= CCM_CCGR5_SAI2(CCM_CCGR_ON);
  166. //PLL:
  167. int fs = AUDIO_SAMPLE_RATE_EXACT;
  168. // PLL between 27*24 = 648MHz und 54*24=1296MHz
  169. int n1 = 4; //SAI prescaler 4 => (n1*n2) = multiple of 4
  170. int n2 = 1 + (24000000 * 27) / (fs * 256 * n1);
  171. double C = ((double)fs * 256 * n1 * n2) / 24000000;
  172. int c0 = C;
  173. int c2 = 10000;
  174. int c1 = C * c2 - (c0 * c2);
  175. set_audioClock(c0, c1, c2);
  176. // clear SAI2_CLK register locations
  177. CCM_CSCMR1 = (CCM_CSCMR1 & ~(CCM_CSCMR1_SAI2_CLK_SEL_MASK))
  178. | CCM_CSCMR1_SAI2_CLK_SEL(2); // &0x03 // (0,1,2): PLL3PFD0, PLL5, PLL4,
  179. CCM_CS2CDR = (CCM_CS2CDR & ~(CCM_CS2CDR_SAI2_CLK_PRED_MASK | CCM_CS2CDR_SAI2_CLK_PODF_MASK))
  180. | CCM_CS2CDR_SAI2_CLK_PRED(n1-1)
  181. | CCM_CS2CDR_SAI2_CLK_PODF(n2-1);
  182. IOMUXC_GPR_GPR1 = (IOMUXC_GPR_GPR1 & ~(IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL_MASK))
  183. | (IOMUXC_GPR_GPR1_SAI2_MCLK_DIR | IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL(0)); //Select MCLK
  184. // if either transmitter or receiver is enabled, do nothing
  185. if (I2S2_TCSR & I2S_TCSR_TE) return;
  186. if (I2S2_RCSR & I2S_RCSR_RE) return;
  187. CORE_PIN5_CONFIG = 2; //2:MCLK
  188. CORE_PIN4_CONFIG = 2; //2:TX_BCLK
  189. CORE_PIN3_CONFIG = 2; //2:TX_SYNC
  190. // CORE_PIN2_CONFIG = 2; //2:TX_DATA0
  191. // CORE_PIN33_CONFIG = 2; //2:RX_DATA0
  192. int rsync = 1;
  193. int tsync = 0;
  194. I2S2_TMR = 0;
  195. //I2S2_TCSR = (1<<25); //Reset
  196. I2S2_TCR1 = I2S_TCR1_RFW(1);
  197. I2S2_TCR2 = I2S_TCR2_SYNC(tsync) | I2S_TCR2_BCP // sync=0; tx is async;
  198. | (I2S_TCR2_BCD | I2S_TCR2_DIV((1)) | I2S_TCR2_MSEL(1));
  199. I2S2_TCR3 = I2S_TCR3_TCE;
  200. I2S2_TCR4 = I2S_TCR4_FRSZ((2-1)) | I2S_TCR4_SYWD((32-1)) | I2S_TCR4_MF | I2S_TCR4_FSD | I2S_TCR4_FSE | I2S_TCR4_FSP;
  201. I2S2_TCR5 = I2S_TCR5_WNW((32-1)) | I2S_TCR5_W0W((32-1)) | I2S_TCR5_FBT((32-1));
  202. I2S2_RMR = 0;
  203. //I2S2_RCSR = (1<<25); //Reset
  204. I2S2_RCR1 = I2S_RCR1_RFW(1);
  205. I2S2_RCR2 = I2S_RCR2_SYNC(rsync) | I2S_RCR2_BCP // sync=0; rx is async;
  206. | (I2S_RCR2_BCD | I2S_RCR2_DIV((1)) | I2S_RCR2_MSEL(1));
  207. I2S2_RCR3 = I2S_RCR3_RCE;
  208. I2S2_RCR4 = I2S_RCR4_FRSZ((2-1)) | I2S_RCR4_SYWD((32-1)) | I2S_RCR4_MF | I2S_RCR4_FSE | I2S_RCR4_FSP | I2S_RCR4_FSD;
  209. I2S2_RCR5 = I2S_RCR5_WNW((32-1)) | I2S_RCR5_W0W((32-1)) | I2S_RCR5_FBT((32-1));
  210. }
  211. /******************************************************************/
  212. #if 0
  213. void AudioOutputI2S2slave::begin(void)
  214. {
  215. dma.begin(true); // Allocate the DMA channel first
  216. //pinMode(2, OUTPUT);
  217. block_left_1st = NULL;
  218. block_right_1st = NULL;
  219. AudioOutputI2S2slave::config_i2s();
  220. CORE_PIN2_CONFIG = 2; //2:TX_DATA0
  221. //CORE_PIN33_CONFIG = 2; //2:RX_DATA0
  222. dma.TCD->SADDR = i2s2_tx_buffer;
  223. dma.TCD->SOFF = 2;
  224. dma.TCD->ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  225. dma.TCD->NBYTES_MLNO = 2;
  226. dma.TCD->SLAST = -sizeof(i2s2_tx_buffer);
  227. dma.TCD->DADDR = (void *)((uint32_t)&I2S2_TDR0 + 2);
  228. dma.TCD->DOFF = 0;
  229. dma.TCD->CITER_ELINKNO = sizeof(i2s2_tx_buffer) / 2;
  230. dma.TCD->DLASTSGA = 0;
  231. dma.TCD->BITER_ELINKNO = sizeof(i2s2_tx_buffer) / 2;
  232. dma.triggerAtHardwareEvent(DMAMUX_SOURCE_SAI2_TX);
  233. update_responsibility = update_setup();
  234. dma.enable();
  235. dma.attachInterrupt(isr);
  236. }
  237. void AudioOutputI2S2slave::config_i2s(void)
  238. {
  239. if (I2S2_TCSR & I2S_TCSR_TE) return;
  240. if (I2S2_TCSR & I2S_RCSR_RE) return;
  241. CCM_CCGR5 |= CCM_CCGR5_SAI2(CCM_CCGR_ON);
  242. /*
  243. CCM_CSCMR1 = (CCM_CSCMR1 & ~(CCM_CSCMR1_SAI2_CLK_SEL_MASK))
  244. | CCM_CSCMR1_SAI2_CLK_SEL(2); // &0x03 // (0,1,2): PLL3PFD0, PLL5, PLL4,
  245. CCM_CS2CDR = (CCM_CS2CDR & ~(CCM_CS2CDR_SAI2_CLK_PRED_MASK | CCM_CS2CDR_SAI2_CLK_PODF_MASK))
  246. | CCM_CS2CDR_SAI2_CLK_PRED(n1-1) | CCM_CS2CDR_SAI2_CLK_PODF(n2-1);
  247. */
  248. // IOMUXC_GPR_GPR1 = (IOMUXC_GPR_GPR1 & ~(IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL_MASK | ((uint32_t)(1<<19)) ))
  249. // /*| (IOMUXC_GPR_GPR1_SAI2_MCLK_DIR*/ | IOMUXC_GPR_GPR1_SAI2_MCLK3_SEL(0); //Select MCLK
  250. CORE_PIN5_CONFIG = 2; //2:MCLK
  251. CORE_PIN4_CONFIG = 2; //2:TX_BCLK
  252. CORE_PIN3_CONFIG = 2; //2:TX_SYNC
  253. int rsync = 1;
  254. int tsync = 0;
  255. // configure transmitter
  256. I2S2_TMR = 0;
  257. I2S2_TCR1 = I2S_TCR1_RFW(1); // watermark at half fifo size
  258. I2S2_TCR2 = I2S_TCR2_SYNC(tsync) | I2S_TCR2_BCP;
  259. I2S2_TCR3 = I2S_TCR3_TCE;
  260. I2S2_TCR4 = I2S_TCR4_FRSZ(1) | I2S_TCR4_SYWD(31) | I2S_TCR4_MF
  261. | I2S_TCR4_FSE | I2S_TCR4_FSP;
  262. I2S2_TCR5 = I2S_TCR5_WNW(31) | I2S_TCR5_W0W(31) | I2S_TCR5_FBT(31);
  263. // configure receiver
  264. I2S2_TMR = 0;
  265. I2S2_TCR1 = I2S_RCR1_RFW(1);
  266. I2S2_TCR2 = I2S_RCR2_SYNC(rsync) | I2S_TCR2_BCP;
  267. I2S2_TCR3 = I2S_RCR3_RCE;
  268. I2S2_TCR4 = I2S_RCR4_FRSZ(1) | I2S_RCR4_SYWD(31) | I2S_RCR4_MF
  269. | I2S_RCR4_FSE | I2S_RCR4_FSP | I2S_RCR4_FSD;
  270. I2S2_TCR5 = I2S_RCR5_WNW(31) | I2S_RCR5_W0W(31) | I2S_RCR5_FBT(31);
  271. }
  272. #endif
  273. #endif //defined(__IMXRT1062__)