/************************************************************************** * * Copyright (c) 2024-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 PAL.h * * @author (last) Sean * @date (last) 07-Aug-2024 * * @author (original) Sean * @date (original) 07-Aug-2024 * ***************************************************************************/ #ifndef __PAL_H__ #define __PAL_H__ #include "DDCommon.h" /** * @defgroup PAL PAL * @brief The PAL (processor abstraction layer) module provides abstraction * of processor register access via access functions. * * @addtogroup PAL * @{ */ // ********** public function prototypes ********** void setSystemREG1_SYSECR( U32 regval ); U32 getSystemREG1_SYSECR( void ); void setCrcREG_PSA_SIGREGL1( U32 regval ); U32 getCrcREG_PSA_SIGREGL1( void ); void clear_saftety_shutdown( void ); void set_safety_shutdown( void ); /**@}*/ #endif