/************************************************************************** * * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file Integrity.h * * @author (last) Michael Garthwaite * @date (last) 15-Aug-2023 * * @author (original) Quang Nguyen * @date (original) 29-May-2021 * ***************************************************************************/ #ifndef __INTEGRITY_H__ #define __INTEGRITY_H__ #include "Common.h" /** * @defgroup Integrity Integrity * @brief Integrity module checks for firmware integrity using CRC table generated by TI linker. * * @addtogroup Integrity * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initIntegrity( void ); SELF_TEST_STATUS_T execIntegrityTest( void ); void execRAMMonitor( void ); BOOL testSetRAMStatusOverride( U32 reg, U32 status ); BOOL testResetRAMStatusOverride( U32 reg ); /**@}*/ #endif