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.

2566 satır
72KB

  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. DMAMEM static uint32_t i2s_rx_buffer[AUDIO_BLOCK_SAMPLES];
  581. audio_block_t * AudioInputI2S::block_left = NULL;
  582. audio_block_t * AudioInputI2S::block_right = NULL;
  583. uint16_t AudioInputI2S::block_offset = 0;
  584. bool AudioInputI2S::update_responsibility = false;
  585. void AudioInputI2S::begin(void)
  586. {
  587. //block_left_1st = NULL;
  588. //block_right_1st = NULL;
  589. //pinMode(3, OUTPUT);
  590. //digitalWriteFast(3, HIGH);
  591. //delayMicroseconds(500);
  592. //digitalWriteFast(3, LOW);
  593. AudioOutputI2S::config_i2s();
  594. CORE_PIN13_CONFIG = PORT_PCR_MUX(4); // pin 13, PTC5, I2S0_RXD0
  595. DMA_CR = 0;
  596. DMA_TCD1_SADDR = &I2S0_RDR0;
  597. DMA_TCD1_SOFF = 0;
  598. DMA_TCD1_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  599. DMA_TCD1_NBYTES_MLNO = 2;
  600. DMA_TCD1_SLAST = 0;
  601. DMA_TCD1_DADDR = i2s_rx_buffer;
  602. DMA_TCD1_DOFF = 2;
  603. DMA_TCD1_CITER_ELINKNO = sizeof(i2s_rx_buffer) / 2;
  604. DMA_TCD1_DLASTSGA = -sizeof(i2s_rx_buffer);
  605. DMA_TCD1_BITER_ELINKNO = sizeof(i2s_rx_buffer) / 2;
  606. DMA_TCD1_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  607. DMAMUX0_CHCFG1 = DMAMUX_DISABLE;
  608. DMAMUX0_CHCFG1 = DMAMUX_SOURCE_I2S0_RX | DMAMUX_ENABLE;
  609. update_responsibility = update_setup();
  610. DMA_SERQ = 1;
  611. // TODO: is I2S_RCSR_BCE appropriate if sync'd to transmitter clock?
  612. //I2S0_RCSR |= I2S_RCSR_RE | I2S_RCSR_BCE | I2S_RCSR_FRDE | I2S_RCSR_FR;
  613. I2S0_RCSR |= I2S_RCSR_RE | I2S_RCSR_FRDE | I2S_RCSR_FR;
  614. NVIC_ENABLE_IRQ(IRQ_DMA_CH1);
  615. }
  616. void dma_ch1_isr(void)
  617. {
  618. uint32_t daddr, offset;
  619. const int16_t *src, *end;
  620. int16_t *dest_left, *dest_right;
  621. audio_block_t *left, *right;
  622. //digitalWriteFast(3, HIGH);
  623. daddr = (uint32_t)DMA_TCD1_DADDR;
  624. DMA_CINT = 1;
  625. if (daddr < (uint32_t)i2s_rx_buffer + sizeof(i2s_rx_buffer) / 2) {
  626. // DMA is receiving to the first half of the buffer
  627. // need to remove data from the second half
  628. src = (int16_t *)&i2s_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  629. end = (int16_t *)&i2s_rx_buffer[AUDIO_BLOCK_SAMPLES];
  630. if (AudioInputI2S::update_responsibility) AudioStream::update_all();
  631. } else {
  632. // DMA is receiving to the second half of the buffer
  633. // need to remove data from the first half
  634. src = (int16_t *)&i2s_rx_buffer[0];
  635. end = (int16_t *)&i2s_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  636. }
  637. left = AudioInputI2S::block_left;
  638. right = AudioInputI2S::block_right;
  639. if (left != NULL && right != NULL) {
  640. offset = AudioInputI2S::block_offset;
  641. if (offset <= AUDIO_BLOCK_SAMPLES/2) {
  642. dest_left = &(left->data[offset]);
  643. dest_right = &(right->data[offset]);
  644. AudioInputI2S::block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
  645. do {
  646. //n = *src++;
  647. //*dest_left++ = (int16_t)n;
  648. //*dest_right++ = (int16_t)(n >> 16);
  649. *dest_left++ = *src++;
  650. *dest_right++ = *src++;
  651. } while (src < end);
  652. }
  653. }
  654. //digitalWriteFast(3, LOW);
  655. }
  656. void AudioInputI2S::update(void)
  657. {
  658. audio_block_t *new_left=NULL, *new_right=NULL, *out_left=NULL, *out_right=NULL;
  659. // allocate 2 new blocks, but if one fails, allocate neither
  660. new_left = allocate();
  661. if (new_left != NULL) {
  662. new_right = allocate();
  663. if (new_right == NULL) {
  664. release(new_left);
  665. new_left = NULL;
  666. }
  667. }
  668. __disable_irq();
  669. if (block_offset >= AUDIO_BLOCK_SAMPLES) {
  670. // the DMA filled 2 blocks, so grab them and get the
  671. // 2 new blocks to the DMA, as quickly as possible
  672. out_left = block_left;
  673. block_left = new_left;
  674. out_right = block_right;
  675. block_right = new_right;
  676. block_offset = 0;
  677. __enable_irq();
  678. // then transmit the DMA's former blocks
  679. transmit(out_left, 0);
  680. release(out_left);
  681. transmit(out_right, 1);
  682. release(out_right);
  683. //Serial.print(".");
  684. } else if (new_left != NULL) {
  685. // the DMA didn't fill blocks, but we allocated blocks
  686. if (block_left == NULL) {
  687. // the DMA doesn't have any blocks to fill, so
  688. // give it the ones we just allocated
  689. block_left = new_left;
  690. block_right = new_right;
  691. block_offset = 0;
  692. __enable_irq();
  693. } else {
  694. // the DMA already has blocks, doesn't need these
  695. __enable_irq();
  696. release(new_left);
  697. release(new_right);
  698. }
  699. } else {
  700. // The DMA didn't fill blocks, and we could not allocate
  701. // memory... the system is likely starving for memory!
  702. // Sadly, there's nothing we can do.
  703. __enable_irq();
  704. }
  705. }
  706. /******************************************************************/
  707. DMAMEM static uint16_t analog_rx_buffer[AUDIO_BLOCK_SAMPLES];
  708. audio_block_t * AudioInputAnalog::block_left = NULL;
  709. uint16_t AudioInputAnalog::block_offset = 0;
  710. #define PDB_CONFIG (PDB_SC_TRGSEL(15) | PDB_SC_PDBEN | PDB_SC_CONT)
  711. #define PDB_PERIOD 1087 // 48e6 / 44100
  712. void AudioInputAnalog::begin(unsigned int pin)
  713. {
  714. uint32_t i, sum=0;
  715. // pin must be 0 to 13 (for A0 to A13)
  716. // or 14 to 23 for digital pin numbers A0-A9
  717. // or 34 to 37 corresponding to A10-A13
  718. if (pin > 23 && !(pin >= 34 && pin <= 37)) return;
  719. //pinMode(2, OUTPUT);
  720. //pinMode(3, OUTPUT);
  721. //digitalWriteFast(3, HIGH);
  722. //delayMicroseconds(500);
  723. //digitalWriteFast(3, LOW);
  724. // Configure the ADC and run at least one software-triggered
  725. // conversion. This completes the self calibration stuff and
  726. // leaves the ADC in a state that's mostly ready to use
  727. analogReadRes(16);
  728. analogReference(INTERNAL); // range 0 to 1.2 volts
  729. //analogReference(DEFAULT); // range 0 to 3.3 volts
  730. analogReadAveraging(8);
  731. // Actually, do many normal reads, to start with a nice DC level
  732. for (i=0; i < 1024; i++) {
  733. sum += analogRead(pin);
  734. }
  735. dc_average = sum >> 10;
  736. // testing only, enable adc interrupt
  737. //ADC0_SC1A |= ADC_SC1_AIEN;
  738. //while ((ADC0_SC1A & ADC_SC1_COCO) == 0) ; // wait
  739. //NVIC_ENABLE_IRQ(IRQ_ADC0);
  740. // set the programmable delay block to trigger the ADC at 44.1 kHz
  741. SIM_SCGC6 |= SIM_SCGC6_PDB;
  742. PDB0_MOD = PDB_PERIOD;
  743. PDB0_SC = PDB_CONFIG | PDB_SC_LDOK;
  744. PDB0_SC = PDB_CONFIG | PDB_SC_SWTRIG;
  745. PDB0_CH0C1 = 0x0101;
  746. // enable the ADC for hardware trigger and DMA
  747. ADC0_SC2 |= ADC_SC2_ADTRG | ADC_SC2_DMAEN;
  748. // set up a DMA channel to store the ADC data
  749. SIM_SCGC7 |= SIM_SCGC7_DMA;
  750. SIM_SCGC6 |= SIM_SCGC6_DMAMUX;
  751. DMA_CR = 0;
  752. DMA_TCD2_SADDR = &ADC0_RA;
  753. DMA_TCD2_SOFF = 0;
  754. DMA_TCD2_ATTR = DMA_TCD_ATTR_SSIZE(1) | DMA_TCD_ATTR_DSIZE(1);
  755. DMA_TCD2_NBYTES_MLNO = 2;
  756. DMA_TCD2_SLAST = 0;
  757. DMA_TCD2_DADDR = analog_rx_buffer;
  758. DMA_TCD2_DOFF = 2;
  759. DMA_TCD2_CITER_ELINKNO = sizeof(analog_rx_buffer) / 2;
  760. DMA_TCD2_DLASTSGA = -sizeof(analog_rx_buffer);
  761. DMA_TCD2_BITER_ELINKNO = sizeof(analog_rx_buffer) / 2;
  762. DMA_TCD2_CSR = DMA_TCD_CSR_INTHALF | DMA_TCD_CSR_INTMAJOR;
  763. DMAMUX0_CHCFG2 = DMAMUX_DISABLE;
  764. DMAMUX0_CHCFG2 = DMAMUX_SOURCE_ADC0 | DMAMUX_ENABLE;
  765. //update_responsibility = update_setup();
  766. DMA_SERQ = 2;
  767. NVIC_ENABLE_IRQ(IRQ_DMA_CH2);
  768. }
  769. void dma_ch2_isr(void)
  770. {
  771. uint32_t daddr, offset;
  772. const uint16_t *src, *end;
  773. uint16_t *dest_left;
  774. audio_block_t *left;
  775. //digitalWriteFast(3, HIGH);
  776. daddr = (uint32_t)DMA_TCD2_DADDR;
  777. DMA_CINT = 2;
  778. if (daddr < (uint32_t)analog_rx_buffer + sizeof(analog_rx_buffer) / 2) {
  779. // DMA is receiving to the first half of the buffer
  780. // need to remove data from the second half
  781. src = (uint16_t *)&analog_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  782. end = (uint16_t *)&analog_rx_buffer[AUDIO_BLOCK_SAMPLES];
  783. //if (AudioInputI2S::update_responsibility) AudioStream::update_all();
  784. } else {
  785. // DMA is receiving to the second half of the buffer
  786. // need to remove data from the first half
  787. src = (uint16_t *)&analog_rx_buffer[0];
  788. end = (uint16_t *)&analog_rx_buffer[AUDIO_BLOCK_SAMPLES/2];
  789. }
  790. left = AudioInputAnalog::block_left;
  791. if (left != NULL) {
  792. offset = AudioInputAnalog::block_offset;
  793. if (offset > AUDIO_BLOCK_SAMPLES/2) offset = AUDIO_BLOCK_SAMPLES/2;
  794. //if (offset <= AUDIO_BLOCK_SAMPLES/2) {
  795. dest_left = (uint16_t *)&(left->data[offset]);
  796. AudioInputAnalog::block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
  797. do {
  798. *dest_left++ = *src++;
  799. } while (src < end);
  800. //}
  801. }
  802. //digitalWriteFast(3, LOW);
  803. }
  804. #if 0
  805. void adc0_isr(void)
  806. {
  807. uint32_t tmp = ADC0_RA; // read ADC result to clear interrupt
  808. digitalWriteFast(3, HIGH);
  809. delayMicroseconds(1);
  810. digitalWriteFast(3, LOW);
  811. }
  812. #endif
  813. void AudioInputAnalog::update(void)
  814. {
  815. audio_block_t *new_left=NULL, *out_left=NULL;
  816. unsigned int dc, offset;
  817. int16_t s, *p, *end;
  818. // allocate new block (ok if NULL)
  819. new_left = allocate();
  820. __disable_irq();
  821. offset = block_offset;
  822. if (offset < AUDIO_BLOCK_SAMPLES) {
  823. // the DMA didn't fill a block
  824. if (new_left != NULL) {
  825. // but we allocated a block
  826. if (block_left == NULL) {
  827. // the DMA doesn't have any blocks to fill, so
  828. // give it the one we just allocated
  829. block_left = new_left;
  830. block_offset = 0;
  831. __enable_irq();
  832. //Serial.println("fail1");
  833. } else {
  834. // the DMA already has blocks, doesn't need this
  835. __enable_irq();
  836. release(new_left);
  837. //Serial.print("fail2, offset=");
  838. //Serial.println(offset);
  839. }
  840. } else {
  841. // The DMA didn't fill a block, and we could not allocate
  842. // memory... the system is likely starving for memory!
  843. // Sadly, there's nothing we can do.
  844. __enable_irq();
  845. //Serial.println("fail3");
  846. }
  847. return;
  848. }
  849. // the DMA filled a block, so grab it and get the
  850. // new block to the DMA, as quickly as possible
  851. out_left = block_left;
  852. block_left = new_left;
  853. block_offset = 0;
  854. __enable_irq();
  855. // find and subtract DC offset....
  856. // TODO: this may not be correct, needs testing with more types of signals
  857. dc = dc_average;
  858. p = out_left->data;
  859. end = p + AUDIO_BLOCK_SAMPLES;
  860. do {
  861. s = (uint16_t)(*p) - dc; // TODO: should be saturating subtract
  862. *p++ = s;
  863. dc += s >> 13; // approx 5.38 Hz high pass filter
  864. } while (p < end);
  865. dc_average = dc;
  866. // then transmit the AC data
  867. transmit(out_left);
  868. release(out_left);
  869. }
  870. /******************************************************************/
  871. #define STATE_DIRECT_8BIT_MONO 0 // playing mono at native sample rate
  872. #define STATE_DIRECT_8BIT_STEREO 1 // playing stereo at native sample rate
  873. #define STATE_DIRECT_16BIT_MONO 2 // playing mono at native sample rate
  874. #define STATE_DIRECT_16BIT_STEREO 3 // playing stereo at native sample rate
  875. #define STATE_CONVERT_8BIT_MONO 4 // playing mono, converting sample rate
  876. #define STATE_CONVERT_8BIT_STEREO 5 // playing stereo, converting sample rate
  877. #define STATE_CONVERT_16BIT_MONO 6 // playing mono, converting sample rate
  878. #define STATE_CONVERT_16BIT_STEREO 7 // playing stereo, converting sample rate
  879. #define STATE_PARSE1 8 // looking for 20 byte ID header
  880. #define STATE_PARSE2 9 // looking for 16 byte format header
  881. #define STATE_PARSE3 10 // looking for 8 byte data header
  882. #define STATE_PARSE4 11 // ignoring unknown chunk
  883. #define STATE_STOP 12
  884. void AudioPlaySDcardWAV::begin(void)
  885. {
  886. state = STATE_STOP;
  887. state_play = STATE_STOP;
  888. data_length = 0;
  889. if (block_left) {
  890. release(block_left);
  891. block_left = NULL;
  892. }
  893. if (block_right) {
  894. release(block_right);
  895. block_right = NULL;
  896. }
  897. }
  898. bool AudioPlaySDcardWAV::play(const char *filename)
  899. {
  900. stop();
  901. wavfile = SD.open(filename);
  902. if (!wavfile) return false;
  903. buffer_remaining = 0;
  904. state_play = STATE_STOP;
  905. data_length = 0;
  906. state = STATE_PARSE1;
  907. return true;
  908. }
  909. void AudioPlaySDcardWAV::stop(void)
  910. {
  911. __disable_irq();
  912. if (state != STATE_STOP) {
  913. state = STATE_STOP;
  914. __enable_irq();
  915. wavfile.close();
  916. } else {
  917. __enable_irq();
  918. }
  919. }
  920. bool AudioPlaySDcardWAV::start(void)
  921. {
  922. __disable_irq();
  923. if (state == STATE_STOP) {
  924. if (state_play == STATE_STOP) {
  925. __enable_irq();
  926. return false;
  927. }
  928. state = state_play;
  929. }
  930. __enable_irq();
  931. return true;
  932. }
  933. void AudioPlaySDcardWAV::update(void)
  934. {
  935. // only update if we're playing
  936. if (state == STATE_STOP) return;
  937. // allocate the audio blocks to transmit
  938. block_left = allocate();
  939. if (block_left == NULL) return;
  940. if (state < 8 && (state & 1) == 1) {
  941. // if we're playing stereo, allocate another
  942. // block for the right channel output
  943. block_right = allocate();
  944. if (block_right == NULL) {
  945. release(block_left);
  946. return;
  947. }
  948. } else {
  949. // if we're playing mono or just parsing
  950. // the WAV file header, no right-side block
  951. block_right = NULL;
  952. }
  953. block_offset = 0;
  954. //Serial.println("update");
  955. // is there buffered data?
  956. if (buffer_remaining > 0) {
  957. // we have buffered data
  958. if (consume()) return; // it was enough to transmit audio
  959. }
  960. // we only get to this point when buffer[512] is empty
  961. if (state != STATE_STOP && wavfile.available()) {
  962. // we can read more data from the file...
  963. buffer_remaining = wavfile.read(buffer, 512);
  964. if (consume()) {
  965. // good, it resulted in audio transmit
  966. return;
  967. } else {
  968. // not good, no audio was transmitted
  969. buffer_remaining = 0;
  970. if (block_left) release(block_left);
  971. if (block_right) release(block_right);
  972. // if we're still playing, well, there's going to
  973. // be a gap in output, but we can't keep burning
  974. // time trying to read more data. Hopefully things
  975. // will go better next time?
  976. if (state != STATE_STOP) return;
  977. }
  978. }
  979. // end of file reached or other reason to stop
  980. wavfile.close();
  981. state_play = STATE_STOP;
  982. state = STATE_STOP;
  983. }
  984. // https://ccrma.stanford.edu/courses/422/projects/WaveFormat/
  985. // Consume already buffered data. Returns true if audio transmitted.
  986. bool AudioPlaySDcardWAV::consume(void)
  987. {
  988. uint32_t len, size;
  989. uint8_t lsb, msb;
  990. const uint8_t *p;
  991. size = buffer_remaining;
  992. p = buffer + 512 - size;
  993. start:
  994. if (size == 0) return false;
  995. //Serial.print("AudioPlaySDcardWAV write, size = ");
  996. //Serial.print(size);
  997. //Serial.print(", data_length = ");
  998. //Serial.print(data_length);
  999. //Serial.print(", state = ");
  1000. //Serial.println(state);
  1001. switch (state) {
  1002. // parse wav file header, is this really a .wav file?
  1003. case STATE_PARSE1:
  1004. len = 20 - data_length;
  1005. if (size < len) len = size;
  1006. memcpy((uint8_t *)header + data_length, p, len);
  1007. data_length += len;
  1008. if (data_length < 20) return false;
  1009. // parse the header...
  1010. if (header[0] == 0x46464952 && header[2] == 0x45564157
  1011. && header[3] == 0x20746D66 && header[4] == 16) {
  1012. //Serial.println("header ok");
  1013. state = STATE_PARSE2;
  1014. p += len;
  1015. size -= len;
  1016. data_length = 0;
  1017. goto start;
  1018. }
  1019. //Serial.println("unknown WAV header");
  1020. break;
  1021. // check & extract key audio parameters
  1022. case STATE_PARSE2:
  1023. len = 16 - data_length;
  1024. if (size < len) len = size;
  1025. memcpy((uint8_t *)header + data_length, p, len);
  1026. data_length += len;
  1027. if (data_length < 16) return false;
  1028. if (parse_format()) {
  1029. //Serial.println("audio format ok");
  1030. p += len;
  1031. size -= len;
  1032. data_length = 0;
  1033. state = STATE_PARSE3;
  1034. goto start;
  1035. }
  1036. //Serial.println("unknown audio format");
  1037. break;
  1038. // find the data chunk
  1039. case STATE_PARSE3:
  1040. len = 8 - data_length;
  1041. if (size < len) len = size;
  1042. memcpy((uint8_t *)header + data_length, p, len);
  1043. data_length += len;
  1044. if (data_length < 8) return false;
  1045. //Serial.print("chunk id = ");
  1046. //Serial.print(header[0], HEX);
  1047. //Serial.print(", length = ");
  1048. //Serial.println(header[1]);
  1049. p += len;
  1050. size -= len;
  1051. data_length = header[1];
  1052. if (header[0] == 0x61746164) {
  1053. //Serial.println("found data chunk");
  1054. // TODO: verify offset in file is an even number
  1055. // as required by WAV format. abort if odd. Code
  1056. // below will depend upon this and fail if not even.
  1057. leftover_bytes = 0;
  1058. state = state_play;
  1059. if (state & 1) {
  1060. // if we're going to start stereo
  1061. // better allocate another output block
  1062. block_right = allocate();
  1063. if (!block_right) return false;
  1064. }
  1065. } else {
  1066. state = STATE_PARSE4;
  1067. }
  1068. goto start;
  1069. // ignore any extra unknown chunks (title & artist info)
  1070. case STATE_PARSE4:
  1071. if (size < data_length) {
  1072. data_length -= size;
  1073. return false;
  1074. }
  1075. p += data_length;
  1076. size -= data_length;
  1077. data_length = 0;
  1078. state = STATE_PARSE3;
  1079. goto start;
  1080. // playing mono at native sample rate
  1081. case STATE_DIRECT_8BIT_MONO:
  1082. return false;
  1083. // playing stereo at native sample rate
  1084. case STATE_DIRECT_8BIT_STEREO:
  1085. return false;
  1086. // playing mono at native sample rate
  1087. case STATE_DIRECT_16BIT_MONO:
  1088. if (size > data_length) size = data_length;
  1089. data_length -= size;
  1090. while (1) {
  1091. lsb = *p++;
  1092. msb = *p++;
  1093. size -= 2;
  1094. block_left->data[block_offset++] = (msb << 8) | lsb;
  1095. if (block_offset >= AUDIO_BLOCK_SAMPLES) {
  1096. transmit(block_left, 0);
  1097. transmit(block_left, 1);
  1098. //Serial1.print('%');
  1099. //delayMicroseconds(90);
  1100. release(block_left);
  1101. block_left = NULL;
  1102. data_length += size;
  1103. buffer_remaining = size;
  1104. if (block_right) release(block_right);
  1105. return true;
  1106. }
  1107. if (size == 0) {
  1108. if (data_length == 0) break;
  1109. return false;
  1110. }
  1111. }
  1112. // end of file reached
  1113. if (block_offset > 0) {
  1114. // TODO: fill remainder of last block with zero and transmit
  1115. }
  1116. state = STATE_STOP;
  1117. return false;
  1118. // playing stereo at native sample rate
  1119. case STATE_DIRECT_16BIT_STEREO:
  1120. if (size > data_length) size = data_length;
  1121. data_length -= size;
  1122. if (leftover_bytes) {
  1123. block_left->data[block_offset] = header[0];
  1124. goto right16;
  1125. }
  1126. while (1) {
  1127. lsb = *p++;
  1128. msb = *p++;
  1129. size -= 2;
  1130. if (size == 0) {
  1131. if (data_length == 0) break;
  1132. header[0] = (msb << 8) | lsb;
  1133. leftover_bytes = 2;
  1134. return false;
  1135. }
  1136. block_left->data[block_offset] = (msb << 8) | lsb;
  1137. right16:
  1138. lsb = *p++;
  1139. msb = *p++;
  1140. size -= 2;
  1141. block_right->data[block_offset++] = (msb << 8) | lsb;
  1142. if (block_offset >= AUDIO_BLOCK_SAMPLES) {
  1143. transmit(block_left, 0);
  1144. release(block_left);
  1145. block_left = NULL;
  1146. transmit(block_right, 1);
  1147. release(block_right);
  1148. block_right = NULL;
  1149. data_length += size;
  1150. buffer_remaining = size;
  1151. return true;
  1152. }
  1153. if (size == 0) {
  1154. if (data_length == 0) break;
  1155. leftover_bytes = 0;
  1156. return false;
  1157. }
  1158. }
  1159. // end of file reached
  1160. if (block_offset > 0) {
  1161. // TODO: fill remainder of last block with zero and transmit
  1162. }
  1163. state = STATE_STOP;
  1164. return false;
  1165. // playing mono, converting sample rate
  1166. case STATE_CONVERT_8BIT_MONO :
  1167. return false;
  1168. // playing stereo, converting sample rate
  1169. case STATE_CONVERT_8BIT_STEREO:
  1170. return false;
  1171. // playing mono, converting sample rate
  1172. case STATE_CONVERT_16BIT_MONO:
  1173. return false;
  1174. // playing stereo, converting sample rate
  1175. case STATE_CONVERT_16BIT_STEREO:
  1176. return false;
  1177. // ignore any extra data after playing
  1178. // or anything following any error
  1179. case STATE_STOP:
  1180. return false;
  1181. // this is not supposed to happen!
  1182. //default:
  1183. //Serial.println("AudioPlaySDcardWAV, unknown state");
  1184. }
  1185. state_play = STATE_STOP;
  1186. state = STATE_STOP;
  1187. return false;
  1188. }
  1189. /*
  1190. 00000000 52494646 66EA6903 57415645 666D7420 RIFFf.i.WAVEfmt
  1191. 00000010 10000000 01000200 44AC0000 10B10200 ........D.......
  1192. 00000020 04001000 4C495354 3A000000 494E464F ....LIST:...INFO
  1193. 00000030 494E414D 14000000 49205761 6E742054 INAM....I Want T
  1194. 00000040 6F20436F 6D65204F 76657200 49415254 o Come Over.IART
  1195. 00000050 12000000 4D656C69 73736120 45746865 ....Melissa Ethe
  1196. 00000060 72696467 65006461 746100EA 69030100 ridge.data..i...
  1197. 00000070 FEFF0300 FCFF0400 FDFF0200 0000FEFF ................
  1198. 00000080 0300FDFF 0200FFFF 00000100 FEFF0300 ................
  1199. 00000090 FDFF0300 FDFF0200 FFFF0100 0000FFFF ................
  1200. */
  1201. // SD library on Teensy3 at 96 MHz
  1202. // 256 byte chunks, speed is 443272 bytes/sec
  1203. // 512 byte chunks, speed is 468023 bytes/sec
  1204. bool AudioPlaySDcardWAV::parse_format(void)
  1205. {
  1206. uint8_t num = 0;
  1207. uint16_t format;
  1208. uint16_t channels;
  1209. uint32_t rate;
  1210. uint16_t bits;
  1211. format = header[0];
  1212. //Serial.print(" format = ");
  1213. //Serial.println(format);
  1214. if (format != 1) return false;
  1215. channels = header[0] >> 16;
  1216. //Serial.print(" channels = ");
  1217. //Serial.println(channels);
  1218. if (channels == 1) {
  1219. } else if (channels == 2) {
  1220. num = 1;
  1221. } else {
  1222. return false;
  1223. }
  1224. bits = header[3] >> 16;
  1225. //Serial.print(" bits = ");
  1226. //Serial.println(bits);
  1227. if (bits == 8) {
  1228. } else if (bits == 16) {
  1229. num |= 2;
  1230. } else {
  1231. return false;
  1232. }
  1233. rate = header[1];
  1234. //Serial.print(" rate = ");
  1235. //Serial.println(rate);
  1236. if (rate == AUDIO_SAMPLE_RATE) {
  1237. } else if (rate >= 8000 && rate <= 48000) {
  1238. num |= 4;
  1239. } else {
  1240. return false;
  1241. }
  1242. // we're not checking the byte rate and block align fields
  1243. // if they're not the expected values, all we could do is
  1244. // return false. Do any real wav files have unexpected
  1245. // values in these other fields?
  1246. state_play = num;
  1247. return true;
  1248. }
  1249. /******************************************************************/
  1250. void AudioPlaySDcardRAW::begin(void)
  1251. {
  1252. playing = false;
  1253. if (block) {
  1254. release(block);
  1255. block = NULL;
  1256. }
  1257. }
  1258. bool AudioPlaySDcardRAW::play(const char *filename)
  1259. {
  1260. stop();
  1261. rawfile = SD.open(filename);
  1262. if (!rawfile) {
  1263. Serial.println("unable to open file");
  1264. return false;
  1265. }
  1266. Serial.println("able to open file");
  1267. playing = true;
  1268. return true;
  1269. }
  1270. void AudioPlaySDcardRAW::stop(void)
  1271. {
  1272. __disable_irq();
  1273. if (playing) {
  1274. playing = false;
  1275. __enable_irq();
  1276. rawfile.close();
  1277. } else {
  1278. __enable_irq();
  1279. }
  1280. }
  1281. void AudioPlaySDcardRAW::update(void)
  1282. {
  1283. unsigned int i, n;
  1284. // only update if we're playing
  1285. if (!playing) return;
  1286. // allocate the audio blocks to transmit
  1287. block = allocate();
  1288. if (block == NULL) return;
  1289. if (rawfile.available()) {
  1290. // we can read more data from the file...
  1291. n = rawfile.read(block->data, AUDIO_BLOCK_SAMPLES*2);
  1292. for (i=n/2; i < AUDIO_BLOCK_SAMPLES; i++) {
  1293. block->data[i] = 0;
  1294. }
  1295. transmit(block);
  1296. release(block);
  1297. } else {
  1298. rawfile.close();
  1299. playing = false;
  1300. }
  1301. }
  1302. /******************************************************************/
  1303. void AudioPlayMemory::play(const unsigned int *data)
  1304. {
  1305. uint32_t format;
  1306. playing = 0;
  1307. length = *data++;
  1308. format = *data++;
  1309. next = data;
  1310. prior = 0;
  1311. fraction = 0;
  1312. if (format == (44100 | (8 << 24))) {
  1313. playing = 1;
  1314. } else if (format == (44100 | (16 << 24))) {
  1315. playing = 2;
  1316. } else if (format == (22050 | (8 << 24))) {
  1317. playing = 3;
  1318. } else if (format == (22050 | (16 << 24))) {
  1319. playing = 4;
  1320. } else if (format == (11025 | (8 << 24))) {
  1321. playing = 5;
  1322. } else if (format == (11025 | (16 << 24))) {
  1323. playing = 6;
  1324. } else if (format == (8000 | (8 << 24))) {
  1325. playing = 7;
  1326. }
  1327. }
  1328. void AudioPlayMemory::stop(void)
  1329. {
  1330. playing = 0;
  1331. }
  1332. void AudioPlayMemory::update(void)
  1333. {
  1334. audio_block_t *block;
  1335. const unsigned int *in;
  1336. int16_t *out;
  1337. uint32_t tmp32, consumed;
  1338. int16_t s0, s1, s2, s3, s4;
  1339. int i;
  1340. if (!playing) return;
  1341. block = allocate();
  1342. if (block == NULL) return;
  1343. //Serial.write('.');
  1344. out = block->data;
  1345. in = next;
  1346. s0 = prior;
  1347. switch (playing) {
  1348. case 1: // 8 bits, 44100 Hz - works
  1349. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 4) {
  1350. tmp32 = *in++;
  1351. *out++ = (int8_t)(tmp32 & 255) << 8;
  1352. *out++ = (int8_t)((tmp32 >> 8) & 255) << 8;
  1353. *out++ = (int8_t)((tmp32 >> 16) & 255) << 8;
  1354. *out++ = (int8_t)((tmp32 >> 24) & 255) << 8;
  1355. }
  1356. consumed = 128;
  1357. break;
  1358. case 2: // 16 bits, 44100 Hz - ???
  1359. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 2) {
  1360. tmp32 = *in++;
  1361. *out++ = (int16_t)(tmp32 & 65535);
  1362. *out++ = (int16_t)(tmp32 >> 16);
  1363. }
  1364. consumed = 128;
  1365. break;
  1366. case 3: // 8 bits, 22050 Hz - works
  1367. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 8) {
  1368. tmp32 = *in++;
  1369. s1 = (int8_t)((tmp32 >> 0) & 255) << 8;
  1370. s2 = (int8_t)((tmp32 >> 8) & 255) << 8;
  1371. s3 = (int8_t)((tmp32 >> 16) & 255) << 8;
  1372. s4 = (int8_t)((tmp32 >> 24) & 255) << 8;
  1373. *out++ = (s0 + s1) >> 1;
  1374. *out++ = s1;
  1375. *out++ = (s1 + s2) >> 1;
  1376. *out++ = s2;
  1377. *out++ = (s2 + s3) >> 1;
  1378. *out++ = s3;
  1379. *out++ = (s3 + s4) >> 1;
  1380. *out++ = s4;
  1381. s0 = s4;
  1382. }
  1383. consumed = 64;
  1384. break;
  1385. case 4: // 16 bits, 22050 Hz - ??
  1386. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 4) {
  1387. tmp32 = *in++;
  1388. s1 = (int16_t)(tmp32 & 65535);
  1389. s2 = (int16_t)(tmp32 >> 16);
  1390. *out++ = (s0 + s1) >> 1;
  1391. *out++ = s1;
  1392. *out++ = (s1 + s2) >> 1;
  1393. *out++ = s2;
  1394. s0 = s2;
  1395. }
  1396. consumed = 64;
  1397. break;
  1398. case 5: // 8 bits, 11025 Hz - ??
  1399. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 16) {
  1400. tmp32 = *in++;
  1401. s1 = (int8_t)((tmp32 >> 0) & 255) << 8;
  1402. s2 = (int8_t)((tmp32 >> 8) & 255) << 8;
  1403. s3 = (int8_t)((tmp32 >> 16) & 255) << 8;
  1404. s4 = (int8_t)((tmp32 >> 24) & 255) << 8;
  1405. *out++ = (s0 * 3 + s1) >> 2;
  1406. *out++ = (s0 + s1) >> 1;
  1407. *out++ = (s0 + s1 * 3) >> 2;
  1408. *out++ = s1;
  1409. *out++ = (s1 * 3 + s2) >> 2;
  1410. *out++ = (s1 + s2) >> 1;
  1411. *out++ = (s1 + s2 * 3) >> 2;
  1412. *out++ = s2;
  1413. *out++ = (s2 * 3 + s3) >> 2;
  1414. *out++ = (s2 + s3) >> 1;
  1415. *out++ = (s2 + s3 * 3) >> 2;
  1416. *out++ = s3;
  1417. *out++ = (s3 * 3 + s4) >> 2;
  1418. *out++ = (s3 + s4) >> 1;
  1419. *out++ = (s3 + s4 * 3) >> 2;
  1420. *out++ = s4;
  1421. s0 = s4;
  1422. }
  1423. consumed = 32;
  1424. break;
  1425. case 6: // 16 bits, 11025 Hz - ??
  1426. for (i=0; i < AUDIO_BLOCK_SAMPLES; i += 8) {
  1427. tmp32 = *in++;
  1428. s1 = (int16_t)(tmp32 & 65535);
  1429. s2 = (int16_t)(tmp32 >> 16);
  1430. *out++ = (s0 * 3 + s1) >> 2;
  1431. *out++ = (s0 + s1) >> 1;
  1432. *out++ = (s0 + s1 * 3) >> 2;
  1433. *out++ = s1;
  1434. *out++ = (s1 * 3 + s2) >> 2;
  1435. *out++ = (s1 + s2) >> 1;
  1436. *out++ = (s1 + s2 * 3) >> 2;
  1437. *out++ = s2;
  1438. s0 = s2;
  1439. }
  1440. consumed = 32;
  1441. break;
  1442. case 7: // 8 bits, 8000 Hz - has audible problem, pull requests welcome!
  1443. if (fraction > 0) {
  1444. tmp32 = *in++;
  1445. s1 = (int8_t)((tmp32 >> 0) & 255) << 8;
  1446. s2 = (int8_t)((tmp32 >> 8) & 255) << 8;
  1447. s3 = (int8_t)((tmp32 >> 16) & 255) << 8;
  1448. s4 = (int8_t)((tmp32 >> 24) & 255) << 8;
  1449. switch (fraction) {
  1450. case 20: *out++ = (s0 * 7447 + s1 * 8937) >> 14;
  1451. *out++ = (s0 * 4468 + s1 * 11916) >> 14;
  1452. case 18: *out++ = (s0 * 1489 + s1 * 14894) >> 14;
  1453. *out++ = (s1 * 14894 + s2 * 1489) >> 14;
  1454. case 16: *out++ = (s1 * 11916 + s2 * 4468) >> 14;
  1455. *out++ = (s1 * 8937 + s2 * 7447) >> 14;
  1456. case 14: *out++ = (s1 * 5958 + s2 * 10426) >> 14;
  1457. *out++ = (s1 * 2978 + s2 * 13405) >> 14;
  1458. case 12: *out++ = s2;
  1459. *out++ = (s2 * 13405 + s3 * 2978) >> 14;
  1460. case 10: *out++ = (s2 * 10426 + s3 * 5958) >> 14;
  1461. *out++ = (s2 * 7447 + s3 * 8937) >> 14;
  1462. case 8: *out++ = (s2 * 4468 + s3 * 11916) >> 14;
  1463. *out++ = (s2 * 1489 + s3 * 14894) >> 14;
  1464. case 6: *out++ = (s3 * 14894 + s4 * 1489) >> 14;
  1465. *out++ = (s3 * 11916 + s4 * 4468) >> 14;
  1466. case 4: *out++ = (s3 * 8937 + s4 * 7447) >> 14;
  1467. *out++ = (s3 * 5958 + s4 * 10426) >> 14;
  1468. case 2: *out++ = (s3 * 2978 + s4 * 13405) >> 14;
  1469. *out++ = s4;
  1470. }
  1471. s0 = s4;
  1472. consumed = 4;
  1473. } else {
  1474. consumed = 0;
  1475. }
  1476. for (i = fraction; i < AUDIO_BLOCK_SAMPLES-22 /* 106 */ ; i += 22) {
  1477. tmp32 = *in++;
  1478. s1 = (int8_t)((tmp32 >> 0) & 255) << 8;
  1479. s2 = (int8_t)((tmp32 >> 8) & 255) << 8;
  1480. s3 = (int8_t)((tmp32 >> 16) & 255) << 8;
  1481. s4 = (int8_t)((tmp32 >> 24) & 255) << 8;
  1482. *out++ = (s0 * 13405 + s1 * 2978) >> 14;
  1483. *out++ = (s0 * 10426 + s1 * 5958) >> 14;
  1484. *out++ = (s0 * 7447 + s1 * 8937) >> 14;
  1485. *out++ = (s0 * 4468 + s1 * 11916) >> 14;
  1486. *out++ = (s0 * 1489 + s1 * 14894) >> 14;
  1487. *out++ = (s1 * 14894 + s2 * 1489) >> 14;
  1488. *out++ = (s1 * 11916 + s2 * 4468) >> 14;
  1489. *out++ = (s1 * 8937 + s2 * 7447) >> 14;
  1490. *out++ = (s1 * 5958 + s2 * 10426) >> 14;
  1491. *out++ = (s1 * 2978 + s2 * 13405) >> 14;
  1492. *out++ = s2;
  1493. *out++ = (s2 * 13405 + s3 * 2978) >> 14;
  1494. *out++ = (s2 * 10426 + s3 * 5958) >> 14;
  1495. *out++ = (s2 * 7447 + s3 * 8937) >> 14;
  1496. *out++ = (s2 * 4468 + s3 * 11916) >> 14;
  1497. *out++ = (s2 * 1489 + s3 * 14894) >> 14;
  1498. *out++ = (s3 * 14894 + s4 * 1489) >> 14;
  1499. *out++ = (s3 * 11916 + s4 * 4468) >> 14;
  1500. *out++ = (s3 * 8937 + s4 * 7447) >> 14;
  1501. *out++ = (s3 * 5958 + s4 * 10426) >> 14;
  1502. *out++ = (s3 * 2978 + s4 * 13405) >> 14;
  1503. *out++ = s4;
  1504. s0 = s4;
  1505. consumed += 4;
  1506. }
  1507. if (i < AUDIO_BLOCK_SAMPLES) {
  1508. fraction = 22 - (AUDIO_BLOCK_SAMPLES - i);
  1509. tmp32 = *in;
  1510. s1 = (int8_t)((tmp32 >> 0) & 255) << 8;
  1511. s2 = (int8_t)((tmp32 >> 8) & 255) << 8;
  1512. s3 = (int8_t)((tmp32 >> 16) & 255) << 8;
  1513. s4 = (int8_t)((tmp32 >> 24) & 255) << 8;
  1514. do {
  1515. *out++ = (s0 * 13405 + s1 * 2978) >> 14;
  1516. *out++ = (s0 * 10426 + s1 * 5958) >> 14;
  1517. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1518. *out++ = (s0 * 7447 + s1 * 8937) >> 14;
  1519. *out++ = (s0 * 4468 + s1 * 11916) >> 14;
  1520. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1521. *out++ = (s0 * 1489 + s1 * 14894) >> 14;
  1522. *out++ = (s1 * 14894 + s2 * 1489) >> 14;
  1523. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1524. *out++ = (s1 * 11916 + s2 * 4468) >> 14;
  1525. *out++ = (s1 * 8937 + s2 * 7447) >> 14;
  1526. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1527. *out++ = (s1 * 5958 + s2 * 10426) >> 14;
  1528. *out++ = (s1 * 2978 + s2 * 13405) >> 14;
  1529. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1530. *out++ = s2;
  1531. *out++ = (s2 * 13405 + s3 * 2978) >> 14;
  1532. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1533. *out++ = (s2 * 10426 + s3 * 5958) >> 14;
  1534. *out++ = (s2 * 7447 + s3 * 8937) >> 14;
  1535. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1536. *out++ = (s2 * 4468 + s3 * 11916) >> 14;
  1537. *out++ = (s2 * 1489 + s3 * 14894) >> 14;
  1538. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1539. *out++ = (s3 * 14894 + s4 * 1489) >> 14;
  1540. *out++ = (s3 * 11916 + s4 * 4468) >> 14;
  1541. if ((i += 2) == AUDIO_BLOCK_SAMPLES) break;
  1542. *out++ = (s3 * 8937 + s4 * 7447) >> 14;
  1543. *out++ = (s3 * 5958 + s4 * 10426) >> 14;
  1544. } while (0);
  1545. } else {
  1546. fraction = 0;
  1547. }
  1548. break;
  1549. default:
  1550. release(block);
  1551. playing = 0;
  1552. return;
  1553. }
  1554. prior = s0;
  1555. next = in;
  1556. if (length > consumed) {
  1557. length -= consumed;
  1558. } else {
  1559. Serial.println("end");
  1560. playing = 0;
  1561. }
  1562. transmit(block);
  1563. release(block);
  1564. }
  1565. /******************************************************************/
  1566. // computes ((a[31:0] * b[15:0]) >> 16)
  1567. static inline int32_t signed_multiply_32x16b(int32_t a, uint32_t b) __attribute__((always_inline));
  1568. static inline int32_t signed_multiply_32x16b(int32_t a, uint32_t b)
  1569. {
  1570. int32_t out;
  1571. asm volatile("smulwb %0, %1, %2" : "=r" (out) : "r" (a), "r" (b));
  1572. return out;
  1573. }
  1574. // computes ((a[31:0] * b[31:16]) >> 16)
  1575. static inline int32_t signed_multiply_32x16t(int32_t a, uint32_t b) __attribute__((always_inline));
  1576. static inline int32_t signed_multiply_32x16t(int32_t a, uint32_t b)
  1577. {
  1578. int32_t out;
  1579. asm volatile("smulwt %0, %1, %2" : "=r" (out) : "r" (a), "r" (b));
  1580. return out;
  1581. }
  1582. // computes ((a[15:0) << 16) | b[15:0])
  1583. static inline uint32_t pack_16x16(int32_t a, int32_t b) __attribute__((always_inline));
  1584. static inline uint32_t pack_16x16(int32_t a, int32_t b)
  1585. {
  1586. int32_t out;
  1587. asm volatile("pkhbt %0, %1, %2, lsl #16" : "=r" (out) : "r" (b), "r" (a));
  1588. return out;
  1589. }
  1590. // computes (((a[31:16] + b[31:16]) << 16) | (a[15:0 + b[15:0]))
  1591. static inline uint32_t signed_add_16_and_16(uint32_t a, uint32_t b) __attribute__((always_inline));
  1592. static inline uint32_t signed_add_16_and_16(uint32_t a, uint32_t b)
  1593. {
  1594. int32_t out;
  1595. asm volatile("qadd16 %0, %1, %2" : "=r" (out) : "r" (a), "r" (b));
  1596. return out;
  1597. }
  1598. void applyGain(int16_t *data, int32_t mult)
  1599. {
  1600. uint32_t *p = (uint32_t *)data;
  1601. const uint32_t *end = (uint32_t *)(data + AUDIO_BLOCK_SAMPLES);
  1602. do {
  1603. uint32_t tmp32 = *p; // read 2 samples from *data
  1604. int32_t val1 = signed_multiply_32x16b(mult, tmp32);
  1605. int32_t val2 = signed_multiply_32x16t(mult, tmp32);
  1606. val1 = signed_saturate_rshift(val1, 16, 0);
  1607. val2 = signed_saturate_rshift(val2, 16, 0);
  1608. *p++ = pack_16x16(val2, val1);
  1609. } while (p < end);
  1610. }
  1611. // page 133
  1612. void applyGainThenAdd(int16_t *data, const int16_t *in, int32_t mult)
  1613. {
  1614. uint32_t *dst = (uint32_t *)data;
  1615. const uint32_t *src = (uint32_t *)in;
  1616. const uint32_t *end = (uint32_t *)(data + AUDIO_BLOCK_SAMPLES);
  1617. if (mult == 65536) {
  1618. do {
  1619. uint32_t tmp32 = *dst;
  1620. *dst++ = signed_add_16_and_16(tmp32, *src++);
  1621. tmp32 = *dst;
  1622. *dst++ = signed_add_16_and_16(tmp32, *src++);
  1623. } while (dst < end);
  1624. } else {
  1625. do {
  1626. uint32_t tmp32 = *src++; // read 2 samples from *data
  1627. int32_t val1 = signed_multiply_32x16b(mult, tmp32);
  1628. int32_t val2 = signed_multiply_32x16t(mult, tmp32);
  1629. val1 = signed_saturate_rshift(val1, 16, 0);
  1630. val2 = signed_saturate_rshift(val2, 16, 0);
  1631. tmp32 = pack_16x16(val2, val1);
  1632. uint32_t tmp32b = *dst;
  1633. *dst++ = signed_add_16_and_16(tmp32, tmp32b);
  1634. } while (dst < end);
  1635. }
  1636. }
  1637. void AudioMixer4::update(void)
  1638. {
  1639. audio_block_t *in, *out=NULL;
  1640. unsigned int channel;
  1641. for (channel=0; channel < 4; channel++) {
  1642. if (!out) {
  1643. out = receiveWritable(channel);
  1644. if (out) {
  1645. int32_t mult = multiplier[channel];
  1646. if (mult != 65536) applyGain(out->data, mult);
  1647. }
  1648. } else {
  1649. in = receiveReadOnly(channel);
  1650. if (in) {
  1651. applyGainThenAdd(out->data, in->data, multiplier[channel]);
  1652. release(in);
  1653. }
  1654. }
  1655. }
  1656. if (out) {
  1657. transmit(out);
  1658. release(out);
  1659. }
  1660. }
  1661. /******************************************************************/
  1662. #include "Wire.h"
  1663. #define WM8731_I2C_ADDR 0x1A
  1664. //#define WM8731_I2C_ADDR 0x1B
  1665. #define WM8731_REG_LLINEIN 0
  1666. #define WM8731_REG_RLINEIN 1
  1667. #define WM8731_REG_LHEADOUT 2
  1668. #define WM8731_REG_RHEADOUT 3
  1669. #define WM8731_REG_ANALOG 4
  1670. #define WM8731_REG_DIGITAL 5
  1671. #define WM8731_REG_POWERDOWN 6
  1672. #define WM8731_REG_INTERFACE 7
  1673. #define WM8731_REG_SAMPLING 8
  1674. #define WM8731_REG_ACTIVE 9
  1675. #define WM8731_REG_RESET 15
  1676. bool AudioControlWM8731::enable(void)
  1677. {
  1678. Wire.begin();
  1679. delay(5);
  1680. //write(WM8731_REG_RESET, 0);
  1681. write(WM8731_REG_INTERFACE, 0x02); // I2S, 16 bit, MCLK slave
  1682. write(WM8731_REG_SAMPLING, 0x20); // 256*Fs, 44.1 kHz, MCLK/1
  1683. // In order to prevent pops, the DAC should first be soft-muted (DACMU),
  1684. // the output should then be de-selected from the line and headphone output
  1685. // (DACSEL), then the DAC powered down (DACPD).
  1686. write(WM8731_REG_DIGITAL, 0x08); // DAC soft mute
  1687. write(WM8731_REG_ANALOG, 0x00); // disable all
  1688. write(WM8731_REG_POWERDOWN, 0x60); // linein, mic, adc, dac, lineout
  1689. write(WM8731_REG_LHEADOUT, 0x80); // volume off
  1690. write(WM8731_REG_RHEADOUT, 0x80);
  1691. delay(100); // how long to power up?
  1692. write(WM8731_REG_ACTIVE, 1);
  1693. delay(5);
  1694. write(WM8731_REG_DIGITAL, 0x00); // DAC unmuted
  1695. write(WM8731_REG_ANALOG, 0x10); // DAC selected
  1696. return true;
  1697. }
  1698. bool AudioControlWM8731::write(unsigned int reg, unsigned int val)
  1699. {
  1700. Wire.beginTransmission(WM8731_I2C_ADDR);
  1701. Wire.write((reg << 1) | ((val >> 8) & 1));
  1702. Wire.write(val & 0xFF);
  1703. Wire.endTransmission();
  1704. return true;
  1705. }
  1706. bool AudioControlWM8731::volumeInteger(unsigned int n)
  1707. {
  1708. if (n > 127) n = 127;
  1709. //Serial.print("volumeInteger, n = ");
  1710. //Serial.println(n);
  1711. write(WM8731_REG_LHEADOUT, n | 0x180);
  1712. write(WM8731_REG_RHEADOUT, n | 0x80);
  1713. return true;
  1714. }
  1715. /******************************************************************/
  1716. #define CHIP_ID 0x0000
  1717. // 15:8 PARTID 0xA0 - 8 bit identifier for SGTL5000
  1718. // 7:0 REVID 0x00 - revision number for SGTL5000.
  1719. #define CHIP_DIG_POWER 0x0002
  1720. // 6 ADC_POWERUP 1=Enable, 0=disable the ADC block, both digital & analog,
  1721. // 5 DAC_POWERUP 1=Enable, 0=disable the DAC block, both analog and digital
  1722. // 4 DAP_POWERUP 1=Enable, 0=disable the DAP block
  1723. // 1 I2S_OUT_POWERUP 1=Enable, 0=disable the I2S data output
  1724. // 0 I2S_IN_POWERUP 1=Enable, 0=disable the I2S data input
  1725. #define CHIP_CLK_CTRL 0x0004
  1726. // 5:4 RATE_MODE Sets the sample rate mode. MCLK_FREQ is still specified
  1727. // relative to the rate in SYS_FS
  1728. // 0x0 = SYS_FS specifies the rate
  1729. // 0x1 = Rate is 1/2 of the SYS_FS rate
  1730. // 0x2 = Rate is 1/4 of the SYS_FS rate
  1731. // 0x3 = Rate is 1/6 of the SYS_FS rate
  1732. // 3:2 SYS_FS Sets the internal system sample rate (default=2)
  1733. // 0x0 = 32 kHz
  1734. // 0x1 = 44.1 kHz
  1735. // 0x2 = 48 kHz
  1736. // 0x3 = 96 kHz
  1737. // 1:0 MCLK_FREQ Identifies incoming SYS_MCLK frequency and if the PLL should be used
  1738. // 0x0 = 256*Fs
  1739. // 0x1 = 384*Fs
  1740. // 0x2 = 512*Fs
  1741. // 0x3 = Use PLL
  1742. // The 0x3 (Use PLL) setting must be used if the SYS_MCLK is not
  1743. // a standard multiple of Fs (256, 384, or 512). This setting can
  1744. // also be used if SYS_MCLK is a standard multiple of Fs.
  1745. // Before this field is set to 0x3 (Use PLL), the PLL must be
  1746. // powered up by setting CHIP_ANA_POWER->PLL_POWERUP and
  1747. // CHIP_ANA_POWER->VCOAMP_POWERUP. Also, the PLL dividers must
  1748. // be calculated based on the external MCLK rate and
  1749. // CHIP_PLL_CTRL register must be set (see CHIP_PLL_CTRL register
  1750. // description details on how to calculate the divisors).
  1751. #define CHIP_I2S_CTRL 0x0006
  1752. // 8 SCLKFREQ Sets frequency of I2S_SCLK when in master mode (MS=1). When in slave
  1753. // mode (MS=0), this field must be set appropriately to match SCLK input
  1754. // rate.
  1755. // 0x0 = 64Fs
  1756. // 0x1 = 32Fs - Not supported for RJ mode (I2S_MODE = 1)
  1757. // 7 MS Configures master or slave of I2S_LRCLK and I2S_SCLK.
  1758. // 0x0 = Slave: I2S_LRCLK an I2S_SCLK are inputs
  1759. // 0x1 = Master: I2S_LRCLK and I2S_SCLK are outputs
  1760. // NOTE: If the PLL is used (CHIP_CLK_CTRL->MCLK_FREQ==0x3),
  1761. // the SGTL5000 must be a master of the I2S port (MS==1)
  1762. // 6 SCLK_INV Sets the edge that data (input and output) is clocked in on for I2S_SCLK
  1763. // 0x0 = data is valid on rising edge of I2S_SCLK
  1764. // 0x1 = data is valid on falling edge of I2S_SCLK
  1765. // 5:4 DLEN I2S data length (default=1)
  1766. // 0x0 = 32 bits (only valid when SCLKFREQ=0),
  1767. // not valid for Right Justified Mode
  1768. // 0x1 = 24 bits (only valid when SCLKFREQ=0)
  1769. // 0x2 = 20 bits
  1770. // 0x3 = 16 bits
  1771. // 3:2 I2S_MODE Sets the mode for the I2S port
  1772. // 0x0 = I2S mode or Left Justified (Use LRALIGN to select)
  1773. // 0x1 = Right Justified Mode
  1774. // 0x2 = PCM Format A/B
  1775. // 0x3 = RESERVED
  1776. // 1 LRALIGN I2S_LRCLK Alignment to data word. Not used for Right Justified mode
  1777. // 0x0 = Data word starts 1 I2S_SCLK delay after I2S_LRCLK
  1778. // transition (I2S format, PCM format A)
  1779. // 0x1 = Data word starts after I2S_LRCLK transition (left
  1780. // justified format, PCM format B)
  1781. // 0 LRPOL I2S_LRCLK Polarity when data is presented.
  1782. // 0x0 = I2S_LRCLK = 0 - Left, 1 - Right
  1783. // 1x0 = I2S_LRCLK = 0 - Right, 1 - Left
  1784. // The left subframe should be presented first regardless of
  1785. // the setting of LRPOL.
  1786. #define CHIP_SSS_CTRL 0x000A
  1787. // 14 DAP_MIX_LRSWAP DAP Mixer Input Swap
  1788. // 0x0 = Normal Operation
  1789. // 0x1 = Left and Right channels for the DAP MIXER Input are swapped.
  1790. // 13 DAP_LRSWAP DAP Mixer Input Swap
  1791. // 0x0 = Normal Operation
  1792. // 0x1 = Left and Right channels for the DAP Input are swapped
  1793. // 12 DAC_LRSWAP DAC Input Swap
  1794. // 0x0 = Normal Operation
  1795. // 0x1 = Left and Right channels for the DAC are swapped
  1796. // 10 I2S_LRSWAP I2S_DOUT Swap
  1797. // 0x0 = Normal Operation
  1798. // 0x1 = Left and Right channels for the I2S_DOUT are swapped
  1799. // 9:8 DAP_MIX_SELECT Select data source for DAP mixer
  1800. // 0x0 = ADC
  1801. // 0x1 = I2S_IN
  1802. // 0x2 = Reserved
  1803. // 0x3 = Reserved
  1804. // 7:6 DAP_SELECT Select data source for DAP
  1805. // 0x0 = ADC
  1806. // 0x1 = I2S_IN
  1807. // 0x2 = Reserved
  1808. // 0x3 = Reserved
  1809. // 5:4 DAC_SELECT Select data source for DAC (default=1)
  1810. // 0x0 = ADC
  1811. // 0x1 = I2S_IN
  1812. // 0x2 = Reserved
  1813. // 0x3 = DAP
  1814. // 1:0 I2S_SELECT Select data source for I2S_DOUT
  1815. // 0x0 = ADC
  1816. // 0x1 = I2S_IN
  1817. // 0x2 = Reserved
  1818. // 0x3 = DAP
  1819. #define CHIP_ADCDAC_CTRL 0x000E
  1820. // 13 VOL_BUSY_DAC_RIGHT Volume Busy DAC Right
  1821. // 0x0 = Ready
  1822. // 0x1 = Busy - This indicates the channel has not reached its
  1823. // programmed volume/mute level
  1824. // 12 VOL_BUSY_DAC_LEFT Volume Busy DAC Left
  1825. // 0x0 = Ready
  1826. // 0x1 = Busy - This indicates the channel has not reached its
  1827. // programmed volume/mute level
  1828. // 9 VOL_RAMP_EN Volume Ramp Enable (default=1)
  1829. // 0x0 = Disables volume ramp. New volume settings take immediate
  1830. // effect without a ramp
  1831. // 0x1 = Enables volume ramp
  1832. // This field affects DAC_VOL. The volume ramp effects both
  1833. // volume settings and mute When set to 1 a soft mute is enabled.
  1834. // 8 VOL_EXPO_RAMP Exponential Volume Ramp Enable
  1835. // 0x0 = Linear ramp over top 4 volume octaves
  1836. // 0x1 = Exponential ramp over full volume range
  1837. // This bit only takes effect if VOL_RAMP_EN is 1.
  1838. // 3 DAC_MUTE_RIGHT DAC Right Mute (default=1)
  1839. // 0x0 = Unmute
  1840. // 0x1 = Muted
  1841. // If VOL_RAMP_EN = 1, this is a soft mute.
  1842. // 2 DAC_MUTE_LEFT DAC Left Mute (default=1)
  1843. // 0x0 = Unmute
  1844. // 0x1 = Muted
  1845. // If VOL_RAMP_EN = 1, this is a soft mute.
  1846. // 1 ADC_HPF_FREEZE ADC High Pass Filter Freeze
  1847. // 0x0 = Normal operation
  1848. // 0x1 = Freeze the ADC high-pass filter offset register. The
  1849. // offset continues to be subtracted from the ADC data stream.
  1850. // 0 ADC_HPF_BYPASS ADC High Pass Filter Bypass
  1851. // 0x0 = Normal operation
  1852. // 0x1 = Bypassed and offset not updated
  1853. #define CHIP_DAC_VOL 0x0010
  1854. // 15:8 DAC_VOL_RIGHT DAC Right Channel Volume. Set the Right channel DAC volume
  1855. // with 0.5017 dB steps from 0 to -90 dB
  1856. // 0x3B and less = Reserved
  1857. // 0x3C = 0 dB
  1858. // 0x3D = -0.5 dB
  1859. // 0xF0 = -90 dB
  1860. // 0xFC and greater = Muted
  1861. // If VOL_RAMP_EN = 1, there is an automatic ramp to the
  1862. // new volume setting.
  1863. // 7:0 DAC_VOL_LEFT DAC Left Channel Volume. Set the Left channel DAC volume
  1864. // with 0.5017 dB steps from 0 to -90 dB
  1865. // 0x3B and less = Reserved
  1866. // 0x3C = 0 dB
  1867. // 0x3D = -0.5 dB
  1868. // 0xF0 = -90 dB
  1869. // 0xFC and greater = Muted
  1870. // If VOL_RAMP_EN = 1, there is an automatic ramp to the
  1871. // new volume setting.
  1872. #define CHIP_PAD_STRENGTH 0x0014
  1873. // 9:8 I2S_LRCLK I2S LRCLK Pad Drive Strength (default=1)
  1874. // Sets drive strength for output pads per the table below.
  1875. // VDDIO 1.8 V 2.5 V 3.3 V
  1876. // 0x0 = Disable
  1877. // 0x1 = 1.66 mA 2.87 mA 4.02 mA
  1878. // 0x2 = 3.33 mA 5.74 mA 8.03 mA
  1879. // 0x3 = 4.99 mA 8.61 mA 12.05 mA
  1880. // 7:6 I2S_SCLK I2S SCLK Pad Drive Strength (default=1)
  1881. // 5:4 I2S_DOUT I2S DOUT Pad Drive Strength (default=1)
  1882. // 3:2 CTRL_DATA I2C DATA Pad Drive Strength (default=3)
  1883. // 1:0 CTRL_CLK I2C CLK Pad Drive Strength (default=3)
  1884. // (all use same table as I2S_LRCLK)
  1885. #define CHIP_ANA_ADC_CTRL 0x0020
  1886. // 8 ADC_VOL_M6DB ADC Volume Range Reduction
  1887. // This bit shifts both right and left analog ADC volume
  1888. // range down by 6.0 dB.
  1889. // 0x0 = No change in ADC range
  1890. // 0x1 = ADC range reduced by 6.0 dB
  1891. // 7:4 ADC_VOL_RIGHT ADC Right Channel Volume
  1892. // Right channel analog ADC volume control in 1.5 dB steps.
  1893. // 0x0 = 0 dB
  1894. // 0x1 = +1.5 dB
  1895. // ...
  1896. // 0xF = +22.5 dB
  1897. // This range is -6.0 dB to +16.5 dB if ADC_VOL_M6DB is set to 1.
  1898. // 3:0 ADC_VOL_LEFT ADC Left Channel Volume
  1899. // (same scale as ADC_VOL_RIGHT)
  1900. #define CHIP_ANA_HP_CTRL 0x0022
  1901. // 14:8 HP_VOL_RIGHT Headphone Right Channel Volume (default 0x18)
  1902. // Right channel headphone volume control with 0.5 dB steps.
  1903. // 0x00 = +12 dB
  1904. // 0x01 = +11.5 dB
  1905. // 0x18 = 0 dB
  1906. // ...
  1907. // 0x7F = -51.5 dB
  1908. // 6:0 HP_VOL_LEFT Headphone Left Channel Volume (default 0x18)
  1909. // (same scale as HP_VOL_RIGHT)
  1910. #define CHIP_ANA_CTRL 0x0024
  1911. // 8 MUTE_LO LINEOUT Mute, 0 = Unmute, 1 = Mute (default 1)
  1912. // 6 SELECT_HP Select the headphone input, 0 = DAC, 1 = LINEIN
  1913. // 5 EN_ZCD_HP Enable the headphone zero cross detector (ZCD)
  1914. // 0x0 = HP ZCD disabled
  1915. // 0x1 = HP ZCD enabled
  1916. // 4 MUTE_HP Mute the headphone outputs, 0 = Unmute, 1 = Mute (default)
  1917. // 2 SELECT_ADC Select the ADC input, 0 = Microphone, 1 = LINEIN
  1918. // 1 EN_ZCD_ADC Enable the ADC analog zero cross detector (ZCD)
  1919. // 0x0 = ADC ZCD disabled
  1920. // 0x1 = ADC ZCD enabled
  1921. // 0 MUTE_ADC Mute the ADC analog volume, 0 = Unmute, 1 = Mute (default)
  1922. #define CHIP_LINREG_CTRL 0x0026
  1923. // 6 VDDC_MAN_ASSN Determines chargepump source when VDDC_ASSN_OVRD is set.
  1924. // 0x0 = VDDA
  1925. // 0x1 = VDDIO
  1926. // 5 VDDC_ASSN_OVRD Charge pump Source Assignment Override
  1927. // 0x0 = Charge pump source is automatically assigned based
  1928. // on higher of VDDA and VDDIO
  1929. // 0x1 = the source of charge pump is manually assigned by
  1930. // VDDC_MAN_ASSN If VDDIO and VDDA are both the same
  1931. // and greater than 3.1 V, VDDC_ASSN_OVRD and
  1932. // VDDC_MAN_ASSN should be used to manually assign
  1933. // VDDIO as the source for charge pump.
  1934. // 3:0 D_PROGRAMMING Sets the VDDD linear regulator output voltage in 50 mV steps.
  1935. // Must clear the LINREG_SIMPLE_POWERUP and STARTUP_POWERUP bits
  1936. // in the 0x0030 (CHIP_ANA_POWER) register after power-up, for
  1937. // this setting to produce the proper VDDD voltage.
  1938. // 0x0 = 1.60
  1939. // 0xF = 0.85
  1940. #define CHIP_REF_CTRL 0x0028 // bandgap reference bias voltage and currents
  1941. // 8:4 VAG_VAL Analog Ground Voltage Control
  1942. // These bits control the analog ground voltage in 25 mV steps.
  1943. // This should usually be set to VDDA/2 or lower for best
  1944. // performance (maximum output swing at minimum THD). This VAG
  1945. // reference is also used for the DAC and ADC voltage reference.
  1946. // So changing this voltage scales the output swing of the DAC
  1947. // and the output signal of the ADC.
  1948. // 0x00 = 0.800 V
  1949. // 0x1F = 1.575 V
  1950. // 3:1 BIAS_CTRL Bias control
  1951. // These bits adjust the bias currents for all of the analog
  1952. // blocks. By lowering the bias current a lower quiescent power
  1953. // is achieved. It should be noted that this mode can affect
  1954. // performance by 3-4 dB.
  1955. // 0x0 = Nominal
  1956. // 0x1-0x3=+12.5%
  1957. // 0x4=-12.5%
  1958. // 0x5=-25%
  1959. // 0x6=-37.5%
  1960. // 0x7=-50%
  1961. // 0 SMALL_POP VAG Ramp Control
  1962. // Setting this bit slows down the VAG ramp from ~200 to ~400 ms
  1963. // to reduce the startup pop, but increases the turn on/off time.
  1964. // 0x0 = Normal VAG ramp
  1965. // 0x1 = Slow down VAG ramp
  1966. #define CHIP_MIC_CTRL 0x002A // microphone gain & internal microphone bias
  1967. // 9:8 BIAS_RESISTOR MIC Bias Output Impedance Adjustment
  1968. // Controls an adjustable output impedance for the microphone bias.
  1969. // If this is set to zero the micbias block is powered off and
  1970. // the output is highZ.
  1971. // 0x0 = Powered off
  1972. // 0x1 = 2.0 kohm
  1973. // 0x2 = 4.0 kohm
  1974. // 0x3 = 8.0 kohm
  1975. // 6:4 BIAS_VOLT MIC Bias Voltage Adjustment
  1976. // Controls an adjustable bias voltage for the microphone bias
  1977. // amp in 250 mV steps. This bias voltage setting should be no
  1978. // more than VDDA-200 mV for adequate power supply rejection.
  1979. // 0x0 = 1.25 V
  1980. // ...
  1981. // 0x7 = 3.00 V
  1982. // 1:0 GAIN MIC Amplifier Gain
  1983. // Sets the microphone amplifier gain. At 0 dB setting the THD
  1984. // can be slightly higher than other paths- typically around
  1985. // ~65 dB. At other gain settings the THD are better.
  1986. // 0x0 = 0 dB
  1987. // 0x1 = +20 dB
  1988. // 0x2 = +30 dB
  1989. // 0x3 = +40 dB
  1990. #define CHIP_LINE_OUT_CTRL 0x002C
  1991. // 11:8 OUT_CURRENT Controls the output bias current for the LINEOUT amplifiers. The
  1992. // nominal recommended setting for a 10 kohm load with 1.0 nF load cap
  1993. // is 0x3. There are only 5 valid settings.
  1994. // 0x0=0.18 mA
  1995. // 0x1=0.27 mA
  1996. // 0x3=0.36 mA
  1997. // 0x7=0.45 mA
  1998. // 0xF=0.54 mA
  1999. // 5:0 LO_VAGCNTRL LINEOUT Amplifier Analog Ground Voltage
  2000. // Controls the analog ground voltage for the LINEOUT amplifiers
  2001. // in 25 mV steps. This should usually be set to VDDIO/2.
  2002. // 0x00 = 0.800 V
  2003. // ...
  2004. // 0x1F = 1.575 V
  2005. // ...
  2006. // 0x23 = 1.675 V
  2007. // 0x24-0x3F are invalid
  2008. #define CHIP_LINE_OUT_VOL 0x002E
  2009. // 12:8 LO_VOL_RIGHT LINEOUT Right Channel Volume (default=4)
  2010. // Controls the right channel LINEOUT volume in 0.5 dB steps.
  2011. // Higher codes have more attenuation.
  2012. // 4:0 LO_VOL_LEFT LINEOUT Left Channel Output Level (default=4)
  2013. // Used to normalize the output level of the left line output
  2014. // to full scale based on the values used to set
  2015. // LINE_OUT_CTRL->LO_VAGCNTRL and CHIP_REF_CTRL->VAG_VAL.
  2016. // In general this field should be set to:
  2017. // 40*log((VAG_VAL)/(LO_VAGCNTRL)) + 15
  2018. // Suggested values based on typical VDDIO and VDDA voltages.
  2019. // VDDA VAG_VAL VDDIO LO_VAGCNTRL LO_VOL_*
  2020. // 1.8 V 0.9 3.3 V 1.55 0x06
  2021. // 1.8 V 0.9 1.8 V 0.9 0x0F
  2022. // 3.3 V 1.55 1.8 V 0.9 0x19
  2023. // 3.3 V 1.55 3.3 V 1.55 0x0F
  2024. // After setting to the nominal voltage, this field can be used
  2025. // to adjust the output level in +/-0.5 dB increments by using
  2026. // values higher or lower than the nominal setting.
  2027. #define CHIP_ANA_POWER 0x0030 // power down controls for the analog blocks.
  2028. // The only other power-down controls are BIAS_RESISTOR in the MIC_CTRL register
  2029. // and the EN_ZCD control bits in ANA_CTRL.
  2030. // 14 DAC_MONO While DAC_POWERUP is set, this allows the DAC to be put into left only
  2031. // mono operation for power savings. 0=mono, 1=stereo (default)
  2032. // 13 LINREG_SIMPLE_POWERUP Power up the simple (low power) digital supply regulator.
  2033. // After reset, this bit can be cleared IF VDDD is driven
  2034. // externally OR the primary digital linreg is enabled with
  2035. // LINREG_D_POWERUP
  2036. // 12 STARTUP_POWERUP Power up the circuitry needed during the power up ramp and reset.
  2037. // After reset this bit can be cleared if VDDD is coming from
  2038. // an external source.
  2039. // 11 VDDC_CHRGPMP_POWERUP Power up the VDDC charge pump block. If neither VDDA or VDDIO
  2040. // is 3.0 V or larger this bit should be cleared before analog
  2041. // blocks are powered up.
  2042. // 10 PLL_POWERUP PLL Power Up, 0 = Power down, 1 = Power up
  2043. // When cleared, the PLL is turned off. This must be set before
  2044. // CHIP_CLK_CTRL->MCLK_FREQ is programmed to 0x3. The
  2045. // CHIP_PLL_CTRL register must be configured correctly before
  2046. // setting this bit.
  2047. // 9 LINREG_D_POWERUP Power up the primary VDDD linear regulator, 0 = Power down, 1 = Power up
  2048. // 8 VCOAMP_POWERUP Power up the PLL VCO amplifier, 0 = Power down, 1 = Power up
  2049. // 7 VAG_POWERUP Power up the VAG reference buffer.
  2050. // Setting this bit starts the power up ramp for the headphone
  2051. // and LINEOUT. The headphone (and/or LINEOUT) powerup should
  2052. // be set BEFORE clearing this bit. When this bit is cleared
  2053. // the power-down ramp is started. The headphone (and/or LINEOUT)
  2054. // powerup should stay set until the VAG is fully ramped down
  2055. // (200 to 400 ms after clearing this bit).
  2056. // 0x0 = Power down, 0x1 = Power up
  2057. // 6 ADC_MONO While ADC_POWERUP is set, this allows the ADC to be put into left only
  2058. // mono operation for power savings. This mode is useful when
  2059. // only using the microphone input.
  2060. // 0x0 = Mono (left only), 0x1 = Stereo
  2061. // 5 REFTOP_POWERUP Power up the reference bias currents
  2062. // 0x0 = Power down, 0x1 = Power up
  2063. // This bit can be cleared when the part is a sleep state
  2064. // to minimize analog power.
  2065. // 4 HEADPHONE_POWERUP Power up the headphone amplifiers
  2066. // 0x0 = Power down, 0x1 = Power up
  2067. // 3 DAC_POWERUP Power up the DACs
  2068. // 0x0 = Power down, 0x1 = Power up
  2069. // 2 CAPLESS_HEADPHONE_POWERUP Power up the capless headphone mode
  2070. // 0x0 = Power down, 0x1 = Power up
  2071. // 1 ADC_POWERUP Power up the ADCs
  2072. // 0x0 = Power down, 0x1 = Power up
  2073. // 0 LINEOUT_POWERUP Power up the LINEOUT amplifiers
  2074. // 0x0 = Power down, 0x1 = Power up
  2075. #define CHIP_PLL_CTRL 0x0032
  2076. // 15:11 INT_DIVISOR
  2077. // 10:0 FRAC_DIVISOR
  2078. #define CHIP_CLK_TOP_CTRL 0x0034
  2079. // 11 ENABLE_INT_OSC Setting this bit enables an internal oscillator to be used for the
  2080. // zero cross detectors, the short detect recovery, and the
  2081. // charge pump. This allows the I2S clock to be shut off while
  2082. // still operating an analog signal path. This bit can be kept
  2083. // on when the I2S clock is enabled, but the I2S clock is more
  2084. // accurate so it is preferred to clear this bit when I2S is present.
  2085. // 3 INPUT_FREQ_DIV2 SYS_MCLK divider before PLL input
  2086. // 0x0 = pass through
  2087. // 0x1 = SYS_MCLK is divided by 2 before entering PLL
  2088. // This must be set when the input clock is above 17 Mhz. This
  2089. // has no effect when the PLL is powered down.
  2090. #define CHIP_ANA_STATUS 0x0036
  2091. // 9 LRSHORT_STS This bit is high whenever a short is detected on the left or right
  2092. // channel headphone drivers.
  2093. // 8 CSHORT_STS This bit is high whenever a short is detected on the capless headphone
  2094. // common/center channel driver.
  2095. // 4 PLL_IS_LOCKED This bit goes high after the PLL is locked.
  2096. #define CHIP_ANA_TEST1 0x0038 // intended only for debug.
  2097. #define CHIP_ANA_TEST2 0x003A // intended only for debug.
  2098. #define CHIP_SHORT_CTRL 0x003C
  2099. // 14:12 LVLADJR Right channel headphone short detector in 25 mA steps.
  2100. // 0x3=25 mA
  2101. // 0x2=50 mA
  2102. // 0x1=75 mA
  2103. // 0x0=100 mA
  2104. // 0x4=125 mA
  2105. // 0x5=150 mA
  2106. // 0x6=175 mA
  2107. // 0x7=200 mA
  2108. // This trip point can vary by ~30% over process so leave plenty
  2109. // of guard band to avoid false trips. This short detect trip
  2110. // point is also effected by the bias current adjustments made
  2111. // by CHIP_REF_CTRL->BIAS_CTRL and by CHIP_ANA_TEST1->HP_IALL_ADJ.
  2112. // 10:8 LVLADJL Left channel headphone short detector in 25 mA steps.
  2113. // (same scale as LVLADJR)
  2114. // 6:4 LVLADJC Capless headphone center channel short detector in 50 mA steps.
  2115. // 0x3=50 mA
  2116. // 0x2=100 mA
  2117. // 0x1=150 mA
  2118. // 0x0=200 mA
  2119. // 0x4=250 mA
  2120. // 0x5=300 mA
  2121. // 0x6=350 mA
  2122. // 0x7=400 mA
  2123. // 3:2 MODE_LR Behavior of left/right short detection
  2124. // 0x0 = Disable short detector, reset short detect latch,
  2125. // software view non-latched short signal
  2126. // 0x1 = Enable short detector and reset the latch at timeout
  2127. // (every ~50 ms)
  2128. // 0x2 = This mode is not used/invalid
  2129. // 0x3 = Enable short detector with only manual reset (have
  2130. // to return to 0x0 to reset the latch)
  2131. // 1:0 MODE_CM Behavior of capless headphone central short detection
  2132. // (same settings as MODE_LR)
  2133. #define DAP_CONTROL 0x0100
  2134. #define DAP_PEQ 0x0102
  2135. #define DAP_BASS_ENHANCE 0x0104
  2136. #define DAP_BASS_ENHANCE_CTRL 0x0106
  2137. #define DAP_AUDIO_EQ 0x0108
  2138. #define DAP_SGTL_SURROUND 0x010A
  2139. #define DAP_FILTER_COEF_ACCES 0x010C
  2140. #define DAP_COEF_WR_B0_MSB 0x010E
  2141. #define DAP_COEF_WR_B0_LSB 0x0110
  2142. #define DAP_AUDIO_EQ_BASS_BAND0 0x0116 // 115 Hz
  2143. #define DAP_AUDIO_EQ_BAND1 0x0118 // 330 Hz
  2144. #define DAP_AUDIO_EQ_BAND2 0x011A // 990 Hz
  2145. #define DAP_AUDIO_EQ_BAND3 0x011C // 3000 Hz
  2146. #define DAP_AUDIO_EQ_TREBLE_BAND4 0x011E // 9900 Hz
  2147. #define DAP_MAIN_CHAN 0x0120
  2148. #define DAP_MIX_CHAN 0x0122
  2149. #define DAP_AVC_CTRL 0x0124
  2150. #define DAP_AVC_THRESHOLD 0x0126
  2151. #define DAP_AVC_ATTACK 0x0128
  2152. #define DAP_AVC_DECAY 0x012A
  2153. #define DAP_COEF_WR_B1_MSB 0x012C
  2154. #define DAP_COEF_WR_B1_LSB 0x012E
  2155. #define DAP_COEF_WR_B2_MSB 0x0130
  2156. #define DAP_COEF_WR_B2_LSB 0x0132
  2157. #define DAP_COEF_WR_A1_MSB 0x0134
  2158. #define DAP_COEF_WR_A1_LSB 0x0136
  2159. #define DAP_COEF_WR_A2_MSB 0x0138
  2160. #define DAP_COEF_WR_A2_LSB 0x013A
  2161. #define SGTL5000_I2C_ADDR 0x0A // CTRL_ADR0_CS pin low (normal configuration)
  2162. //#define SGTL5000_I2C_ADDR 0x2A // CTRL_ADR0_CS pin high
  2163. bool AudioControlSGTL5000::enable(void)
  2164. {
  2165. unsigned int n;
  2166. muted = true;
  2167. Wire.begin();
  2168. delay(5);
  2169. Serial.print("chip ID = ");
  2170. delay(5);
  2171. n = read(CHIP_ID);
  2172. Serial.println(n, HEX);
  2173. write(CHIP_ANA_POWER, 0x4060); // VDDD is externally driven with 1.8V
  2174. write(CHIP_LINREG_CTRL, 0x006C); // VDDA & VDDIO both over 3.1V
  2175. write(CHIP_REF_CTRL, 0x01F1); // VAG=1.575 slow ramp, normal bias current
  2176. write(CHIP_LINE_OUT_CTRL, 0x0322);
  2177. write(CHIP_SHORT_CTRL, 0x4446); // allow up to 125mA
  2178. write(CHIP_ANA_CTRL, 0x0137); // enable zero cross detectors
  2179. write(CHIP_ANA_POWER, 0x40FF); // power up: lineout, hp, adc, dac
  2180. write(CHIP_DIG_POWER, 0x0073); // power up all digital stuff
  2181. delay(400);
  2182. write(CHIP_LINE_OUT_VOL, 0x0505); // TODO: correct value for 3.3V
  2183. write(CHIP_CLK_CTRL, 0x0004); // 44.1 kHz, 256*Fs
  2184. write(CHIP_I2S_CTRL, 0x0130); // SCLK=32*Fs, 16bit, I2S format
  2185. // default signal routing is ok?
  2186. write(CHIP_SSS_CTRL, 0x0010); // ADC->I2S, I2S->DAC
  2187. write(CHIP_ADCDAC_CTRL, 0x0000); // disable dac mute
  2188. write(CHIP_DAC_VOL, 0x3C3C); // digital gain, 0dB
  2189. write(CHIP_ANA_HP_CTRL, 0x7F7F); // set volume (lowest level)
  2190. write(CHIP_ANA_CTRL, 0x0136); // enable zero cross detectors
  2191. //mute = false;
  2192. return true;
  2193. }
  2194. unsigned int AudioControlSGTL5000::read(unsigned int reg)
  2195. {
  2196. unsigned int val;
  2197. Wire.beginTransmission(SGTL5000_I2C_ADDR);
  2198. Wire.write(reg >> 8);
  2199. Wire.write(reg);
  2200. if (Wire.endTransmission(false) != 0) return 0;
  2201. if (Wire.requestFrom(SGTL5000_I2C_ADDR, 2) < 2) return 0;
  2202. val = Wire.read() << 8;
  2203. val |= Wire.read();
  2204. return val;
  2205. }
  2206. bool AudioControlSGTL5000::write(unsigned int reg, unsigned int val)
  2207. {
  2208. if (reg == CHIP_ANA_CTRL) ana_ctrl = val;
  2209. Wire.beginTransmission(SGTL5000_I2C_ADDR);
  2210. Wire.write(reg >> 8);
  2211. Wire.write(reg);
  2212. Wire.write(val >> 8);
  2213. Wire.write(val);
  2214. if (Wire.endTransmission() == 0) return true;
  2215. return false;
  2216. }
  2217. bool AudioControlSGTL5000::volumeInteger(unsigned int n)
  2218. {
  2219. if (n == 0) {
  2220. muted = true;
  2221. write(CHIP_ANA_HP_CTRL, 0x7F7F);
  2222. return muteHeadphone();
  2223. } else if (n > 0x80) {
  2224. n = 0;
  2225. } else {
  2226. n = 0x80 - n;
  2227. }
  2228. if (muted) {
  2229. muted = false;
  2230. unmuteHeadphone();
  2231. }
  2232. n = n | (n << 8);
  2233. return write(CHIP_ANA_HP_CTRL, n); // set volume
  2234. }