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.

347 satır
11KB

  1. /* SPDIF for Teensy 3.X
  2. * Copyright (c) 2015, Frank Bösing, f.boesing@gmx.de,
  3. * Thanks to KPC & Paul Stoffregen!
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a copy
  6. * of this software and associated documentation files (the "Software"), to deal
  7. * in the Software without restriction, including without limitation the rights
  8. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. * copies of the Software, and to permit persons to whom the Software is
  10. * furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice, development funding notice, and this permission
  13. * notice shall be included in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21. * THE SOFTWARE.
  22. */
  23. #include "output_spdif.h"
  24. audio_block_t * AudioOutputSPDIF::block_left_1st = NULL;
  25. audio_block_t * AudioOutputSPDIF::block_right_1st = NULL;
  26. audio_block_t * AudioOutputSPDIF::block_left_2nd = NULL;
  27. audio_block_t * AudioOutputSPDIF::block_right_2nd = NULL;
  28. uint16_t AudioOutputSPDIF::block_left_offset = 0;
  29. uint16_t AudioOutputSPDIF::block_right_offset = 0;
  30. bool AudioOutputSPDIF::update_responsibility = false;
  31. DMAMEM static uint32_t SPDIF_tx_buffer[AUDIO_BLOCK_SAMPLES * 4]; //2 KB
  32. DMAChannel AudioOutputSPDIF::dma(false);
  33. static const
  34. uint16_t bmclookup[256] = { //biphase mark encoded values (least significant bit first)
  35. 0xcccc, 0x4ccc, 0x2ccc, 0xaccc, 0x34cc, 0xb4cc, 0xd4cc, 0x54cc,
  36. 0x32cc, 0xb2cc, 0xd2cc, 0x52cc, 0xcacc, 0x4acc, 0x2acc, 0xaacc,
  37. 0x334c, 0xb34c, 0xd34c, 0x534c, 0xcb4c, 0x4b4c, 0x2b4c, 0xab4c,
  38. 0xcd4c, 0x4d4c, 0x2d4c, 0xad4c, 0x354c, 0xb54c, 0xd54c, 0x554c,
  39. 0x332c, 0xb32c, 0xd32c, 0x532c, 0xcb2c, 0x4b2c, 0x2b2c, 0xab2c,
  40. 0xcd2c, 0x4d2c, 0x2d2c, 0xad2c, 0x352c, 0xb52c, 0xd52c, 0x552c,
  41. 0xccac, 0x4cac, 0x2cac, 0xacac, 0x34ac, 0xb4ac, 0xd4ac, 0x54ac,
  42. 0x32ac, 0xb2ac, 0xd2ac, 0x52ac, 0xcaac, 0x4aac, 0x2aac, 0xaaac,
  43. 0x3334, 0xb334, 0xd334, 0x5334, 0xcb34, 0x4b34, 0x2b34, 0xab34,
  44. 0xcd34, 0x4d34, 0x2d34, 0xad34, 0x3534, 0xb534, 0xd534, 0x5534,
  45. 0xccb4, 0x4cb4, 0x2cb4, 0xacb4, 0x34b4, 0xb4b4, 0xd4b4, 0x54b4,
  46. 0x32b4, 0xb2b4, 0xd2b4, 0x52b4, 0xcab4, 0x4ab4, 0x2ab4, 0xaab4,
  47. 0xccd4, 0x4cd4, 0x2cd4, 0xacd4, 0x34d4, 0xb4d4, 0xd4d4, 0x54d4,
  48. 0x32d4, 0xb2d4, 0xd2d4, 0x52d4, 0xcad4, 0x4ad4, 0x2ad4, 0xaad4,
  49. 0x3354, 0xb354, 0xd354, 0x5354, 0xcb54, 0x4b54, 0x2b54, 0xab54,
  50. 0xcd54, 0x4d54, 0x2d54, 0xad54, 0x3554, 0xb554, 0xd554, 0x5554,
  51. 0x3332, 0xb332, 0xd332, 0x5332, 0xcb32, 0x4b32, 0x2b32, 0xab32,
  52. 0xcd32, 0x4d32, 0x2d32, 0xad32, 0x3532, 0xb532, 0xd532, 0x5532,
  53. 0xccb2, 0x4cb2, 0x2cb2, 0xacb2, 0x34b2, 0xb4b2, 0xd4b2, 0x54b2,
  54. 0x32b2, 0xb2b2, 0xd2b2, 0x52b2, 0xcab2, 0x4ab2, 0x2ab2, 0xaab2,
  55. 0xccd2, 0x4cd2, 0x2cd2, 0xacd2, 0x34d2, 0xb4d2, 0xd4d2, 0x54d2,
  56. 0x32d2, 0xb2d2, 0xd2d2, 0x52d2, 0xcad2, 0x4ad2, 0x2ad2, 0xaad2,
  57. 0x3352, 0xb352, 0xd352, 0x5352, 0xcb52, 0x4b52, 0x2b52, 0xab52,
  58. 0xcd52, 0x4d52, 0x2d52, 0xad52, 0x3552, 0xb552, 0xd552, 0x5552,
  59. 0xccca, 0x4cca, 0x2cca, 0xacca, 0x34ca, 0xb4ca, 0xd4ca, 0x54ca,
  60. 0x32ca, 0xb2ca, 0xd2ca, 0x52ca, 0xcaca, 0x4aca, 0x2aca, 0xaaca,
  61. 0x334a, 0xb34a, 0xd34a, 0x534a, 0xcb4a, 0x4b4a, 0x2b4a, 0xab4a,
  62. 0xcd4a, 0x4d4a, 0x2d4a, 0xad4a, 0x354a, 0xb54a, 0xd54a, 0x554a,
  63. 0x332a, 0xb32a, 0xd32a, 0x532a, 0xcb2a, 0x4b2a, 0x2b2a, 0xab2a,
  64. 0xcd2a, 0x4d2a, 0x2d2a, 0xad2a, 0x352a, 0xb52a, 0xd52a, 0x552a,
  65. 0xccaa, 0x4caa, 0x2caa, 0xacaa, 0x34aa, 0xb4aa, 0xd4aa, 0x54aa,
  66. 0x32aa, 0xb2aa, 0xd2aa, 0x52aa, 0xcaaa, 0x4aaa, 0x2aaa, 0xaaaa
  67. };
  68. #define PREAMBLE_B (0xE8) //11101000
  69. #define PREAMBLE_M (0xE2) //11100010
  70. #define PREAMBLE_W (0xE4) //11100100
  71. void AudioOutputSPDIF::begin(void)
  72. {
  73. dma.begin(true); // Allocate the DMA channel first
  74. block_left_1st = NULL;
  75. block_right_1st = NULL;
  76. // TODO: should we set & clear the I2S_TCSR_SR bit here?
  77. config_SPDIF();
  78. CORE_PIN22_CONFIG = PORT_PCR_MUX(6); // pin 22, PTC1, I2S0_TXD0
  79. const int nbytes_mlno = 2 * 4; // 8 Bytes per minor loop
  80. dma.TCD->SADDR = SPDIF_tx_buffer;
  81. dma.TCD->SOFF = 4;
  82. dma.TCD->ATTR = DMA_TCD_ATTR_SSIZE(2) | DMA_TCD_ATTR_DSIZE(2);
  83. dma.TCD->NBYTES_MLNO = nbytes_mlno;
  84. dma.TCD->SLAST = -sizeof(SPDIF_tx_buffer);
  85. dma.TCD->DADDR = &I2S0_TDR0;
  86. dma.TCD->DOFF = 0;
  87. dma.TCD->CITER_ELINKNO = sizeof(SPDIF_tx_buffer) / nbytes_mlno;
  88. dma.TCD->DLASTSGA = 0;
  89. dma.TCD->BITER_ELINKNO = sizeof(SPDIF_tx_buffer) / nbytes_mlno;
  90. dma.TCD->CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  91. dma.triggerAtHardwareEvent(DMAMUX_SOURCE_I2S0_TX);
  92. update_responsibility = update_setup();
  93. dma.enable();
  94. I2S0_TCSR |= I2S_TCSR_TE | I2S_TCSR_BCE | I2S_TCSR_FRDE | I2S_TCSR_FR;
  95. dma.attachInterrupt(isr);
  96. }
  97. /*
  98. http://www.hardwarebook.info/S/PDIF
  99. 1. To make it easier and a bit faster, the parity-bit is always the same.
  100. - With a alternating parity we had to adjust the next subframe. Instead, use a bit from the aux-info as parity.
  101. 2. The buffer is filled with an offset of 1 byte, so the last parity (which is always 0 now (see 1.) ) is written as first byte.
  102. -> A bit easier and faster to construct both subframes.
  103. */
  104. void AudioOutputSPDIF::isr(void)
  105. {
  106. static uint16_t frame = 0;
  107. const int16_t *src;
  108. int32_t *end, *dest;
  109. audio_block_t *block;
  110. uint32_t saddr, offset;
  111. uint16_t sample, lo, hi, aux;
  112. saddr = (uint32_t)(dma.TCD->SADDR);
  113. dma.clearInterrupt();
  114. if (saddr < (uint32_t)SPDIF_tx_buffer + sizeof(SPDIF_tx_buffer) / 2) {
  115. // DMA is transmitting the first half of the buffer
  116. // so we must fill the second half
  117. dest = (int32_t *)&SPDIF_tx_buffer[AUDIO_BLOCK_SAMPLES * 4/2];
  118. end = (int32_t *)&SPDIF_tx_buffer[AUDIO_BLOCK_SAMPLES * 4];
  119. if (AudioOutputSPDIF::update_responsibility) AudioStream::update_all();
  120. } else {
  121. // DMA is transmitting the second half of the buffer
  122. // so we must fill the first half
  123. dest = (int32_t *)SPDIF_tx_buffer;
  124. end = (int32_t *)&SPDIF_tx_buffer[AUDIO_BLOCK_SAMPLES * 4/2];
  125. }
  126. block = AudioOutputSPDIF::block_left_1st;
  127. if (block) {
  128. offset = AudioOutputSPDIF::block_left_offset;
  129. src = &block->data[offset];
  130. do {
  131. sample = *src++;
  132. //Subframe Channel 1
  133. hi = bmclookup[(uint8_t)(sample >> 8)];
  134. lo = bmclookup[(uint8_t) sample];
  135. lo ^= (~((int16_t)hi) >> 16);
  136. // 16 Bit sample:
  137. *(dest+1) = ((uint32_t)lo << 16) | hi;
  138. // 4 Bit Auxillary-audio-databits, the first used as parity
  139. aux = (0xB333 ^ (((uint32_t)((int16_t)lo)) >> 17));
  140. if (++frame > 191) {
  141. // VUCP-Bits ("Valid, Subcode, Channelstatus, Parity) = 0 (0xcc) | Preamble (depends on Framno.) | Auxillary
  142. *(dest+0) = 0xcc000000 | (PREAMBLE_B << 16 ) | aux; //special preamble for one of 192 frames
  143. frame = 0;
  144. } else {
  145. *(dest+0) = 0xcc000000 | (PREAMBLE_M << 16 ) | aux;
  146. }
  147. dest += 4;
  148. } while (dest < end);
  149. offset += AUDIO_BLOCK_SAMPLES/2;
  150. if (offset < AUDIO_BLOCK_SAMPLES) {
  151. AudioOutputSPDIF::block_left_offset = offset;
  152. } else {
  153. AudioOutputSPDIF::block_left_offset = 0;
  154. AudioStream::release(block);
  155. AudioOutputSPDIF::block_left_1st = AudioOutputSPDIF::block_left_2nd;
  156. AudioOutputSPDIF::block_left_2nd = NULL;
  157. }
  158. } else {
  159. do {
  160. if ( ++frame > 191 ) {
  161. *(dest+0) = 0xcce8cccc;
  162. frame = 0;
  163. } else {
  164. *(dest+0) = 0xcce2cccc;
  165. }
  166. *(dest+1) = 0xccccccccUL;
  167. dest +=4;
  168. } while (dest < end);
  169. }
  170. dest -= AUDIO_BLOCK_SAMPLES * 4/2 - 4/2;
  171. block = AudioOutputSPDIF::block_right_1st;
  172. if (block) {
  173. offset = AudioOutputSPDIF::block_right_offset;
  174. src = &block->data[offset];
  175. do {
  176. sample = *src++;
  177. //Subframe Channel 2
  178. hi = bmclookup[(uint8_t)(sample >> 8)];
  179. lo = bmclookup[(uint8_t)sample];
  180. lo ^= (~((int16_t)hi) >> 16);
  181. *(dest+1) = ( ((uint32_t)lo << 16) | hi );
  182. aux = (0xB333 ^ (((uint32_t)((int16_t)lo)) >> 17));
  183. *(dest+0) = 0xcc000000 | (PREAMBLE_W << 16 ) | aux;
  184. dest += 4;
  185. } while (dest < end);
  186. offset += AUDIO_BLOCK_SAMPLES/2;
  187. if (offset < AUDIO_BLOCK_SAMPLES) {
  188. AudioOutputSPDIF::block_right_offset = offset;
  189. } else {
  190. AudioOutputSPDIF::block_right_offset = 0;
  191. AudioStream::release(block);
  192. AudioOutputSPDIF::block_right_1st = AudioOutputSPDIF::block_right_2nd;
  193. AudioOutputSPDIF::block_right_2nd = NULL;
  194. }
  195. } else {
  196. do {
  197. *dest = 0xcce4ccccUL;
  198. *(dest+1) = 0xccccccccUL;
  199. dest += 4 ;
  200. } while (dest < end);
  201. }
  202. }
  203. void AudioOutputSPDIF::update(void)
  204. {
  205. audio_block_t *block;
  206. block = receiveReadOnly(0); // input 0 = left channel
  207. if (block) {
  208. __disable_irq();
  209. if (block_left_1st == NULL) {
  210. block_left_1st = block;
  211. block_left_offset = 0;
  212. __enable_irq();
  213. } else if (block_left_2nd == NULL) {
  214. block_left_2nd = block;
  215. __enable_irq();
  216. } else {
  217. audio_block_t *tmp = block_left_1st;
  218. block_left_1st = block_left_2nd;
  219. block_left_2nd = block;
  220. block_left_offset = 0;
  221. __enable_irq();
  222. release(tmp);
  223. }
  224. }
  225. block = receiveReadOnly(1); // input 1 = right channel
  226. if (block) {
  227. __disable_irq();
  228. if (block_right_1st == NULL) {
  229. block_right_1st = block;
  230. block_right_offset = 0;
  231. __enable_irq();
  232. } else if (block_right_2nd == NULL) {
  233. block_right_2nd = block;
  234. __enable_irq();
  235. } else {
  236. audio_block_t *tmp = block_right_1st;
  237. block_right_1st = block_right_2nd;
  238. block_right_2nd = block;
  239. block_right_offset = 0;
  240. __enable_irq();
  241. release(tmp);
  242. }
  243. }
  244. }
  245. #if F_CPU == 96000000 || F_CPU == 48000000 || F_CPU == 24000000
  246. // PLL is at 96 MHz in these modes
  247. #define MCLK_MULT 2
  248. #define MCLK_DIV 17
  249. #elif F_CPU == 72000000
  250. #define MCLK_MULT 8
  251. #define MCLK_DIV 51
  252. #elif F_CPU == 120000000
  253. #define MCLK_MULT 8
  254. #define MCLK_DIV 85
  255. #elif F_CPU == 144000000
  256. #define MCLK_MULT 4
  257. #define MCLK_DIV 51
  258. #elif F_CPU == 168000000
  259. #define MCLK_MULT 8
  260. #define MCLK_DIV 119
  261. #elif F_CPU == 16000000
  262. #define MCLK_MULT 12
  263. #define MCLK_DIV 17
  264. #else
  265. #error "This CPU Clock Speed is not supported by the Audio library";
  266. #endif
  267. #if F_CPU >= 20000000
  268. #define MCLK_SRC 3 // the PLL
  269. #else
  270. #define MCLK_SRC 0 // system clock
  271. #endif
  272. void AudioOutputSPDIF::config_SPDIF(void)
  273. {
  274. SIM_SCGC6 |= SIM_SCGC6_I2S;
  275. SIM_SCGC7 |= SIM_SCGC7_DMA;
  276. SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
  277. // enable MCLK output
  278. I2S0_MCR = I2S_MCR_MICS(MCLK_SRC) | I2S_MCR_MOE;
  279. I2S0_MDR = I2S_MDR_FRACT((MCLK_MULT-1)) | I2S_MDR_DIVIDE((MCLK_DIV-1));
  280. // configure transmitter
  281. I2S0_TMR = 0;
  282. I2S0_TCR1 = I2S_TCR1_TFW(1); // watermark
  283. I2S0_TCR2 = I2S_TCR2_SYNC(0) | I2S_TCR2_MSEL(1) | I2S_TCR2_BCD | I2S_TCR2_DIV(0);
  284. I2S0_TCR3 = I2S_TCR3_TCE;
  285. //4 Words per Frame 32 Bit Word-Length -> 128 Bit Frame-Length, MSB First:
  286. I2S0_TCR4 = I2S_TCR4_FRSZ(3) | I2S_TCR4_SYWD(0) | I2S_TCR4_MF | I2S_TCR4_FSP | I2S_TCR4_FSD;
  287. I2S0_TCR5 = I2S_TCR5_WNW(31) | I2S_TCR5_W0W(31) | I2S_TCR5_FBT(31);
  288. I2S0_RCSR = 0;
  289. #if 0
  290. // configure pin mux for 3 clock signals (debug only)
  291. CORE_PIN23_CONFIG = PORT_PCR_MUX(6); // pin 23, PTC2, I2S0_TX_FS (LRCLK)
  292. CORE_PIN9_CONFIG = PORT_PCR_MUX(6); // pin 9, PTC3, I2S0_TX_BCLK
  293. // CORE_PIN11_CONFIG = PORT_PCR_MUX(6); // pin 11, PTC6, I2S0_MCLK
  294. #endif
  295. }