1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204 |
- /*
- This example code is in the Public Domain (or CC0 licensed, at your option.)
- Unless required by applicable law or agreed to in writing, this
- software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- CONDITIONS OF ANY KIND, either express or implied.
- */
- #include <stdio.h>
- #include "esp_log.h"
- #include "driver/gpio.h"
- #include "driver/i2c.h"
- #include "driver/spi_master.h"
- #include "platform_config.h"
- #include "accessors.h"
- #include "globdefs.h"
- #include "display.h"
- #include "cJSON.h"
- #include "driver/gpio.h"
- #include "stdbool.h"
- #include "driver/adc.h"
- #include "esp_attr.h"
- #include "soc/spi_periph.h"
- #include "esp_err.h"
- #include "soc/rtc.h"
- #include "sdkconfig.h"
- #include "soc/efuse_periph.h"
- #include "driver/gpio.h"
- #include "driver/spi_common_internal.h"
- #if CONFIG_IDF_TARGET_ESP32
- #include "esp32/rom/efuse.h"
- #endif
- #include "tools.h"
- #include "monitor.h"
- #include "messaging.h"
- #include "network_ethernet.h"
- static const char *TAG = "services";
- const char *i2c_name_type="I2C";
- const char *spi_name_type="SPI";
- cJSON * gpio_list=NULL;
- #define min(a,b) (((a) < (b)) ? (a) : (b))
- #ifndef QUOTE
- #define QUOTE(name) #name
- #endif
- #ifndef STR
- #define STR(macro) QUOTE(macro)
- #endif
- bool are_statistics_enabled(){
- #if defined(CONFIG_FREERTOS_USE_TRACE_FACILITY) && defined (CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS)
- return true;
- #endif
- return false;
- }
- /****************************************************************************************
- *
- */
- static char * config_spdif_get_string(){
- return config_alloc_get_str("spdif_config", CONFIG_SPDIF_CONFIG, "bck=" STR(CONFIG_SPDIF_BCK_IO)
- ",ws=" STR(CONFIG_SPDIF_WS_IO) ",do=" STR(CONFIG_SPDIF_DO_IO));
- }
- /****************************************************************************************
- *
- */
- static char * get_dac_config_string(){
- return config_alloc_get_str("dac_config", CONFIG_DAC_CONFIG, "model=i2s,bck=" STR(CONFIG_I2S_BCK_IO)
- ",ws=" STR(CONFIG_I2S_WS_IO) ",do=" STR(CONFIG_I2S_DO_IO)
- ",sda=" STR(CONFIG_I2C_SDA) ",scl=" STR(CONFIG_I2C_SCL)
- ",mute=" STR(CONFIG_MUTE_GPIO));
- }
- /****************************************************************************************
- *
- */
- bool is_dac_config_locked(){
- #if ( defined CONFIG_DAC_CONFIG )
- if(strlen(CONFIG_DAC_CONFIG) > 0){
- return true;
- }
- #endif
- #if defined(CONFIG_I2S_BCK_IO) && CONFIG_I2S_BCK_IO>0
- return true;
- #endif
- return false;
- }
- /****************************************************************************************
- *
- */
- bool is_spdif_config_locked(){
- #if ( defined CONFIG_SPDIF_CONFIG )
- if(strlen(CONFIG_SPDIF_CONFIG) > 0){
- return true;
- }
- #endif
- #if defined(CONFIG_SPDIF_BCK_IO) && CONFIG_SPDIF_BCK_IO>0
- return true;
- #endif
- return false;
- }
- /****************************************************************************************
- * Set pin from config string
- */
- static void set_i2s_pin(char *config, i2s_pin_config_t *pin_config) {
- pin_config->bck_io_num = pin_config->ws_io_num = pin_config->data_out_num = pin_config->data_in_num = -1;
- PARSE_PARAM(config, "bck", '=', pin_config->bck_io_num);
- PARSE_PARAM(config, "ws", '=', pin_config->ws_io_num);
- PARSE_PARAM(config, "do", '=', pin_config->data_out_num);
- #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0)
- pin_config->mck_io_num = strcasestr(config, "mck") ? 0 : -1;
- PARSE_PARAM(config, "mck", '=', pin_config->mck_io_num);
- #endif
- }
- /****************************************************************************************
- * Get i2s config structure from config string
- */
- const i2s_platform_config_t * config_i2s_get_from_str(char * dac_config ){
- static EXT_RAM_ATTR i2s_platform_config_t i2s_dac_pin;
- memset(&i2s_dac_pin, 0xff, sizeof(i2s_dac_pin));
- set_i2s_pin(dac_config, &i2s_dac_pin.pin);
- strcpy(i2s_dac_pin.model, "i2s");
- char * p=NULL;
- PARSE_PARAM(dac_config, "i2c", '=', i2s_dac_pin.i2c_addr);
- PARSE_PARAM(dac_config, "sda", '=', i2s_dac_pin.sda);
- PARSE_PARAM(dac_config, "scl", '=', i2s_dac_pin.scl);
- PARSE_PARAM_STR(dac_config, "model", '=', i2s_dac_pin.model, 31);
- if ((p = strcasestr(dac_config, "mute"))) {
- char mute[8] = "";
- sscanf(p, "%*[^=]=%7[^,]", mute);
- i2s_dac_pin.mute_gpio = atoi(mute);
- PARSE_PARAM(p, "mute", ':', i2s_dac_pin.mute_level);
- }
- return &i2s_dac_pin;
- }
- /****************************************************************************************
- * Get eth config structure from config string
- */
- const eth_config_t * config_eth_get_from_str(char* config ){
- static EXT_RAM_ATTR eth_config_t eth_config;
- eth_config.rst = eth_config.intr = -1;
- PARSE_PARAM_STR(config, "model", '=', eth_config.model, 15);
- PARSE_PARAM(config, "rst", '=', eth_config.rst);
- // RMII
- PARSE_PARAM(config, "mdc", '=', eth_config.mdc);
- PARSE_PARAM(config, "mdio", '=', eth_config.mdio);
- // SPI
- PARSE_PARAM(config, "intr", '=', eth_config.intr);
- PARSE_PARAM(config, "cs", '=', eth_config.cs);
- PARSE_PARAM(config, "speed", '=', eth_config.speed);
- /* not used as SPI must be shared
- PARSE_PARAM(config, "mosi", '=', eth_config.mosi);
- PARSE_PARAM(config, "miso", '=', eth_config.miso);
- PARSE_PARAM(config, "clk", '=', eth_config.clk);
- PARSE_PARAM(config, "host", '=', eth_config.host);
- */
- // only system host is available
- eth_config.host = spi_system_host;
- eth_config.valid = true;
- if(!eth_config.model || strlen(eth_config.model)==0){
- eth_config.valid = false;
- return ð_config;
- }
- network_ethernet_driver_t* network_driver = network_ethernet_driver_autodetect(eth_config.model);
-
- if(!network_driver || !network_driver->valid){
- messaging_post_message(MESSAGING_ERROR,MESSAGING_CLASS_SYSTEM,"Ethernet config invalid: model %s %s",eth_config.model,network_driver?"was not compiled in":"was not found");
- eth_config.valid = false;
- }
-
- if(network_driver){
- eth_config.rmii = network_driver->rmii;
- eth_config.spi = network_driver->spi;
- if(network_driver->rmii){
- if(!GPIO_IS_VALID_GPIO(eth_config.mdio) || !GPIO_IS_VALID_GPIO(eth_config.mdc)){
- messaging_post_message(MESSAGING_ERROR,MESSAGING_CLASS_SYSTEM,"Ethernet config invalid: %s %s",!GPIO_IS_VALID_GPIO(eth_config.mdc)?"Invalid MDC":"",!GPIO_IS_VALID_GPIO(eth_config.mdio)?"Invalid mdio":"");
- eth_config.valid = false;
- }
- }
- else if(network_driver->spi){
- if(!GPIO_IS_VALID_GPIO(eth_config.cs)){
- messaging_post_message(MESSAGING_ERROR,MESSAGING_CLASS_SYSTEM,"Ethernet config invalid: invalid CS pin");
- return false;
- }
- }
- }
- return ð_config;
- }
- /****************************************************************************************
- * Get spdif config structure
- */
- const i2s_platform_config_t * config_spdif_get( ){
- char * spdif_config = config_spdif_get_string();
- static EXT_RAM_ATTR i2s_platform_config_t i2s_dac_config;
- memcpy(&i2s_dac_config, config_i2s_get_from_str(spdif_config), sizeof(i2s_dac_config));
- free(spdif_config);
- return &i2s_dac_config;
- }
- /****************************************************************************************
- * Get dac config structure
- */
- const i2s_platform_config_t * config_dac_get(){
- char * spdif_config = get_dac_config_string();
- static EXT_RAM_ATTR i2s_platform_config_t i2s_dac_config;
- memcpy(&i2s_dac_config, config_i2s_get_from_str(spdif_config), sizeof(i2s_dac_config));
- free(spdif_config);
- return &i2s_dac_config;
- }
- /****************************************************************************************
- * Get ethernet config structure
- */
- const eth_config_t * config_eth_get( ){
- char * config = config_alloc_get_str("eth_config", CONFIG_ETH_CONFIG, "rst=" STR(CONFIG_ETH_PHY_RST_IO)
- #if defined(ETH_LAN8720)
- #else
- #if defined(CONFIG_ETH_USE_SPI_ETHERNET)
- #if defined(CONFIG_ETH_DM9051)
- ",model=dm9051"
- #elif defined(CONFIG_ETH_W5500)
- ",model=w5500"
- #endif
- ",host=" STR(CONFIG_ETH_SPI_HOST) ",cs=" STR(CONFIG_ETH_SPI_CS_IO)
- ",mosi=" STR(CONFIG_ETH_SPI_MOSI_IO) ",miso=" STR(CONFIG_ETH_SPI_MISO_IO)
- ",intr=" STR(CONFIG_ETH_SPI_INTR_IO)
- ",clk=" STR(CONFIG_ETH_SPI_CLK_IO) ",speed=" STR(CONFIG_ETH_SPI_SPEED)
- #elif defined(CONFIG_ETH_PHY_INTERFACE_RMII)
- ",model=lan8720, tx_en=21, tx0=19, tx1=22, rx0=25, rx1=26, crs_dv=27"
- #endif
- #endif
- ",mdc=" STR(CONFIG_ETH_MDC_IO) ",mdio=" STR(CONFIG_ETH_MDIO_IO)) ;
- if(config && strlen(config)>0){
- ESP_LOGD(TAG,"Parsing ethernet configuration %s", config);
- }
- static EXT_RAM_ATTR eth_config_t eth_config;
- memcpy(ð_config, config_eth_get_from_str(config), sizeof(eth_config));
- FREE_AND_NULL(config);
- return ð_config;
- }
- /****************************************************************************************
- * Get ethernet config structure and assign to eth config structure
- */
- void config_eth_init( eth_config_t * target ){
- const eth_config_t * source = config_eth_get();
- memcpy(target,source,sizeof(eth_config_t));
- }
- /****************************************************************************************
- *
- */
- esp_err_t config_i2c_set(const i2c_config_t * config, int port){
- int buffer_size=255;
- esp_err_t err=ESP_OK;
- char * config_buffer=malloc_init_external(buffer_size);
- if(config_buffer) {
- snprintf(config_buffer,buffer_size,"scl=%u,sda=%u,speed=%u,port=%u",config->scl_io_num,config->sda_io_num,config->master.clk_speed,port);
- log_send_messaging(MESSAGING_INFO,"Updating I2C configuration to %s",config_buffer);
- err = config_set_value(NVS_TYPE_STR, "i2c_config", config_buffer);
- if(err!=ESP_OK){
- log_send_messaging(MESSAGING_ERROR,"Error: %s",esp_err_to_name(err));
- }
- free(config_buffer);
- }
- return err;
- }
- /****************************************************************************************
- *
- */
- esp_err_t config_rotary_set(rotary_struct_t * config){
- int buffer_size=512;
- esp_err_t err=ESP_OK;
- char * config_buffer=malloc_init_external(buffer_size);
- char * config_buffer2=malloc_init_external(buffer_size);
- if(config_buffer && config_buffer2) {
- snprintf(config_buffer,buffer_size,"A=%i,B=%i",config->A, config->B);
- if(config->SW >=0 ){
- snprintf(config_buffer2,buffer_size,"%s,SW=%i",config_buffer,config->SW);
- strcpy(config_buffer,config_buffer2);
- }
- if(config->knobonly){
- strncat(config_buffer,",knobonly",buffer_size);
- if(config->timer>0){
- snprintf(config_buffer2,buffer_size,"%s=%i",config_buffer,config->timer);
- strcpy(config_buffer,config_buffer2);
- }
- }
- if(config->volume_lock){
- strncat(config_buffer,",volume",buffer_size);
- }
- if(config->longpress){
- strncat(config_buffer,",longpress",buffer_size);
- }
- log_send_messaging(MESSAGING_INFO,"Updating rotary configuration to %s",config_buffer);
- err = config_set_value(NVS_TYPE_STR, "rotary_config", config_buffer);
- if(err!=ESP_OK){
- log_send_messaging(MESSAGING_ERROR,"Error: %s",esp_err_to_name(err));
- }
- }
- else {
- err = ESP_ERR_NO_MEM;
- }
- FREE_AND_NULL(config_buffer);
- FREE_AND_NULL(config_buffer2);
- return err;
- }
- /****************************************************************************************
- *
- */
- esp_err_t config_ledvu_set(ledvu_struct_t * config){
- int buffer_size=512;
- esp_err_t err=ESP_OK;
- char * config_buffer=malloc_init_external(buffer_size);
- if(config_buffer) {
- snprintf(config_buffer,buffer_size,"%s,length=%i,gpio=%i,scale=%i",config->type, config->length, config->gpio, config->scale);
- log_send_messaging(MESSAGING_INFO,"Updating ledvu configuration to %s",config_buffer);
- err = config_set_value(NVS_TYPE_STR, "led_vu_config", config_buffer);
- if(err!=ESP_OK){
- log_send_messaging(MESSAGING_ERROR,"Error: %s",esp_err_to_name(err));
- }
- }
- else {
- err = ESP_ERR_NO_MEM;
- }
- FREE_AND_NULL(config_buffer);
- return err;
- }
- /****************************************************************************************
- *
- */
- esp_err_t config_display_set(const display_config_t * config){
- int buffer_size=512;
- esp_err_t err=ESP_OK;
- char * config_buffer=malloc_init_external(buffer_size);
- char * config_buffer2=malloc_init_external(buffer_size);
- if(config_buffer && config_buffer2) {
- snprintf(config_buffer,buffer_size,"%s,width=%i,height=%i",config->type,config->width,config->height);
- if(strcasecmp("I2C",config->type)==0){
- if(config->address>0 ){
- snprintf(config_buffer2,buffer_size,"%s,address=%i",config_buffer,config->address);
- strcpy(config_buffer,config_buffer2);
- }
- }
- else {
- if(config->CS_pin >=0 ){
- snprintf(config_buffer2,buffer_size,"%s,cs=%i",config_buffer,config->CS_pin);
- strcpy(config_buffer,config_buffer2);
- }
- }
- if(config->RST_pin >=0 ){
- snprintf(config_buffer2,buffer_size,"%s,reset=%i",config_buffer,config->RST_pin);
- strcpy(config_buffer,config_buffer2);
- }
- // I2C,width=<pixels>,height=<pixels>[address=<i2c_address>][,reset=<gpio>][,HFlip][,VFlip][driver=SSD1306|SSD1326[:1|4]|SSD1327|SH1106]
- // SPI,width=<pixels>,height=<pixels>,cs=<gpio>[,back=<gpio>][,reset=<gpio>][,speed=<speed>][,HFlip][,VFlip][driver=SSD1306|SSD1322|SSD1326[:1|4]|SSD1327|SH1106|SSD1675|ST7735|ST7789[,rotate]]
- if(config->back >=0 ){
- snprintf(config_buffer2,buffer_size,"%s,back=%i",config_buffer,config->back);
- strcpy(config_buffer,config_buffer2);
- }
- if(config->speed >0 && strcasecmp("SPI",config->type)==0){
- snprintf(config_buffer2,buffer_size,"%s,speed=%i",config_buffer,config->speed);
- strcpy(config_buffer,config_buffer2);
- }
- if(config->mode >=0 && strcasecmp("SPI",config->type)==0){
- snprintf(config_buffer2,buffer_size,"%s,mode=%i",config_buffer,config->mode);
- strcpy(config_buffer,config_buffer2);
- }
- snprintf(config_buffer2,buffer_size,"%s,driver=%s%s%s%s",config_buffer,config->drivername,config->hflip?",HFlip":"",config->vflip?",VFlip":"",config->rotate?",rotate":"");
- strcpy(config_buffer,config_buffer2);
- log_send_messaging(MESSAGING_INFO,"Updating display configuration to %s",config_buffer);
- err = config_set_value(NVS_TYPE_STR, "display_config", config_buffer);
- if(err!=ESP_OK){
- log_send_messaging(MESSAGING_ERROR,"Error: %s",esp_err_to_name(err));
- }
- }
- else {
- err = ESP_ERR_NO_MEM;
- }
- FREE_AND_NULL(config_buffer);
- FREE_AND_NULL(config_buffer2);
- return err;
- }
- /****************************************************************************************
- *
- */
- esp_err_t config_i2s_set(const i2s_platform_config_t * config, const char * nvs_name){
- int buffer_size=255;
- esp_err_t err=ESP_OK;
- char * config_buffer=malloc_init_external(buffer_size);
- char * config_buffer2=malloc_init_external(buffer_size);
- if(config_buffer && config_buffer2) {
- snprintf(config_buffer,buffer_size,"model=%s,bck=%u,ws=%u,do=%u",config->model,config->pin.bck_io_num,config->pin.ws_io_num,config->pin.data_out_num);
- if(config->mute_gpio>=0){
- snprintf(config_buffer2,buffer_size,"%s,mute=%u:%u",config_buffer,config->mute_gpio,config->mute_level);
- strcpy(config_buffer,config_buffer2);
- }
- if(config->sda>=0){
- snprintf(config_buffer2,buffer_size,"%s,sda=%u,scl=%u",config_buffer,config->sda,config->scl);
- strcpy(config_buffer,config_buffer2);
- }
- if(config->i2c_addr>0){
- snprintf(config_buffer2,buffer_size,"%s,i2c=%u",config_buffer,config->i2c_addr);
- strcpy(config_buffer,config_buffer2);
- }
- log_send_messaging(MESSAGING_INFO,"Updating dac configuration to %s",config_buffer);
- err = config_set_value(NVS_TYPE_STR, nvs_name, config_buffer);
- if(err!=ESP_OK){
- log_send_messaging(MESSAGING_ERROR,"Error: %s",esp_err_to_name(err));
- }
- }
- else {
- err = ESP_ERR_NO_MEM;
- }
- FREE_AND_NULL(config_buffer);
- FREE_AND_NULL(config_buffer2);
- return err;
- }
- /****************************************************************************************
- *
- */
- esp_err_t config_spdif_set(const i2s_platform_config_t * config){
- int buffer_size=255;
- esp_err_t err=ESP_OK;
- char * config_buffer=malloc_init_external(buffer_size);
- if(config_buffer ) {
- snprintf(config_buffer,buffer_size,"bck=%u,ws=%u,do=%u",config->pin.bck_io_num,config->pin.ws_io_num,config->pin.data_out_num);
- log_send_messaging(MESSAGING_INFO,"Updating SPDIF configuration to %s",config_buffer);
- err = config_set_value(NVS_TYPE_STR, "spdif_config", config_buffer);
- if(err!=ESP_OK){
- log_send_messaging(MESSAGING_ERROR,"Error: %s",esp_err_to_name(err));
- }
- }
- else {
- err = ESP_ERR_NO_MEM;
- }
- FREE_AND_NULL(config_buffer);
- return err;
- }
- /****************************************************************************************
- *
- */
- esp_err_t config_spi_set(const spi_bus_config_t * config, int host, int dc){
- int buffer_size=255;
- esp_err_t err = ESP_OK;
- char * config_buffer=malloc_init_external(buffer_size);
- if(config_buffer) {
- snprintf(config_buffer,buffer_size,"data=%u,clk=%u,dc=%u,host=%u,miso=%d",config->mosi_io_num,config->sclk_io_num,dc,host,config->miso_io_num);
- log_send_messaging(MESSAGING_INFO,"Updating SPI configuration to %s",config_buffer);
- err = config_set_value(NVS_TYPE_STR, "spi_config", config_buffer);
- if(err!=ESP_OK){
- log_send_messaging(MESSAGING_ERROR,"Error: %s",esp_err_to_name(err));
- }
- free(config_buffer);
- }
- return err;
- }
- /****************************************************************************************
- *
- */
- const display_config_t * config_display_get(){
- static display_config_t dstruct = {
- .back = -1,
- .CS_pin = -1,
- .RST_pin = -1,
- .depth = -1,
- .address = 0,
- .drivername = NULL,
- .height = 0,
- .width = 0,
- .vflip = false,
- .hflip = false,
- .type = NULL,
- .speed = 0,
- .rotate = false,
- .invert = false,
- .colorswap = 0,
- .mode = 0,
- };
- char *config = config_alloc_get(NVS_TYPE_STR, "display_config");
- if (!config) {
- return NULL;
- }
- char * p=NULL;
- if ((p = strcasestr(config, "driver")) != NULL){
- sscanf(p, "%*[^:]:%u", &dstruct.depth);
- dstruct.drivername = display_conf_get_driver_name(strchr(p, '=') + 1);
- }
- PARSE_PARAM(config, "width", '=', dstruct.width);
- PARSE_PARAM(config, "height", '=', dstruct.height);
- PARSE_PARAM(config, "reset", '=', dstruct.RST_pin);
- PARSE_PARAM(config, "address", '=', dstruct.address);
- PARSE_PARAM(config, "cs", '=', dstruct.CS_pin);
- PARSE_PARAM(config, "speed", '=', dstruct.speed);
- PARSE_PARAM(config, "back", '=', dstruct.back);
- PARSE_PARAM(config, "mode", '=', dstruct.mode);
- if (strstr(config, "I2C") ) dstruct.type=i2c_name_type;
- if (strstr(config, "SPI") ) dstruct.type=spi_name_type;
- dstruct.hflip= strcasestr(config, "HFlip") ? true : false;
- dstruct.vflip= strcasestr(config, "VFlip") ? true : false;
- dstruct.rotate= strcasestr(config, "rotate") ? true : false;
- dstruct.invert= strcasestr(config, "invert") ? true : false;
- dstruct.colorswap= strcasestr(config, "cswap") ? 1 : 0;
- return &dstruct;
- }
- /****************************************************************************************
- *
- */
- const i2c_config_t * config_i2c_get(int * i2c_port) {
- char *nvs_item;
- static i2c_config_t i2c = {
- .mode = I2C_MODE_MASTER,
- .sda_io_num = -1,
- .sda_pullup_en = GPIO_PULLUP_ENABLE,
- .scl_io_num = -1,
- .scl_pullup_en = GPIO_PULLUP_ENABLE,
- .master.clk_speed = 0,
- };
- i2c.master.clk_speed = i2c_system_speed;
-
- nvs_item = config_alloc_get(NVS_TYPE_STR, "i2c_config");
- if (nvs_item) {
- PARSE_PARAM(nvs_item, "scl", '=', i2c.scl_io_num);
- PARSE_PARAM(nvs_item, "sda", '=', i2c.sda_io_num);
- PARSE_PARAM(nvs_item, "speed", '=', i2c.master.clk_speed);
- PARSE_PARAM(nvs_item, "port", '=', i2c_system_port);
- free(nvs_item);
- }
- if(i2c_port) {
- #ifdef CONFIG_I2C_LOCKED
- *i2c_port= I2C_NUM_1;
- #else
- *i2c_port=i2c_system_port;
- #endif
- }
- return &i2c;
- }
- /****************************************************************************************
- * Get IO expander config structure from config string
- */
- const gpio_exp_config_t* config_gpio_exp_get(int index) {
- char *nvs_item, *item, *p;
- static gpio_exp_config_t config;
- // re-initialize config every time
- memset(&config, 0, sizeof(config));
- config.intr = -1; config.count = 16; config.base = GPIO_NUM_MAX; config.phy.port = i2c_system_port; config.phy.host = spi_system_host;
- nvs_item = config_alloc_get(NVS_TYPE_STR, "gpio_exp_config");
- if (!nvs_item || !*nvs_item) return NULL;
- // search index items
- for (item = strtok(nvs_item, ";"); index && item; index--) {
- if ((item = strtok(NULL, ";")) == NULL) {
- free(nvs_item);
- return NULL;
- }
- }
- PARSE_PARAM(item, "addr", '=', config.phy.addr);
- PARSE_PARAM(item, "cs", '=', config.phy.cs_pin);
- PARSE_PARAM(item, "speed", '=', config.phy.speed);
- PARSE_PARAM(item, "intr", '=', config.intr);
- PARSE_PARAM(item, "base", '=', config.base);
- PARSE_PARAM(item, "count", '=', config.count);
- PARSE_PARAM_STR(item, "model", '=', config.model, 31);
- if ((p = strcasestr(item, "port")) != NULL) {
- char port[8] = "";
- sscanf(p, "%*[^=]=%7[^,]", port);
- if (strcasestr(port, "dac")) config.phy.port = 0;
- }
- free(nvs_item);
- return &config;
- }
- /****************************************************************************************
- *
- */
- const gpio_with_level_t * get_gpio_struct_member(const char * nvs_item, const char * name){
- static gpio_with_level_t gpio_member={
- .gpio=-1,
- .level=0
- };
- if(!nvs_item) return &gpio_member;
- const char * p=nvs_item;
- char type[20]={0};
- int match=0;
- do {
- if ((match=sscanf(p, "%d=%19[^,:]:%d", &gpio_member.gpio, type,&gpio_member.level)) >0 && (GPIO_IS_VALID_GPIO(gpio_member.gpio) || gpio_member.gpio==GPIO_NUM_NC) && strcasestr(type,name)){
- return &gpio_member;
- }
- p = strchr(p, ',');
- } while (p++);
- gpio_member.gpio=-1;
- gpio_member.level=0;
- return &gpio_member;
- }
- #define HANDLE_GPIO_STRUCT_MEMBER(name,fixval) memcpy(&gpio_struct.name, get_gpio_struct_member(nvs_item, QUOTE(name)), sizeof(gpio_struct.name)); gpio_struct.name.fixed=fixval
- #define ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(array,structvar,name,type) if(((set_GPIO_struct_t *)structvar)->name.gpio>=0){cJSON_AddItemToArray(array,get_gpio_entry(QUOTE(name),type,((set_GPIO_struct_t *)structvar)->name.gpio, ((set_GPIO_struct_t *)structvar)->name.fixed));}
- /****************************************************************************************
- *
- */
- const set_GPIO_struct_t * get_gpio_struct(){
- static set_GPIO_struct_t gpio_struct;
- char * nvs_item=config_alloc_get(NVS_TYPE_STR, "set_GPIO");
- #ifdef CONFIG_LED_GREEN_GPIO_LEVEL
- gpio_struct.green.level = CONFIG_LED_GREEN_GPIO_LEVEL;
- #endif
- #ifdef CONFIG_LED_GREEN_GPIO
- gpio_struct.green.gpio = CONFIG_LED_GREEN_GPIO;
- #endif
- #ifdef CONFIG_LED_RED_GPIO_LEVEL
- gpio_struct.green.level = CONFIG_LED_RED_GPIO_LEVEL;
- #endif
- #ifdef CONFIG_LED_RED_GPIO
- gpio_struct.red.gpio = CONFIG_LED_RED_GPIO;
- #endif
- if(nvs_item){
- HANDLE_GPIO_STRUCT_MEMBER(amp,false);
- #ifndef CONFIG_LED_LOCKED
- HANDLE_GPIO_STRUCT_MEMBER(green,false);
- HANDLE_GPIO_STRUCT_MEMBER(red,false);
- #endif
- HANDLE_GPIO_STRUCT_MEMBER(jack,false);
- HANDLE_GPIO_STRUCT_MEMBER(spkfault,false);
- HANDLE_GPIO_STRUCT_MEMBER(vcc,false);
- HANDLE_GPIO_STRUCT_MEMBER(gnd,false);
- HANDLE_GPIO_STRUCT_MEMBER(ir,false);
- free(nvs_item);
- }
- #ifdef CONFIG_LED_LOCKED
- gpio_struct.red.fixed=true;
- gpio_struct.green.fixed=true;
- #endif
- #ifdef CONFIG_JACK_LOCKED
- gpio_struct.jack.gpio=CONFIG_JACK_GPIO;
- gpio_struct.jack.fixed=true;
- gpio_struct.jack.level=CONFIG_JACK_GPIO_LEVEL;
- #endif
- #ifdef CONFIG_SPKFAULT_LOCKED
- gpio_struct.spkfault.gpio=CONFIG_SPKFAULT_GPIO;
- gpio_struct.spkfault.fixed=true;
- gpio_struct.spkfault.level=CONFIG_SPKFAULT_GPIO_LEVEL;
- #endif
- return &gpio_struct;
- }
- /****************************************************************************************
- *
- */
- const spi_bus_config_t * config_spi_get(spi_host_device_t * spi_host) {
- char *nvs_item;
- // don't memset all to 0xff as it's more than just GPIO
- static spi_bus_config_t spi = {
- .mosi_io_num = -1,
- .sclk_io_num = -1,
- .miso_io_num = -1,
- .quadwp_io_num = -1,
- .quadhd_io_num = -1
- };
-
- nvs_item = config_alloc_get_str("spi_config", CONFIG_SPI_CONFIG, NULL);
- if (nvs_item) {
- PARSE_PARAM(nvs_item, "data", '=', spi.mosi_io_num);
- PARSE_PARAM(nvs_item, "mosi", '=', spi.mosi_io_num);
- PARSE_PARAM(nvs_item, "miso", '=', spi.miso_io_num);
- PARSE_PARAM(nvs_item, "clk", '=', spi.sclk_io_num);
- PARSE_PARAM(nvs_item, "dc", '=', spi_system_dc_gpio);
- // only VSPI (1) can be used as Flash and PSRAM run at 80MHz
- // if ((p = strcasestr(nvs_item, "host")) != NULL) spi_system_host = atoi(strchr(p, '=') + 1);
- free(nvs_item);
- }
- if(spi_host) *spi_host = spi_system_host;
- return &spi;
- }
- /****************************************************************************************
- *
- */
- void parse_set_GPIO(void (*cb)(int gpio, char *value)) {
- char *nvs_item, *p, type[16];
- int gpio;
-
- if ((nvs_item = config_alloc_get(NVS_TYPE_STR, "set_GPIO")) == NULL) return;
-
- p = nvs_item;
-
- do {
- if (sscanf(p, "%d=%15[^,]", &gpio, type) > 0) cb(gpio, type);
- p = strchr(p, ',');
- } while (p++);
-
- free(nvs_item);
- }
- /****************************************************************************************
- *
- */
- const rotary_struct_t * config_rotary_get() {
- static rotary_struct_t rotary={ .A = -1, .B = -1, .SW = -1, .longpress = false, .knobonly=false,.timer=0,.volume_lock=false};
- char *config = config_alloc_get_default(NVS_TYPE_STR, "rotary_config", NULL, 0);
- if (config && *config) {
- char *p;
- // parse config
- PARSE_PARAM(config, "A", '=', rotary.A);
- PARSE_PARAM(config, "B", '=', rotary.B);
- PARSE_PARAM(config, "SW", '=', rotary.SW);
- if ((p = strcasestr(config, "knobonly")) != NULL) {
- p = strchr(p, '=');
- rotary.knobonly = true;
- rotary.timer = p ? atoi(p + 1) : 350;
- rotary.longpress = false;
- } else {
- rotary.knobonly = false;
- rotary.timer = 0;
- if ((p = strcasestr(config, "volume")) != NULL) rotary.volume_lock = true;
- if ((p = strcasestr(config, "longpress")) != NULL) rotary.longpress = true;
- }
- free(config);
- }
- return &rotary;
- }
- /****************************************************************************************
- *
- */
- const ledvu_struct_t * config_ledvu_get() {
- static ledvu_struct_t ledvu={ .type = "WS2812", .gpio = -1, .length = 0, .scale= 100 };
- char *config = config_alloc_get_default(NVS_TYPE_STR, "led_vu_config", NULL, 0);
- if (config && *config) {
- PARSE_PARAM_STR(config, "type", '=', ledvu.type, 15);
- PARSE_PARAM(config, "gpio", '=', ledvu.gpio);
- PARSE_PARAM(config, "length", '=', ledvu.length);
- PARSE_PARAM(config, "scale", '=', ledvu.scale);
- free(config);
- }
- return &ledvu;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_gpio_entry(const char * name, const char * prefix, int gpio, bool fixed){
- cJSON * entry = cJSON_CreateObject();
- cJSON_AddNumberToObject(entry,"gpio",gpio);
- cJSON_AddStringToObject(entry,"name",name);
- cJSON_AddStringToObject(entry,"group",prefix);
- cJSON_AddBoolToObject(entry,"fixed",fixed);
- return entry;
- }
- /****************************************************************************************
- *
- */
- cJSON * add_gpio_for_value(cJSON * list,const char * name,int gpio, const char * prefix, bool fixed){
- cJSON * llist = list?list:cJSON_CreateArray();
- if(GPIO_IS_VALID_GPIO(gpio) && gpio>0){
- cJSON_AddItemToArray(llist,get_gpio_entry(name,prefix,gpio,fixed));
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * add_gpio_for_name(cJSON * list,const char * nvs_entry,const char * name, const char * prefix, bool fixed){
- cJSON * llist = list?list:cJSON_CreateArray();
- int gpioNum=0;
- PARSE_PARAM(nvs_entry, name, '=', gpioNum);
- if(gpioNum>=0){
- cJSON_AddItemToArray(llist,get_gpio_entry(name,prefix,gpioNum,fixed));
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_GPIO_nvs_list(cJSON * list) {
- cJSON * ilist = list?list:cJSON_CreateArray();
- const set_GPIO_struct_t * gpios = get_gpio_struct();
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,vcc,"other");
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,gnd,"other");
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,amp,"other");
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,ir,"other");
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,jack,"other");
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,green,"other");
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,red,"other");
- ADD_GPIO_STRUCT_MEMBER_TO_ARRAY(ilist,gpios,spkfault,"other");
- return ilist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_DAC_GPIO(cJSON * list){
- cJSON * llist = list;
- if(!llist){
- llist = cJSON_CreateArray();
- }
- const i2s_platform_config_t * i2s_config= config_dac_get();
- if(i2s_config->pin.bck_io_num>=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("bck","dac",i2s_config->pin.bck_io_num,is_dac_config_locked()));
- cJSON_AddItemToArray(llist,get_gpio_entry("ws","dac",i2s_config->pin.ws_io_num,is_dac_config_locked()));
- cJSON_AddItemToArray(llist,get_gpio_entry("do","dac",i2s_config->pin.data_out_num,is_dac_config_locked()));
- if(i2s_config->sda>=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("sda","dac",i2s_config->sda,is_dac_config_locked()));
- cJSON_AddItemToArray(llist,get_gpio_entry("scl","dac",i2s_config->scl,is_dac_config_locked()));
- }
- if(i2s_config->mute_gpio>=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("mute","dac",i2s_config->mute_gpio,is_dac_config_locked()));
- }
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_Display_GPIO(cJSON * list){
- cJSON * llist = list;
- if(!llist){
- llist = cJSON_CreateArray();
- }
- const display_config_t * config= config_display_get();
- if(config->back >=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("backlight","display",config->back,false));
- }
- if(config->CS_pin >=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("CS","display",config->CS_pin,false));
- }
- if(config->RST_pin >=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("reset","display",config->RST_pin,false));
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_I2C_GPIO(cJSON * list){
- cJSON * llist = list;
- if(!llist){
- llist = cJSON_CreateArray();
- }
- int port=0;
- const i2c_config_t * i2c_config = config_i2c_get(&port);
- if(i2c_config->scl_io_num>=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("scl","i2c",i2c_config->scl_io_num,false));
- cJSON_AddItemToArray(llist,get_gpio_entry("sda","i2c",i2c_config->sda_io_num,false));
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_SPI_GPIO(cJSON * list){
- cJSON * llist = list;
- if(!llist){
- llist = cJSON_CreateArray();
- }
- spi_host_device_t spi_host;
- const spi_bus_config_t * spi_config = config_spi_get(&spi_host);
-
- if(spi_config->miso_io_num>=0){
- cJSON_AddItemToArray(llist,get_gpio_entry("data","spi",spi_config->miso_io_num,false));
- cJSON_AddItemToArray(llist,get_gpio_entry("data","clk",spi_config->sclk_io_num,false));
- }
- if(spi_system_dc_gpio>0){
- cJSON_AddItemToArray(llist,get_gpio_entry("data","dc",spi_system_dc_gpio,false));
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_eth_GPIO(cJSON * list){
- cJSON * llist = list;
- if(!llist){
- llist = cJSON_CreateArray();
- }
- spi_host_device_t spi_host;
- const eth_config_t * eth_config = config_eth_get(&spi_host);
- #if defined(CONFIG_ETH_CONFIG)
- bool fixed = strlen(CONFIG_ETH_CONFIG)>0;
- #else
- bool fixed =false;
- #endif
- if(eth_config->valid ){
- add_gpio_for_value(llist,"mdc",eth_config->mdc,"ethernet",fixed);
- add_gpio_for_value(llist,"rst",eth_config->rst,"ethernet",fixed);
- add_gpio_for_value(llist,"mdio",eth_config->mdio,"ethernet",fixed);
- if(eth_config->rmii){
- add_gpio_for_value(llist,"tx_en", 21,"ethernet",true);
- add_gpio_for_value(llist,"tx0", 19 ,"ethernet",true);
- add_gpio_for_value(llist,"tx1", 22 ,"ethernet",true);
- add_gpio_for_value(llist,"rx0", 25 ,"ethernet",true);
- add_gpio_for_value(llist,"rx1", 26 ,"ethernet",true);
- add_gpio_for_value(llist,"crs_dv",27 ,"ethernet",true);
- }
- else if(eth_config->spi) {
- /* SPI ethernet */
- add_gpio_for_value(llist,"cs",eth_config->cs,"ethernet",fixed);
- add_gpio_for_value(llist,"mosi",eth_config->mosi,"ethernet",fixed);
- add_gpio_for_value(llist,"miso",eth_config->miso,"ethernet",fixed);
- add_gpio_for_value(llist,"intr",eth_config->intr,"ethernet",fixed);
- add_gpio_for_value(llist,"clk",eth_config->clk,"ethernet",fixed);
- }
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_SPDIF_GPIO(cJSON * list, bool fixed){
- cJSON * llist = list?list:cJSON_CreateArray();
- char * spdif_config = config_spdif_get_string();
- if(spdif_config){
- llist = add_gpio_for_name(llist,spdif_config,"bck", "spdif", fixed);
- llist = add_gpio_for_name(llist,spdif_config,"ws", "spdif", fixed);
- llist = add_gpio_for_name(llist,spdif_config,"do", "spdif", fixed);
- free(spdif_config);
- }
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_Rotary_GPIO(cJSON * list){
- cJSON * llist = list?list:cJSON_CreateArray();
- const rotary_struct_t *rotary= config_rotary_get();
- add_gpio_for_value(llist,"A",rotary->A, "rotary", false);
- add_gpio_for_value(llist,"B",rotary->B, "rotary", false);
- add_gpio_for_value(llist,"SW",rotary->SW, "rotary", false);
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_ledvu_GPIO(cJSON * list){
- cJSON * llist = list?list:cJSON_CreateArray();
- const ledvu_struct_t *ledvu= config_ledvu_get();
- add_gpio_for_value(llist,"gpio",ledvu->gpio, "led_vu", false);
- return llist;
- }
- /****************************************************************************************
- *
- */
- esp_err_t get_gpio_structure(cJSON * gpio_entry, gpio_entry_t ** gpio){
- esp_err_t err = ESP_OK;
- *gpio = malloc_init_external(sizeof(gpio_entry_t));
- cJSON * val = cJSON_GetObjectItem(gpio_entry,"gpio");
- if(val){
- (*gpio)->gpio= (int)val->valuedouble;
- } else {
- ESP_LOGE(TAG,"gpio pin not found");
- err=ESP_FAIL;
- }
- val = cJSON_GetObjectItem(gpio_entry,"name");
- if(val){
- (*gpio)->name= strdup_psram(cJSON_GetStringValue(val));
- } else {
- ESP_LOGE(TAG,"gpio name value not found");
- err=ESP_FAIL;
- }
- val = cJSON_GetObjectItem(gpio_entry,"group");
- if(val){
- (*gpio)->group= strdup_psram(cJSON_GetStringValue(val));
- } else {
- ESP_LOGE(TAG,"gpio group value not found");
- err=ESP_FAIL;
- }
- val = cJSON_GetObjectItem(gpio_entry,"fixed");
- if(val){
- (*gpio)->fixed= cJSON_IsTrue(val);
- } else {
- ESP_LOGE(TAG,"gpio fixed indicator not found");
- err=ESP_FAIL;
- }
- return err;
- }
- /****************************************************************************************
- *
- */
- esp_err_t free_gpio_entry( gpio_entry_t ** gpio) {
- if(* gpio){
- free((* gpio)->name);
- free((* gpio)->group);
- free(* gpio);
- * gpio=NULL;
- return ESP_OK;
- }
- return ESP_FAIL;
- }
- /****************************************************************************************
- *
- */
- gpio_entry_t * get_gpio_by_no(int gpionum, bool refresh){
- cJSON * gpio_header=NULL;
- gpio_entry_t * gpio=NULL;
- get_gpio_list(refresh);
- cJSON_ArrayForEach(gpio_header,gpio_list)
- {
- if(get_gpio_structure(gpio_header, &gpio)==ESP_OK && gpio->gpio==gpionum){
- ESP_LOGD(TAG,"Found GPIO: %s=%d %s", gpio->name,gpio->gpio,gpio->fixed?"(FIXED)":"(VARIABLE)");
- }
- }
- return gpio;
- }
- /****************************************************************************************
- *
- */
- gpio_entry_t * get_gpio_by_name(char * name,char * group, bool refresh){
- cJSON * gpio_header=NULL;
- gpio_entry_t * gpio=NULL;
- get_gpio_list(refresh);
- cJSON_ArrayForEach(gpio_header,gpio_list)
- {
- if(get_gpio_structure(gpio_header, &gpio)==ESP_OK && strcasecmp(gpio->name,name)&& strcasecmp(gpio->group,group)){
- ESP_LOGD(TAG,"Found GPIO: %s=%d %s", gpio->name,gpio->gpio,gpio->fixed?"(FIXED)":"(VARIABLE)");
- }
- }
- return gpio;
- }
- #ifndef PICO_PSRAM_CLK_IO
- #define PICO_PSRAM_CLK_IO 6
- #endif
- #ifndef PSRAM_SPIQ_SD0_IO
- #define PSRAM_SPIQ_SD0_IO 7
- #define PSRAM_SPID_SD1_IO 8
- #define PSRAM_SPIWP_SD3_IO 10
- #define PSRAM_SPIHD_SD2_IO 9
- #define FLASH_HSPI_CLK_IO 14
- #define FLASH_HSPI_CS_IO 15
- #define PSRAM_HSPI_SPIQ_SD0_IO 12
- #define PSRAM_HSPI_SPID_SD1_IO 13
- #define PSRAM_HSPI_SPIWP_SD3_IO 2
- #define PSRAM_HSPI_SPIHD_SD2_IO 4
- #endif
- cJSON * get_psram_gpio_list(cJSON * list){
- cJSON * llist=list;
-
- #if CONFIG_IDF_TARGET_ESP32
- const char * psram_dev = "psram";
- const char * flash_dev = "flash";
- const char * clk = "clk";
- const char * cs = "cs";
- const char * spiq_sd0_io="spiq_sd0_io";
- const char * spid_sd1_io = "spid_sd1_io";
- const char * spiwp_sd3_io = "spiwp_sd3_io";
- const char * spihd_sd2_io = "spihd_sd2_io";
-
- uint32_t chip_ver = REG_GET_FIELD(EFUSE_BLK0_RDATA3_REG, EFUSE_RD_CHIP_VER_PKG);
- uint32_t pkg_ver = chip_ver & 0x7;
- if (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32D2WDQ5) {
- rtc_vddsdio_config_t cfg = rtc_vddsdio_get_config();
- if (cfg.tieh != RTC_VDDSDIO_TIEH_1_8V) {
- return llist;
- }
- cJSON_AddItemToArray(list,get_gpio_entry(clk,psram_dev,CONFIG_D2WD_PSRAM_CLK_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(cs,psram_dev,CONFIG_D2WD_PSRAM_CS_IO,true));
- } else if ((pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32PICOD2) || (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32PICOD4)) {
- rtc_vddsdio_config_t cfg = rtc_vddsdio_get_config();
- if (cfg.tieh != RTC_VDDSDIO_TIEH_3_3V) {
- return llist;
- }
- cJSON_AddItemToArray(list,get_gpio_entry(clk,psram_dev,PICO_PSRAM_CLK_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(cs,psram_dev,CONFIG_PICO_PSRAM_CS_IO,true));
- } else if ((pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDQ6) || (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDQ5)){
- cJSON_AddItemToArray(list,get_gpio_entry(clk,psram_dev,CONFIG_D0WD_PSRAM_CLK_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(cs,psram_dev,CONFIG_D0WD_PSRAM_CS_IO,true));
- } else {
- ESP_LOGW(TAG, "Cant' determine GPIOs for PSRAM chip id: %d", pkg_ver);
- cJSON_AddItemToArray(list,get_gpio_entry(clk,psram_dev,-1,true));
- cJSON_AddItemToArray(list,get_gpio_entry(cs,psram_dev,-1,true));
- }
- const uint32_t spiconfig = ets_efuse_get_spiconfig();
- if (spiconfig == EFUSE_SPICONFIG_SPI_DEFAULTS) {
- cJSON_AddItemToArray(list,get_gpio_entry(spiq_sd0_io,psram_dev,PSRAM_SPIQ_SD0_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(spid_sd1_io,psram_dev,PSRAM_SPID_SD1_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(spiwp_sd3_io,psram_dev,PSRAM_SPIWP_SD3_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(spihd_sd2_io,psram_dev,PSRAM_SPIHD_SD2_IO,true));
- } else if (spiconfig == EFUSE_SPICONFIG_HSPI_DEFAULTS) {
- cJSON_AddItemToArray(list,get_gpio_entry(spiq_sd0_io,psram_dev,PSRAM_HSPI_SPIQ_SD0_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(spid_sd1_io,psram_dev,PSRAM_HSPI_SPID_SD1_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(spiwp_sd3_io,psram_dev,PSRAM_HSPI_SPIWP_SD3_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(spihd_sd2_io,psram_dev,PSRAM_HSPI_SPIHD_SD2_IO,true));
- } else {
- cJSON_AddItemToArray(list,get_gpio_entry(spiq_sd0_io,psram_dev,EFUSE_SPICONFIG_RET_SPIQ(spiconfig),true));
- cJSON_AddItemToArray(list,get_gpio_entry(spid_sd1_io,psram_dev,EFUSE_SPICONFIG_RET_SPID(spiconfig),true));
- cJSON_AddItemToArray(list,get_gpio_entry(spihd_sd2_io,psram_dev,EFUSE_SPICONFIG_RET_SPIHD(spiconfig),true));
- // If flash mode is set to QIO or QOUT, the WP pin is equal the value configured in bootloader.
- // If flash mode is set to DIO or DOUT, the WP pin should config it via menuconfig.
- #if CONFIG_ESPTOOLPY_FLASHMODE_QIO || CONFIG_FLASHMODE_QOUT
- cJSON_AddItemToArray(list,get_gpio_entry(spiwp_sd3_io,psram_dev,CONFIG_BOOTLOADER_SPI_WP_PIN,true));
- #else
- cJSON_AddItemToArray(list,get_gpio_entry(spiwp_sd3_io,psram_dev,CONFIG_SPIRAM_SPIWP_SD3_PIN,true));
- #endif
- }
- if (spiconfig == EFUSE_SPICONFIG_SPI_DEFAULTS) {
- cJSON_AddItemToArray(list,get_gpio_entry(clk,flash_dev,SPI_IOMUX_PIN_NUM_CLK,true));
- cJSON_AddItemToArray(list,get_gpio_entry(cs,flash_dev,SPI_IOMUX_PIN_NUM_CS,true));
- } else if (spiconfig == EFUSE_SPICONFIG_HSPI_DEFAULTS) {
- cJSON_AddItemToArray(list,get_gpio_entry(clk,flash_dev,FLASH_HSPI_CLK_IO,true));
- cJSON_AddItemToArray(list,get_gpio_entry(cs,flash_dev,FLASH_HSPI_CS_IO,true));
- } else {
- cJSON_AddItemToArray(list,get_gpio_entry(clk,flash_dev,EFUSE_SPICONFIG_RET_SPICLK(spiconfig),true));
- cJSON_AddItemToArray(list,get_gpio_entry(cs,flash_dev,EFUSE_SPICONFIG_RET_SPICS0(spiconfig),true));
- }
- #else
- #pragma message("need to add esp32-s3 specific SPIRAM GPIO config code")
- #endif
- return llist;
- }
- /****************************************************************************************
- *
- */
- cJSON * get_gpio_list(bool refresh) {
- gpio_num_t gpio_num;
- if(gpio_list && !refresh){
- return gpio_list;
- }
-
- if(gpio_list){
- cJSON_Delete(gpio_list);
- }
- gpio_list= cJSON_CreateArray();
-
- char *bat_config = config_alloc_get_default(NVS_TYPE_STR, "bat_config", NULL, 0);
- if (bat_config) {
- int channel = -1;
- PARSE_PARAM(bat_config, "channel", '=', channel);
- if(channel != -1){
- if(adc1_pad_get_io_num(channel,&gpio_num )==ESP_OK){
- cJSON_AddItemToArray(gpio_list,get_gpio_entry("bat","other",gpio_num,false));
- }
- }
- free(bat_config);
- }
- gpio_list=get_GPIO_nvs_list(gpio_list);
- gpio_list=get_SPDIF_GPIO(gpio_list,is_spdif_config_locked());
- gpio_list=get_Rotary_GPIO(gpio_list);
- gpio_list=get_Display_GPIO(gpio_list);
- gpio_list=get_SPI_GPIO(gpio_list);
- gpio_list=get_I2C_GPIO(gpio_list);
- gpio_list=get_DAC_GPIO(gpio_list);
- gpio_list=get_ledvu_GPIO(gpio_list);
- gpio_list=get_psram_gpio_list(gpio_list);
- gpio_list=get_eth_GPIO(gpio_list);
- return gpio_list;
- }
|