2
0

dac_external.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. #include <freertos/FreeRTOS.h>
  12. #include <freertos/task.h>
  13. #include <driver/i2s.h>
  14. #include "driver/i2c.h"
  15. #include "esp_log.h"
  16. #include "gpio_exp.h"
  17. #include "cJSON.h"
  18. #include "string.h"
  19. // #include "Configurator.h"
  20. #pragma message("fixme: look for TODO below")
  21. #include "adac.h"
  22. static const char TAG[] = "DAC external";
  23. static void speaker(bool active);
  24. static void headset(bool active);
  25. static bool volume(unsigned left, unsigned right) { return false; }
  26. static void power(adac_power_e mode);
  27. static bool init(char *config, int i2c_port_num, i2s_config_t *i2s_config, bool *mck);
  28. static bool i2c_json_execute(char *set);
  29. const struct adac_s dac_external = { sys_DACModelEnum_I2S, init, adac_deinit, power, speaker, headset, volume };
  30. static cJSON *i2c_json;
  31. static int i2c_addr;
  32. static const struct {
  33. char *model;
  34. bool mclk;
  35. char *controlset;
  36. } codecs[] = {
  37. { "es8388", true,
  38. "{\"init\":[ \
  39. {\"reg\":8,\"val\":0}, {\"reg\":2,\"val\":243}, {\"reg\":43,\"val\":128}, {\"reg\":0,\"val\":5}, \
  40. {\"reg\":1,\"val\":64}, {\"reg\":4,\"val\":60},"
  41. #if BYTES_PER_FRAME == 8
  42. "{\"reg\":23,\"val\":32},"
  43. #else
  44. "{\"reg\":23,\"val\":24},"
  45. #endif
  46. "{\"reg\":24,\"val\":2}, \
  47. {\"reg\":26,\"val\":0}, {\"reg\":27,\"val\":0}, {\"reg\":25,\"val\":50}, {\"reg\":38,\"val\":0}, \
  48. {\"reg\":39,\"val\":184}, {\"reg\":42,\"val\":184}, {\"reg\":46,\"val\":30}, {\"reg\":47,\"val\":30}, \
  49. {\"reg\":48,\"val\":30}, {\"reg\":49,\"val\":30}, {\"reg\":2,\"val\":170}]}" },
  50. { NULL, false, NULL }
  51. };
  52. /****************************************************************************************
  53. * init
  54. */
  55. static bool init(char *config, int i2c_port_num, i2s_config_t *i2s_config, bool *mck) {
  56. char *p=NULL;
  57. void * dummy = &codecs;
  58. // i2c_addr = adac_init(config, i2c_port_num);
  59. // if (!i2c_addr) return true;
  60. // ESP_LOGI(TAG, "DAC on I2C @%d", i2c_addr);
  61. // p = config_alloc_get_str("dac_controlset", CONFIG_DAC_CONTROLSET, NULL);
  62. // if ((!p || !*p) && (p = strcasestr(config, "model")) != NULL) {
  63. // char model[32] = "";
  64. // int i;
  65. // sscanf(p, "%*[^=]=%31[^,]", model);
  66. // for (i = 0; *model && ((p = codecs[i].controlset) != NULL) && strcasecmp(codecs[i].model, model); i++);
  67. // if (p) *mck = codecs[i].mclk;
  68. // }
  69. // i2c_json = cJSON_Parse(p);
  70. // if (!i2c_json) {
  71. // ESP_LOGW(TAG, "no i2c controlset found");
  72. // return true;
  73. // }
  74. // if (!i2c_json_execute("init")) {
  75. // ESP_LOGE(TAG, "could not intialize DAC");
  76. // return false;
  77. // }
  78. // TODO: Add support for the commented code
  79. return true;
  80. }
  81. /****************************************************************************************
  82. * power
  83. */
  84. static void power(adac_power_e mode) {
  85. if (mode == ADAC_STANDBY || mode == ADAC_OFF) i2c_json_execute("poweroff");
  86. else i2c_json_execute("poweron");
  87. }
  88. /****************************************************************************************
  89. * speaker
  90. */
  91. static void speaker(bool active) {
  92. if (active) i2c_json_execute("speakeron");
  93. else i2c_json_execute("speakeroff");
  94. }
  95. /****************************************************************************************
  96. * headset
  97. */
  98. static void headset(bool active) {
  99. if (active) i2c_json_execute("headseton");
  100. else i2c_json_execute("headsetoff");
  101. }
  102. /****************************************************************************************
  103. *
  104. */
  105. bool i2c_json_execute(char *set) {
  106. cJSON *json_set = cJSON_GetObjectItemCaseSensitive(i2c_json, set);
  107. cJSON *item;
  108. if (!json_set) return true;
  109. cJSON_ArrayForEach(item, json_set) {
  110. cJSON *action;
  111. // is this a delay
  112. if ((action = cJSON_GetObjectItemCaseSensitive(item, "delay")) != NULL) {
  113. vTaskDelay(pdMS_TO_TICKS(action->valueint));
  114. ESP_LOGI(TAG, "DAC waiting %d ms", action->valueint);
  115. continue;
  116. }
  117. // is this a gpio toggle
  118. if ((action = cJSON_GetObjectItemCaseSensitive(item, "gpio")) != NULL) {
  119. cJSON *level = cJSON_GetObjectItemCaseSensitive(item, "level");
  120. ESP_LOGI(TAG, "set GPIO %d at %d", action->valueint, level->valueint);
  121. gpio_set_direction_x(action->valueint, GPIO_MODE_OUTPUT);
  122. gpio_set_level_x(action->valueint, level->valueint);
  123. continue;
  124. }
  125. action= cJSON_GetObjectItemCaseSensitive(item, "reg");
  126. cJSON *val = cJSON_GetObjectItemCaseSensitive(item, "val");
  127. // this is gpio register setting or crap
  128. if (cJSON_IsArray(val)) {
  129. cJSON *value;
  130. uint8_t *data = malloc(cJSON_GetArraySize(val));
  131. int count = 0;
  132. if (!data) continue;
  133. cJSON_ArrayForEach(value, val) {
  134. data[count++] = value->valueint;
  135. }
  136. adac_write(i2c_addr, action->valueint, data, count);
  137. free(data);
  138. } else {
  139. cJSON *mode = cJSON_GetObjectItemCaseSensitive(item, "mode");
  140. if (!action || !val) continue;
  141. if (!mode) {
  142. adac_write_byte(i2c_addr, action->valueint, val->valueint);
  143. } else if (!strcasecmp(mode->valuestring, "or")) {
  144. uint8_t data = adac_read_byte(i2c_addr, action->valueint);
  145. data |= (uint8_t) val->valueint;
  146. adac_write_byte(i2c_addr, action->valueint, data);
  147. } else if (!strcasecmp(mode->valuestring, "and")) {
  148. uint8_t data = adac_read_byte(i2c_addr, action->valueint);
  149. data &= (uint8_t) val->valueint;
  150. adac_write_byte(i2c_addr, action->valueint, data);
  151. }
  152. }
  153. }
  154. return true;
  155. }