/****************************************************************** ****************************************************************** *** ** *** (C)Copyright 2011, American Megatrends Inc. ** *** ** *** All Rights Reserved. ** *** ** *** 5555 , Oakbrook Pkwy, Norcross, ** *** ** *** Georgia - 30093, USA. Phone-(770)-246-8600. ** *** ** ****************************************************************** ****************************************************************** ****************************************************************** * * cmdselect.h * Command selection routines * * Author: Winston ******************************************************************/ #ifndef _CMDSELECT_ #define _CMDSELECT_ #include "bmc_main.h" #define ENABLED 0x01 #define DISABLED 0xFF #define NETFN_SSI 0x2c #define NETFN_DCMI 0x2c #define NETFN_HPM 0x2c #define NETFN_PNM 0x30 #define NETFN_APML 0x36 /*CMM Specific Netfn and GrpExt*/ #define NETFN_CMM 0x38 #define NETFN_OBSM 0x2C #define GRPEXT_OBSM 0x02 #define GRPEXT_NA 0x00 #define GRPEXT_HPM 0x00 #define GRPEXT_SSI 0x02 #define GRPEXT_DCMI 0xDC int GetCommanEnabledStatus(NETFNTable_T *NetFuntbl,INT8U Cmd); int IsCommandEnabled(INT8U NetFn,INT8U Cmd); #endif //_CMDSELECT_