2021-05-10 04:35:07 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-12-01 21:34:53 +08:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2021-01-19 19:55:14 +08:00
|
|
|
#include "soc/efuse_reg.h"
|
2020-12-01 21:34:53 +08:00
|
|
|
|
|
|
|
uint8_t bootloader_common_get_chip_revision(void)
|
|
|
|
{
|
|
|
|
// should return the same value as esp_efuse_get_chip_ver()
|
2021-01-19 19:55:14 +08:00
|
|
|
return REG_GET_FIELD(EFUSE_RD_MAC_SPI_SYS_3_REG, EFUSE_WAFER_VERSION);
|
2020-12-01 21:34:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t bootloader_common_get_chip_ver_pkg(void)
|
|
|
|
{
|
|
|
|
// should return the same value as esp_efuse_get_pkg_ver()
|
2021-01-19 19:55:14 +08:00
|
|
|
return REG_GET_FIELD(EFUSE_RD_MAC_SPI_SYS_3_REG, EFUSE_PKG_VERSION);
|
2020-12-01 21:34:53 +08:00
|
|
|
}
|