2013-05-08 21:45:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
#define _RTL8188E_REDESC_C_
|
|
|
|
|
|
|
|
#include <osdep_service.h>
|
|
|
|
#include <drv_types.h>
|
|
|
|
#include <rtl8188e_hal.h>
|
|
|
|
|
2014-12-13 16:35:48 +00:00
|
|
|
static void process_rssi(struct adapter *padapter, struct recv_frame *prframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-13 16:35:48 +00:00
|
|
|
struct rx_pkt_attrib *pattrib = &prframe->attrib;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct signal_stat *signal_stat = &padapter->recvpriv.signal_strength_data;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (signal_stat->update_req) {
|
|
|
|
signal_stat->total_num = 0;
|
|
|
|
signal_stat->total_val = 0;
|
|
|
|
signal_stat->update_req = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
signal_stat->total_num++;
|
|
|
|
signal_stat->total_val += pattrib->phy_info.SignalStrength;
|
|
|
|
signal_stat->avg_val = signal_stat->total_val / signal_stat->total_num;
|
|
|
|
} /* Process_UI_RSSI_8192C */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-13 16:35:48 +00:00
|
|
|
static void process_link_qual(struct adapter *padapter, struct recv_frame *prframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-19 04:28:07 +00:00
|
|
|
struct rx_pkt_attrib *pattrib;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct signal_stat *signal_stat;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (prframe == NULL || padapter == NULL)
|
2013-05-08 21:45:39 +00:00
|
|
|
return;
|
|
|
|
|
2014-12-13 16:35:48 +00:00
|
|
|
pattrib = &prframe->attrib;
|
2013-05-08 21:45:39 +00:00
|
|
|
signal_stat = &padapter->recvpriv.signal_qual_data;
|
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (signal_stat->update_req) {
|
2013-05-08 21:45:39 +00:00
|
|
|
signal_stat->total_num = 0;
|
|
|
|
signal_stat->total_val = 0;
|
|
|
|
signal_stat->update_req = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
signal_stat->total_num++;
|
|
|
|
signal_stat->total_val += pattrib->phy_info.SignalQuality;
|
|
|
|
signal_stat->avg_val = signal_stat->total_val / signal_stat->total_num;
|
|
|
|
}
|
|
|
|
|
2013-07-27 01:08:39 +00:00
|
|
|
void rtl8188e_process_phy_info(struct adapter *padapter, void *prframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-13 16:35:48 +00:00
|
|
|
struct recv_frame *precvframe = (struct recv_frame *)prframe;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Check RSSI */
|
2013-05-08 21:45:39 +00:00
|
|
|
process_rssi(padapter, precvframe);
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Check EVM */
|
2013-05-08 21:45:39 +00:00
|
|
|
process_link_qual(padapter, precvframe);
|
|
|
|
}
|
|
|
|
|
2014-12-13 16:35:48 +00:00
|
|
|
void update_recvframe_attrib_88e(struct recv_frame *precvframe, struct recv_stat *prxstat)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct rx_pkt_attrib *pattrib;
|
|
|
|
struct recv_stat report;
|
|
|
|
|
2013-07-09 22:40:50 +00:00
|
|
|
report.rxdw0 = prxstat->rxdw0;
|
|
|
|
report.rxdw1 = prxstat->rxdw1;
|
|
|
|
report.rxdw2 = prxstat->rxdw2;
|
|
|
|
report.rxdw3 = prxstat->rxdw3;
|
|
|
|
report.rxdw4 = prxstat->rxdw4;
|
|
|
|
report.rxdw5 = prxstat->rxdw5;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-13 16:35:48 +00:00
|
|
|
pattrib = &precvframe->attrib;
|
2014-12-13 04:43:35 +00:00
|
|
|
memset(pattrib, 0, sizeof(struct rx_pkt_attrib));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->crc_err = (u8)((le32_to_cpu(report.rxdw0) >> 14) & 0x1);;/* u8)prxreport->crc32; */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* update rx report to recv_frame attribute */
|
|
|
|
pattrib->pkt_rpt_type = (u8)((le32_to_cpu(report.rxdw3) >> 14) & 0x3);/* prxreport->rpt_sel; */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
if (pattrib->pkt_rpt_type == NORMAL_RX) { /* Normal rx packet */
|
|
|
|
pattrib->pkt_len = (u16)(le32_to_cpu(report.rxdw0) & 0x00003fff);/* u16)prxreport->pktlen; */
|
|
|
|
pattrib->drvinfo_sz = (u8)((le32_to_cpu(report.rxdw0) >> 16) & 0xf) * 8;/* u8)(prxreport->drvinfosize << 3); */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->physt = (u8)((le32_to_cpu(report.rxdw0) >> 26) & 0x1);/* u8)prxreport->physt; */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
pattrib->bdecrypted = (le32_to_cpu(report.rxdw0) & BIT(27)) ? 0 : 1;/* u8)(prxreport->swdec ? 0 : 1); */
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->encrypt = (u8)((le32_to_cpu(report.rxdw0) >> 20) & 0x7);/* u8)prxreport->security; */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->qos = (u8)((le32_to_cpu(report.rxdw0) >> 23) & 0x1);/* u8)prxreport->qos; */
|
|
|
|
pattrib->priority = (u8)((le32_to_cpu(report.rxdw1) >> 8) & 0xf);/* u8)prxreport->tid; */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->amsdu = (u8)((le32_to_cpu(report.rxdw1) >> 13) & 0x1);/* u8)prxreport->amsdu; */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->seq_num = (u16)(le32_to_cpu(report.rxdw2) & 0x00000fff);/* u16)prxreport->seq; */
|
|
|
|
pattrib->frag_num = (u8)((le32_to_cpu(report.rxdw2) >> 12) & 0xf);/* u8)prxreport->frag; */
|
|
|
|
pattrib->mfrag = (u8)((le32_to_cpu(report.rxdw1) >> 27) & 0x1);/* u8)prxreport->mf; */
|
|
|
|
pattrib->mdata = (u8)((le32_to_cpu(report.rxdw1) >> 26) & 0x1);/* u8)prxreport->md; */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->mcs_rate = (u8)(le32_to_cpu(report.rxdw3) & 0x3f);/* u8)prxreport->rxmcs; */
|
|
|
|
pattrib->rxht = (u8)((le32_to_cpu(report.rxdw3) >> 6) & 0x1);/* u8)prxreport->rxht; */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pattrib->icv_err = (u8)((le32_to_cpu(report.rxdw0) >> 15) & 0x1);/* u8)prxreport->icverr; */
|
2013-07-09 22:40:50 +00:00
|
|
|
pattrib->shift_sz = (u8)((le32_to_cpu(report.rxdw0) >> 24) & 0x3);
|
2013-07-10 18:25:07 +00:00
|
|
|
} else if (pattrib->pkt_rpt_type == TX_REPORT1) { /* CCX */
|
2013-05-08 21:45:39 +00:00
|
|
|
pattrib->pkt_len = TX_RPT1_PKT_LEN;
|
|
|
|
pattrib->drvinfo_sz = 0;
|
2013-07-10 18:25:07 +00:00
|
|
|
} else if (pattrib->pkt_rpt_type == TX_REPORT2) { /* TX RPT */
|
2013-08-09 03:23:49 +00:00
|
|
|
pattrib->pkt_len = (u16)(le32_to_cpu(report.rxdw0) & 0x3FF);/* Rx length[9:0] */
|
2013-05-08 21:45:39 +00:00
|
|
|
pattrib->drvinfo_sz = 0;
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* */
|
|
|
|
/* Get TX report MAC ID valid. */
|
|
|
|
/* */
|
2013-07-09 22:40:50 +00:00
|
|
|
pattrib->MacIDValidEntry[0] = le32_to_cpu(report.rxdw4);
|
|
|
|
pattrib->MacIDValidEntry[1] = le32_to_cpu(report.rxdw5);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
} else if (pattrib->pkt_rpt_type == HIS_REPORT) { /* USB HISR RPT */
|
2013-08-09 03:23:49 +00:00
|
|
|
pattrib->pkt_len = (u16)(le32_to_cpu(report.rxdw0) & 0x00003fff);/* u16)prxreport->pktlen; */
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Notice:
|
|
|
|
* Before calling this function,
|
2014-12-13 16:35:48 +00:00
|
|
|
* precvframe->rx_data should be ready!
|
2013-05-08 21:45:39 +00:00
|
|
|
*/
|
2014-12-13 16:35:48 +00:00
|
|
|
void update_recvframe_phyinfo_88e(struct recv_frame *precvframe, struct phy_stat *pphy_status)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-13 16:35:48 +00:00
|
|
|
struct adapter *padapter = precvframe->adapter;
|
|
|
|
struct rx_pkt_attrib *pattrib = &precvframe->attrib;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct hal_data_8188e *pHalData = GET_HAL_DATA(padapter);
|
2013-07-26 16:20:42 +00:00
|
|
|
struct odm_phy_status_info *pPHYInfo = (struct odm_phy_status_info *)(&pattrib->phy_info);
|
2013-08-09 03:23:49 +00:00
|
|
|
u8 *wlanhdr;
|
2013-07-26 16:20:42 +00:00
|
|
|
struct odm_per_pkt_info pkt_info;
|
2013-10-19 17:45:47 +00:00
|
|
|
u8 *sa = NULL;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct sta_priv *pstapriv;
|
|
|
|
struct sta_info *psta;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
pkt_info.bPacketMatchBSSID = false;
|
2013-05-26 03:02:10 +00:00
|
|
|
pkt_info.bPacketToSelf = false;
|
|
|
|
pkt_info.bPacketBeacon = false;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
wlanhdr = get_recvframe_data(precvframe);
|
|
|
|
|
|
|
|
pkt_info.bPacketMatchBSSID = ((!IsFrameTypeCtrl(wlanhdr)) &&
|
|
|
|
!pattrib->icv_err && !pattrib->crc_err &&
|
2014-12-13 15:38:17 +00:00
|
|
|
!memcmp(get_hdr_bssid(wlanhdr),
|
2013-08-09 03:23:49 +00:00
|
|
|
get_bssid(&padapter->mlmepriv), ETH_ALEN));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
pkt_info.bPacketToSelf = pkt_info.bPacketMatchBSSID &&
|
2014-12-13 15:38:17 +00:00
|
|
|
(!memcmp(get_da(wlanhdr),
|
2013-08-09 03:23:49 +00:00
|
|
|
myid(&padapter->eeprompriv), ETH_ALEN));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
pkt_info.bPacketBeacon = pkt_info.bPacketMatchBSSID &&
|
|
|
|
(GetFrameSubType(wlanhdr) == WIFI_BEACON);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pkt_info.bPacketBeacon) {
|
|
|
|
if (check_fwstate(&padapter->mlmepriv, WIFI_STATION_STATE))
|
2013-05-08 21:45:39 +00:00
|
|
|
sa = padapter->mlmepriv.cur_network.network.MacAddress;
|
2013-07-10 18:25:07 +00:00
|
|
|
/* to do Ad-hoc */
|
2013-08-09 03:23:49 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
sa = get_sa(wlanhdr);
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pstapriv = &padapter->stapriv;
|
|
|
|
pkt_info.StationID = 0xFF;
|
|
|
|
psta = rtw_get_stainfo(pstapriv, sa);
|
|
|
|
if (psta)
|
2013-05-19 04:28:07 +00:00
|
|
|
pkt_info.StationID = psta->mac_id;
|
|
|
|
pkt_info.Rate = pattrib->mcs_rate;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-12-31 03:18:17 +00:00
|
|
|
ODM_PhyStatusQuery(&pHalData->odmpriv, pPHYInfo, (u8 *)pphy_status, &(pkt_info), padapter);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-13 16:35:48 +00:00
|
|
|
precvframe->psta = NULL;
|
2013-05-08 21:45:39 +00:00
|
|
|
if (pkt_info.bPacketMatchBSSID &&
|
2013-08-09 03:23:49 +00:00
|
|
|
(check_fwstate(&padapter->mlmepriv, WIFI_AP_STATE))) {
|
|
|
|
if (psta) {
|
2014-12-13 16:35:48 +00:00
|
|
|
precvframe->psta = psta;
|
2013-05-08 21:45:39 +00:00
|
|
|
rtl8188e_process_phy_info(padapter, precvframe);
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2013-08-09 03:23:49 +00:00
|
|
|
} else if (pkt_info.bPacketToSelf || pkt_info.bPacketBeacon) {
|
|
|
|
if (check_fwstate(&padapter->mlmepriv, WIFI_ADHOC_STATE|WIFI_ADHOC_MASTER_STATE)) {
|
2013-05-08 21:45:39 +00:00
|
|
|
if (psta)
|
2014-12-13 16:35:48 +00:00
|
|
|
precvframe->psta = psta;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
rtl8188e_process_phy_info(padapter, precvframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|