accessors.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #define LOG_LOCAL_LEVEL ESP_LOG_DEBUG
  8. #include <stdio.h>
  9. #include "esp_log.h"
  10. #include "driver/gpio.h"
  11. #include "driver/i2c.h"
  12. #include "driver/spi_master.h"
  13. // #include "Configurator.h"
  14. #pragma message("fixme: look for TODO below")
  15. #include "accessors.h"
  16. #include "globdefs.h"
  17. #include "display.h"
  18. #include "cJSON.h"
  19. #include "driver/gpio.h"
  20. #include "stdbool.h"
  21. #include "driver/adc.h"
  22. #include "esp_attr.h"
  23. #include "soc/spi_periph.h"
  24. #include "esp_err.h"
  25. #include "soc/rtc.h"
  26. #include "sdkconfig.h"
  27. #include "soc/efuse_periph.h"
  28. #include "driver/gpio.h"
  29. #include "driver/spi_common_internal.h"
  30. #if CONFIG_IDF_TARGET_ESP32
  31. #include "esp32/rom/efuse.h"
  32. #endif
  33. #include "tools.h"
  34. #include "monitor.h"
  35. #include "messaging.h"
  36. #include "network_ethernet.h"
  37. static const char *TAG = "services";
  38. const char *i2c_name_type="I2C";
  39. const char *spi_name_type="SPI";
  40. cJSON * gpio_list=NULL;
  41. #define min(a,b) (((a) < (b)) ? (a) : (b))
  42. #ifndef QUOTE
  43. #define QUOTE(name) #name
  44. #endif
  45. #ifndef STR
  46. #define STR(macro) QUOTE(macro)
  47. #endif
  48. extern cJSON * get_gpio_list(bool refresh);
  49. bool are_statistics_enabled(){
  50. #if defined(CONFIG_FREERTOS_USE_TRACE_FACILITY) && defined (CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS)
  51. return true;
  52. #endif
  53. return false;
  54. }
  55. /****************************************************************************************
  56. *
  57. */
  58. // static char * config_spdif_get_string(){
  59. // // return config_alloc_get_str("spdif_config", CONFIG_SPDIF_CONFIG, "bck=" STR(CONFIG_SPDIF_BCK_IO)
  60. // // ",ws=" STR(CONFIG_SPDIF_WS_IO) ",do=" STR(CONFIG_SPDIF_DO_IO));
  61. // config_alloc_get_str("spdif_config", CONFIG_SPDIF_CONFIG, "bck=" STR(CONFIG_SPDIF_BCK_IO)
  62. // ",ws=" STR(CONFIG_SPDIF_WS_IO) ",do=" STR(CONFIG_SPDIF_DO_IO));
  63. // }
  64. /****************************************************************************************
  65. *
  66. */
  67. // static char * get_dac_config_string(){
  68. // return config_alloc_get_str("dac_config", CONFIG_DAC_CONFIG, "model=i2s,bck=" STR(CONFIG_I2S_BCK_IO)
  69. // ",ws=" STR(CONFIG_I2S_WS_IO) ",do=" STR(CONFIG_I2S_DO_IO)
  70. // ",sda=" STR(CONFIG_I2C_SDA) ",scl=" STR(CONFIG_I2C_SCL)
  71. // ",mute=" STR(CONFIG_MUTE_GPIO));
  72. // }
  73. /****************************************************************************************
  74. *
  75. */
  76. bool is_dac_config_locked(){
  77. #if ( defined CONFIG_DAC_CONFIG )
  78. if(strlen(CONFIG_DAC_CONFIG) > 0){
  79. return true;
  80. }
  81. #endif
  82. #if defined(CONFIG_I2S_BCK_IO) && CONFIG_I2S_BCK_IO>0
  83. return true;
  84. #endif
  85. return false;
  86. }
  87. /****************************************************************************************
  88. *
  89. */
  90. const i2c_config_t * config_i2c_get(int * i2c_port) {
  91. sys_I2CBus * bus = NULL;
  92. static i2c_config_t i2c = {
  93. .mode = I2C_MODE_MASTER,
  94. .sda_io_num = -1,
  95. .sda_pullup_en = GPIO_PULLUP_ENABLE,
  96. .scl_io_num = -1,
  97. .scl_pullup_en = GPIO_PULLUP_ENABLE,
  98. .master.clk_speed = 0,
  99. };
  100. if(SYS_I2CBUS(bus)){
  101. if(bus->has_scl){
  102. i2c.scl_io_num = bus->scl.pin;
  103. }
  104. else {
  105. ESP_LOGE(TAG,"%s missing for i2c","SCL");
  106. }
  107. if(bus->has_sda){
  108. i2c.sda_io_num= bus->sda.pin;
  109. }
  110. else {
  111. ESP_LOGE(TAG,"%s missing for i2c","SDA");
  112. }
  113. if(bus->speed>0){
  114. i2c.master.clk_speed = bus->speed;
  115. }
  116. if(bus->port != sys_I2CPortEnum_UNSPECIFIED_PORT){
  117. i2c_system_port = bus->port - sys_I2CPortEnum_I2CPort0;
  118. }
  119. // TODO: untangle i2c system port handling
  120. if(i2c_port) {
  121. *i2c_port=i2c_system_port;
  122. }
  123. }
  124. return &i2c;
  125. }
  126. void config_set_gpio(int * pin, sys_GPIO * gpio,bool has_value, const char * name, bool mandatory){
  127. if(has_value){
  128. ESP_LOGD(TAG, "Setting pin %d as %s", gpio->pin, name);
  129. if(pin) *pin= gpio->pin;
  130. }
  131. else if(mandatory) {
  132. ESP_LOGE(TAG,"Pin %s has no value",name);
  133. }
  134. else {
  135. ESP_LOGD(TAG,"Pin %s has no value",name);
  136. }
  137. }
  138. /****************************************************************************************
  139. *
  140. */
  141. const spi_bus_config_t * config_spi_get(spi_host_device_t * spi_host) {
  142. // don't memset all to 0xff as it's more than just GPIO
  143. static spi_bus_config_t spi = {
  144. .mosi_io_num = -1,
  145. .sclk_io_num = -1,
  146. .miso_io_num = -1,
  147. .quadwp_io_num = -1,
  148. .quadhd_io_num = -1
  149. };
  150. if(platform->has_dev && platform->dev.has_spi){
  151. ESP_LOGI(TAG,"SPI Configuration found");
  152. ASSIGN_GPIO(spi.mosi_io_num,platform->dev.spi,mosi,true);
  153. ASSIGN_GPIO(spi.miso_io_num,platform->dev.spi,miso,false);
  154. ASSIGN_GPIO(spi.sclk_io_num,platform->dev.spi,clk,true);
  155. ASSIGN_GPIO(spi_system_dc_gpio,platform->dev.spi,dc,true);
  156. // only VSPI (1) can be used as Flash and PSRAM run at 80MHz
  157. if(platform->dev.spi.host!=sys_HostEnum_UNSPECIFIED_HOST){
  158. spi_system_host = platform->dev.spi.host;
  159. }
  160. }
  161. else {
  162. ESP_LOGI(TAG,"SPI not configured");
  163. }
  164. if(spi_host) *spi_host = spi_system_host;
  165. return &spi;
  166. }