output_i2s.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802
  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 "squeezelite.h"
  29. #include "slimproto.h"
  30. #include "esp_pthread.h"
  31. #include "driver/i2s.h"
  32. #include "driver/i2c.h"
  33. #include "driver/gpio.h"
  34. #include "perf_trace.h"
  35. #include <signal.h>
  36. #include "adac.h"
  37. #include "time.h"
  38. #include "led.h"
  39. #include "services.h"
  40. #include "monitor.h"
  41. #include "platform_config.h"
  42. #include "gpio_exp.h"
  43. #include "accessors.h"
  44. #include "equalizer.h"
  45. #include "globdefs.h"
  46. #define LOCK mutex_lock(outputbuf->mutex)
  47. #define UNLOCK mutex_unlock(outputbuf->mutex)
  48. #define FRAME_BLOCK MAX_SILENCE_FRAMES
  49. #define SPDIF_BLOCK 256
  50. /* we produce FRAME_BLOCK (2048) per loop of the i2s thread so it's better if they fit
  51. * inside a set of DMA buffer nicely, i.e. DMA_BUF_FRAMES * DMA_BUF_COUNT is a multiple
  52. * of FRAME_BLOCK so that each DMA buffer is filled and we fully empty a FRAME_BLOCK at
  53. * each loop. Because one DMA buffer in esp32 is 4092 or below, when using 16 bits
  54. * samples and 2 channels, the best multiple is 512 (512*2*2=2048) and we use 6 of these.
  55. * In SPDIF, as we virtually use 32 bits per sample, the next proper multiple would
  56. * be 256 but such DMA buffers are too small and this causes stuttering. So we will use
  57. * non-multiples which means that at every loop one DMA buffer will be not fully filled.
  58. * At least, let's make sure it's not a too small amount of samples so 450*4*2=3600 fits
  59. * nicely in one DMA buffer and 2048/450 = 4 buffers + ~1/2 buffer which is acceptable.
  60. */
  61. #define DMA_BUF_FRAMES 512
  62. #define DMA_BUF_COUNT 12
  63. #define DMA_BUF_FRAMES_SPDIF 450
  64. #define DMA_BUF_COUNT_SPDIF 7
  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. static void (*pseudo_idle_chain)(uint32_t now);
  79. #ifndef CONFIG_AMP_GPIO_LEVEL
  80. #define CONFIG_AMP_GPIO_LEVEL 1
  81. #endif
  82. extern struct outputstate output;
  83. extern struct buffer *streambuf;
  84. extern struct buffer *outputbuf;
  85. extern u8_t *silencebuf;
  86. const struct adac_s *dac_set[] = { &dac_tas57xx, &dac_tas5713, &dac_ac101, &dac_wm8978, NULL };
  87. const struct adac_s *adac = &dac_external;
  88. static log_level loglevel;
  89. static uint32_t i2s_idle_since;
  90. static void (*pseudo_idle_chain)(uint32_t);
  91. static bool (*slimp_handler_chain)(u8_t *data, int len);
  92. static bool jack_mutes_amp;
  93. static bool running, isI2SStarted, ended;
  94. static i2s_config_t i2s_config;
  95. static u8_t *obuf;
  96. static frames_t oframes;
  97. static struct {
  98. bool enabled;
  99. u8_t *buf;
  100. size_t count;
  101. } spdif;
  102. static size_t dma_buf_frames;
  103. static TaskHandle_t output_i2s_task;
  104. static struct {
  105. int gpio, active;
  106. } amp_control = { CONFIG_AMP_GPIO, CONFIG_AMP_GPIO_LEVEL },
  107. mute_control = { CONFIG_MUTE_GPIO, CONFIG_MUTE_GPIO_LEVEL };
  108. DECLARE_ALL_MIN_MAX;
  109. static int _i2s_write_frames(frames_t out_frames, bool silence, s32_t gainL, s32_t gainR, u8_t flags,
  110. s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T **cross_ptr);
  111. static void output_thread_i2s(void *arg);
  112. static void i2s_stats(uint32_t now);
  113. static void spdif_convert(ISAMPLE_T *src, size_t frames, u32_t *dst, size_t *count);
  114. static void (*jack_handler_chain)(bool inserted);
  115. #define I2C_PORT 0
  116. /****************************************************************************************
  117. * AUDO packet handler
  118. */
  119. static bool handler(u8_t *data, int len){
  120. bool res = true;
  121. if (!strncmp((char*) data, "audo", 4)) {
  122. struct audo_packet *pkt = (struct audo_packet*) data;
  123. // 0 = headphone (internal speakers off), 1 = sub out,
  124. // 2 = always on (internal speakers on), 3 = always off
  125. if (jack_mutes_amp != (pkt->config == 0)) {
  126. jack_mutes_amp = pkt->config == 0;
  127. config_set_value(NVS_TYPE_STR, "jack_mutes_amp", jack_mutes_amp ? "y" : "n");
  128. if (jack_mutes_amp && jack_inserted_svc()) {
  129. adac->speaker(false);
  130. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, !amp_control.active);
  131. } else {
  132. adac->speaker(true);
  133. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, amp_control.active);
  134. }
  135. }
  136. LOG_INFO("got AUDO %02x", pkt->config);
  137. } else {
  138. res = false;
  139. }
  140. // chain protocol handlers (bitwise or is fine)
  141. if (*slimp_handler_chain) res |= (*slimp_handler_chain)(data, len);
  142. return res;
  143. }
  144. /****************************************************************************************
  145. * jack insertion handler
  146. */
  147. static void jack_handler(bool inserted) {
  148. // jack detection bounces a bit but that seems fine
  149. if (jack_mutes_amp) {
  150. LOG_INFO("switching amplifier %s", inserted ? "OFF" : "ON");
  151. adac->speaker(!inserted);
  152. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, inserted ? !amp_control.active : amp_control.active);
  153. }
  154. // activate headset
  155. adac->headset(inserted);
  156. // and chain if any
  157. if (jack_handler_chain) (jack_handler_chain)(inserted);
  158. }
  159. /****************************************************************************************
  160. * amp GPIO
  161. */
  162. #ifndef AMP_LOCKED
  163. static void set_amp_gpio(int gpio, char *value) {
  164. char *p;
  165. if (strcasestr(value, "amp")) {
  166. amp_control.gpio = gpio;
  167. if ((p = strchr(value, ':')) != NULL) amp_control.active = atoi(p + 1);
  168. }
  169. }
  170. #endif
  171. /****************************************************************************************
  172. * Get inactivity callback
  173. */
  174. static uint32_t i2s_idle_callback(void) {
  175. return output.state <= OUTPUT_STOPPED ? pdTICKS_TO_MS(xTaskGetTickCount()) - i2s_idle_since : 0;
  176. }
  177. /****************************************************************************************
  178. * Set pin from config string
  179. */
  180. static void set_i2s_pin(char *config, i2s_pin_config_t *pin_config) {
  181. pin_config->bck_io_num = pin_config->ws_io_num = pin_config->data_out_num = pin_config->data_in_num = -1;
  182. PARSE_PARAM(config, "bck", '=', pin_config->bck_io_num);
  183. PARSE_PARAM(config, "ws", '=', pin_config->ws_io_num);
  184. PARSE_PARAM(config, "do", '=', pin_config->data_out_num);
  185. #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0)
  186. pin_config->mck_io_num = strcasestr(config, "mck") ? 0 : -1;
  187. PARSE_PARAM(config, "mck", '=', pin_config->mck_io_num);
  188. #endif
  189. }
  190. /****************************************************************************************
  191. * Initialize the DAC output
  192. */
  193. void output_init_i2s(log_level level, char *device, unsigned output_buf_size, char *params, unsigned rates[], unsigned rate_delay, unsigned idle) {
  194. loglevel = level;
  195. int silent_do = -1;
  196. char *p;
  197. esp_err_t res;
  198. // chain SLIMP handlers
  199. slimp_handler_chain = slimp_handler;
  200. slimp_handler = handler;
  201. p = config_alloc_get_default(NVS_TYPE_STR, "jack_mutes_amp", "n", 0);
  202. jack_mutes_amp = (strcmp(p,"1") == 0 ||strcasecmp(p,"y") == 0);
  203. free(p);
  204. #if BYTES_PER_FRAME == 8
  205. output.format = S32_LE;
  206. #else
  207. output.format = S16_LE;
  208. #endif
  209. output.write_cb = &_i2s_write_frames;
  210. obuf = malloc(FRAME_BLOCK * BYTES_PER_FRAME);
  211. if (!obuf) {
  212. LOG_ERROR("Cannot allocate i2s buffer");
  213. return;
  214. }
  215. running = true;
  216. // get SPDIF configuration from NVS or compile
  217. char *spdif_config = config_alloc_get_str("spdif_config", CONFIG_SPDIF_CONFIG, "bck=" STR(CONFIG_SPDIF_BCK_IO)
  218. ",ws=" STR(CONFIG_SPDIF_WS_IO) ",do=" STR(CONFIG_SPDIF_DO_IO));
  219. char *dac_config = config_alloc_get_str("dac_config", CONFIG_DAC_CONFIG, "model=i2s,bck=" STR(CONFIG_I2S_BCK_IO)
  220. ",ws=" STR(CONFIG_I2S_WS_IO) ",do=" STR(CONFIG_I2S_DO_IO) ",mck=" STR(CONFIG_I2S_MCK_IO)
  221. ",sda=" STR(CONFIG_I2C_SDA) ",scl=" STR(CONFIG_I2C_SCL)
  222. ",mute=" STR(CONFIG_MUTE_GPIO));
  223. i2s_pin_config_t i2s_dac_pin, i2s_spdif_pin;
  224. set_i2s_pin(spdif_config, &i2s_spdif_pin);
  225. set_i2s_pin(dac_config, &i2s_dac_pin);
  226. if (i2s_dac_pin.data_out_num == -1 && i2s_spdif_pin.data_out_num == -1) {
  227. LOG_WARN("DAC and SPDIF not configured, NOT launching i2s thread");
  228. return;
  229. }
  230. // common I2S initialization
  231. i2s_config.mode = I2S_MODE_MASTER | I2S_MODE_TX;
  232. i2s_config.channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT;
  233. i2s_config.communication_format = I2S_COMM_FORMAT_STAND_I2S;
  234. // in case of overflow, do not replay old buffer
  235. i2s_config.tx_desc_auto_clear = true;
  236. #ifndef CONFIG_IDF_TARGET_ESP32S3
  237. i2s_config.use_apll = true;
  238. #endif
  239. i2s_config.intr_alloc_flags = ESP_INTR_FLAG_LEVEL1; //Interrupt level 1
  240. i2s_config.dma_buf_len = DMA_BUF_FRAMES;
  241. i2s_config.dma_buf_count = DMA_BUF_COUNT;
  242. if (strcasestr(device, "spdif")) {
  243. spdif.enabled = true;
  244. if ((spdif.buf = heap_caps_malloc(SPDIF_BLOCK * 16, MALLOC_CAP_INTERNAL)) == NULL) {
  245. LOG_ERROR("Cannot allocate SPDIF buffer");
  246. }
  247. if (i2s_spdif_pin.bck_io_num == -1 || i2s_spdif_pin.ws_io_num == -1 || i2s_spdif_pin.data_out_num == -1) {
  248. LOG_WARN("Cannot initialize I2S for SPDIF bck:%d ws:%d do:%d", i2s_spdif_pin.bck_io_num,
  249. i2s_spdif_pin.ws_io_num,
  250. i2s_spdif_pin.data_out_num);
  251. }
  252. i2s_config.sample_rate = output.current_sample_rate * 2;
  253. i2s_config.bits_per_sample = 32;
  254. // Normally counted in frames, but 16 sample are transformed into 32 bits in spdif
  255. i2s_config.dma_buf_len = DMA_BUF_FRAMES_SPDIF;
  256. i2s_config.dma_buf_count = DMA_BUF_COUNT_SPDIF;
  257. /*
  258. In DMA, we have room for (LEN * COUNT) frames of 32 bits samples that
  259. we push at sample_rate * 2. Each of these pseudo-frames is a single true
  260. audio frame. So the real depth in true frames is (LEN * COUNT / 2)
  261. */
  262. dma_buf_frames = i2s_config.dma_buf_len * i2s_config.dma_buf_count / 2;
  263. // silence DAC output if sharing the same ws/bck
  264. 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) silent_do = i2s_dac_pin.data_out_num;
  265. res = i2s_driver_install(CONFIG_I2S_NUM, &i2s_config, 0, NULL);
  266. res |= i2s_set_pin(CONFIG_I2S_NUM, &i2s_spdif_pin);
  267. 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);
  268. } else {
  269. i2s_config.sample_rate = output.current_sample_rate;
  270. i2s_config.bits_per_sample = BYTES_PER_FRAME * 8 / 2;
  271. // Counted in frames (but i2s allocates a buffer <= 4092 bytes)
  272. i2s_config.dma_buf_len = DMA_BUF_FRAMES;
  273. i2s_config.dma_buf_count = DMA_BUF_COUNT;
  274. dma_buf_frames = i2s_config.dma_buf_len * i2s_config.dma_buf_count;
  275. // silence SPDIF output
  276. silent_do = i2s_spdif_pin.data_out_num;
  277. char model[32] = "i2s";
  278. if ((p = strcasestr(dac_config, "model")) != NULL) sscanf(p, "%*[^=]=%31[^,]", model);
  279. if ((p = strcasestr(dac_config, "mute")) != NULL) {
  280. char mute[8] = "";
  281. sscanf(p, "%*[^=]=%7[^,]", mute);
  282. mute_control.gpio = atoi(mute);
  283. if ((p = strchr(mute, ':')) != NULL) mute_control.active = atoi(p + 1);
  284. }
  285. bool mck_required = false;
  286. for (int i = 0; adac == &dac_external && dac_set[i]; i++) if (strcasestr(dac_set[i]->model, model)) adac = dac_set[i];
  287. res = adac->init(dac_config, I2C_PORT, &i2s_config, &mck_required) ? ESP_OK : ESP_FAIL;
  288. #if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(4, 4, 0)
  289. int mck_io_num = strcasestr(dac_config, "mck") || mck_required ? 0 : -1;
  290. PARSE_PARAM(dac_config, "mck", '=', mck_io_num);
  291. LOG_INFO("configuring MCLK on GPIO %d", mck_io_num);
  292. if (mck_io_num == GPIO_NUM_0) {
  293. PIN_FUNC_SELECT(PERIPHS_IO_MUX_GPIO0_U, FUNC_GPIO0_CLK_OUT1);
  294. WRITE_PERI_REG(PIN_CTRL, CONFIG_I2S_NUM == I2S_NUM_0 ? 0xFFF0 : 0xFFFF);
  295. } else if (mck_io_num == GPIO_NUM_1) {
  296. PIN_FUNC_SELECT(PERIPHS_IO_MUX_U0TXD_U, FUNC_U0TXD_CLK_OUT3);
  297. WRITE_PERI_REG(PIN_CTRL, CONFIG_I2S_NUM == I2S_NUM_0 ? 0xF0F0 : 0xF0FF);
  298. } else if (mck_io_num == GPIO_NUM_2) {
  299. PIN_FUNC_SELECT(PERIPHS_IO_MUX_U0RXD_U, FUNC_U0RXD_CLK_OUT2);
  300. WRITE_PERI_REG(PIN_CTRL, CONFIG_I2S_NUM == I2S_NUM_0 ? 0xFF00 : 0xFF0F);
  301. } else {
  302. LOG_WARN("invalid MCK gpio %d", mck_io_num);
  303. }
  304. #else
  305. if (mck_required && i2s_dac_pin.mck_io_num == -1) i2s_dac_pin.mck_io_num = 0;
  306. LOG_INFO("configuring MCLK on GPIO %d", i2s_dac_pin.mck_io_num);
  307. #endif
  308. res |= i2s_driver_install(CONFIG_I2S_NUM, &i2s_config, 0, NULL);
  309. res |= i2s_set_pin(CONFIG_I2S_NUM, &i2s_dac_pin);
  310. if (res == ESP_OK && mute_control.gpio >= 0) {
  311. gpio_pad_select_gpio(mute_control.gpio);
  312. gpio_set_direction(mute_control.gpio, GPIO_MODE_OUTPUT);
  313. gpio_set_level(mute_control.gpio, mute_control.active);
  314. }
  315. LOG_INFO("%s DAC using I2S bck:%d, ws:%d, do:%d, mute:%d:%d (res:%d)", model, i2s_dac_pin.bck_io_num, i2s_dac_pin.ws_io_num,
  316. i2s_dac_pin.data_out_num, mute_control.gpio, mute_control.active, res);
  317. }
  318. free(dac_config);
  319. free(spdif_config);
  320. if (res != ESP_OK) {
  321. LOG_WARN("no DAC configured");
  322. return;
  323. }
  324. // turn off GPIO than is not used (SPDIF of DAC DO when shared)
  325. if (silent_do >= 0) {
  326. gpio_pad_select_gpio(silent_do);
  327. gpio_set_direction(silent_do, GPIO_MODE_OUTPUT);
  328. gpio_set_level(silent_do, 0);
  329. }
  330. LOG_INFO("Initializing I2S mode %s with rate: %d, bits per sample: %d, buffer frames: %d, number of buffers: %d ",
  331. spdif.enabled ? "S/PDIF" : "normal",
  332. i2s_config.sample_rate, i2s_config.bits_per_sample, i2s_config.dma_buf_len, i2s_config.dma_buf_count);
  333. i2s_stop(CONFIG_I2S_NUM);
  334. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  335. isI2SStarted=false;
  336. equalizer_set_samplerate(output.current_sample_rate);
  337. adac->power(ADAC_STANDBY);
  338. jack_handler_chain = jack_handler_svc;
  339. jack_handler_svc = jack_handler;
  340. #ifndef AMP_LOCKED
  341. parse_set_GPIO(set_amp_gpio);
  342. #endif
  343. if (amp_control.gpio != -1) {
  344. gpio_pad_select_gpio_x(amp_control.gpio);
  345. gpio_set_direction_x(amp_control.gpio, GPIO_MODE_OUTPUT);
  346. gpio_set_level_x(amp_control.gpio, !amp_control.active);
  347. LOG_INFO("setting amplifier GPIO %d (active:%d)", amp_control.gpio, amp_control.active);
  348. }
  349. if (jack_mutes_amp && jack_inserted_svc()) adac->speaker(false);
  350. else adac->speaker(true);
  351. adac->headset(jack_inserted_svc());
  352. // do we want stats
  353. p = config_alloc_get_default(NVS_TYPE_STR, "stats", "n", 0);
  354. if (p && (*p == '1' || *p == 'Y' || *p == 'y')) {
  355. pseudo_idle_chain = pseudo_idle_svc;
  356. pseudo_idle_svc = i2s_stats;
  357. }
  358. free(p);
  359. // register a callback for inactivity
  360. i2s_idle_since = pdTICKS_TO_MS(xTaskGetTickCount());
  361. services_sleep_setsleeper(i2s_idle_callback);
  362. // create task as a FreeRTOS task but uses stack in internal RAM
  363. {
  364. static DRAM_ATTR StaticTask_t xTaskBuffer __attribute__ ((aligned (4)));
  365. static EXT_RAM_ATTR StackType_t xStack[OUTPUT_THREAD_STACK_SIZE] __attribute__ ((aligned (4)));
  366. output_i2s_task = xTaskCreateStaticPinnedToCore( (TaskFunction_t) output_thread_i2s, "output_i2s", OUTPUT_THREAD_STACK_SIZE,
  367. NULL, CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT + 1, xStack, &xTaskBuffer, 0 );
  368. }
  369. }
  370. /****************************************************************************************
  371. * Terminate DAC output
  372. */
  373. void output_close_i2s(void) {
  374. LOCK;
  375. running = false;
  376. UNLOCK;
  377. while (!ended) vTaskDelay(20 / portTICK_PERIOD_MS);
  378. i2s_driver_uninstall(CONFIG_I2S_NUM);
  379. free(obuf);
  380. equalizer_close();
  381. adac->deinit();
  382. }
  383. /****************************************************************************************
  384. * change volume
  385. */
  386. bool output_volume_i2s(unsigned left, unsigned right) {
  387. if (mute_control.gpio >= 0) gpio_set_level(mute_control.gpio, (left | right) ? !mute_control.active : mute_control.active);
  388. return adac->volume(left, right);
  389. }
  390. /****************************************************************************************
  391. * Write frames to the output buffer
  392. */
  393. static int _i2s_write_frames(frames_t out_frames, bool silence, s32_t gainL, s32_t gainR, u8_t flags,
  394. s32_t cross_gain_in, s32_t cross_gain_out, ISAMPLE_T **cross_ptr) {
  395. if (!silence) {
  396. if (output.fade == FADE_ACTIVE && output.fade_dir == FADE_CROSS && *cross_ptr) {
  397. _apply_cross(outputbuf, out_frames, cross_gain_in, cross_gain_out, cross_ptr);
  398. }
  399. _apply_gain(outputbuf, out_frames, gainL, gainR, flags);
  400. memcpy(obuf + oframes * BYTES_PER_FRAME, outputbuf->readp, out_frames * BYTES_PER_FRAME);
  401. } else {
  402. memcpy(obuf + oframes * BYTES_PER_FRAME, silencebuf, out_frames * BYTES_PER_FRAME);
  403. }
  404. // don't update visu if we don't have enough data in buffer
  405. if (silence || output.external || _buf_used(outputbuf) > outputbuf->size >> 2 ) {
  406. output_visu_export(obuf + oframes * BYTES_PER_FRAME, out_frames, output.current_sample_rate, silence, (gainL + gainR) / 2);
  407. }
  408. oframes += out_frames;
  409. return out_frames;
  410. }
  411. /****************************************************************************************
  412. * Main output thread
  413. */
  414. static void output_thread_i2s(void *arg) {
  415. size_t bytes;
  416. frames_t iframes = FRAME_BLOCK;
  417. uint32_t timer_start = 0;
  418. int discard = 0;
  419. uint32_t fullness = gettime_ms();
  420. bool synced;
  421. output_state state = OUTPUT_OFF - 1;
  422. while (running) {
  423. TIME_MEASUREMENT_START(timer_start);
  424. LOCK;
  425. // manage led display & analogue
  426. if (state != output.state) {
  427. LOG_INFO("Output state is %d", output.state);
  428. if (output.state == OUTPUT_OFF) {
  429. led_blink(LED_GREEN, 100, 2500);
  430. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, !amp_control.active);
  431. LOG_INFO("switching off amp GPIO %d", amp_control.gpio);
  432. } else if (output.state == OUTPUT_STOPPED) {
  433. i2s_idle_since = pdTICKS_TO_MS(xTaskGetTickCount());
  434. adac->speaker(false);
  435. led_blink(LED_GREEN, 200, 1000);
  436. } else if (output.state == OUTPUT_RUNNING) {
  437. if (!jack_mutes_amp || !jack_inserted_svc()) {
  438. if (amp_control.gpio != -1) gpio_set_level_x(amp_control.gpio, amp_control.active);
  439. adac->speaker(true);
  440. }
  441. led_on(LED_GREEN);
  442. }
  443. }
  444. state = output.state;
  445. if (output.state == OUTPUT_OFF) {
  446. UNLOCK;
  447. if (isI2SStarted) {
  448. isI2SStarted = false;
  449. i2s_stop(CONFIG_I2S_NUM);
  450. adac->power(ADAC_STANDBY);
  451. spdif.count = 0;
  452. }
  453. usleep(100000);
  454. continue;
  455. } else if (output.state == OUTPUT_STOPPED) {
  456. synced = false;
  457. }
  458. oframes = 0;
  459. output.updated = gettime_ms();
  460. output.frames_played_dmp = output.frames_played;
  461. // try to estimate how much we have consumed from the DMA buffer (calculation is incorrect at the very beginning ...)
  462. output.device_frames = dma_buf_frames - ((output.updated - fullness) * output.current_sample_rate) / 1000;
  463. // we'll try to produce iframes if we have any, but we might return less if outpuf does not have enough
  464. _output_frames( iframes );
  465. // oframes must be a global updated by the write callback
  466. output.frames_in_process = oframes;
  467. SET_MIN_MAX_SIZED(oframes,rec,iframes);
  468. SET_MIN_MAX_SIZED(_buf_used(outputbuf),o,outputbuf->size);
  469. SET_MIN_MAX_SIZED(_buf_used(streambuf),s,streambuf->size);
  470. SET_MIN_MAX( TIME_MEASUREMENT_GET(timer_start),buffering);
  471. /* must skip first whatever is in the pipe (but not when resuming).
  472. This test is incorrect when we pause a track that has just started,
  473. but this is higly unlikely and I don't have a better one for now */
  474. if (output.state == OUTPUT_START_AT) {
  475. discard = output.frames_played_dmp ? 0 : output.device_frames;
  476. synced = true;
  477. } else if (discard) {
  478. discard -= min(oframes, discard);
  479. iframes = discard ? min(FRAME_BLOCK, discard) : FRAME_BLOCK;
  480. UNLOCK;
  481. continue;
  482. }
  483. UNLOCK;
  484. // now send all the data
  485. TIME_MEASUREMENT_START(timer_start);
  486. if (!isI2SStarted ) {
  487. isI2SStarted = true;
  488. LOG_INFO("Restarting I2S.");
  489. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  490. i2s_start(CONFIG_I2S_NUM);
  491. adac->power(ADAC_ON);
  492. }
  493. // this does not work well as set_sample_rates resets the fifos (and it's too early)
  494. if (i2s_config.sample_rate != output.current_sample_rate) {
  495. LOG_INFO("changing sampling rate %u to %u", i2s_config.sample_rate, output.current_sample_rate);
  496. if (synced) {
  497. /*
  498. // can sleep for a buffer_queue - 1 and then eat a buffer (discard) if we are synced
  499. usleep(((DMA_BUF_COUNT - 1) * DMA_BUF_LEN * BYTES_PER_FRAME * 1000) / 44100 * 1000);
  500. discard = DMA_BUF_COUNT * DMA_BUF_LEN * BYTES_PER_FRAME;
  501. */
  502. }
  503. i2s_config.sample_rate = output.current_sample_rate;
  504. i2s_set_sample_rates(CONFIG_I2S_NUM, spdif.enabled ? i2s_config.sample_rate * 2 : i2s_config.sample_rate);
  505. i2s_zero_dma_buffer(CONFIG_I2S_NUM);
  506. equalizer_set_samplerate(output.current_sample_rate);
  507. }
  508. // run equalizer
  509. equalizer_process(obuf, oframes * BYTES_PER_FRAME);
  510. // we assume that here we have been able to entirely fill the DMA buffers
  511. if (spdif.enabled) {
  512. size_t obytes, count = 0;
  513. bytes = 0;
  514. // need IRAM for speed but can't allocate a FRAME_BLOCK * 16, so process by smaller chunks
  515. while (count < oframes) {
  516. size_t chunk = min(SPDIF_BLOCK, oframes - count);
  517. spdif_convert((ISAMPLE_T*) obuf + count * 2, chunk, (u32_t*) spdif.buf, &spdif.count);
  518. i2s_write(CONFIG_I2S_NUM, spdif.buf, chunk * 16, &obytes, portMAX_DELAY);
  519. bytes += obytes / (16 / BYTES_PER_FRAME);
  520. count += chunk;
  521. }
  522. #if BYTES_PER_FRAME == 4
  523. } else if (i2s_config.bits_per_sample == 32) {
  524. i2s_write_expand(CONFIG_I2S_NUM, obuf, oframes * BYTES_PER_FRAME, 16, 32, &bytes, portMAX_DELAY);
  525. #endif
  526. } else {
  527. i2s_write(CONFIG_I2S_NUM, obuf, oframes * BYTES_PER_FRAME, &bytes, portMAX_DELAY);
  528. }
  529. fullness = gettime_ms();
  530. if (bytes != oframes * BYTES_PER_FRAME) {
  531. LOG_WARN("I2S DMA Overflow! available bytes: %d, I2S wrote %d bytes", oframes * BYTES_PER_FRAME, bytes);
  532. }
  533. SET_MIN_MAX( TIME_MEASUREMENT_GET(timer_start),i2s_time);
  534. }
  535. if (spdif.enabled) free(spdif.buf);
  536. ended = true;
  537. vTaskDelete(NULL);
  538. }
  539. /****************************************************************************************
  540. * stats output callback
  541. */
  542. static void i2s_stats(uint32_t now) {
  543. static uint32_t last;
  544. // first chain to next handler
  545. if (pseudo_idle_chain) pseudo_idle_chain(now);
  546. // then see if we need to act
  547. if (output.state <= OUTPUT_STOPPED || now < last + STATS_PERIOD_MS) return;
  548. last = now;
  549. LOG_INFO( "Output State: %d, current sample rate: %d, bytes per frame: %d", output.state, output.current_sample_rate, BYTES_PER_FRAME);
  550. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD1);
  551. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD2);
  552. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD3);
  553. LOG_INFO( LINE_MIN_MAX_FORMAT_HEAD4);
  554. LOG_INFO(LINE_MIN_MAX_FORMAT_STREAM, LINE_MIN_MAX_STREAM("stream",s));
  555. LOG_INFO(LINE_MIN_MAX_FORMAT,LINE_MIN_MAX("output",o));
  556. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  557. LOG_INFO(LINE_MIN_MAX_FORMAT,LINE_MIN_MAX("received",rec));
  558. LOG_INFO(LINE_MIN_MAX_FORMAT_FOOTER);
  559. LOG_INFO("");
  560. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  561. LOG_INFO(" max (us) | min (us) | avg(us) | count | ");
  562. LOG_INFO(" ----------+----------+-----------+-----------+ ");
  563. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT,LINE_MIN_MAX_DURATION("Buffering(us)",buffering));
  564. LOG_INFO(LINE_MIN_MAX_DURATION_FORMAT,LINE_MIN_MAX_DURATION("i2s tfr(us)",i2s_time));
  565. LOG_INFO(" ----------+----------+-----------+-----------+");
  566. RESET_ALL_MIN_MAX;
  567. }
  568. /****************************************************************************************
  569. * SPDIF support
  570. */
  571. #define PREAMBLE_B (0xE8) //11101000
  572. #define PREAMBLE_M (0xE2) //11100010
  573. #define PREAMBLE_W (0xE4) //11100100
  574. #define VUCP ((0xCC) << 24)
  575. #define VUCP_MUTE ((0xD4) << 24) // To mute PCM, set VUCP = invalid.
  576. static const u16_t spdif_bmclookup[256] = { //biphase mark encoded values (least significant bit first)
  577. 0xcccc, 0x4ccc, 0x2ccc, 0xaccc, 0x34cc, 0xb4cc, 0xd4cc, 0x54cc,
  578. 0x32cc, 0xb2cc, 0xd2cc, 0x52cc, 0xcacc, 0x4acc, 0x2acc, 0xaacc,
  579. 0x334c, 0xb34c, 0xd34c, 0x534c, 0xcb4c, 0x4b4c, 0x2b4c, 0xab4c,
  580. 0xcd4c, 0x4d4c, 0x2d4c, 0xad4c, 0x354c, 0xb54c, 0xd54c, 0x554c,
  581. 0x332c, 0xb32c, 0xd32c, 0x532c, 0xcb2c, 0x4b2c, 0x2b2c, 0xab2c,
  582. 0xcd2c, 0x4d2c, 0x2d2c, 0xad2c, 0x352c, 0xb52c, 0xd52c, 0x552c,
  583. 0xccac, 0x4cac, 0x2cac, 0xacac, 0x34ac, 0xb4ac, 0xd4ac, 0x54ac,
  584. 0x32ac, 0xb2ac, 0xd2ac, 0x52ac, 0xcaac, 0x4aac, 0x2aac, 0xaaac,
  585. 0x3334, 0xb334, 0xd334, 0x5334, 0xcb34, 0x4b34, 0x2b34, 0xab34,
  586. 0xcd34, 0x4d34, 0x2d34, 0xad34, 0x3534, 0xb534, 0xd534, 0x5534,
  587. 0xccb4, 0x4cb4, 0x2cb4, 0xacb4, 0x34b4, 0xb4b4, 0xd4b4, 0x54b4,
  588. 0x32b4, 0xb2b4, 0xd2b4, 0x52b4, 0xcab4, 0x4ab4, 0x2ab4, 0xaab4,
  589. 0xccd4, 0x4cd4, 0x2cd4, 0xacd4, 0x34d4, 0xb4d4, 0xd4d4, 0x54d4,
  590. 0x32d4, 0xb2d4, 0xd2d4, 0x52d4, 0xcad4, 0x4ad4, 0x2ad4, 0xaad4,
  591. 0x3354, 0xb354, 0xd354, 0x5354, 0xcb54, 0x4b54, 0x2b54, 0xab54,
  592. 0xcd54, 0x4d54, 0x2d54, 0xad54, 0x3554, 0xb554, 0xd554, 0x5554,
  593. 0x3332, 0xb332, 0xd332, 0x5332, 0xcb32, 0x4b32, 0x2b32, 0xab32,
  594. 0xcd32, 0x4d32, 0x2d32, 0xad32, 0x3532, 0xb532, 0xd532, 0x5532,
  595. 0xccb2, 0x4cb2, 0x2cb2, 0xacb2, 0x34b2, 0xb4b2, 0xd4b2, 0x54b2,
  596. 0x32b2, 0xb2b2, 0xd2b2, 0x52b2, 0xcab2, 0x4ab2, 0x2ab2, 0xaab2,
  597. 0xccd2, 0x4cd2, 0x2cd2, 0xacd2, 0x34d2, 0xb4d2, 0xd4d2, 0x54d2,
  598. 0x32d2, 0xb2d2, 0xd2d2, 0x52d2, 0xcad2, 0x4ad2, 0x2ad2, 0xaad2,
  599. 0x3352, 0xb352, 0xd352, 0x5352, 0xcb52, 0x4b52, 0x2b52, 0xab52,
  600. 0xcd52, 0x4d52, 0x2d52, 0xad52, 0x3552, 0xb552, 0xd552, 0x5552,
  601. 0xccca, 0x4cca, 0x2cca, 0xacca, 0x34ca, 0xb4ca, 0xd4ca, 0x54ca,
  602. 0x32ca, 0xb2ca, 0xd2ca, 0x52ca, 0xcaca, 0x4aca, 0x2aca, 0xaaca,
  603. 0x334a, 0xb34a, 0xd34a, 0x534a, 0xcb4a, 0x4b4a, 0x2b4a, 0xab4a,
  604. 0xcd4a, 0x4d4a, 0x2d4a, 0xad4a, 0x354a, 0xb54a, 0xd54a, 0x554a,
  605. 0x332a, 0xb32a, 0xd32a, 0x532a, 0xcb2a, 0x4b2a, 0x2b2a, 0xab2a,
  606. 0xcd2a, 0x4d2a, 0x2d2a, 0xad2a, 0x352a, 0xb52a, 0xd52a, 0x552a,
  607. 0xccaa, 0x4caa, 0x2caa, 0xacaa, 0x34aa, 0xb4aa, 0xd4aa, 0x54aa,
  608. 0x32aa, 0xb2aa, 0xd2aa, 0x52aa, 0xcaaa, 0x4aaa, 0x2aaa, 0xaaaa
  609. };
  610. /*
  611. SPDIF is supposed to be (before BMC encoding, from LSB to MSB)
  612. 0.... 1... 191.. 0
  613. BLFMRF MLFWRF MLFWRF BLFMRF (B,M,W=preamble-4, L/R=left/Right-24, F=Flags-4)
  614. each xLF pattern is 32 bits
  615. PPPP AAAA SSSS SSSS SSSS SSSS SSSS VUCP (P=preamble, A=auxiliary, S=sample-20bits, V=valid, U=user data, C=channel status, P=parity)
  616. After BMC encoding, each bit becomes 2 hence this becomes a 64 bits word. The parity
  617. is fixed by changing AAAA bits so that VUPC does not change. Then then trick is to
  618. start not with a PPPP sequence but with an VUCP sequence to that the 16 bits samples
  619. are aligned with a BMC word boundary. Input buffer is left first => LRLR...
  620. The I2S interface must output first the B/M/W preamble which means that second
  621. 32 bits words must be first and so must be marked right channel.
  622. */
  623. static void IRAM_ATTR spdif_convert(ISAMPLE_T *src, size_t frames, u32_t *dst, size_t *count) {
  624. register u16_t hi, lo, aux;
  625. size_t cnt = *count;
  626. while (frames--) {
  627. // start with left channel
  628. #if BYTES_PER_FRAME == 4
  629. hi = spdif_bmclookup[(u8_t)(*src >> 8)];
  630. lo = spdif_bmclookup[(u8_t) *src++];
  631. // invert if last preceeding bit is 1
  632. lo ^= ~((s16_t)hi) >> 16;
  633. // first 16 bits
  634. aux = 0xb333 ^ (((u32_t)((s16_t)lo)) >> 17);
  635. #else
  636. hi = spdif_bmclookup[(u8_t)(*src >> 24)];
  637. lo = spdif_bmclookup[(u8_t)(*src >> 16)];
  638. // invert if last preceeding bit is 1
  639. lo ^= ~((s16_t)hi) >> 16;
  640. // first 16 bits
  641. // we use 20 bits samples as we need to force parity
  642. aux = spdif_bmclookup[(u8_t)(*src++ >> 12)];
  643. aux = (u8_t) (aux ^ (~((s16_t)lo) >> 16));
  644. aux |= (0xb3 ^ (((u16_t)((s8_t)aux)) >> 9)) << 8;
  645. #endif
  646. // set special preamble every 192 iteration
  647. if (++cnt > 191) {
  648. *dst++ = VUCP | (PREAMBLE_B << 16 ) | aux; //special preamble for one of 192 frames
  649. cnt = 0;
  650. } else {
  651. *dst++ = VUCP | (PREAMBLE_M << 16) | aux;
  652. }
  653. // now write sample's 16 low bits
  654. *dst++ = ((u32_t)lo << 16) | hi;
  655. // then do right channel, no need to check PREAMBLE_B
  656. #if BYTES_PER_FRAME == 4
  657. hi = spdif_bmclookup[(u8_t)(*src >> 8)];
  658. lo = spdif_bmclookup[(u8_t) *src++];
  659. lo ^= ~((s16_t)hi) >> 16;
  660. aux = 0xb333 ^ (((u32_t)((s16_t)lo)) >> 17);
  661. #else
  662. hi = spdif_bmclookup[(u8_t)(*src >> 24)];
  663. lo = spdif_bmclookup[(u8_t)(*src >> 16)];
  664. lo ^= ~((s16_t)hi) >> 16;
  665. aux = spdif_bmclookup[(u8_t)(*src++ >> 12)];
  666. aux = (u8_t) (aux ^ (~((s16_t)lo) >> 16));
  667. aux |= (0xb3 ^ (((u16_t)((s8_t)aux)) >> 9)) << 8;
  668. #endif
  669. *dst++ = VUCP | (PREAMBLE_W << 16) | aux;
  670. *dst++ = ((u32_t)lo << 16) | hi;
  671. }
  672. *count = cnt;
  673. }