| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |  *  ESP hardware accelerated SHA1/256/512 implementation | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  |  *  based on mbedTLS FIPS-197 compliant version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 2006-2015, ARM Limited, All Rights Reserved | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |  *  Additions Copyright (C) 2016-2020, Espressif Systems (Shanghai) PTE Ltd | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  |  *  SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Licensed under the Apache License, Version 2.0 (the "License"); you may | 
					
						
							|  |  |  |  *  not use this file except in compliance with the License. | 
					
						
							|  |  |  |  *  You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 
					
						
							|  |  |  |  *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  *  See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  *  limitations under the License. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *  The SHA-1 standard was published by NIST in 1993. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  http://www.itl.nist.gov/fipspubs/fip180-1.htm
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <sys/lock.h>
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "esp_log.h"
 | 
					
						
							| 
									
										
										
										
											2022-07-21 19:14:41 +08:00
										 |  |  | #include "esp_memory_utils.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-07 13:08:34 +01:00
										 |  |  | #include "esp_crypto_lock.h"
 | 
					
						
							| 
									
										
										
										
											2021-11-17 17:43:22 +08:00
										 |  |  | #include "esp_attr.h"
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #include "soc/lldesc.h"
 | 
					
						
							| 
									
										
										
										
											2022-02-11 15:30:54 +08:00
										 |  |  | #include "soc/ext_mem_defs.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-07 13:08:34 +01:00
										 |  |  | #include "soc/periph_defs.h"
 | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "freertos/FreeRTOS.h"
 | 
					
						
							|  |  |  | #include "freertos/semphr.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-25 17:13:46 +08:00
										 |  |  | #include "esp_private/periph_ctrl.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | #include "sys/param.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #include "sha/sha_dma.h"
 | 
					
						
							|  |  |  | #include "hal/sha_hal.h"
 | 
					
						
							| 
									
										
										
										
											2020-10-29 10:51:36 +08:00
										 |  |  | #include "soc/soc_caps.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-14 15:25:06 +08:00
										 |  |  | #include "esp_sha_dma_priv.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32S2
 | 
					
						
							|  |  |  | #include "esp32s2/rom/cache.h"
 | 
					
						
							|  |  |  | #elif CONFIG_IDF_TARGET_ESP32S3
 | 
					
						
							|  |  |  | #include "esp32s3/rom/cache.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #elif CONFIG_IDF_TARGET_ESP32C3
 | 
					
						
							|  |  |  | #include "esp32s3/rom/cache.h"
 | 
					
						
							| 
									
										
										
										
											2022-01-18 10:32:56 +08:00
										 |  |  | #elif CONFIG_IDF_TARGET_ESP32C2
 | 
					
						
							|  |  |  | #include "esp32c2/rom/cache.h"
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-14 15:25:06 +08:00
										 |  |  | #if SOC_SHA_GDMA
 | 
					
						
							| 
									
										
										
										
											2021-02-25 15:06:41 +08:00
										 |  |  | #define SHA_LOCK() esp_crypto_sha_aes_lock_acquire()
 | 
					
						
							|  |  |  | #define SHA_RELEASE() esp_crypto_sha_aes_lock_release()
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #elif SOC_SHA_CRYPTO_DMA
 | 
					
						
							|  |  |  | #define SHA_LOCK() esp_crypto_dma_lock_acquire()
 | 
					
						
							|  |  |  | #define SHA_RELEASE() esp_crypto_dma_lock_release()
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | const static char *TAG = "esp-sha"; | 
					
						
							| 
									
										
										
										
											2022-03-31 15:07:51 +08:00
										 |  |  | static bool s_check_dma_capable(const void *p); | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-17 17:43:22 +08:00
										 |  |  | /* These are static due to:
 | 
					
						
							|  |  |  |  *  * Must be in DMA capable memory, so stack is not a safe place to put them | 
					
						
							|  |  |  |  *  * To avoid having to malloc/free them for every DMA operation | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static DRAM_ATTR lldesc_t s_dma_descr_input; | 
					
						
							|  |  |  | static DRAM_ATTR lldesc_t s_dma_descr_buf; | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void esp_sha_write_digest_state(esp_sha_type sha_type, void *digest_state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     sha_hal_write_digest(sha_type, digest_state); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void esp_sha_read_digest_state(esp_sha_type sha_type, void *digest_state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     sha_hal_read_digest(sha_type, digest_state); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | /* Return block size (in bytes) for a given SHA type */ | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | inline static size_t block_length(esp_sha_type type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (type) { | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  |     case SHA1: | 
					
						
							|  |  |  |     case SHA2_224: | 
					
						
							|  |  |  |     case SHA2_256: | 
					
						
							|  |  |  |         return 64; | 
					
						
							| 
									
										
										
										
											2020-12-22 19:37:59 +08:00
										 |  |  | #if SOC_SHA_SUPPORT_SHA384
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  |     case SHA2_384: | 
					
						
							| 
									
										
										
										
											2020-12-22 19:37:59 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if SOC_SHA_SUPPORT_SHA512
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  |     case SHA2_512: | 
					
						
							| 
									
										
										
										
											2020-12-22 19:37:59 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if SOC_SHA_SUPPORT_SHA512_T
 | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  |     case SHA2_512224: | 
					
						
							|  |  |  |     case SHA2_512256: | 
					
						
							|  |  |  |     case SHA2_512T: | 
					
						
							| 
									
										
										
										
											2020-12-22 19:37:59 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  |         return 128; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | /* Enable SHA peripheral and then lock it */ | 
					
						
							|  |  |  | void esp_sha_acquire_hardware() | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     SHA_LOCK(); /* Released when releasing hw with esp_sha_release_hardware() */ | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     /* Enable SHA and DMA hardware */ | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #if SOC_SHA_CRYPTO_DMA
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     periph_module_enable(PERIPH_SHA_DMA_MODULE); | 
					
						
							| 
									
										
										
										
											2021-01-14 15:25:06 +08:00
										 |  |  | #elif SOC_SHA_GDMA
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     periph_module_enable(PERIPH_SHA_MODULE); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | /* Disable SHA peripheral block and then release it */ | 
					
						
							|  |  |  | void esp_sha_release_hardware() | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     /* Disable SHA and DMA hardware */ | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #if SOC_SHA_CRYPTO_DMA
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     periph_module_disable(PERIPH_SHA_DMA_MODULE); | 
					
						
							| 
									
										
										
										
											2021-01-14 15:25:06 +08:00
										 |  |  | #elif SOC_SHA_GDMA
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     periph_module_disable(PERIPH_SHA_MODULE); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     SHA_RELEASE(); | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #if SOC_SHA_SUPPORT_SHA512_T
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | /* The initial hash value for SHA512/t is generated according to the
 | 
					
						
							|  |  |  |    algorithm described in the TRM, chapter SHA-Accelerator | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | int esp_sha_512_t_init_hash(uint16_t t) | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     uint32_t t_string = 0; | 
					
						
							|  |  |  |     uint8_t t0, t1, t2, t_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (t == 384) { | 
					
						
							|  |  |  |         ESP_LOGE(TAG, "Invalid t for SHA512/t, t = %u,cannot be 384", t); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (t <= 9) { | 
					
						
							|  |  |  |         t_string = (uint32_t)((1 << 23) | ((0x30 + t) << 24)); | 
					
						
							|  |  |  |         t_len = 0x48; | 
					
						
							|  |  |  |     } else if (t <= 99) { | 
					
						
							|  |  |  |         t0 = t % 10; | 
					
						
							|  |  |  |         t1 = (t / 10) % 10; | 
					
						
							|  |  |  |         t_string = (uint32_t)((1 << 15) | ((0x30 + t0) << 16) | | 
					
						
							|  |  |  |                               (((0x30 + t1) << 24))); | 
					
						
							|  |  |  |         t_len = 0x50; | 
					
						
							|  |  |  |     } else if (t <= 512) { | 
					
						
							|  |  |  |         t0 = t % 10; | 
					
						
							|  |  |  |         t1 = (t / 10) % 10; | 
					
						
							|  |  |  |         t2 = t / 100; | 
					
						
							|  |  |  |         t_string = (uint32_t)((1 << 7) | ((0x30 + t0) << 8) | | 
					
						
							|  |  |  |                               (((0x30 + t1) << 16) + ((0x30 + t2) << 24))); | 
					
						
							|  |  |  |         t_len = 0x58; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         ESP_LOGE(TAG, "Invalid t for SHA512/t, t = %u, must equal or less than 512", t); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     sha_hal_sha512_init_hash(t_string, t_len); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  | #endif //SOC_SHA_SUPPORT_SHA512_T
 | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Hash the input block by block, using non-DMA mode */ | 
					
						
							|  |  |  | static void esp_sha_block_mode(esp_sha_type sha_type, const uint8_t *input, uint32_t ilen, | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |                                const uint8_t *buf, uint32_t buf_len, bool is_first_block) | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t blk_len = 0; | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     size_t blk_word_len = 0; | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |     int num_block = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     blk_len = block_length(sha_type); | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     blk_word_len =  blk_len / 4; | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |     num_block = ilen / blk_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (buf_len != 0) { | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |         sha_hal_hash_block(sha_type, buf, blk_word_len, is_first_block); | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |         is_first_block = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (int i = 0; i < num_block; i++) { | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |         sha_hal_hash_block(sha_type, input + blk_len * i, blk_word_len, is_first_block); | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |         is_first_block = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int esp_sha_dma_process(esp_sha_type sha_type, const void *input, uint32_t ilen, | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |                                const void *buf, uint32_t buf_len, bool is_first_block); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Performs SHA on multiple blocks at a time using DMA
 | 
					
						
							|  |  |  |    splits up into smaller operations for inputs that exceed a single DMA list | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int esp_sha_dma(esp_sha_type sha_type, const void *input, uint32_t ilen, | 
					
						
							|  |  |  |                 const void *buf, uint32_t buf_len, bool is_first_block) | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |     unsigned char *dma_cap_buf = NULL; | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |     if (buf_len > block_length(sha_type)) { | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |         ESP_LOGE(TAG, "SHA DMA buf_len cannot exceed max size for a single block"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     /* DMA cannot access memory in flash, hash block by block instead of using DMA */ | 
					
						
							| 
									
										
										
										
											2022-03-31 15:07:51 +08:00
										 |  |  |     if (!s_check_dma_capable(input) && (ilen != 0)) { | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |         esp_sha_block_mode(sha_type, input, ilen, buf, buf_len, is_first_block); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 13:45:36 +08:00
										 |  |  | #if (CONFIG_SPIRAM && SOC_PSRAM_DMA_CAPABLE)
 | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |     if (esp_ptr_external_ram(input)) { | 
					
						
							|  |  |  |         Cache_WriteBack_Addr((uint32_t)input, ilen); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (esp_ptr_external_ram(buf)) { | 
					
						
							|  |  |  |         Cache_WriteBack_Addr((uint32_t)buf, buf_len); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |     /* Copy to internal buf if buf is in non DMA capable memory */ | 
					
						
							| 
									
										
										
										
											2022-03-31 15:07:51 +08:00
										 |  |  |     if (!s_check_dma_capable(buf) && (buf_len != 0)) { | 
					
						
							| 
									
										
										
										
											2020-11-18 12:22:47 +08:00
										 |  |  |         dma_cap_buf = heap_caps_malloc(sizeof(unsigned char) * buf_len, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL); | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |         if (dma_cap_buf == NULL) { | 
					
						
							| 
									
										
										
										
											2020-03-16 19:29:59 +08:00
										 |  |  |             ESP_LOGE(TAG, "Failed to allocate buf memory"); | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |             ret = -1; | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |             goto cleanup; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |         memcpy(dma_cap_buf, buf, buf_len); | 
					
						
							|  |  |  |         buf = dma_cap_buf; | 
					
						
							| 
									
										
										
										
											2020-03-31 10:54:22 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-26 15:31:12 +05:30
										 |  |  |     uint32_t dma_op_num; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ilen > 0) { | 
					
						
							|  |  |  |         /* Number of DMA operations based on maximum chunk size in single operation */ | 
					
						
							|  |  |  |         dma_op_num = (ilen + SOC_SHA_DMA_MAX_BUFFER_SIZE - 1) / SOC_SHA_DMA_MAX_BUFFER_SIZE; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /* For zero input length, we must allow at-least 1 DMA operation to see
 | 
					
						
							|  |  |  |          * if there is any pending data that is yet to be copied out */ | 
					
						
							|  |  |  |         dma_op_num = 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-31 10:54:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     /* The max amount of blocks in a single hardware operation is 2^6 - 1 = 63
 | 
					
						
							|  |  |  |        Thus we only do a single DMA input list + dma buf list, | 
					
						
							|  |  |  |        which is max 3968/64 + 64/64 = 63 blocks */ | 
					
						
							|  |  |  |     for (int i = 0; i < dma_op_num; i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |         int dma_chunk_len = MIN(ilen, SOC_SHA_DMA_MAX_BUFFER_SIZE); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |         ret = esp_sha_dma_process(sha_type, input, dma_chunk_len, buf, buf_len, is_first_block); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2020-03-31 10:54:22 +08:00
										 |  |  |             goto cleanup; | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |         ilen -= dma_chunk_len; | 
					
						
							| 
									
										
										
										
											2022-11-18 15:29:39 +03:00
										 |  |  |         input = (uint8_t *)input + dma_chunk_len; | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |         // Only append buf to the first operation
 | 
					
						
							|  |  |  |         buf_len = 0; | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |         is_first_block = false; | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2020-04-08 16:37:51 +08:00
										 |  |  |     free(dma_cap_buf); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Performs SHA on multiple blocks at a time */ | 
					
						
							|  |  |  | static esp_err_t esp_sha_dma_process(esp_sha_type sha_type, const void *input, uint32_t ilen, | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |                                      const void *buf, uint32_t buf_len, bool is_first_block) | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     lldesc_t *dma_descr_head; | 
					
						
							| 
									
										
										
										
											2020-08-13 16:30:59 +08:00
										 |  |  |     size_t num_blks = (ilen + buf_len) / block_length(sha_type); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-17 17:43:22 +08:00
										 |  |  |     memset(&s_dma_descr_input, 0, sizeof(lldesc_t)); | 
					
						
							|  |  |  |     memset(&s_dma_descr_buf, 0, sizeof(lldesc_t)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     /* DMA descriptor for Memory to DMA-SHA transfer */ | 
					
						
							|  |  |  |     if (ilen) { | 
					
						
							| 
									
										
										
										
											2021-11-17 17:43:22 +08:00
										 |  |  |         s_dma_descr_input.length = ilen; | 
					
						
							|  |  |  |         s_dma_descr_input.size = ilen; | 
					
						
							|  |  |  |         s_dma_descr_input.owner = 1; | 
					
						
							|  |  |  |         s_dma_descr_input.eof = 1; | 
					
						
							|  |  |  |         s_dma_descr_input.buf = (uint8_t *)input; | 
					
						
							|  |  |  |         dma_descr_head = &s_dma_descr_input; | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     /* Check after input to overide head if there is any buf*/ | 
					
						
							|  |  |  |     if (buf_len) { | 
					
						
							| 
									
										
										
										
											2021-11-17 17:43:22 +08:00
										 |  |  |         s_dma_descr_buf.length = buf_len; | 
					
						
							|  |  |  |         s_dma_descr_buf.size = buf_len; | 
					
						
							|  |  |  |         s_dma_descr_buf.owner = 1; | 
					
						
							|  |  |  |         s_dma_descr_buf.eof = 1; | 
					
						
							|  |  |  |         s_dma_descr_buf.buf = (uint8_t *)buf; | 
					
						
							|  |  |  |         dma_descr_head = &s_dma_descr_buf; | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Link DMA lists */ | 
					
						
							|  |  |  |     if (buf_len && ilen) { | 
					
						
							| 
									
										
										
										
											2021-11-17 17:43:22 +08:00
										 |  |  |         s_dma_descr_buf.eof = 0; | 
					
						
							|  |  |  |         s_dma_descr_buf.empty = (uint32_t)(&s_dma_descr_input); | 
					
						
							| 
									
										
										
										
											2020-01-16 14:31:10 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-14 15:25:06 +08:00
										 |  |  |     if (esp_sha_dma_start(dma_descr_head) != ESP_OK) { | 
					
						
							|  |  |  |         ESP_LOGE(TAG, "esp_sha_dma_start failed, no DMA channel available"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sha_hal_hash_dma(sha_type, num_blks, is_first_block); | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 12:22:47 +08:00
										 |  |  |     sha_hal_wait_idle(); | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-26 15:25:24 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2019-05-10 11:34:06 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-03-31 15:07:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static bool s_check_dma_capable(const void *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     bool is_capable = false; | 
					
						
							|  |  |  | #if CONFIG_SPIRAM
 | 
					
						
							|  |  |  |     is_capable |= esp_ptr_dma_ext_capable(p); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     is_capable |= esp_ptr_dma_capable(p); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return is_capable; | 
					
						
							|  |  |  | } |