mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
983cca8b27
Copy the esp32c3 code without any change: * components/driver/esp32h2 * components/esp32h2 * components/hal/esp32h2 * components/soc/esp32h2
158 lines
4.1 KiB
C
158 lines
4.1 KiB
C
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// 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.
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "soc/hwcrypto_reg.h"
|
|
#include "hal/sha_types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @brief Start a new SHA block conversions (no initial hash in HW)
|
|
*
|
|
* @param sha_type The SHA algorithm type
|
|
*/
|
|
static inline void sha_ll_start_block(esp_sha_type sha_type)
|
|
{
|
|
REG_WRITE(SHA_MODE_REG, sha_type);
|
|
REG_WRITE(SHA_START_REG, 1);
|
|
}
|
|
|
|
/**
|
|
* @brief Continue a SHA block conversion (initial hash in HW)
|
|
*
|
|
* @param sha_type The SHA algorithm type
|
|
*/
|
|
static inline void sha_ll_continue_block(esp_sha_type sha_type)
|
|
{
|
|
REG_WRITE(SHA_MODE_REG, sha_type);
|
|
REG_WRITE(SHA_CONTINUE_REG, 1);
|
|
}
|
|
|
|
/**
|
|
* @brief Start a new SHA message conversion using DMA (no initial hash in HW)
|
|
*
|
|
* @param sha_type The SHA algorithm type
|
|
*/
|
|
static inline void sha_ll_start_dma(esp_sha_type sha_type)
|
|
{
|
|
REG_WRITE(SHA_MODE_REG, sha_type);
|
|
REG_WRITE(SHA_DMA_START_REG, 1);
|
|
}
|
|
|
|
/**
|
|
* @brief Continue a SHA message conversion using DMA (initial hash in HW)
|
|
*
|
|
* @param sha_type The SHA algorithm type
|
|
*/
|
|
static inline void sha_ll_continue_dma(esp_sha_type sha_type)
|
|
{
|
|
REG_WRITE(SHA_MODE_REG, sha_type);
|
|
REG_WRITE(SHA_DMA_CONTINUE_REG, 1);
|
|
}
|
|
|
|
/**
|
|
* @brief Load the current hash digest to digest register
|
|
*
|
|
* @note Happens automatically on ESP32S3
|
|
*
|
|
* @param sha_type The SHA algorithm type
|
|
*/
|
|
static inline void sha_ll_load(esp_sha_type sha_type)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief Sets the number of message blocks to be hashed
|
|
*
|
|
* @note DMA operation only
|
|
*
|
|
* @param num_blocks Number of message blocks to process
|
|
*/
|
|
static inline void sha_ll_set_block_num(size_t num_blocks)
|
|
{
|
|
REG_WRITE(SHA_BLOCK_NUM_REG, num_blocks);
|
|
}
|
|
|
|
/**
|
|
* @brief Checks if the SHA engine is currently busy hashing a block
|
|
*
|
|
* @return true SHA engine busy
|
|
* @return false SHA engine idle
|
|
*/
|
|
static inline bool sha_ll_busy(void)
|
|
{
|
|
return REG_READ(SHA_BUSY_REG);
|
|
}
|
|
|
|
/**
|
|
* @brief Write a text (message) block to the SHA engine
|
|
*
|
|
* @param input_text Input buffer to be written to the SHA engine
|
|
* @param block_word_len Number of words in block
|
|
*/
|
|
static inline void sha_ll_fill_text_block(const void *input_text, size_t block_word_len)
|
|
{
|
|
uint32_t *data_words = (uint32_t *)input_text;
|
|
uint32_t *reg_addr_buf = (uint32_t *)(SHA_TEXT_BASE);
|
|
|
|
for (int i = 0; i < block_word_len; i++) {
|
|
REG_WRITE(®_addr_buf[i], data_words[i]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Read the message digest from the SHA engine
|
|
*
|
|
* @param sha_type The SHA algorithm type
|
|
* @param digest_state Buffer that message digest will be written to
|
|
* @param digest_word_len Length of the message digest
|
|
*/
|
|
static inline void sha_ll_read_digest(esp_sha_type sha_type, void *digest_state, size_t digest_word_len)
|
|
{
|
|
uint32_t *digest_state_words = (uint32_t *)digest_state;
|
|
const size_t REG_WIDTH = sizeof(uint32_t);
|
|
|
|
for (size_t i = 0; i < digest_word_len; i++) {
|
|
digest_state_words[i] = REG_READ(SHA_H_BASE + (i * REG_WIDTH));
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief Write the message digest to the SHA engine
|
|
*
|
|
* @param sha_type The SHA algorithm type
|
|
* @param digest_state Message digest to be written to SHA engine
|
|
* @param digest_word_len Length of the message digest
|
|
*/
|
|
static inline void sha_ll_write_digest(esp_sha_type sha_type, void *digest_state, size_t digest_word_len)
|
|
{
|
|
uint32_t *digest_state_words = (uint32_t *)digest_state;
|
|
uint32_t *reg_addr_buf = (uint32_t *)(SHA_H_BASE);
|
|
|
|
for (int i = 0; i < digest_word_len; i++) {
|
|
REG_WRITE(®_addr_buf[i], digest_state_words[i]);
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|