hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/* SPDX-License-Identifier: GPL-2.0 */
/******************************************************************************
 *
 * Copyright(c) 2007 - 2017 Realtek Corporation.
 *
 * 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.
 *
 *****************************************************************************/
 
#include "mp_precomp.h"
#include "phydm_precomp.h"
 
#if (defined(CONFIG_BB_TXBF_API))
#if (RTL8822B_SUPPORT == 1)
/*Add by YuChen for 8822B MU-MIMO API*/
 
/*this function is only used for BFer*/
u8
phydm_get_ndpa_rate(
   void        *p_dm_void
)
{
   struct PHY_DM_STRUCT    *p_dm = (struct PHY_DM_STRUCT *)p_dm_void;
   u8        ndpa_rate = ODM_RATE6M;
 
   if (p_dm->rssi_min >= 30)    /*link RSSI > 30%*/
       ndpa_rate = ODM_RATE24M;
   else if (p_dm->rssi_min <= 25)
       ndpa_rate = ODM_RATE6M;
 
   PHYDM_DBG(p_dm, DBG_TXBF, ("[%s] ndpa_rate = 0x%x\n", __func__, ndpa_rate));
 
   return ndpa_rate;
 
}
 
/*this function is only used for BFer*/
u8
phydm_get_beamforming_sounding_info(
   void        *p_dm_void,
   u16    *troughput,
   u8    total_bfee_num,
   u8    *tx_rate
)
{
   u8    idx = 0;
   u8    soundingdecision = 0xff;
   struct PHY_DM_STRUCT    *p_dm = (struct PHY_DM_STRUCT *)p_dm_void;
 
   for (idx = 0; idx < total_bfee_num; idx++) {
       if (p_dm->support_ic_type & (ODM_RTL8814A)) {
           if (((tx_rate[idx] >= ODM_RATEVHTSS3MCS7) && (tx_rate[idx] <= ODM_RATEVHTSS3MCS9)))
               soundingdecision = soundingdecision & ~(1 << idx);
       } else if (p_dm->support_ic_type & (ODM_RTL8822B | ODM_RTL8822C | ODM_RTL8812)) {
           if (((tx_rate[idx] >= ODM_RATEVHTSS2MCS7) && (tx_rate[idx] <= ODM_RATEVHTSS2MCS9)))
               soundingdecision = soundingdecision & ~(1 << idx);
       } else if (p_dm->support_ic_type & (ODM_RTL8814B)) {
           if (((tx_rate[idx] >= ODM_RATEVHTSS4MCS7) && (tx_rate[idx] <= ODM_RATEVHTSS4MCS9)))
               soundingdecision = soundingdecision & ~(1 << idx);
       }
   }
 
   for (idx = 0; idx < total_bfee_num; idx++) {
       if (troughput[idx] <= 10)
           soundingdecision = soundingdecision & ~(1 << idx);
   }
 
   PHYDM_DBG(p_dm, DBG_TXBF, ("[%s] soundingdecision = 0x%x\n", __func__, soundingdecision));
 
   return soundingdecision;
 
}
 
/*this function is only used for BFer*/
u8
phydm_get_mu_bfee_snding_decision(
   void        *p_dm_void,
   u16    throughput
)
{
   u8    snding_score = 0;
   struct PHY_DM_STRUCT    *p_dm = (struct PHY_DM_STRUCT *)p_dm_void;
 
   /*throughput unit is Mbps*/
   if (throughput >= 500)
       snding_score = 100;
   else if (throughput >= 450)
       snding_score = 90;
   else if (throughput >= 400)
       snding_score = 80;
   else if (throughput >= 350)
       snding_score = 70;
   else if (throughput >= 300)
       snding_score = 60;
   else if (throughput >= 250)
       snding_score = 50;
   else if (throughput >= 200)
       snding_score = 40;
   else if (throughput >= 150)
       snding_score = 30;
   else if (throughput >= 100)
       snding_score = 20;
   else if (throughput >= 50)
       snding_score = 10;
   else
       snding_score = 0;
 
   PHYDM_DBG(p_dm, DBG_TXBF, ("[%s] snding_score = 0x%x\n", __func__, snding_score));
 
   return snding_score;
 
}
 
 
#endif
#if (DM_ODM_SUPPORT_TYPE != ODM_AP)
u8
beamforming_get_htndp_tx_rate(
   void    *p_dm_void,
   u8    comp_steering_num_of_bfer
)
{
   struct PHY_DM_STRUCT    *p_dm = (struct PHY_DM_STRUCT *)p_dm_void;
   u8 nr_index = 0;
   u8 ndp_tx_rate;
   /*Find nr*/
#if (RTL8814A_SUPPORT == 1)
   if (p_dm->support_ic_type & ODM_RTL8814A)
       nr_index = tx_bf_nr(hal_txbf_8814a_get_ntx(p_dm), comp_steering_num_of_bfer);
   else
#endif
       nr_index = tx_bf_nr(1, comp_steering_num_of_bfer);
 
   switch (nr_index) {
   case 1:
       ndp_tx_rate = ODM_MGN_MCS8;
       break;
 
   case 2:
       ndp_tx_rate = ODM_MGN_MCS16;
       break;
 
   case 3:
       ndp_tx_rate = ODM_MGN_MCS24;
       break;
 
   default:
       ndp_tx_rate = ODM_MGN_MCS8;
       break;
   }
 
   return ndp_tx_rate;
 
}
 
u8
beamforming_get_vht_ndp_tx_rate(
   void    *p_dm_void,
   u8    comp_steering_num_of_bfer
)
{
   struct PHY_DM_STRUCT    *p_dm = (struct PHY_DM_STRUCT *)p_dm_void;
   u8 nr_index = 0;
   u8 ndp_tx_rate;
   /*Find nr*/
#if (RTL8814A_SUPPORT == 1)
   if (p_dm->support_ic_type & ODM_RTL8814A)
       nr_index = tx_bf_nr(hal_txbf_8814a_get_ntx(p_dm), comp_steering_num_of_bfer);
   else
#endif
       nr_index = tx_bf_nr(1, comp_steering_num_of_bfer);
 
   switch (nr_index) {
   case 1:
       ndp_tx_rate = ODM_MGN_VHT2SS_MCS0;
       break;
 
   case 2:
       ndp_tx_rate = ODM_MGN_VHT3SS_MCS0;
       break;
 
   case 3:
       ndp_tx_rate = ODM_MGN_VHT4SS_MCS0;
       break;
 
   default:
       ndp_tx_rate = ODM_MGN_VHT2SS_MCS0;
       break;
   }
 
   return ndp_tx_rate;
 
}
#endif
 
#endif