• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192su/

Lines Matching refs:tx_desc

2180 	tx_desc_819x_usb *tx_desc = (tx_desc_819x_usb *)skb->data;
2218 memset(tx_desc, 0, sizeof(tx_desc_819x_usb));
2221 tx_desc->NonQos = (IsQoSDataFrame(skb->data)==TRUE)? 0:1;
2228 tx_desc->TxHT = (tcb_desc->data_rate&0x80)?1:0;
2231 tx_desc->TxRate = MRateToHwRate8190Pci(tcb_desc->data_rate);
2232 //tx_desc->EnableCPUDur = tcb_desc->bTxEnableFwCalcDur;
2233 tx_desc->TxShort = QueryIsShort(tx_desc->TxHT, tx_desc->TxRate, tcb_desc);
2238 tx_desc->AllowAggregation = 1;
2243 tx_desc->AllowAggregation = 0;
2262 tx_desc->Seq = Temp;
2266 tx_desc->RTSEn = (tcb_desc->bRTSEnable)?1:0;
2267 tx_desc->CTS2Self = (tcb_desc->bCTSEnable)?1:0;
2268 tx_desc->RTSSTBC = (tcb_desc->bRTSSTBC)?1:0;
2269 tx_desc->RTSHT = (tcb_desc->rts_rate&0x80)?1:0;
2270 tx_desc->RTSRate = MRateToHwRate8190Pci((u8)tcb_desc->rts_rate);
2271 tx_desc->RTSSubcarrier = (tx_desc->RTSHT==0)?(tcb_desc->RTSSC):0;
2272 tx_desc->RTSBW = (tx_desc->RTSHT==1)?((tcb_desc->bRTSBW)?1:0):0;
2273 tx_desc->RTSShort = (tx_desc->RTSHT==0)?(tcb_desc->bRTSUseShortPreamble?1:0):\
2276 tx_desc->DisRTSFB = 0;
2277 tx_desc->RTSRateFBLmt = 0xf;
2280 //tx_desc->DisRTSFB = 0x01;
2286 tx_desc->TxBandwidth = 1;
2287 tx_desc->TxSubCarrier = 0; //By SD3's Jerry suggestion, use duplicated mode
2289 tx_desc->TxBandwidth = 0;
2290 tx_desc->TxSubCarrier = priv->nCur40MhzPrimeSC;
2293 tx_desc->TxBandwidth = 0;
2294 tx_desc->TxSubCarrier = 0;
2298 //memset(tx_desc, 0, sizeof(tx_desc_819x_usb));
2300 tx_desc->LINIP = 0;
2301 //tx_desc->CmdInit = 1; //92su del
2302 tx_desc->Offset = USB_HWDESC_HEADER_LEN;
2305 tx_desc->PktSize = (skb->len - USB_HWDESC_HEADER_LEN) & 0xffff;
2309 //tx_desc->SecCAMID= 0;//92su del
2310 tx_desc->RaBRSRID= tcb_desc->RATRIndex;
2315 //tx_desc->NoEnc = 1;//92su del
2318 tx_desc->SecType = 0x0;
2326 tx_desc->SecType = 0x1;
2327 //tx_desc->NoEnc = 0;//92su del
2330 tx_desc->SecType = 0x2;
2331 //tx_desc->NoEnc = 0;//92su del
2334 tx_desc->SecType = 0x3;
2335 //tx_desc->NoEnc = 0;//92su del
2338 tx_desc->SecType = 0x0;
2339 //tx_desc->NoEnc = 1;//92su del
2342 tx_desc->SecType = 0x0;
2343 //tx_desc->NoEnc = 1;//92su del
2348 //tx_desc->TxFWInfoSize = sizeof(tx_fwinfo_819x_usb);//92su del
2351 tx_desc->USERATE = tcb_desc->bTxUseDriverAssingedRate;
2352 tx_desc->DISFB = tcb_desc->bTxDisableRateFallBack;
2353 tx_desc->DataRateFBLmt = 0x1F;// Alwasy enable all rate fallback range
2355 tx_desc->QueueSelect = MapHwQueueToFirmwareQueue(tcb_desc->queue_index);
2360 tx_desc->FirstSeg = 1;
2361 tx_desc->LastSeg = 1;
2362 tx_desc->OWN = 1;
2366 //tx_desc->TxBufferSize = (u32)(skb->len - USB_HWDESC_HEADER_LEN);
2367 tx_desc->TxBufferSize = (u32)(skb->len);//92su mod FIXLZM
2375 //RT_DEBUG_DATA(COMP_SEND,tx_desc,sizeof(tx_desc_819x_usb));