mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-18 06:35:35 +03:00
Merge branch 'fix/i2c_timeout_range_check_v5.2' into 'release/v5.2'
fix(i2c_master): Add i2c master timeout range check (v5.2) See merge request espressif/esp-idf!44080
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <inttypes.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/lock.h>
|
||||
#include "sdkconfig.h"
|
||||
@@ -591,6 +592,16 @@ static void s_i2c_send_command_async(i2c_master_bus_handle_t i2c_master, BaseTyp
|
||||
i2c_hal_master_trans_start(hal);
|
||||
}
|
||||
|
||||
static inline bool s_i2c_timeout_range_check(uint32_t *timeout_us, uint32_t sclk_clock_hz)
|
||||
{
|
||||
uint32_t max_timeout_us = (I2C_LL_MAX_TIMEOUT_PERIOD * 1000000ULL) / sclk_clock_hz;
|
||||
if (*timeout_us > max_timeout_us) {
|
||||
*timeout_us = max_timeout_us;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
static esp_err_t s_i2c_transaction_start(i2c_master_dev_handle_t i2c_dev, int xfer_timeout_ms)
|
||||
{
|
||||
i2c_master_bus_handle_t i2c_master = i2c_dev->master_bus;
|
||||
@@ -619,6 +630,7 @@ static esp_err_t s_i2c_transaction_start(i2c_master_dev_handle_t i2c_dev, int xf
|
||||
}
|
||||
|
||||
// Set the timeout value
|
||||
bool timeout_range_exceeded = s_i2c_timeout_range_check(&i2c_dev->scl_wait_us, i2c_master->base->clk_src_freq_hz);
|
||||
i2c_hal_master_set_scl_timeout_val(hal, i2c_dev->scl_wait_us, i2c_master->base->clk_src_freq_hz);
|
||||
|
||||
i2c_ll_master_set_fractional_divider(hal->dev, 0, 0);
|
||||
@@ -628,6 +640,11 @@ static esp_err_t s_i2c_transaction_start(i2c_master_dev_handle_t i2c_dev, int xf
|
||||
i2c_ll_rxfifo_rst(hal->dev);
|
||||
i2c_ll_enable_intr_mask(hal->dev, I2C_LL_MASTER_EVENT_INTR);
|
||||
portEXIT_CRITICAL(&i2c_master->base->spinlock);
|
||||
|
||||
if (timeout_range_exceeded) {
|
||||
ESP_LOGW(TAG, "Timeout value exceeds the maximum supported value, rounded down to maximum supported value: %"PRIu32" us", i2c_dev->scl_wait_us);
|
||||
}
|
||||
|
||||
if (i2c_master->async_trans == true) {
|
||||
s_i2c_send_command_async(i2c_master, NULL);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user