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.

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