mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
9605f3eb1a
Replaced eFuse ROM funcs with hal layer
126 lines
3.1 KiB
C
126 lines
3.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "soc/efuse_periph.h"
|
|
#include "hal/assert.h"
|
|
#include "esp32s2/rom/efuse.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Always inline these functions even no gcc optimization is applied.
|
|
|
|
/******************* eFuse fields *************************/
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_flash_crypt_cnt(void)
|
|
{
|
|
return EFUSE.rd_repeat_data1.spi_boot_crypt_cnt;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_wdt_delay_sel(void)
|
|
{
|
|
return EFUSE.rd_repeat_data1.wdt_delay_sel;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_mac0(void)
|
|
{
|
|
return EFUSE.rd_mac_spi_8m_0;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_mac1(void)
|
|
{
|
|
return EFUSE.rd_mac_spi_8m_1.mac_1;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline bool efuse_ll_get_secure_boot_v2_en(void)
|
|
{
|
|
return EFUSE.rd_repeat_data2.secure_boot_en;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_chip_revision(void)
|
|
{
|
|
return EFUSE.rd_mac_spi_8m_3.wafer_version;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_chip_ver_pkg(void)
|
|
{
|
|
return EFUSE.rd_mac_spi_8m_4.pkg_version;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline bool efuse_ll_get_sdio_force(void)
|
|
{
|
|
return EFUSE.rd_repeat_data1.sdio_force;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline bool efuse_ll_get_sdio_tieh(void)
|
|
{
|
|
return EFUSE.rd_repeat_data1.sdio_tieh;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline bool efuse_ll_get_sdio_xpd(void)
|
|
{
|
|
return EFUSE.rd_repeat_data1.sdio_xpd;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_sdio_drefl(void)
|
|
{
|
|
return EFUSE.rd_repeat_data1.sdio_drefl;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_sdio_drefm(void)
|
|
{
|
|
return EFUSE.rd_repeat_data1.sdio_drefm;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_sdio_drefh(void)
|
|
{
|
|
return EFUSE.rd_repeat_data0.sdio_drefh;
|
|
}
|
|
|
|
/******************* eFuse control functions *************************/
|
|
|
|
__attribute__((always_inline)) static inline bool efuse_ll_get_read_cmd(void)
|
|
{
|
|
return EFUSE.cmd.read_cmd;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline bool efuse_ll_get_pgm_cmd(void)
|
|
{
|
|
return EFUSE.cmd.pgm_cmd;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline void efuse_ll_set_read_cmd(void)
|
|
{
|
|
EFUSE.cmd.read_cmd = 1;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline void efuse_ll_set_pgm_cmd(uint32_t block)
|
|
{
|
|
HAL_ASSERT(block < ETS_EFUSE_BLOCK_MAX);
|
|
EFUSE.cmd.val = ((block << EFUSE_BLK_NUM_S) & EFUSE_BLK_NUM_M) | EFUSE_PGM_CMD;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline void efuse_ll_set_conf_read_op_code(void)
|
|
{
|
|
EFUSE.conf.op_code = EFUSE_READ_OP_CODE;
|
|
}
|
|
|
|
__attribute__((always_inline)) static inline void efuse_ll_set_conf_write_op_code(void)
|
|
{
|
|
EFUSE.conf.op_code = EFUSE_WRITE_OP_CODE;
|
|
}
|
|
|
|
/******************* eFuse control functions *************************/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|