Home
last modified time | relevance | path

Searched refs:part (Results 1 – 25 of 42) sorted by relevance

12

/hal_espressif-latest/components/bootloader_support/src/
Dflash_partitions.c22 const esp_partition_info_t *part = &partition_table[num_parts]; in esp_partition_table_verify() local
24 if (part->magic == ESP_PARTITION_MAGIC) { in esp_partition_table_verify()
25 const esp_partition_pos_t *pos = &part->pos; in esp_partition_table_verify()
33 } else if (part->magic == ESP_PARTITION_MAGIC_MD5) { in esp_partition_table_verify()
47 unsigned char *md5sum = ((unsigned char *) part) + ESP_PARTITION_MD5_OFFSET; in esp_partition_table_verify()
58 } else if (part->magic == 0xFFFF in esp_partition_table_verify()
59 && part->type == PART_TYPE_END in esp_partition_table_verify()
60 && part->subtype == PART_SUBTYPE_END) { in esp_partition_table_verify()
66 ESP_LOGE(TAG, "partition %d invalid magic number 0x%x", num_parts, part->magic); in esp_partition_table_verify()
Desp_image_format.c124 static esp_err_t image_load(esp_image_load_mode_t mode, const esp_partition_pos_t *part, esp_image_… in image_load() argument
146 if (data == NULL || part == NULL) { in image_load()
157 verify_sha = (part->offset != ESP_BOOTLOADER_OFFSET) && do_verify; in image_load()
160 if (part->size > SIXTEEN_MB) { in image_load()
162 FAIL_LOAD("partition size 0x%"PRIx32" invalid, larger than 16MB", part->size); in image_load()
166 …CHECK_ERR(process_image_header(data, part->offset, (verify_sha) ? p_sha_handle : NULL, do_verify, … in image_load()
170 CHECK_ERR(process_appended_hash_and_sig(data, part->offset, part->size, do_verify, silent)); in image_load()
271 esp_err_t bootloader_load_image(const esp_partition_pos_t *part, esp_image_metadata_t *data) in bootloader_load_image() argument
293 return image_load(mode, part, data); in bootloader_load_image()
297 esp_err_t bootloader_load_image_no_verify(const esp_partition_pos_t *part, esp_image_metadata_t *da… in bootloader_load_image_no_verify() argument
[all …]
Dbootloader_utility.c518 esp_partition_pos_t part; local
532 part = index_to_partition(bs, index);
533 if (part.size == 0) {
536 ESP_LOGD(TAG, TRY_LOG_FORMAT, index, part.offset, part.size);
537 if (check_anti_rollback(&part) && try_load_partition(&part, &image_data)) {
546 part = index_to_partition(bs, index);
547 if (part.size == 0) {
550 ESP_LOGD(TAG, TRY_LOG_FORMAT, index, part.offset, part.size);
551 if (check_anti_rollback(&part) && try_load_partition(&part, &image_data)) {
/hal_espressif-latest/components/bootloader_support/include/
Desp_image_format.h113 esp_err_t esp_image_verify(esp_image_load_mode_t mode, const esp_partition_pos_t *part, esp_image_m…
127 esp_err_t esp_image_get_metadata(const esp_partition_pos_t *part, esp_image_metadata_t *metadata);
153 esp_err_t bootloader_load_image(const esp_partition_pos_t *part, esp_image_metadata_t *data);
171 esp_err_t bootloader_load_image_no_verify(const esp_partition_pos_t *part, esp_image_metadata_t *da…
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/
DKconfig.memory14 … If this option is disabled, the DRAM part of the heap starts right after the .bss section,
18 … If this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/
DKconfig.memory14 … If this option is disabled, the DRAM part of the heap starts right after the .bss section,
18 … If this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,
/hal_espressif-latest/components/esp_system/port/soc/esp32/
DKconfig.memory17 … If this option is disabled, the DRAM part of the heap starts right after the .bss section,
21 … If this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,
/hal_espressif-latest/components/esp_psram/
Dproject_include.cmake3 # are not part of the ESP-IDF build system (for cases where a generic
/hal_espressif-latest/components/bootloader/subproject/main/ld/esp32s2/
Dbootloader.ld13 …iram_seg (RWX) : org = 0x4004B000, len = 0x4000 /* SRAM part of block 12 and 13 …
14 …g (RWX) : org = 0x4004F000, len = 0x7000 /* SRAM part of block 13, Block 14 & part of 1…
/hal_espressif-latest/components/bt/esp_ble_mesh/
DREADME.md5 This component is a part of Espressif IoT Development Framework (ESP-IDF). For the latest documenta…
/hal_espressif-latest/zephyr/blobs/
Dlicense.txt104 excluding those notices that do not pertain to any part of
107 (d) If the Work includes a "NOTICE" text file as part of its
111 pertain to any part of the Derivative Works, in at least one
113 as part of the Derivative Works; within the Source form or
/hal_espressif-latest/
DLICENSE104 excluding those notices that do not pertain to any part of
107 (d) If the Work includes a "NOTICE" text file as part of its
111 pertain to any part of the Derivative Works, in at least one
113 as part of the Derivative Works; within the Source form or
/hal_espressif-latest/tools/esptool_py/esptool/targets/stub_flasher/2/
DLICENSE-APACHE103 excluding those notices that do not pertain to any part of
106 (d) If the Work includes a "NOTICE" text file as part of its
110 pertain to any part of the Derivative Works, in at least one
112 as part of the Derivative Works; within the Source form or
/hal_espressif-latest/components/wpa_supplicant/src/wps/
Dwps_common.c308 void wps_pwd_auth_fail_event(struct wps_context *wps, int enrollee, int part, in wps_pwd_auth_fail_event() argument
318 data.pwd_auth_fail.part = part; in wps_pwd_auth_fail_event()
Dwps_i.h145 void wps_pwd_auth_fail_event(struct wps_context *wps, int enrollee, int part,
Dwps.h570 int part; member
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dadvanced-commands.rst142 …The ``chip_id`` command allows you to read a 4 byte ID which forms part of the MAC address. It is …
165 …In general, it is better to create an ELF image (including any binary data as part of the ELF, by …
/hal_espressif-latest/components/esp_system/
DKconfig138 for the instruction part (below given splitting address) and Read/Write permissions
139 for the data part (above the splitting address). The memory protection is effective
150 for the instruction part (below given splitting address) and Read/Write permissions
151 for the data part (above the splitting address). The memory protection is effective
561 … (2). For special workflow, the chip needs do more things instead of restarting directly. This part
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/inc/
Dsummary_ESP32-P4.rst45 BLOCK_SYS_DATA1 (BLOCK2) System data part 1
49 BLOCK_SYS_DATA2 (BLOCK10) System data part 2 (reserved)
Dsummary_ESP32-C6.rst25 BLOCK_SYS_DATA2 (BLOCK10) System data part 2 (reserved)
Dsummary_ESP32-H2.rst27 BLOCK_SYS_DATA2 (BLOCK10) System data part 2 (reserved)
Dsummary_ESP32-C3.rst39 BLOCK_SYS_DATA2 (BLOCK10) System data part 2 (reserved)
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dburn-key-cmd.rst103 … flash encryption key. The 128 bits of this key will be burned to the low part of the eFuse block.…
104 …EST. Secure boot key. The first 128 bits of key will be burned to the high part of the eFuse block.
109 …2. only Flash encryption (low 128 bits of eFuse block), rest part of eFuse block is not possible t…
/hal_espressif-latest/tools/esptool_py/
DLICENSE99 whole or in part contains or is derived from the Program or any
100 part thereof, to be licensed as a whole at no charge to all third
119 distribute the same sections as part of a whole which is a work based
122 entire whole, and thus to each and every part regardless of who wrote it.
/hal_espressif-latest/components/esp_rom/
DCMakeLists.txt70 # only the 'name' part is different for each script

12