| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- /******************************************************************************
- *
- * 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 __HALHWOUTSRC_H__
- #define __HALHWOUTSRC_H__
- /*--------------------------Define -------------------------------------------*/
- #define CCK_RSSI_INIT_COUNT 5
- #define RA_RSSI_STATE_INIT 0
- #define RA_RSSI_STATE_SEND 1
- #define RA_RSSI_STATE_HOLD 2
- #define CFO_HW_RPT_2_MHZ(val) ((val<<1) + (val>>1))
- /* ((X* 3125) / 10)>>7 = (X*10)>>2 = X*2.5 = X<<1 + X>>1 */
- #define AGC_DIFF_CONFIG_MP(ic, band) (odm_read_and_config_mp_##ic##_agc_tab_diff(p_dm_odm, array_mp_##ic##_agc_tab_diff_##band, \
- sizeof(array_mp_##ic##_agc_tab_diff_##band)/sizeof(u32)))
- #define AGC_DIFF_CONFIG_TC(ic, band) (odm_read_and_config_tc_##ic##_agc_tab_diff(p_dm_odm, array_tc_##ic##_agc_tab_diff_##band, \
- sizeof(array_tc_##ic##_agc_tab_diff_##band)/sizeof(u32)))
- #define AGC_DIFF_CONFIG(ic, band) do {\
- if (p_dm_odm->is_mp_chip)\
- AGC_DIFF_CONFIG_MP(ic, band);\
- else\
- AGC_DIFF_CONFIG_TC(ic, band);\
- } while (0)
- /* ************************************************************
- * structure and define
- * ************************************************************ */
- __PACK struct _phy_rx_agc_info {
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 gain: 7, trsw: 1;
- #else
- u8 trsw: 1, gain: 7;
- #endif
- };
- __PACK struct _phy_status_rpt_8192cd {
- struct _phy_rx_agc_info path_agc[2];
- u8 ch_corr[2];
- u8 cck_sig_qual_ofdm_pwdb_all;
- u8 cck_agc_rpt_ofdm_cfosho_a;
- u8 cck_rpt_b_ofdm_cfosho_b;
- u8 rsvd_1;/*ch_corr_msb;*/
- u8 noise_power_db_msb;
- s8 path_cfotail[2];
- u8 pcts_mask[2];
- s8 stream_rxevm[2];
- u8 path_rxsnr[2];
- u8 noise_power_db_lsb;
- u8 rsvd_2[3];
- u8 stream_csi[2];
- u8 stream_target_csi[2];
- s8 sig_evm;
- u8 rsvd_3;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 antsel_rx_keep_2: 1; /*ex_intf_flg:1;*/
- u8 sgi_en: 1;
- u8 rxsc: 2;
- u8 idle_long: 1;
- u8 r_ant_train_en: 1;
- u8 ant_sel_b: 1;
- u8 ant_sel: 1;
- #else /*_BIG_ENDIAN_ */
- u8 ant_sel: 1;
- u8 ant_sel_b: 1;
- u8 r_ant_train_en: 1;
- u8 idle_long: 1;
- u8 rxsc: 2;
- u8 sgi_en: 1;
- u8 antsel_rx_keep_2: 1;/*ex_intf_flg:1;*/
- #endif
- };
- struct _phy_status_rpt_8812 {
- /* DWORD 0*/
- u8 gain_trsw[2]; /*path-A and path-B {TRSW, gain[6:0] }*/
- u8 chl_num_LSB; /*channel number[7:0]*/
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 chl_num_MSB: 2; /*channel number[9:8]*/
- u8 sub_chnl: 4; /*sub-channel location[3:0]*/
- u8 r_RFMOD: 2; /*RF mode[1:0]*/
- #else /*_BIG_ENDIAN_ */
- u8 r_RFMOD: 2;
- u8 sub_chnl: 4;
- u8 chl_num_MSB: 2;
- #endif
- /* DWORD 1*/
- u8 pwdb_all; /*CCK signal quality / OFDM pwdb all*/
- s8 cfosho[2]; /*DW1 byte 1 DW1 byte2 CCK AGC report and CCK_BB_Power / OFDM path-A and path-B short CFO*/
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- /*this should be checked again because the definition of 8812 and 8814 is different*/
- /* u8 r_cck_rx_enable_pathc:2; cck rx enable pathc[1:0]*/
- /* u8 cck_rx_path:4; cck rx path[3:0]*/
- u8 resvd_0: 6;
- u8 bt_RF_ch_MSB: 2; /*8812A:2'b0 8814A: bt rf channel keep[7:6]*/
- #else /*_BIG_ENDIAN_*/
- u8 bt_RF_ch_MSB: 2;
- u8 resvd_0: 6;
- #endif
- /* DWORD 2*/
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 ant_div_sw_a: 1; /*8812A: ant_div_sw_a 8814A: 1'b0*/
- u8 ant_div_sw_b: 1; /*8812A: ant_div_sw_b 8814A: 1'b0*/
- u8 bt_RF_ch_LSB: 6; /*8812A: 6'b0 8814A: bt rf channel keep[5:0]*/
- #else /*_BIG_ENDIAN_ */
- u8 bt_RF_ch_LSB: 6;
- u8 ant_div_sw_b: 1;
- u8 ant_div_sw_a: 1;
- #endif
- s8 cfotail[2]; /*DW2 byte 1 DW2 byte 2 path-A and path-B CFO tail*/
- u8 PCTS_MSK_RPT_0; /*PCTS mask report[7:0]*/
- u8 PCTS_MSK_RPT_1; /*PCTS mask report[15:8]*/
- /* DWORD 3*/
- s8 rxevm[2]; /*DW3 byte 1 DW3 byte 2 stream 1 and stream 2 RX EVM*/
- s8 rxsnr[2]; /*DW3 byte 3 DW4 byte 0 path-A and path-B RX SNR*/
- /* DWORD 4*/
- u8 PCTS_MSK_RPT_2; /*PCTS mask report[23:16]*/
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 PCTS_MSK_RPT_3: 6; /*PCTS mask report[29:24]*/
- u8 pcts_rpt_valid: 1; /*pcts_rpt_valid*/
- u8 resvd_1: 1; /*1'b0*/
- #else /*_BIG_ENDIAN_*/
- u8 resvd_1: 1;
- u8 pcts_rpt_valid: 1;
- u8 PCTS_MSK_RPT_3: 6;
- #endif
- s8 rxevm_cd[2]; /*DW 4 byte 3 DW5 byte 0 8812A: 16'b0 8814A: stream 3 and stream 4 RX EVM*/
- /* DWORD 5*/
- u8 csi_current[2]; /*DW5 byte 1 DW5 byte 2 8812A: stream 1 and 2 CSI 8814A: path-C and path-D RX SNR*/
- u8 gain_trsw_cd[2]; /*DW5 byte 3 DW6 byte 0 path-C and path-D {TRSW, gain[6:0] }*/
- /* DWORD 6*/
- s8 sigevm; /*signal field EVM*/
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 antidx_antc: 3; /*8812A: 3'b0 8814A: antidx_antc[2:0]*/
- u8 antidx_antd: 3; /*8812A: 3'b0 8814A: antidx_antd[2:0]*/
- u8 dpdt_ctrl_keep: 1; /*8812A: 1'b0 8814A: dpdt_ctrl_keep*/
- u8 GNT_BT_keep: 1; /*8812A: 1'b0 8814A: GNT_BT_keep*/
- #else /*_BIG_ENDIAN_*/
- u8 GNT_BT_keep: 1;
- u8 dpdt_ctrl_keep: 1;
- u8 antidx_antd: 3;
- u8 antidx_antc: 3;
- #endif
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 antidx_anta: 3; /*antidx_anta[2:0]*/
- u8 antidx_antb: 3; /*antidx_antb[2:0]*/
- u8 hw_antsw_occur: 2; /*1'b0*/
- #else /*_BIG_ENDIAN_*/
- u8 hw_antsw_occur: 2;
- u8 antidx_antb: 3;
- u8 antidx_anta: 3;
- #endif
- };
- void
- phydm_reset_rssi_for_dm(
- struct PHY_DM_STRUCT *p_dm_odm,
- u8 station_id
- );
- void
- odm_init_rssi_for_dm(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- #if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
- void
- phydm_normal_driver_rx_sniffer(
- struct PHY_DM_STRUCT *p_dm_odm,
- u8 *p_desc,
- PRT_RFD_STATUS p_rt_rfd_status,
- u8 *p_drv_info,
- u8 phy_status
- );
- #endif
- void
- odm_phy_status_query(
- struct PHY_DM_STRUCT *p_dm_odm,
- struct _odm_phy_status_info_ *p_phy_info,
- u8 *p_phy_status,
- struct _odm_per_pkt_info_ *p_pktinfo
- );
- void
- odm_mac_status_query(
- struct PHY_DM_STRUCT *p_dm_odm,
- u8 *p_mac_status,
- u8 mac_id,
- boolean is_packet_match_bssid,
- boolean is_packet_to_self,
- boolean is_packet_beacon
- );
- enum hal_status
- odm_config_rf_with_tx_pwr_track_header_file(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- enum hal_status
- odm_config_rf_with_header_file(
- struct PHY_DM_STRUCT *p_dm_odm,
- enum odm_rf_config_type config_type,
- enum odm_rf_radio_path_e e_rf_path
- );
- enum hal_status
- odm_config_bb_with_header_file(
- struct PHY_DM_STRUCT *p_dm_odm,
- enum odm_bb_config_type config_type
- );
- enum hal_status
- odm_config_mac_with_header_file(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- enum hal_status
- odm_config_fw_with_header_file(
- struct PHY_DM_STRUCT *p_dm_odm,
- enum odm_fw_config_type config_type,
- u8 *p_firmware,
- u32 *p_size
- );
- u32
- odm_get_hw_img_version(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- s32
- odm_signal_scale_mapping(
- struct PHY_DM_STRUCT *p_dm_odm,
- s32 curr_sig
- );
- #if (ODM_PHY_STATUS_NEW_TYPE_SUPPORT == 1)
- /*For 8822B only!! need to move to FW finally */
- /*==============================================*/
- void
- phydm_rx_phy_status_new_type(
- struct PHY_DM_STRUCT *p_phydm,
- u8 *p_phy_status,
- struct _odm_per_pkt_info_ *p_pktinfo,
- struct _odm_phy_status_info_ *p_phy_info
- );
- boolean
- phydm_query_is_mu_api(
- struct PHY_DM_STRUCT *p_phydm,
- u8 ppdu_idx,
- u8 *p_data_rate,
- u8 *p_gid
- );
- struct _phy_status_rpt_jaguar2_type0 {
- /* DW0 */
- u8 page_num;
- u8 pwdb;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 gain: 6;
- u8 rsvd_0: 1;
- u8 trsw: 1;
- #else
- u8 trsw: 1;
- u8 rsvd_0: 1;
- u8 gain: 6;
- #endif
- u8 rsvd_1;
- /* DW1 */
- u8 rsvd_2;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 rxsc: 4;
- u8 agc_table: 4;
- #else
- u8 agc_table: 4;
- u8 rxsc: 4;
- #endif
- u8 channel;
- u8 band;
- /* DW2 */
- u16 length;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 antidx_a: 3;
- u8 antidx_b: 3;
- u8 rsvd_3: 2;
- u8 antidx_c: 3;
- u8 antidx_d: 3;
- u8 rsvd_4:2;
- #else
- u8 rsvd_3: 2;
- u8 antidx_b: 3;
- u8 antidx_a: 3;
- u8 rsvd_4:2;
- u8 antidx_d: 3;
- u8 antidx_c: 3;
- #endif
- /* DW3 */
- u8 signal_quality;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 vga:5;
- u8 lna_l:3;
- u8 bb_power:6;
- u8 rsvd_9:1;
- u8 lna_h:1;
- #else
- u8 lna_l:3;
- u8 vga:5;
- u8 lna_h:1;
- u8 rsvd_9:1;
- u8 bb_power:6;
- #endif
- u8 rsvd_5;
- /* DW4 */
- u32 rsvd_6;
- /* DW5 */
- u32 rsvd_7;
- /* DW6 */
- u32 rsvd_8;
- };
- struct _phy_status_rpt_jaguar2_type1 {
- /* DW0 and DW1 */
- u8 page_num;
- u8 pwdb[4];
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 l_rxsc: 4;
- u8 ht_rxsc: 4;
- #else
- u8 ht_rxsc: 4;
- u8 l_rxsc: 4;
- #endif
- u8 channel;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 band: 2;
- u8 rsvd_0: 1;
- u8 hw_antsw_occu: 1;
- u8 gnt_bt: 1;
- u8 ldpc: 1;
- u8 stbc: 1;
- u8 beamformed: 1;
- #else
- u8 beamformed: 1;
- u8 stbc: 1;
- u8 ldpc: 1;
- u8 gnt_bt: 1;
- u8 hw_antsw_occu: 1;
- u8 rsvd_0: 1;
- u8 band: 2;
- #endif
- /* DW2 */
- u16 lsig_length;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 antidx_a: 3;
- u8 antidx_b: 3;
- u8 rsvd_1: 2;
- u8 antidx_c: 3;
- u8 antidx_d: 3;
- u8 rsvd_2: 2;
- #else
- u8 rsvd_1: 2;
- u8 antidx_b: 3;
- u8 antidx_a: 3;
- u8 rsvd_2: 2;
- u8 antidx_d: 3;
- u8 antidx_c: 3;
- #endif
- /* DW3 */
- u8 paid;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 paid_msb: 1;
- u8 gid: 6;
- u8 rsvd_3: 1;
- #else
- u8 rsvd_3: 1;
- u8 gid: 6;
- u8 paid_msb: 1;
- #endif
- u8 intf_pos;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 intf_pos_msb: 1;
- u8 rsvd_4: 2;
- u8 nb_intf_flag: 1;
- u8 rf_mode: 2;
- u8 rsvd_5: 2;
- #else
- u8 rsvd_5: 2;
- u8 rf_mode: 2;
- u8 nb_intf_flag: 1;
- u8 rsvd_4: 2;
- u8 intf_pos_msb: 1;
- #endif
- /* DW4 */
- s8 rxevm[4]; /* s(8,1) */
- /* DW5 */
- s8 cfo_tail[4]; /* s(8,7) */
- /* DW6 */
- s8 rxsnr[4]; /* s(8,1) */
- };
- struct _phy_status_rpt_jaguar2_type2 {
- /* DW0 ane DW1 */
- u8 page_num;
- u8 pwdb[4];
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 l_rxsc: 4;
- u8 ht_rxsc: 4;
- #else
- u8 ht_rxsc: 4;
- u8 l_rxsc: 4;
- #endif
- u8 channel;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 band: 2;
- u8 rsvd_0: 1;
- u8 hw_antsw_occu: 1;
- u8 gnt_bt: 1;
- u8 ldpc: 1;
- u8 stbc: 1;
- u8 beamformed: 1;
- #else
- u8 beamformed: 1;
- u8 stbc: 1;
- u8 ldpc: 1;
- u8 gnt_bt: 1;
- u8 hw_antsw_occu: 1;
- u8 rsvd_0: 1;
- u8 band: 2;
- #endif
- /* DW2 */
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 shift_l_map: 6;
- u8 rsvd_1: 2;
- #else
- u8 rsvd_1: 2;
- u8 shift_l_map: 6;
- #endif
- u8 cnt_pw2cca;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 agc_table_a: 4;
- u8 agc_table_b: 4;
- u8 agc_table_c: 4;
- u8 agc_table_d: 4;
- #else
- u8 agc_table_b: 4;
- u8 agc_table_a: 4;
- u8 agc_table_d: 4;
- u8 agc_table_c: 4;
- #endif
- /* DW3 ~ DW6*/
- u8 cnt_cca2agc_rdy;
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 gain_a: 6;
- u8 rsvd_2: 1;
- u8 trsw_a: 1;
- u8 gain_b: 6;
- u8 rsvd_3: 1;
- u8 trsw_b: 1;
- u8 gain_c: 6;
- u8 rsvd_4: 1;
- u8 trsw_c: 1;
- u8 gain_d: 6;
- u8 rsvd_5: 1;
- u8 trsw_d: 1;
- u8 aagc_step_a: 2;
- u8 aagc_step_b: 2;
- u8 aagc_step_c: 2;
- u8 aagc_step_d: 2;
- #else
- u8 trsw_a: 1;
- u8 rsvd_2: 1;
- u8 gain_a: 6;
- u8 trsw_b: 1;
- u8 rsvd_3: 1;
- u8 gain_b: 6;
- u8 trsw_c: 1;
- u8 rsvd_4: 1;
- u8 gain_c: 6;
- u8 trsw_d: 1;
- u8 rsvd_5: 1;
- u8 gain_d: 6;
- u8 aagc_step_d: 2;
- u8 aagc_step_c: 2;
- u8 aagc_step_b: 2;
- u8 aagc_step_a: 2;
- #endif
- u8 ht_aagc_gain[4];
- u8 dagc_gain[4];
- #if (ODM_ENDIAN_TYPE == ODM_ENDIAN_LITTLE)
- u8 counter: 6;
- u8 rsvd_6: 2;
- u8 syn_count: 5;
- u8 rsvd_7:3;
- #else
- u8 rsvd_6: 2;
- u8 counter: 6;
- u8 rsvd_7:3;
- u8 syn_count: 5;
- #endif
- };
- /*==============================================*/
- #endif /*#if (ODM_PHY_STATUS_NEW_TYPE_SUPPORT == 1)*/
- u32
- query_phydm_trx_capability(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- u32
- query_phydm_stbc_capability(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- u32
- query_phydm_ldpc_capability(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- u32
- query_phydm_txbf_parameters(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- u32
- query_phydm_txbf_capability(
- struct PHY_DM_STRUCT *p_dm_odm
- );
- #endif /*#ifndef __HALHWOUTSRC_H__*/
|