/****************************************************************************** * * Copyright (C) 2022-2023 Maxim Integrated Products, Inc. (now owned by * Analog Devices, Inc.), * Copyright (C) 2023-2024 Analog Devices, Inc. * * 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. * ******************************************************************************/ #include #include #include "mxc_sys.h" #include "mxc_device.h" #include "mxc_errors.h" #include "mxc_assert.h" #include "mxc_lock.h" #include "trng_regs.h" #include "trng.h" #include "trng_revb.h" /***** Global Variables *****/ static mxc_trng_complete_t MXC_TRNG_Callback; static uint32_t TRNG_count, TRNG_maxLength; static uint8_t *TRNG_data; /* ************************************************************************* */ /* Global Control/Configuration functions */ /* ************************************************************************* */ int MXC_TRNG_RevB_Init(void) { return E_NO_ERROR; } void MXC_TRNG_RevB_EnableInt(mxc_trng_revb_regs_t *trng) { trng->ctrl |= MXC_F_TRNG_REVB_CTRL_RND_IE; } void MXC_TRNG_RevB_DisableInt(mxc_trng_revb_regs_t *trng) { trng->ctrl &= ~MXC_F_TRNG_REVB_CTRL_RND_IE; } int MXC_TRNG_RevB_Shutdown(void) { return E_NO_ERROR; } void MXC_TRNG_RevB_Handler(mxc_trng_revb_regs_t *trng) { uint32_t temp; mxc_trng_complete_t cb; // if this is last block, disable interrupt before reading trng->data if (TRNG_maxLength <= TRNG_count + 4) { trng->ctrl &= ~MXC_F_TRNG_REVB_CTRL_RND_IE; } temp = trng->data; if ((TRNG_count + 3) < TRNG_maxLength) { memcpy(&(TRNG_data[TRNG_count]), (uint8_t *)(&temp), 4); TRNG_count += 4; } else { memcpy(&(TRNG_data[TRNG_count]), (uint8_t *)(&temp), TRNG_maxLength & 0x03); TRNG_count += (TRNG_maxLength & 0x03); } if (TRNG_maxLength == TRNG_count) { cb = MXC_TRNG_Callback; cb(0, 0); } } /* ************************************************************************* */ /* True Random Number Generator(TRNG) functions */ /* ************************************************************************* */ int MXC_TRNG_RevB_RandomInt(mxc_trng_revb_regs_t *trng) { while (!(trng->status & MXC_F_TRNG_REVB_STATUS_RDY)) {} return (int)trng->data; } int MXC_TRNG_RevB_Random(uint8_t *data, uint32_t len) { unsigned int i, temp; if (data == NULL) { return E_NULL_PTR; } for (i = 0; (i + 3) < len; i += 4) { temp = MXC_TRNG_RandomInt(); memcpy(&(data[i]), (uint8_t *)(&temp), 4); } if (len & 0x03) { temp = MXC_TRNG_RandomInt(); memcpy(&(data[i]), (uint8_t *)(&temp), len & 0x03); } return E_NO_ERROR; } void MXC_TRNG_RevB_RandomAsync(mxc_trng_revb_regs_t *trng, uint8_t *data, uint32_t len, mxc_trng_complete_t callback) { MXC_ASSERT(data && callback); if (len == 0) { return; } TRNG_data = data; TRNG_count = 0; TRNG_maxLength = len; MXC_TRNG_Callback = callback; // Enable interrupts trng->ctrl |= MXC_F_TRNG_REVB_CTRL_RND_IE; } void MXC_TRNG_RevB_GenerateKey(mxc_trng_revb_regs_t *trng) { // Generate AES Key trng->ctrl |= MXC_F_TRNG_REVB_CTRL_AESKG_USR; // Wait for key transfer to complete while (trng->status & MXC_F_TRNG_REVB_STATUS_AESKGD) {} } int MXC_TRNG_RevB_HealthTest(mxc_trng_revb_regs_t *trng) { /* Clear on-going test if necessary */ if (trng->ctrl & MXC_F_TRNG_REVB_CTRL_ODHT) { trng->ctrl &= ~MXC_F_TRNG_REVB_CTRL_ODHT; while (trng->status & MXC_F_TRNG_REVB_STATUS_ODHT) {} } /* Start on-demand health test */ trng->ctrl |= MXC_F_TRNG_REVB_CTRL_ODHT; /* Wait for test to finish */ while (trng->status & MXC_F_TRNG_REVB_STATUS_ODHT) {} /* Check results of test */ if (trng->status & MXC_F_TRNG_REVB_STATUS_HT) { return E_BAD_STATE; } return E_NO_ERROR; }