nt9856x/code/driver/source/net/rtl8189fs/hal/rtl8188f/rtl8188f_rxdesc.c
2023-03-28 15:07:53 +08:00

64 lines
2.5 KiB
C
Executable File

/******************************************************************************
*
* 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.
*
*****************************************************************************/
#define _RTL8188F_REDESC_C_
#include <rtl8188f_hal.h>
void rtl8188f_query_rx_desc_status(union recv_frame *precvframe, u8 *pdesc)
{
struct rx_pkt_attrib *pattrib;
pattrib = &precvframe->u.hdr.attrib;
_rtw_memset(pattrib, 0, sizeof(struct rx_pkt_attrib));
pattrib->pkt_len = (u16)GET_RX_STATUS_DESC_PKT_LEN_8188F(pdesc);
pattrib->pkt_rpt_type = GET_RX_STATUS_DESC_RPT_SEL_8188F(pdesc) ? C2H_PACKET : NORMAL_RX;
if (pattrib->pkt_rpt_type == NORMAL_RX) {
/* Offset 0 */
pattrib->crc_err = (u8)GET_RX_STATUS_DESC_CRC32_8188F(pdesc);
pattrib->icv_err = (u8)GET_RX_STATUS_DESC_ICV_8188F(pdesc);
pattrib->drvinfo_sz = (u8)GET_RX_STATUS_DESC_DRVINFO_SIZE_8188F(pdesc) << 3;
pattrib->encrypt = (u8)GET_RX_STATUS_DESC_SECURITY_8188F(pdesc);
pattrib->qos = (u8)GET_RX_STATUS_DESC_QOS_8188F(pdesc);
pattrib->shift_sz = (u8)GET_RX_STATUS_DESC_SHIFT_8188F(pdesc);
pattrib->physt = (u8)GET_RX_STATUS_DESC_PHY_STATUS_8188F(pdesc);
pattrib->bdecrypted = (u8)GET_RX_STATUS_DESC_SWDEC_8188F(pdesc) ? 0 : 1;
/* Offset 4 */
pattrib->priority = (u8)GET_RX_STATUS_DESC_TID_8188F(pdesc);
pattrib->amsdu = (u8)GET_RX_STATUS_DESC_AMSDU_8188F(pdesc);
pattrib->mdata = (u8)GET_RX_STATUS_DESC_MORE_DATA_8188F(pdesc);
pattrib->mfrag = (u8)GET_RX_STATUS_DESC_MORE_FRAG_8188F(pdesc);
/* Offset 8 */
pattrib->seq_num = (u16)GET_RX_STATUS_DESC_SEQ_8188F(pdesc);
pattrib->frag_num = (u8)GET_RX_STATUS_DESC_FRAG_8188F(pdesc);
/* Offset 12 */
pattrib->data_rate = (u8)GET_RX_STATUS_DESC_RX_RATE_8188F(pdesc);
/* Offset 16 */
pattrib->sgi = (u8)GET_RX_STATUS_DESC_SPLCP_8188F(pdesc);
pattrib->ldpc = (u8)GET_RX_STATUS_DESC_LDPC_8188F(pdesc);
pattrib->stbc = (u8)GET_RX_STATUS_DESC_STBC_8188F(pdesc);
pattrib->bw = (u8)GET_RX_STATUS_DESC_BW_8188F(pdesc);
/* Offset 20 */
/* pattrib->tsfl=(u8)GET_RX_STATUS_DESC_TSFL_8188F(pdesc); */
}
}