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

186 lines
4.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
*****************************************************************************/
2019-05-24 19:43:57 +00:00
#ifndef __PHYDMSOML_H__
#define __PHYDMSOML_H__
2018-06-22 16:48:32 +00:00
2019-05-24 19:43:57 +00:00
/*@#define ADAPTIVE_SOML_VERSION "1.0" Byte counter version*/
#define ADAPTIVE_SOML_VERSION "2.0" /*@add avg. phy rate decision 20180126*/
2018-06-22 16:48:32 +00:00
2019-05-24 19:43:57 +00:00
#define PHYDM_ADAPTIVE_SOML_IC (ODM_RTL8822B | ODM_RTL8197F | ODM_RTL8192F)
/*@jj add 20170822*/
2018-06-22 16:48:32 +00:00
#define INIT_SOML_TIMMER 0
2018-08-24 20:52:34 +00:00
#define CANCEL_SOML_TIMMER 1
2018-06-22 16:48:32 +00:00
#define RELEASE_SOML_TIMMER 2
#define SOML_RSSI_TH_HIGH 25
#define SOML_RSSI_TH_LOW 20
2019-05-24 19:43:57 +00:00
#define HT_RATE_IDX 16
#define VHT_RATE_IDX 20
2018-06-22 16:48:32 +00:00
2018-08-24 20:52:34 +00:00
#define HT_ORDER_TYPE 3
#define VHT_ORDER_TYPE 4
2019-05-24 19:43:57 +00:00
#if 0
2018-08-24 20:52:34 +00:00
#define CFO_QPSK_TH 20
#define CFO_QAM16_TH 20
#define CFO_QAM64_TH 20
#define CFO_QAM256_TH 20
#define BPSK_QPSK_DIST 20
#define QAM16_DIST 30
#define QAM64_DIST 30
#define QAM256_DIST 20
2019-05-24 19:43:57 +00:00
#endif
2018-08-24 20:52:34 +00:00
#define HT_TYPE 1
#define VHT_TYPE 2
2018-06-22 16:48:32 +00:00
#define SOML_ON 1
2018-08-24 20:52:34 +00:00
#define SOML_OFF 0
2018-06-22 16:48:32 +00:00
#ifdef CONFIG_ADAPTIVE_SOML
struct adaptive_soml {
2019-05-24 19:43:57 +00:00
u8 rvrt_val;
boolean is_soml_method_enable;
2018-06-22 16:48:32 +00:00
u8 soml_on_off;
u8 soml_state_cnt;
u8 soml_delay_time;
u8 soml_intvl;
u8 soml_train_num;
u8 soml_counter;
u8 soml_period;
u8 soml_select;
u8 soml_last_state;
2018-08-24 20:52:34 +00:00
u8 cfo_qpsk_th;
u8 cfo_qam16_th;
u8 cfo_qam64_th;
u8 cfo_qam256_th;
u8 bpsk_qpsk_dist_th;
u8 qam16_dist_th;
u8 qam64_dist_th;
u8 qam256_dist_th;
2019-05-24 19:43:57 +00:00
u8 cfo_cnt;
2018-08-24 20:52:34 +00:00
s32 cfo_diff_a;
s32 cfo_diff_b;
s32 cfo_diff_sum_a;
s32 cfo_diff_sum_b;
s32 cfo_diff_avg_a;
s32 cfo_diff_avg_b;
2019-05-24 19:43:57 +00:00
u16 ht_cnt[HT_RATE_IDX];
u16 pre_ht_cnt[HT_RATE_IDX];
u16 ht_cnt_on[HT_RATE_IDX];
u16 ht_cnt_off[HT_RATE_IDX];
u16 vht_cnt[VHT_RATE_IDX];
u16 pre_vht_cnt[VHT_RATE_IDX];
u16 vht_cnt_on[VHT_RATE_IDX];
u16 vht_cnt_off[VHT_RATE_IDX];
u16 num_ht_qam[HT_ORDER_TYPE];
u16 ht_byte[HT_RATE_IDX];
u16 pre_ht_byte[HT_RATE_IDX];
u16 ht_byte_on[HT_RATE_IDX];
u16 ht_byte_off[HT_RATE_IDX];
u16 num_vht_qam[VHT_ORDER_TYPE];
u16 vht_byte[VHT_RATE_IDX];
u16 pre_vht_byte[VHT_RATE_IDX];
u16 vht_byte_on[VHT_RATE_IDX];
u16 vht_byte_off[VHT_RATE_IDX];
2018-06-22 16:48:32 +00:00
#if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
#if USE_WORKITEM
RT_WORK_ITEM phydm_adaptive_soml_workitem;
#endif
#endif
2018-08-24 20:52:34 +00:00
struct phydm_timer_list phydm_adaptive_soml_timer;
};
enum qam_order {
BPSK_QPSK = 0,
QAM16 = 1,
QAM64 = 2,
QAM256 = 3
2018-06-22 16:48:32 +00:00
};
2019-05-24 19:43:57 +00:00
void phydm_dynamicsoftmletting(void *dm_void);
2018-08-24 20:52:34 +00:00
2019-05-24 19:43:57 +00:00
void phydm_soml_on_off(void *dm_void, u8 swch);
2018-06-22 16:48:32 +00:00
#if (DM_ODM_SUPPORT_TYPE == ODM_WIN)
2019-05-24 19:43:57 +00:00
void phydm_adaptive_soml_callback(struct phydm_timer_list *timer);
2018-06-22 16:48:32 +00:00
2019-05-24 19:43:57 +00:00
void phydm_adaptive_soml_workitem_callback(void *context);
2018-06-22 16:48:32 +00:00
2018-07-02 16:49:32 +00:00
#elif (DM_ODM_SUPPORT_TYPE == ODM_CE)
2019-05-24 19:43:57 +00:00
void phydm_adaptive_soml_callback(void *dm_void);
2018-07-02 16:49:32 +00:00
2019-05-24 19:43:57 +00:00
void phydm_adaptive_soml_workitem_callback(void *context);
2018-07-02 16:49:32 +00:00
2018-06-22 16:48:32 +00:00
#else
2019-05-24 19:43:57 +00:00
void phydm_adaptive_soml_callback(void *dm_void);
2018-06-22 16:48:32 +00:00
#endif
2019-05-24 19:43:57 +00:00
void phydm_rx_rate_for_soml(void *dm_void, void *pkt_info_void);
void phydm_rx_qam_for_soml(void *dm_void, void *pkt_info_void);
void phydm_soml_reset_rx_rate(void *dm_void);
void phydm_soml_reset_qam(void *dm_void);
void phydm_soml_cfo_process(void *dm_void, s32 *diff_a, s32 *diff_b);
void phydm_soml_debug(void *dm_void, char input[][16], u32 *_used,
char *output, u32 *_out_len);
void phydm_soml_statistics(void *dm_void, u8 on_off_state);
void phydm_adsl(void *dm_void);
void phydm_adaptive_soml_reset(void *dm_void);
void phydm_set_adsl_val(void *dm_void, u32 *val_buf, u8 val_len);
void phydm_soml_bytes_acq(void *dm_void, u8 rate_id, u32 length);
void phydm_adaptive_soml_timers(void *dm_void, u8 state);
void phydm_adaptive_soml_init(void *dm_void);
void phydm_adaptive_soml(void *dm_void);
void phydm_enable_adaptive_soml(void *dm_void);
void phydm_stop_adaptive_soml(void *dm_void);
2018-06-22 16:48:32 +00:00
2019-05-24 19:43:57 +00:00
void phydm_adaptive_soml_para_set(void *dm_void, u8 train_num, u8 intvl,
u8 period, u8 delay_time);
2018-06-22 16:48:32 +00:00
#endif
2019-05-24 19:43:57 +00:00
void phydm_init_soft_ml_setting(void *dm_void);
#endif /*@#ifndef __PHYDMSOML_H__*/