2013-05-08 21:45:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
2013-05-19 04:28:07 +00:00
|
|
|
*
|
2013-05-08 21:45:39 +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
|
|
|
|
* 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_XMIT_C_
|
|
|
|
#include <osdep_service.h>
|
|
|
|
#include <drv_types.h>
|
|
|
|
#include <wifi.h>
|
|
|
|
#include <osdep_intf.h>
|
|
|
|
#include <usb_ops.h>
|
|
|
|
#include <rtl8188e_hal.h>
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
s32 rtl8188eu_init_xmit_priv(struct adapter *adapt)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-09 03:23:49 +00:00
|
|
|
struct xmit_priv *pxmitpriv = &adapt->xmitpriv;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
tasklet_init(&pxmitpriv->xmit_tasklet,
|
2013-08-09 03:23:49 +00:00
|
|
|
(void(*)(unsigned long))rtl8188eu_xmit_tasklet,
|
|
|
|
(unsigned long)adapt);
|
2013-05-08 21:45:39 +00:00
|
|
|
return _SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
void rtl8188eu_free_xmit_priv(struct adapter *adapt)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
static u8 urb_zero_packet_chk(struct adapter *adapt, int sz)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-09 03:23:49 +00:00
|
|
|
u8 set_tx_desc_offset;
|
|
|
|
struct hal_data_8188e *haldata = GET_HAL_DATA(adapt);
|
|
|
|
set_tx_desc_offset = (((sz + TXDESC_SIZE) % haldata->UsbBulkOutSize) == 0) ? 1 : 0;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
return set_tx_desc_offset;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-05-29 19:26:48 +00:00
|
|
|
static void rtl8188eu_cal_txdesc_chksum(struct tx_desc *ptxdesc)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-09 03:23:49 +00:00
|
|
|
u16 *usptr = (u16 *)ptxdesc;
|
|
|
|
u32 count = 16; /* (32 bytes / 2 bytes per XOR) => 16 times */
|
|
|
|
u32 index;
|
|
|
|
u16 checksum = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
/* Clear first */
|
|
|
|
ptxdesc->txdw7 &= cpu_to_le32(0xffff0000);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
for (index = 0; index < count; index++)
|
|
|
|
checksum = checksum ^ le16_to_cpu(*(__le16 *)(usptr + index));
|
|
|
|
ptxdesc->txdw7 |= cpu_to_le32(0x0000ffff & checksum);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-08-09 03:23:49 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Description: In normal chip, we should send some packet to Hw which will be used by Fw */
|
2013-08-09 03:23:49 +00:00
|
|
|
/* in FW LPS mode. The function is to fill the Tx descriptor of this packets, then */
|
|
|
|
/* Fw can tell Hw to send these packet derectly. */
|
|
|
|
void rtl8188e_fill_fake_txdesc(struct adapter *adapt, u8 *desc, u32 BufferLen, u8 ispspoll, u8 is_btqosnull)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct tx_desc *ptxdesc;
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Clear all status */
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc = (struct tx_desc *)desc;
|
2014-12-13 04:43:35 +00:00
|
|
|
memset(desc, 0, TXDESC_SIZE);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 0 */
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw0 |= cpu_to_le32(OWN | FSG | LSG); /* own, bFirstSeg, bLastSeg; */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw0 |= cpu_to_le32(((TXDESC_SIZE+OFFSET_SZ)<<OFFSET_SHT)&0x00ff0000); /* 32 bytes for TX Desc */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw0 |= cpu_to_le32(BufferLen&0x0000ffff); /* Buffer size + command header */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 4 */
|
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((QSLT_MGNT<<QSEL_SHT)&0x00001f00); /* Fixed queue of Mgnt queue */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Set NAVUSEHDR to prevent Ps-poll AId filed to be changed to error vlaue by Hw. */
|
2013-08-09 03:23:49 +00:00
|
|
|
if (ispspoll) {
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32(NAVUSEHDR);
|
2013-08-09 03:23:49 +00:00
|
|
|
} else {
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw4 |= cpu_to_le32(BIT(7)); /* Hw set sequence number */
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw3 |= cpu_to_le32((8 << 28)); /* set bit3 to 1. Suugested by TimChen. 2009.12.29. */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (is_btqosnull)
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(BIT(23)); /* BT NULL */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 16 */
|
|
|
|
ptxdesc->txdw4 |= cpu_to_le32(BIT(8));/* driver uses rate */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* USB interface drop packet if the checksum of descriptor isn't correct. */
|
|
|
|
/* Using this checksum can let hardware recovery from packet bulk out error (e.g. Cancel URC, Bulk out error.). */
|
2013-05-08 21:45:39 +00:00
|
|
|
rtl8188eu_cal_txdesc_chksum(ptxdesc);
|
|
|
|
}
|
|
|
|
|
2013-05-29 19:26:48 +00:00
|
|
|
static void fill_txdesc_sectype(struct pkt_attrib *pattrib, struct tx_desc *ptxdesc)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-29 19:26:48 +00:00
|
|
|
if ((pattrib->encrypt > 0) && !pattrib->bswenc) {
|
|
|
|
switch (pattrib->encrypt) {
|
2013-07-10 18:25:07 +00:00
|
|
|
/* SEC_TYPE : 0:NO_ENC,1:WEP40/TKIP,2:WAPI,3:AES */
|
2013-05-29 19:26:48 +00:00
|
|
|
case _WEP40_:
|
|
|
|
case _WEP104_:
|
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((0x01<<SEC_TYPE_SHT)&0x00c00000);
|
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(0x7 << AMPDU_DENSITY_SHT);
|
|
|
|
break;
|
|
|
|
case _TKIP_:
|
|
|
|
case _TKIP_WTMIC_:
|
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((0x01<<SEC_TYPE_SHT)&0x00c00000);
|
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(0x7 << AMPDU_DENSITY_SHT);
|
|
|
|
break;
|
|
|
|
case _AES_:
|
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((0x03<<SEC_TYPE_SHT)&0x00c00000);
|
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(0x7 << AMPDU_DENSITY_SHT);
|
|
|
|
break;
|
|
|
|
case _NO_PRIVACY_:
|
|
|
|
default:
|
|
|
|
break;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-29 19:26:48 +00:00
|
|
|
static void fill_txdesc_vcs(struct pkt_attrib *pattrib, __le32 *pdw)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-29 19:26:48 +00:00
|
|
|
switch (pattrib->vcs_mode) {
|
|
|
|
case RTS_CTS:
|
|
|
|
*pdw |= cpu_to_le32(RTS_EN);
|
|
|
|
break;
|
|
|
|
case CTS_TO_SELF:
|
|
|
|
*pdw |= cpu_to_le32(CTS_2_SELF);
|
|
|
|
break;
|
|
|
|
case NONE_VCS:
|
|
|
|
default:
|
|
|
|
break;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-09 04:04:25 +00:00
|
|
|
if (pattrib->vcs_mode) {
|
2013-05-08 21:45:39 +00:00
|
|
|
*pdw |= cpu_to_le32(HW_RTS_EN);
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Set RTS BW */
|
2013-05-29 19:26:48 +00:00
|
|
|
if (pattrib->ht_en) {
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= (pattrib->bwmode&HT_CHANNEL_WIDTH_40) ? cpu_to_le32(BIT(27)) : 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (pattrib->ch_offset == HAL_PRIME_CHNL_OFFSET_LOWER)
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= cpu_to_le32((0x01 << 28) & 0x30000000);
|
2013-05-09 04:04:25 +00:00
|
|
|
else if (pattrib->ch_offset == HAL_PRIME_CHNL_OFFSET_UPPER)
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= cpu_to_le32((0x02 << 28) & 0x30000000);
|
2013-05-09 04:04:25 +00:00
|
|
|
else if (pattrib->ch_offset == HAL_PRIME_CHNL_OFFSET_DONT_CARE)
|
2013-05-08 21:45:39 +00:00
|
|
|
*pdw |= 0;
|
|
|
|
else
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= cpu_to_le32((0x03 << 28) & 0x30000000);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-29 19:26:48 +00:00
|
|
|
static void fill_txdesc_phy(struct pkt_attrib *pattrib, __le32 *pdw)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-05-29 19:26:48 +00:00
|
|
|
if (pattrib->ht_en) {
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= (pattrib->bwmode&HT_CHANNEL_WIDTH_40) ? cpu_to_le32(BIT(25)) : 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-09 04:04:25 +00:00
|
|
|
if (pattrib->ch_offset == HAL_PRIME_CHNL_OFFSET_LOWER)
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= cpu_to_le32((0x01 << DATA_SC_SHT) & 0x003f0000);
|
2013-05-09 04:04:25 +00:00
|
|
|
else if (pattrib->ch_offset == HAL_PRIME_CHNL_OFFSET_UPPER)
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= cpu_to_le32((0x02 << DATA_SC_SHT) & 0x003f0000);
|
2013-05-09 04:04:25 +00:00
|
|
|
else if (pattrib->ch_offset == HAL_PRIME_CHNL_OFFSET_DONT_CARE)
|
2013-05-08 21:45:39 +00:00
|
|
|
*pdw |= 0;
|
|
|
|
else
|
2013-08-09 03:23:49 +00:00
|
|
|
*pdw |= cpu_to_le32((0x03 << DATA_SC_SHT) & 0x003f0000);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz, u8 bagg_pkt)
|
2013-05-19 04:28:07 +00:00
|
|
|
{
|
2013-08-09 03:23:49 +00:00
|
|
|
int pull = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
uint qsel;
|
2013-08-09 03:23:49 +00:00
|
|
|
u8 data_rate, pwr_status, offset;
|
|
|
|
struct adapter *adapt = pxmitframe->padapter;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct pkt_attrib *pattrib = &pxmitframe->attrib;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct hal_data_8188e *haldata = GET_HAL_DATA(adapt);
|
2013-05-08 21:45:39 +00:00
|
|
|
struct tx_desc *ptxdesc = (struct tx_desc *)pmem;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct mlme_ext_priv *pmlmeext = &adapt->mlmeextpriv;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info);
|
2013-07-26 22:56:14 +00:00
|
|
|
int bmcst = IS_MCAST(pattrib->ra);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (adapt->registrypriv.mp_mode == 0) {
|
|
|
|
if ((!bagg_pkt) && (urb_zero_packet_chk(adapt, sz) == 0)) {
|
2013-07-13 02:42:52 +00:00
|
|
|
ptxdesc = (struct tx_desc *)(pmem+PACKET_OFFSET_SZ);
|
|
|
|
pull = 1;
|
|
|
|
}
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-13 04:43:35 +00:00
|
|
|
memset(ptxdesc, 0, sizeof(struct tx_desc));
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
/* 4 offset 0 */
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw0 |= cpu_to_le32(OWN | FSG | LSG);
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw0 |= cpu_to_le32(sz & 0x0000ffff);/* update TXPKTSIZE */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-05-19 04:28:07 +00:00
|
|
|
offset = TXDESC_SIZE + OFFSET_SZ;
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw0 |= cpu_to_le32(((offset) << OFFSET_SHT) & 0x00ff0000);/* 32 bytes for TX Desc */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (bmcst)
|
|
|
|
ptxdesc->txdw0 |= cpu_to_le32(BMC);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (adapt->registrypriv.mp_mode == 0) {
|
|
|
|
if (!bagg_pkt) {
|
|
|
|
if ((pull) && (pxmitframe->pkt_offset > 0))
|
|
|
|
pxmitframe->pkt_offset = pxmitframe->pkt_offset - 1;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* pkt_offset, unit:8 bytes padding */
|
2013-05-08 21:45:39 +00:00
|
|
|
if (pxmitframe->pkt_offset > 0)
|
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((pxmitframe->pkt_offset << 26) & 0x7c000000);
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* driver uses rate */
|
|
|
|
ptxdesc->txdw4 |= cpu_to_le32(USERATE);/* rate control always by driver */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if ((pxmitframe->frame_tag & 0x0f) == DATA_FRAMETAG) {
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 4 */
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32(pattrib->mac_id & 0x3F);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
qsel = (uint)(pattrib->qsel & 0x0000001f);
|
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((qsel << QSEL_SHT) & 0x00001f00);
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((pattrib->raid << RATE_ID_SHT) & 0x000F0000);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
fill_txdesc_sectype(pattrib, ptxdesc);
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pattrib->ampdu_en) {
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(AGG_EN);/* AGG EN */
|
2013-05-29 19:26:48 +00:00
|
|
|
ptxdesc->txdw6 = cpu_to_le32(0x6666f800);
|
2013-08-09 03:23:49 +00:00
|
|
|
} else {
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(AGG_BK);/* AGG BK */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 8 */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 12 */
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw3 |= cpu_to_le32((pattrib->seqnum << SEQ_SHT) & 0x0FFF0000);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 16 , offset 20 */
|
2013-05-08 21:45:39 +00:00
|
|
|
if (pattrib->qos_en)
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw4 |= cpu_to_le32(QOS);/* QoS */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 20 */
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pxmitframe->agg_num > 1)
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32((pxmitframe->agg_num << USB_TXAGG_NUM_SHT) & 0xFF000000);
|
|
|
|
|
|
|
|
if ((pattrib->ether_type != 0x888e) &&
|
|
|
|
(pattrib->ether_type != 0x0806) &&
|
|
|
|
(pattrib->ether_type != 0x88b4) &&
|
2013-08-09 03:23:49 +00:00
|
|
|
(pattrib->dhcp_pkt != 1)) {
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Non EAP & ARP & DHCP type data packet */
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
fill_txdesc_vcs(pattrib, &ptxdesc->txdw4);
|
|
|
|
fill_txdesc_phy(pattrib, &ptxdesc->txdw4);
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw4 |= cpu_to_le32(0x00000008);/* RTS Rate=24M */
|
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(0x0001ff00);/* DATA/RTS Rate FB LMT */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pattrib->ht_en) {
|
|
|
|
if (ODM_RA_GetShortGI_8188E(&haldata->odmpriv, pattrib->mac_id))
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(SGI);/* SGI */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-08-09 03:23:49 +00:00
|
|
|
data_rate = ODM_RA_GetDecisionRate_8188E(&haldata->odmpriv, pattrib->mac_id);
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(data_rate & 0x3F);
|
2013-08-09 03:23:49 +00:00
|
|
|
pwr_status = ODM_RA_GetHwPwrStatus_8188E(&haldata->odmpriv, pattrib->mac_id);
|
|
|
|
ptxdesc->txdw4 |= cpu_to_le32((pwr_status & 0x7) << PWR_STATUS_SHT);
|
2013-07-27 02:47:50 +00:00
|
|
|
} else {
|
2013-07-10 18:25:07 +00:00
|
|
|
/* EAP data packet and ARP packet and DHCP. */
|
|
|
|
/* Use the 1M data rate to send the EAP/ARP packet. */
|
|
|
|
/* This will maybe make the handshake smooth. */
|
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(AGG_BK);/* AGG BK */
|
2013-05-08 21:45:39 +00:00
|
|
|
if (pmlmeinfo->preamble_mode == PREAMBLE_SHORT)
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw4 |= cpu_to_le32(BIT(24));/* DATA_SHORT */
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(MRateToHwRate(pmlmeext->tx_rate));
|
|
|
|
}
|
2013-08-09 03:23:49 +00:00
|
|
|
} else if ((pxmitframe->frame_tag&0x0f) == MGNT_FRAMETAG) {
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 4 */
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32(pattrib->mac_id & 0x3f);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
qsel = (uint)(pattrib->qsel&0x0000001f);
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((qsel << QSEL_SHT) & 0x00001f00);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((pattrib->raid << RATE_ID_SHT) & 0x000f0000);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 8 */
|
|
|
|
/* CCX-TXRPT ack for xmit mgmt frames. */
|
2013-07-22 19:52:13 +00:00
|
|
|
if (pxmitframe->ack_report)
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw2 |= cpu_to_le32(BIT(19));
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 12 */
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw3 |= cpu_to_le32((pattrib->seqnum<<SEQ_SHT)&0x0FFF0000);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 20 */
|
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(RTY_LMT_EN);/* retry limit enable */
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pattrib->retry_ctrl)
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(0x00180000);/* retry limit = 6 */
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(0x00300000);/* retry limit = 12 */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-13 01:51:15 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(MRateToHwRate(pmlmeext->tx_rate));
|
2013-08-09 03:23:49 +00:00
|
|
|
} else if ((pxmitframe->frame_tag&0x0f) == TXAGG_FRAMETAG) {
|
2013-05-25 23:35:42 +00:00
|
|
|
DBG_88E("pxmitframe->frame_tag == TXAGG_FRAMETAG\n");
|
2013-08-09 03:23:49 +00:00
|
|
|
} else if (((pxmitframe->frame_tag&0x0f) == MP_FRAMETAG) &&
|
|
|
|
(adapt->registrypriv.mp_mode == 1)) {
|
|
|
|
fill_txdesc_for_mp(adapt, ptxdesc);
|
|
|
|
} else {
|
2013-05-25 23:35:42 +00:00
|
|
|
DBG_88E("pxmitframe->frame_tag = %d\n", pxmitframe->frame_tag);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 4 */
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((4) & 0x3f);/* CAM_ID(MAC_ID) */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
ptxdesc->txdw1 |= cpu_to_le32((6 << RATE_ID_SHT) & 0x000f0000);/* raid */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 8 */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 12 */
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw3 |= cpu_to_le32((pattrib->seqnum<<SEQ_SHT)&0x0fff0000);
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* offset 20 */
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxdesc->txdw5 |= cpu_to_le32(MRateToHwRate(pmlmeext->tx_rate));
|
|
|
|
}
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* 2009.11.05. tynli_test. Suggested by SD4 Filen for FW LPS. */
|
|
|
|
/* (1) The sequence number of each non-Qos frame / broadcast / multicast / */
|
2013-11-29 22:10:20 +00:00
|
|
|
/* mgnt frame should be controlled by Hw because Fw will also send null data */
|
2013-07-10 18:25:07 +00:00
|
|
|
/* which we cannot control when Fw LPS enable. */
|
|
|
|
/* --> default enable non-Qos data sequense number. 2010.06.23. by tynli. */
|
|
|
|
/* (2) Enable HW SEQ control for beacon packet, because we use Hw beacon. */
|
|
|
|
/* (3) Use HW Qos SEQ to control the seq num of Ext port non-Qos packets. */
|
|
|
|
/* 2010.06.23. Added by tynli. */
|
2013-08-09 03:23:49 +00:00
|
|
|
if (!pattrib->qos_en) {
|
2013-07-10 18:25:07 +00:00
|
|
|
ptxdesc->txdw3 |= cpu_to_le32(EN_HWSEQ); /* Hw set sequence number */
|
|
|
|
ptxdesc->txdw4 |= cpu_to_le32(HW_SSN); /* Hw set sequence number */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
ODM_SetTxAntByTxInfo_88E(&haldata->odmpriv, pmem, pattrib->mac_id);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
rtl8188eu_cal_txdesc_chksum(ptxdesc);
|
2013-08-09 03:23:49 +00:00
|
|
|
_dbg_dump_tx_info(adapt, pxmitframe->frame_tag, ptxdesc);
|
2013-05-08 21:45:39 +00:00
|
|
|
return pull;
|
|
|
|
}
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* for non-agg data frame or management frame */
|
2013-08-09 03:23:49 +00:00
|
|
|
static s32 rtw_dump_xframe(struct adapter *adapt, struct xmit_frame *pxmitframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
s32 ret = _SUCCESS;
|
|
|
|
s32 inner_ret = _SUCCESS;
|
2013-08-09 03:23:49 +00:00
|
|
|
int t, sz, w_sz, pull = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 *mem_addr;
|
|
|
|
u32 ff_hwaddr;
|
|
|
|
struct xmit_buf *pxmitbuf = pxmitframe->pxmitbuf;
|
|
|
|
struct pkt_attrib *pattrib = &pxmitframe->attrib;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct xmit_priv *pxmitpriv = &adapt->xmitpriv;
|
|
|
|
struct security_priv *psecuritypriv = &adapt->securitypriv;
|
2013-05-08 21:45:39 +00:00
|
|
|
if ((pxmitframe->frame_tag == DATA_FRAMETAG) &&
|
|
|
|
(pxmitframe->attrib.ether_type != 0x0806) &&
|
|
|
|
(pxmitframe->attrib.ether_type != 0x888e) &&
|
|
|
|
(pxmitframe->attrib.ether_type != 0x88b4) &&
|
|
|
|
(pxmitframe->attrib.dhcp_pkt != 1))
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_issue_addbareq_cmd(adapt, pxmitframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
mem_addr = pxmitframe->buf_addr;
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, ("rtw_dump_xframe()\n"));
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
for (t = 0; t < pattrib->nr_frags; t++) {
|
2013-05-08 21:45:39 +00:00
|
|
|
if (inner_ret != _SUCCESS && ret == _SUCCESS)
|
|
|
|
ret = _FAIL;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (t != (pattrib->nr_frags - 1)) {
|
|
|
|
RT_TRACE(_module_rtl871x_xmit_c_, _drv_err_, ("pattrib->nr_frags=%d\n", pattrib->nr_frags));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
sz = pxmitpriv->frag_len;
|
2013-05-19 04:28:07 +00:00
|
|
|
sz = sz - 4 - (psecuritypriv->sw_encrypt ? 0 : pattrib->icv_len);
|
2013-08-09 03:23:49 +00:00
|
|
|
} else {
|
|
|
|
/* no frag */
|
2013-05-08 21:45:39 +00:00
|
|
|
sz = pattrib->last_txcmdsz;
|
|
|
|
}
|
|
|
|
|
2013-05-26 03:02:10 +00:00
|
|
|
pull = update_txdesc(pxmitframe, mem_addr, sz, false);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pull) {
|
2013-07-10 18:25:07 +00:00
|
|
|
mem_addr += PACKET_OFFSET_SZ; /* pull txdesc head */
|
2013-05-08 21:45:39 +00:00
|
|
|
pxmitframe->buf_addr = mem_addr;
|
|
|
|
w_sz = sz + TXDESC_SIZE;
|
2013-08-09 03:23:49 +00:00
|
|
|
} else {
|
2013-05-08 21:45:39 +00:00
|
|
|
w_sz = sz + TXDESC_SIZE + PACKET_OFFSET_SZ;
|
2013-05-19 04:28:07 +00:00
|
|
|
}
|
2013-05-08 21:45:39 +00:00
|
|
|
ff_hwaddr = rtw_get_ff_hwaddr(pxmitframe);
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
inner_ret = rtw_write_port(adapt, ff_hwaddr, w_sz, (unsigned char *)pxmitbuf);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_count_tx_stats(adapt, pxmitframe, sz);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, ("rtw_write_port, w_sz=%d\n", w_sz));
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
mem_addr += w_sz;
|
|
|
|
|
2013-07-24 17:19:14 +00:00
|
|
|
mem_addr = (u8 *)RND4(((size_t)(mem_addr)));
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_free_xmitframe(pxmitpriv, pxmitframe);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
if (ret != _SUCCESS)
|
|
|
|
rtw_sctx_done_err(&pxmitbuf->sctx, RTW_SCTX_DONE_UNKNOWN);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32 xmitframe_need_length(struct xmit_frame *pxmitframe)
|
|
|
|
{
|
|
|
|
struct pkt_attrib *pattrib = &pxmitframe->attrib;
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
u32 len = 0;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* no consider fragement */
|
2013-05-08 21:45:39 +00:00
|
|
|
len = pattrib->hdrlen + pattrib->iv_len +
|
|
|
|
SNAP_SIZE + sizeof(u16) +
|
|
|
|
pattrib->pktlen +
|
|
|
|
((pattrib->bswenc) ? pattrib->icv_len : 0);
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pattrib->encrypt == _TKIP_)
|
2013-05-08 21:45:39 +00:00
|
|
|
len += 8;
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
s32 rtl8188eu_xmitframe_complete(struct adapter *adapt, struct xmit_priv *pxmitpriv, struct xmit_buf *pxmitbuf)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-09 03:23:49 +00:00
|
|
|
struct hal_data_8188e *haldata = GET_HAL_DATA(adapt);
|
2013-05-08 21:45:39 +00:00
|
|
|
struct xmit_frame *pxmitframe = NULL;
|
|
|
|
struct xmit_frame *pfirstframe = NULL;
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* aggregate variable */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct hw_xmit *phwxmit;
|
|
|
|
struct sta_info *psta = NULL;
|
|
|
|
struct tx_servq *ptxservq = NULL;
|
2013-07-25 14:49:25 +00:00
|
|
|
struct list_head *xmitframe_plist = NULL, *xmitframe_phead = NULL;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
u32 pbuf; /* next pkt address */
|
|
|
|
u32 pbuf_tail; /* last pkt tail */
|
|
|
|
u32 len; /* packet length, except TXDESC_SIZE and PKT_OFFSET */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
u32 bulksize = haldata->UsbBulkOutSize;
|
|
|
|
u8 desc_cnt;
|
|
|
|
u32 bulkptr;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* dump frame variable */
|
2013-05-08 21:45:39 +00:00
|
|
|
u32 ff_hwaddr;
|
|
|
|
|
|
|
|
RT_TRACE(_module_rtl8192c_xmit_c_, _drv_info_, ("+xmitframe_complete\n"));
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* check xmitbuffer is ok */
|
2013-05-08 21:45:39 +00:00
|
|
|
if (pxmitbuf == NULL) {
|
|
|
|
pxmitbuf = rtw_alloc_xmitbuf(pxmitpriv);
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pxmitbuf == NULL)
|
2013-05-26 03:02:10 +00:00
|
|
|
return false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* 3 1. pick up first frame */
|
2013-05-08 21:45:39 +00:00
|
|
|
do {
|
|
|
|
rtw_free_xmitframe(pxmitpriv, pxmitframe);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
pxmitframe = rtw_dequeue_xframe(pxmitpriv, pxmitpriv->hwxmits, pxmitpriv->hwxmit_entry);
|
|
|
|
if (pxmitframe == NULL) {
|
2013-07-10 18:25:07 +00:00
|
|
|
/* no more xmit frame, release xmit buffer */
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_free_xmitbuf(pxmitpriv, pxmitbuf);
|
2013-05-26 03:02:10 +00:00
|
|
|
return false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pxmitframe->pxmitbuf = pxmitbuf;
|
|
|
|
pxmitframe->buf_addr = pxmitbuf->pbuf;
|
|
|
|
pxmitbuf->priv_data = pxmitframe;
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
pxmitframe->agg_num = 1; /* alloc xmitframe should assign to 1. */
|
|
|
|
pxmitframe->pkt_offset = 1; /* first frame of aggregation, reserve offset */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_xmitframe_coalesce(adapt, pxmitframe->pkt, pxmitframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* always return ndis_packet after rtw_xmitframe_coalesce */
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_os_xmit_complete(adapt, pxmitframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
} while (1);
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* 3 2. aggregate same priority and same DA(AP or STA) frames */
|
2013-05-08 21:45:39 +00:00
|
|
|
pfirstframe = pxmitframe;
|
2013-08-09 03:23:49 +00:00
|
|
|
len = xmitframe_need_length(pfirstframe) + TXDESC_SIZE + (pfirstframe->pkt_offset*PACKET_OFFSET_SZ);
|
2013-05-08 21:45:39 +00:00
|
|
|
pbuf_tail = len;
|
|
|
|
pbuf = _RND8(pbuf_tail);
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* check pkt amount in one bulk */
|
2013-08-09 03:23:49 +00:00
|
|
|
desc_cnt = 0;
|
|
|
|
bulkptr = bulksize;
|
|
|
|
if (pbuf < bulkptr) {
|
|
|
|
desc_cnt++;
|
|
|
|
} else {
|
|
|
|
desc_cnt = 0;
|
|
|
|
bulkptr = ((pbuf / bulksize) + 1) * bulksize; /* round to next bulksize */
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* dequeue same priority packet from station tx queue */
|
2013-05-08 21:45:39 +00:00
|
|
|
psta = pfirstframe->attrib.psta;
|
|
|
|
switch (pfirstframe->attrib.priority) {
|
2013-08-09 03:23:49 +00:00
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
ptxservq = &(psta->sta_xmitpriv.bk_q);
|
|
|
|
phwxmit = pxmitpriv->hwxmits + 3;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
case 5:
|
|
|
|
ptxservq = &(psta->sta_xmitpriv.vi_q);
|
|
|
|
phwxmit = pxmitpriv->hwxmits + 1;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
case 7:
|
|
|
|
ptxservq = &(psta->sta_xmitpriv.vo_q);
|
|
|
|
phwxmit = pxmitpriv->hwxmits;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
case 3:
|
|
|
|
default:
|
|
|
|
ptxservq = &(psta->sta_xmitpriv.be_q);
|
|
|
|
phwxmit = pxmitpriv->hwxmits + 2;
|
|
|
|
break;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_lock_bh(&pxmitpriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
xmitframe_phead = get_list_head(&ptxservq->sta_pending);
|
2014-12-13 21:06:22 +00:00
|
|
|
xmitframe_plist = xmitframe_phead->next;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-12-13 21:06:22 +00:00
|
|
|
while (xmitframe_phead != xmitframe_plist) {
|
2014-12-13 16:40:44 +00:00
|
|
|
pxmitframe = container_of(xmitframe_plist, struct xmit_frame, list);
|
2014-12-13 21:06:22 +00:00
|
|
|
xmitframe_plist = xmitframe_plist->next;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-20 22:56:24 +00:00
|
|
|
pxmitframe->agg_num = 0; /* not first frame of aggregation */
|
2013-07-10 18:25:07 +00:00
|
|
|
pxmitframe->pkt_offset = 0; /* not first frame of aggregation, no need to reserve offset */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
len = xmitframe_need_length(pxmitframe) + TXDESC_SIZE + (pxmitframe->pkt_offset*PACKET_OFFSET_SZ);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (_RND8(pbuf + len) > MAX_XMITBUF_SZ) {
|
2013-05-08 21:45:39 +00:00
|
|
|
pxmitframe->agg_num = 1;
|
2013-05-19 04:28:07 +00:00
|
|
|
pxmitframe->pkt_offset = 1;
|
|
|
|
break;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2014-12-13 21:06:22 +00:00
|
|
|
list_del_init(&pxmitframe->list);
|
2013-05-08 21:45:39 +00:00
|
|
|
ptxservq->qcnt--;
|
|
|
|
phwxmit->accnt--;
|
|
|
|
|
|
|
|
pxmitframe->buf_addr = pxmitbuf->pbuf + pbuf;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_xmitframe_coalesce(adapt, pxmitframe->pkt, pxmitframe);
|
2013-07-10 18:25:07 +00:00
|
|
|
/* always return ndis_packet after rtw_xmitframe_coalesce */
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_os_xmit_complete(adapt, pxmitframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* (len - TXDESC_SIZE) == pxmitframe->attrib.last_txcmdsz */
|
2013-08-09 03:23:49 +00:00
|
|
|
update_txdesc(pxmitframe, pxmitframe->buf_addr, pxmitframe->attrib.last_txcmdsz, true);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* don't need xmitframe any more */
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_free_xmitframe(pxmitpriv, pxmitframe);
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* handle pointer and stop condition */
|
2013-05-08 21:45:39 +00:00
|
|
|
pbuf_tail = pbuf + len;
|
|
|
|
pbuf = _RND8(pbuf_tail);
|
|
|
|
|
|
|
|
pfirstframe->agg_num++;
|
|
|
|
if (MAX_TX_AGG_PACKET_NUMBER == pfirstframe->agg_num)
|
|
|
|
break;
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (pbuf < bulkptr) {
|
|
|
|
desc_cnt++;
|
|
|
|
if (desc_cnt == haldata->UsbTxAggDescNum)
|
2013-05-08 21:45:39 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2013-08-09 03:23:49 +00:00
|
|
|
desc_cnt = 0;
|
|
|
|
bulkptr = ((pbuf / bulksize) + 1) * bulksize;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2013-08-09 03:23:49 +00:00
|
|
|
} /* end while (aggregate same priority and same DA(AP or STA) frames) */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-13 21:06:22 +00:00
|
|
|
if (list_empty(&ptxservq->sta_pending.queue))
|
|
|
|
list_del_init(&ptxservq->tx_pending);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_unlock_bh(&pxmitpriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
if ((pfirstframe->attrib.ether_type != 0x0806) &&
|
|
|
|
(pfirstframe->attrib.ether_type != 0x888e) &&
|
|
|
|
(pfirstframe->attrib.ether_type != 0x88b4) &&
|
|
|
|
(pfirstframe->attrib.dhcp_pkt != 1))
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_issue_addbareq_cmd(adapt, pfirstframe);
|
2013-07-10 18:25:07 +00:00
|
|
|
/* 3 3. update first frame txdesc */
|
2013-08-09 03:23:49 +00:00
|
|
|
if ((pbuf_tail % bulksize) == 0) {
|
2013-07-10 18:25:07 +00:00
|
|
|
/* remove pkt_offset */
|
2013-05-08 21:45:39 +00:00
|
|
|
pbuf_tail -= PACKET_OFFSET_SZ;
|
|
|
|
pfirstframe->buf_addr += PACKET_OFFSET_SZ;
|
|
|
|
pfirstframe->pkt_offset--;
|
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
update_txdesc(pfirstframe, pfirstframe->buf_addr, pfirstframe->attrib.last_txcmdsz, true);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* 3 4. write xmit buffer to USB FIFO */
|
2013-05-08 21:45:39 +00:00
|
|
|
ff_hwaddr = rtw_get_ff_hwaddr(pfirstframe);
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_write_port(adapt, ff_hwaddr, pbuf_tail, (u8 *)pxmitbuf);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* 3 5. update statisitc */
|
2013-05-08 21:45:39 +00:00
|
|
|
pbuf_tail -= (pfirstframe->agg_num * TXDESC_SIZE);
|
|
|
|
pbuf_tail -= (pfirstframe->pkt_offset * PACKET_OFFSET_SZ);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_count_tx_stats(adapt, pfirstframe, pbuf_tail);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
rtw_free_xmitframe(pxmitpriv, pfirstframe);
|
|
|
|
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
static s32 xmitframe_direct(struct adapter *adapt, struct xmit_frame *pxmitframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
s32 res = _SUCCESS;
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
res = rtw_xmitframe_coalesce(adapt, pxmitframe->pkt, pxmitframe);
|
|
|
|
if (res == _SUCCESS)
|
|
|
|
rtw_dump_xframe(adapt, pxmitframe);
|
|
|
|
else
|
|
|
|
DBG_88E("==> %s xmitframe_coalsece failed\n", __func__);
|
2013-05-08 21:45:39 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return
|
2013-05-26 03:02:10 +00:00
|
|
|
* true dump packet directly
|
|
|
|
* false enqueue packet
|
2013-05-08 21:45:39 +00:00
|
|
|
*/
|
2013-08-09 03:23:49 +00:00
|
|
|
static s32 pre_xmitframe(struct adapter *adapt, struct xmit_frame *pxmitframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
s32 res;
|
|
|
|
struct xmit_buf *pxmitbuf = NULL;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct xmit_priv *pxmitpriv = &adapt->xmitpriv;
|
2013-05-08 21:45:39 +00:00
|
|
|
struct pkt_attrib *pattrib = &pxmitframe->attrib;
|
2013-08-09 03:23:49 +00:00
|
|
|
struct mlme_priv *pmlmepriv = &adapt->mlmepriv;
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_lock_bh(&pxmitpriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (rtw_txframes_sta_ac_pending(adapt, pattrib) > 0)
|
2013-05-08 21:45:39 +00:00
|
|
|
goto enqueue;
|
|
|
|
|
2013-05-26 03:02:10 +00:00
|
|
|
if (check_fwstate(pmlmepriv, _FW_UNDER_SURVEY|_FW_UNDER_LINKING) == true)
|
2013-05-08 21:45:39 +00:00
|
|
|
goto enqueue;
|
|
|
|
|
|
|
|
pxmitbuf = rtw_alloc_xmitbuf(pxmitpriv);
|
|
|
|
if (pxmitbuf == NULL)
|
|
|
|
goto enqueue;
|
|
|
|
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_unlock_bh(&pxmitpriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
pxmitframe->pxmitbuf = pxmitbuf;
|
|
|
|
pxmitframe->buf_addr = pxmitbuf->pbuf;
|
|
|
|
pxmitbuf->priv_data = pxmitframe;
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
if (xmitframe_direct(adapt, pxmitframe) != _SUCCESS) {
|
2013-05-08 21:45:39 +00:00
|
|
|
rtw_free_xmitbuf(pxmitpriv, pxmitbuf);
|
|
|
|
rtw_free_xmitframe(pxmitpriv, pxmitframe);
|
|
|
|
}
|
|
|
|
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
enqueue:
|
2013-08-09 03:23:49 +00:00
|
|
|
res = rtw_xmitframe_enqueue(adapt, pxmitframe);
|
2014-11-29 00:42:41 +00:00
|
|
|
spin_unlock_bh(&pxmitpriv->lock);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
if (res != _SUCCESS) {
|
|
|
|
RT_TRACE(_module_xmit_osdep_c_, _drv_err_, ("pre_xmitframe: enqueue xmitframe fail\n"));
|
|
|
|
rtw_free_xmitframe(pxmitpriv, pxmitframe);
|
|
|
|
|
2013-07-10 18:25:07 +00:00
|
|
|
/* Trick, make the statistics correct */
|
2013-05-08 21:45:39 +00:00
|
|
|
pxmitpriv->tx_pkts--;
|
|
|
|
pxmitpriv->tx_drop++;
|
2013-05-26 03:02:10 +00:00
|
|
|
return true;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-05-26 03:02:10 +00:00
|
|
|
return false;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-09 03:23:49 +00:00
|
|
|
s32 rtl8188eu_mgnt_xmit(struct adapter *adapt, struct xmit_frame *pmgntframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-09 03:23:49 +00:00
|
|
|
return rtw_dump_xframe(adapt, pmgntframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return
|
2013-05-26 03:02:10 +00:00
|
|
|
* true dump packet directly ok
|
|
|
|
* false temporary can't transmit packets to hardware
|
2013-05-08 21:45:39 +00:00
|
|
|
*/
|
2013-08-09 03:23:49 +00:00
|
|
|
s32 rtl8188eu_hal_xmit(struct adapter *adapt, struct xmit_frame *pxmitframe)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2013-08-09 03:23:49 +00:00
|
|
|
return pre_xmitframe(adapt, pxmitframe);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|