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.

193 satır
5.8KB

  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. #include "output_pwm.h"
  27. audio_block_t * AudioOutputPWM::block_1st = NULL;
  28. audio_block_t * AudioOutputPWM::block_2nd = NULL;
  29. uint32_t AudioOutputPWM::block_offset = 0;
  30. bool AudioOutputPWM::update_responsibility = false;
  31. uint8_t AudioOutputPWM::interrupt_count = 0;
  32. DMAMEM uint32_t pwm_dma_buffer[AUDIO_BLOCK_SAMPLES*2];
  33. DMAChannel AudioOutputPWM::dma(false);
  34. // TODO: this code assumes F_BUS is 48 MHz.
  35. // supporting other speeds is not easy, but should be done someday
  36. void AudioOutputPWM::begin(void)
  37. {
  38. dma.begin(true); // Allocate the DMA channel first
  39. //Serial.println("AudioPwmOutput constructor");
  40. block_1st = NULL;
  41. FTM1_SC = 0;
  42. FTM1_CNT = 0;
  43. FTM1_MOD = 543;
  44. FTM1_C0SC = 0x69; // send DMA request on match
  45. FTM1_C1SC = 0x28;
  46. FTM1_SC = FTM_SC_CLKS(1) | FTM_SC_PS(0);
  47. CORE_PIN3_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  48. CORE_PIN4_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  49. FTM1_C0V = 120; // range 120 to 375
  50. FTM1_C1V = 0; // range 0 to 255
  51. for (int i=0; i<256; i+=2) {
  52. pwm_dma_buffer[i] = 120; // zero must not be used
  53. pwm_dma_buffer[i+1] = 0;
  54. }
  55. dma.TCD->SADDR = pwm_dma_buffer;
  56. dma.TCD->SOFF = 4;
  57. dma.TCD->ATTR = DMA_TCD_ATTR_SSIZE(2)
  58. | DMA_TCD_ATTR_DSIZE(2) | DMA_TCD_ATTR_DMOD(4);
  59. dma.TCD->NBYTES_MLNO = 8;
  60. dma.TCD->SLAST = -sizeof(pwm_dma_buffer);
  61. dma.TCD->DADDR = &FTM1_C0V;
  62. dma.TCD->DOFF = 8;
  63. dma.TCD->CITER_ELINKNO = sizeof(pwm_dma_buffer) / 8;
  64. dma.TCD->DLASTSGA = 0;
  65. dma.TCD->BITER_ELINKNO = sizeof(pwm_dma_buffer) / 8;
  66. dma.TCD->CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  67. dma.triggerAtHardwareEvent(DMAMUX_SOURCE_FTM1_CH0);
  68. dma.enable();
  69. update_responsibility = update_setup();
  70. dma.attachInterrupt(isr);
  71. }
  72. void AudioOutputPWM::update(void)
  73. {
  74. audio_block_t *block;
  75. block = receiveReadOnly();
  76. if (!block) return;
  77. __disable_irq();
  78. if (block_1st == NULL) {
  79. block_1st = block;
  80. block_offset = 0;
  81. __enable_irq();
  82. } else if (block_2nd == NULL) {
  83. block_2nd = block;
  84. __enable_irq();
  85. } else {
  86. audio_block_t *tmp = block_1st;
  87. block_1st = block_2nd;
  88. block_2nd = block;
  89. block_offset = 0;
  90. __enable_irq();
  91. release(tmp);
  92. }
  93. }
  94. void AudioOutputPWM::isr(void)
  95. {
  96. int16_t *src;
  97. uint32_t *dest;
  98. audio_block_t *block;
  99. uint32_t saddr, offset;
  100. saddr = (uint32_t)(dma.TCD->SADDR);
  101. dma.clearInterrupt();
  102. if (saddr < (uint32_t)pwm_dma_buffer + sizeof(pwm_dma_buffer) / 2) {
  103. // DMA is transmitting the first half of the buffer
  104. // so we must fill the second half
  105. dest = &pwm_dma_buffer[AUDIO_BLOCK_SAMPLES];
  106. } else {
  107. // DMA is transmitting the second half of the buffer
  108. // so we must fill the first half
  109. dest = pwm_dma_buffer;
  110. }
  111. block = AudioOutputPWM::block_1st;
  112. offset = AudioOutputPWM::block_offset;
  113. if (block) {
  114. src = &block->data[offset];
  115. for (int i=0; i < AUDIO_BLOCK_SAMPLES/4; i++) {
  116. uint16_t sample = *src++ + 0x8000;
  117. uint32_t msb = ((sample >> 8) & 255) + 120;
  118. uint32_t lsb = sample & 255;
  119. *dest++ = msb;
  120. *dest++ = lsb;
  121. *dest++ = msb;
  122. *dest++ = lsb;
  123. }
  124. offset += AUDIO_BLOCK_SAMPLES/4;
  125. if (offset < AUDIO_BLOCK_SAMPLES) {
  126. AudioOutputPWM::block_offset = offset;
  127. } else {
  128. AudioOutputPWM::block_offset = 0;
  129. AudioStream::release(block);
  130. AudioOutputPWM::block_1st = AudioOutputPWM::block_2nd;
  131. AudioOutputPWM::block_2nd = NULL;
  132. }
  133. } else {
  134. // fill with silence when no data available
  135. for (int i=0; i < AUDIO_BLOCK_SAMPLES/4; i++) {
  136. *dest++ = 248;
  137. *dest++ = 0;
  138. *dest++ = 248;
  139. *dest++ = 0;
  140. }
  141. }
  142. if (AudioOutputPWM::update_responsibility) {
  143. if (++AudioOutputPWM::interrupt_count >= 4) {
  144. AudioOutputPWM::interrupt_count = 0;
  145. AudioStream::update_all();
  146. }
  147. }
  148. }
  149. // DMA target is: (registers require 32 bit writes)
  150. // 40039010 Channel 0 Value (FTM1_C0V)
  151. // 40039018 Channel 1 Value (FTM1_C1V)
  152. // TCD:
  153. // source address = buffer address
  154. // source offset = 4 bytes
  155. // attr = no src mod, ssize = 32 bit, dest mod = 16 bytes (4), dsize = 32 bit
  156. // minor loop byte count = 8
  157. // source last adjust = -sizeof(buffer)
  158. // dest address = FTM1_C0V
  159. // dest address offset = 8
  160. // citer = sizeof(buffer) / 8 (no minor loop linking)
  161. // dest last adjust = 0 (dest modulo keeps it ready for more)
  162. // control:
  163. // throttling = 0
  164. // major link to same channel
  165. // done = 0
  166. // active = 0
  167. // majorlink = 1
  168. // scatter/gather = 0
  169. // disable request = 0
  170. // inthalf = 1
  171. // intmajor = 1
  172. // start = 0
  173. // biter = sizeof(buffer) / 8 (no minor loop linking)