Home
last modified time | relevance | path

Searched refs:tempWord (Results 1 – 2 of 2) sorted by relevance

/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/pki/common/
Dpka.c718 uint32_t tempWord; in PkaCopyPkaRegIntoBeByteBuff() local
730 tempWord = CC_HAL_READ_REGISTER(CC_REG_OFFSET(CRY_KERNEL, PKA_SRAM_RDATA)); in PkaCopyPkaRegIntoBeByteBuff()
731 tempWord = CC_COMMON_REVERSE32(tempWord); in PkaCopyPkaRegIntoBeByteBuff()
732 … CC_PalMemCopy(&dst_ptr[ii*CC_32BIT_WORD_SIZE], (uint8_t *)&tempWord, CC_32BIT_WORD_SIZE); in PkaCopyPkaRegIntoBeByteBuff()
776 uint32_t tempWord; in PkaCopyByteBuffIntoPkaReg() local
789 CC_PalMemCopy((uint8_t *)&tempWord, &src_ptr[ii], CC_32BIT_WORD_SIZE); in PkaCopyByteBuffIntoPkaReg()
790 CC_HAL_WRITE_REGISTER(CC_REG_OFFSET(CRY_KERNEL, PKA_SRAM_WDATA), tempWord); in PkaCopyByteBuffIntoPkaReg()
794 tempWord = 0; in PkaCopyByteBuffIntoPkaReg()
795 CC_PalMemCopy((uint8_t *)&tempWord, &src_ptr[ii], remainBytes); in PkaCopyByteBuffIntoPkaReg()
796 CC_HAL_WRITE_REGISTER(CC_REG_OFFSET(CRY_KERNEL, PKA_SRAM_WDATA), tempWord); in PkaCopyByteBuffIntoPkaReg()
[all …]
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/secure_boot_debug/crypto_driver/
Drsa_hwdefs.h246 uint32_t tempWord; \
250 UTIL_ReverseMemCopy((uint8_t*)&tempWord , (uint8_t*)&(ptr)[ii] , sizeof(uint32_t) ); \
251 SB_HAL_WRITE_REGISTER( SB_REG_ADDR(VirtualHwBaseAddr, PKA_SRAM_WDATA), tempWord); \