sec2_const.h

来自「freescale ppc sec2加解密单元驱动」· C头文件 代码 · 共 46 行

H
46
字号
#ifndef _SEC2_CONST_H_
#define _SEC2_CONST_H_


#include "sec2driver.h"

/*  unsigned long Sec2ChaDoneInterruptMasks[NUM_CHAS]    An array of CHA done completion bit masks.    The index of the array represents the CHA.  This bit mask    is applied against #sec2_InterruptStatusRegister in order to    determine if an interrupt is due to a CHA completion or not.    六个CHA*/
extern unsigned long Sec2ChaDoneInterruptMasks[NUM_CHAS];
/*  unsigned long ChannelDoneInterruptMasks[SEC2_NUM_CHANNELS]    An array of channel done completion bit masks.    The index of the array represents the channel.  This bit mask    is applied against #sec2_InterruptStatusRegister in order to    determine if an interrupt is due to a channel completion or not.*/extern unsigned long Sec2ChannelDoneInterruptMasks[SEC2_NUM_CHANNELS];
/*! \var unsigned long Sec2ChannelErrorInterruptMasks[SEC2_NUM_CHANNELS]    \brief An array of channel error bit masks.    The index of the array represents the channel.  This bit mask    is applied against #sec2_InterruptStatusRegister in order to    determine if an interrupt is due to a channel error or not.*/extern unsigned long Sec2ChannelErrorInterruptMasks[SEC2_NUM_CHANNELS];
/*! \var unsigned long Sec2ChaErrorInterruptMasks[NUM_CHAS]    \brief An array of CHA error bit masks.    The index of the array represents the CHA.  This bit mask    is applied against #sec2_InterruptStatusRegister in order to    determine if an interrupt is due to a CHA error or not.*/extern unsigned long Sec2ChaErrorInterruptMasks[NUM_CHAS];


#endif /*_SEC2_CONST_H_*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?