mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: Apache-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#include "soc/rsa_reg.h"
 | 
						|
#include "soc/mpi_periph.h"
 | 
						|
 | 
						|
const uint32_t MPI_BLOCK_BASES[SOC_MPI_MEM_BLOCKS_NUM] = {
 | 
						|
    RSA_X_MEM_REG,
 | 
						|
    RSA_Y_MEM_REG,
 | 
						|
    RSA_Z_MEM_REG,
 | 
						|
    RSA_M_MEM_REG,
 | 
						|
};
 | 
						|
 | 
						|
const uint32_t MPI_OPERATIONS_REG[SOC_MPI_OPERATIONS_NUM] = {
 | 
						|
    RSA_SET_START_MULT_REG,
 | 
						|
    RSA_SET_START_MODMULT_REG,
 | 
						|
    RSA_SET_START_MODEXP_REG,
 | 
						|
};
 |