output_i2s.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. /*
  22. Synchronisation is a bit of a hack with i2s. The esp32 driver is always
  23. full when it starts, so there is a delay of the total length of buffers.
  24. In other words, i2w_write blocks at first call, until at least one buffer
  25. has been written (it uses a queue with produce / consume).
  26. The first hack is to consume that length at the beginning of tracks when
  27. synchronization is active. It's about ~180ms @ 44.1kHz
  28. The second hack is that we never know exactly the number of frames in the
  29. DMA buffers when we update the output.frames_played_dmp. We assume that
  30. after i2s_write, these buffers are always full so by measuring the gap
  31. between time after i2s_write and update of frames_played_dmp, we have a
  32. good idea of the error.
  33. The third hack is when sample rate changes, buffers are reset and we also
  34. do the change too early, but can't do that exaclty at the right time. So
  35. there might be a pop and a de-sync when sampling rate change happens. Not
  36. sure that using rate_delay would fix that
  37. */
  38. #include "squeezelite.h"
  39. #include "esp_pthread.h"
  40. #include "driver/i2s.h"
  41. #include "driver/i2c.h"
  42. #include "driver/gpio.h"
  43. #include "perf_trace.h"
  44. #include <signal.h>
  45. #include "time.h"
  46. #include "led.h"
  47. #define LOCK mutex_lock(outputbuf->mutex)
  48. #define UNLOCK mutex_unlock(outputbuf->mutex)
  49. #define FRAME_BLOCK MAX_SILENCE_FRAMES
  50. // Prevent compile errors if dac output is
  51. // included in the build and not actually activated in menuconfig
  52. #ifndef CONFIG_I2S_BCK_IO
  53. #define CONFIG_I2S_BCK_IO -1
  54. #endif
  55. #ifndef CONFIG_I2S_WS_IO
  56. #define CONFIG_I2S_WS_IO -1
  57. #endif
  58. #ifndef CONFIG_I2S_DO_IO
  59. #define CONFIG_I2S_DO_IO -1
  60. #endif
  61. #ifndef CONFIG_I2S_NUM
  62. #define CONFIG_I2S_NUM -1
  63. #endif
  64. #ifndef CONFIG_SPDIF_BCK_IO
  65. #define CONFIG_SPDIF_BCK_IO -1
  66. #endif
  67. #ifndef CONFIG_SPDIF_WS_IO
  68. #define CONFIG_SPDIF_WS_IO -1
  69. #endif
  70. #ifndef CONFIG_SPDIF_DO_IO
  71. #define CONFIG_SPDIF_DO_IO -1
  72. #endif
  73. #ifndef CONFIG_SPDIF_NUM
  74. #define CONFIG_SPDIF_NUM -1
  75. #endif
  76. typedef enum { DAC_ON = 0, DAC_OFF, DAC_POWERDOWN, DAC_VOLUME } dac_cmd_e;
  77. // must have an integer ratio with FRAME_BLOCK (see spdif comment)
  78. #define DMA_BUF_LEN 512
  79. #define DMA_BUF_COUNT 12
  80. #define DECLARE_ALL_MIN_MAX \
  81. DECLARE_MIN_MAX(o); \
  82. DECLARE_MIN_MAX(s); \
  83. DECLARE_MIN_MAX(rec); \
  84. DECLARE_MIN_MAX(i2s_time); \
  85. DECLARE_MIN_MAX(buffering);
  86. #define RESET_ALL_MIN_MAX \
  87. RESET_MIN_MAX(o); \
  88. RESET_MIN_MAX(s); \
  89. RESET_MIN_MAX(rec); \
  90. RESET_MIN_MAX(i2s_time); \
  91. RESET_MIN_MAX(buffering);
  92. #define STATS_PERIOD_MS 5000
  93. extern struct outputstate output;
  94. extern struct buffer *streambuf;
  95. extern struct buffer *outputbuf;
  96. extern u8_t *silencebuf;
  97. static log_level loglevel;
  98. static bool running, isI2SStarted;
  99. static i2s_config_t i2s_config;
  100. static int bytes_per_frame;
  101. static thread_type thread, stats_thread;
  102. static u8_t *obuf;
  103. static frames_t oframes;
  104. static bool spdif;
  105. static size_t dma_buf_frames;
  106. DECLARE_ALL_MIN_MAX;
  107. static int _i2s_write_frames(frames_t out_frames, bool silence, s32_t gainL, s32_t gainR,
  108. s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T **cross_ptr);
  109. static void *output_thread_i2s();
  110. static void *output_thread_i2s_stats();
  111. static void dac_cmd(dac_cmd_e cmd, ...);
  112. static void spdif_convert(ISAMPLE_T *src, size_t frames, u32_t *dst, size_t *count);
  113. #ifdef CONFIG_SQUEEZEAMP
  114. #define TAS575x
  115. #undef CONFIG_I2S_BCK_IO
  116. #define CONFIG_I2S_BCK_IO 33
  117. #undef CONFIG_I2S_WS_IO
  118. #define CONFIG_I2S_WS_IO 25
  119. #undef CONFIG_I2S_DO_IO
  120. #define CONFIG_I2S_DO_IO 32
  121. #undef CONFIG_I2S_NUM
  122. #define CONFIG_I2S_NUM 0
  123. #undef CONFIG_SPDIF_BCK_IO
  124. #define CONFIG_SPDIF_BCK_IO 33
  125. #undef CONFIG_SPDIF_WS_IO
  126. #define CONFIG_SPDIF_WS_IO 25
  127. #undef CONFIG_SPDIF_DO_IO
  128. #define CONFIG_SPDIF_DO_IO 15
  129. #undef CONFIG_SPDIF_NUM
  130. #define CONFIG_SPDIF_NUM 0
  131. #define I2C_PORT 0
  132. #define I2C_ADDR 0x4c
  133. #define VOLUME_GPIO 33
  134. #define JACK_GPIO 34
  135. struct tas575x_cmd_s {
  136. u8_t reg;
  137. u8_t value;
  138. };
  139. u8_t config_spdif_gpio = CONFIG_SPDIF_DO_IO;
  140. static const struct tas575x_cmd_s tas575x_init_sequence[] = {
  141. { 0x00, 0x00 }, // select page 0
  142. { 0x02, 0x10 }, // standby
  143. { 0x0d, 0x10 }, // use SCK for PLL
  144. { 0x25, 0x08 }, // ignore SCK halt
  145. { 0x02, 0x00 }, // restart
  146. { 0xff, 0xff } // end of table
  147. };
  148. static const i2c_config_t i2c_config = {
  149. .mode = I2C_MODE_MASTER,
  150. .sda_io_num = 27,
  151. .sda_pullup_en = GPIO_PULLUP_ENABLE,
  152. .scl_io_num = 26,
  153. .scl_pullup_en = GPIO_PULLUP_ENABLE,
  154. .master.clk_speed = 100000,
  155. };
  156. static const struct tas575x_cmd_s tas575x_cmd[] = {
  157. { 0x02, 0x00 }, // DAC_ON
  158. { 0x02, 0x10 }, // DAC_OFF
  159. { 0x02, 0x01 }, // DAC_POWERDOWN
  160. };
  161. #endif
  162. /****************************************************************************************
  163. * Initialize the DAC output
  164. */
  165. void output_init_i2s(log_level level, char *device, unsigned output_buf_size, char *params, unsigned rates[], unsigned rate_delay, unsigned idle) {
  166. loglevel = level;
  167. #ifdef TAS575x
  168. gpio_pad_select_gpio(JACK_GPIO);
  169. gpio_set_direction(JACK_GPIO, GPIO_MODE_INPUT);
  170. adc1_config_width(ADC_WIDTH_BIT_12);
  171. adc1_config_channel_atten(ADC1_CHANNEL_7, ADC_ATTEN_DB_0);
  172. // init volume & mute
  173. gpio_pad_select_gpio(VOLUME_GPIO);
  174. gpio_set_direction(VOLUME_GPIO, GPIO_MODE_OUTPUT);
  175. gpio_set_level(VOLUME_GPIO, 0);
  176. // configure i2c
  177. i2c_param_config(I2C_PORT, &i2c_config);
  178. i2c_driver_install(I2C_PORT, I2C_MODE_MASTER, false, false, false);
  179. i2c_cmd_handle_t i2c_cmd = i2c_cmd_link_create();
  180. for (int i = 0; tas575x_init_sequence[i].reg != 0xff; i++) {
  181. i2c_master_start(i2c_cmd);
  182. i2c_master_write_byte(i2c_cmd, I2C_ADDR << 1 | I2C_MASTER_WRITE, I2C_MASTER_NACK);
  183. i2c_master_write_byte(i2c_cmd, tas575x_init_sequence[i].reg, I2C_MASTER_NACK);
  184. i2c_master_write_byte(i2c_cmd, tas575x_init_sequence[i].value, I2C_MASTER_NACK);
  185. LOG_DEBUG("i2c write %x at %u", tas575x_init_sequence[i].reg, tas575x_init_sequence[i].value);
  186. }
  187. i2c_master_stop(i2c_cmd);
  188. esp_err_t ret = i2c_master_cmd_begin(I2C_PORT, i2c_cmd, 500 / portTICK_RATE_MS);
  189. i2c_cmd_link_delete(i2c_cmd);
  190. if (ret != ESP_OK) {
  191. LOG_ERROR("could not intialize TAS575x %d", ret);
  192. }
  193. #endif
  194. #ifdef CONFIG_I2S_BITS_PER_CHANNEL
  195. switch (CONFIG_I2S_BITS_PER_CHANNEL) {
  196. case 24:
  197. output.format = S24_BE;
  198. bytes_per_frame = 2*3;
  199. break;
  200. case 16:
  201. output.format = S16_BE;
  202. bytes_per_frame = 2*2;
  203. break;
  204. case 8:
  205. output.format = S8_BE;
  206. bytes_per_frame = 2*4;
  207. break;
  208. default:
  209. LOG_ERROR("Unsupported bit depth %d",CONFIG_I2S_BITS_PER_CHANNEL);
  210. break;
  211. }
  212. #else
  213. output.format = S16_LE;
  214. bytes_per_frame = 2*2;
  215. #endif
  216. if (strcasestr(device, "spdif")) spdif = true;
  217. output.write_cb = &_i2s_write_frames;
  218. obuf = malloc(FRAME_BLOCK * bytes_per_frame);
  219. if (!obuf) {
  220. LOG_ERROR("Cannot allocate i2s buffer");
  221. return;
  222. }
  223. running=true;
  224. i2s_pin_config_t pin_config;
  225. if (spdif) {
  226. pin_config = (i2s_pin_config_t) { .bck_io_num = CONFIG_SPDIF_BCK_IO, .ws_io_num = CONFIG_SPDIF_WS_IO,
  227. .data_out_num = CONFIG_SPDIF_DO_IO, .data_in_num = -1 //Not used
  228. };
  229. i2s_config.sample_rate = output.current_sample_rate * 2;
  230. i2s_config.bits_per_sample = 32;
  231. // Normally counted in frames, but 16 sample are transformed into 32 bits in spdif
  232. i2s_config.dma_buf_len = DMA_BUF_LEN / 2;
  233. i2s_config.dma_buf_count = DMA_BUF_COUNT * 2;
  234. /*
  235. In DMA, we have room for (LEN * COUNT) frames of 32 bits samples that
  236. we push at sample_rate * 2. Each of these peuso-frames is a single true
  237. audio frame. So the real depth is true frames is (LEN * COUNT / 2)
  238. */
  239. dma_buf_frames = DMA_BUF_COUNT * DMA_BUF_LEN / 2;
  240. } else {
  241. pin_config = (i2s_pin_config_t) { .bck_io_num = CONFIG_I2S_BCK_IO, .ws_io_num = CONFIG_I2S_WS_IO,
  242. .data_out_num = CONFIG_I2S_DO_IO, .data_in_num = -1 //Not used
  243. };
  244. i2s_config.sample_rate = output.current_sample_rate;
  245. i2s_config.bits_per_sample = bytes_per_frame * 8 / 2;
  246. // Counted in frames (but i2s allocates a buffer <= 4092 bytes)
  247. i2s_config.dma_buf_len = DMA_BUF_LEN;
  248. i2s_config.dma_buf_count = DMA_BUF_COUNT;
  249. dma_buf_frames = DMA_BUF_COUNT * DMA_BUF_LEN;
  250. #ifdef TAS575x
  251. gpio_pad_select_gpio(CONFIG_SPDIF_DO_IO);
  252. gpio_set_direction(CONFIG_SPDIF_DO_IO, GPIO_MODE_OUTPUT);
  253. gpio_set_level(CONFIG_SPDIF_DO_IO, 0);
  254. #endif
  255. }
  256. i2s_config.mode = I2S_MODE_MASTER | I2S_MODE_TX;
  257. i2s_config.channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT;
  258. i2s_config.communication_format = I2S_COMM_FORMAT_I2S| I2S_COMM_FORMAT_I2S_MSB;
  259. // in case of overflow, do not replay old buffer
  260. i2s_config.tx_desc_auto_clear = true;
  261. i2s_config.use_apll = true;
  262. i2s_config.intr_alloc_flags = ESP_INTR_FLAG_LEVEL1; //Interrupt level 1
  263. LOG_INFO("Initializing I2S mode %s with rate: %d, bits per sample: %d, buffer frames: %d, number of buffers: %d ",
  264. spdif ? "S/PDIF" : "normal",
  265. i2s_config.sample_rate, i2s_config.bits_per_sample, i2s_config.dma_buf_len, i2s_config.dma_buf_count);
  266. i2s_driver_install(CONFIG_I2S_NUM, &i2s_config, 0, NULL);
  267. i2s_set_pin(CONFIG_I2S_NUM, &pin_config);
  268. i2s_stop(CONFIG_I2S_NUM);
  269. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  270. isI2SStarted=false;
  271. dac_cmd(DAC_OFF);
  272. esp_pthread_cfg_t cfg = esp_pthread_get_default_config();
  273. cfg.thread_name= "output_i2s";
  274. cfg.inherit_cfg = false;
  275. cfg.prio = CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT + 1;
  276. cfg.stack_size = PTHREAD_STACK_MIN + OUTPUT_THREAD_STACK_SIZE;
  277. esp_pthread_set_cfg(&cfg);
  278. pthread_create(&thread, NULL, output_thread_i2s, NULL);
  279. cfg.thread_name= "output_i2s_sts";
  280. cfg.prio = CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT - 1;
  281. cfg.stack_size = 2048;
  282. esp_pthread_set_cfg(&cfg);
  283. pthread_create(&stats_thread, NULL, output_thread_i2s_stats, NULL);
  284. }
  285. /****************************************************************************************
  286. * Terminate DAC output
  287. */
  288. void output_close_i2s(void) {
  289. LOCK;
  290. running = false;
  291. UNLOCK;
  292. pthread_join(thread, NULL);
  293. pthread_join(stats_thread, NULL);
  294. i2s_driver_uninstall(CONFIG_I2S_NUM);
  295. free(obuf);
  296. #ifdef TAS575x
  297. i2c_driver_delete(I2C_PORT);
  298. #endif
  299. }
  300. /****************************************************************************************
  301. * change volume
  302. */
  303. bool output_volume_i2s(unsigned left, unsigned right) {
  304. #ifdef TAS575x
  305. if (!spdif) gpio_set_level(VOLUME_GPIO, left || right);
  306. #endif
  307. return false;
  308. }
  309. /****************************************************************************************
  310. * Write frames to the output buffer
  311. */
  312. static int _i2s_write_frames(frames_t out_frames, bool silence, s32_t gainL, s32_t gainR,
  313. s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T **cross_ptr) {
  314. #if BYTES_PER_FRAME == 8
  315. s32_t *optr;
  316. #endif
  317. if (!silence) {
  318. if (output.fade == FADE_ACTIVE && output.fade_dir == FADE_CROSS && *cross_ptr) {
  319. _apply_cross(outputbuf, out_frames, cross_gain_in, cross_gain_out, cross_ptr);
  320. }
  321. #if BYTES_PER_FRAME == 4
  322. if (gainL != FIXED_ONE || gainR!= FIXED_ONE) {
  323. _apply_gain(outputbuf, out_frames, gainL, gainR);
  324. }
  325. memcpy(obuf + oframes * bytes_per_frame, outputbuf->readp, out_frames * bytes_per_frame);
  326. #else
  327. optr = (s32_t*) outputbuf->readp;
  328. #endif
  329. } else {
  330. #if BYTES_PER_FRAME == 4
  331. memcpy(obuf + oframes * bytes_per_frame, silencebuf, out_frames * bytes_per_frame);
  332. #else
  333. optr = (s32_t*) silencebuf;
  334. #endif
  335. }
  336. #if BYTES_PER_FRAME == 8
  337. IF_DSD(
  338. if (output.outfmt == DOP) {
  339. update_dop((u32_t *) optr, out_frames, output.invert);
  340. } else if (output.outfmt != PCM && output.invert)
  341. dsd_invert((u32_t *) optr, out_frames);
  342. )
  343. _scale_and_pack_frames(obuf + oframes * bytes_per_frame, optr, out_frames, gainL, gainR, output.format);
  344. #endif
  345. oframes += out_frames;
  346. return out_frames;
  347. }
  348. /****************************************************************************************
  349. * Main output thread
  350. */
  351. static void *output_thread_i2s() {
  352. size_t count = 0, bytes;
  353. frames_t iframes = FRAME_BLOCK;
  354. uint32_t timer_start = 0;
  355. int discard = 0;
  356. uint32_t fullness = gettime_ms();
  357. bool synced;
  358. output_state state = OUTPUT_OFF;
  359. char *sbuf = NULL;
  360. // spdif needs 16 bytes per frame : 32 bits/sample, 2 channels, BMC encoded
  361. if (spdif && (sbuf = malloc(FRAME_BLOCK * 16)) == NULL) {
  362. LOG_ERROR("Cannot allocate SPDIF buffer");
  363. }
  364. while (running) {
  365. TIME_MEASUREMENT_START(timer_start);
  366. LOCK;
  367. // manage led display
  368. if (state != output.state) {
  369. LOG_INFO("Output state is %d", output.state);
  370. if (output.state == OUTPUT_OFF) led_blink(LED_GREEN, 100, 2500);
  371. else if (output.state == OUTPUT_STOPPED) led_blink(LED_GREEN, 200, 1000);
  372. else if (output.state == OUTPUT_RUNNING) led_on(LED_GREEN);
  373. }
  374. state = output.state;
  375. if (output.state == OUTPUT_OFF) {
  376. UNLOCK;
  377. if (isI2SStarted) {
  378. isI2SStarted = false;
  379. i2s_stop(CONFIG_I2S_NUM);
  380. if (!spdif) dac_cmd(DAC_OFF);
  381. count = 0;
  382. }
  383. usleep(200000);
  384. continue;
  385. } else if (output.state == OUTPUT_STOPPED) {
  386. synced = false;
  387. }
  388. oframes = 0;
  389. output.updated = gettime_ms();
  390. output.frames_played_dmp = output.frames_played;
  391. // try to estimate how much we have consumed from the DMA buffer (calculation is incorrect at the very beginning ...)
  392. output.device_frames = dma_buf_frames - ((output.updated - fullness) * output.current_sample_rate) / 1000;
  393. _output_frames( iframes );
  394. // oframes must be a global updated by the write callback
  395. output.frames_in_process = oframes;
  396. SET_MIN_MAX_SIZED(oframes,rec,iframes);
  397. SET_MIN_MAX_SIZED(_buf_used(outputbuf),o,outputbuf->size);
  398. SET_MIN_MAX_SIZED(_buf_used(streambuf),s,streambuf->size);
  399. SET_MIN_MAX( TIME_MEASUREMENT_GET(timer_start),buffering);
  400. /* must skip first whatever is in the pipe (but not when resuming).
  401. This test is incorrect when we pause a track that has just started,
  402. but this is higly unlikely and I don't have a better one for now */
  403. if (output.state == OUTPUT_START_AT) {
  404. discard = output.frames_played_dmp ? 0 : output.device_frames;
  405. synced = true;
  406. } else if (discard) {
  407. discard -= oframes;
  408. iframes = discard ? min(FRAME_BLOCK, discard) : FRAME_BLOCK;
  409. UNLOCK;
  410. continue;
  411. }
  412. UNLOCK;
  413. // now send all the data
  414. TIME_MEASUREMENT_START(timer_start);
  415. if (!isI2SStarted ) {
  416. isI2SStarted = true;
  417. LOG_INFO("Restarting I2S.");
  418. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  419. i2s_start(CONFIG_I2S_NUM);
  420. if (!spdif) dac_cmd(DAC_ON);
  421. }
  422. // this does not work well as set_sample_rates resets the fifos (and it's too early)
  423. if (i2s_config.sample_rate != output.current_sample_rate) {
  424. LOG_INFO("changing sampling rate %u to %u", i2s_config.sample_rate, output.current_sample_rate);
  425. /*
  426. if (synced)
  427. // can sleep for a buffer_queue - 1 and then eat a buffer (discard) if we are synced
  428. usleep(((DMA_BUF_COUNT - 1) * DMA_BUF_LEN * bytes_per_frame * 1000) / 44100 * 1000);
  429. discard = DMA_BUF_COUNT * DMA_BUF_LEN * bytes_per_frame;
  430. }
  431. */
  432. i2s_config.sample_rate = output.current_sample_rate;
  433. i2s_set_sample_rates(CONFIG_I2S_NUM, spdif ? i2s_config.sample_rate * 2 : i2s_config.sample_rate);
  434. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  435. //return;
  436. }
  437. // we assume that here we have been able to entirely fill the DMA buffers
  438. if (spdif) {
  439. spdif_convert((ISAMPLE_T*) obuf, oframes, (u32_t*) sbuf, &count);
  440. i2s_write(CONFIG_I2S_NUM, sbuf, oframes * 16, &bytes, portMAX_DELAY);
  441. bytes /= 4;
  442. } else {
  443. i2s_write(CONFIG_I2S_NUM, obuf, oframes * bytes_per_frame, &bytes, portMAX_DELAY);
  444. }
  445. fullness = gettime_ms();
  446. if (bytes != oframes * bytes_per_frame) {
  447. LOG_WARN("I2S DMA Overflow! available bytes: %d, I2S wrote %d bytes", oframes * bytes_per_frame, bytes);
  448. }
  449. SET_MIN_MAX( TIME_MEASUREMENT_GET(timer_start),i2s_time);
  450. }
  451. if (spdif) free(sbuf);
  452. return 0;
  453. }
  454. /****************************************************************************************
  455. * Stats output thread
  456. */
  457. static void *output_thread_i2s_stats() {
  458. while (running) {
  459. #ifdef TAS575x
  460. LOG_ERROR("Jack %d Voltage %.2fV", !gpio_get_level(JACK_GPIO), adc1_get_raw(ADC1_CHANNEL_7) / 4095. * (10+174)/10. * 1.1);
  461. #endif
  462. LOCK;
  463. output_state state = output.state;
  464. UNLOCK;
  465. if(state>OUTPUT_STOPPED){
  466. LOG_INFO( "Output State: %d, current sample rate: %d, bytes per frame: %d",state,output.current_sample_rate, bytes_per_frame);
  467. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD1);
  468. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD2);
  469. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD3);
  470. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD4);
  471. LOG_INFO(LINE_MIN_MAX_FORMAT_STREAM, LINE_MIN_MAX_STREAM("stream",s));
  472. LOG_INFO(LINE_MIN_MAX_FORMAT,LINE_MIN_MAX("output",o));
  473. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  474. LOG_INFO(LINE_MIN_MAX_FORMAT,LINE_MIN_MAX("received",rec));
  475. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  476. LOG_INFO("");
  477. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  478. LOG_INFO(" max (us) | min (us) | avg(us) | count | ");
  479. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  480. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT,LINE_MIN_MAX_DURATION("Buffering(us)",buffering));
  481. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT,LINE_MIN_MAX_DURATION("i2s tfr(us)",i2s_time));
  482. LOG_INFO(" ----------+----------+-----------+-----------+");
  483. RESET_ALL_MIN_MAX;
  484. }
  485. LOG_INFO("Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  486. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  487. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  488. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  489. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  490. usleep(STATS_PERIOD_MS *1000);
  491. }
  492. return NULL;
  493. }
  494. /****************************************************************************************
  495. * DAC specific commands
  496. */
  497. void dac_cmd(dac_cmd_e cmd, ...) {
  498. va_list args;
  499. esp_err_t ret = ESP_OK;
  500. va_start(args, cmd);
  501. #ifdef TAS575x
  502. i2c_cmd_handle_t i2c_cmd = i2c_cmd_link_create();
  503. switch(cmd) {
  504. case DAC_VOLUME:
  505. LOG_ERROR("volume not handled yet");
  506. break;
  507. default:
  508. i2c_master_start(i2c_cmd);
  509. i2c_master_write_byte(i2c_cmd, I2C_ADDR << 1 | I2C_MASTER_WRITE, I2C_MASTER_NACK);
  510. i2c_master_write_byte(i2c_cmd, tas575x_cmd[cmd].reg, I2C_MASTER_NACK);
  511. i2c_master_write_byte(i2c_cmd, tas575x_cmd[cmd].value, I2C_MASTER_NACK);
  512. i2c_master_stop(i2c_cmd);
  513. ret = i2c_master_cmd_begin(I2C_PORT, i2c_cmd, 50 / portTICK_RATE_MS);
  514. }
  515. i2c_cmd_link_delete(i2c_cmd);
  516. if (ret != ESP_OK) {
  517. LOG_ERROR("could not intialize TAS575x %d", ret);
  518. }
  519. #endif
  520. va_end(args);
  521. }
  522. /****************************************************************************************
  523. * SPDIF support
  524. */
  525. #define PREAMBLE_B (0xE8) //11101000
  526. #define PREAMBLE_M (0xE2) //11100010
  527. #define PREAMBLE_W (0xE4) //11100100
  528. #define VUCP ((0xCC) << 24)
  529. #define VUCP_MUTE ((0xD4) << 24) // To mute PCM, set VUCP = invalid.
  530. extern const u16_t spdif_bmclookup[256];
  531. /*
  532. SPDIF is supposed to be (before BMC encoding, from LSB to MSB)
  533. PPPP AAAA SSSS SSSS SSSS SSSS SSSS VUCP
  534. after BMC encoding, each bits becomes 2 hence this becomes a 64 bits word. The
  535. the trick is to start not with a PPPP sequence but with an VUCP sequence to that
  536. the 16 bits samples are aligned with a BMC word boundary. Note that the LSB of the
  537. audio is transmitted first (not the MSB) and that ESP32 libray sends R then L,
  538. contrary to what seems to be usually done, so (dst) order had to be changed
  539. */
  540. void spdif_convert(ISAMPLE_T *src, size_t frames, u32_t *dst, size_t *count) {
  541. u16_t hi, lo, aux;
  542. // frames are 2 channels of 16 bits
  543. frames *= 2;
  544. while (frames--) {
  545. #if BYTES_PER_FRAME == 4
  546. hi = spdif_bmclookup[(u8_t)(*src >> 8)];
  547. lo = spdif_bmclookup[(u8_t) *src];
  548. #else
  549. hi = spdif_bmclookup[(u8_t)(*src >> 24)];
  550. lo = spdif_bmclookup[(u8_t) *src >> 16];
  551. #endif
  552. lo ^= ~((s16_t)hi) >> 16;
  553. // 16 bits sample:
  554. *(dst+0) = ((u32_t)lo << 16) | hi;
  555. // 4 bits auxillary-audio-databits, the first used as parity
  556. aux = 0xb333 ^ (((u32_t)((s16_t)lo)) >> 17);
  557. // VUCP-Bits: Valid, Subcode, Channelstatus, Parity = 0
  558. // As parity is always 0, we can use fixed preambles
  559. if (++(*count) > 383) {
  560. *(dst+1) = VUCP | (PREAMBLE_B << 16 ) | aux; //special preamble for one of 192 frames
  561. *count = 0;
  562. } else {
  563. *(dst+1) = VUCP | ((((*count) & 0x01) ? PREAMBLE_W : PREAMBLE_M) << 16) | aux;
  564. }
  565. src++;
  566. dst += 2;
  567. }
  568. }
  569. const u16_t spdif_bmclookup[256] = { //biphase mark encoded values (least significant bit first)
  570. 0xcccc, 0x4ccc, 0x2ccc, 0xaccc, 0x34cc, 0xb4cc, 0xd4cc, 0x54cc,
  571. 0x32cc, 0xb2cc, 0xd2cc, 0x52cc, 0xcacc, 0x4acc, 0x2acc, 0xaacc,
  572. 0x334c, 0xb34c, 0xd34c, 0x534c, 0xcb4c, 0x4b4c, 0x2b4c, 0xab4c,
  573. 0xcd4c, 0x4d4c, 0x2d4c, 0xad4c, 0x354c, 0xb54c, 0xd54c, 0x554c,
  574. 0x332c, 0xb32c, 0xd32c, 0x532c, 0xcb2c, 0x4b2c, 0x2b2c, 0xab2c,
  575. 0xcd2c, 0x4d2c, 0x2d2c, 0xad2c, 0x352c, 0xb52c, 0xd52c, 0x552c,
  576. 0xccac, 0x4cac, 0x2cac, 0xacac, 0x34ac, 0xb4ac, 0xd4ac, 0x54ac,
  577. 0x32ac, 0xb2ac, 0xd2ac, 0x52ac, 0xcaac, 0x4aac, 0x2aac, 0xaaac,
  578. 0x3334, 0xb334, 0xd334, 0x5334, 0xcb34, 0x4b34, 0x2b34, 0xab34,
  579. 0xcd34, 0x4d34, 0x2d34, 0xad34, 0x3534, 0xb534, 0xd534, 0x5534,
  580. 0xccb4, 0x4cb4, 0x2cb4, 0xacb4, 0x34b4, 0xb4b4, 0xd4b4, 0x54b4,
  581. 0x32b4, 0xb2b4, 0xd2b4, 0x52b4, 0xcab4, 0x4ab4, 0x2ab4, 0xaab4,
  582. 0xccd4, 0x4cd4, 0x2cd4, 0xacd4, 0x34d4, 0xb4d4, 0xd4d4, 0x54d4,
  583. 0x32d4, 0xb2d4, 0xd2d4, 0x52d4, 0xcad4, 0x4ad4, 0x2ad4, 0xaad4,
  584. 0x3354, 0xb354, 0xd354, 0x5354, 0xcb54, 0x4b54, 0x2b54, 0xab54,
  585. 0xcd54, 0x4d54, 0x2d54, 0xad54, 0x3554, 0xb554, 0xd554, 0x5554,
  586. 0x3332, 0xb332, 0xd332, 0x5332, 0xcb32, 0x4b32, 0x2b32, 0xab32,
  587. 0xcd32, 0x4d32, 0x2d32, 0xad32, 0x3532, 0xb532, 0xd532, 0x5532,
  588. 0xccb2, 0x4cb2, 0x2cb2, 0xacb2, 0x34b2, 0xb4b2, 0xd4b2, 0x54b2,
  589. 0x32b2, 0xb2b2, 0xd2b2, 0x52b2, 0xcab2, 0x4ab2, 0x2ab2, 0xaab2,
  590. 0xccd2, 0x4cd2, 0x2cd2, 0xacd2, 0x34d2, 0xb4d2, 0xd4d2, 0x54d2,
  591. 0x32d2, 0xb2d2, 0xd2d2, 0x52d2, 0xcad2, 0x4ad2, 0x2ad2, 0xaad2,
  592. 0x3352, 0xb352, 0xd352, 0x5352, 0xcb52, 0x4b52, 0x2b52, 0xab52,
  593. 0xcd52, 0x4d52, 0x2d52, 0xad52, 0x3552, 0xb552, 0xd552, 0x5552,
  594. 0xccca, 0x4cca, 0x2cca, 0xacca, 0x34ca, 0xb4ca, 0xd4ca, 0x54ca,
  595. 0x32ca, 0xb2ca, 0xd2ca, 0x52ca, 0xcaca, 0x4aca, 0x2aca, 0xaaca,
  596. 0x334a, 0xb34a, 0xd34a, 0x534a, 0xcb4a, 0x4b4a, 0x2b4a, 0xab4a,
  597. 0xcd4a, 0x4d4a, 0x2d4a, 0xad4a, 0x354a, 0xb54a, 0xd54a, 0x554a,
  598. 0x332a, 0xb32a, 0xd32a, 0x532a, 0xcb2a, 0x4b2a, 0x2b2a, 0xab2a,
  599. 0xcd2a, 0x4d2a, 0x2d2a, 0xad2a, 0x352a, 0xb52a, 0xd52a, 0x552a,
  600. 0xccaa, 0x4caa, 0x2caa, 0xacaa, 0x34aa, 0xb4aa, 0xd4aa, 0x54aa,
  601. 0x32aa, 0xb2aa, 0xd2aa, 0x52aa, 0xcaaa, 0x4aaa, 0x2aaa, 0xaaaa
  602. };