1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-09-20 05:00:36 +00:00
rtl8812au/hal/phydm/phydm_pow_train.c

229 lines
6.7 KiB
C
Raw Normal View History

2018-06-22 16:48:32 +00:00
/******************************************************************************
*
2018-08-24 20:52:34 +00:00
* Copyright(c) 2007 - 2017 Realtek Corporation.
2018-06-22 16:48:32 +00:00
*
* 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
2018-08-24 20:52:34 +00:00
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
2018-06-22 16:48:32 +00:00
* more details.
*
2018-08-24 20:52:34 +00:00
* The full GNU General Public License is included in this distribution in the
* file called LICENSE.
*
* Contact Information:
* wlanfae <wlanfae@realtek.com>
* Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
* Hsinchu 300, Taiwan.
*
* Larry Finger <Larry.Finger@lwfinger.net>
*
2018-06-22 16:48:32 +00:00
*****************************************************************************/
/* ************************************************************
* include files
* ************************************************************ */
#include "mp_precomp.h"
#include "phydm_precomp.h"
#ifdef PHYDM_POWER_TRAINING_SUPPORT
void
phydm_reset_pt_para(
2018-08-24 20:52:34 +00:00
void *dm_void
2018-06-22 16:48:32 +00:00
)
{
2018-08-24 20:52:34 +00:00
struct dm_struct *dm = (struct dm_struct *)dm_void;
struct phydm_pow_train_stuc *pow_train_t = &dm->pow_train_table;
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
pow_train_t->pow_train_score = 0;
dm->phy_dbg_info.num_qry_phy_status_ofdm = 0;
dm->phy_dbg_info.num_qry_phy_status_cck = 0;
2018-06-22 16:48:32 +00:00
}
void
phydm_update_power_training_state(
2018-08-24 20:52:34 +00:00
void *dm_void
2018-06-22 16:48:32 +00:00
)
{
2018-08-24 20:52:34 +00:00
struct dm_struct *dm = (struct dm_struct *)dm_void;
struct phydm_pow_train_stuc *pow_train_t = &dm->pow_train_table;
struct phydm_fa_struct *fa_cnt = &dm->false_alm_cnt;
struct phydm_dig_struct *dig_t = &dm->dm_dig_table;
2018-06-22 16:48:32 +00:00
u32 pt_score_tmp = 0;
u32 crc_ok_cnt;
u32 cca_all_cnt;
/*is_disable_power_training is the key to H2C to disable/enable power training*/
/*if is_disable_power_training == 1, it will use largest power*/
2018-08-24 20:52:34 +00:00
if (!(dm->support_ability & ODM_BB_PWR_TRAIN)) {
dm->is_disable_power_training = true;
phydm_reset_pt_para(dm);
2018-06-22 16:48:32 +00:00
return;
}
2018-08-24 20:52:34 +00:00
PHYDM_DBG(dm, DBG_PWR_TRAIN, "%s ======>\n", __FUNCTION__);
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
if (pow_train_t->force_power_training_state == DISABLE_POW_TRAIN) {
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
dm->is_disable_power_training = true;
phydm_reset_pt_para(dm);
PHYDM_DBG(dm, DBG_PWR_TRAIN, "Disable PT\n");
2018-06-22 16:48:32 +00:00
return;
2018-08-24 20:52:34 +00:00
} else if (pow_train_t->force_power_training_state == ENABLE_POW_TRAIN) {
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
dm->is_disable_power_training = false;
phydm_reset_pt_para(dm);
PHYDM_DBG(dm, DBG_PWR_TRAIN, "Enable PT\n");
2018-06-22 16:48:32 +00:00
return;
2018-08-24 20:52:34 +00:00
} else if (pow_train_t->force_power_training_state == DYNAMIC_POW_TRAIN) {
PHYDM_DBG(dm, DBG_PWR_TRAIN, "Dynamic PT\n");
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
if (!dm->is_linked) {
dm->is_disable_power_training = true;
pow_train_t->pow_train_score = 0;
dm->phy_dbg_info.num_qry_phy_status_ofdm = 0;
dm->phy_dbg_info.num_qry_phy_status_cck = 0;
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
PHYDM_DBG(dm, DBG_PWR_TRAIN, "PT is disabled due to no link.\n");
2018-06-22 16:48:32 +00:00
return;
}
/* First connect */
2018-08-24 20:52:34 +00:00
if ((dm->is_linked) && (!dig_t->is_media_connect)) {
pow_train_t->pow_train_score = 0;
dm->phy_dbg_info.num_qry_phy_status_ofdm = 0;
dm->phy_dbg_info.num_qry_phy_status_cck = 0;
PHYDM_DBG(dm, DBG_PWR_TRAIN, "(PT)First Connect\n");
2018-06-22 16:48:32 +00:00
return;
}
/* Compute score */
2018-08-24 20:52:34 +00:00
crc_ok_cnt = dm->phy_dbg_info.num_qry_phy_status_ofdm + dm->phy_dbg_info.num_qry_phy_status_cck;
cca_all_cnt = fa_cnt->cnt_cca_all;
2018-06-22 16:48:32 +00:00
if (crc_ok_cnt < cca_all_cnt) {
/* crc_ok <= (2/3)*cca */
if ((crc_ok_cnt + (crc_ok_cnt >> 1)) <= cca_all_cnt)
pt_score_tmp = DISABLE_PT_SCORE;
/* crc_ok <= (4/5)*cca */
else if ((crc_ok_cnt + (crc_ok_cnt >> 2)) <= cca_all_cnt)
pt_score_tmp = KEEP_PRE_PT_SCORE;
/* crc_ok > (4/5)*cca */
else
pt_score_tmp = ENABLE_PT_SCORE;
} else {
pt_score_tmp = ENABLE_PT_SCORE;
}
2018-08-24 20:52:34 +00:00
PHYDM_DBG(dm, DBG_PWR_TRAIN, "crc_ok_cnt = %d, cnt_cca_all = %d\n",
crc_ok_cnt, cca_all_cnt);
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
PHYDM_DBG(dm, DBG_PWR_TRAIN, "num_qry_phy_status_ofdm = %d, num_qry_phy_status_cck = %d\n",
dm->phy_dbg_info.num_qry_phy_status_ofdm, dm->phy_dbg_info.num_qry_phy_status_cck);
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
PHYDM_DBG(dm, DBG_PWR_TRAIN, "pt_score_tmp = %d\n", pt_score_tmp);
PHYDM_DBG(dm, DBG_PWR_TRAIN, "pt_score_tmp = 0(DISABLE), 1(KEEP), 2(ENABLE)\n");
2018-06-22 16:48:32 +00:00
/* smoothing */
2018-08-24 20:52:34 +00:00
pow_train_t->pow_train_score = (pt_score_tmp << 4) + (pow_train_t->pow_train_score >> 1) + (pow_train_t->pow_train_score >> 2);
pt_score_tmp = (pow_train_t->pow_train_score + 32) >> 6;
PHYDM_DBG(dm, DBG_PWR_TRAIN, "pow_train_score = %d, score after smoothing = %d\n",
pow_train_t->pow_train_score, pt_score_tmp);
2018-06-22 16:48:32 +00:00
/* mode decision */
if (pt_score_tmp == ENABLE_PT_SCORE) {
2018-08-24 20:52:34 +00:00
dm->is_disable_power_training = false;
PHYDM_DBG(dm, DBG_PWR_TRAIN, "Enable power training under dynamic.\n");
2018-06-22 16:48:32 +00:00
} else if (pt_score_tmp == DISABLE_PT_SCORE) {
2018-08-24 20:52:34 +00:00
dm->is_disable_power_training = true;
PHYDM_DBG(dm, DBG_PWR_TRAIN, "Disable PT due to noisy.\n");
2018-06-22 16:48:32 +00:00
}
2018-08-24 20:52:34 +00:00
PHYDM_DBG(dm, DBG_PWR_TRAIN, "Final, score = %d, is_disable_power_training = %d\n",
pt_score_tmp, dm->is_disable_power_training);
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
dm->phy_dbg_info.num_qry_phy_status_ofdm = 0;
dm->phy_dbg_info.num_qry_phy_status_cck = 0;
2018-06-22 16:48:32 +00:00
} else {
2018-08-24 20:52:34 +00:00
dm->is_disable_power_training = true;
phydm_reset_pt_para(dm);
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
PHYDM_DBG(dm, DBG_PWR_TRAIN, "PT is disabled due to unknown pt state.\n");
2018-06-22 16:48:32 +00:00
return;
}
}
void
phydm_pow_train_debug(
2018-08-24 20:52:34 +00:00
void *dm_void,
2018-06-22 16:48:32 +00:00
char input[][16],
u32 *_used,
char *output,
u32 *_out_len,
u32 input_num
)
{
2018-08-24 20:52:34 +00:00
struct dm_struct *dm = (struct dm_struct *)dm_void;
struct phydm_pow_train_stuc *pow_train_t = &dm->pow_train_table;
2018-06-22 16:48:32 +00:00
char help[] = "-h";
u32 var1[10] = {0};
u32 used = *_used;
u32 out_len = *_out_len;
u32 i;
if ((strcmp(input[1], help) == 0)) {
2018-08-24 20:52:34 +00:00
PDM_SNPF(out_len, used, output + used, out_len - used,
"0: Dynamic state\n");
PDM_SNPF(out_len, used, output + used, out_len - used,
"1: Enable PT\n");
PDM_SNPF(out_len, used, output + used, out_len - used,
"2: Disable PT\n");
2018-06-22 16:48:32 +00:00
} else {
for (i = 0; i < 10; i++) {
if (input[i + 1]) {
PHYDM_SSCANF(input[i + 1], DCMD_HEX, &var1[i]);
}
}
if (var1[0] == 0) {
2018-08-24 20:52:34 +00:00
pow_train_t->force_power_training_state = DYNAMIC_POW_TRAIN;
PDM_SNPF(out_len, used, output + used,
out_len - used, "Dynamic state\n");
2018-06-22 16:48:32 +00:00
} else if (var1[0] == 1) {
2018-08-24 20:52:34 +00:00
pow_train_t->force_power_training_state = ENABLE_POW_TRAIN;
PDM_SNPF(out_len, used, output + used,
out_len - used, "Enable PT\n");
2018-06-22 16:48:32 +00:00
} else if (var1[0] == 2) {
2018-08-24 20:52:34 +00:00
pow_train_t->force_power_training_state = DISABLE_POW_TRAIN;
PDM_SNPF(out_len, used, output + used,
out_len - used, "Disable PT\n");
2018-06-22 16:48:32 +00:00
} else {
2018-08-24 20:52:34 +00:00
PDM_SNPF(out_len, used, output + used,
out_len - used, "Set Error\n");
2018-06-22 16:48:32 +00:00
}
}
*_used = used;
*_out_len = out_len;
}
#endif