/***************************************************************************//** * \file cy_crypto_core_hw.h * \version 2.40 * * \brief * This file provides the headers to the API for the utils * in the Crypto driver. * ******************************************************************************** * Copyright 2016-2020 Cypress Semiconductor Corporation * 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. *******************************************************************************/ #if !defined (CY_CRYPTO_CORE_VU_H) #define CY_CRYPTO_CORE_VU_H #include "cy_device.h" #if defined (CY_IP_MXCRYPTO) #include "cy_crypto_common.h" #if defined(__cplusplus) extern "C" { #endif #if (CPUSS_CRYPTO_VU == 1) #include "cy_crypto_core_hw.h" #include "cy_crypto_core_hw_vu.h" #include /** * \addtogroup group_crypto_lld_vu_functions * \{ */ /******************************************************************************* * Function Name: Cy_Crypto_Core_Cleanup ****************************************************************************//** * * Cleans up the Crypto block. * * \param base * The pointer to the CRYPTO instance. * * \return * \ref cy_en_crypto_status_t * *******************************************************************************/ cy_en_crypto_status_t Cy_Crypto_Core_Cleanup(CRYPTO_Type *base); /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_SetMemValue ****************************************************************************//** * * Sets the value in the Crypto memory allocated by the destination VU register. * * \param base * The pointer to the CRYPTO instance. * * \param dstReg * The destination vector unit register. * * \param src * The pointer to the source value. * * \param size * The size of the operated value. * *******************************************************************************/ void Cy_Crypto_Core_Vu_SetMemValue(CRYPTO_Type *base, uint32_t dstReg, uint8_t const *src, uint32_t size); /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_GetMemValue ****************************************************************************//** * * Gets the value located in the crypto memory and pointed by source VU register. * * \param base * The pointer to the CRYPTO instance. * * \param dst * The pointer to the destination value. * * \param srcReg * The source vector unit register. * * \param size * The size of the operated value. * *******************************************************************************/ void Cy_Crypto_Core_Vu_GetMemValue(CRYPTO_Type *base, uint8_t *dst, uint32_t srcReg, uint32_t size); /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_IsRegZero ****************************************************************************//** * * Returns TRUE if srcReg contains 0. FALSE - otherwise. * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * * \return * The result of the comparison. * *******************************************************************************/ bool Cy_Crypto_Core_Vu_IsRegZero(CRYPTO_Type *base, uint32_t srcReg); /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_IsRegEqual ****************************************************************************//** * * Returns TRUE if srcReg0 contains the same value as srcReg1. FALSE - otherwise. * * \param base * The pointer to the CRYPTO instance. * * \param srcReg0 * The source 0 vector unit register. * * \param srcReg1 * The source 1 vector unit register. * * \return * The result of the comparison. * *******************************************************************************/ bool Cy_Crypto_Core_Vu_IsRegEqual(CRYPTO_Type *base, uint32_t srcReg0, uint32_t srcReg1); /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_IsRegEqual ****************************************************************************//** * * Returns TRUE if srcReg0 contains the value less than value of srcReg1. * FALSE - otherwise. * * \param base * The pointer to the CRYPTO instance. * * \param srcReg0 * The source 0 vector unit register. * * \param srcReg1 * The source 1 vector unit register. * * \return * The result of the comparison. * *******************************************************************************/ bool Cy_Crypto_Core_Vu_IsRegLess(CRYPTO_Type *base, uint32_t srcReg0, uint32_t srcReg1); /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_RegRead ****************************************************************************//** * * Returns the data pointed in a given register. * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ __STATIC_INLINE uint32_t Cy_Crypto_Core_Vu_RegRead(CRYPTO_Type *base, uint32_t srcReg) { return ((uint32_t)_FLD2VAL(CRYPTO_RF_DATA_DATA32, REG_CRYPTO_VU_RF_DATA(base, srcReg))); } /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_RegSizeRead ****************************************************************************//** * * Returns size of the data pointed in given register, * it is lower 12Bit of the 32Bit word * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ __STATIC_INLINE uint16_t Cy_Crypto_Core_Vu_RegSizeRead(CRYPTO_Type *base, uint32_t srcReg) { return ((uint16_t)(_FLD2VAL(CRYPTO_RF_DATA_DATA32, REG_CRYPTO_VU_RF_DATA(base, srcReg)) & CY_CRYPTO_VU_SIZE_FLD_MASK)); } /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_RegBitSizeRead ****************************************************************************//** * * Returns size of the data pointed in given register, in Bits. * It is lower 12Bit of the 32Bit word * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ __STATIC_INLINE uint16_t Cy_Crypto_Core_Vu_RegBitSizeRead(CRYPTO_Type *base, uint32_t srcReg) { return ((uint16_t)(_FLD2VAL(CRYPTO_RF_DATA_DATA32, REG_CRYPTO_VU_RF_DATA(base, srcReg)) & CY_CRYPTO_VU_SIZE_FLD_MASK) + 1u); } /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_RegByteSizeRead ****************************************************************************//** * * Returns size of the data pointed in given register, in Bytes. * It is lower 12Bit of the 32Bit word * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ __STATIC_INLINE uint16_t Cy_Crypto_Core_Vu_RegByteSizeRead(CRYPTO_Type *base, uint32_t srcReg) { return ((uint16_t)((_FLD2VAL(CRYPTO_RF_DATA_DATA32, REG_CRYPTO_VU_RF_DATA(base, srcReg)) & CY_CRYPTO_VU_SIZE_FLD_MASK) + 1u) >> 3u); } /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_RegWordSizeRead ****************************************************************************//** * * Returns size of the data pointed in given register, in words (uint32_t). * It is lower 12Bit of the 32Bit word * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ __STATIC_INLINE uint16_t Cy_Crypto_Core_Vu_RegWordSizeRead(CRYPTO_Type *base, uint32_t srcReg) { return ((uint16_t)((_FLD2VAL(CRYPTO_RF_DATA_DATA32, REG_CRYPTO_VU_RF_DATA(base, srcReg)) & CY_CRYPTO_VU_SIZE_FLD_MASK) + 1u) >> 5u); } /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_RegDataPtrRead ****************************************************************************//** * * Returns the data pointer, in 14-bit format of the data pointed in given register, * it is upper 16Bit of the 32Bir word. Pointer is in words (uint32_t). * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ __STATIC_INLINE uint16_t Cy_Crypto_Core_Vu_RegDataPtrRead(CRYPTO_Type *base, uint32_t srcReg) { return (uint16_t)((_FLD2VAL(CRYPTO_RF_DATA_DATA32, REG_CRYPTO_VU_RF_DATA(base, srcReg)) >> CY_CRYPTO_VU_DATA_FLD_POS) & CY_CRYPTO_VU_DATA_FLD_MASK); } /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_RegMemPointer ****************************************************************************//** * * Returns the memory address of the data pointed in given register. * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ __STATIC_INLINE uint32_t * Cy_Crypto_Core_Vu_RegMemPointer(CRYPTO_Type *base, uint32_t srcReg) { return (uint32_t *)((uint32_t)REG_CRYPTO_VU_CTL1(base) + (4u * (uint32_t)Cy_Crypto_Core_Vu_RegDataPtrRead(base, srcReg))); } /******************************************************************************* * Function Name: Cy_Crypto_Core_Vu_StatusRead ****************************************************************************//** * * Returns the value of the VU status register. * * \param base * The pointer to the CRYPTO instance. * *******************************************************************************/ __STATIC_INLINE uint32_t Cy_Crypto_Core_Vu_StatusRead(CRYPTO_Type *base) { Cy_Crypto_Core_Vu_WaitForComplete(base); return((uint32_t)REG_CRYPTO_VU_STATUS(base)); } /******************************************************************************* * Function Name: Cy_Crypto_Core_VU_RegInvertEndianness ****************************************************************************//** * * Reverts the memory data block pointed in given register. * * \param base * The pointer to the CRYPTO instance. * * \param srcReg * The source vector unit register. * *******************************************************************************/ void Cy_Crypto_Core_VU_RegInvertEndianness(CRYPTO_Type *base, uint32_t srcReg); /** \} group_crypto_lld_vu_functions */ #endif /* #if (CPUSS_CRYPTO_VU == 1) */ #if defined(__cplusplus) } #endif #endif /* CY_IP_MXCRYPTO */ #endif /* #if !defined (CY_CRYPTO_CORE_VU_H) */ /* [] END OF FILE */