123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /*****************************************************************
- *****************************************************************
- *** **
- *** (C)Copyright 2005-2006, American Megatrends Inc. **
- *** **
- *** All Rights Reserved. **
- *** **
- *** 6145-F, Northbelt Parkway, Norcross, **
- *** **
- *** Georgia - 30071, USA. Phone-(770)-246-8600. **
- *** **
- *****************************************************************
- *****************************************************************
- ******************************************************************
- *
- * PlatformPort.h
- * Platform porting functions and defines.
- *
- * Author: Govind Kothandapani <govindk@ami.com>
- ******************************************************************/
- #ifndef PLATFORM_PORT_H
- #define PLATFORM_PORT_H
- #include "Types.h"
- //#include "icc_what.h"
- #ifdef ICC_OS_LINUX
- //#include "OSPort.h"
- #endif
- /**
- * @def htoipmi_u32
- * @brief Converts unsigned 32 bit data from Host format to IPMI format.
- * @param Val 32bit value to be converted.
- **/
- //#if IS_PLATFORM_X86() || IS_PLATFORM_ARM() || IS_PLATFORM_SH()
- #define htoipmi_u32(Val) (Val)
- //#elif IS_PLATFORM_PPC() || IS_PLATFORM_MIPS()
- //#define htoipmi_u32(Val) ipmitoh_u32(Val)
- //#endif
-
- /**
- * @def ipmitoh_u32
- * @brief Converts unsigned 32 bit data from IPMI format to Host format.
- * @param Val 32bit value to be converted.
- **/
- //#if IS_PLATFORM_X86() || IS_PLATFORM_ARM() || IS_PLATFORM_SH()
- #define ipmitoh_u32(Val) (Val)
- //#elif IS_PLATFORM_PPC() || IS_PLATFORM_MIPS()
- //#define ipmitoh_u32(Val) (((Val & 0xFF000000) >> 24)| \
- ((Val & 0x00FF0000) >> 8) | \
- ((Val & 0x0000FF00) << 8) | \
- ((Val & 0x000000FF) << 24 ))
- //#endif
- /**
- * @def htoipmi_u16
- * @brief Converts unsigned 16 bit data from Host format to IPMI format.
- * @param Val 16bit value to be converted.
- **/
- //#if IS_PLATFORM_X86() || IS_PLATFORM_ARM() || IS_PLATFORM_SH()
- #define htoipmi_u16(Val) (Val)
- //#elif IS_PLATFORM_PPC() || IS_PLATFORM_MIPS()
- //#define htoipmi_u16(Val) ipmitoh_u16(Val)
- //#endif
- /**
- * @def htoipmi_u16
- * @brief Converts unsigned 16 bit data from IPMI format to Host format.
- * @param Val 16bit value to be converted.
- **/
- //#if IS_PLATFORM_X86() || IS_PLATFORM_ARM() || IS_PLATFORM_SH()
- #define ipmitoh_u16(Val) (Val)
- //#elif IS_PLATFORM_PPC() || IS_PLATFORM_MIPS()
- //#define ipmitoh_u16(Val) (INT16U)(((INT16U)(Val) & 0xFF00) >> 8 | ((INT16U)(Val) & 0x00FF) << 8)
- //#endif
- /*** Extern Declarations ***/
- extern int InitMultiplePlatform(void);
- /*** Functions Prototypes ***/
- /**
- * @brief Initialises the Platform.
- * @return 0 if success else -1
- **/
- extern int Platform_Init (void);
- /**
- * @brief Platform setup performed after shared memory initialized.
- * @return 0 if success else -1
- **/
- extern int Platform_Init_SharedMem (void);
- /**
- * @brief Platform setup performed after IPMI stack running.
- * @return 0 if success else -1
- **/
- extern int Platform_Init_Done (void);
- /**
- * @brief Warm resets the BMC.
- **/
- extern void Platform_WarmReset (int BMCInst);
- /**
- * @brief Cold resets the BMC.
- **/
- extern void Platform_ColdReset (int BMCInst);
- /**
- * @brief Powers up the Host.
- **/
- extern void Platform_HostPowerUp (int BMCInst);
- /**
- * @brief Powers Off the Host.
- **/
- extern void Platform_HostPowerOff (int BMCInst);
- /**
- * @brief Powers on the Host.
- * @return 0 if success else -1.
- **/
- extern BOOL Platform_HostPowerOn (int BMCInst);
- /**
- * @brief Power cycles the Host.
- **/
- extern void Platform_HostPowerCycle (int BMCInst);
- /**
- * @brief Soft Shutdowns the Host.
- **/
- extern void Platform_HostSoftShutDown (int BMCInst);
- /**
- * @brief Resets the Host.
- **/
- extern void Platform_HostColdReset (int BMCInst);
- /**
- * @brief Generates the Diagnodtic (NMI) interrupt.
- **/
- extern void Platform_HostDiagInt (int BMCInst);
- /**
- * @brief Identifies the platform
- **/
- extern void Platform_Identify (INT32U Timeout, int Force, int BMCInst);
- extern void ResetSetInProgressParam (int BMCInst);
- #endif /* PLATFORM_PORT_H */
|