//***************************************************************************** // // shamd5.c // // Driver for the SHA/MD5 module. // // Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ // // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: // // Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the // distribution. // // Neither the name of Texas Instruments Incorporated nor the names of // its contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // //***************************************************************************** //***************************************************************************** // //! \addtogroup SHA_Secure_Hash_Algorithm_api //! @{ // //***************************************************************************** #include #include #include "inc/hw_dthe.h" #include "inc/hw_ints.h" #include "inc/hw_memmap.h" #include "inc/hw_nvic.h" #include "inc/hw_shamd5.h" #include "inc/hw_types.h" #include "debug.h" #include "interrupt.h" #include "shamd5.h" #include "rom_map.h" #define SHAMD5_MODE_ALGO_MD5 0x00000000 // MD5 #define SHAMD5_MODE_ALGO_SHA1 0x00000002 // SHA-1 #define SHAMD5_MODE_ALGO_SHA224 0x00000004 // SHA-224 #define SHAMD5_MODE_ALGO_SHA256 0x00000006 // SHA-256 //***************************************************************************** // //! Enables the uDMA requests in the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! //! This function configures the DMA options of the SHA/MD5 module. //! //! \return None // //***************************************************************************** void SHAMD5DMAEnable(uint32_t ui32Base) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Write the new configuration into the register. // HWREG(ui32Base + SHAMD5_O_SYSCONFIG) |= SHAMD5_SYSCONFIG_PADVANCED | SHAMD5_SYSCONFIG_PDMA_EN; } //***************************************************************************** // //! Disables the uDMA requests in the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! //! This function configures the DMA options of the SHA/MD5 module. //! //! \return None // //***************************************************************************** void SHAMD5DMADisable(uint32_t ui32Base) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Write the new configuration into the register. // HWREG(ui32Base + SHAMD5_O_SYSCONFIG) &= ~(SHAMD5_SYSCONFIG_PADVANCED | SHAMD5_SYSCONFIG_PDMA_EN); } //***************************************************************************** // //! Get the interrupt status of the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param bMasked is \b false if the raw interrupt status is required and //! \b true if the masked interrupt status is required. //! //! This function returns the current value of the IRQSTATUS register. The //! value will be a logical OR of the following: //! //! - \b SHAMD5_INT_CONTEXT_READY - Context input registers are ready. //! - \b SHAMD5_INT_PARTHASH_READY - Context output registers are ready after //! a context switch. //! - \b SHAMD5_INT_INPUT_READY - Data FIFO is ready to receive data. //! - \b SHAMD5_INT_OUTPUT_READY - Context output registers are ready. //! //! \return Interrupt status // //***************************************************************************** uint32_t SHAMD5IntStatus(uint32_t ui32Base, bool bMasked) { uint32_t ui32Temp; uint32_t ui32IrqEnable; // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Return the value of the IRQSTATUS register. // if(bMasked) { ui32Temp = HWREG(DTHE_BASE + DTHE_O_SHA_MIS); ui32IrqEnable = HWREG(ui32Base + SHAMD5_O_IRQENABLE); return((HWREG(ui32Base + SHAMD5_O_IRQSTATUS) & ui32IrqEnable) | (ui32Temp & 0x00000007) << 16); } else { ui32Temp = HWREG(DTHE_BASE + DTHE_O_SHA_RIS); return(HWREG(ui32Base + SHAMD5_O_IRQSTATUS) | (ui32Temp & 0x00000007) << 16); } } //***************************************************************************** // //! Enable interrupt sources in the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param ui32IntFlags contains desired interrupts to enable. //! //! This function enables interrupt sources in the SHA/MD5 module. //! ui32IntFlags must be a logical OR of one or more of the following //! values: //! //! - \b SHAMD5_INT_CONTEXT_READY - Context input registers are ready. //! - \b SHAMD5_INT_PARTHASH_READY - Context output registers are ready after //! a context switch. //! - \b SHAMD5_INT_INPUT_READY - Data FIFO is ready to receive data. //! - \b SHAMD5_INT_OUTPUT_READY - Context output registers are ready. //! //! \return None. // //***************************************************************************** void SHAMD5IntEnable(uint32_t ui32Base, uint32_t ui32IntFlags) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); ASSERT((ui32IntFlags == SHAMD5_INT_CONTEXT_READY) || (ui32IntFlags == SHAMD5_INT_PARTHASH_READY) || (ui32IntFlags == SHAMD5_INT_INPUT_READY) || (ui32IntFlags == SHAMD5_INT_OUTPUT_READY)); // // Enable the interrupt sources. // HWREG(DTHE_BASE + DTHE_O_SHA_IM) &= ~((ui32IntFlags & 0x00070000) >> 16); HWREG(ui32Base + SHAMD5_O_IRQENABLE) |= ui32IntFlags & 0x0000ffff; // // Enable all interrupts. // HWREG(ui32Base + SHAMD5_O_SYSCONFIG) |= SHAMD5_SYSCONFIG_PIT_EN; } //***************************************************************************** // //! Disable interrupt sources in the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param ui32IntFlags contains desired interrupts to disable. //! //! \e ui32IntFlags must be a logical OR of one or more of the following //! values: //! //! - \b SHAMD5_INT_CONTEXT_READY - Context input registers are ready. //! - \b SHAMD5_INT_PARTHASH_READY - Context output registers are ready after //! a context switch. //! - \b SHAMD5_INT_INPUT_READY - Data FIFO is ready to receive data. //! - \b SHAMD5_INT_OUTPUT_READY - Context output registers are ready. //! //! \return None. // //***************************************************************************** void SHAMD5IntDisable(uint32_t ui32Base, uint32_t ui32IntFlags) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); ASSERT((ui32IntFlags == SHAMD5_INT_CONTEXT_READY) || (ui32IntFlags == SHAMD5_INT_PARTHASH_READY) || (ui32IntFlags == SHAMD5_INT_INPUT_READY) || (ui32IntFlags == SHAMD5_INT_OUTPUT_READY)); // // Clear the corresponding flags disabling the interrupt sources. // HWREG(DTHE_BASE + DTHE_O_SHA_IM) |= ((ui32IntFlags & 0x00070000) >> 16); HWREG(ui32Base + SHAMD5_O_IRQENABLE) &= ~(ui32IntFlags & 0x0000ffff); // // If there are no interrupts enabled, then disable all interrupts. // if(HWREG(ui32Base + SHAMD5_O_IRQENABLE) == 0x0) { HWREG(ui32Base + SHAMD5_O_SYSCONFIG) &= ~SHAMD5_SYSCONFIG_PIT_EN; } } //***************************************************************************** // //! Clears interrupt sources in the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param ui32IntFlags contains desired interrupts to disable. //! //! \e ui32IntFlags must be a logical OR of one or more of the following //! values: //! //! - \b SHAMD5_INT_CONTEXT_READY - Context input registers are ready. //! - \b SHAMD5_INT_PARTHASH_READY - Context output registers are ready after //! a context switch. //! - \b SHAMD5_INT_INPUT_READY - Data FIFO is ready to receive data. //! - \b SHAMD5_INT_OUTPUT_READY - Context output registers are ready. //! //! \return None. // //***************************************************************************** void SHAMD5IntClear(uint32_t ui32Base, uint32_t ui32IntFlags) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); ASSERT((ui32IntFlags == SHAMD5_INT_CONTEXT_READY) || (ui32IntFlags == SHAMD5_INT_PARTHASH_READY) || (ui32IntFlags == SHAMD5_INT_INPUT_READY) || (ui32IntFlags == SHAMD5_INT_OUTPUT_READY)); // // Clear the corresponding flags disabling the interrupt sources. // HWREG(DTHE_BASE + DTHE_O_SHA_IC) = ((ui32IntFlags & 0x00070000) >> 16); } //***************************************************************************** // //! Registers an interrupt handler for the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param pfnHandler is a pointer to the function to be called when the //! enabled SHA/MD5 interrupts occur. //! //! This function registers the interrupt handler in the interrupt vector //! table, and enables SHA/MD5 interrupts on the interrupt controller; //! specific SHA/MD5 interrupt sources must be enabled using //! SHAMD5IntEnable(). The interrupt handler being registered must clear //! the source of the interrupt using SHAMD5IntClear(). //! //! If the application is using a static interrupt vector table stored in //! flash, then it is not necessary to register the interrupt handler this way. //! Instead, IntEnable() should be used to enable SHA/MD5 interrupts on the //! interrupt controller. //! //! \sa IntRegister() for important information about registering interrupt //! handlers. //! //! \return None. // //***************************************************************************** void SHAMD5IntRegister(uint32_t ui32Base, void(*pfnHandler)(void)) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Register the interrupt handler. // IntRegister(INT_SHA, pfnHandler); // // Enable the interrupt // IntEnable(INT_SHA); } //***************************************************************************** // //! Unregisters an interrupt handler for the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! //! This function unregisters the previously registered interrupt handler and //! disables the interrupt in the interrupt controller. //! //! \sa IntRegister() for important information about registering interrupt //! handlers. //! //! \return None. // //***************************************************************************** void SHAMD5IntUnregister(uint32_t ui32Base) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Disable the interrupt. // IntDisable(INT_SHA); // // Unregister the interrupt handler. // IntUnregister(INT_SHA); } //***************************************************************************** // //! Write the hash length to the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param ui32Length is the hash length in bytes. //! //! This function writes the length of the hash data of the current operation //! to the SHA/MD5 module. The value must be a multiple of 64 if the close //! hash is not set in the mode register. //! //! \note When this register is written, hash processing is triggered. //! //! \return None. // //***************************************************************************** void SHAMD5DataLengthSet(uint32_t ui32Base, uint32_t ui32Length) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Set the LENGTH register and start processing. // HWREG(ui32Base + SHAMD5_O_LENGTH) = ui32Length; } //***************************************************************************** // //! Writes the mode in the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param ui32Mode is the mode of the SHA/MD5 module. //! //! This function writes the mode register configuring the SHA/MD5 module. //! //! The ui32Mode paramerter is a bit-wise OR of values: //! //! - \b SHAMD5_ALGO_MD5 - Regular hash with MD5 //! - \b SHAMD5_ALGO_SHA1 - Regular hash with SHA-1 //! - \b SHAMD5_ALGO_SHA224 - Regular hash with SHA-224 //! - \b SHAMD5_ALGO_SHA256 - Regular hash with SHA-256 //! - \b SHAMD5_ALGO_HMAC_MD5 - HMAC with MD5 //! - \b SHAMD5_ALGO_HMAC_SHA1 - HMAC with SHA-1 //! - \b SHAMD5_ALGO_HMAC_SHA224 - HMAC with SHA-224 //! - \b SHAMD5_ALGO_HMAC_SHA256 - HMAC with SHA-256 //! //! \return None // //***************************************************************************** void SHAMD5ConfigSet(uint32_t ui32Base, uint32_t ui32Mode) { // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); ASSERT((ui32Mode == SHAMD5_ALGO_MD5) || (ui32Mode == SHAMD5_ALGO_SHA1) || (ui32Mode == SHAMD5_ALGO_SHA224) || (ui32Mode == SHAMD5_ALGO_SHA256) || (ui32Mode == SHAMD5_ALGO_HMAC_MD5) || (ui32Mode == SHAMD5_ALGO_HMAC_SHA1) || (ui32Mode == SHAMD5_ALGO_HMAC_SHA224) || (ui32Mode == SHAMD5_ALGO_HMAC_SHA256)); // // Write the value in the MODE register. // HWREG(ui32Base + SHAMD5_O_MODE) = ui32Mode; } //***************************************************************************** // //! Perform a non-blocking write of 16 words of data to the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param pui8Src is the pointer to the 16-word array of data that will be //! written. //! //! This function writes 16 words of data into the data register. //! //! \return This function returns true if the write completed successfully. //! It returns false if the module was not ready. // //***************************************************************************** bool SHAMD5DataWriteNonBlocking(uint32_t ui32Base, uint8_t *pui8Src) { uint32_t ui8Counter; // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Check that the SHA/MD5 module is ready for data. If not, return false. // if((HWREG(ui32Base + SHAMD5_O_IRQSTATUS) & SHAMD5_INT_INPUT_READY) == 0) { return(false); } // // Write the 16 words of data. // for(ui8Counter = 0; ui8Counter < 64; ui8Counter += 4) { HWREG(ui32Base + SHAMD5_O_DATA0_IN + ui8Counter) = *((uint32_t *)(pui8Src + ui8Counter)); } // // Return true as a sign of successfully completing the function. // return(true); } //***************************************************************************** // //! Perform a blocking write of 64 bytes of data to the SHA/MD5 module. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param pui8Src is the pointer to the 64-byte array of data that will be //! written. //! //! This function does not return until the module is ready to accept data and //! the data has been written. //! //! \return None. // //***************************************************************************** void SHAMD5DataWrite(uint32_t ui32Base, uint8_t *pui8Src) { uint8_t ui8Counter; // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Wait for the module to be ready to accept data. // while((HWREG(ui32Base + SHAMD5_O_IRQSTATUS) & SHAMD5_INT_INPUT_READY) == 0) { } // // Write the 64 bytes of data. // for(ui8Counter = 0; ui8Counter < 64; ui8Counter += 4) { HWREG(ui32Base + SHAMD5_O_DATA0_IN + ui8Counter) = *((uint32_t *) (pui8Src + ui8Counter)); } } //***************************************************************************** // //! Reads the result of a hashing operation. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param pui8Dest is the pointer to the byte array of data that will be //! written. //! //! This function does not return until the module is ready to accept data and //! the data has been written. //! ----------------------------------------- //! | Algorithm | Number of Words in Result | //! ----------------------------------------- //! | MD5 | 16 Bytes (128 bits) | //! | SHA-1 | 20 Bytes (160 bits) | //! | SHA-224 | 28 Bytes (224 bits) | //! | SHA-256 | 32 Bytes (256 bits) | //! ----------------------------------------- //! //! \return None. // //***************************************************************************** void SHAMD5ResultRead(uint32_t ui32Base, uint8_t *pui8Dest) { uint32_t ui32Idx, ui32Count; // // Check the arguments. // ASSERT(ui32Base == SHAMD5_BASE); // // Determine the number of bytes in the result, based on the hash type. // switch(HWREG(ui32Base + SHAMD5_O_MODE) & SHAMD5_MODE_ALGO_M) { // // The MD5 hash is being used. // case SHAMD5_MODE_ALGO_MD5: { // // There are 16 bytes in the MD5 hash. // ui32Count = 16; // // Done. // break; } // // The SHA-1 hash is being used. // case SHAMD5_MODE_ALGO_SHA1: { // // There are 20 bytes in the SHA-1 hash. // ui32Count = 20; // // Done. // break; } // // The SHA-224 hash is being used. // case SHAMD5_MODE_ALGO_SHA224: { // // There are 28 bytes in the SHA-224 hash. // ui32Count = 28; // // Done. // break; } // // The SHA-256 hash is being used. // case SHAMD5_MODE_ALGO_SHA256: { // // There are 32 bytes in the SHA-256 hash. // ui32Count = 32; // // Done. // break; } // // The hash type is not recognized. // default: { // // Return without reading a result since the hardware appears to be // misconfigured. // return; } } // // Read the hash result. // for(ui32Idx = 0; ui32Idx < ui32Count; ui32Idx += 4) { *((uint32_t *)(pui8Dest+ui32Idx)) = HWREG(ui32Base + SHAMD5_O_IDIGEST_A + ui32Idx); } } //***************************************************************************** // //! Writes multiple words of data into the SHA/MD5 data registers. //! //! \param ui32Base is the base address of the SHA/MD5 module. //! \param pui8DataSrc is a pointer to an array of data to be written. //! \param ui32DataLength is the length of the data to be written in bytes. //! //! This function writes a variable number of words into the SHA/MD5 data //! registers. The function waits for each block of data to be processed //! before another is written. //! //! \note This function is used by SHAMD5HashCompute(), SHAMD5HMACWithKPP(), //! and SHAMD5HMACNoKPP() to process data. //! //! \return None. // //***************************************************************************** void SHAMD5DataWriteMultiple(uint8_t *pui8DataSrc, uint32_t ui32DataLength) { uint32_t ui32Idx, ui32Count, ui32Lastword, ui32TempData = 0; uint8_t * ui8TempData; // // Calculate the number of blocks of data. // ui32Count = ui32DataLength / 64; // // Loop through all the blocks and write them into the data registers // making sure to block additional operations until we can write the // next 16 words. // for (ui32Idx = 0; ui32Idx < ui32Count; ui32Idx++) { // // Write the block of data. // MAP_SHAMD5DataWrite(SHAMD5_BASE, pui8DataSrc); // // Increment the pointer to next block of data. // pui8DataSrc += 64; } // // Calculate the remaining bytes of data that don't make up a full block. // ui32Count = ui32DataLength % 64; // // If there are bytes that do not make up a whole block, then // write them separately. // if(ui32Count) { // // Wait until the engine has finished processing the previous block. // while ((HWREG(SHAMD5_BASE + SHAMD5_O_IRQSTATUS) & SHAMD5_INT_INPUT_READY) == 0); // // Loop through the remaining words. // ui32Count = ui32Count / 4; for (ui32Idx = 0; ui32Idx < ui32Count; ui32Idx ++) { // // Write the word into the data register. // HWREG(SHAMD5_BASE + SHAMD5_O_DATA0_IN + (ui32Idx * 4)) =* ( (uint32_t *) pui8DataSrc); pui8DataSrc +=4; } // // Loop through the remaining bytes // ui32Count = ui32DataLength % 4; ui8TempData = (uint8_t *) &ui32TempData; if(ui32Count) { ui32Lastword = 0; if(ui32Idx) { ui32Lastword = (ui32Idx-1) *4; } for(ui32Idx=0 ; ui32Idx