bignum: refactored the hardware abstraction of the mpi peripheral

- `<target>/bignum.c` is replaced by mpi_ll.h ll layer.
- added the mpi hal layer.
This commit is contained in:
harshal.patil
2023-03-27 16:50:03 +05:30
parent 22caec278f
commit 4ae1ea7b9f
40 changed files with 1696 additions and 1704 deletions

View File

@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "soc/hwcrypto_reg.h"
#include "soc/mpi_periph.h"
const uint32_t MPI_LL_BLOCK_BASES[4] = {
RSA_MEM_X_BLOCK_BASE,
RSA_MEM_Y_BLOCK_BASE,
RSA_MEM_Z_BLOCK_BASE,
RSA_MEM_M_BLOCK_BASE,
};
const uint32_t MPI_LL_OPERATIONS[3] = {
RSA_MULT_START_REG,
RSA_MOD_MULT_START_REG,
RSA_MODEXP_START_REG,
};