mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 21:14:37 +00:00 
			
		
		
		
	 fe5a5284ba
			
		
	
	fe5a5284ba
	
	
	
		
			
			Closes https://github.com/espressif/esp-idf/issues/8287 Closes https://github.com/espressif/esp-idf/issues/7921
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
 | |
|  *
 | |
|  * SPDX-License-Identifier: Apache-2.0
 | |
|  */
 | |
| 
 | |
| #include "regi2c_ctrl.h"
 | |
| #include "esp_attr.h"
 | |
| #include <stdint.h>
 | |
| #include <freertos/FreeRTOS.h>
 | |
| #include <freertos/semphr.h>
 | |
| 
 | |
| static portMUX_TYPE mux = portMUX_INITIALIZER_UNLOCKED;
 | |
| 
 | |
| uint8_t IRAM_ATTR regi2c_ctrl_read_reg(uint8_t block, uint8_t host_id, uint8_t reg_add)
 | |
| {
 | |
|     portENTER_CRITICAL_ISR(&mux);
 | |
|     uint8_t value = i2c_read_reg_raw(block, host_id, reg_add);
 | |
|     portEXIT_CRITICAL_ISR(&mux);
 | |
|     return value;
 | |
| }
 | |
| 
 | |
| uint8_t IRAM_ATTR regi2c_ctrl_read_reg_mask(uint8_t block, uint8_t host_id, uint8_t reg_add, uint8_t msb, uint8_t lsb)
 | |
| {
 | |
|     portENTER_CRITICAL_ISR(&mux);
 | |
|     uint8_t value = i2c_read_reg_mask_raw(block, host_id, reg_add, msb, lsb);
 | |
|     portEXIT_CRITICAL_ISR(&mux);
 | |
|     return value;
 | |
| }
 | |
| 
 | |
| void IRAM_ATTR regi2c_ctrl_write_reg(uint8_t block, uint8_t host_id, uint8_t reg_add, uint8_t data)
 | |
| {
 | |
|     portENTER_CRITICAL_ISR(&mux);
 | |
|     i2c_write_reg_raw(block, host_id, reg_add, data);
 | |
|     portEXIT_CRITICAL_ISR(&mux);
 | |
| }
 | |
| 
 | |
| void IRAM_ATTR regi2c_ctrl_write_reg_mask(uint8_t block, uint8_t host_id, uint8_t reg_add, uint8_t msb, uint8_t lsb, uint8_t data)
 | |
| {
 | |
|     portENTER_CRITICAL_ISR(&mux);
 | |
|     i2c_write_reg_mask_raw(block, host_id, reg_add, msb, lsb, data);
 | |
|     portEXIT_CRITICAL_ISR(&mux);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Restore regi2c analog calibration related configuration registers.
 | |
|  * This is a workaround, and is fixed on later chips
 | |
|  */
 | |
| #if REGI2C_ANA_CALI_PD_WORKAROUND
 | |
| 
 | |
| static DRAM_ATTR uint8_t reg_val[REGI2C_ANA_CALI_BYTE_NUM];
 | |
| 
 | |
| void IRAM_ATTR regi2c_analog_cali_reg_read(void)
 | |
| {
 | |
|     for (int i = 0; i < REGI2C_ANA_CALI_BYTE_NUM; i++) {
 | |
|         reg_val[i] = regi2c_ctrl_read_reg(I2C_SAR_ADC, I2C_SAR_ADC_HOSTID, i);
 | |
|     }
 | |
| }
 | |
| 
 | |
| void IRAM_ATTR regi2c_analog_cali_reg_write(void)
 | |
| {
 | |
|     for (int i = 0; i < REGI2C_ANA_CALI_BYTE_NUM; i++) {
 | |
|         regi2c_ctrl_write_reg(I2C_SAR_ADC, I2C_SAR_ADC_HOSTID, i, reg_val[i]);
 | |
|     }
 | |
| }
 | |
| 
 | |
| #endif   //#if ADC_CALI_PD_WORKAROUND
 |