mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-15 01:19:36 +00:00
176 lines
3.1 KiB
C
176 lines
3.1 KiB
C
|
|
||
|
/******************************************************************************
|
||
|
*
|
||
|
* 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 __PHYDMADAPTIVITY_H__
|
||
|
#define __PHYDMADAPTIVITY_H__
|
||
|
|
||
|
#define ADAPTIVITY_VERSION "9.3.5" /*20160902 changed by Kevin, refine method for searching pwdb lower bound*/
|
||
|
|
||
|
#define pwdb_upper_bound 7
|
||
|
#define dfir_loss 5
|
||
|
|
||
|
enum phydm_adapinfo_e {
|
||
|
PHYDM_ADAPINFO_CARRIER_SENSE_ENABLE = 0,
|
||
|
PHYDM_ADAPINFO_DCBACKOFF,
|
||
|
PHYDM_ADAPINFO_DYNAMICLINKADAPTIVITY,
|
||
|
PHYDM_ADAPINFO_TH_L2H_INI,
|
||
|
PHYDM_ADAPINFO_TH_EDCCA_HL_DIFF,
|
||
|
PHYDM_ADAPINFO_AP_NUM_TH
|
||
|
};
|
||
|
|
||
|
enum phydm_set_lna {
|
||
|
phydm_disable_lna = 0,
|
||
|
phydm_enable_lna = 1,
|
||
|
};
|
||
|
|
||
|
|
||
|
enum phydm_trx_mux_type {
|
||
|
phydm_shutdown = 0,
|
||
|
phydm_standby_mode = 1,
|
||
|
phydm_tx_mode = 2,
|
||
|
phydm_rx_mode = 3
|
||
|
};
|
||
|
|
||
|
enum phydm_mac_edcca_type {
|
||
|
phydm_ignore_edcca = 0,
|
||
|
phydm_dont_ignore_edcca = 1
|
||
|
};
|
||
|
|
||
|
struct _ADAPTIVITY_STATISTICS {
|
||
|
s8 th_l2h_ini_backup;
|
||
|
s8 th_edcca_hl_diff_backup;
|
||
|
s8 igi_base;
|
||
|
u8 igi_target;
|
||
|
u8 nhm_wait;
|
||
|
s8 h2l_lb;
|
||
|
s8 l2h_lb;
|
||
|
bool is_first_link;
|
||
|
bool is_check;
|
||
|
bool dynamic_link_adaptivity;
|
||
|
u8 ap_num_th;
|
||
|
u8 adajust_igi_level;
|
||
|
bool acs_for_adaptivity;
|
||
|
s8 backup_l2h;
|
||
|
s8 backup_h2l;
|
||
|
bool is_stop_edcca;
|
||
|
};
|
||
|
|
||
|
void
|
||
|
phydm_pause_edcca(
|
||
|
void *p_dm_void,
|
||
|
bool is_pasue_edcca
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_check_adaptivity(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_check_environment(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_nhm_counter_statistics_init(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_nhm_counter_statistics(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_nhm_counter_statistics_reset(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_get_nhm_counter_statistics(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_mac_edcca_state(
|
||
|
void *p_dm_void,
|
||
|
enum phydm_mac_edcca_type state
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_set_edcca_threshold(
|
||
|
void *p_dm_void,
|
||
|
s8 H2L,
|
||
|
s8 L2H
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_set_trx_mux(
|
||
|
void *p_dm_void,
|
||
|
enum phydm_trx_mux_type tx_mode,
|
||
|
enum phydm_trx_mux_type rx_mode
|
||
|
);
|
||
|
|
||
|
bool
|
||
|
phydm_cal_nhm_cnt(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_search_pwdb_lower_bound(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_adaptivity_info_init(
|
||
|
void *p_dm_void,
|
||
|
enum phydm_adapinfo_e cmn_info,
|
||
|
u32 value
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_adaptivity_init(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_adaptivity(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_set_edcca_threshold_api(
|
||
|
void *p_dm_void,
|
||
|
u8 IGI
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_pause_edcca_work_item_callback(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
void
|
||
|
phydm_resume_edcca_work_item_callback(
|
||
|
void *p_dm_void
|
||
|
);
|
||
|
|
||
|
#endif
|