123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- /******************************************************************************
- *
- * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of version 2 of the GNU General Public License as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- *
- ******************************************************************************/
- #ifndef __HAL_COMMON_H__
- #define __HAL_COMMON_H__
- #include "HalVerDef.h"
- #include "hal_pg.h"
- #include "hal_phy.h"
- #include "hal_phy_reg.h"
- #include "hal_com_reg.h"
- #include "hal_com_phycfg.h"
- /*------------------------------ Tx Desc definition Macro ------------------------*/
- //#pragma mark -- Tx Desc related definition. --
- //----------------------------------------------------------------------------
- //-----------------------------------------------------------
- // Rate
- //-----------------------------------------------------------
- // CCK Rates, TxHT = 0
- #define DESC_RATE1M 0x00
- #define DESC_RATE2M 0x01
- #define DESC_RATE5_5M 0x02
- #define DESC_RATE11M 0x03
- // OFDM Rates, TxHT = 0
- #define DESC_RATE6M 0x04
- #define DESC_RATE9M 0x05
- #define DESC_RATE12M 0x06
- #define DESC_RATE18M 0x07
- #define DESC_RATE24M 0x08
- #define DESC_RATE36M 0x09
- #define DESC_RATE48M 0x0a
- #define DESC_RATE54M 0x0b
- // MCS Rates, TxHT = 1
- #define DESC_RATEMCS0 0x0c
- #define DESC_RATEMCS1 0x0d
- #define DESC_RATEMCS2 0x0e
- #define DESC_RATEMCS3 0x0f
- #define DESC_RATEMCS4 0x10
- #define DESC_RATEMCS5 0x11
- #define DESC_RATEMCS6 0x12
- #define DESC_RATEMCS7 0x13
- #define DESC_RATEMCS8 0x14
- #define DESC_RATEMCS9 0x15
- #define DESC_RATEMCS10 0x16
- #define DESC_RATEMCS11 0x17
- #define DESC_RATEMCS12 0x18
- #define DESC_RATEMCS13 0x19
- #define DESC_RATEMCS14 0x1a
- #define DESC_RATEMCS15 0x1b
- #define DESC_RATEMCS15_SG 0x1c
- #define DESC_RATEMCS32 0x20
- #define DESC_RATEVHTSS1MCS0 0x2c
- #define DESC_RATEVHTSS1MCS1 0x2d
- #define DESC_RATEVHTSS1MCS2 0x2e
- #define DESC_RATEVHTSS1MCS3 0x2f
- #define DESC_RATEVHTSS1MCS4 0x30
- #define DESC_RATEVHTSS1MCS5 0x31
- #define DESC_RATEVHTSS1MCS6 0x32
- #define DESC_RATEVHTSS1MCS7 0x33
- #define DESC_RATEVHTSS1MCS8 0x34
- #define DESC_RATEVHTSS1MCS9 0x35
- #define DESC_RATEVHTSS2MCS0 0x36
- #define DESC_RATEVHTSS2MCS1 0x37
- #define DESC_RATEVHTSS2MCS2 0x38
- #define DESC_RATEVHTSS2MCS3 0x39
- #define DESC_RATEVHTSS2MCS4 0x3a
- #define DESC_RATEVHTSS2MCS5 0x3b
- #define DESC_RATEVHTSS2MCS6 0x3c
- #define DESC_RATEVHTSS2MCS7 0x3d
- #define DESC_RATEVHTSS2MCS8 0x3e
- #define DESC_RATEVHTSS2MCS9 0x3f
- enum{
- UP_LINK,
- DOWN_LINK,
- };
- typedef enum _RT_MEDIA_STATUS {
- RT_MEDIA_DISCONNECT = 0,
- RT_MEDIA_CONNECT = 1
- } RT_MEDIA_STATUS;
- #define MAX_DLFW_PAGE_SIZE 4096 // @ page : 4k bytes
- typedef enum _FIRMWARE_SOURCE {
- FW_SOURCE_IMG_FILE = 0,
- FW_SOURCE_HEADER_FILE = 1, //from header file
- } FIRMWARE_SOURCE, *PFIRMWARE_SOURCE;
- // BK, BE, VI, VO, HCCA, MANAGEMENT, COMMAND, HIGH, BEACON.
- //#define MAX_TX_QUEUE 9
- #define TX_SELE_HQ BIT(0) // High Queue
- #define TX_SELE_LQ BIT(1) // Low Queue
- #define TX_SELE_NQ BIT(2) // Normal Queue
- #define TX_SELE_EQ BIT(3) // Extern Queue
- #define PageNum_128(_Len) (u32)(((_Len)>>7) + ((_Len)&0x7F ? 1:0))
- #define PageNum_256(_Len) (u32)(((_Len)>>8) + ((_Len)&0xFF ? 1:0))
- #define PageNum_512(_Len) (u32)(((_Len)>>9) + ((_Len)&0x1FF ? 1:0))
- #define PageNum(_Len, _Size) (u32)(((_Len)/(_Size)) + ((_Len)&((_Size) - 1) ? 1:0))
- void dump_chip_info(HAL_VERSION ChipVersion);
- u8 //return the final channel plan decision
- hal_com_get_channel_plan(
- IN PADAPTER padapter,
- IN u8 hw_channel_plan, //channel plan from HW (efuse/eeprom)
- IN u8 sw_channel_plan, //channel plan from SW (registry/module param)
- IN u8 def_channel_plan, //channel plan used when the former two is invalid
- IN BOOLEAN AutoLoadFail
- );
- BOOLEAN
- HAL_IsLegalChannel(
- IN PADAPTER Adapter,
- IN u32 Channel
- );
- u8 MRateToHwRate(u8 rate);
- void HalSetBrateCfg(
- IN PADAPTER Adapter,
- IN u8 *mBratesOS,
- OUT u16 *pBrateCfg);
- BOOLEAN
- Hal_MappingOutPipe(
- IN PADAPTER pAdapter,
- IN u8 NumOutPipe
- );
- void hal_init_macaddr(_adapter *adapter);
- void c2h_evt_clear(_adapter *adapter);
- s32 c2h_evt_read(_adapter *adapter, u8 *buf);
- u8 rtw_hal_networktype_to_raid(_adapter *adapter,unsigned char network_type);
- u8 rtw_get_mgntframe_raid(_adapter *adapter,unsigned char network_type);
- #endif //__HAL_COMMON_H__
|