forked from espressif/esp-idf
feat(mbedtls/sha): Support in AXI-DMA SHA driver layer
This commit is contained in:
@@ -27,7 +27,7 @@ extern "C" {
|
|||||||
* GDMA_TRIG_PERIPH_SHA
|
* GDMA_TRIG_PERIPH_SHA
|
||||||
* @return esp_err_t ESP_FAIL if no GDMA channel available
|
* @return esp_err_t ESP_FAIL if no GDMA channel available
|
||||||
*/
|
*/
|
||||||
esp_err_t esp_crypto_shared_gdma_start(const lldesc_t *input, const lldesc_t *output, gdma_trigger_peripheral_t peripheral);
|
esp_err_t esp_crypto_shared_gdma_start(const lldesc_t *input, const lldesc_t *output, gdma_trigger_peripheral_t peripheral) __attribute__((deprecated("use esp_crypto_shared_gdma_start_axi_ahb instead")));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Start a GDMA transfer on the shared crypto DMA channel
|
* @brief Start a GDMA transfer on the shared crypto DMA channel
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
#include "hal/crypto_dma_ll.h"
|
#include "hal/crypto_dma_ll.h"
|
||||||
|
|
||||||
|
|
||||||
esp_err_t esp_sha_dma_start(const lldesc_t *input)
|
esp_err_t esp_sha_dma_start(const crypto_dma_desc_t *input)
|
||||||
{
|
{
|
||||||
crypto_dma_ll_set_mode(CRYPTO_DMA_SHA);
|
crypto_dma_ll_set_mode(CRYPTO_DMA_SHA);
|
||||||
crypto_dma_ll_reset();
|
crypto_dma_ll_reset();
|
||||||
|
@@ -7,7 +7,7 @@
|
|||||||
#include "esp_sha_dma_priv.h"
|
#include "esp_sha_dma_priv.h"
|
||||||
#include "esp_crypto_shared_gdma.h"
|
#include "esp_crypto_shared_gdma.h"
|
||||||
|
|
||||||
esp_err_t esp_sha_dma_start(const lldesc_t *input)
|
esp_err_t esp_sha_dma_start(const crypto_dma_desc_t *input)
|
||||||
{
|
{
|
||||||
return esp_crypto_shared_gdma_start(input, NULL, GDMA_TRIG_PERIPH_SHA);
|
return esp_crypto_shared_gdma_start_axi_ahb(input, NULL, GDMA_TRIG_PERIPH_SHA);
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,13 @@
|
|||||||
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
/*
|
||||||
//
|
* SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
*
|
||||||
// you may not use this file except in compliance with the License.
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
// 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.
|
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "soc/lldesc.h"
|
|
||||||
#include "soc/soc_caps.h"
|
#include "soc/soc_caps.h"
|
||||||
|
#include "esp_crypto_dma.h"
|
||||||
#include "esp_err.h"
|
#include "esp_err.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
@@ -30,7 +22,7 @@ extern "C" {
|
|||||||
* - ESP_OK: Successfully started the DMA
|
* - ESP_OK: Successfully started the DMA
|
||||||
* - ESP_ERR_INVALID_STATE: No DMA channel available
|
* - ESP_ERR_INVALID_STATE: No DMA channel available
|
||||||
*/
|
*/
|
||||||
esp_err_t esp_sha_dma_start(const lldesc_t *input);
|
esp_err_t esp_sha_dma_start(const crypto_dma_desc_t *input);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@@ -33,7 +33,7 @@
|
|||||||
#include "esp_memory_utils.h"
|
#include "esp_memory_utils.h"
|
||||||
#include "esp_crypto_lock.h"
|
#include "esp_crypto_lock.h"
|
||||||
#include "esp_attr.h"
|
#include "esp_attr.h"
|
||||||
#include "soc/lldesc.h"
|
#include "esp_crypto_dma.h"
|
||||||
#include "esp_cache.h"
|
#include "esp_cache.h"
|
||||||
#include "soc/ext_mem_defs.h"
|
#include "soc/ext_mem_defs.h"
|
||||||
#include "soc/periph_defs.h"
|
#include "soc/periph_defs.h"
|
||||||
@@ -58,14 +58,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
const static char *TAG = "esp-sha";
|
const static char *TAG = "esp-sha";
|
||||||
static bool s_check_dma_capable(const void *p);
|
|
||||||
|
|
||||||
/* 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;
|
|
||||||
|
|
||||||
void esp_sha_write_digest_state(esp_sha_type sha_type, void *digest_state)
|
void esp_sha_write_digest_state(esp_sha_type sha_type, void *digest_state)
|
||||||
{
|
{
|
||||||
@@ -129,6 +121,16 @@ void esp_sha_release_hardware()
|
|||||||
SHA_RELEASE();
|
SHA_RELEASE();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
/* Hash the input block by block, using non-DMA mode */
|
/* 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,
|
static void esp_sha_block_mode(esp_sha_type sha_type, const uint8_t *input, uint32_t ilen,
|
||||||
@@ -153,10 +155,60 @@ static void esp_sha_block_mode(esp_sha_type sha_type, const uint8_t *input, uint
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 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 crypto_dma_desc_t s_dma_descr_input;
|
||||||
|
static DRAM_ATTR crypto_dma_desc_t s_dma_descr_buf;
|
||||||
|
|
||||||
|
/* 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,
|
||||||
|
const void *buf, uint32_t buf_len, bool is_first_block)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
crypto_dma_desc_t *dma_descr_head = NULL;
|
||||||
|
size_t num_blks = (ilen + buf_len) / block_length(sha_type);
|
||||||
|
|
||||||
static int esp_sha_dma_process(esp_sha_type sha_type, const void *input, uint32_t ilen,
|
memset(&s_dma_descr_input, 0, sizeof(crypto_dma_desc_t));
|
||||||
const void *buf, uint32_t buf_len, bool is_first_block);
|
memset(&s_dma_descr_buf, 0, sizeof(crypto_dma_desc_t));
|
||||||
|
|
||||||
|
/* DMA descriptor for Memory to DMA-SHA transfer */
|
||||||
|
if (ilen) {
|
||||||
|
s_dma_descr_input.dw0.length = ilen;
|
||||||
|
s_dma_descr_input.dw0.size = ilen;
|
||||||
|
s_dma_descr_input.dw0.owner = 1;
|
||||||
|
s_dma_descr_input.dw0.suc_eof = 1;
|
||||||
|
s_dma_descr_input.buffer = (void *) input;
|
||||||
|
dma_descr_head = &s_dma_descr_input;
|
||||||
|
}
|
||||||
|
/* Check after input to overide head if there is any buf*/
|
||||||
|
if (buf_len) {
|
||||||
|
s_dma_descr_buf.dw0.length = buf_len;
|
||||||
|
s_dma_descr_buf.dw0.size = buf_len;
|
||||||
|
s_dma_descr_buf.dw0.owner = 1;
|
||||||
|
s_dma_descr_buf.dw0.suc_eof = 1;
|
||||||
|
s_dma_descr_buf.buffer = (void *) buf;
|
||||||
|
dma_descr_head = &s_dma_descr_buf;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Link DMA lists */
|
||||||
|
if (buf_len && ilen) {
|
||||||
|
s_dma_descr_buf.dw0.suc_eof = 0;
|
||||||
|
s_dma_descr_buf.next = (&s_dma_descr_input);
|
||||||
|
}
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
|
sha_hal_wait_idle();
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
/* Performs SHA on multiple blocks at a time using DMA
|
/* Performs SHA on multiple blocks at a time using DMA
|
||||||
splits up into smaller operations for inputs that exceed a single DMA list
|
splits up into smaller operations for inputs that exceed a single DMA list
|
||||||
@@ -235,63 +287,3 @@ cleanup:
|
|||||||
free(dma_cap_buf);
|
free(dma_cap_buf);
|
||||||
return ret;
|
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,
|
|
||||||
const void *buf, uint32_t buf_len, bool is_first_block)
|
|
||||||
{
|
|
||||||
int ret = 0;
|
|
||||||
lldesc_t *dma_descr_head = NULL;
|
|
||||||
size_t num_blks = (ilen + buf_len) / block_length(sha_type);
|
|
||||||
|
|
||||||
memset(&s_dma_descr_input, 0, sizeof(lldesc_t));
|
|
||||||
memset(&s_dma_descr_buf, 0, sizeof(lldesc_t));
|
|
||||||
|
|
||||||
/* DMA descriptor for Memory to DMA-SHA transfer */
|
|
||||||
if (ilen) {
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
/* Check after input to overide head if there is any buf*/
|
|
||||||
if (buf_len) {
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Link DMA lists */
|
|
||||||
if (buf_len && ilen) {
|
|
||||||
s_dma_descr_buf.eof = 0;
|
|
||||||
s_dma_descr_buf.empty = (uint32_t)(&s_dma_descr_input);
|
|
||||||
}
|
|
||||||
|
|
||||||
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);
|
|
||||||
|
|
||||||
sha_hal_wait_idle();
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
@@ -519,7 +519,6 @@ components/mbedtls/port/include/sha/sha_parallel_engine.h
|
|||||||
components/mbedtls/port/include/sha1_alt.h
|
components/mbedtls/port/include/sha1_alt.h
|
||||||
components/mbedtls/port/include/sha256_alt.h
|
components/mbedtls/port/include/sha256_alt.h
|
||||||
components/mbedtls/port/include/sha512_alt.h
|
components/mbedtls/port/include/sha512_alt.h
|
||||||
components/mbedtls/port/sha/dma/include/esp_sha_dma_priv.h
|
|
||||||
components/mbedtls/port/sha/dma/sha.c
|
components/mbedtls/port/sha/dma/sha.c
|
||||||
components/mbedtls/port/sha/parallel_engine/sha.c
|
components/mbedtls/port/sha/parallel_engine/sha.c
|
||||||
components/nvs_flash/include/nvs_handle.hpp
|
components/nvs_flash/include/nvs_handle.hpp
|
||||||
|
Reference in New Issue
Block a user