mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 04:59:55 +00:00 
			
		
		
		
	 1ece052ce3
			
		
	
	1ece052ce3
	
	
	
		
			
			change(bootloader): remove ignore efuse check flag (temp) change(bootloader): use int for the minimum efuse blk rev (temp)
		
			
				
	
	
		
			132 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
 | |
|  *
 | |
|  * SPDX-License-Identifier: Apache-2.0
 | |
|  */
 | |
| 
 | |
| #include <assert.h>
 | |
| #include <sys/param.h>
 | |
| #include <string.h>
 | |
| #include "esp_app_desc.h"
 | |
| #include "sdkconfig.h"
 | |
| 
 | |
| #include "esp_log.h"
 | |
| #include "esp_private/startup_internal.h"
 | |
| 
 | |
| static const char *TAG = "app_init";
 | |
| 
 | |
| // Application version info
 | |
| const __attribute__((weak)) __attribute__((section(".rodata_desc")))  esp_app_desc_t esp_app_desc = {
 | |
|     .magic_word = ESP_APP_DESC_MAGIC_WORD,
 | |
| #ifdef CONFIG_APP_EXCLUDE_PROJECT_VER_VAR
 | |
|     .version = "",
 | |
| #else
 | |
|     .version = PROJECT_VER,
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR
 | |
|     .project_name = "",
 | |
| #else
 | |
|     .project_name = PROJECT_NAME,
 | |
| #endif
 | |
|     .idf_ver = IDF_VER,
 | |
| 
 | |
| #ifdef CONFIG_BOOTLOADER_APP_SECURE_VERSION
 | |
|     .secure_version = CONFIG_BOOTLOADER_APP_SECURE_VERSION,
 | |
| #else
 | |
|     .secure_version = 0,
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_APP_COMPILE_TIME_DATE
 | |
|     .time = __TIME__,
 | |
|     .date = __DATE__,
 | |
| #else
 | |
|     .time = "",
 | |
|     .date = "",
 | |
| #endif
 | |
|     .min_efuse_blk_rev_full = CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL,
 | |
|     .max_efuse_blk_rev_full = CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL,
 | |
| };
 | |
| 
 | |
| #ifndef CONFIG_APP_EXCLUDE_PROJECT_VER_VAR
 | |
| _Static_assert(sizeof(PROJECT_VER) <= sizeof(esp_app_desc.version), "PROJECT_VER is longer than version field in structure");
 | |
| #endif
 | |
| _Static_assert(sizeof(IDF_VER) <= sizeof(esp_app_desc.idf_ver), "IDF_VER is longer than idf_ver field in structure");
 | |
| #ifndef CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR
 | |
| _Static_assert(sizeof(PROJECT_NAME) <= sizeof(esp_app_desc.project_name), "PROJECT_NAME is longer than project_name field in structure");
 | |
| #endif
 | |
| 
 | |
| const esp_app_desc_t *esp_app_get_description(void)
 | |
| {
 | |
|     return &esp_app_desc;
 | |
| }
 | |
| 
 | |
| char app_elf_sha256_str[CONFIG_APP_RETRIEVE_LEN_ELF_SHA + 1] = { 0 };
 | |
| 
 | |
| /* The esp_app_desc.app_elf_sha256 should be possible to print in panic handler or core dump during cache is disabled.
 | |
|  * But because the cache is disabled the reading esp_app_desc.app_elf_sha256 is not right and
 | |
|  * can lead to a complete lock-up of the CPU.
 | |
|  * For this reason we do a reading of esp_app_desc.app_elf_sha256 and convert to string while start up in esp_system_init_app_elf_sha256()
 | |
|  * and keep it in the static app_elf_sha256_str variable.
 | |
|  */
 | |
| static void esp_app_format_init_elf_sha256(void)
 | |
| {
 | |
|     if (*((int *)&app_elf_sha256_str) != 0) {
 | |
|         // app_elf_sha256_str is already set
 | |
|         return;
 | |
|     }
 | |
|     // At -O2 optimization level, GCC optimizes out the copying of the first byte of the app_elf_sha256,
 | |
|     // because it is zero at compile time, and only modified afterwards by esptool.
 | |
|     // Casting to volatile disables the optimization.
 | |
|     const volatile char* src = (const volatile char*)esp_app_desc.app_elf_sha256;
 | |
|     for (size_t i = 0; i < sizeof(app_elf_sha256_str) / 2; ++i) {
 | |
|         char c = src[i];
 | |
|         for (size_t s = 0; s < 2; ++s) {
 | |
|             char val = (c >> 4) & 0xF;
 | |
|             app_elf_sha256_str[2 * i + s] = (val < 10) ? ('0' + val) : ('a' + val - 10);
 | |
|             c <<= 4;
 | |
|         }
 | |
|     }
 | |
|     app_elf_sha256_str[sizeof(app_elf_sha256_str) - 1] = 0;
 | |
| }
 | |
| 
 | |
| int esp_app_get_elf_sha256(char* dst, size_t size)
 | |
| {
 | |
|     if (dst == NULL || size < 2) {
 | |
|         return 0;
 | |
|     }
 | |
|     esp_app_format_init_elf_sha256();
 | |
|     size_t n = MIN(size, sizeof(app_elf_sha256_str));
 | |
|     memcpy(dst, app_elf_sha256_str, n);
 | |
|     dst[n - 1] = 0;
 | |
|     return n;
 | |
| }
 | |
| 
 | |
| ESP_SYSTEM_INIT_FN(init_show_app_info, CORE, BIT(0), 20)
 | |
| {
 | |
|     // Load the current ELF SHA256
 | |
|     esp_app_format_init_elf_sha256();
 | |
| 
 | |
|     // Display information about the current running image.
 | |
|     if (LOG_LOCAL_LEVEL >= ESP_LOG_INFO) {
 | |
|         ESP_EARLY_LOGI(TAG, "Application information:");
 | |
| #ifndef CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR
 | |
|         ESP_EARLY_LOGI(TAG, "Project name:     %s", esp_app_desc.project_name);
 | |
| #endif
 | |
| #ifndef CONFIG_APP_EXCLUDE_PROJECT_VER_VAR
 | |
|         ESP_EARLY_LOGI(TAG, "App version:      %s", esp_app_desc.version);
 | |
| #endif
 | |
| #ifdef CONFIG_BOOTLOADER_APP_SECURE_VERSION
 | |
|         ESP_EARLY_LOGI(TAG, "Secure version:   %" PRIu32, esp_app_desc.secure_version);
 | |
| #endif
 | |
| #ifdef CONFIG_APP_COMPILE_TIME_DATE
 | |
|         ESP_EARLY_LOGI(TAG, "Compile time:     %s %s", esp_app_desc.date, esp_app_desc.time);
 | |
| #endif
 | |
|         char buf[17];
 | |
|         esp_app_get_elf_sha256(buf, sizeof(buf));
 | |
|         ESP_EARLY_LOGI(TAG, "ELF file SHA256:  %s...", buf);
 | |
|         ESP_EARLY_LOGI(TAG, "ESP-IDF:          %s", esp_app_desc.idf_ver);
 | |
|     }
 | |
|     return ESP_OK;
 | |
| }
 |