Home
last modified time | relevance | path

Searched refs:data_words (Results 1 – 10 of 10) sorted by relevance

/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dstub_flasher.c184 uint32_t *data_words = (uint32_t *)command->data_buf; in cmd_loop() local
198 resp.value = READ_REG(data_words[0]); in cmd_loop()
264 error = verify_data_len(command, 8) || handle_flash_erase(data_words[0], data_words[1]); in cmd_loop()
279 error = verify_data_len(command, 16) || handle_flash_get_md5sum(data_words[0], data_words[1]); in cmd_loop()
288 if (command->data_len == 16 && data_words[2] > MAX_WRITE_BLOCK) { in cmd_loop()
291 … error = verify_data_len(command, 16) || handle_flash_begin(data_words[0], data_words[3]); in cmd_loop()
301 if (command->data_len == 16 && data_words[2] > MAX_WRITE_BLOCK) { in cmd_loop()
304 …len(command, 16) || handle_flash_deflated_begin(data_words[0], data_words[1] * data_words[2], data… in cmd_loop()
318 if (data_words[0] != payload_len) { in cmd_loop()
337 error = verify_data_len(command, 24) || handle_spi_set_params(data_words, &status); in cmd_loop()
[all …]
Dstub_commands.c221 uint32_t *data_words = (uint32_t *)data; in handle_mem_data() local
233 *mem_offset++ = *data_words++; in handle_mem_data()
/hal_espressif-latest/components/hal/esp32/include/hal/
Dsha_ll.h115 uint32_t *data_words = NULL; in sha_ll_fill_text_block() local
117 data_words = (uint32_t *)input_text; in sha_ll_fill_text_block()
119 reg_addr_buf[i] = HAL_SWAP32(data_words[i]); in sha_ll_fill_text_block()
/hal_espressif-latest/components/hal/esp32s2/include/hal/
Dsha_ll.h112 uint32_t *data_words = (uint32_t *)input_text; in sha_ll_fill_text_block() local
116 REG_WRITE(&reg_addr_buf[i], data_words[i]); in sha_ll_fill_text_block()
/hal_espressif-latest/components/hal/esp32s3/include/hal/
Dsha_ll.h112 uint32_t *data_words = (uint32_t *)input_text; in sha_ll_fill_text_block() local
116 REG_WRITE(&reg_addr_buf[i], data_words[i]); in sha_ll_fill_text_block()
/hal_espressif-latest/components/hal/esp32c6/include/hal/
Dsha_ll.h103 uint32_t *data_words = (uint32_t *)input_text; in sha_ll_fill_text_block() local
107 REG_WRITE(&reg_addr_buf[i], data_words[i]); in sha_ll_fill_text_block()
/hal_espressif-latest/components/hal/esp32c2/include/hal/
Dsha_ll.h103 uint32_t *data_words = (uint32_t *)input_text; in sha_ll_fill_text_block() local
107 REG_WRITE(&reg_addr_buf[i], data_words[i]); in sha_ll_fill_text_block()
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Dsha_ll.h111 uint32_t *data_words = (uint32_t *)input_text; in sha_ll_fill_text_block() local
115 REG_WRITE(&reg_addr_buf[i], data_words[i]); in sha_ll_fill_text_block()
/hal_espressif-latest/components/hal/esp32h2/include/hal/
Dsha_ll.h103 uint32_t *data_words = (uint32_t *)input_text; in sha_ll_fill_text_block() local
107 REG_WRITE(&reg_addr_buf[i], data_words[i]); in sha_ll_fill_text_block()
/hal_espressif-latest/components/bootloader_support/src/esp32/
Dbootloader_sha.c81 uint32_t data_words = words_hashed; in bootloader_sha256_finish() local
101 uint32_t bit_count = __builtin_bswap32( data_words * 32 ); in bootloader_sha256_finish()