123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- /*
- * Squeezelite for esp32
- *
- * (c) Sebastien 2019
- * Philippe G. 2019, philippe_44@outlook.com
- *
- * This software is released under the MIT License.
- * https://opensource.org/licenses/MIT
- *
- */
-
- #include <string.h>
- #include <freertos/FreeRTOS.h>
- #include <freertos/task.h>
- #include <driver/i2s.h>
- #include "driver/i2c.h"
- #include "esp_log.h"
- #include "adac.h"
- #define PARSE_PARAM(S,P,C,V) do { \
- char *__p; \
- if ((__p = strcasestr(S, P)) && (__p = strchr(__p, C))) V = atoi(__p+1); \
- } while (0)
- static const char TAG[] = "DAC core";
- static int i2c_port = -1;
- /****************************************************************************************
- * init
- */
- int adac_init(char *config, int i2c_port_num) {
- char *p;
- int i2c_addr = 0;
-
- // some crappy codecs require MCLK to work
- if ((p = strcasestr(config, "mck")) != NULL) {
- ESP_LOGI(TAG, "Configuring MCLK on GPIO0");
- PIN_FUNC_SELECT(PERIPHS_IO_MUX_GPIO0_U, FUNC_GPIO0_CLK_OUT1);
- REG_WRITE(PIN_CTRL, 0xFFFFFFF0);
- }
-
- i2c_port = i2c_port_num;
- // configure i2c
- i2c_config_t i2c_config = {
- .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 = 250000,
- };
- PARSE_PARAM(config, "i2c", '=', i2c_addr);
- PARSE_PARAM(config, "sda", '=', i2c_config.sda_io_num);
- PARSE_PARAM(config, "scl", '=', i2c_config.scl_io_num);
- if (i2c_config.sda_io_num == -1 || i2c_config.scl_io_num == -1) {
- ESP_LOGW(TAG, "DAC does not use i2c");
- return i2c_addr;
- }
-
- ESP_LOGI(TAG, "DAC uses I2C port:%d, sda:%d, scl:%d", i2c_port, i2c_config.sda_io_num, i2c_config.scl_io_num);
-
- // we have an I2C configured
- i2c_param_config(i2c_port, &i2c_config);
- i2c_driver_install(i2c_port, I2C_MODE_MASTER, false, false, false);
-
- return i2c_addr;
- }
- /****************************************************************************************
- * close
- */
- void adac_deinit(void) {
- if (i2c_port != -1) i2c_driver_delete(i2c_port);
- }
- /****************************************************************************************
- *
- */
- esp_err_t adac_write_byte(int i2c_addr,uint8_t reg, uint8_t val) {
- i2c_cmd_handle_t cmd = i2c_cmd_link_create();
- i2c_master_start(cmd);
-
- i2c_master_write_byte(cmd, (i2c_addr << 1) | I2C_MASTER_WRITE, I2C_MASTER_NACK);
- i2c_master_write_byte(cmd, reg, I2C_MASTER_NACK);
- i2c_master_write_byte(cmd, val, I2C_MASTER_NACK);
-
- i2c_master_stop(cmd);
- esp_err_t ret = i2c_master_cmd_begin(i2c_port, cmd, 100 / portTICK_RATE_MS);
- i2c_cmd_link_delete(cmd);
-
- if (ret != ESP_OK) {
- ESP_LOGW(TAG, "I2C write failed");
- }
-
- return ret;
- }
- /****************************************************************************************
- *
- */
- uint8_t adac_read_byte(int i2c_addr, uint8_t reg) {
- uint8_t data = 255;
-
- i2c_cmd_handle_t cmd = i2c_cmd_link_create();
- i2c_master_start(cmd);
-
- i2c_master_write_byte(cmd, (i2c_addr << 1) | I2C_MASTER_WRITE, I2C_MASTER_NACK);
- i2c_master_write_byte(cmd, reg, I2C_MASTER_NACK);
- i2c_master_start(cmd);
- i2c_master_write_byte(cmd, (i2c_addr << 1) | I2C_MASTER_READ, I2C_MASTER_NACK);
- i2c_master_read_byte(cmd, &data, I2C_MASTER_NACK);
-
- i2c_master_stop(cmd);
- esp_err_t ret = i2c_master_cmd_begin(i2c_port, cmd, 100 / portTICK_RATE_MS);
- i2c_cmd_link_delete(cmd);
-
- if (ret != ESP_OK) {
- ESP_LOGW(TAG, "I2C read failed");
- }
-
- return data;
- }
- /****************************************************************************************
- *
- */
- uint16_t adac_read_word(int i2c_addr, uint8_t reg) {
- uint8_t data[2] = { 255, 255 };
-
- i2c_cmd_handle_t cmd = i2c_cmd_link_create();
- i2c_master_start(cmd);
-
- i2c_master_write_byte(cmd, (i2c_addr << 1) | I2C_MASTER_WRITE, I2C_MASTER_NACK);
- i2c_master_write_byte(cmd, reg, I2C_MASTER_NACK);
-
- i2c_master_start(cmd);
- i2c_master_write_byte(cmd, (i2c_addr << 1) | I2C_MASTER_READ, I2C_MASTER_NACK);
- i2c_master_read(cmd, data, 2, I2C_MASTER_NACK);
-
- i2c_master_stop(cmd);
- esp_err_t ret = i2c_master_cmd_begin(i2c_port, cmd, 100 / portTICK_RATE_MS);
- i2c_cmd_link_delete(cmd);
-
- if (ret != ESP_OK) {
- ESP_LOGW(TAG, "I2C read failed");
- }
- return (data[0] << 8) | data[1];
- }
- /****************************************************************************************
- *
- */
- esp_err_t adac_write_word(int i2c_addr, uint8_t reg, uint16_t val) {
- uint8_t data[] = { i2c_addr << 1, reg,
- val >> 8, val & 0xff };
-
- i2c_cmd_handle_t cmd = i2c_cmd_link_create();
- i2c_master_start(cmd);
-
- i2c_master_write(cmd, data, 4, I2C_MASTER_NACK);
-
- i2c_master_stop(cmd);
- esp_err_t ret = i2c_master_cmd_begin(i2c_port, cmd, 100 / portTICK_RATE_MS);
- i2c_cmd_link_delete(cmd);
-
- if (ret != ESP_OK) {
- ESP_LOGW(TAG, "I2C write failed");
- }
-
- return ret;
- }
- /****************************************************************************************
- *
- */
- esp_err_t adac_write(int i2c_addr, uint8_t reg, uint8_t *data, size_t count) {
- i2c_cmd_handle_t cmd = i2c_cmd_link_create();
- i2c_master_start(cmd);
-
- i2c_master_write_byte(cmd, (i2c_addr << 1) | I2C_MASTER_WRITE, I2C_MASTER_NACK);
- i2c_master_write_byte(cmd, reg, I2C_MASTER_NACK);
- i2c_master_write(cmd, data, count, I2C_MASTER_NACK);
-
- i2c_master_stop(cmd);
- esp_err_t ret = i2c_master_cmd_begin(i2c_port, cmd, 200 / portTICK_RATE_MS);
- i2c_cmd_link_delete(cmd);
-
- if (ret != ESP_OK) {
- ESP_LOGW(TAG, "I2C write failed");
- }
-
- return ret;
- }
|