mirror of
https://github.com/esphome/esphome.git
synced 2025-07-28 14:16:40 +00:00
[i2c] Use new driver with IDF 5.4.2+ (#8483)
This commit is contained in:
parent
ab54a880c1
commit
b695f13f86
@ -7,6 +7,7 @@
|
|||||||
#include "esphome/core/hal.h"
|
#include "esphome/core/hal.h"
|
||||||
#include "esphome/core/helpers.h"
|
#include "esphome/core/helpers.h"
|
||||||
#include "esphome/core/log.h"
|
#include "esphome/core/log.h"
|
||||||
|
#include <driver/gpio.h>
|
||||||
|
|
||||||
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 3, 0)
|
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 3, 0)
|
||||||
#define SOC_HP_I2C_NUM SOC_I2C_NUM
|
#define SOC_HP_I2C_NUM SOC_I2C_NUM
|
||||||
@ -20,21 +21,72 @@ static const char *const TAG = "i2c.idf";
|
|||||||
void IDFI2CBus::setup() {
|
void IDFI2CBus::setup() {
|
||||||
ESP_LOGCONFIG(TAG, "Running setup");
|
ESP_LOGCONFIG(TAG, "Running setup");
|
||||||
static i2c_port_t next_port = I2C_NUM_0;
|
static i2c_port_t next_port = I2C_NUM_0;
|
||||||
port_ = next_port;
|
this->port_ = next_port;
|
||||||
|
if (this->port_ == I2C_NUM_MAX) {
|
||||||
|
ESP_LOGE(TAG, "No more than %u buses supported", I2C_NUM_MAX);
|
||||||
|
this->mark_failed();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this->timeout_ > 13000) {
|
||||||
|
ESP_LOGW(TAG, "Using max allowed timeout: 13 ms");
|
||||||
|
this->timeout_ = 13000;
|
||||||
|
}
|
||||||
|
|
||||||
|
this->recover_();
|
||||||
|
|
||||||
|
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 4, 2)
|
||||||
|
next_port = (i2c_port_t) (next_port + 1);
|
||||||
|
|
||||||
|
i2c_master_bus_config_t bus_conf{};
|
||||||
|
memset(&bus_conf, 0, sizeof(bus_conf));
|
||||||
|
bus_conf.sda_io_num = gpio_num_t(sda_pin_);
|
||||||
|
bus_conf.scl_io_num = gpio_num_t(scl_pin_);
|
||||||
|
bus_conf.i2c_port = this->port_;
|
||||||
|
bus_conf.glitch_ignore_cnt = 7;
|
||||||
|
#if SOC_LP_I2C_SUPPORTED
|
||||||
|
if (this->port_ < SOC_HP_I2C_NUM) {
|
||||||
|
bus_conf.clk_source = I2C_CLK_SRC_DEFAULT;
|
||||||
|
} else {
|
||||||
|
bus_conf.lp_source_clk = LP_I2C_SCLK_DEFAULT;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
bus_conf.clk_source = I2C_CLK_SRC_DEFAULT;
|
||||||
|
#endif
|
||||||
|
bus_conf.flags.enable_internal_pullup = sda_pullup_enabled_ || scl_pullup_enabled_;
|
||||||
|
esp_err_t err = i2c_new_master_bus(&bus_conf, &this->bus_);
|
||||||
|
if (err != ESP_OK) {
|
||||||
|
ESP_LOGW(TAG, "i2c_new_master_bus failed: %s", esp_err_to_name(err));
|
||||||
|
this->mark_failed();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
i2c_device_config_t dev_conf{};
|
||||||
|
memset(&dev_conf, 0, sizeof(dev_conf));
|
||||||
|
dev_conf.dev_addr_length = I2C_ADDR_BIT_LEN_7;
|
||||||
|
dev_conf.device_address = I2C_DEVICE_ADDRESS_NOT_USED;
|
||||||
|
dev_conf.scl_speed_hz = this->frequency_;
|
||||||
|
dev_conf.scl_wait_us = this->timeout_;
|
||||||
|
err = i2c_master_bus_add_device(this->bus_, &dev_conf, &this->dev_);
|
||||||
|
if (err != ESP_OK) {
|
||||||
|
ESP_LOGW(TAG, "i2c_master_bus_add_device failed: %s", esp_err_to_name(err));
|
||||||
|
this->mark_failed();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this->initialized_ = true;
|
||||||
|
|
||||||
|
if (this->scan_) {
|
||||||
|
ESP_LOGV(TAG, "Scanning for devices");
|
||||||
|
this->i2c_scan_();
|
||||||
|
}
|
||||||
|
#else
|
||||||
#if SOC_HP_I2C_NUM > 1
|
#if SOC_HP_I2C_NUM > 1
|
||||||
next_port = (next_port == I2C_NUM_0) ? I2C_NUM_1 : I2C_NUM_MAX;
|
next_port = (next_port == I2C_NUM_0) ? I2C_NUM_1 : I2C_NUM_MAX;
|
||||||
#else
|
#else
|
||||||
next_port = I2C_NUM_MAX;
|
next_port = I2C_NUM_MAX;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (port_ == I2C_NUM_MAX) {
|
|
||||||
ESP_LOGE(TAG, "No more than %u buses supported", SOC_HP_I2C_NUM);
|
|
||||||
this->mark_failed();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
recover_();
|
|
||||||
|
|
||||||
i2c_config_t conf{};
|
i2c_config_t conf{};
|
||||||
memset(&conf, 0, sizeof(conf));
|
memset(&conf, 0, sizeof(conf));
|
||||||
conf.mode = I2C_MODE_MASTER;
|
conf.mode = I2C_MODE_MASTER;
|
||||||
@ -53,11 +105,7 @@ void IDFI2CBus::setup() {
|
|||||||
this->mark_failed();
|
this->mark_failed();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (timeout_ > 0) { // if timeout specified in yaml:
|
if (timeout_ > 0) {
|
||||||
if (timeout_ > 13000) {
|
|
||||||
ESP_LOGW(TAG, "i2c timeout of %" PRIu32 "us greater than max of 13ms on esp-idf, setting to max", timeout_);
|
|
||||||
timeout_ = 13000;
|
|
||||||
}
|
|
||||||
err = i2c_set_timeout(port_, timeout_ * 80); // unit: APB 80MHz clock cycle
|
err = i2c_set_timeout(port_, timeout_ * 80); // unit: APB 80MHz clock cycle
|
||||||
if (err != ESP_OK) {
|
if (err != ESP_OK) {
|
||||||
ESP_LOGW(TAG, "i2c_set_timeout failed: %s", esp_err_to_name(err));
|
ESP_LOGW(TAG, "i2c_set_timeout failed: %s", esp_err_to_name(err));
|
||||||
@ -73,12 +121,15 @@ void IDFI2CBus::setup() {
|
|||||||
this->mark_failed();
|
this->mark_failed();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
initialized_ = true;
|
initialized_ = true;
|
||||||
if (this->scan_) {
|
if (this->scan_) {
|
||||||
ESP_LOGV(TAG, "Scanning bus for active devices");
|
ESP_LOGV(TAG, "Scanning bus for active devices");
|
||||||
this->i2c_scan_();
|
this->i2c_scan_();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void IDFI2CBus::dump_config() {
|
void IDFI2CBus::dump_config() {
|
||||||
ESP_LOGCONFIG(TAG, "I2C Bus:");
|
ESP_LOGCONFIG(TAG, "I2C Bus:");
|
||||||
ESP_LOGCONFIG(TAG,
|
ESP_LOGCONFIG(TAG,
|
||||||
@ -123,6 +174,74 @@ ErrorCode IDFI2CBus::readv(uint8_t address, ReadBuffer *buffers, size_t cnt) {
|
|||||||
ESP_LOGVV(TAG, "i2c bus not initialized!");
|
ESP_LOGVV(TAG, "i2c bus not initialized!");
|
||||||
return ERROR_NOT_INITIALIZED;
|
return ERROR_NOT_INITIALIZED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 4, 2)
|
||||||
|
i2c_operation_job_t jobs[cnt + 4];
|
||||||
|
uint8_t read = (address << 1) | I2C_MASTER_READ;
|
||||||
|
size_t last = 0, num = 0;
|
||||||
|
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_START;
|
||||||
|
num++;
|
||||||
|
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_WRITE;
|
||||||
|
jobs[num].write.ack_check = true;
|
||||||
|
jobs[num].write.data = &read;
|
||||||
|
jobs[num].write.total_bytes = 1;
|
||||||
|
num++;
|
||||||
|
|
||||||
|
// find the last valid index
|
||||||
|
for (size_t i = 0; i < cnt; i++) {
|
||||||
|
const auto &buf = buffers[i];
|
||||||
|
if (buf.len == 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
last = i;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t i = 0; i < cnt; i++) {
|
||||||
|
const auto &buf = buffers[i];
|
||||||
|
if (buf.len == 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (i == last) {
|
||||||
|
// the last byte read before stop should always be a nack,
|
||||||
|
// split the last read if len is larger than 1
|
||||||
|
if (buf.len > 1) {
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_READ;
|
||||||
|
jobs[num].read.ack_value = I2C_ACK_VAL;
|
||||||
|
jobs[num].read.data = (uint8_t *) buf.data;
|
||||||
|
jobs[num].read.total_bytes = buf.len - 1;
|
||||||
|
num++;
|
||||||
|
}
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_READ;
|
||||||
|
jobs[num].read.ack_value = I2C_NACK_VAL;
|
||||||
|
jobs[num].read.data = (uint8_t *) buf.data + buf.len - 1;
|
||||||
|
jobs[num].read.total_bytes = 1;
|
||||||
|
num++;
|
||||||
|
} else {
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_READ;
|
||||||
|
jobs[num].read.ack_value = I2C_ACK_VAL;
|
||||||
|
jobs[num].read.data = (uint8_t *) buf.data;
|
||||||
|
jobs[num].read.total_bytes = buf.len;
|
||||||
|
num++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_STOP;
|
||||||
|
num++;
|
||||||
|
|
||||||
|
esp_err_t err = i2c_master_execute_defined_operations(this->dev_, jobs, num, 20);
|
||||||
|
if (err == ESP_ERR_INVALID_STATE) {
|
||||||
|
ESP_LOGVV(TAG, "RX from %02X failed: not acked", address);
|
||||||
|
return ERROR_NOT_ACKNOWLEDGED;
|
||||||
|
} else if (err == ESP_ERR_TIMEOUT) {
|
||||||
|
ESP_LOGVV(TAG, "RX from %02X failed: timeout", address);
|
||||||
|
return ERROR_TIMEOUT;
|
||||||
|
} else if (err != ESP_OK) {
|
||||||
|
ESP_LOGVV(TAG, "RX from %02X failed: %s", address, esp_err_to_name(err));
|
||||||
|
return ERROR_UNKNOWN;
|
||||||
|
}
|
||||||
|
#else
|
||||||
i2c_cmd_handle_t cmd = i2c_cmd_link_create();
|
i2c_cmd_handle_t cmd = i2c_cmd_link_create();
|
||||||
esp_err_t err = i2c_master_start(cmd);
|
esp_err_t err = i2c_master_start(cmd);
|
||||||
if (err != ESP_OK) {
|
if (err != ESP_OK) {
|
||||||
@ -168,6 +287,7 @@ ErrorCode IDFI2CBus::readv(uint8_t address, ReadBuffer *buffers, size_t cnt) {
|
|||||||
ESP_LOGVV(TAG, "RX from %02X failed: %s", address, esp_err_to_name(err));
|
ESP_LOGVV(TAG, "RX from %02X failed: %s", address, esp_err_to_name(err));
|
||||||
return ERROR_UNKNOWN;
|
return ERROR_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ESPHOME_LOG_HAS_VERY_VERBOSE
|
#ifdef ESPHOME_LOG_HAS_VERY_VERBOSE
|
||||||
char debug_buf[4];
|
char debug_buf[4];
|
||||||
@ -185,6 +305,7 @@ ErrorCode IDFI2CBus::readv(uint8_t address, ReadBuffer *buffers, size_t cnt) {
|
|||||||
|
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
ErrorCode IDFI2CBus::writev(uint8_t address, WriteBuffer *buffers, size_t cnt, bool stop) {
|
ErrorCode IDFI2CBus::writev(uint8_t address, WriteBuffer *buffers, size_t cnt, bool stop) {
|
||||||
// logging is only enabled with vv level, if warnings are shown the caller
|
// logging is only enabled with vv level, if warnings are shown the caller
|
||||||
// should log them
|
// should log them
|
||||||
@ -207,6 +328,49 @@ ErrorCode IDFI2CBus::writev(uint8_t address, WriteBuffer *buffers, size_t cnt, b
|
|||||||
ESP_LOGVV(TAG, "0x%02X TX %s", address, debug_hex.c_str());
|
ESP_LOGVV(TAG, "0x%02X TX %s", address, debug_hex.c_str());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 4, 2)
|
||||||
|
i2c_operation_job_t jobs[cnt + 3];
|
||||||
|
uint8_t write = (address << 1) | I2C_MASTER_WRITE;
|
||||||
|
size_t num = 0;
|
||||||
|
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_START;
|
||||||
|
num++;
|
||||||
|
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_WRITE;
|
||||||
|
jobs[num].write.ack_check = true;
|
||||||
|
jobs[num].write.data = &write;
|
||||||
|
jobs[num].write.total_bytes = 1;
|
||||||
|
num++;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < cnt; i++) {
|
||||||
|
const auto &buf = buffers[i];
|
||||||
|
if (buf.len == 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_WRITE;
|
||||||
|
jobs[num].write.ack_check = true;
|
||||||
|
jobs[num].write.data = (uint8_t *) buf.data;
|
||||||
|
jobs[num].write.total_bytes = buf.len;
|
||||||
|
num++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stop) {
|
||||||
|
jobs[num].command = I2C_MASTER_CMD_STOP;
|
||||||
|
num++;
|
||||||
|
}
|
||||||
|
|
||||||
|
esp_err_t err = i2c_master_execute_defined_operations(this->dev_, jobs, num, 20);
|
||||||
|
if (err == ESP_ERR_INVALID_STATE) {
|
||||||
|
ESP_LOGVV(TAG, "TX to %02X failed: not acked", address);
|
||||||
|
return ERROR_NOT_ACKNOWLEDGED;
|
||||||
|
} else if (err == ESP_ERR_TIMEOUT) {
|
||||||
|
ESP_LOGVV(TAG, "TX to %02X failed: timeout", address);
|
||||||
|
return ERROR_TIMEOUT;
|
||||||
|
} else if (err != ESP_OK) {
|
||||||
|
ESP_LOGVV(TAG, "TX to %02X failed: %s", address, esp_err_to_name(err));
|
||||||
|
return ERROR_UNKNOWN;
|
||||||
|
}
|
||||||
|
#else
|
||||||
i2c_cmd_handle_t cmd = i2c_cmd_link_create();
|
i2c_cmd_handle_t cmd = i2c_cmd_link_create();
|
||||||
esp_err_t err = i2c_master_start(cmd);
|
esp_err_t err = i2c_master_start(cmd);
|
||||||
if (err != ESP_OK) {
|
if (err != ESP_OK) {
|
||||||
@ -252,6 +416,7 @@ ErrorCode IDFI2CBus::writev(uint8_t address, WriteBuffer *buffers, size_t cnt, b
|
|||||||
ESP_LOGVV(TAG, "TX to %02X failed: %s", address, esp_err_to_name(err));
|
ESP_LOGVV(TAG, "TX to %02X failed: %s", address, esp_err_to_name(err));
|
||||||
return ERROR_UNKNOWN;
|
return ERROR_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,9 +2,14 @@
|
|||||||
|
|
||||||
#ifdef USE_ESP_IDF
|
#ifdef USE_ESP_IDF
|
||||||
|
|
||||||
#include <driver/i2c.h>
|
|
||||||
#include "esphome/core/component.h"
|
#include "esphome/core/component.h"
|
||||||
#include "i2c_bus.h"
|
#include "i2c_bus.h"
|
||||||
|
#include "esp_idf_version.h"
|
||||||
|
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 4, 2)
|
||||||
|
#include <driver/i2c_master.h>
|
||||||
|
#else
|
||||||
|
#include <driver/i2c.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace i2c {
|
namespace i2c {
|
||||||
@ -38,6 +43,10 @@ class IDFI2CBus : public InternalI2CBus, public Component {
|
|||||||
RecoveryCode recovery_result_;
|
RecoveryCode recovery_result_;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 4, 2)
|
||||||
|
i2c_master_dev_handle_t dev_;
|
||||||
|
i2c_master_bus_handle_t bus_;
|
||||||
|
#endif
|
||||||
i2c_port_t port_;
|
i2c_port_t port_;
|
||||||
uint8_t sda_pin_;
|
uint8_t sda_pin_;
|
||||||
bool sda_pullup_enabled_;
|
bool sda_pullup_enabled_;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user