output_i2s.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*
  12. Synchronisation is a bit of a hack with i2s. The esp32 driver is always
  13. full when it starts, so there is a delay of the total length of buffers.
  14. In other words, i2s_write blocks at first call, until at least one buffer
  15. has been written (it uses a queue with produce / consume).
  16. The first hack is to consume that length at the beginning of tracks when
  17. synchronization is active. It's about ~180ms @ 44.1kHz
  18. The second hack is that we never know exactly the number of frames in the
  19. DMA buffers when we update the output.frames_played_dmp. We assume that
  20. after i2s_write, these buffers are always full so by measuring the gap
  21. between time after i2s_write and update of frames_played_dmp, we have a
  22. good idea of the error.
  23. The third hack is when sample rate changes, buffers are reset and we also
  24. do the change too early, but can't do that exaclty at the right time. So
  25. there might be a pop and a de-sync when sampling rate change happens. Not
  26. sure that using rate_delay would fix that
  27. */
  28. #include "Config.h"
  29. #include "accessors.h"
  30. #include "adac.h"
  31. #include "driver/gpio.h"
  32. #include "driver/i2c.h"
  33. #include "driver/i2s.h"
  34. #include "equalizer.h"
  35. #include "esp_pthread.h"
  36. #include "globdefs.h"
  37. #include "gpio_exp.h"
  38. #include "hal/gpio_hal.h"
  39. #include "led.h"
  40. #include "monitor.h"
  41. #include "perf_trace.h"
  42. #include "services.h"
  43. #include "slimproto.h"
  44. #include "squeezelite.h"
  45. #include "time.h"
  46. #include <signal.h>
  47. extern sys_squeezelite_config* get_profile(const char* name);
  48. extern log_level log_level_from_sys_level(sys_squeezelite_debug_levels level);
  49. static sys_squeezelite_config* config = NULL;
  50. #define LOCK mutex_lock(outputbuf->mutex)
  51. #define UNLOCK mutex_unlock(outputbuf->mutex)
  52. #define FRAME_BLOCK MAX_SILENCE_FRAMES
  53. #define SPDIF_BLOCK 256
  54. /* we produce FRAME_BLOCK (2048) per loop of the i2s thread so it's better if they fit
  55. * inside a set of DMA buffer nicely, i.e. DMA_BUF_FRAMES * DMA_BUF_COUNT is a multiple
  56. * of FRAME_BLOCK so that each DMA buffer is filled and we fully empty a FRAME_BLOCK at
  57. * each loop. Because one DMA buffer in esp32 is 4092 or below, when using 16 bits
  58. * samples and 2 channels, the best multiple is 512 (512*2*2=2048) and we use 6 of these.
  59. * In SPDIF, as we virtually use 32 bits per sample, the next proper multiple would
  60. * be 256 but such DMA buffers are too small and this causes stuttering. So we will use
  61. * non-multiples which means that at every loop one DMA buffer will be not fully filled.
  62. * At least, let's make sure it's not a too small amount of samples so 450*4*2=3600 fits
  63. * nicely in one DMA buffer and 2048/450 = 4 buffers + ~1/2 buffer which is acceptable.
  64. */
  65. #define DMA_BUF_FRAMES 512
  66. #define DMA_BUF_COUNT 12
  67. #define DMA_BUF_FRAMES_SPDIF 450
  68. #define DMA_BUF_COUNT_SPDIF 7
  69. #define DECLARE_ALL_MIN_MAX \
  70. DECLARE_MIN_MAX(o); \
  71. DECLARE_MIN_MAX(s); \
  72. DECLARE_MIN_MAX(rec); \
  73. DECLARE_MIN_MAX(i2s_time); \
  74. DECLARE_MIN_MAX(buffering);
  75. #define RESET_ALL_MIN_MAX \
  76. RESET_MIN_MAX(o); \
  77. RESET_MIN_MAX(s); \
  78. RESET_MIN_MAX(rec); \
  79. RESET_MIN_MAX(i2s_time); \
  80. RESET_MIN_MAX(buffering);
  81. #define STATS_PERIOD_MS 5000
  82. static void (*pseudo_idle_chain)(uint32_t now);
  83. #ifndef CONFIG_AMP_GPIO_LEVEL
  84. #define CONFIG_AMP_GPIO_LEVEL 1
  85. #endif
  86. extern struct outputstate output;
  87. extern struct buffer* streambuf;
  88. extern struct buffer* outputbuf;
  89. extern u8_t* silencebuf;
  90. const struct adac_s* dac_set[] = {&dac_tas57xx, &dac_tas5713, &dac_ac101, &dac_wm8978, &dac_cs4265, NULL};
  91. const struct adac_s* adac = &dac_external;
  92. static log_level loglevel;
  93. static uint32_t i2s_idle_since;
  94. static void (*pseudo_idle_chain)(uint32_t);
  95. static bool (*slimp_handler_chain)(u8_t* data, int len);
  96. static bool jack_mutes_amp;
  97. static bool running, isI2SStarted, ended;
  98. static i2s_config_t i2s_config;
  99. static u8_t* obuf;
  100. static frames_t oframes;
  101. static struct {
  102. bool enabled;
  103. u8_t* buf;
  104. } spdif;
  105. static size_t dma_buf_frames;
  106. static TaskHandle_t output_i2s_task;
  107. static struct {
  108. int gpio, active;
  109. } amp_control = {-1, 0}, mute_control = {-1, 0};
  110. DECLARE_ALL_MIN_MAX;
  111. static int _i2s_write_frames(
  112. frames_t out_frames, bool silence, s32_t gainL, s32_t gainR, u8_t flags, s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T** cross_ptr);
  113. static void output_thread_i2s(void* arg);
  114. static void i2s_stats(uint32_t now);
  115. static void spdif_convert(ISAMPLE_T* src, size_t frames, u32_t* dst);
  116. static void (*jack_handler_chain)(bool inserted);
  117. /****************************************************************************************
  118. * AUDO packet handler
  119. */
  120. static bool handler(u8_t* data, int len) {
  121. bool res = true;
  122. if (!strncmp((char*)data, "audo", 4)) {
  123. struct audo_packet* pkt = (struct audo_packet*)data;
  124. // 0 = headphone (internal speakers off), 1 = sub out,
  125. // 2 = always on (internal speakers on), 3 = always off
  126. if (jack_mutes_amp != (pkt->config == 0)) {
  127. jack_mutes_amp = pkt->config == 0;
  128. platform->dev.dac.jack_mutes_amp = jack_mutes_amp;
  129. config_raise_changed(false);
  130. if (jack_mutes_amp && jack_inserted_svc()) {
  131. adac->speaker(false);
  132. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, !amp_control.active);
  133. } else {
  134. adac->speaker(true);
  135. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, amp_control.active);
  136. }
  137. }
  138. LOG_INFO("got AUDO %02x", pkt->config);
  139. } else {
  140. res = false;
  141. }
  142. // chain protocol handlers (bitwise or is fine)
  143. if (*slimp_handler_chain) res |= (*slimp_handler_chain)(data, len);
  144. return res;
  145. }
  146. /****************************************************************************************
  147. * jack insertion handler
  148. */
  149. static void jack_handler(bool inserted) {
  150. // jack detection bounces a bit but that seems fine
  151. if (jack_mutes_amp) {
  152. LOG_INFO("switching amplifier %s", inserted ? "OFF" : "ON");
  153. adac->speaker(!inserted);
  154. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, inserted ? !amp_control.active : amp_control.active);
  155. }
  156. // activate headset
  157. adac->headset(inserted);
  158. // and chain if any
  159. if (jack_handler_chain) (jack_handler_chain)(inserted);
  160. }
  161. /****************************************************************************************
  162. * Get inactivity callback
  163. */
  164. static uint32_t i2s_idle_callback(void) { return output.state <= OUTPUT_STOPPED ? pdTICKS_TO_MS(xTaskGetTickCount()) - i2s_idle_since : 0; }
  165. /****************************************************************************************
  166. * Initialize the DAC output
  167. */
  168. void output_init_i2s() {
  169. int silent_do = -1;
  170. LOG_DEBUG("Initializing I2S output");
  171. config = get_profile(NULL);
  172. sys_dac_config* dac_config = platform->has_dev && platform->dev.has_dac ? &platform->dev.dac : NULL;
  173. sys_dev_spdif* spdif_config = platform->has_dev && platform->dev.has_spdif ? &platform->dev.spdif : NULL;
  174. loglevel = log_level_from_sys_level(config->log.output);
  175. esp_err_t res;
  176. // chain SLIMP handlers
  177. slimp_handler_chain = slimp_handler;
  178. slimp_handler = handler;
  179. if (dac_config) jack_mutes_amp = dac_config->jack_mutes_amp;
  180. if (platform->has_gpios) {
  181. amp_control.gpio = platform->has_gpios && platform->gpios.has_amp ? platform->gpios.amp.pin : -1;
  182. amp_control.active = platform->has_gpios && platform->gpios.has_amp ? platform->gpios.amp.level : 0;
  183. }
  184. #if BYTES_PER_FRAME == 8
  185. output.format = S32_LE;
  186. #else
  187. output.format = S16_LE;
  188. #endif
  189. output.write_cb = &_i2s_write_frames;
  190. obuf = malloc(FRAME_BLOCK * BYTES_PER_FRAME);
  191. if (!obuf) {
  192. LOG_ERROR("Cannot allocate i2s buffer");
  193. return;
  194. }
  195. running = true;
  196. i2s_pin_config_t i2s_dac_pin = {-1, -1, -1, -1, -1}, i2s_spdif_pin = {-1, -1, -1, -1, -1};
  197. if (dac_config) {
  198. i2s_dac_pin.bck_io_num = dac_config->bck;
  199. i2s_dac_pin.data_out_num = dac_config->dout;
  200. i2s_dac_pin.ws_io_num = dac_config->ws;
  201. #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0)
  202. if (dac_config->mck != sys_dac_mck_NONE && dac_config->mck != sys_dac_mck_INVALID1) {
  203. LOG_INFO("Using I2S Master clock %s", sys_dac_mck_name(dac_config->mck));
  204. i2s_dac_pin.mck_io_num = dac_config->mck - sys_dac_mck_GPIO0;
  205. } else {
  206. LOG_INFO("Configuration does not specify an I2S Master Clock");
  207. i2s_dac_pin.mck_io_num = -1;
  208. }
  209. #endif
  210. }
  211. if (spdif_config) {
  212. i2s_spdif_pin.bck_io_num = spdif_config->clk;
  213. i2s_spdif_pin.data_out_num = spdif_config->data;
  214. i2s_spdif_pin.ws_io_num = spdif_config->ws;
  215. }
  216. if (i2s_dac_pin.data_out_num == -1 && i2s_spdif_pin.data_out_num == -1) {
  217. LOG_WARN("DAC and SPDIF not configured, NOT launching i2s thread");
  218. return;
  219. }
  220. // common I2S initialization
  221. i2s_config.mode = I2S_MODE_MASTER | I2S_MODE_TX;
  222. i2s_config.channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT;
  223. i2s_config.communication_format = I2S_COMM_FORMAT_STAND_I2S;
  224. // in case of overflow, do not replay old buffer
  225. i2s_config.tx_desc_auto_clear = true;
  226. #ifndef CONFIG_IDF_TARGET_ESP32S3
  227. i2s_config.use_apll = true;
  228. #endif
  229. i2s_config.intr_alloc_flags = ESP_INTR_FLAG_LEVEL1; // Interrupt level 1
  230. i2s_config.dma_buf_len = DMA_BUF_FRAMES;
  231. i2s_config.dma_buf_count = DMA_BUF_COUNT;
  232. if (config->output_type == sys_squeezelite_outputs_SPDIF) {
  233. spdif.enabled = true;
  234. LOG_DEBUG("Configuring SPDIF");
  235. if ((spdif.buf = heap_caps_malloc(SPDIF_BLOCK * 16, MALLOC_CAP_INTERNAL)) == NULL) {
  236. LOG_ERROR("Cannot allocate SPDIF buffer");
  237. }
  238. if (i2s_spdif_pin.bck_io_num == -1 || i2s_spdif_pin.ws_io_num == -1 || i2s_spdif_pin.data_out_num == -1) {
  239. LOG_WARN(
  240. "Cannot initialize I2S for SPDIF bck:%d ws:%d do:%d", i2s_spdif_pin.bck_io_num, i2s_spdif_pin.ws_io_num, i2s_spdif_pin.data_out_num);
  241. }
  242. i2s_config.sample_rate = output.current_sample_rate * 2;
  243. i2s_config.bits_per_sample = 32;
  244. // Normally counted in frames, but 16 sample are transformed into 32 bits in spdif
  245. i2s_config.dma_buf_len = DMA_BUF_FRAMES_SPDIF;
  246. i2s_config.dma_buf_count = DMA_BUF_COUNT_SPDIF;
  247. /*
  248. In DMA, we have room for (LEN * COUNT) frames of 32 bits samples that
  249. we push at sample_rate * 2. Each of these pseudo-frames is a single true
  250. audio frame. So the real depth in true frames is (LEN * COUNT / 2)
  251. */
  252. dma_buf_frames = i2s_config.dma_buf_len * i2s_config.dma_buf_count / 2;
  253. // silence DAC output if sharing the same ws/bck
  254. if (i2s_dac_pin.ws_io_num == i2s_spdif_pin.ws_io_num && i2s_dac_pin.bck_io_num == i2s_spdif_pin.bck_io_num)
  255. silent_do = i2s_dac_pin.data_out_num;
  256. res = i2s_driver_install(CONFIG_I2S_NUM, &i2s_config, 0, NULL);
  257. res |= i2s_set_pin(CONFIG_I2S_NUM, &i2s_spdif_pin);
  258. LOG_INFO("SPDIF using I2S bck:%d, ws:%d, do:%d", i2s_spdif_pin.bck_io_num, i2s_spdif_pin.ws_io_num, i2s_spdif_pin.data_out_num);
  259. } else {
  260. LOG_DEBUG("Configuring DAC");
  261. i2s_config.sample_rate = output.current_sample_rate;
  262. i2s_config.bits_per_sample = BYTES_PER_FRAME * 8 / 2;
  263. // Counted in frames (but i2s allocates a buffer <= 4092 bytes)
  264. i2s_config.dma_buf_len = DMA_BUF_FRAMES;
  265. i2s_config.dma_buf_count = DMA_BUF_COUNT;
  266. dma_buf_frames = i2s_config.dma_buf_len * i2s_config.dma_buf_count;
  267. // silence SPDIF output
  268. silent_do = i2s_spdif_pin.data_out_num;
  269. mute_control.gpio = dac_config && dac_config->has_mute ? dac_config->mute.pin : -1;
  270. mute_control.active = dac_config && dac_config->has_mute ? dac_config->mute.level : 0;
  271. bool mck_required = false;
  272. LOG_DEBUG("Looking for %s DAC Driver", sys_dac_models_name(dac_config->model));
  273. for (int i = 0; adac == &dac_external && dac_set[i]; i++) {
  274. if (dac_set[i]->model == dac_config->model) {
  275. LOG_DEBUG("Found Driver");
  276. adac = dac_set[i];
  277. } else {
  278. LOG_DEBUG("Skipping %s", sys_dac_models_name(dac_set[i]->model));
  279. }
  280. }
  281. if (!adac) {
  282. LOG_ERROR("Invalid adac structure");
  283. return;
  284. }
  285. if (!adac->init) {
  286. LOG_ERROR("adac doesn't have a valid init");
  287. return;
  288. }
  289. LOG_DEBUG("Calling DAC init for %s", sys_dac_models_name(adac->model));
  290. res = adac->init(&platform->dev.dac, &i2s_config, &mck_required) ? ESP_OK : ESP_FAIL;
  291. #if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(4, 4, 0)
  292. int mck_io_num = (((int)dac_config->mck) - ((int)sys_MCKEnum_MCK0)) < 0 && mck_required ? 0
  293. : mck_required ? dac_config->mck - sys_MCKEnum_MCK0
  294. : -1;
  295. LOG_INFO("configuring MCLK on GPIO %d", mck_io_num);
  296. if (mck_io_num == GPIO_NUM_0) {
  297. PIN_FUNC_SELECT(PERIPHS_IO_MUX_GPIO0_U, FUNC_GPIO0_CLK_OUT1);
  298. WRITE_PERI_REG(PIN_CTRL, CONFIG_I2S_NUM == I2S_NUM_0 ? 0xFFF0 : 0xFFFF);
  299. } else if (mck_io_num == GPIO_NUM_1) {
  300. PIN_FUNC_SELECT(PERIPHS_IO_MUX_U0TXD_U, FUNC_U0TXD_CLK_OUT3);
  301. WRITE_PERI_REG(PIN_CTRL, CONFIG_I2S_NUM == I2S_NUM_0 ? 0xF0F0 : 0xF0FF);
  302. } else if (mck_io_num == GPIO_NUM_2) {
  303. PIN_FUNC_SELECT(PERIPHS_IO_MUX_U0RXD_U, FUNC_U0RXD_CLK_OUT2);
  304. WRITE_PERI_REG(PIN_CTRL, CONFIG_I2S_NUM == I2S_NUM_0 ? 0xFF00 : 0xFF0F);
  305. } else {
  306. LOG_WARN("invalid MCK gpio %d", mck_io_num);
  307. }
  308. #else
  309. if (res == ESP_OK) {
  310. if (mck_required && i2s_dac_pin.mck_io_num == -1) {
  311. LOG_DEBUG("Defaulting MCLK on GPIO %d", i2s_dac_pin.mck_io_num);
  312. i2s_dac_pin.mck_io_num = 0;
  313. } else {
  314. LOG_DEBUG("MCLK configured on GPIO %d", i2s_dac_pin.mck_io_num);
  315. }
  316. }
  317. #endif
  318. if (res == ESP_OK) {
  319. res |= i2s_driver_install(CONFIG_I2S_NUM, &i2s_config, 0, NULL);
  320. res |= i2s_set_pin(CONFIG_I2S_NUM, &i2s_dac_pin);
  321. if (res == ESP_OK && mute_control.gpio >= 0) {
  322. gpio_pad_select_gpio(mute_control.gpio);
  323. gpio_set_direction(mute_control.gpio, GPIO_MODE_OUTPUT);
  324. gpio_set_level(mute_control.gpio, mute_control.active);
  325. }
  326. LOG_INFO("%s DAC using I2S bck:%d, ws:%d, do:%d, mute:%d:%d (res:%d)", sys_dac_models_name(dac_config->model), i2s_dac_pin.bck_io_num,
  327. i2s_dac_pin.ws_io_num, i2s_dac_pin.data_out_num, mute_control.gpio, mute_control.active, res);
  328. }
  329. }
  330. if (res != ESP_OK) {
  331. LOG_WARN("no DAC configured");
  332. return;
  333. }
  334. // turn off GPIO than is not used (SPDIF of DAC DO when shared)
  335. if (silent_do >= 0) {
  336. gpio_pad_select_gpio(silent_do);
  337. gpio_set_direction(silent_do, GPIO_MODE_OUTPUT);
  338. gpio_set_level(silent_do, 0);
  339. }
  340. LOG_INFO("Initializing I2S mode %s with rate: %d, bits per sample: %d, buffer frames: %d, "
  341. "number of buffers: %d ",
  342. spdif.enabled ? "S/PDIF" : "normal", i2s_config.sample_rate, i2s_config.bits_per_sample, i2s_config.dma_buf_len, i2s_config.dma_buf_count);
  343. i2s_stop(CONFIG_I2S_NUM);
  344. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  345. isI2SStarted = false;
  346. equalizer_set_samplerate(output.current_sample_rate);
  347. adac->power(ADAC_STANDBY);
  348. jack_handler_chain = jack_handler_svc;
  349. jack_handler_svc = jack_handler;
  350. if (amp_control.gpio != -1) {
  351. gpio_pad_select_gpio_x(amp_control.gpio);
  352. gpio_set_direction_x(amp_control.gpio, GPIO_MODE_OUTPUT);
  353. gpio_set_level_x(amp_control.gpio, !amp_control.active);
  354. LOG_INFO("setting amplifier GPIO %d (active:%d)", amp_control.gpio, amp_control.active);
  355. }
  356. if (jack_mutes_amp && jack_inserted_svc())
  357. adac->speaker(false);
  358. else
  359. adac->speaker(true);
  360. adac->headset(jack_inserted_svc());
  361. // do we want stats
  362. if (platform->has_services && platform->services.statistics) {
  363. pseudo_idle_chain = pseudo_idle_svc;
  364. pseudo_idle_svc = i2s_stats;
  365. }
  366. // register a callback for inactivity
  367. i2s_idle_since = pdTICKS_TO_MS(xTaskGetTickCount());
  368. services_sleep_setsleeper(i2s_idle_callback);
  369. // create task as a FreeRTOS task but uses stack in internal RAM
  370. {
  371. static DRAM_ATTR StaticTask_t xTaskBuffer __attribute__((aligned(4)));
  372. static EXT_RAM_ATTR StackType_t xStack[OUTPUT_THREAD_STACK_SIZE] __attribute__((aligned(4)));
  373. output_i2s_task = xTaskCreateStaticPinnedToCore((TaskFunction_t)output_thread_i2s, "output_i2s", OUTPUT_THREAD_STACK_SIZE, NULL,
  374. CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT + 1, xStack, &xTaskBuffer, 0);
  375. }
  376. }
  377. /****************************************************************************************
  378. * Terminate DAC output
  379. */
  380. void output_close_i2s(void) {
  381. LOCK;
  382. running = false;
  383. UNLOCK;
  384. while (!ended)
  385. vTaskDelay(20 / portTICK_PERIOD_MS);
  386. i2s_driver_uninstall(CONFIG_I2S_NUM);
  387. free(obuf);
  388. equalizer_close();
  389. adac->deinit();
  390. }
  391. /****************************************************************************************
  392. * change volume
  393. */
  394. bool output_volume_i2s(unsigned left, unsigned right) {
  395. if (mute_control.gpio >= 0) gpio_set_level(mute_control.gpio, (left | right) ? !mute_control.active : mute_control.active);
  396. return adac->volume(left, right);
  397. }
  398. /****************************************************************************************
  399. * Write frames to the output buffer
  400. */
  401. static int _i2s_write_frames(
  402. frames_t out_frames, bool silence, s32_t gainL, s32_t gainR, u8_t flags, s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T** cross_ptr) {
  403. if (!silence) {
  404. if (output.fade == FADE_ACTIVE && output.fade_dir == FADE_CROSS && *cross_ptr) {
  405. _apply_cross(outputbuf, out_frames, cross_gain_in, cross_gain_out, cross_ptr);
  406. }
  407. _apply_gain(outputbuf, out_frames, gainL, gainR, flags);
  408. memcpy(obuf + oframes * BYTES_PER_FRAME, outputbuf->readp, out_frames * BYTES_PER_FRAME);
  409. } else {
  410. memcpy(obuf + oframes * BYTES_PER_FRAME, silencebuf, out_frames * BYTES_PER_FRAME);
  411. }
  412. // don't update visu if we don't have enough data in buffer
  413. if (silence || output.external || _buf_used(outputbuf) > outputbuf->size >> 2) {
  414. output_visu_export(obuf + oframes * BYTES_PER_FRAME, out_frames, output.current_sample_rate, silence, (gainL + gainR) / 2);
  415. }
  416. oframes += out_frames;
  417. return out_frames;
  418. }
  419. /****************************************************************************************
  420. * Main output thread
  421. */
  422. static void output_thread_i2s(void* arg) {
  423. size_t bytes;
  424. frames_t iframes = FRAME_BLOCK;
  425. uint32_t timer_start = 0;
  426. int discard = 0;
  427. uint32_t fullness = gettime_ms();
  428. bool synced;
  429. output_state state = OUTPUT_OFF - 1;
  430. while (running) {
  431. TIME_MEASUREMENT_START(timer_start);
  432. LOCK;
  433. // manage led display & analogue
  434. if (state != output.state) {
  435. LOG_INFO("Output state is %d", output.state);
  436. if (output.state == OUTPUT_OFF) {
  437. led_blink(LED_GREEN, 100, 2500);
  438. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, !amp_control.active);
  439. LOG_INFO("switching off amp GPIO %d", amp_control.gpio);
  440. } else if (output.state == OUTPUT_STOPPED) {
  441. i2s_idle_since = pdTICKS_TO_MS(xTaskGetTickCount());
  442. adac->speaker(false);
  443. led_blink(LED_GREEN, 200, 1000);
  444. } else if (output.state == OUTPUT_RUNNING) {
  445. if (!jack_mutes_amp || !jack_inserted_svc()) {
  446. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, amp_control.active);
  447. adac->speaker(true);
  448. }
  449. led_on(LED_GREEN);
  450. }
  451. }
  452. state = output.state;
  453. if (output.state == OUTPUT_OFF) {
  454. UNLOCK;
  455. if (isI2SStarted) {
  456. isI2SStarted = false;
  457. i2s_stop(CONFIG_I2S_NUM);
  458. adac->power(ADAC_STANDBY);
  459. }
  460. usleep(100000);
  461. continue;
  462. } else if (output.state == OUTPUT_STOPPED) {
  463. synced = false;
  464. }
  465. oframes = 0;
  466. output.updated = gettime_ms();
  467. output.frames_played_dmp = output.frames_played;
  468. // try to estimate how much we have consumed from the DMA buffer (calculation is incorrect
  469. // at the very beginning ...)
  470. output.device_frames = dma_buf_frames - ((output.updated - fullness) * output.current_sample_rate) / 1000;
  471. // we'll try to produce iframes if we have any, but we might return less if outpuf does not
  472. // have enough
  473. _output_frames(iframes);
  474. // oframes must be a global updated by the write callback
  475. output.frames_in_process = oframes;
  476. SET_MIN_MAX_SIZED(oframes, rec, iframes);
  477. SET_MIN_MAX_SIZED(_buf_used(outputbuf), o, outputbuf->size);
  478. SET_MIN_MAX_SIZED(_buf_used(streambuf), s, streambuf->size);
  479. SET_MIN_MAX(TIME_MEASUREMENT_GET(timer_start), buffering);
  480. /* must skip first whatever is in the pipe (but not when resuming).
  481. This test is incorrect when we pause a track that has just started,
  482. but this is higly unlikely and I don't have a better one for now */
  483. if (output.state == OUTPUT_START_AT) {
  484. discard = output.frames_played_dmp ? 0 : output.device_frames;
  485. synced = true;
  486. } else if (discard) {
  487. discard -= min(oframes, discard);
  488. iframes = discard ? min(FRAME_BLOCK, discard) : FRAME_BLOCK;
  489. UNLOCK;
  490. continue;
  491. }
  492. UNLOCK;
  493. // now send all the data
  494. TIME_MEASUREMENT_START(timer_start);
  495. if (!isI2SStarted) {
  496. isI2SStarted = true;
  497. LOG_INFO("Restarting I2S.");
  498. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  499. i2s_start(CONFIG_I2S_NUM);
  500. adac->power(ADAC_ON);
  501. if (spdif.enabled) spdif_convert(NULL, 0, NULL);
  502. }
  503. // this does not work well as set_sample_rates resets the fifos (and it's too early)
  504. if (i2s_config.sample_rate != output.current_sample_rate) {
  505. LOG_INFO("changing sampling rate %u to %u", i2s_config.sample_rate, output.current_sample_rate);
  506. if (synced) {
  507. /*
  508. // can sleep for a buffer_queue - 1 and then eat a buffer (discard) if we are
  509. synced usleep(((DMA_BUF_COUNT - 1) * DMA_BUF_LEN * BYTES_PER_FRAME * 1000) /
  510. 44100 * 1000); discard = DMA_BUF_COUNT * DMA_BUF_LEN * BYTES_PER_FRAME;
  511. */
  512. }
  513. i2s_config.sample_rate = output.current_sample_rate;
  514. i2s_set_sample_rates(CONFIG_I2S_NUM, spdif.enabled ? i2s_config.sample_rate * 2 : i2s_config.sample_rate);
  515. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  516. equalizer_set_samplerate(output.current_sample_rate);
  517. }
  518. // run equalizer
  519. equalizer_process(obuf, oframes * BYTES_PER_FRAME);
  520. // we assume that here we have been able to entirely fill the DMA buffers
  521. if (spdif.enabled) {
  522. size_t obytes, count = 0;
  523. bytes = 0;
  524. // need IRAM for speed but can't allocate a FRAME_BLOCK * 16, so process by smaller
  525. // chunks
  526. while (count < oframes) {
  527. size_t chunk = min(SPDIF_BLOCK, oframes - count);
  528. spdif_convert((ISAMPLE_T*)obuf + count * 2, chunk, (u32_t*)spdif.buf);
  529. i2s_write(CONFIG_I2S_NUM, spdif.buf, chunk * 16, &obytes, portMAX_DELAY);
  530. bytes += obytes / (16 / BYTES_PER_FRAME);
  531. count += chunk;
  532. }
  533. #if BYTES_PER_FRAME == 4
  534. } else if (i2s_config.bits_per_sample == 32) {
  535. i2s_write_expand(CONFIG_I2S_NUM, obuf, oframes * BYTES_PER_FRAME, 16, 32, &bytes, portMAX_DELAY);
  536. #endif
  537. } else {
  538. i2s_write(CONFIG_I2S_NUM, obuf, oframes * BYTES_PER_FRAME, &bytes, portMAX_DELAY);
  539. }
  540. fullness = gettime_ms();
  541. if (bytes != oframes * BYTES_PER_FRAME) {
  542. LOG_WARN("I2S DMA Overflow! available bytes: %d, I2S wrote %d bytes", oframes * BYTES_PER_FRAME, bytes);
  543. }
  544. SET_MIN_MAX(TIME_MEASUREMENT_GET(timer_start), i2s_time);
  545. }
  546. if (spdif.enabled) free(spdif.buf);
  547. ended = true;
  548. vTaskDelete(NULL);
  549. }
  550. /****************************************************************************************
  551. * stats output callback
  552. */
  553. static void i2s_stats(uint32_t now) {
  554. static uint32_t last;
  555. // first chain to next handler
  556. if (pseudo_idle_chain) pseudo_idle_chain(now);
  557. // then see if we need to act
  558. if (output.state <= OUTPUT_STOPPED || now < last + STATS_PERIOD_MS) return;
  559. last = now;
  560. LOG_INFO("Output State: %d, current sample rate: %d, bytes per frame: %d", output.state, output.current_sample_rate, BYTES_PER_FRAME);
  561. LOG_INFO(LINE_MIN_MAX_FORMAT_HEAD1);
  562. LOG_INFO(LINE_MIN_MAX_FORMAT_HEAD2);
  563. LOG_INFO(LINE_MIN_MAX_FORMAT_HEAD3);
  564. LOG_INFO(LINE_MIN_MAX_FORMAT_HEAD4);
  565. LOG_INFO(LINE_MIN_MAX_FORMAT_STREAM, LINE_MIN_MAX_STREAM("stream", s));
  566. LOG_INFO(LINE_MIN_MAX_FORMAT, LINE_MIN_MAX("output", o));
  567. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  568. LOG_INFO(LINE_MIN_MAX_FORMAT, LINE_MIN_MAX("received", rec));
  569. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  570. LOG_INFO("");
  571. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  572. LOG_INFO(" max (us) | min (us) | avg(us) | count | ");
  573. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  574. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT, LINE_MIN_MAX_DURATION("Buffering(us)", buffering));
  575. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT, LINE_MIN_MAX_DURATION("i2s tfr(us)", i2s_time));
  576. LOG_INFO(" ----------+----------+-----------+-----------+");
  577. RESET_ALL_MIN_MAX;
  578. }
  579. /****************************************************************************************
  580. * SPDIF support
  581. */
  582. #define PREAMBLE_B (0xE8) // 11101000
  583. #define PREAMBLE_M (0xE2) // 11100010
  584. #define PREAMBLE_W (0xE4) // 11100100
  585. static const u8_t VUCP24[2] = {0xCC, 0x32};
  586. static const u16_t spdif_bmclookup[256] = {0xcccc, 0xb333, 0xd333, 0xaccc, 0xcb33, 0xb4cc, 0xd4cc, 0xab33, 0xcd33, 0xb2cc, 0xd2cc, 0xad33, 0xcacc,
  587. 0xb533, 0xd533, 0xaacc, 0xccb3, 0xb34c, 0xd34c, 0xacb3, 0xcb4c, 0xb4b3, 0xd4b3, 0xab4c, 0xcd4c, 0xb2b3, 0xd2b3, 0xad4c, 0xcab3, 0xb54c, 0xd54c,
  588. 0xaab3, 0xccd3, 0xb32c, 0xd32c, 0xacd3, 0xcb2c, 0xb4d3, 0xd4d3, 0xab2c, 0xcd2c, 0xb2d3, 0xd2d3, 0xad2c, 0xcad3, 0xb52c, 0xd52c, 0xaad3, 0xccac,
  589. 0xb353, 0xd353, 0xacac, 0xcb53, 0xb4ac, 0xd4ac, 0xab53, 0xcd53, 0xb2ac, 0xd2ac, 0xad53, 0xcaac, 0xb553, 0xd553, 0xaaac, 0xcccb, 0xb334, 0xd334,
  590. 0xaccb, 0xcb34, 0xb4cb, 0xd4cb, 0xab34, 0xcd34, 0xb2cb, 0xd2cb, 0xad34, 0xcacb, 0xb534, 0xd534, 0xaacb, 0xccb4, 0xb34b, 0xd34b, 0xacb4, 0xcb4b,
  591. 0xb4b4, 0xd4b4, 0xab4b, 0xcd4b, 0xb2b4, 0xd2b4, 0xad4b, 0xcab4, 0xb54b, 0xd54b, 0xaab4, 0xccd4, 0xb32b, 0xd32b, 0xacd4, 0xcb2b, 0xb4d4, 0xd4d4,
  592. 0xab2b, 0xcd2b, 0xb2d4, 0xd2d4, 0xad2b, 0xcad4, 0xb52b, 0xd52b, 0xaad4, 0xccab, 0xb354, 0xd354, 0xacab, 0xcb54, 0xb4ab, 0xd4ab, 0xab54, 0xcd54,
  593. 0xb2ab, 0xd2ab, 0xad54, 0xcaab, 0xb554, 0xd554, 0xaaab, 0xcccd, 0xb332, 0xd332, 0xaccd, 0xcb32, 0xb4cd, 0xd4cd, 0xab32, 0xcd32, 0xb2cd, 0xd2cd,
  594. 0xad32, 0xcacd, 0xb532, 0xd532, 0xaacd, 0xccb2, 0xb34d, 0xd34d, 0xacb2, 0xcb4d, 0xb4b2, 0xd4b2, 0xab4d, 0xcd4d, 0xb2b2, 0xd2b2, 0xad4d, 0xcab2,
  595. 0xb54d, 0xd54d, 0xaab2, 0xccd2, 0xb32d, 0xd32d, 0xacd2, 0xcb2d, 0xb4d2, 0xd4d2, 0xab2d, 0xcd2d, 0xb2d2, 0xd2d2, 0xad2d, 0xcad2, 0xb52d, 0xd52d,
  596. 0xaad2, 0xccad, 0xb352, 0xd352, 0xacad, 0xcb52, 0xb4ad, 0xd4ad, 0xab52, 0xcd52, 0xb2ad, 0xd2ad, 0xad52, 0xcaad, 0xb552, 0xd552, 0xaaad, 0xccca,
  597. 0xb335, 0xd335, 0xacca, 0xcb35, 0xb4ca, 0xd4ca, 0xab35, 0xcd35, 0xb2ca, 0xd2ca, 0xad35, 0xcaca, 0xb535, 0xd535, 0xaaca, 0xccb5, 0xb34a, 0xd34a,
  598. 0xacb5, 0xcb4a, 0xb4b5, 0xd4b5, 0xab4a, 0xcd4a, 0xb2b5, 0xd2b5, 0xad4a, 0xcab5, 0xb54a, 0xd54a, 0xaab5, 0xccd5, 0xb32a, 0xd32a, 0xacd5, 0xcb2a,
  599. 0xb4d5, 0xd4d5, 0xab2a, 0xcd2a, 0xb2d5, 0xd2d5, 0xad2a, 0xcad5, 0xb52a, 0xd52a, 0xaad5, 0xccaa, 0xb355, 0xd355, 0xacaa, 0xcb55, 0xb4aa, 0xd4aa,
  600. 0xab55, 0xcd55, 0xb2aa, 0xd2aa, 0xad55, 0xcaaa, 0xb555, 0xd555, 0xaaaa};
  601. /*
  602. SPDIF is supposed to be (before BMC encoding, from LSB to MSB)
  603. 0.... 1... 191.. 0
  604. BLFMRF MLFWRF MLFWRF BLFMRF (B,M,W=preamble-4, L/R=left/Right-24, F=Flags-4)
  605. each xLF pattern is 32 bits
  606. PPPP AAAA SSSS SSSS SSSS SSSS SSSS VUCP (P=preamble, A=auxiliary, S=sample-20bits, V=valid,
  607. U=user data, C=channel status, P=parity) After BMC encoding, each bit becomes 2 hence this becomes
  608. a 64 bits word. The parity is fixed by changing AAAA bits so that VUPC does not change. Then then
  609. trick is to start not with a PPPP sequence but with an VUCP sequence to that the 16 bits samples
  610. are aligned with a BMC word boundary. Input buffer is left first => LRLR...
  611. The I2S interface must output first the B/M/W preamble which means that second
  612. 32 bits words must be first and so must be marked right channel.
  613. */
  614. static void IRAM_ATTR spdif_convert(ISAMPLE_T* src, size_t frames, u32_t* dst) {
  615. static u8_t vu, count;
  616. register u16_t hi, lo;
  617. #if BYTES_PER_FRAME == 8
  618. register u16_t aux;
  619. #endif
  620. // we assume frame == 0 as well...
  621. if (!src) {
  622. count = 192;
  623. vu = VUCP24[0];
  624. }
  625. while (frames--) {
  626. // start with left channel
  627. #if BYTES_PER_FRAME == 4
  628. hi = spdif_bmclookup[(u8_t)(*src >> 8)];
  629. lo = spdif_bmclookup[(u8_t)*src++];
  630. if (lo & 1) hi = ~hi;
  631. if (!count--) {
  632. *dst++ = (vu << 24) | (PREAMBLE_B << 16) | 0xCCCC;
  633. count = 192;
  634. } else {
  635. *dst++ = (vu << 24) | (PREAMBLE_M << 16) | 0xCCCC;
  636. }
  637. #else
  638. hi = spdif_bmclookup[(u8_t)(*src >> 24)];
  639. lo = spdif_bmclookup[(u8_t)(*src >> 16)];
  640. aux = spdif_bmclookup[(u8_t)(*src++ >> 8)];
  641. if (aux & 1) lo = ~lo;
  642. if (lo & 1) hi = ~hi;
  643. if (!count--) {
  644. *dst++ = (vu << 24) | (PREAMBLE_B << 16) | aux;
  645. count = 192;
  646. } else {
  647. *dst++ = (vu << 24) | (PREAMBLE_M << 16) | aux;
  648. }
  649. #endif
  650. vu = VUCP24[hi & 1];
  651. *dst++ = ((u32_t)lo << 16) | hi;
  652. // then do right channel, no need to check PREAMBLE_B
  653. #if BYTES_PER_FRAME == 4
  654. hi = spdif_bmclookup[(u8_t)(*src >> 8)];
  655. lo = spdif_bmclookup[(u8_t)*src++];
  656. if (lo & 1) hi = ~hi;
  657. *dst++ = (vu << 24) | (PREAMBLE_W << 16) | 0xCCCC;
  658. #else
  659. hi = spdif_bmclookup[(u8_t)(*src >> 24)];
  660. lo = spdif_bmclookup[(u8_t)(*src >> 16)];
  661. aux = spdif_bmclookup[(u8_t)(*src++ >> 8)];
  662. if (aux & 1) lo = ~lo;
  663. if (lo & 1) hi = ~hi;
  664. *dst++ = (vu << 24) | (PREAMBLE_W << 16) | aux;
  665. #endif
  666. vu = VUCP24[hi & 1];
  667. *dst++ = ((u32_t)lo << 16) | hi;
  668. }
  669. }