M7350/wlan/8192es/DriverSrcPkg/Driver/rtl8192cd_92es/WlanHAL/HalHeader/HalHWCfg.h

36 lines
1.1 KiB
C
Raw Normal View History

2024-09-09 08:59:52 +00:00
#ifndef __HAL_HW_CFG_H__
#define __HAL_HW_CFG_H__
/*-------------------------Modification Log-----------------------------------
20120416 KaiYuan Add BIT Define
-------------------------Modification Log-----------------------------------*/
/*--------------------------Define -------------------------------------------*/
#ifndef BIT
#define BIT(x) (1 << (x))
#endif
#define SUPPORT_CHIP_8723A BIT1
#define SUPPORT_CHIP_8188E BIT2
#define SUPPORT_CHIP_8881A BIT3
#define SUPPORT_CHIP_8812A BIT4
#define SUPPORT_CHIP_8821A BIT5
#define SUPPORT_CHIP_8723B BIT6
#define SUPPORT_CHIP_8192E BIT7
#define SUPPORT_CHIP_8814A BIT8
//Marco Utility
#define SUPPORT_CHIP_ALL (SUPPORT_CHIP_8723A|SUPPORT_CHIP_8188E| \
SUPPORT_CHIP_8881A|SUPPORT_CHIP_8812A| \
SUPPORT_CHIP_8821A|SUPPORT_CHIP_8723B| \
SUPPORT_CHIP_8192E | SUPPORT_CHIP_8814A)
//Compile Option
#define CONFIG_WLANREG_SUPPORT (SUPPORT_CHIP_8192E|SUPPORT_CHIP_8881A | SUPPORT_CHIP_8814A)
#endif//__HAL_HW_CFG_H__