output_i2s.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  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 "driver/i2s.h"
  40. #include "driver/i2c.h"
  41. #include "perf_trace.h"
  42. #include <signal.h>
  43. #include "time.h"
  44. #define LOCK mutex_lock(outputbuf->mutex)
  45. #define UNLOCK mutex_unlock(outputbuf->mutex)
  46. #define FRAME_BLOCK MAX_SILENCE_FRAMES
  47. // Prevent compile errors if dac output is
  48. // included in the build and not actually activated in menuconfig
  49. #ifndef CONFIG_I2S_BCK_IO
  50. #define CONFIG_I2S_BCK_IO -1
  51. #endif
  52. #ifndef CONFIG_I2S_WS_IO
  53. #define CONFIG_I2S_WS_IO -1
  54. #endif
  55. #ifndef CONFIG_I2S_DO_IO
  56. #define CONFIG_I2S_DO_IO -1
  57. #endif
  58. #ifndef CONFIG_I2S_NUM
  59. #define CONFIG_I2S_NUM -1
  60. #endif
  61. typedef enum { DAC_ON = 0, DAC_OFF, DAC_POWERDOWN, DAC_VOLUME } dac_cmd_e;
  62. // must have an integer ratio with FRAME_BLOCK
  63. #define DMA_BUF_LEN 512
  64. #define DMA_BUF_COUNT 16
  65. #define DECLARE_ALL_MIN_MAX \
  66. DECLARE_MIN_MAX(o); \
  67. DECLARE_MIN_MAX(s); \
  68. DECLARE_MIN_MAX(rec); \
  69. DECLARE_MIN_MAX(i2s_time); \
  70. DECLARE_MIN_MAX(buffering);
  71. #define RESET_ALL_MIN_MAX \
  72. RESET_MIN_MAX(o); \
  73. RESET_MIN_MAX(s); \
  74. RESET_MIN_MAX(rec); \
  75. RESET_MIN_MAX(i2s_time); \
  76. RESET_MIN_MAX(buffering);
  77. #define STATS_PERIOD_MS 5000
  78. extern struct outputstate output;
  79. extern struct buffer *streambuf;
  80. extern struct buffer *outputbuf;
  81. extern u8_t *silencebuf;
  82. static log_level loglevel;
  83. static bool running, isI2SStarted;
  84. static i2s_config_t i2s_config;
  85. static int bytes_per_frame;
  86. static thread_type thread, stats_thread;
  87. static u8_t *obuf;
  88. DECLARE_ALL_MIN_MAX;
  89. static int _i2s_write_frames(frames_t out_frames, bool silence, s32_t gainL, s32_t gainR,
  90. s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T **cross_ptr);
  91. static void *output_thread_i2s();
  92. static void *output_thread_i2s_stats();
  93. static void dac_cmd(dac_cmd_e cmd, ...);
  94. #ifdef TAS575x
  95. #define I2C_PORT 0
  96. #define I2C_ADDR 0x4c
  97. #define VOLUME_GPIO 33
  98. struct tas575x_cmd_s {
  99. u8_t reg;
  100. u8_t value;
  101. };
  102. static const struct tas575x_cmd_s tas575x_init_sequence[] = {
  103. { 0x00, 0x00 }, // select page 0
  104. { 0x02, 0x10 }, // standby
  105. { 0x0d, 0x10 }, // use SCK for PLL
  106. { 0x25, 0x08 }, // ignore SCK halt
  107. { 0x02, 0x00 }, // restart
  108. { 0xff, 0xff } // end of table
  109. };
  110. static const i2c_config_t i2c_config = {
  111. .mode = I2C_MODE_MASTER,
  112. .sda_io_num = 27,
  113. .sda_pullup_en = GPIO_PULLUP_ENABLE,
  114. .scl_io_num = 26,
  115. .scl_pullup_en = GPIO_PULLUP_ENABLE,
  116. .master.clk_speed = 100000,
  117. };
  118. static const struct tas575x_cmd_s tas575x_cmd[] = {
  119. { 0x02, 0x00 }, // DAC_ON
  120. { 0x02, 0x10 }, // DAC_OFF
  121. { 0x02, 0x01 }, // DAC_POWERDOWN
  122. };
  123. #endif
  124. /****************************************************************************************
  125. * Initialize the DAC output
  126. */
  127. void output_init_i2s(log_level level, char *device, unsigned output_buf_size, char *params, unsigned rates[], unsigned rate_delay, unsigned idle) {
  128. loglevel = level;
  129. #ifdef TAS575x
  130. // init volume & mute
  131. gpio_pad_select_gpio(VOLUME_GPIO);
  132. gpio_set_direction(VOLUME_GPIO, GPIO_MODE_OUTPUT);
  133. gpio_set_level(VOLUME_GPIO, 0);
  134. // configure i2c
  135. i2c_param_config(I2C_PORT, &i2c_config);
  136. i2c_driver_install(I2C_PORT, I2C_MODE_MASTER, false, false, false);
  137. i2c_cmd_handle_t i2c_cmd = i2c_cmd_link_create();
  138. for (int i = 0; tas575x_init_sequence[i].reg != 0xff; i++) {
  139. i2c_master_start(i2c_cmd);
  140. i2c_master_write_byte(i2c_cmd, I2C_ADDR << 1 | I2C_MASTER_WRITE, I2C_MASTER_NACK);
  141. i2c_master_write_byte(i2c_cmd, tas575x_init_sequence[i].reg, I2C_MASTER_NACK);
  142. i2c_master_write_byte(i2c_cmd, tas575x_init_sequence[i].value, I2C_MASTER_NACK);
  143. LOG_DEBUG("i2c write %x at %u", tas575x_init_sequence[i].reg, tas575x_init_sequence[i].value);
  144. }
  145. i2c_master_stop(i2c_cmd);
  146. esp_err_t ret = i2c_master_cmd_begin(I2C_PORT, i2c_cmd, 500 / portTICK_RATE_MS);
  147. i2c_cmd_link_delete(i2c_cmd);
  148. if (ret != ESP_OK) {
  149. LOG_ERROR("could not intialize TAS575x %d", ret);
  150. }
  151. #endif
  152. #ifdef CONFIG_I2S_BITS_PER_CHANNEL
  153. switch (CONFIG_I2S_BITS_PER_CHANNEL) {
  154. case 24:
  155. output.format = S24_BE;
  156. bytes_per_frame = 2*3;
  157. break;
  158. case 16:
  159. output.format = S16_BE;
  160. bytes_per_frame = 2*2;
  161. break;
  162. case 8:
  163. output.format = S8_BE;
  164. bytes_per_frame = 2*4;
  165. break;
  166. default:
  167. LOG_ERROR("Unsupported bit depth %d",CONFIG_I2S_BITS_PER_CHANNEL);
  168. break;
  169. }
  170. #else
  171. output.format = S16_LE;
  172. bytes_per_frame = 2*2;
  173. #endif
  174. output.write_cb = &_i2s_write_frames;
  175. obuf = malloc(FRAME_BLOCK * bytes_per_frame);
  176. if (!obuf) {
  177. LOG_ERROR("Cannot allocate i2s buffer");
  178. return;
  179. }
  180. running=true;
  181. i2s_config.mode = I2S_MODE_MASTER | I2S_MODE_TX;
  182. i2s_config.sample_rate = output.current_sample_rate;
  183. i2s_config.bits_per_sample = bytes_per_frame * 8 / 2;
  184. i2s_config.channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT;
  185. i2s_config.communication_format = I2S_COMM_FORMAT_I2S| I2S_COMM_FORMAT_I2S_MSB;
  186. // in case of overflow, do not replay old buffer
  187. i2s_config.tx_desc_auto_clear = true;
  188. i2s_config.dma_buf_count = DMA_BUF_COUNT;
  189. // Counted in frames (but i2s allocates a buffer <= 4092 bytes)
  190. i2s_config.dma_buf_len = DMA_BUF_LEN;
  191. i2s_config.use_apll = true;
  192. i2s_config.intr_alloc_flags = ESP_INTR_FLAG_LEVEL1; //Interrupt level 1
  193. i2s_pin_config_t pin_config = { .bck_io_num = CONFIG_I2S_BCK_IO, .ws_io_num =
  194. CONFIG_I2S_WS_IO, .data_out_num = CONFIG_I2S_DO_IO, .data_in_num = -1 //Not used
  195. };
  196. LOG_INFO("Initializing I2S with rate: %d, bits per sample: %d, buffer frames: %d, number of buffers: %d ",
  197. i2s_config.sample_rate, i2s_config.bits_per_sample, i2s_config.dma_buf_len, i2s_config.dma_buf_count);
  198. i2s_driver_install(CONFIG_I2S_NUM, &i2s_config, 0, NULL);
  199. i2s_set_pin(CONFIG_I2S_NUM, &pin_config);
  200. i2s_stop(CONFIG_I2S_NUM);
  201. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  202. isI2SStarted=false;
  203. pthread_attr_t attr;
  204. pthread_attr_init(&attr);
  205. pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN + OUTPUT_THREAD_STACK_SIZE);
  206. pthread_create_name(&thread, &attr, output_thread_i2s, NULL, "output_i2s");
  207. pthread_attr_destroy(&attr);
  208. // leave stack size to default
  209. pthread_create_name(&stats_thread, NULL, output_thread_i2s_stats, NULL, "output_i2s_sts");
  210. }
  211. /****************************************************************************************
  212. * Terminate DAC output
  213. */
  214. void output_close_i2s(void) {
  215. LOCK;
  216. running = false;
  217. UNLOCK;
  218. pthread_join(thread, NULL);
  219. pthread_join(stats_thread, NULL);
  220. i2s_driver_uninstall(CONFIG_I2S_NUM);
  221. free(obuf);
  222. #ifdef TAS575x
  223. i2c_driver_delete(I2C_PORT);
  224. #endif
  225. }
  226. /****************************************************************************************
  227. * change volume
  228. */
  229. bool output_volume_i2s(unsigned left, unsigned right) {
  230. #ifdef TAS575x
  231. gpio_set_level(VOLUME_GPIO, left || right);
  232. #endif
  233. return false;
  234. }
  235. /****************************************************************************************
  236. * Write frames to the output buffer
  237. */
  238. static int _i2s_write_frames(frames_t out_frames, bool silence, s32_t gainL, s32_t gainR,
  239. s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T **cross_ptr) {
  240. #if BYTES_PER_FRAME == 8
  241. s32_t *optr;
  242. #endif
  243. if (!silence) {
  244. if (output.fade == FADE_ACTIVE && output.fade_dir == FADE_CROSS && *cross_ptr) {
  245. _apply_cross(outputbuf, out_frames, cross_gain_in, cross_gain_out, cross_ptr);
  246. }
  247. #if BYTES_PER_FRAME == 4
  248. if (gainL != FIXED_ONE || gainR!= FIXED_ONE) {
  249. _apply_gain(outputbuf, out_frames, gainL, gainR);
  250. }
  251. memcpy(obuf, outputbuf->readp, out_frames * bytes_per_frame);
  252. #else
  253. optr = (s32_t*) outputbuf->readp;
  254. #endif
  255. } else {
  256. #if BYTES_PER_FRAME == 4
  257. memcpy(obuf, silencebuf, out_frames * bytes_per_frame);
  258. #else
  259. optr = (s32_t*) silencebuf;
  260. #endif
  261. }
  262. #if BYTES_PER_FRAME == 8
  263. IF_DSD(
  264. if (output.outfmt == DOP) {
  265. update_dop((u32_t *) optr, out_frames, output.invert);
  266. } else if (output.outfmt != PCM && output.invert)
  267. dsd_invert((u32_t *) optr, out_frames);
  268. )
  269. _scale_and_pack_frames(obuf, optr, out_frames, gainL, gainR, output.format);
  270. #endif
  271. return out_frames;
  272. }
  273. /****************************************************************************************
  274. * Main output thread
  275. */
  276. static void *output_thread_i2s() {
  277. frames_t iframes = FRAME_BLOCK, oframes;
  278. size_t bytes;
  279. uint32_t timer_start = 0;
  280. int discard = 0;
  281. uint32_t fullness = gettime_ms();
  282. bool synced;
  283. while (running) {
  284. TIME_MEASUREMENT_START(timer_start);
  285. LOCK;
  286. if (output.state == OUTPUT_OFF) {
  287. UNLOCK;
  288. LOG_INFO("Output state is off.");
  289. if (isI2SStarted) {
  290. isI2SStarted = false;
  291. i2s_stop(CONFIG_I2S_NUM);
  292. dac_cmd(DAC_OFF);
  293. }
  294. usleep(200000);
  295. continue;
  296. } else if (output.state == OUTPUT_STOPPED) {
  297. synced = false;
  298. }
  299. output.updated = gettime_ms();
  300. output.frames_played_dmp = output.frames_played;
  301. // try to estimate how much we have consumed from the DMA buffer
  302. output.device_frames = DMA_BUF_COUNT * DMA_BUF_LEN - ((output.updated - fullness) * output.current_sample_rate) / 1000;
  303. oframes = _output_frames( iframes );
  304. SET_MIN_MAX_SIZED(oframes,rec,iframes);
  305. SET_MIN_MAX_SIZED(_buf_used(outputbuf),o,outputbuf->size);
  306. SET_MIN_MAX_SIZED(_buf_used(streambuf),s,streambuf->size);
  307. SET_MIN_MAX( TIME_MEASUREMENT_GET(timer_start),buffering);
  308. /* must skip first whatever is in the pipe (but not when resuming).
  309. This test is incorrect when we pause a track that has just started,
  310. but this is higly unlikely and I don't have a better one for now */
  311. if (output.state == OUTPUT_START_AT) {
  312. discard = output.frames_played_dmp ? 0 : output.device_frames;
  313. synced = true;
  314. } else if (discard) {
  315. discard -= oframes;
  316. iframes = discard ? min(FRAME_BLOCK, discard) : FRAME_BLOCK;
  317. UNLOCK;
  318. continue;
  319. }
  320. UNLOCK;
  321. // now send all the data
  322. TIME_MEASUREMENT_START(timer_start);
  323. if (!isI2SStarted ) {
  324. isI2SStarted = true;
  325. LOG_INFO("Restarting I2S.");
  326. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  327. i2s_start(CONFIG_I2S_NUM);
  328. dac_cmd(DAC_ON);
  329. }
  330. // this does not work well as set_sample_rates resets the fifos (and it's too early)
  331. if (i2s_config.sample_rate != output.current_sample_rate) {
  332. LOG_INFO("changing sampling rate %u to %u", i2s_config.sample_rate, output.current_sample_rate);
  333. /*
  334. if (synced)
  335. // can sleep for a buffer_queue - 1 and then eat a buffer (discard) if we are synced
  336. usleep(((DMA_BUF_COUNT - 1) * DMA_BUF_LEN * bytes_per_frame * 1000) / 44100 * 1000);
  337. discard = DMA_BUF_COUNT * DMA_BUF_LEN * bytes_per_frame;
  338. }
  339. */
  340. i2s_config.sample_rate = output.current_sample_rate;
  341. i2s_set_sample_rates(CONFIG_I2S_NUM, i2s_config.sample_rate);
  342. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  343. //return;
  344. }
  345. // we assume that here we have been able to entirely fill the DMA buffers
  346. i2s_write(CONFIG_I2S_NUM, obuf, oframes * bytes_per_frame, &bytes, portMAX_DELAY);
  347. fullness = gettime_ms();
  348. if (bytes != oframes * bytes_per_frame) {
  349. LOG_WARN("I2S DMA Overflow! available bytes: %d, I2S wrote %d bytes", oframes * bytes_per_frame, bytes);
  350. }
  351. SET_MIN_MAX( TIME_MEASUREMENT_GET(timer_start),i2s_time);
  352. }
  353. return 0;
  354. }
  355. /****************************************************************************************
  356. * Stats output thread
  357. */
  358. static void *output_thread_i2s_stats() {
  359. while (running) {
  360. LOCK;
  361. output_state state = output.state;
  362. UNLOCK;
  363. if(state>OUTPUT_STOPPED){
  364. LOG_INFO( "Output State: %d, current sample rate: %d, bytes per frame: %d",state,output.current_sample_rate, bytes_per_frame);
  365. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD1);
  366. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD2);
  367. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD3);
  368. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD4);
  369. LOG_INFO(LINE_MIN_MAX_FORMAT_STREAM, LINE_MIN_MAX_STREAM("stream",s));
  370. LOG_INFO(LINE_MIN_MAX_FORMAT,LINE_MIN_MAX("output",o));
  371. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  372. LOG_INFO(LINE_MIN_MAX_FORMAT,LINE_MIN_MAX("received",rec));
  373. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  374. LOG_INFO("");
  375. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  376. LOG_INFO(" max (us) | min (us) | avg(us) | count | ");
  377. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  378. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT,LINE_MIN_MAX_DURATION("Buffering(us)",buffering));
  379. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT,LINE_MIN_MAX_DURATION("i2s tfr(us)",i2s_time));
  380. LOG_INFO(" ----------+----------+-----------+-----------+");
  381. RESET_ALL_MIN_MAX;
  382. }
  383. usleep(STATS_PERIOD_MS *1000);
  384. }
  385. return NULL;
  386. }
  387. /****************************************************************************************
  388. * DAC specific commands
  389. */
  390. void dac_cmd(dac_cmd_e cmd, ...) {
  391. va_list args;
  392. esp_err_t ret = ESP_OK;
  393. va_start(args, cmd);
  394. #ifdef TAS575x
  395. i2c_cmd_handle_t i2c_cmd = i2c_cmd_link_create();
  396. switch(cmd) {
  397. case DAC_VOLUME:
  398. LOG_ERROR("volume not handled yet");
  399. break;
  400. default:
  401. i2c_master_start(i2c_cmd);
  402. i2c_master_write_byte(i2c_cmd, I2C_ADDR << 1 | I2C_MASTER_WRITE, I2C_MASTER_NACK);
  403. i2c_master_write_byte(i2c_cmd, tas575x_cmd[cmd].reg, I2C_MASTER_NACK);
  404. i2c_master_write_byte(i2c_cmd, tas575x_cmd[cmd].value, I2C_MASTER_NACK);
  405. i2c_master_stop(i2c_cmd);
  406. ret = i2c_master_cmd_begin(I2C_PORT, i2c_cmd, 50 / portTICK_RATE_MS);
  407. }
  408. i2c_cmd_link_delete(i2c_cmd);
  409. if (ret != ESP_OK) {
  410. LOG_ERROR("could not intialize TAS575x %d", ret);
  411. }
  412. #endif
  413. va_end(args);
  414. }