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.

2818 line
78KB

  1. #include "Audio.h"
  2. #include "arm_math.h"
  3. static arm_cfft_radix4_instance_q15 fft_inst;
  4. void AudioAnalyzeFFT256::init(void)
  5. {
  6. // TODO: replace this with static const version
  7. arm_cfft_radix4_init_q15(&fft_inst, 256, 0, 1);
  8. //for (int i=0; i<2048; i++) {
  9. //buffer[i] = i * 3;
  10. //}
  11. //__disable_irq();
  12. //ARM_DEMCR |= ARM_DEMCR_TRCENA;
  13. //ARM_DWT_CTRL |= ARM_DWT_CTRL_CYCCNTENA;
  14. //uint32_t n = ARM_DWT_CYCCNT;
  15. //arm_cfft_radix2_q15(&fft_inst, buffer);
  16. //n = ARM_DWT_CYCCNT - n;
  17. //__enable_irq();
  18. //cycles = n;
  19. //arm_cmplx_mag_q15(buffer, buffer, 512);
  20. // each audio block is 278525 cycles @ 96 MHz
  21. // 256 point fft2 takes 65408 cycles
  22. // 256 point fft4 takes 49108 cycles
  23. // 128 point cmag takes 10999 cycles
  24. // 1024 point fft2 takes 125948 cycles
  25. // 1024 point fft4 takes 125840 cycles
  26. // 512 point cmag takes 43764 cycles
  27. //state = 0;
  28. //outputflag = false;
  29. }
  30. static void copy_to_fft_buffer(void *destination, const void *source)
  31. {
  32. const int16_t *src = (const int16_t *)source;
  33. int16_t *dst = (int16_t *)destination;
  34. // TODO: optimize this
  35. for (int i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
  36. *dst++ = *src++; // real
  37. *dst++ = 0; // imaginary
  38. }
  39. }
  40. // computes limit((val >> rshift), 2**bits)
  41. static inline int32_t signed_saturate_rshift(int32_t val, int bits, int rshift) __attribute__((always_inline));
  42. static inline int32_t signed_saturate_rshift(int32_t val, int bits, int rshift)
  43. {
  44. int32_t out;
  45. asm volatile("ssat %0, %1, %2, asr %3" : "=r" (out) : "I" (bits), "r" (val), "I" (rshift));
  46. return out;
  47. }
  48. static void apply_window_to_fft_buffer(void *buffer, const void *window)
  49. {
  50. int16_t *buf = (int16_t *)buffer;
  51. const int16_t *win = (int16_t *)window;;
  52. for (int i=0; i < 256; i++) {
  53. int32_t val = *buf * *win++;
  54. //*buf = signed_saturate_rshift(val, 16, 15);
  55. *buf = val >> 15;
  56. buf += 2;
  57. }
  58. }
  59. void AudioAnalyzeFFT256::update(void)
  60. {
  61. audio_block_t *block;
  62. block = receiveReadOnly();
  63. if (!block) return;
  64. if (!prevblock) {
  65. prevblock = block;
  66. return;
  67. }
  68. copy_to_fft_buffer(buffer, prevblock->data);
  69. copy_to_fft_buffer(buffer+256, block->data);
  70. //window = AudioWindowBlackmanNuttall256;
  71. //window = NULL;
  72. if (window) apply_window_to_fft_buffer(buffer, window);
  73. arm_cfft_radix4_q15(&fft_inst, buffer);
  74. // TODO: is this averaging correct? G. Heinzel's paper says we're
  75. // supposed to average the magnitude squared, then do the square
  76. // root at the end after dividing by naverage.
  77. arm_cmplx_mag_q15(buffer, buffer, 128);
  78. if (count == 0) {
  79. for (int i=0; i < 128; i++) {
  80. output[i] = buffer[i];
  81. }
  82. } else {
  83. for (int i=0; i < 128; i++) {
  84. output[i] += buffer[i];
  85. }
  86. }
  87. if (++count == naverage) {
  88. count = 0;
  89. for (int i=0; i < 128; i++) {
  90. output[i] /= naverage;
  91. }
  92. outputflag = true;
  93. }
  94. release(prevblock);
  95. prevblock = block;
  96. #if 0
  97. block = receiveReadOnly();
  98. if (state == 0) {
  99. //Serial.print("0");
  100. if (block == NULL) return;
  101. copy_to_fft_buffer(buffer, block->data);
  102. state = 1;
  103. } else if (state == 1) {
  104. //Serial.print("1");
  105. if (block == NULL) return;
  106. copy_to_fft_buffer(buffer+256, block->data);
  107. arm_cfft_radix4_q15(&fft_inst, buffer);
  108. state = 2;
  109. } else {
  110. //Serial.print("2");
  111. arm_cmplx_mag_q15(buffer, output, 128);
  112. outputflag = true;
  113. if (block == NULL) return;
  114. copy_to_fft_buffer(buffer, block->data);
  115. state = 1;
  116. }
  117. release(block);
  118. #endif
  119. }
  120. /******************************************************************/
  121. void AudioSynthWaveform::update(void)
  122. {
  123. audio_block_t *block;
  124. uint32_t i, ph, inc, index, scale;
  125. int32_t val1, val2, val3;
  126. //Serial.println("AudioSynthWaveform::update");
  127. if (magnitude > 0 && (block = allocate()) != NULL) {
  128. ph = phase;
  129. inc = phase_increment;
  130. for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
  131. index = ph >> 24;
  132. val1 = wavetable[index];
  133. val2 = wavetable[index+1];
  134. scale = (ph >> 8) & 0xFFFF;
  135. val2 *= scale;
  136. val1 *= 0xFFFF - scale;
  137. val3 = (val1 + val2) >> 16;
  138. block->data[i] = (val3 * magnitude) >> 15;
  139. //Serial.print(block->data[i]);
  140. //Serial.print(", ");
  141. //if ((i % 12) == 11) Serial.println();
  142. ph += inc;
  143. }
  144. //Serial.println();
  145. phase = ph;
  146. transmit(block);
  147. release(block);
  148. } else {
  149. // is this numerical overflow ok?
  150. phase += phase_increment * AUDIO_BLOCK_SAMPLES;
  151. }
  152. }
  153. #if 0
  154. void AudioSineWaveMod::frequency(float f)
  155. {
  156. if (f > AUDIO_SAMPLE_RATE_EXACT / 2 || f < 0.0) return;
  157. phase_increment = (f / AUDIO_SAMPLE_RATE_EXACT) * 4294967296.0f;
  158. }
  159. void AudioSineWaveMod::update(void)
  160. {
  161. audio_block_t *block, *modinput;
  162. uint32_t i, ph, inc, index, scale;
  163. int32_t val1, val2;
  164. //Serial.println("AudioSineWave::update");
  165. modinput = receiveReadOnly();
  166. ph = phase;
  167. inc = phase_increment;
  168. block = allocate();
  169. if (!block) {
  170. // unable to allocate memory, so we'll send nothing
  171. if (modinput) {
  172. // but if we got modulation data, update the phase
  173. for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
  174. ph += inc + modinput->data[i] * modulation_factor;
  175. }
  176. release(modinput);
  177. } else {
  178. ph += phase_increment * AUDIO_BLOCK_SAMPLES;
  179. }
  180. phase = ph;
  181. return;
  182. }
  183. if (modinput) {
  184. for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
  185. index = ph >> 24;
  186. val1 = sine_table[index];
  187. val2 = sine_table[index+1];
  188. scale = (ph >> 8) & 0xFFFF;
  189. val2 *= scale;
  190. val1 *= 0xFFFF - scale;
  191. block->data[i] = (val1 + val2) >> 16;
  192. //Serial.print(block->data[i]);
  193. //Serial.print(", ");
  194. //if ((i % 12) == 11) Serial.println();
  195. ph += inc + modinput->data[i] * modulation_factor;
  196. }
  197. release(modinput);
  198. } else {
  199. ph = phase;
  200. inc = phase_increment;
  201. for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
  202. index = ph >> 24;
  203. val1 = sine_table[index];
  204. val2 = sine_table[index+1];
  205. scale = (ph >> 8) & 0xFFFF;
  206. val2 *= scale;
  207. val1 *= 0xFFFF - scale;
  208. block->data[i] = (val1 + val2) >> 16;
  209. //Serial.print(block->data[i]);
  210. //Serial.print(", ");
  211. //if ((i % 12) == 11) Serial.println();
  212. ph += inc;
  213. }
  214. }
  215. phase = ph;
  216. transmit(block);
  217. release(block);
  218. }
  219. #endif
  220. /******************************************************************/
  221. void AudioPrint::update(void)
  222. {
  223. audio_block_t *block;
  224. uint32_t i;
  225. Serial.println("AudioPrint::update");
  226. Serial.println(name);
  227. block = receiveReadOnly();
  228. if (block) {
  229. for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
  230. Serial.print(block->data[i]);
  231. Serial.print(", ");
  232. if ((i % 12) == 11) Serial.println();
  233. }
  234. Serial.println();
  235. release(block);
  236. }
  237. }
  238. /******************************************************************/
  239. audio_block_t * AudioOutputPWM::block_1st = NULL;
  240. audio_block_t * AudioOutputPWM::block_2nd = NULL;
  241. uint32_t AudioOutputPWM::block_offset = 0;
  242. bool AudioOutputPWM::update_responsibility = false;
  243. uint8_t AudioOutputPWM::interrupt_count = 0;
  244. DMAMEM uint32_t pwm_dma_buffer[AUDIO_BLOCK_SAMPLES*2];
  245. void AudioOutputPWM::begin(void)
  246. {
  247. //Serial.println("AudioPwmOutput constructor");
  248. block_1st = NULL;
  249. FTM1_SC = 0;
  250. FTM1_CNT = 0;
  251. FTM1_MOD = 543;
  252. FTM1_C0SC = 0x69; // send DMA request on match
  253. FTM1_C1SC = 0x28;
  254. FTM1_SC = FTM_SC_CLKS(1) | FTM_SC_PS(0);
  255. CORE_PIN3_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  256. CORE_PIN4_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_DSE | PORT_PCR_SRE;
  257. FTM1_C0V = 120; // range 120 to 375
  258. FTM1_C1V = 0; // range 0 to 255
  259. for (int i=0; i<256; i+=2) {
  260. pwm_dma_buffer[i] = 120; // zero must not be used
  261. pwm_dma_buffer[i+1] = 0;
  262. }
  263. SIM_SCGC7 |= SIM_SCGC7_DMA;
  264. SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
  265. DMA_CR = 0;
  266. DMA_TCD3_SADDR = pwm_dma_buffer;
  267. DMA_TCD3_SOFF = 4;
  268. DMA_TCD3_ATTR = DMA_TCD_ATTR_SSIZE(2) | DMA_TCD_ATTR_DSIZE(2) | DMA_TCD_ATTR_DMOD(4);
  269. DMA_TCD3_NBYTES_MLNO = 8;
  270. DMA_TCD3_SLAST = -sizeof(pwm_dma_buffer);
  271. DMA_TCD3_DADDR = &FTM1_C0V;
  272. DMA_TCD3_DOFF = 8;
  273. DMA_TCD3_CITER_ELINKNO = sizeof(pwm_dma_buffer) / 8;
  274. DMA_TCD3_DLASTSGA = 0;
  275. DMA_TCD3_BITER_ELINKNO = sizeof(pwm_dma_buffer) / 8;
  276. DMA_TCD3_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  277. DMAMUX0_CHCFG3 = DMAMUX_DISABLE;
  278. DMAMUX0_CHCFG3 = DMAMUX_SOURCE_FTM1_CH0 | DMAMUX_ENABLE;
  279. DMA_SERQ = 3;
  280. update_responsibility = update_setup();
  281. NVIC_ENABLE_IRQ(IRQ_DMA_CH3);
  282. }
  283. void AudioOutputPWM::update(void)
  284. {
  285. audio_block_t *block;
  286. block = receiveReadOnly();
  287. if (!block) return;
  288. __disable_irq();
  289. if (block_1st == NULL) {
  290. block_1st = block;
  291. block_offset = 0;
  292. __enable_irq();
  293. } else if (block_2nd == NULL) {
  294. block_2nd = block;
  295. __enable_irq();
  296. } else {
  297. audio_block_t *tmp = block_1st;
  298. block_1st = block_2nd;
  299. block_2nd = block;
  300. block_offset = 0;
  301. __enable_irq();
  302. release(tmp);
  303. }
  304. }
  305. void dma_ch3_isr(void)
  306. {
  307. int16_t *src;
  308. uint32_t *dest;
  309. audio_block_t *block;
  310. uint32_t saddr, offset;
  311. saddr = (uint32_t)DMA_TCD3_SADDR;
  312. DMA_CINT = 3;
  313. if (saddr < (uint32_t)pwm_dma_buffer + sizeof(pwm_dma_buffer) / 2) {
  314. // DMA is transmitting the first half of the buffer
  315. // so we must fill the second half
  316. dest = &pwm_dma_buffer[AUDIO_BLOCK_SAMPLES];
  317. } else {
  318. // DMA is transmitting the second half of the buffer
  319. // so we must fill the first half
  320. dest = pwm_dma_buffer;
  321. }
  322. block = AudioOutputPWM::block_1st;
  323. offset = AudioOutputPWM::block_offset;
  324. if (block) {
  325. src = &block->data[offset];
  326. for (int i=0; i < AUDIO_BLOCK_SAMPLES/4; i++) {
  327. uint16_t sample = *src++ + 0x8000;
  328. uint32_t msb = ((sample >> 8) & 255) + 120;
  329. uint32_t lsb = sample & 255;
  330. *dest++ = msb;
  331. *dest++ = lsb;
  332. *dest++ = msb;
  333. *dest++ = lsb;
  334. }
  335. offset += AUDIO_BLOCK_SAMPLES/4;
  336. if (offset < AUDIO_BLOCK_SAMPLES) {
  337. AudioOutputPWM::block_offset = offset;
  338. } else {
  339. AudioOutputPWM::block_offset = 0;
  340. AudioStream::release(block);
  341. AudioOutputPWM::block_1st = AudioOutputPWM::block_2nd;
  342. AudioOutputPWM::block_2nd = NULL;
  343. }
  344. } else {
  345. // fill with silence when no data available
  346. for (int i=0; i < AUDIO_BLOCK_SAMPLES/4; i++) {
  347. *dest++ = 248;
  348. *dest++ = 0;
  349. *dest++ = 248;
  350. *dest++ = 0;
  351. }
  352. }
  353. if (AudioOutputPWM::update_responsibility) {
  354. if (++AudioOutputPWM::interrupt_count >= 4) {
  355. AudioOutputPWM::interrupt_count = 0;
  356. AudioStream::update_all();
  357. }
  358. }
  359. }
  360. // DMA target is: (registers require 32 bit writes)
  361. // 40039010 Channel 0 Value (FTM1_C0V)
  362. // 40039018 Channel 1 Value (FTM1_C1V)
  363. // TCD:
  364. // source address = buffer address
  365. // source offset = 4 bytes
  366. // attr = no src mod, ssize = 32 bit, dest mod = 16 bytes (4), dsize = 32 bit
  367. // minor loop byte count = 8
  368. // source last adjust = -sizeof(buffer)
  369. // dest address = FTM1_C0V
  370. // dest address offset = 8
  371. // citer = sizeof(buffer) / 8 (no minor loop linking)
  372. // dest last adjust = 0 (dest modulo keeps it ready for more)
  373. // control:
  374. // throttling = 0
  375. // major link to same channel
  376. // done = 0
  377. // active = 0
  378. // majorlink = 1
  379. // scatter/gather = 0
  380. // disable request = 0
  381. // inthalf = 1
  382. // intmajor = 1
  383. // start = 0
  384. // biter = sizeof(buffer) / 8 (no minor loop linking)
  385. /******************************************************************/
  386. // MCLK needs to be 48e6 / 1088 * 256 = 11.29411765 MHz -> 44.117647 kHz sample rate
  387. // Possible to create using fractional divider for all USB-compatible Kinetis:
  388. // MCLK = 16e6 * 12 / 17
  389. // MCLK = 24e6 * 8 / 17
  390. // MCLK = 48e6 * 4 / 17
  391. // MCLK = 72e6 * 8 / 51
  392. // MCLK = 96e6 * 2 / 17
  393. // MCLK = 120e6 * 8 / 85
  394. // TODO: instigate using I2S0_MCR to select the crystal directly instead of the system
  395. // clock, which has audio band jitter from the PLL
  396. audio_block_t * AudioOutputI2S::block_left_1st = NULL;
  397. audio_block_t * AudioOutputI2S::block_right_1st = NULL;
  398. audio_block_t * AudioOutputI2S::block_left_2nd = NULL;
  399. audio_block_t * AudioOutputI2S::block_right_2nd = NULL;
  400. uint16_t AudioOutputI2S::block_left_offset = 0;
  401. uint16_t AudioOutputI2S::block_right_offset = 0;
  402. bool AudioOutputI2S::update_responsibility = false;
  403. DMAMEM static uint32_t i2s_tx_buffer[AUDIO_BLOCK_SAMPLES];
  404. void AudioOutputI2S::begin(void)
  405. {
  406. //pinMode(2, OUTPUT);
  407. block_left_1st = NULL;
  408. block_right_1st = NULL;
  409. config_i2s();
  410. CORE_PIN22_CONFIG = PORT_PCR_MUX(6); // pin 22, PTC1, I2S0_TXD0
  411. DMA_CR = 0;
  412. DMA_TCD0_SADDR = i2s_tx_buffer;
  413. DMA_TCD0_SOFF = 2;
  414. DMA_TCD0_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  415. DMA_TCD0_NBYTES_MLNO = 2;
  416. DMA_TCD0_SLAST = -sizeof(i2s_tx_buffer);
  417. DMA_TCD0_DADDR = &I2S0_TDR0;
  418. DMA_TCD0_DOFF = 0;
  419. DMA_TCD0_CITER_ELINKNO = sizeof(i2s_tx_buffer) / 2;
  420. DMA_TCD0_DLASTSGA = 0;
  421. DMA_TCD0_BITER_ELINKNO = sizeof(i2s_tx_buffer) / 2;
  422. DMA_TCD0_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  423. DMAMUX0_CHCFG0 = DMAMUX_DISABLE;
  424. DMAMUX0_CHCFG0 = DMAMUX_SOURCE_I2S0_TX | DMAMUX_ENABLE;
  425. update_responsibility = update_setup();
  426. DMA_SERQ = 0;
  427. I2S0_TCSR |= I2S_TCSR_TE | I2S_TCSR_BCE | I2S_TCSR_FRDE | I2S_TCSR_FR;
  428. NVIC_ENABLE_IRQ(IRQ_DMA_CH0);
  429. }
  430. void dma_ch0_isr(void)
  431. {
  432. const int16_t *src, *end;
  433. int16_t *dest;
  434. audio_block_t *block;
  435. uint32_t saddr, offset;
  436. saddr = (uint32_t)DMA_TCD0_SADDR;
  437. DMA_CINT = 0;
  438. if (saddr < (uint32_t)i2s_tx_buffer + sizeof(i2s_tx_buffer) / 2) {
  439. // DMA is transmitting the first half of the buffer
  440. // so we must fill the second half
  441. dest = (int16_t *)&i2s_tx_buffer[AUDIO_BLOCK_SAMPLES/2];
  442. end = (int16_t *)&i2s_tx_buffer[AUDIO_BLOCK_SAMPLES];
  443. if (AudioOutputI2S::update_responsibility) AudioStream::update_all();
  444. } else {
  445. // DMA is transmitting the second half of the buffer
  446. // so we must fill the first half
  447. dest = (int16_t *)i2s_tx_buffer;
  448. end = (int16_t *)&i2s_tx_buffer[AUDIO_BLOCK_SAMPLES/2];
  449. }
  450. // TODO: these copy routines could be merged and optimized, maybe in assembly?
  451. block = AudioOutputI2S::block_left_1st;
  452. if (block) {
  453. offset = AudioOutputI2S::block_left_offset;
  454. src = &block->data[offset];
  455. do {
  456. *dest = *src++;
  457. dest += 2;
  458. } while (dest < end);
  459. offset += AUDIO_BLOCK_SAMPLES/2;
  460. if (offset < AUDIO_BLOCK_SAMPLES) {
  461. AudioOutputI2S::block_left_offset = offset;
  462. } else {
  463. AudioOutputI2S::block_left_offset = 0;
  464. AudioStream::release(block);
  465. AudioOutputI2S::block_left_1st = AudioOutputI2S::block_left_2nd;
  466. AudioOutputI2S::block_left_2nd = NULL;
  467. }
  468. } else {
  469. do {
  470. *dest = 0;
  471. dest += 2;
  472. } while (dest < end);
  473. }
  474. dest -= AUDIO_BLOCK_SAMPLES - 1;
  475. block = AudioOutputI2S::block_right_1st;
  476. if (block) {
  477. offset = AudioOutputI2S::block_right_offset;
  478. src = &block->data[offset];
  479. do {
  480. *dest = *src++;
  481. dest += 2;
  482. } while (dest < end);
  483. offset += AUDIO_BLOCK_SAMPLES/2;
  484. if (offset < AUDIO_BLOCK_SAMPLES) {
  485. AudioOutputI2S::block_right_offset = offset;
  486. } else {
  487. AudioOutputI2S::block_right_offset = 0;
  488. AudioStream::release(block);
  489. AudioOutputI2S::block_right_1st = AudioOutputI2S::block_right_2nd;
  490. AudioOutputI2S::block_right_2nd = NULL;
  491. }
  492. } else {
  493. do {
  494. *dest = 0;
  495. dest += 2;
  496. } while (dest < end);
  497. }
  498. }
  499. void AudioOutputI2S::update(void)
  500. {
  501. // null audio device: discard all incoming data
  502. //if (!active) return;
  503. //audio_block_t *block = receiveReadOnly();
  504. //if (block) release(block);
  505. audio_block_t *block;
  506. block = receiveReadOnly(0); // input 0 = left channel
  507. if (block) {
  508. __disable_irq();
  509. if (block_left_1st == NULL) {
  510. block_left_1st = block;
  511. block_left_offset = 0;
  512. __enable_irq();
  513. } else if (block_left_2nd == NULL) {
  514. block_left_2nd = block;
  515. __enable_irq();
  516. } else {
  517. audio_block_t *tmp = block_left_1st;
  518. block_left_1st = block_left_2nd;
  519. block_left_2nd = block;
  520. block_left_offset = 0;
  521. __enable_irq();
  522. release(tmp);
  523. }
  524. }
  525. block = receiveReadOnly(1); // input 1 = right channel
  526. if (block) {
  527. __disable_irq();
  528. if (block_right_1st == NULL) {
  529. block_right_1st = block;
  530. block_right_offset = 0;
  531. __enable_irq();
  532. } else if (block_right_2nd == NULL) {
  533. block_right_2nd = block;
  534. __enable_irq();
  535. } else {
  536. audio_block_t *tmp = block_right_1st;
  537. block_right_1st = block_right_2nd;
  538. block_right_2nd = block;
  539. block_right_offset = 0;
  540. __enable_irq();
  541. release(tmp);
  542. }
  543. }
  544. }
  545. void AudioOutputI2S::config_i2s(void)
  546. {
  547. SIM_SCGC6 |= SIM_SCGC6_I2S;
  548. SIM_SCGC7 |= SIM_SCGC7_DMA;
  549. SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
  550. // if either transmitter or receiver is enabled, do nothing
  551. if (I2S0_TCSR & I2S_TCSR_TE) return;
  552. if (I2S0_RCSR & I2S_RCSR_RE) return;
  553. // enable MCLK output
  554. I2S0_MCR = I2S_MCR_MICS(3) | I2S_MCR_MOE;
  555. I2S0_MDR = I2S_MDR_FRACT(1) | I2S_MDR_DIVIDE(16);
  556. // configure transmitter
  557. I2S0_TMR = 0;
  558. I2S0_TCR1 = I2S_TCR1_TFW(1); // watermark at half fifo size
  559. I2S0_TCR2 = I2S_TCR2_SYNC(0) | I2S_TCR2_BCP | I2S_TCR2_MSEL(1)
  560. | I2S_TCR2_BCD | I2S_TCR2_DIV(3);
  561. I2S0_TCR3 = I2S_TCR3_TCE;
  562. I2S0_TCR4 = I2S_TCR4_FRSZ(1) | I2S_TCR4_SYWD(15) | I2S_TCR4_MF
  563. | I2S_TCR4_FSE | I2S_TCR4_FSP | I2S_TCR4_FSD;
  564. I2S0_TCR5 = I2S_TCR5_WNW(15) | I2S_TCR5_W0W(15) | I2S_TCR5_FBT(15);
  565. // configure receiver (sync'd to transmitter clocks)
  566. I2S0_RMR = 0;
  567. I2S0_RCR1 = I2S_RCR1_RFW(1);
  568. I2S0_RCR2 = I2S_RCR2_SYNC(1) | I2S_TCR2_BCP | I2S_RCR2_MSEL(1)
  569. | I2S_RCR2_BCD | I2S_RCR2_DIV(3);
  570. I2S0_RCR3 = I2S_RCR3_RCE;
  571. I2S0_RCR4 = I2S_RCR4_FRSZ(1) | I2S_RCR4_SYWD(15) | I2S_RCR4_MF
  572. | I2S_RCR4_FSE | I2S_RCR4_FSP | I2S_RCR4_FSD;
  573. I2S0_RCR5 = I2S_RCR5_WNW(15) | I2S_RCR5_W0W(15) | I2S_RCR5_FBT(15);
  574. // configure pin mux for 3 clock signals
  575. CORE_PIN23_CONFIG = PORT_PCR_MUX(6); // pin 23, PTC2, I2S0_TX_FS (LRCLK)
  576. CORE_PIN9_CONFIG = PORT_PCR_MUX(6); // pin 9, PTC3, I2S0_TX_BCLK
  577. CORE_PIN11_CONFIG = PORT_PCR_MUX(6); // pin 11, PTC6, I2S0_MCLK
  578. }
  579. /******************************************************************/
  580. void AudioOutputI2Sslave::begin(void)
  581. {
  582. //pinMode(2, OUTPUT);
  583. block_left_1st = NULL;
  584. block_right_1st = NULL;
  585. AudioOutputI2Sslave::config_i2s();
  586. CORE_PIN22_CONFIG = PORT_PCR_MUX(6); // pin 22, PTC1, I2S0_TXD0
  587. DMA_CR = 0;
  588. DMA_TCD0_SADDR = i2s_tx_buffer;
  589. DMA_TCD0_SOFF = 2;
  590. DMA_TCD0_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  591. DMA_TCD0_NBYTES_MLNO = 2;
  592. DMA_TCD0_SLAST = -sizeof(i2s_tx_buffer);
  593. DMA_TCD0_DADDR = &I2S0_TDR0;
  594. DMA_TCD0_DOFF = 0;
  595. DMA_TCD0_CITER_ELINKNO = sizeof(i2s_tx_buffer) / 2;
  596. DMA_TCD0_DLASTSGA = 0;
  597. DMA_TCD0_BITER_ELINKNO = sizeof(i2s_tx_buffer) / 2;
  598. DMA_TCD0_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  599. DMAMUX0_CHCFG0 = DMAMUX_DISABLE;
  600. DMAMUX0_CHCFG0 = DMAMUX_SOURCE_I2S0_TX | DMAMUX_ENABLE;
  601. update_responsibility = update_setup();
  602. DMA_SERQ = 0;
  603. I2S0_TCSR |= I2S_TCSR_TE | I2S_TCSR_BCE | I2S_TCSR_FRDE | I2S_TCSR_FR;
  604. NVIC_ENABLE_IRQ(IRQ_DMA_CH0);
  605. }
  606. void AudioOutputI2Sslave::config_i2s(void)
  607. {
  608. SIM_SCGC6 |= SIM_SCGC6_I2S;
  609. SIM_SCGC7 |= SIM_SCGC7_DMA;
  610. SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
  611. // if either transmitter or receiver is enabled, do nothing
  612. if (I2S0_TCSR & I2S_TCSR_TE) return;
  613. if (I2S0_RCSR & I2S_RCSR_RE) return;
  614. // Select input clock 0
  615. // Configure to input the bit-clock from pin, bypasses the MCLK divider
  616. I2S0_MCR = I2S_MCR_MICS(0);
  617. I2S0_MDR = 0;
  618. // configure transmitter
  619. I2S0_TMR = 0;
  620. I2S0_TCR1 = I2S_TCR1_TFW(1); // watermark at half fifo size
  621. I2S0_TCR2 = I2S_TCR2_SYNC(0) | I2S_TCR2_BCP;
  622. I2S0_TCR3 = I2S_TCR3_TCE;
  623. I2S0_TCR4 = I2S_TCR4_FRSZ(1) | I2S_TCR4_SYWD(15) | I2S_TCR4_MF
  624. | I2S_TCR4_FSE | I2S_TCR4_FSP;
  625. I2S0_TCR5 = I2S_TCR5_WNW(15) | I2S_TCR5_W0W(15) | I2S_TCR5_FBT(15);
  626. // configure receiver (sync'd to transmitter clocks)
  627. I2S0_RMR = 0;
  628. I2S0_RCR1 = I2S_RCR1_RFW(1);
  629. I2S0_RCR2 = I2S_RCR2_SYNC(1) | I2S_TCR2_BCP;
  630. I2S0_RCR3 = I2S_RCR3_RCE;
  631. I2S0_RCR4 = I2S_RCR4_FRSZ(1) | I2S_RCR4_SYWD(15) | I2S_RCR4_MF
  632. | I2S_RCR4_FSE | I2S_RCR4_FSP | I2S_RCR4_FSD;
  633. I2S0_RCR5 = I2S_RCR5_WNW(15) | I2S_RCR5_W0W(15) | I2S_RCR5_FBT(15);
  634. // configure pin mux for 3 clock signals
  635. CORE_PIN23_CONFIG = PORT_PCR_MUX(6); // pin 23, PTC2, I2S0_TX_FS (LRCLK)
  636. CORE_PIN9_CONFIG = PORT_PCR_MUX(6); // pin 9, PTC3, I2S0_TX_BCLK
  637. CORE_PIN11_CONFIG = PORT_PCR_MUX(6); // pin 11, PTC6, I2S0_MCLK
  638. }
  639. /******************************************************************/
  640. DMAMEM static uint32_t i2s_rx_buffer[AUDIO_BLOCK_SAMPLES];
  641. audio_block_t * AudioInputI2S::block_left = NULL;
  642. audio_block_t * AudioInputI2S::block_right = NULL;
  643. uint16_t AudioInputI2S::block_offset = 0;
  644. bool AudioInputI2S::update_responsibility = false;
  645. void AudioInputI2S::begin(void)
  646. {
  647. //block_left_1st = NULL;
  648. //block_right_1st = NULL;
  649. //pinMode(3, OUTPUT);
  650. //digitalWriteFast(3, HIGH);
  651. //delayMicroseconds(500);
  652. //digitalWriteFast(3, LOW);
  653. AudioOutputI2S::config_i2s();
  654. CORE_PIN13_CONFIG = PORT_PCR_MUX(4); // pin 13, PTC5, I2S0_RXD0
  655. DMA_CR = 0;
  656. DMA_TCD1_SADDR = &I2S0_RDR0;
  657. DMA_TCD1_SOFF = 0;
  658. DMA_TCD1_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  659. DMA_TCD1_NBYTES_MLNO = 2;
  660. DMA_TCD1_SLAST = 0;
  661. DMA_TCD1_DADDR = i2s_rx_buffer;
  662. DMA_TCD1_DOFF = 2;
  663. DMA_TCD1_CITER_ELINKNO = sizeof(i2s_rx_buffer) / 2;
  664. DMA_TCD1_DLASTSGA = -sizeof(i2s_rx_buffer);
  665. DMA_TCD1_BITER_ELINKNO = sizeof(i2s_rx_buffer) / 2;
  666. DMA_TCD1_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  667. DMAMUX0_CHCFG1 = DMAMUX_DISABLE;
  668. DMAMUX0_CHCFG1 = DMAMUX_SOURCE_I2S0_RX | DMAMUX_ENABLE;
  669. update_responsibility = update_setup();
  670. DMA_SERQ = 1;
  671. // TODO: is I2S_RCSR_BCE appropriate if sync'd to transmitter clock?
  672. //I2S0_RCSR |= I2S_RCSR_RE | I2S_RCSR_BCE | I2S_RCSR_FRDE | I2S_RCSR_FR;
  673. I2S0_RCSR |= I2S_RCSR_RE | I2S_RCSR_FRDE | I2S_RCSR_FR;
  674. NVIC_ENABLE_IRQ(IRQ_DMA_CH1);
  675. }
  676. void dma_ch1_isr(void)
  677. {
  678. uint32_t daddr, offset;
  679. const int16_t *src, *end;
  680. int16_t *dest_left, *dest_right;
  681. audio_block_t *left, *right;
  682. //digitalWriteFast(3, HIGH);
  683. daddr = (uint32_t)DMA_TCD1_DADDR;
  684. DMA_CINT = 1;
  685. if (daddr < (uint32_t)i2s_rx_buffer + sizeof(i2s_rx_buffer) / 2) {
  686. // DMA is receiving to the first half of the buffer
  687. // need to remove data from the second half
  688. src = (int16_t *)&i2s_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  689. end = (int16_t *)&i2s_rx_buffer[AUDIO_BLOCK_SAMPLES];
  690. if (AudioInputI2S::update_responsibility) AudioStream::update_all();
  691. } else {
  692. // DMA is receiving to the second half of the buffer
  693. // need to remove data from the first half
  694. src = (int16_t *)&i2s_rx_buffer[0];
  695. end = (int16_t *)&i2s_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  696. }
  697. left = AudioInputI2S::block_left;
  698. right = AudioInputI2S::block_right;
  699. if (left != NULL && right != NULL) {
  700. offset = AudioInputI2S::block_offset;
  701. if (offset <= AUDIO_BLOCK_SAMPLES/2) {
  702. dest_left = &(left->data[offset]);
  703. dest_right = &(right->data[offset]);
  704. AudioInputI2S::block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
  705. do {
  706. //n = *src++;
  707. //*dest_left++ = (int16_t)n;
  708. //*dest_right++ = (int16_t)(n >> 16);
  709. *dest_left++ = *src++;
  710. *dest_right++ = *src++;
  711. } while (src < end);
  712. }
  713. }
  714. //digitalWriteFast(3, LOW);
  715. }
  716. void AudioInputI2S::update(void)
  717. {
  718. audio_block_t *new_left=NULL, *new_right=NULL, *out_left=NULL, *out_right=NULL;
  719. // allocate 2 new blocks, but if one fails, allocate neither
  720. new_left = allocate();
  721. if (new_left != NULL) {
  722. new_right = allocate();
  723. if (new_right == NULL) {
  724. release(new_left);
  725. new_left = NULL;
  726. }
  727. }
  728. __disable_irq();
  729. if (block_offset >= AUDIO_BLOCK_SAMPLES) {
  730. // the DMA filled 2 blocks, so grab them and get the
  731. // 2 new blocks to the DMA, as quickly as possible
  732. out_left = block_left;
  733. block_left = new_left;
  734. out_right = block_right;
  735. block_right = new_right;
  736. block_offset = 0;
  737. __enable_irq();
  738. // then transmit the DMA's former blocks
  739. transmit(out_left, 0);
  740. release(out_left);
  741. transmit(out_right, 1);
  742. release(out_right);
  743. //Serial.print(".");
  744. } else if (new_left != NULL) {
  745. // the DMA didn't fill blocks, but we allocated blocks
  746. if (block_left == NULL) {
  747. // the DMA doesn't have any blocks to fill, so
  748. // give it the ones we just allocated
  749. block_left = new_left;
  750. block_right = new_right;
  751. block_offset = 0;
  752. __enable_irq();
  753. } else {
  754. // the DMA already has blocks, doesn't need these
  755. __enable_irq();
  756. release(new_left);
  757. release(new_right);
  758. }
  759. } else {
  760. // The DMA didn't fill blocks, and we could not allocate
  761. // memory... the system is likely starving for memory!
  762. // Sadly, there's nothing we can do.
  763. __enable_irq();
  764. }
  765. }
  766. /******************************************************************/
  767. void AudioInputI2Sslave::begin(void)
  768. {
  769. //block_left_1st = NULL;
  770. //block_right_1st = NULL;
  771. //pinMode(3, OUTPUT);
  772. //digitalWriteFast(3, HIGH);
  773. //delayMicroseconds(500);
  774. //digitalWriteFast(3, LOW);
  775. AudioOutputI2Sslave::config_i2s();
  776. CORE_PIN13_CONFIG = PORT_PCR_MUX(4); // pin 13, PTC5, I2S0_RXD0
  777. DMA_CR = 0;
  778. DMA_TCD1_SADDR = &I2S0_RDR0;
  779. DMA_TCD1_SOFF = 0;
  780. DMA_TCD1_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  781. DMA_TCD1_NBYTES_MLNO = 2;
  782. DMA_TCD1_SLAST = 0;
  783. DMA_TCD1_DADDR = i2s_rx_buffer;
  784. DMA_TCD1_DOFF = 2;
  785. DMA_TCD1_CITER_ELINKNO = sizeof(i2s_rx_buffer) / 2;
  786. DMA_TCD1_DLASTSGA = -sizeof(i2s_rx_buffer);
  787. DMA_TCD1_BITER_ELINKNO = sizeof(i2s_rx_buffer) / 2;
  788. DMA_TCD1_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  789. DMAMUX0_CHCFG1 = DMAMUX_DISABLE;
  790. DMAMUX0_CHCFG1 = DMAMUX_SOURCE_I2S0_RX | DMAMUX_ENABLE;
  791. update_responsibility = update_setup();
  792. DMA_SERQ = 1;
  793. // TODO: is I2S_RCSR_BCE appropriate if sync'd to transmitter clock?
  794. //I2S0_RCSR |= I2S_RCSR_RE | I2S_RCSR_BCE | I2S_RCSR_FRDE | I2S_RCSR_FR;
  795. I2S0_RCSR |= I2S_RCSR_RE | I2S_RCSR_FRDE | I2S_RCSR_FR;
  796. NVIC_ENABLE_IRQ(IRQ_DMA_CH1);
  797. }
  798. /******************************************************************/
  799. DMAMEM static uint16_t analog_rx_buffer[AUDIO_BLOCK_SAMPLES];
  800. audio_block_t * AudioInputAnalog::block_left = NULL;
  801. uint16_t AudioInputAnalog::block_offset = 0;
  802. #define PDB_CONFIG (PDB_SC_TRGSEL(15) | PDB_SC_PDBEN | PDB_SC_CONT)
  803. #define PDB_PERIOD 1087 // 48e6 / 44100
  804. void AudioInputAnalog::begin(unsigned int pin)
  805. {
  806. uint32_t i, sum=0;
  807. // pin must be 0 to 13 (for A0 to A13)
  808. // or 14 to 23 for digital pin numbers A0-A9
  809. // or 34 to 37 corresponding to A10-A13
  810. if (pin > 23 && !(pin >= 34 && pin <= 37)) return;
  811. //pinMode(2, OUTPUT);
  812. //pinMode(3, OUTPUT);
  813. //digitalWriteFast(3, HIGH);
  814. //delayMicroseconds(500);
  815. //digitalWriteFast(3, LOW);
  816. // Configure the ADC and run at least one software-triggered
  817. // conversion. This completes the self calibration stuff and
  818. // leaves the ADC in a state that's mostly ready to use
  819. analogReadRes(16);
  820. analogReference(INTERNAL); // range 0 to 1.2 volts
  821. //analogReference(DEFAULT); // range 0 to 3.3 volts
  822. analogReadAveraging(8);
  823. // Actually, do many normal reads, to start with a nice DC level
  824. for (i=0; i < 1024; i++) {
  825. sum += analogRead(pin);
  826. }
  827. dc_average = sum >> 10;
  828. // testing only, enable adc interrupt
  829. //ADC0_SC1A |= ADC_SC1_AIEN;
  830. //while ((ADC0_SC1A & ADC_SC1_COCO) == 0) ; // wait
  831. //NVIC_ENABLE_IRQ(IRQ_ADC0);
  832. // set the programmable delay block to trigger the ADC at 44.1 kHz
  833. SIM_SCGC6 |= SIM_SCGC6_PDB;
  834. PDB0_MOD = PDB_PERIOD;
  835. PDB0_SC = PDB_CONFIG | PDB_SC_LDOK;
  836. PDB0_SC = PDB_CONFIG | PDB_SC_SWTRIG;
  837. PDB0_CH0C1 = 0x0101;
  838. // enable the ADC for hardware trigger and DMA
  839. ADC0_SC2 |= ADC_SC2_ADTRG | ADC_SC2_DMAEN;
  840. // set up a DMA channel to store the ADC data
  841. SIM_SCGC7 |= SIM_SCGC7_DMA;
  842. SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
  843. DMA_CR = 0;
  844. DMA_TCD2_SADDR = &ADC0_RA;
  845. DMA_TCD2_SOFF = 0;
  846. DMA_TCD2_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  847. DMA_TCD2_NBYTES_MLNO = 2;
  848. DMA_TCD2_SLAST = 0;
  849. DMA_TCD2_DADDR = analog_rx_buffer;
  850. DMA_TCD2_DOFF = 2;
  851. DMA_TCD2_CITER_ELINKNO = sizeof(analog_rx_buffer) / 2;
  852. DMA_TCD2_DLASTSGA = -sizeof(analog_rx_buffer);
  853. DMA_TCD2_BITER_ELINKNO = sizeof(analog_rx_buffer) / 2;
  854. DMA_TCD2_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  855. DMAMUX0_CHCFG2 = DMAMUX_DISABLE;
  856. DMAMUX0_CHCFG2 = DMAMUX_SOURCE_ADC0 | DMAMUX_ENABLE;
  857. //update_responsibility = update_setup();
  858. DMA_SERQ = 2;
  859. NVIC_ENABLE_IRQ(IRQ_DMA_CH2);
  860. }
  861. void dma_ch2_isr(void)
  862. {
  863. uint32_t daddr, offset;
  864. const uint16_t *src, *end;
  865. uint16_t *dest_left;
  866. audio_block_t *left;
  867. //digitalWriteFast(3, HIGH);
  868. daddr = (uint32_t)DMA_TCD2_DADDR;
  869. DMA_CINT = 2;
  870. if (daddr < (uint32_t)analog_rx_buffer + sizeof(analog_rx_buffer) / 2) {
  871. // DMA is receiving to the first half of the buffer
  872. // need to remove data from the second half
  873. src = (uint16_t *)&analog_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  874. end = (uint16_t *)&analog_rx_buffer[AUDIO_BLOCK_SAMPLES];
  875. //if (AudioInputI2S::update_responsibility) AudioStream::update_all();
  876. } else {
  877. // DMA is receiving to the second half of the buffer
  878. // need to remove data from the first half
  879. src = (uint16_t *)&analog_rx_buffer[0];
  880. end = (uint16_t *)&analog_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  881. }
  882. left = AudioInputAnalog::block_left;
  883. if (left != NULL) {
  884. offset = AudioInputAnalog::block_offset;
  885. if (offset > AUDIO_BLOCK_SAMPLES/2) offset = AUDIO_BLOCK_SAMPLES/2;
  886. //if (offset <= AUDIO_BLOCK_SAMPLES/2) {
  887. dest_left = (uint16_t *)&(left->data[offset]);
  888. AudioInputAnalog::block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
  889. do {
  890. *dest_left++ = *src++;
  891. } while (src < end);
  892. //}
  893. }
  894. //digitalWriteFast(3, LOW);
  895. }
  896. #if 0
  897. void adc0_isr(void)
  898. {
  899. uint32_t tmp = ADC0_RA; // read ADC result to clear interrupt
  900. digitalWriteFast(3, HIGH);
  901. delayMicroseconds(1);
  902. digitalWriteFast(3, LOW);
  903. }
  904. #endif
  905. void AudioInputAnalog::update(void)
  906. {
  907. audio_block_t *new_left=NULL, *out_left=NULL;
  908. unsigned int dc, offset;
  909. int16_t s, *p, *end;
  910. // allocate new block (ok if NULL)
  911. new_left = allocate();
  912. __disable_irq();
  913. offset = block_offset;
  914. if (offset < AUDIO_BLOCK_SAMPLES) {
  915. // the DMA didn't fill a block
  916. if (new_left != NULL) {
  917. // but we allocated a block
  918. if (block_left == NULL) {
  919. // the DMA doesn't have any blocks to fill, so
  920. // give it the one we just allocated
  921. block_left = new_left;
  922. block_offset = 0;
  923. __enable_irq();
  924. //Serial.println("fail1");
  925. } else {
  926. // the DMA already has blocks, doesn't need this
  927. __enable_irq();
  928. release(new_left);
  929. //Serial.print("fail2, offset=");
  930. //Serial.println(offset);
  931. }
  932. } else {
  933. // The DMA didn't fill a block, and we could not allocate
  934. // memory... the system is likely starving for memory!
  935. // Sadly, there's nothing we can do.
  936. __enable_irq();
  937. //Serial.println("fail3");
  938. }
  939. return;
  940. }
  941. // the DMA filled a block, so grab it and get the
  942. // new block to the DMA, as quickly as possible
  943. out_left = block_left;
  944. block_left = new_left;
  945. block_offset = 0;
  946. __enable_irq();
  947. // find and subtract DC offset....
  948. // TODO: this may not be correct, needs testing with more types of signals
  949. dc = dc_average;
  950. p = out_left->data;
  951. end = p + AUDIO_BLOCK_SAMPLES;
  952. do {
  953. s = (uint16_t)(*p) - dc; // TODO: should be saturating subtract
  954. *p++ = s;
  955. dc += s >> 13; // approx 5.38 Hz high pass filter
  956. } while (p < end);
  957. dc_average = dc;
  958. // then transmit the AC data
  959. transmit(out_left);
  960. release(out_left);
  961. }
  962. /******************************************************************/
  963. // #define PDB_CONFIG (PDB_SC_TRGSEL(15) | PDB_SC_PDBEN | PDB_SC_CONT)
  964. // #define PDB_PERIOD 1087 // 48e6 / 44100
  965. #if defined(__MK20DX256__) && defined(DMA_TCD4_SADDR)
  966. DMAMEM static uint16_t dac_buffer[AUDIO_BLOCK_SAMPLES*2];
  967. audio_block_t * AudioOutputAnalog::block_left_1st = NULL;
  968. audio_block_t * AudioOutputAnalog::block_left_2nd = NULL;
  969. bool AudioOutputAnalog::update_responsibility = false;
  970. void AudioOutputAnalog::begin(void)
  971. {
  972. SIM_SCGC2 |= SIM_SCGC2_DAC0;
  973. DAC0_C0 = DAC_C0_DACEN | DAC_C0_DACRFS; // 3.3V VDDA is DACREF_2
  974. // slowly ramp up to DC voltage, approx 1/4 second
  975. for (int16_t i=0; i<128; i++) {
  976. analogWrite(A14, i);
  977. delay(2);
  978. }
  979. // set the programmable delay block to trigger DMA requests
  980. SIM_SCGC6 |= SIM_SCGC6_PDB;
  981. PDB0_IDLY = 1;
  982. PDB0_MOD = PDB_PERIOD;
  983. PDB0_SC = PDB_CONFIG | PDB_SC_LDOK;
  984. PDB0_SC = PDB_CONFIG | PDB_SC_SWTRIG | PDB_SC_PDBIE | PDB_SC_DMAEN;
  985. SIM_SCGC7 |= SIM_SCGC7_DMA;
  986. SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
  987. DMA_CR = 0;
  988. DMA_TCD4_SADDR = dac_buffer;
  989. DMA_TCD4_SOFF = 2;
  990. DMA_TCD4_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  991. DMA_TCD4_NBYTES_MLNO = 2;
  992. DMA_TCD4_SLAST = -sizeof(dac_buffer);
  993. DMA_TCD4_DADDR = &DAC0_DAT0L;
  994. DMA_TCD4_DOFF = 0;
  995. DMA_TCD4_CITER_ELINKNO = sizeof(dac_buffer) / 2;
  996. DMA_TCD4_DLASTSGA = 0;
  997. DMA_TCD4_BITER_ELINKNO = sizeof(dac_buffer) / 2;
  998. DMA_TCD4_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  999. DMAMUX0_CHCFG4 = DMAMUX_DISABLE;
  1000. DMAMUX0_CHCFG4 = DMAMUX_SOURCE_PDB | DMAMUX_ENABLE;
  1001. update_responsibility = update_setup();
  1002. DMA_SERQ = 4;
  1003. NVIC_ENABLE_IRQ(IRQ_DMA_CH4);
  1004. }
  1005. void AudioOutputAnalog::analogReference(int ref)
  1006. {
  1007. // TODO: this should ramp gradually to the new DC level
  1008. if (ref == INTERNAL) {
  1009. DAC0_C0 &= ~DAC_C0_DACRFS; // 1.2V
  1010. } else {
  1011. DAC0_C0 |= DAC_C0_DACRFS; // 3.3V
  1012. }
  1013. }
  1014. void AudioOutputAnalog::update(void)
  1015. {
  1016. audio_block_t *block;
  1017. block = receiveReadOnly(0); // input 0
  1018. if (block) {
  1019. __disable_irq();
  1020. if (block_left_1st == NULL) {
  1021. block_left_1st = block;
  1022. __enable_irq();
  1023. } else if (block_left_2nd == NULL) {
  1024. block_left_2nd = block;
  1025. __enable_irq();
  1026. } else {
  1027. audio_block_t *tmp = block_left_1st;
  1028. block_left_1st = block_left_2nd;
  1029. block_left_2nd = block;
  1030. __enable_irq();
  1031. release(tmp);
  1032. }
  1033. }
  1034. }
  1035. // TODO: the DAC has much higher bandwidth than the datasheet says
  1036. // can we output a 2X oversampled output, for easier filtering?
  1037. void dma_ch4_isr(void)
  1038. {
  1039. const int16_t *src, *end;
  1040. int16_t *dest;
  1041. audio_block_t *block;
  1042. uint32_t saddr, offset;
  1043. saddr = (uint32_t)DMA_TCD4_SADDR;
  1044. DMA_CINT = 4;
  1045. if (saddr < (uint32_t)dac_buffer + sizeof(dac_buffer) / 2) {
  1046. // DMA is transmitting the first half of the buffer
  1047. // so we must fill the second half
  1048. dest = (int16_t *)&dac_buffer[AUDIO_BLOCK_SAMPLES];
  1049. end = (int16_t *)&dac_buffer[AUDIO_BLOCK_SAMPLES*2];
  1050. } else {
  1051. // DMA is transmitting the second half of the buffer
  1052. // so we must fill the first half
  1053. dest = (int16_t *)dac_buffer;
  1054. end = (int16_t *)&dac_buffer[AUDIO_BLOCK_SAMPLES];
  1055. }
  1056. block = AudioOutputAnalog::block_left_1st;
  1057. if (block) {
  1058. src = &block->data[offset];
  1059. do {
  1060. // TODO: this should probably dither
  1061. *dest++ = ((*src++) + 32767) >> 4;
  1062. } while (dest < end);
  1063. AudioStream::release(block);
  1064. AudioOutputAnalog::block_left_1st = AudioOutputAnalog::block_left_2nd;
  1065. AudioOutputAnalog::block_left_2nd = NULL;
  1066. } else {
  1067. do {
  1068. *dest++ = 2047;
  1069. } while (dest < end);
  1070. }
  1071. if (AudioOutputAnalog::update_responsibility) AudioStream::update_all();
  1072. }
  1073. #else
  1074. void AudioOutputAnalog::begin(void)
  1075. {
  1076. }
  1077. void AudioOutputAnalog::update(void)
  1078. {
  1079. audio_block_t *block;
  1080. block = receiveReadOnly(0); // input 0
  1081. if (block) release(block);
  1082. }
  1083. #endif // defined(__MK20DX256__) && defined(DMA_TCD4_SADDR)
  1084. /******************************************************************/
  1085. #define STATE_DIRECT_8BIT_MONO 0 // playing mono at native sample rate
  1086. #define STATE_DIRECT_8BIT_STEREO 1 // playing stereo at native sample rate
  1087. #define STATE_DIRECT_16BIT_MONO 2 // playing mono at native sample rate
  1088. #define STATE_DIRECT_16BIT_STEREO 3 // playing stereo at native sample rate
  1089. #define STATE_CONVERT_8BIT_MONO 4 // playing mono, converting sample rate
  1090. #define STATE_CONVERT_8BIT_STEREO 5 // playing stereo, converting sample rate
  1091. #define STATE_CONVERT_16BIT_MONO 6 // playing mono, converting sample rate
  1092. #define STATE_CONVERT_16BIT_STEREO 7 // playing stereo, converting sample rate
  1093. #define STATE_PARSE1 8 // looking for 20 byte ID header
  1094. #define STATE_PARSE2 9 // looking for 16 byte format header
  1095. #define STATE_PARSE3 10 // looking for 8 byte data header
  1096. #define STATE_PARSE4 11 // ignoring unknown chunk
  1097. #define STATE_STOP 12
  1098. void AudioPlaySDcardWAV::begin(void)
  1099. {
  1100. state = STATE_STOP;
  1101. state_play = STATE_STOP;
  1102. data_length = 0;
  1103. if (block_left) {
  1104. release(block_left);
  1105. block_left = NULL;
  1106. }
  1107. if (block_right) {
  1108. release(block_right);
  1109. block_right = NULL;
  1110. }
  1111. }
  1112. bool AudioPlaySDcardWAV::play(const char *filename)
  1113. {
  1114. stop();
  1115. wavfile = SD.open(filename);
  1116. if (!wavfile) return false;
  1117. buffer_remaining = 0;
  1118. state_play = STATE_STOP;
  1119. data_length = 0;
  1120. state = STATE_PARSE1;
  1121. return true;
  1122. }
  1123. void AudioPlaySDcardWAV::stop(void)
  1124. {
  1125. __disable_irq();
  1126. if (state != STATE_STOP) {
  1127. state = STATE_STOP;
  1128. __enable_irq();
  1129. wavfile.close();
  1130. } else {
  1131. __enable_irq();
  1132. }
  1133. }
  1134. bool AudioPlaySDcardWAV::start(void)
  1135. {
  1136. __disable_irq();
  1137. if (state == STATE_STOP) {
  1138. if (state_play == STATE_STOP) {
  1139. __enable_irq();
  1140. return false;
  1141. }
  1142. state = state_play;
  1143. }
  1144. __enable_irq();
  1145. return true;
  1146. }
  1147. void AudioPlaySDcardWAV::update(void)
  1148. {
  1149. // only update if we're playing
  1150. if (state == STATE_STOP) return;
  1151. // allocate the audio blocks to transmit
  1152. block_left = allocate();
  1153. if (block_left == NULL) return;
  1154. if (state < 8 && (state & 1) == 1) {
  1155. // if we're playing stereo, allocate another
  1156. // block for the right channel output
  1157. block_right = allocate();
  1158. if (block_right == NULL) {
  1159. release(block_left);
  1160. return;
  1161. }
  1162. } else {
  1163. // if we're playing mono or just parsing
  1164. // the WAV file header, no right-side block
  1165. block_right = NULL;
  1166. }
  1167. block_offset = 0;
  1168. //Serial.println("update");
  1169. // is there buffered data?
  1170. if (buffer_remaining > 0) {
  1171. // we have buffered data
  1172. if (consume()) return; // it was enough to transmit audio
  1173. }
  1174. // we only get to this point when buffer[512] is empty
  1175. if (state != STATE_STOP && wavfile.available()) {
  1176. // we can read more data from the file...
  1177. buffer_remaining = wavfile.read(buffer, 512);
  1178. if (consume()) {
  1179. // good, it resulted in audio transmit
  1180. return;
  1181. } else {
  1182. // not good, no audio was transmitted
  1183. buffer_remaining = 0;
  1184. if (block_left) release(block_left);
  1185. if (block_right) release(block_right);
  1186. // if we're still playing, well, there's going to
  1187. // be a gap in output, but we can't keep burning
  1188. // time trying to read more data. Hopefully things
  1189. // will go better next time?
  1190. if (state != STATE_STOP) return;
  1191. }
  1192. }
  1193. // end of file reached or other reason to stop
  1194. wavfile.close();
  1195. state_play = STATE_STOP;
  1196. state = STATE_STOP;
  1197. }
  1198. // https://ccrma.stanford.edu/courses/422/projects/WaveFormat/
  1199. // Consume already buffered data. Returns true if audio transmitted.
  1200. bool AudioPlaySDcardWAV::consume(void)
  1201. {
  1202. uint32_t len, size;
  1203. uint8_t lsb, msb;
  1204. const uint8_t *p;
  1205. size = buffer_remaining;
  1206. p = buffer + 512 - size;
  1207. start:
  1208. if (size == 0) return false;
  1209. //Serial.print("AudioPlaySDcardWAV write, size = ");
  1210. //Serial.print(size);
  1211. //Serial.print(", data_length = ");
  1212. //Serial.print(data_length);
  1213. //Serial.print(", state = ");
  1214. //Serial.println(state);
  1215. switch (state) {
  1216. // parse wav file header, is this really a .wav file?
  1217. case STATE_PARSE1:
  1218. len = 20 - data_length;
  1219. if (size < len) len = size;
  1220. memcpy((uint8_t *)header + data_length, p, len);
  1221. data_length += len;
  1222. if (data_length < 20) return false;
  1223. // parse the header...
  1224. if (header[0] == 0x46464952 && header[2] == 0x45564157
  1225. && header[3] == 0x20746D66 && header[4] == 16) {
  1226. //Serial.println("header ok");
  1227. state = STATE_PARSE2;
  1228. p += len;
  1229. size -= len;
  1230. data_length = 0;
  1231. goto start;
  1232. }
  1233. //Serial.println("unknown WAV header");
  1234. break;
  1235. // check & extract key audio parameters
  1236. case STATE_PARSE2:
  1237. len = 16 - data_length;
  1238. if (size < len) len = size;
  1239. memcpy((uint8_t *)header + data_length, p, len);
  1240. data_length += len;
  1241. if (data_length < 16) return false;
  1242. if (parse_format()) {
  1243. //Serial.println("audio format ok");
  1244. p += len;
  1245. size -= len;
  1246. data_length = 0;
  1247. state = STATE_PARSE3;
  1248. goto start;
  1249. }
  1250. //Serial.println("unknown audio format");
  1251. break;
  1252. // find the data chunk
  1253. case STATE_PARSE3:
  1254. len = 8 - data_length;
  1255. if (size < len) len = size;
  1256. memcpy((uint8_t *)header + data_length, p, len);
  1257. data_length += len;
  1258. if (data_length < 8) return false;
  1259. //Serial.print("chunk id = ");
  1260. //Serial.print(header[0], HEX);
  1261. //Serial.print(", length = ");
  1262. //Serial.println(header[1]);
  1263. p += len;
  1264. size -= len;
  1265. data_length = header[1];
  1266. if (header[0] == 0x61746164) {
  1267. //Serial.println("found data chunk");
  1268. // TODO: verify offset in file is an even number
  1269. // as required by WAV format. abort if odd. Code
  1270. // below will depend upon this and fail if not even.
  1271. leftover_bytes = 0;
  1272. state = state_play;
  1273. if (state & 1) {
  1274. // if we're going to start stereo
  1275. // better allocate another output block
  1276. block_right = allocate();
  1277. if (!block_right) return false;
  1278. }
  1279. } else {
  1280. state = STATE_PARSE4;
  1281. }
  1282. goto start;
  1283. // ignore any extra unknown chunks (title & artist info)
  1284. case STATE_PARSE4:
  1285. if (size < data_length) {
  1286. data_length -= size;
  1287. return false;
  1288. }
  1289. p += data_length;
  1290. size -= data_length;
  1291. data_length = 0;
  1292. state = STATE_PARSE3;
  1293. goto start;
  1294. // playing mono at native sample rate
  1295. case STATE_DIRECT_8BIT_MONO:
  1296. return false;
  1297. // playing stereo at native sample rate
  1298. case STATE_DIRECT_8BIT_STEREO:
  1299. return false;
  1300. // playing mono at native sample rate
  1301. case STATE_DIRECT_16BIT_MONO:
  1302. if (size > data_length) size = data_length;
  1303. data_length -= size;
  1304. while (1) {
  1305. lsb = *p++;
  1306. msb = *p++;
  1307. size -= 2;
  1308. block_left->data[block_offset++] = (msb << 8) | lsb;
  1309. if (block_offset >= AUDIO_BLOCK_SAMPLES) {
  1310. transmit(block_left, 0);
  1311. transmit(block_left, 1);
  1312. //Serial1.print('%');
  1313. //delayMicroseconds(90);
  1314. release(block_left);
  1315. block_left = NULL;
  1316. data_length += size;
  1317. buffer_remaining = size;
  1318. if (block_right) release(block_right);
  1319. return true;
  1320. }
  1321. if (size == 0) {
  1322. if (data_length == 0) break;
  1323. return false;
  1324. }
  1325. }
  1326. // end of file reached
  1327. if (block_offset > 0) {
  1328. // TODO: fill remainder of last block with zero and transmit
  1329. }
  1330. state = STATE_STOP;
  1331. return false;
  1332. // playing stereo at native sample rate
  1333. case STATE_DIRECT_16BIT_STEREO:
  1334. if (size > data_length) size = data_length;
  1335. data_length -= size;
  1336. if (leftover_bytes) {
  1337. block_left->data[block_offset] = header[0];
  1338. goto right16;
  1339. }
  1340. while (1) {
  1341. lsb = *p++;
  1342. msb = *p++;
  1343. size -= 2;
  1344. if (size == 0) {
  1345. if (data_length == 0) break;
  1346. header[0] = (msb << 8) | lsb;
  1347. leftover_bytes = 2;
  1348. return false;
  1349. }
  1350. block_left->data[block_offset] = (msb << 8) | lsb;
  1351. right16:
  1352. lsb = *p++;
  1353. msb = *p++;
  1354. size -= 2;
  1355. block_right->data[block_offset++] = (msb << 8) | lsb;
  1356. if (block_offset >= AUDIO_BLOCK_SAMPLES) {
  1357. transmit(block_left, 0);
  1358. release(block_left);
  1359. block_left = NULL;
  1360. transmit(block_right, 1);
  1361. release(block_right);
  1362. block_right = NULL;
  1363. data_length += size;
  1364. buffer_remaining = size;
  1365. return true;
  1366. }
  1367. if (size == 0) {
  1368. if (data_length == 0) break;
  1369. leftover_bytes = 0;
  1370. return false;
  1371. }
  1372. }
  1373. // end of file reached
  1374. if (block_offset > 0) {
  1375. // TODO: fill remainder of last block with zero and transmit
  1376. }
  1377. state = STATE_STOP;
  1378. return false;
  1379. // playing mono, converting sample rate
  1380. case STATE_CONVERT_8BIT_MONO :
  1381. return false;
  1382. // playing stereo, converting sample rate
  1383. case STATE_CONVERT_8BIT_STEREO:
  1384. return false;
  1385. // playing mono, converting sample rate
  1386. case STATE_CONVERT_16BIT_MONO:
  1387. return false;
  1388. // playing stereo, converting sample rate
  1389. case STATE_CONVERT_16BIT_STEREO:
  1390. return false;
  1391. // ignore any extra data after playing
  1392. // or anything following any error
  1393. case STATE_STOP:
  1394. return false;
  1395. // this is not supposed to happen!
  1396. //default:
  1397. //Serial.println("AudioPlaySDcardWAV, unknown state");
  1398. }
  1399. state_play = STATE_STOP;
  1400. state = STATE_STOP;
  1401. return false;
  1402. }
  1403. /*
  1404. 00000000 52494646 66EA6903 57415645 666D7420 RIFFf.i.WAVEfmt
  1405. 00000010 10000000 01000200 44AC0000 10B10200 ........D.......
  1406. 00000020 04001000 4C495354 3A000000 494E464F ....LIST:...INFO
  1407. 00000030 494E414D 14000000 49205761 6E742054 INAM....I Want T
  1408. 00000040 6F20436F 6D65204F 76657200 49415254 o Come Over.IART
  1409. 00000050 12000000 4D656C69 73736120 45746865 ....Melissa Ethe
  1410. 00000060 72696467 65006461 746100EA 69030100 ridge.data..i...
  1411. 00000070 FEFF0300 FCFF0400 FDFF0200 0000FEFF ................
  1412. 00000080 0300FDFF 0200FFFF 00000100 FEFF0300 ................
  1413. 00000090 FDFF0300 FDFF0200 FFFF0100 0000FFFF ................
  1414. */
  1415. // SD library on Teensy3 at 96 MHz
  1416. // 256 byte chunks, speed is 443272 bytes/sec
  1417. // 512 byte chunks, speed is 468023 bytes/sec
  1418. bool AudioPlaySDcardWAV::parse_format(void)
  1419. {
  1420. uint8_t num = 0;
  1421. uint16_t format;
  1422. uint16_t channels;
  1423. uint32_t rate;
  1424. uint16_t bits;
  1425. format = header[0];
  1426. //Serial.print(" format = ");
  1427. //Serial.println(format);
  1428. if (format != 1) return false;
  1429. channels = header[0] >> 16;
  1430. //Serial.print(" channels = ");
  1431. //Serial.println(channels);
  1432. if (channels == 1) {
  1433. } else if (channels == 2) {
  1434. num = 1;
  1435. } else {
  1436. return false;
  1437. }
  1438. bits = header[3] >> 16;
  1439. //Serial.print(" bits = ");
  1440. //Serial.println(bits);
  1441. if (bits == 8) {
  1442. } else if (bits == 16) {
  1443. num |= 2;
  1444. } else {
  1445. return false;
  1446. }
  1447. rate = header[1];
  1448. //Serial.print(" rate = ");
  1449. //Serial.println(rate);
  1450. if (rate == AUDIO_SAMPLE_RATE) {
  1451. } else if (rate >= 8000 && rate <= 48000) {
  1452. num |= 4;
  1453. } else {
  1454. return false;
  1455. }
  1456. // we're not checking the byte rate and block align fields
  1457. // if they're not the expected values, all we could do is
  1458. // return false. Do any real wav files have unexpected
  1459. // values in these other fields?
  1460. state_play = num;
  1461. return true;
  1462. }
  1463. /******************************************************************/
  1464. void AudioPlaySDcardRAW::begin(void)
  1465. {
  1466. playing = false;
  1467. if (block) {
  1468. release(block);
  1469. block = NULL;
  1470. }
  1471. }
  1472. bool AudioPlaySDcardRAW::play(const char *filename)
  1473. {
  1474. stop();
  1475. rawfile = SD.open(filename);
  1476. if (!rawfile) {
  1477. Serial.println("unable to open file");
  1478. return false;
  1479. }
  1480. Serial.println("able to open file");
  1481. playing = true;
  1482. return true;
  1483. }
  1484. void AudioPlaySDcardRAW::stop(void)
  1485. {
  1486. __disable_irq();
  1487. if (playing) {
  1488. playing = false;
  1489. __enable_irq();
  1490. rawfile.close();
  1491. } else {
  1492. __enable_irq();
  1493. }
  1494. }
  1495. void AudioPlaySDcardRAW::update(void)
  1496. {
  1497. unsigned int i, n;
  1498. // only update if we're playing
  1499. if (!playing) return;
  1500. // allocate the audio blocks to transmit
  1501. block = allocate();
  1502. if (block == NULL) return;
  1503. if (rawfile.available()) {
  1504. // we can read more data from the file...
  1505. n = rawfile.read(block->data, AUDIO_BLOCK_SAMPLES*2);
  1506. for (i=n/2; i < AUDIO_BLOCK_SAMPLES; i++) {
  1507. block->data[i] = 0;
  1508. }
  1509. transmit(block);
  1510. release(block);
  1511. } else {
  1512. rawfile.close();
  1513. playing = false;
  1514. }
  1515. }
  1516. /******************************************************************/
  1517. void AudioPlayMemory::play(const unsigned int *data)
  1518. {
  1519. uint32_t format;
  1520. playing = 0;
  1521. prior = 0;
  1522. format = *data++;
  1523. next = data;
  1524. length = format & 0xFFFFFF;
  1525. playing = format >> 24;
  1526. }
  1527. void AudioPlayMemory::stop(void)
  1528. {
  1529. playing = 0;
  1530. }
  1531. extern "C" {
  1532. extern const int16_t ulaw_decode_table[256];
  1533. };
  1534. void AudioPlayMemory::update(void)
  1535. {
  1536. audio_block_t *block;
  1537. const unsigned int *in;
  1538. int16_t *out;
  1539. uint32_t tmp32, consumed;
  1540. int16_t s0, s1, s2, s3, s4;
  1541. int i;
  1542. if (!playing) return;
  1543. block = allocate();
  1544. if (block == NULL) return;
  1545. //Serial.write('.');
  1546. out = block->data;
  1547. in = next;
  1548. s0 = prior;
  1549. switch (playing) {
  1550. case 0x01: // u-law encoded, 44100 Hz
  1551. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 4) {
  1552. tmp32 = *in++;
  1553. *out++ = ulaw_decode_table[(tmp32 >> 0) & 255];
  1554. *out++ = ulaw_decode_table[(tmp32 >> 8) & 255];
  1555. *out++ = ulaw_decode_table[(tmp32 >> 16) & 255];
  1556. *out++ = ulaw_decode_table[(tmp32 >> 24) & 255];
  1557. }
  1558. consumed = 128;
  1559. break;
  1560. case 0x81: // 16 bit PCM, 44100 Hz
  1561. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 2) {
  1562. tmp32 = *in++;
  1563. *out++ = (int16_t)(tmp32 & 65535);
  1564. *out++ = (int16_t)(tmp32 >> 16);
  1565. }
  1566. consumed = 128;
  1567. break;
  1568. case 0x02: // u-law encoded, 22050 Hz
  1569. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 8) {
  1570. tmp32 = *in++;
  1571. s1 = ulaw_decode_table[(tmp32 >> 0) & 255];
  1572. s2 = ulaw_decode_table[(tmp32 >> 8) & 255];
  1573. s3 = ulaw_decode_table[(tmp32 >> 16) & 255];
  1574. s4 = ulaw_decode_table[(tmp32 >> 24) & 255];
  1575. *out++ = (s0 + s1) >> 1;
  1576. *out++ = s1;
  1577. *out++ = (s1 + s2) >> 1;
  1578. *out++ = s2;
  1579. *out++ = (s2 + s3) >> 1;
  1580. *out++ = s3;
  1581. *out++ = (s3 + s4) >> 1;
  1582. *out++ = s4;
  1583. s0 = s4;
  1584. }
  1585. consumed = 64;
  1586. break;
  1587. case 0x82: // 16 bits PCM, 22050 Hz
  1588. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 4) {
  1589. tmp32 = *in++;
  1590. s1 = (int16_t)(tmp32 & 65535);
  1591. s2 = (int16_t)(tmp32 >> 16);
  1592. *out++ = (s0 + s1) >> 1;
  1593. *out++ = s1;
  1594. *out++ = (s1 + s2) >> 1;
  1595. *out++ = s2;
  1596. s0 = s2;
  1597. }
  1598. consumed = 64;
  1599. break;
  1600. case 0x03: // u-law encoded, 11025 Hz
  1601. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 16) {
  1602. tmp32 = *in++;
  1603. s1 = ulaw_decode_table[(tmp32 >> 0) & 255];
  1604. s2 = ulaw_decode_table[(tmp32 >> 8) & 255];
  1605. s3 = ulaw_decode_table[(tmp32 >> 16) & 255];
  1606. s4 = ulaw_decode_table[(tmp32 >> 24) & 255];
  1607. *out++ = (s0 * 3 + s1) >> 2;
  1608. *out++ = (s0 + s1) >> 1;
  1609. *out++ = (s0 + s1 * 3) >> 2;
  1610. *out++ = s1;
  1611. *out++ = (s1 * 3 + s2) >> 2;
  1612. *out++ = (s1 + s2) >> 1;
  1613. *out++ = (s1 + s2 * 3) >> 2;
  1614. *out++ = s2;
  1615. *out++ = (s2 * 3 + s3) >> 2;
  1616. *out++ = (s2 + s3) >> 1;
  1617. *out++ = (s2 + s3 * 3) >> 2;
  1618. *out++ = s3;
  1619. *out++ = (s3 * 3 + s4) >> 2;
  1620. *out++ = (s3 + s4) >> 1;
  1621. *out++ = (s3 + s4 * 3) >> 2;
  1622. *out++ = s4;
  1623. s0 = s4;
  1624. }
  1625. consumed = 32;
  1626. break;
  1627. case 0x83: // 16 bit PCM, 11025 Hz
  1628. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 8) {
  1629. tmp32 = *in++;
  1630. s1 = (int16_t)(tmp32 & 65535);
  1631. s2 = (int16_t)(tmp32 >> 16);
  1632. *out++ = (s0 * 3 + s1) >> 2;
  1633. *out++ = (s0 + s1) >> 1;
  1634. *out++ = (s0 + s1 * 3) >> 2;
  1635. *out++ = s1;
  1636. *out++ = (s1 * 3 + s2) >> 2;
  1637. *out++ = (s1 + s2) >> 1;
  1638. *out++ = (s1 + s2 * 3) >> 2;
  1639. *out++ = s2;
  1640. s0 = s2;
  1641. }
  1642. consumed = 32;
  1643. break;
  1644. default:
  1645. release(block);
  1646. playing = 0;
  1647. return;
  1648. }
  1649. prior = s0;
  1650. next = in;
  1651. if (length > consumed) {
  1652. length -= consumed;
  1653. } else {
  1654. playing = 0;
  1655. }
  1656. transmit(block);
  1657. release(block);
  1658. }
  1659. /******************************************************************/
  1660. // computes ((a[31:0] * b[15:0]) >> 16)
  1661. static inline int32_t signed_multiply_32x16b(int32_t a, uint32_t b) __attribute__((always_inline));
  1662. static inline int32_t signed_multiply_32x16b(int32_t a, uint32_t b)
  1663. {
  1664. int32_t out;
  1665. asm volatile("smulwb %0, %1, %2" : "=r" (out) : "r" (a), "r" (b));
  1666. return out;
  1667. }
  1668. // computes ((a[31:0] * b[31:16]) >> 16)
  1669. static inline int32_t signed_multiply_32x16t(int32_t a, uint32_t b) __attribute__((always_inline));
  1670. static inline int32_t signed_multiply_32x16t(int32_t a, uint32_t b)
  1671. {
  1672. int32_t out;
  1673. asm volatile("smulwt %0, %1, %2" : "=r" (out) : "r" (a), "r" (b));
  1674. return out;
  1675. }
  1676. // computes ((a[15:0] << 16) | b[15:0])
  1677. static inline uint32_t pack_16x16(int32_t a, int32_t b) __attribute__((always_inline));
  1678. static inline uint32_t pack_16x16(int32_t a, int32_t b)
  1679. {
  1680. int32_t out;
  1681. asm volatile("pkhbt %0, %1, %2, lsl #16" : "=r" (out) : "r" (b), "r" (a));
  1682. return out;
  1683. }
  1684. // computes (((a[31:16] + b[31:16]) << 16) | (a[15:0 + b[15:0]))
  1685. static inline uint32_t signed_add_16_and_16(uint32_t a, uint32_t b) __attribute__((always_inline));
  1686. static inline uint32_t signed_add_16_and_16(uint32_t a, uint32_t b)
  1687. {
  1688. int32_t out;
  1689. asm volatile("qadd16 %0, %1, %2" : "=r" (out) : "r" (a), "r" (b));
  1690. return out;
  1691. }
  1692. // computes (sum + ((a[31:0] * b[15:0]) >> 16))
  1693. static inline int32_t signed_multiply_accumulate_32x16b(int32_t sum, int32_t a, uint32_t b)
  1694. {
  1695. int32_t out;
  1696. asm volatile("smlawb %0, %2, %3, %1" : "=r" (out) : "r" (sum), "r" (a), "r" (b));
  1697. return out;
  1698. }
  1699. // computes (sum + ((a[31:0] * b[31:16]) >> 16))
  1700. static inline int32_t signed_multiply_accumulate_32x16t(int32_t sum, int32_t a, uint32_t b)
  1701. {
  1702. int32_t out;
  1703. asm volatile("smlawt %0, %2, %3, %1" : "=r" (out) : "r" (sum), "r" (a), "r" (b));
  1704. return out;
  1705. }
  1706. // computes logical and, forces compiler to allocate register and use single cycle instruction
  1707. static inline uint32_t logical_and(uint32_t a, uint32_t b)
  1708. {
  1709. asm volatile("and %0, %1" : "+r" (a) : "r" (b));
  1710. return a;
  1711. }
  1712. void applyGain(int16_t *data, int32_t mult)
  1713. {
  1714. uint32_t *p = (uint32_t *)data;
  1715. const uint32_t *end = (uint32_t *)(data + AUDIO_BLOCK_SAMPLES);
  1716. do {
  1717. uint32_t tmp32 = *p; // read 2 samples from *data
  1718. int32_t val1 = signed_multiply_32x16b(mult, tmp32);
  1719. int32_t val2 = signed_multiply_32x16t(mult, tmp32);
  1720. val1 = signed_saturate_rshift(val1, 16, 0);
  1721. val2 = signed_saturate_rshift(val2, 16, 0);
  1722. *p++ = pack_16x16(val2, val1);
  1723. } while (p < end);
  1724. }
  1725. // page 133
  1726. void applyGainThenAdd(int16_t *data, const int16_t *in, int32_t mult)
  1727. {
  1728. uint32_t *dst = (uint32_t *)data;
  1729. const uint32_t *src = (uint32_t *)in;
  1730. const uint32_t *end = (uint32_t *)(data + AUDIO_BLOCK_SAMPLES);
  1731. if (mult == 65536) {
  1732. do {
  1733. uint32_t tmp32 = *dst;
  1734. *dst++ = signed_add_16_and_16(tmp32, *src++);
  1735. tmp32 = *dst;
  1736. *dst++ = signed_add_16_and_16(tmp32, *src++);
  1737. } while (dst < end);
  1738. } else {
  1739. do {
  1740. uint32_t tmp32 = *src++; // read 2 samples from *data
  1741. int32_t val1 = signed_multiply_32x16b(mult, tmp32);
  1742. int32_t val2 = signed_multiply_32x16t(mult, tmp32);
  1743. val1 = signed_saturate_rshift(val1, 16, 0);
  1744. val2 = signed_saturate_rshift(val2, 16, 0);
  1745. tmp32 = pack_16x16(val2, val1);
  1746. uint32_t tmp32b = *dst;
  1747. *dst++ = signed_add_16_and_16(tmp32, tmp32b);
  1748. } while (dst < end);
  1749. }
  1750. }
  1751. void AudioMixer4::update(void)
  1752. {
  1753. audio_block_t *in, *out=NULL;
  1754. unsigned int channel;
  1755. for (channel=0; channel < 4; channel++) {
  1756. if (!out) {
  1757. out = receiveWritable(channel);
  1758. if (out) {
  1759. int32_t mult = multiplier[channel];
  1760. if (mult != 65536) applyGain(out->data, mult);
  1761. }
  1762. } else {
  1763. in = receiveReadOnly(channel);
  1764. if (in) {
  1765. applyGainThenAdd(out->data, in->data, multiplier[channel]);
  1766. release(in);
  1767. }
  1768. }
  1769. }
  1770. if (out) {
  1771. transmit(out);
  1772. release(out);
  1773. }
  1774. }
  1775. /******************************************************************/
  1776. void AudioFilterBiquad::update(void)
  1777. {
  1778. audio_block_t *block;
  1779. int32_t a0, a1, a2, b1, b2, sum;
  1780. uint32_t in2, out2, aprev, bprev, flag;
  1781. uint32_t *data, *end;
  1782. int32_t *state;
  1783. block = receiveWritable();
  1784. if (!block) return;
  1785. data = (uint32_t *)(block->data);
  1786. end = data + AUDIO_BLOCK_SAMPLES/2;
  1787. state = (int32_t *)definition;
  1788. do {
  1789. a0 = *state++;
  1790. a1 = *state++;
  1791. a2 = *state++;
  1792. b1 = *state++;
  1793. b2 = *state++;
  1794. aprev = *state++;
  1795. bprev = *state++;
  1796. sum = *state & 0x3FFF;
  1797. do {
  1798. in2 = *data;
  1799. sum = signed_multiply_accumulate_32x16b(sum, a0, in2);
  1800. sum = signed_multiply_accumulate_32x16t(sum, a1, aprev);
  1801. sum = signed_multiply_accumulate_32x16b(sum, a2, aprev);
  1802. sum = signed_multiply_accumulate_32x16t(sum, b1, bprev);
  1803. sum = signed_multiply_accumulate_32x16b(sum, b2, bprev);
  1804. out2 = (uint32_t)sum >> 14;
  1805. sum &= 0x3FFF;
  1806. sum = signed_multiply_accumulate_32x16t(sum, a0, in2);
  1807. sum = signed_multiply_accumulate_32x16b(sum, a1, in2);
  1808. sum = signed_multiply_accumulate_32x16t(sum, a2, aprev);
  1809. sum = signed_multiply_accumulate_32x16b(sum, b1, out2);
  1810. sum = signed_multiply_accumulate_32x16t(sum, b2, bprev);
  1811. aprev = in2;
  1812. bprev = pack_16x16(sum >> 14, out2);
  1813. sum &= 0x3FFF;
  1814. aprev = in2;
  1815. *data++ = bprev;
  1816. } while (data < end);
  1817. flag = *state & 0x80000000;
  1818. *state++ = sum | flag;
  1819. *(state-2) = bprev;
  1820. *(state-3) = aprev;
  1821. } while (flag);
  1822. transmit(block);
  1823. release(block);
  1824. }
  1825. /******************************************************************/
  1826. #include "Wire.h"
  1827. #define WM8731_I2C_ADDR 0x1A
  1828. //#define WM8731_I2C_ADDR 0x1B
  1829. #define WM8731_REG_LLINEIN 0
  1830. #define WM8731_REG_RLINEIN 1
  1831. #define WM8731_REG_LHEADOUT 2
  1832. #define WM8731_REG_RHEADOUT 3
  1833. #define WM8731_REG_ANALOG 4
  1834. #define WM8731_REG_DIGITAL 5
  1835. #define WM8731_REG_POWERDOWN 6
  1836. #define WM8731_REG_INTERFACE 7
  1837. #define WM8731_REG_SAMPLING 8
  1838. #define WM8731_REG_ACTIVE 9
  1839. #define WM8731_REG_RESET 15
  1840. bool AudioControlWM8731::enable(void)
  1841. {
  1842. Wire.begin();
  1843. delay(5);
  1844. //write(WM8731_REG_RESET, 0);
  1845. write(WM8731_REG_INTERFACE, 0x02); // I2S, 16 bit, MCLK slave
  1846. write(WM8731_REG_SAMPLING, 0x20); // 256*Fs, 44.1 kHz, MCLK/1
  1847. // In order to prevent pops, the DAC should first be soft-muted (DACMU),
  1848. // the output should then be de-selected from the line and headphone output
  1849. // (DACSEL), then the DAC powered down (DACPD).
  1850. write(WM8731_REG_DIGITAL, 0x08); // DAC soft mute
  1851. write(WM8731_REG_ANALOG, 0x00); // disable all
  1852. write(WM8731_REG_POWERDOWN, 0x00); // codec powerdown
  1853. write(WM8731_REG_LHEADOUT, 0x80); // volume off
  1854. write(WM8731_REG_RHEADOUT, 0x80);
  1855. delay(100); // how long to power up?
  1856. write(WM8731_REG_ACTIVE, 1);
  1857. delay(5);
  1858. write(WM8731_REG_DIGITAL, 0x00); // DAC unmuted
  1859. write(WM8731_REG_ANALOG, 0x10); // DAC selected
  1860. return true;
  1861. }
  1862. bool AudioControlWM8731::write(unsigned int reg, unsigned int val)
  1863. {
  1864. Wire.beginTransmission(WM8731_I2C_ADDR);
  1865. Wire.write((reg << 1) | ((val >> 8) & 1));
  1866. Wire.write(val & 0xFF);
  1867. Wire.endTransmission();
  1868. return true;
  1869. }
  1870. bool AudioControlWM8731::volumeInteger(unsigned int n)
  1871. {
  1872. if (n > 127) n = 127;
  1873. //Serial.print("volumeInteger, n = ");
  1874. //Serial.println(n);
  1875. write(WM8731_REG_LHEADOUT, n | 0x180);
  1876. write(WM8731_REG_RHEADOUT, n | 0x80);
  1877. return true;
  1878. }
  1879. /******************************************************************/
  1880. bool AudioControlWM8731master::enable(void)
  1881. {
  1882. Wire.begin();
  1883. delay(5);
  1884. //write(WM8731_REG_RESET, 0);
  1885. write(WM8731_REG_INTERFACE, 0x42); // I2S, 16 bit, MCLK master
  1886. write(WM8731_REG_SAMPLING, 0x20); // 256*Fs, 44.1 kHz, MCLK/1
  1887. // In order to prevent pops, the DAC should first be soft-muted (DACMU),
  1888. // the output should then be de-selected from the line and headphone output
  1889. // (DACSEL), then the DAC powered down (DACPD).
  1890. write(WM8731_REG_DIGITAL, 0x08); // DAC soft mute
  1891. write(WM8731_REG_ANALOG, 0x00); // disable all
  1892. write(WM8731_REG_POWERDOWN, 0x00); // codec powerdown
  1893. write(WM8731_REG_LHEADOUT, 0x80); // volume off
  1894. write(WM8731_REG_RHEADOUT, 0x80);
  1895. delay(100); // how long to power up?
  1896. write(WM8731_REG_ACTIVE, 1);
  1897. delay(5);
  1898. write(WM8731_REG_DIGITAL, 0x00); // DAC unmuted
  1899. write(WM8731_REG_ANALOG, 0x10); // DAC selected
  1900. return true;
  1901. }
  1902. /******************************************************************/
  1903. #define CHIP_ID 0x0000
  1904. // 15:8 PARTID 0xA0 - 8 bit identifier for SGTL5000
  1905. // 7:0 REVID 0x00 - revision number for SGTL5000.
  1906. #define CHIP_DIG_POWER 0x0002
  1907. // 6 ADC_POWERUP 1=Enable, 0=disable the ADC block, both digital & analog,
  1908. // 5 DAC_POWERUP 1=Enable, 0=disable the DAC block, both analog and digital
  1909. // 4 DAP_POWERUP 1=Enable, 0=disable the DAP block
  1910. // 1 I2S_OUT_POWERUP 1=Enable, 0=disable the I2S data output
  1911. // 0 I2S_IN_POWERUP 1=Enable, 0=disable the I2S data input
  1912. #define CHIP_CLK_CTRL 0x0004
  1913. // 5:4 RATE_MODE Sets the sample rate mode. MCLK_FREQ is still specified
  1914. // relative to the rate in SYS_FS
  1915. // 0x0 = SYS_FS specifies the rate
  1916. // 0x1 = Rate is 1/2 of the SYS_FS rate
  1917. // 0x2 = Rate is 1/4 of the SYS_FS rate
  1918. // 0x3 = Rate is 1/6 of the SYS_FS rate
  1919. // 3:2 SYS_FS Sets the internal system sample rate (default=2)
  1920. // 0x0 = 32 kHz
  1921. // 0x1 = 44.1 kHz
  1922. // 0x2 = 48 kHz
  1923. // 0x3 = 96 kHz
  1924. // 1:0 MCLK_FREQ Identifies incoming SYS_MCLK frequency and if the PLL should be used
  1925. // 0x0 = 256*Fs
  1926. // 0x1 = 384*Fs
  1927. // 0x2 = 512*Fs
  1928. // 0x3 = Use PLL
  1929. // The 0x3 (Use PLL) setting must be used if the SYS_MCLK is not
  1930. // a standard multiple of Fs (256, 384, or 512). This setting can
  1931. // also be used if SYS_MCLK is a standard multiple of Fs.
  1932. // Before this field is set to 0x3 (Use PLL), the PLL must be
  1933. // powered up by setting CHIP_ANA_POWER->PLL_POWERUP and
  1934. // CHIP_ANA_POWER->VCOAMP_POWERUP. Also, the PLL dividers must
  1935. // be calculated based on the external MCLK rate and
  1936. // CHIP_PLL_CTRL register must be set (see CHIP_PLL_CTRL register
  1937. // description details on how to calculate the divisors).
  1938. #define CHIP_I2S_CTRL 0x0006
  1939. // 8 SCLKFREQ Sets frequency of I2S_SCLK when in master mode (MS=1). When in slave
  1940. // mode (MS=0), this field must be set appropriately to match SCLK input
  1941. // rate.
  1942. // 0x0 = 64Fs
  1943. // 0x1 = 32Fs - Not supported for RJ mode (I2S_MODE = 1)
  1944. // 7 MS Configures master or slave of I2S_LRCLK and I2S_SCLK.
  1945. // 0x0 = Slave: I2S_LRCLK an I2S_SCLK are inputs
  1946. // 0x1 = Master: I2S_LRCLK and I2S_SCLK are outputs
  1947. // NOTE: If the PLL is used (CHIP_CLK_CTRL->MCLK_FREQ==0x3),
  1948. // the SGTL5000 must be a master of the I2S port (MS==1)
  1949. // 6 SCLK_INV Sets the edge that data (input and output) is clocked in on for I2S_SCLK
  1950. // 0x0 = data is valid on rising edge of I2S_SCLK
  1951. // 0x1 = data is valid on falling edge of I2S_SCLK
  1952. // 5:4 DLEN I2S data length (default=1)
  1953. // 0x0 = 32 bits (only valid when SCLKFREQ=0),
  1954. // not valid for Right Justified Mode
  1955. // 0x1 = 24 bits (only valid when SCLKFREQ=0)
  1956. // 0x2 = 20 bits
  1957. // 0x3 = 16 bits
  1958. // 3:2 I2S_MODE Sets the mode for the I2S port
  1959. // 0x0 = I2S mode or Left Justified (Use LRALIGN to select)
  1960. // 0x1 = Right Justified Mode
  1961. // 0x2 = PCM Format A/B
  1962. // 0x3 = RESERVED
  1963. // 1 LRALIGN I2S_LRCLK Alignment to data word. Not used for Right Justified mode
  1964. // 0x0 = Data word starts 1 I2S_SCLK delay after I2S_LRCLK
  1965. // transition (I2S format, PCM format A)
  1966. // 0x1 = Data word starts after I2S_LRCLK transition (left
  1967. // justified format, PCM format B)
  1968. // 0 LRPOL I2S_LRCLK Polarity when data is presented.
  1969. // 0x0 = I2S_LRCLK = 0 - Left, 1 - Right
  1970. // 1x0 = I2S_LRCLK = 0 - Right, 1 - Left
  1971. // The left subframe should be presented first regardless of
  1972. // the setting of LRPOL.
  1973. #define CHIP_SSS_CTRL 0x000A
  1974. // 14 DAP_MIX_LRSWAP DAP Mixer Input Swap
  1975. // 0x0 = Normal Operation
  1976. // 0x1 = Left and Right channels for the DAP MIXER Input are swapped.
  1977. // 13 DAP_LRSWAP DAP Mixer Input Swap
  1978. // 0x0 = Normal Operation
  1979. // 0x1 = Left and Right channels for the DAP Input are swapped
  1980. // 12 DAC_LRSWAP DAC Input Swap
  1981. // 0x0 = Normal Operation
  1982. // 0x1 = Left and Right channels for the DAC are swapped
  1983. // 10 I2S_LRSWAP I2S_DOUT Swap
  1984. // 0x0 = Normal Operation
  1985. // 0x1 = Left and Right channels for the I2S_DOUT are swapped
  1986. // 9:8 DAP_MIX_SELECT Select data source for DAP mixer
  1987. // 0x0 = ADC
  1988. // 0x1 = I2S_IN
  1989. // 0x2 = Reserved
  1990. // 0x3 = Reserved
  1991. // 7:6 DAP_SELECT Select data source for DAP
  1992. // 0x0 = ADC
  1993. // 0x1 = I2S_IN
  1994. // 0x2 = Reserved
  1995. // 0x3 = Reserved
  1996. // 5:4 DAC_SELECT Select data source for DAC (default=1)
  1997. // 0x0 = ADC
  1998. // 0x1 = I2S_IN
  1999. // 0x2 = Reserved
  2000. // 0x3 = DAP
  2001. // 1:0 I2S_SELECT Select data source for I2S_DOUT
  2002. // 0x0 = ADC
  2003. // 0x1 = I2S_IN
  2004. // 0x2 = Reserved
  2005. // 0x3 = DAP
  2006. #define CHIP_ADCDAC_CTRL 0x000E
  2007. // 13 VOL_BUSY_DAC_RIGHT Volume Busy DAC Right
  2008. // 0x0 = Ready
  2009. // 0x1 = Busy - This indicates the channel has not reached its
  2010. // programmed volume/mute level
  2011. // 12 VOL_BUSY_DAC_LEFT Volume Busy DAC Left
  2012. // 0x0 = Ready
  2013. // 0x1 = Busy - This indicates the channel has not reached its
  2014. // programmed volume/mute level
  2015. // 9 VOL_RAMP_EN Volume Ramp Enable (default=1)
  2016. // 0x0 = Disables volume ramp. New volume settings take immediate
  2017. // effect without a ramp
  2018. // 0x1 = Enables volume ramp
  2019. // This field affects DAC_VOL. The volume ramp effects both
  2020. // volume settings and mute When set to 1 a soft mute is enabled.
  2021. // 8 VOL_EXPO_RAMP Exponential Volume Ramp Enable
  2022. // 0x0 = Linear ramp over top 4 volume octaves
  2023. // 0x1 = Exponential ramp over full volume range
  2024. // This bit only takes effect if VOL_RAMP_EN is 1.
  2025. // 3 DAC_MUTE_RIGHT DAC Right Mute (default=1)
  2026. // 0x0 = Unmute
  2027. // 0x1 = Muted
  2028. // If VOL_RAMP_EN = 1, this is a soft mute.
  2029. // 2 DAC_MUTE_LEFT DAC Left Mute (default=1)
  2030. // 0x0 = Unmute
  2031. // 0x1 = Muted
  2032. // If VOL_RAMP_EN = 1, this is a soft mute.
  2033. // 1 ADC_HPF_FREEZE ADC High Pass Filter Freeze
  2034. // 0x0 = Normal operation
  2035. // 0x1 = Freeze the ADC high-pass filter offset register. The
  2036. // offset continues to be subtracted from the ADC data stream.
  2037. // 0 ADC_HPF_BYPASS ADC High Pass Filter Bypass
  2038. // 0x0 = Normal operation
  2039. // 0x1 = Bypassed and offset not updated
  2040. #define CHIP_DAC_VOL 0x0010
  2041. // 15:8 DAC_VOL_RIGHT DAC Right Channel Volume. Set the Right channel DAC volume
  2042. // with 0.5017 dB steps from 0 to -90 dB
  2043. // 0x3B and less = Reserved
  2044. // 0x3C = 0 dB
  2045. // 0x3D = -0.5 dB
  2046. // 0xF0 = -90 dB
  2047. // 0xFC and greater = Muted
  2048. // If VOL_RAMP_EN = 1, there is an automatic ramp to the
  2049. // new volume setting.
  2050. // 7:0 DAC_VOL_LEFT DAC Left Channel Volume. Set the Left channel DAC volume
  2051. // with 0.5017 dB steps from 0 to -90 dB
  2052. // 0x3B and less = Reserved
  2053. // 0x3C = 0 dB
  2054. // 0x3D = -0.5 dB
  2055. // 0xF0 = -90 dB
  2056. // 0xFC and greater = Muted
  2057. // If VOL_RAMP_EN = 1, there is an automatic ramp to the
  2058. // new volume setting.
  2059. #define CHIP_PAD_STRENGTH 0x0014
  2060. // 9:8 I2S_LRCLK I2S LRCLK Pad Drive Strength (default=1)
  2061. // Sets drive strength for output pads per the table below.
  2062. // VDDIO 1.8 V 2.5 V 3.3 V
  2063. // 0x0 = Disable
  2064. // 0x1 = 1.66 mA 2.87 mA 4.02 mA
  2065. // 0x2 = 3.33 mA 5.74 mA 8.03 mA
  2066. // 0x3 = 4.99 mA 8.61 mA 12.05 mA
  2067. // 7:6 I2S_SCLK I2S SCLK Pad Drive Strength (default=1)
  2068. // 5:4 I2S_DOUT I2S DOUT Pad Drive Strength (default=1)
  2069. // 3:2 CTRL_DATA I2C DATA Pad Drive Strength (default=3)
  2070. // 1:0 CTRL_CLK I2C CLK Pad Drive Strength (default=3)
  2071. // (all use same table as I2S_LRCLK)
  2072. #define CHIP_ANA_ADC_CTRL 0x0020
  2073. // 8 ADC_VOL_M6DB ADC Volume Range Reduction
  2074. // This bit shifts both right and left analog ADC volume
  2075. // range down by 6.0 dB.
  2076. // 0x0 = No change in ADC range
  2077. // 0x1 = ADC range reduced by 6.0 dB
  2078. // 7:4 ADC_VOL_RIGHT ADC Right Channel Volume
  2079. // Right channel analog ADC volume control in 1.5 dB steps.
  2080. // 0x0 = 0 dB
  2081. // 0x1 = +1.5 dB
  2082. // ...
  2083. // 0xF = +22.5 dB
  2084. // This range is -6.0 dB to +16.5 dB if ADC_VOL_M6DB is set to 1.
  2085. // 3:0 ADC_VOL_LEFT ADC Left Channel Volume
  2086. // (same scale as ADC_VOL_RIGHT)
  2087. #define CHIP_ANA_HP_CTRL 0x0022
  2088. // 14:8 HP_VOL_RIGHT Headphone Right Channel Volume (default 0x18)
  2089. // Right channel headphone volume control with 0.5 dB steps.
  2090. // 0x00 = +12 dB
  2091. // 0x01 = +11.5 dB
  2092. // 0x18 = 0 dB
  2093. // ...
  2094. // 0x7F = -51.5 dB
  2095. // 6:0 HP_VOL_LEFT Headphone Left Channel Volume (default 0x18)
  2096. // (same scale as HP_VOL_RIGHT)
  2097. #define CHIP_ANA_CTRL 0x0024
  2098. // 8 MUTE_LO LINEOUT Mute, 0 = Unmute, 1 = Mute (default 1)
  2099. // 6 SELECT_HP Select the headphone input, 0 = DAC, 1 = LINEIN
  2100. // 5 EN_ZCD_HP Enable the headphone zero cross detector (ZCD)
  2101. // 0x0 = HP ZCD disabled
  2102. // 0x1 = HP ZCD enabled
  2103. // 4 MUTE_HP Mute the headphone outputs, 0 = Unmute, 1 = Mute (default)
  2104. // 2 SELECT_ADC Select the ADC input, 0 = Microphone, 1 = LINEIN
  2105. // 1 EN_ZCD_ADC Enable the ADC analog zero cross detector (ZCD)
  2106. // 0x0 = ADC ZCD disabled
  2107. // 0x1 = ADC ZCD enabled
  2108. // 0 MUTE_ADC Mute the ADC analog volume, 0 = Unmute, 1 = Mute (default)
  2109. #define CHIP_LINREG_CTRL 0x0026
  2110. // 6 VDDC_MAN_ASSN Determines chargepump source when VDDC_ASSN_OVRD is set.
  2111. // 0x0 = VDDA
  2112. // 0x1 = VDDIO
  2113. // 5 VDDC_ASSN_OVRD Charge pump Source Assignment Override
  2114. // 0x0 = Charge pump source is automatically assigned based
  2115. // on higher of VDDA and VDDIO
  2116. // 0x1 = the source of charge pump is manually assigned by
  2117. // VDDC_MAN_ASSN If VDDIO and VDDA are both the same
  2118. // and greater than 3.1 V, VDDC_ASSN_OVRD and
  2119. // VDDC_MAN_ASSN should be used to manually assign
  2120. // VDDIO as the source for charge pump.
  2121. // 3:0 D_PROGRAMMING Sets the VDDD linear regulator output voltage in 50 mV steps.
  2122. // Must clear the LINREG_SIMPLE_POWERUP and STARTUP_POWERUP bits
  2123. // in the 0x0030 (CHIP_ANA_POWER) register after power-up, for
  2124. // this setting to produce the proper VDDD voltage.
  2125. // 0x0 = 1.60
  2126. // 0xF = 0.85
  2127. #define CHIP_REF_CTRL 0x0028 // bandgap reference bias voltage and currents
  2128. // 8:4 VAG_VAL Analog Ground Voltage Control
  2129. // These bits control the analog ground voltage in 25 mV steps.
  2130. // This should usually be set to VDDA/2 or lower for best
  2131. // performance (maximum output swing at minimum THD). This VAG
  2132. // reference is also used for the DAC and ADC voltage reference.
  2133. // So changing this voltage scales the output swing of the DAC
  2134. // and the output signal of the ADC.
  2135. // 0x00 = 0.800 V
  2136. // 0x1F = 1.575 V
  2137. // 3:1 BIAS_CTRL Bias control
  2138. // These bits adjust the bias currents for all of the analog
  2139. // blocks. By lowering the bias current a lower quiescent power
  2140. // is achieved. It should be noted that this mode can affect
  2141. // performance by 3-4 dB.
  2142. // 0x0 = Nominal
  2143. // 0x1-0x3=+12.5%
  2144. // 0x4=-12.5%
  2145. // 0x5=-25%
  2146. // 0x6=-37.5%
  2147. // 0x7=-50%
  2148. // 0 SMALL_POP VAG Ramp Control
  2149. // Setting this bit slows down the VAG ramp from ~200 to ~400 ms
  2150. // to reduce the startup pop, but increases the turn on/off time.
  2151. // 0x0 = Normal VAG ramp
  2152. // 0x1 = Slow down VAG ramp
  2153. #define CHIP_MIC_CTRL 0x002A // microphone gain & internal microphone bias
  2154. // 9:8 BIAS_RESISTOR MIC Bias Output Impedance Adjustment
  2155. // Controls an adjustable output impedance for the microphone bias.
  2156. // If this is set to zero the micbias block is powered off and
  2157. // the output is highZ.
  2158. // 0x0 = Powered off
  2159. // 0x1 = 2.0 kohm
  2160. // 0x2 = 4.0 kohm
  2161. // 0x3 = 8.0 kohm
  2162. // 6:4 BIAS_VOLT MIC Bias Voltage Adjustment
  2163. // Controls an adjustable bias voltage for the microphone bias
  2164. // amp in 250 mV steps. This bias voltage setting should be no
  2165. // more than VDDA-200 mV for adequate power supply rejection.
  2166. // 0x0 = 1.25 V
  2167. // ...
  2168. // 0x7 = 3.00 V
  2169. // 1:0 GAIN MIC Amplifier Gain
  2170. // Sets the microphone amplifier gain. At 0 dB setting the THD
  2171. // can be slightly higher than other paths- typically around
  2172. // ~65 dB. At other gain settings the THD are better.
  2173. // 0x0 = 0 dB
  2174. // 0x1 = +20 dB
  2175. // 0x2 = +30 dB
  2176. // 0x3 = +40 dB
  2177. #define CHIP_LINE_OUT_CTRL 0x002C
  2178. // 11:8 OUT_CURRENT Controls the output bias current for the LINEOUT amplifiers. The
  2179. // nominal recommended setting for a 10 kohm load with 1.0 nF load cap
  2180. // is 0x3. There are only 5 valid settings.
  2181. // 0x0=0.18 mA
  2182. // 0x1=0.27 mA
  2183. // 0x3=0.36 mA
  2184. // 0x7=0.45 mA
  2185. // 0xF=0.54 mA
  2186. // 5:0 LO_VAGCNTRL LINEOUT Amplifier Analog Ground Voltage
  2187. // Controls the analog ground voltage for the LINEOUT amplifiers
  2188. // in 25 mV steps. This should usually be set to VDDIO/2.
  2189. // 0x00 = 0.800 V
  2190. // ...
  2191. // 0x1F = 1.575 V
  2192. // ...
  2193. // 0x23 = 1.675 V
  2194. // 0x24-0x3F are invalid
  2195. #define CHIP_LINE_OUT_VOL 0x002E
  2196. // 12:8 LO_VOL_RIGHT LINEOUT Right Channel Volume (default=4)
  2197. // Controls the right channel LINEOUT volume in 0.5 dB steps.
  2198. // Higher codes have more attenuation.
  2199. // 4:0 LO_VOL_LEFT LINEOUT Left Channel Output Level (default=4)
  2200. // Used to normalize the output level of the left line output
  2201. // to full scale based on the values used to set
  2202. // LINE_OUT_CTRL->LO_VAGCNTRL and CHIP_REF_CTRL->VAG_VAL.
  2203. // In general this field should be set to:
  2204. // 40*log((VAG_VAL)/(LO_VAGCNTRL)) + 15
  2205. // Suggested values based on typical VDDIO and VDDA voltages.
  2206. // VDDA VAG_VAL VDDIO LO_VAGCNTRL LO_VOL_*
  2207. // 1.8 V 0.9 3.3 V 1.55 0x06
  2208. // 1.8 V 0.9 1.8 V 0.9 0x0F
  2209. // 3.3 V 1.55 1.8 V 0.9 0x19
  2210. // 3.3 V 1.55 3.3 V 1.55 0x0F
  2211. // After setting to the nominal voltage, this field can be used
  2212. // to adjust the output level in +/-0.5 dB increments by using
  2213. // values higher or lower than the nominal setting.
  2214. #define CHIP_ANA_POWER 0x0030 // power down controls for the analog blocks.
  2215. // The only other power-down controls are BIAS_RESISTOR in the MIC_CTRL register
  2216. // and the EN_ZCD control bits in ANA_CTRL.
  2217. // 14 DAC_MONO While DAC_POWERUP is set, this allows the DAC to be put into left only
  2218. // mono operation for power savings. 0=mono, 1=stereo (default)
  2219. // 13 LINREG_SIMPLE_POWERUP Power up the simple (low power) digital supply regulator.
  2220. // After reset, this bit can be cleared IF VDDD is driven
  2221. // externally OR the primary digital linreg is enabled with
  2222. // LINREG_D_POWERUP
  2223. // 12 STARTUP_POWERUP Power up the circuitry needed during the power up ramp and reset.
  2224. // After reset this bit can be cleared if VDDD is coming from
  2225. // an external source.
  2226. // 11 VDDC_CHRGPMP_POWERUP Power up the VDDC charge pump block. If neither VDDA or VDDIO
  2227. // is 3.0 V or larger this bit should be cleared before analog
  2228. // blocks are powered up.
  2229. // 10 PLL_POWERUP PLL Power Up, 0 = Power down, 1 = Power up
  2230. // When cleared, the PLL is turned off. This must be set before
  2231. // CHIP_CLK_CTRL->MCLK_FREQ is programmed to 0x3. The
  2232. // CHIP_PLL_CTRL register must be configured correctly before
  2233. // setting this bit.
  2234. // 9 LINREG_D_POWERUP Power up the primary VDDD linear regulator, 0 = Power down, 1 = Power up
  2235. // 8 VCOAMP_POWERUP Power up the PLL VCO amplifier, 0 = Power down, 1 = Power up
  2236. // 7 VAG_POWERUP Power up the VAG reference buffer.
  2237. // Setting this bit starts the power up ramp for the headphone
  2238. // and LINEOUT. The headphone (and/or LINEOUT) powerup should
  2239. // be set BEFORE clearing this bit. When this bit is cleared
  2240. // the power-down ramp is started. The headphone (and/or LINEOUT)
  2241. // powerup should stay set until the VAG is fully ramped down
  2242. // (200 to 400 ms after clearing this bit).
  2243. // 0x0 = Power down, 0x1 = Power up
  2244. // 6 ADC_MONO While ADC_POWERUP is set, this allows the ADC to be put into left only
  2245. // mono operation for power savings. This mode is useful when
  2246. // only using the microphone input.
  2247. // 0x0 = Mono (left only), 0x1 = Stereo
  2248. // 5 REFTOP_POWERUP Power up the reference bias currents
  2249. // 0x0 = Power down, 0x1 = Power up
  2250. // This bit can be cleared when the part is a sleep state
  2251. // to minimize analog power.
  2252. // 4 HEADPHONE_POWERUP Power up the headphone amplifiers
  2253. // 0x0 = Power down, 0x1 = Power up
  2254. // 3 DAC_POWERUP Power up the DACs
  2255. // 0x0 = Power down, 0x1 = Power up
  2256. // 2 CAPLESS_HEADPHONE_POWERUP Power up the capless headphone mode
  2257. // 0x0 = Power down, 0x1 = Power up
  2258. // 1 ADC_POWERUP Power up the ADCs
  2259. // 0x0 = Power down, 0x1 = Power up
  2260. // 0 LINEOUT_POWERUP Power up the LINEOUT amplifiers
  2261. // 0x0 = Power down, 0x1 = Power up
  2262. #define CHIP_PLL_CTRL 0x0032
  2263. // 15:11 INT_DIVISOR
  2264. // 10:0 FRAC_DIVISOR
  2265. #define CHIP_CLK_TOP_CTRL 0x0034
  2266. // 11 ENABLE_INT_OSC Setting this bit enables an internal oscillator to be used for the
  2267. // zero cross detectors, the short detect recovery, and the
  2268. // charge pump. This allows the I2S clock to be shut off while
  2269. // still operating an analog signal path. This bit can be kept
  2270. // on when the I2S clock is enabled, but the I2S clock is more
  2271. // accurate so it is preferred to clear this bit when I2S is present.
  2272. // 3 INPUT_FREQ_DIV2 SYS_MCLK divider before PLL input
  2273. // 0x0 = pass through
  2274. // 0x1 = SYS_MCLK is divided by 2 before entering PLL
  2275. // This must be set when the input clock is above 17 Mhz. This
  2276. // has no effect when the PLL is powered down.
  2277. #define CHIP_ANA_STATUS 0x0036
  2278. // 9 LRSHORT_STS This bit is high whenever a short is detected on the left or right
  2279. // channel headphone drivers.
  2280. // 8 CSHORT_STS This bit is high whenever a short is detected on the capless headphone
  2281. // common/center channel driver.
  2282. // 4 PLL_IS_LOCKED This bit goes high after the PLL is locked.
  2283. #define CHIP_ANA_TEST1 0x0038 // intended only for debug.
  2284. #define CHIP_ANA_TEST2 0x003A // intended only for debug.
  2285. #define CHIP_SHORT_CTRL 0x003C
  2286. // 14:12 LVLADJR Right channel headphone short detector in 25 mA steps.
  2287. // 0x3=25 mA
  2288. // 0x2=50 mA
  2289. // 0x1=75 mA
  2290. // 0x0=100 mA
  2291. // 0x4=125 mA
  2292. // 0x5=150 mA
  2293. // 0x6=175 mA
  2294. // 0x7=200 mA
  2295. // This trip point can vary by ~30% over process so leave plenty
  2296. // of guard band to avoid false trips. This short detect trip
  2297. // point is also effected by the bias current adjustments made
  2298. // by CHIP_REF_CTRL->BIAS_CTRL and by CHIP_ANA_TEST1->HP_IALL_ADJ.
  2299. // 10:8 LVLADJL Left channel headphone short detector in 25 mA steps.
  2300. // (same scale as LVLADJR)
  2301. // 6:4 LVLADJC Capless headphone center channel short detector in 50 mA steps.
  2302. // 0x3=50 mA
  2303. // 0x2=100 mA
  2304. // 0x1=150 mA
  2305. // 0x0=200 mA
  2306. // 0x4=250 mA
  2307. // 0x5=300 mA
  2308. // 0x6=350 mA
  2309. // 0x7=400 mA
  2310. // 3:2 MODE_LR Behavior of left/right short detection
  2311. // 0x0 = Disable short detector, reset short detect latch,
  2312. // software view non-latched short signal
  2313. // 0x1 = Enable short detector and reset the latch at timeout
  2314. // (every ~50 ms)
  2315. // 0x2 = This mode is not used/invalid
  2316. // 0x3 = Enable short detector with only manual reset (have
  2317. // to return to 0x0 to reset the latch)
  2318. // 1:0 MODE_CM Behavior of capless headphone central short detection
  2319. // (same settings as MODE_LR)
  2320. #define DAP_CONTROL 0x0100
  2321. #define DAP_PEQ 0x0102
  2322. #define DAP_BASS_ENHANCE 0x0104
  2323. #define DAP_BASS_ENHANCE_CTRL 0x0106
  2324. #define DAP_AUDIO_EQ 0x0108
  2325. #define DAP_SGTL_SURROUND 0x010A
  2326. #define DAP_FILTER_COEF_ACCES 0x010C
  2327. #define DAP_COEF_WR_B0_MSB 0x010E
  2328. #define DAP_COEF_WR_B0_LSB 0x0110
  2329. #define DAP_AUDIO_EQ_BASS_BAND0 0x0116 // 115 Hz
  2330. #define DAP_AUDIO_EQ_BAND1 0x0118 // 330 Hz
  2331. #define DAP_AUDIO_EQ_BAND2 0x011A // 990 Hz
  2332. #define DAP_AUDIO_EQ_BAND3 0x011C // 3000 Hz
  2333. #define DAP_AUDIO_EQ_TREBLE_BAND4 0x011E // 9900 Hz
  2334. #define DAP_MAIN_CHAN 0x0120
  2335. #define DAP_MIX_CHAN 0x0122
  2336. #define DAP_AVC_CTRL 0x0124
  2337. #define DAP_AVC_THRESHOLD 0x0126
  2338. #define DAP_AVC_ATTACK 0x0128
  2339. #define DAP_AVC_DECAY 0x012A
  2340. #define DAP_COEF_WR_B1_MSB 0x012C
  2341. #define DAP_COEF_WR_B1_LSB 0x012E
  2342. #define DAP_COEF_WR_B2_MSB 0x0130
  2343. #define DAP_COEF_WR_B2_LSB 0x0132
  2344. #define DAP_COEF_WR_A1_MSB 0x0134
  2345. #define DAP_COEF_WR_A1_LSB 0x0136
  2346. #define DAP_COEF_WR_A2_MSB 0x0138
  2347. #define DAP_COEF_WR_A2_LSB 0x013A
  2348. #define SGTL5000_I2C_ADDR 0x0A // CTRL_ADR0_CS pin low (normal configuration)
  2349. //#define SGTL5000_I2C_ADDR 0x2A // CTRL_ADR0_CS pin high
  2350. bool AudioControlSGTL5000::enable(void)
  2351. {
  2352. unsigned int n;
  2353. muted = true;
  2354. Wire.begin();
  2355. delay(5);
  2356. Serial.print("chip ID = ");
  2357. delay(5);
  2358. n = read(CHIP_ID);
  2359. Serial.println(n, HEX);
  2360. write(CHIP_ANA_POWER, 0x4060); // VDDD is externally driven with 1.8V
  2361. write(CHIP_LINREG_CTRL, 0x006C); // VDDA & VDDIO both over 3.1V
  2362. write(CHIP_REF_CTRL, 0x01F1); // VAG=1.575 slow ramp, normal bias current
  2363. write(CHIP_LINE_OUT_CTRL, 0x0322);
  2364. write(CHIP_SHORT_CTRL, 0x4446); // allow up to 125mA
  2365. write(CHIP_ANA_CTRL, 0x0137); // enable zero cross detectors
  2366. write(CHIP_ANA_POWER, 0x40FF); // power up: lineout, hp, adc, dac
  2367. write(CHIP_DIG_POWER, 0x0073); // power up all digital stuff
  2368. delay(400);
  2369. write(CHIP_LINE_OUT_VOL, 0x0505); // TODO: correct value for 3.3V
  2370. write(CHIP_CLK_CTRL, 0x0004); // 44.1 kHz, 256*Fs
  2371. write(CHIP_I2S_CTRL, 0x0130); // SCLK=32*Fs, 16bit, I2S format
  2372. // default signal routing is ok?
  2373. write(CHIP_SSS_CTRL, 0x0010); // ADC->I2S, I2S->DAC
  2374. write(CHIP_ADCDAC_CTRL, 0x0000); // disable dac mute
  2375. write(CHIP_DAC_VOL, 0x3C3C); // digital gain, 0dB
  2376. write(CHIP_ANA_HP_CTRL, 0x7F7F); // set volume (lowest level)
  2377. write(CHIP_ANA_CTRL, 0x0136); // enable zero cross detectors
  2378. //mute = false;
  2379. return true;
  2380. }
  2381. unsigned int AudioControlSGTL5000::read(unsigned int reg)
  2382. {
  2383. unsigned int val;
  2384. Wire.beginTransmission(SGTL5000_I2C_ADDR);
  2385. Wire.write(reg >> 8);
  2386. Wire.write(reg);
  2387. if (Wire.endTransmission(false) != 0) return 0;
  2388. if (Wire.requestFrom(SGTL5000_I2C_ADDR, 2) < 2) return 0;
  2389. val = Wire.read() << 8;
  2390. val |= Wire.read();
  2391. return val;
  2392. }
  2393. bool AudioControlSGTL5000::write(unsigned int reg, unsigned int val)
  2394. {
  2395. if (reg == CHIP_ANA_CTRL) ana_ctrl = val;
  2396. Wire.beginTransmission(SGTL5000_I2C_ADDR);
  2397. Wire.write(reg >> 8);
  2398. Wire.write(reg);
  2399. Wire.write(val >> 8);
  2400. Wire.write(val);
  2401. if (Wire.endTransmission() == 0) return true;
  2402. return false;
  2403. }
  2404. bool AudioControlSGTL5000::volumeInteger(unsigned int n)
  2405. {
  2406. if (n == 0) {
  2407. muted = true;
  2408. write(CHIP_ANA_HP_CTRL, 0x7F7F);
  2409. return muteHeadphone();
  2410. } else if (n > 0x80) {
  2411. n = 0;
  2412. } else {
  2413. n = 0x80 - n;
  2414. }
  2415. if (muted) {
  2416. muted = false;
  2417. unmuteHeadphone();
  2418. }
  2419. n = n | (n << 8);
  2420. return write(CHIP_ANA_HP_CTRL, n); // set volume
  2421. }