Commit 6261ab3a authored by Pekka Enberg's avatar Pekka Enberg Committed by Greg Kroah-Hartman

Staging: w35und: make functions local to mds.c static

The functions have no external references so make them static after shuffling
the code around a bit to avoid forward declarations.
Acked-by: default avatarPavel Machek <pavel@suse.cz>
Signed-off-by: default avatarPekka Enberg <penberg@cs.helsinki.fi>
parent 54369cc6
...@@ -7,19 +7,6 @@ ...@@ -7,19 +7,6 @@
#include "wbhal_f.h" #include "wbhal_f.h"
#include "wblinux_f.h" #include "wblinux_f.h"
void
Mds_reset_descriptor(struct wbsoft_priv * adapter)
{
PMDS pMds = &adapter->Mds;
pMds->TxPause = 0;
atomic_set(&pMds->TxThreadCount, 0);
pMds->TxFillIndex = 0;
pMds->TxDesIndex = 0;
pMds->ScanTxPause = 0;
memset(pMds->TxOwner, 0, ((MAX_USB_TX_BUFFER_NUMBER + 3) & ~0x03));
}
unsigned char unsigned char
Mds_initial(struct wbsoft_priv * adapter) Mds_initial(struct wbsoft_priv * adapter)
{ {
...@@ -40,203 +27,303 @@ Mds_Destroy(struct wbsoft_priv * adapter) ...@@ -40,203 +27,303 @@ Mds_Destroy(struct wbsoft_priv * adapter)
vRxTimerStop(adapter); vRxTimerStop(adapter);
} }
void static void Mds_DurationSet(struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8 *buffer)
Mds_Tx(struct wbsoft_priv * adapter)
{ {
phw_data_t pHwData = &adapter->sHwData; PT00_DESCRIPTOR pT00;
PMDS pMds = &adapter->Mds; PT01_DESCRIPTOR pT01;
DESCRIPTOR TxDes; u16 Duration, NextBodyLen, OffsetSize;
PDESCRIPTOR pTxDes = &TxDes; u8 Rate, i;
u8 *XmitBufAddress; unsigned char CTS_on = false, RTS_on = false;
u16 XmitBufSize, PacketSize, stmp, CurrentSize, FragmentThreshold; PT00_DESCRIPTOR pNextT00;
u8 FillIndex, TxDesIndex, FragmentCount, FillCount; u16 BodyLen = 0;
unsigned char BufferFilled = false, MICAdd = 0; unsigned char boGroupAddr = false;
if (pMds->TxPause) OffsetSize = pDes->FragmentThreshold + 32 + 3;
return; OffsetSize &= ~0x03;
if (!hal_driver_init_OK(pHwData)) Rate = pDes->TxRate >> 1;
return; if (!Rate)
Rate = 1;
//Only one thread can be run here pT00 = (PT00_DESCRIPTOR)buffer;
if (!atomic_inc_return(&pMds->TxThreadCount) == 1) pT01 = (PT01_DESCRIPTOR)(buffer+4);
goto cleanup; pNextT00 = (PT00_DESCRIPTOR)(buffer+OffsetSize);
// Start to fill the data if( buffer[ DOT_11_DA_OFFSET+8 ] & 0x1 ) // +8 for USB hdr
do { boGroupAddr = true;
FillIndex = pMds->TxFillIndex;
if (pMds->TxOwner[FillIndex]) { // Is owned by software 0:Yes 1:No
#ifdef _PE_TX_DUMP_
WBDEBUG(("[Mds_Tx] Tx Owner is H/W.\n"));
#endif
break;
}
XmitBufAddress = pMds->pTxBuffer + (MAX_USB_TX_BUFFER * FillIndex); //Get buffer //========================================
XmitBufSize = 0; // Set RTS/CTS mechanism
FillCount = 0; //========================================
do { if (!boGroupAddr)
PacketSize = adapter->sMlmeFrame.len; {
if (!PacketSize) //NOTE : If the protection mode is enabled and the MSDU will be fragmented,
break; // the tx rates of MPDUs will all be DSSS rates. So it will not use
// CTS-to-self in this case. CTS-To-self will only be used when without
// fragmentation. -- 20050112
BodyLen = (u16)pT00->T00_frame_length; //include 802.11 header
BodyLen += 4; //CRC
//For Check the buffer resource if( BodyLen >= CURRENT_RTS_THRESHOLD )
FragmentThreshold = CURRENT_FRAGMENT_THRESHOLD; RTS_on = true; // Using RTS
//931130.5.b else
FragmentCount = PacketSize/FragmentThreshold + 1; {
stmp = PacketSize + FragmentCount*32 + 8;//931130.5.c 8:MIC if( pT01->T01_modulation_type ) // Is using OFDM
if ((XmitBufSize + stmp) >= MAX_USB_TX_BUFFER) { {
printk("[Mds_Tx] Excess max tx buffer.\n"); if( CURRENT_PROTECT_MECHANISM ) // Is using protect
break; // buffer is not enough CTS_on = true; // Using CTS
} }
}
}
if( RTS_on || CTS_on )
{
if( pT01->T01_modulation_type) // Is using OFDM
{
//CTS duration
// 2 SIFS + DATA transmit time + 1 ACK
// ACK Rate : 24 Mega bps
// ACK frame length = 14 bytes
Duration = 2*DEFAULT_SIFSTIME +
2*PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION +
((BodyLen*8 + 22 + Rate*4 - 1)/(Rate*4))*Tsym +
((112 + 22 + 95)/96)*Tsym;
}
else //DSSS
{
//CTS duration
// 2 SIFS + DATA transmit time + 1 ACK
// Rate : ?? Mega bps
// ACK frame length = 14 bytes
if( pT01->T01_plcp_header_length ) //long preamble
Duration = LONG_PREAMBLE_PLUS_PLCPHEADER_TIME*2;
else
Duration = SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME*2;
// Duration += ( ((BodyLen + 14)*8 + Rate-1) / Rate +
// Start transmitting DEFAULT_SIFSTIME*2 );
// }
BufferFilled = true;
/* Leaves first u8 intact */ if( RTS_on )
memset((u8 *)pTxDes + 1, 0, sizeof(DESCRIPTOR) - 1); {
if( pT01->T01_modulation_type ) // Is using OFDM
{
//CTS + 1 SIFS + CTS duration
//CTS Rate : 24 Mega bps
//CTS frame length = 14 bytes
Duration += (DEFAULT_SIFSTIME +
PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION +
((112 + 22 + 95)/96)*Tsym);
}
else
{
//CTS + 1 SIFS + CTS duration
//CTS Rate : ?? Mega bps
//CTS frame length = 14 bytes
if( pT01->T01_plcp_header_length ) //long preamble
Duration += LONG_PREAMBLE_PLUS_PLCPHEADER_TIME;
else
Duration += SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME;
TxDesIndex = pMds->TxDesIndex;//Get the current ID Duration += ( ((112 + Rate-1) / Rate) + DEFAULT_SIFSTIME );
pTxDes->Descriptor_ID = TxDesIndex; }
pMds->TxDesFrom[ TxDesIndex ] = 2;//Storing the information of source comming from }
pMds->TxDesIndex++;
pMds->TxDesIndex %= MAX_USB_TX_DESCRIPTOR;
MLME_GetNextPacket( adapter, pTxDes ); // Set the value into USB descriptor
pT01->T01_add_rts = RTS_on ? 1 : 0;
pT01->T01_add_cts = CTS_on ? 1 : 0;
pT01->T01_rts_cts_duration = Duration;
}
// Copy header. 8byte USB + 24byte 802.11Hdr. Set TxRate, Preamble type //=====================================
Mds_HeaderCopy( adapter, pTxDes, XmitBufAddress ); // Fill the more fragment descriptor
//=====================================
if( boGroupAddr )
Duration = 0;
else
{
for( i=pDes->FragmentCount-1; i>0; i-- )
{
NextBodyLen = (u16)pNextT00->T00_frame_length;
NextBodyLen += 4; //CRC
// For speed up Key setting if( pT01->T01_modulation_type )
if (pTxDes->EapFix) { {
#ifdef _PE_TX_DUMP_ //OFDM
WBDEBUG(("35: EPA 4th frame detected. Size = %d\n", PacketSize)); // data transmit time + 3 SIFS + 2 ACK
#endif // Rate : ??Mega bps
pHwData->IsKeyPreSet = 1; // ACK frame length = 14 bytes, tx rate = 24M
Duration = PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION * 3;
Duration += (((NextBodyLen*8 + 22 + Rate*4 - 1)/(Rate*4)) * Tsym +
(((2*14)*8 + 22 + 95)/96)*Tsym +
DEFAULT_SIFSTIME*3);
} }
else
{
//DSSS
// data transmit time + 2 ACK + 3 SIFS
// Rate : ??Mega bps
// ACK frame length = 14 bytes
//TODO :
if( pT01->T01_plcp_header_length ) //long preamble
Duration = LONG_PREAMBLE_PLUS_PLCPHEADER_TIME*3;
else
Duration = SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME*3;
// Copy (fragment) frame body, and set USB, 802.11 hdr flag Duration += ( ((NextBodyLen + (2*14))*8 + Rate-1) / Rate +
CurrentSize = Mds_BodyCopy(adapter, pTxDes, XmitBufAddress); DEFAULT_SIFSTIME*3 );
}
// Set RTS/CTS and Normal duration field into buffer
Mds_DurationSet(adapter, pTxDes, XmitBufAddress);
// ((u16 *)buffer)[5] = cpu_to_le16(Duration);// 4 USHOR for skip 8B USB, 2USHORT=FC + Duration
// Calculation MIC from buffer which maybe fragment, then fill into temporary address 8 byte
// 931130.5.e
if (MICAdd)
Mds_MicFill( adapter, pTxDes, XmitBufAddress );
//Shift to the next address //----20061009 add by anson's endian
XmitBufSize += CurrentSize; pNextT00->value = cpu_to_le32(pNextT00->value);
XmitBufAddress += CurrentSize; pT01->value = cpu_to_le32( pT01->value );
//----end 20061009 add by anson's endian
#ifdef _IBSS_BEACON_SEQ_STICK_ buffer += OffsetSize;
if ((XmitBufAddress[ DOT_11_DA_OFFSET+8 ] & 0xfc) != MAC_SUBTYPE_MNGMNT_PROBE_REQUEST) // +8 for USB hdr pT01 = (PT01_DESCRIPTOR)(buffer+4);
#endif if (i != 1) //The last fragment will not have the next fragment
pMds->TxToggle = true; pNextT00 = (PT00_DESCRIPTOR)(buffer+OffsetSize);
}
// Get packet to transmit completed, 1:TESTSTA 2:MLME 3: Ndis data //=====================================
MLME_SendComplete(adapter, 0, true); // Fill the last fragment descriptor
//=====================================
if( pT01->T01_modulation_type )
{
//OFDM
// 1 SIFS + 1 ACK
// Rate : 24 Mega bps
// ACK frame length = 14 bytes
Duration = PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION;
//The Tx rate of ACK use 24M
Duration += (((112 + 22 + 95)/96)*Tsym + DEFAULT_SIFSTIME );
}
else
{
// DSSS
// 1 ACK + 1 SIFS
// Rate : ?? Mega bps
// ACK frame length = 14 bytes(112 bits)
if( pT01->T01_plcp_header_length ) //long preamble
Duration = LONG_PREAMBLE_PLUS_PLCPHEADER_TIME;
else
Duration = SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME;
// Software TSC count 20060214 Duration += ( (112 + Rate-1)/Rate + DEFAULT_SIFSTIME );
pMds->TxTsc++; }
if (pMds->TxTsc == 0) }
pMds->TxTsc_2++;
FillCount++; // 20060928 ((u16 *)buffer)[5] = cpu_to_le16(Duration);// 4 USHOR for skip 8B USB, 2USHORT=FC + Duration
} while (HAL_USB_MODE_BURST(pHwData)); // End of multiple MSDU copy loop. false = single true = multiple sending pT00->value = cpu_to_le32(pT00->value);
pT01->value = cpu_to_le32(pT01->value);
//--end 20061009 add
// Move to the next one, if necessary }
if (BufferFilled) {
// size setting
pMds->TxBufferSize[ FillIndex ] = XmitBufSize;
// 20060928 set Tx count // The function return the 4n size of usb pk
pMds->TxCountInBuffer[FillIndex] = FillCount; static u16 Mds_BodyCopy(struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8 *TargetBuffer)
{
PT00_DESCRIPTOR pT00;
PMDS pMds = &adapter->Mds;
u8 *buffer;
u8 *src_buffer;
u8 *pctmp;
u16 Size = 0;
u16 SizeLeft, CopySize, CopyLeft, stmp;
u8 buf_index, FragmentCount = 0;
// Set owner flag
pMds->TxOwner[FillIndex] = 1;
pMds->TxFillIndex++; // Copy fragment body
pMds->TxFillIndex %= MAX_USB_TX_BUFFER_NUMBER; buffer = TargetBuffer; // shift 8B usb + 24B 802.11
BufferFilled = false; SizeLeft = pDes->buffer_total_size;
buf_index = pDes->buffer_start_index;
pT00 = (PT00_DESCRIPTOR)buffer;
while (SizeLeft) {
pT00 = (PT00_DESCRIPTOR)buffer;
CopySize = SizeLeft;
if (SizeLeft > pDes->FragmentThreshold) {
CopySize = pDes->FragmentThreshold;
pT00->T00_frame_length = 24 + CopySize;//Set USB length
} else } else
break; pT00->T00_frame_length = 24 + SizeLeft;//Set USB length
if (!PacketSize) // No more pk for transmitting SizeLeft -= CopySize;
break;
} while(true); // 1 Byte operation
pctmp = (u8 *)( buffer + 8 + DOT_11_SEQUENCE_OFFSET );
*pctmp &= 0xf0;
*pctmp |= FragmentCount;//931130.5.m
if( !FragmentCount )
pT00->T00_first_mpdu = 1;
// buffer += 32; // 8B usb + 24B 802.11 header
// Start to send by lower module Size += 32;
//
if (!pHwData->IsKeyPreSet)
Wb35Tx_start(adapter);
cleanup: // Copy into buffer
atomic_dec(&pMds->TxThreadCount); stmp = CopySize + 3;
} stmp &= ~0x03;//4n Alignment
Size += stmp;// Current 4n offset of mpdu
void while (CopySize) {
Mds_SendComplete(struct wbsoft_priv * adapter, PT02_DESCRIPTOR pT02) // Copy body
{ src_buffer = pDes->buffer_address[buf_index];
PMDS pMds = &adapter->Mds; CopyLeft = CopySize;
phw_data_t pHwData = &adapter->sHwData; if (CopySize >= pDes->buffer_size[buf_index]) {
u8 PacketId = (u8)pT02->T02_Tx_PktID; CopyLeft = pDes->buffer_size[buf_index];
unsigned char SendOK = true;
u8 RetryCount, TxRate;
if (pT02->T02_IgnoreResult) // Don't care the result // Get the next buffer of descriptor
return; buf_index++;
if (pT02->T02_IsLastMpdu) { buf_index %= MAX_DESCRIPTOR_BUFFER_INDEX;
//TODO: DTO -- get the retry count and fragment count } else {
// Tx rate u8 *pctmp = pDes->buffer_address[buf_index];
TxRate = pMds->TxRate[ PacketId ][ 0 ]; pctmp += CopySize;
RetryCount = (u8)pT02->T02_MPDU_Cnt; pDes->buffer_address[buf_index] = pctmp;
if (pT02->value & FLAG_ERROR_TX_MASK) { pDes->buffer_size[buf_index] -= CopySize;
SendOK = false; }
if (pT02->T02_transmit_abort || pT02->T02_out_of_MaxTxMSDULiftTime) { memcpy(buffer, src_buffer, CopyLeft);
//retry error buffer += CopyLeft;
pHwData->dto_tx_retry_count += (RetryCount+1); CopySize -= CopyLeft;
//[for tx debug] }
if (RetryCount<7)
pHwData->tx_retry_count[RetryCount] += RetryCount; // 931130.5.n
else if (pMds->MicAdd) {
pHwData->tx_retry_count[7] += RetryCount; if (!SizeLeft) {
#ifdef _PE_STATE_DUMP_ pMds->MicWriteAddress[ pMds->MicWriteIndex ] = buffer - pMds->MicAdd;
WBDEBUG(("dto_tx_retry_count =%d\n", pHwData->dto_tx_retry_count)); pMds->MicWriteSize[ pMds->MicWriteIndex ] = pMds->MicAdd;
#endif pMds->MicAdd = 0;
MTO_SetTxCount(adapter, TxRate, RetryCount);
} }
pHwData->dto_tx_frag_count += (RetryCount+1); else if( SizeLeft < 8 ) //931130.5.p
{
pMds->MicAdd = SizeLeft;
pMds->MicWriteAddress[ pMds->MicWriteIndex ] = buffer - ( 8 - SizeLeft );
pMds->MicWriteSize[ pMds->MicWriteIndex ] = 8 - SizeLeft;
pMds->MicWriteIndex++;
}
}
//[for tx debug] // Does it need to generate the new header for next mpdu?
if (pT02->T02_transmit_abort_due_to_TBTT) if (SizeLeft) {
pHwData->tx_TBTT_start_count++; buffer = TargetBuffer + Size; // Get the next 4n start address
if (pT02->T02_transmit_without_encryption_due_to_wep_on_false) memcpy( buffer, TargetBuffer, 32 );//Copy 8B USB +24B 802.11
pHwData->tx_WepOn_false_count++; pT00 = (PT00_DESCRIPTOR)buffer;
if (pT02->T02_discard_due_to_null_wep_key) pT00->T00_first_mpdu = 0;
pHwData->tx_Null_key_count++;
} else {
if (pT02->T02_effective_transmission_rate)
pHwData->tx_ETR_count++;
MTO_SetTxCount(adapter, TxRate, RetryCount);
} }
// Clear send result buffer FragmentCount++;
pMds->TxResult[ PacketId ] = 0; }
} else
pMds->TxResult[ PacketId ] |= ((u16)(pT02->value & 0x0ffff)); pT00->T00_last_mpdu = 1;
pT00->T00_IsLastMpdu = 1;
buffer = (u8 *)pT00 + 8; // +8 for USB hdr
buffer[1] &= ~0x04; // Clear more frag bit of 802.11 frame control
pDes->FragmentCount = FragmentCount; // Update the correct fragment number
return Size;
} }
void static void Mds_HeaderCopy(struct wbsoft_priv * adapter, PDESCRIPTOR pDes, u8 *TargetBuffer)
Mds_HeaderCopy(struct wbsoft_priv * adapter, PDESCRIPTOR pDes, u8 *TargetBuffer)
{ {
PMDS pMds = &adapter->Mds; PMDS pMds = &adapter->Mds;
u8 *src_buffer = pDes->buffer_address[0];//931130.5.g u8 *src_buffer = pDes->buffer_address[0];//931130.5.g
...@@ -331,301 +418,197 @@ Mds_HeaderCopy(struct wbsoft_priv * adapter, PDESCRIPTOR pDes, u8 *TargetBuffer) ...@@ -331,301 +418,197 @@ Mds_HeaderCopy(struct wbsoft_priv * adapter, PDESCRIPTOR pDes, u8 *TargetBuffer)
} }
// The function return the 4n size of usb pk void
u16 Mds_Tx(struct wbsoft_priv * adapter)
Mds_BodyCopy(struct wbsoft_priv * adapter, PDESCRIPTOR pDes, u8 *TargetBuffer)
{ {
PT00_DESCRIPTOR pT00; phw_data_t pHwData = &adapter->sHwData;
PMDS pMds = &adapter->Mds; PMDS pMds = &adapter->Mds;
u8 *buffer; DESCRIPTOR TxDes;
u8 *src_buffer; PDESCRIPTOR pTxDes = &TxDes;
u8 *pctmp; u8 *XmitBufAddress;
u16 Size = 0; u16 XmitBufSize, PacketSize, stmp, CurrentSize, FragmentThreshold;
u16 SizeLeft, CopySize, CopyLeft, stmp; u8 FillIndex, TxDesIndex, FragmentCount, FillCount;
u8 buf_index, FragmentCount = 0; unsigned char BufferFilled = false, MICAdd = 0;
// Copy fragment body if (pMds->TxPause)
buffer = TargetBuffer; // shift 8B usb + 24B 802.11 return;
SizeLeft = pDes->buffer_total_size; if (!hal_driver_init_OK(pHwData))
buf_index = pDes->buffer_start_index; return;
pT00 = (PT00_DESCRIPTOR)buffer; //Only one thread can be run here
while (SizeLeft) { if (!atomic_inc_return(&pMds->TxThreadCount) == 1)
pT00 = (PT00_DESCRIPTOR)buffer; goto cleanup;
CopySize = SizeLeft;
if (SizeLeft > pDes->FragmentThreshold) {
CopySize = pDes->FragmentThreshold;
pT00->T00_frame_length = 24 + CopySize;//Set USB length
} else
pT00->T00_frame_length = 24 + SizeLeft;//Set USB length
SizeLeft -= CopySize; // Start to fill the data
do {
FillIndex = pMds->TxFillIndex;
if (pMds->TxOwner[FillIndex]) { // Is owned by software 0:Yes 1:No
#ifdef _PE_TX_DUMP_
WBDEBUG(("[Mds_Tx] Tx Owner is H/W.\n"));
#endif
break;
}
// 1 Byte operation XmitBufAddress = pMds->pTxBuffer + (MAX_USB_TX_BUFFER * FillIndex); //Get buffer
pctmp = (u8 *)( buffer + 8 + DOT_11_SEQUENCE_OFFSET ); XmitBufSize = 0;
*pctmp &= 0xf0; FillCount = 0;
*pctmp |= FragmentCount;//931130.5.m do {
if( !FragmentCount ) PacketSize = adapter->sMlmeFrame.len;
pT00->T00_first_mpdu = 1; if (!PacketSize)
break;
buffer += 32; // 8B usb + 24B 802.11 header //For Check the buffer resource
Size += 32; FragmentThreshold = CURRENT_FRAGMENT_THRESHOLD;
//931130.5.b
FragmentCount = PacketSize/FragmentThreshold + 1;
stmp = PacketSize + FragmentCount*32 + 8;//931130.5.c 8:MIC
if ((XmitBufSize + stmp) >= MAX_USB_TX_BUFFER) {
printk("[Mds_Tx] Excess max tx buffer.\n");
break; // buffer is not enough
}
// Copy into buffer
stmp = CopySize + 3;
stmp &= ~0x03;//4n Alignment
Size += stmp;// Current 4n offset of mpdu
while (CopySize) { //
// Copy body // Start transmitting
src_buffer = pDes->buffer_address[buf_index]; //
CopyLeft = CopySize; BufferFilled = true;
if (CopySize >= pDes->buffer_size[buf_index]) {
CopyLeft = pDes->buffer_size[buf_index];
// Get the next buffer of descriptor /* Leaves first u8 intact */
buf_index++; memset((u8 *)pTxDes + 1, 0, sizeof(DESCRIPTOR) - 1);
buf_index %= MAX_DESCRIPTOR_BUFFER_INDEX;
} else {
u8 *pctmp = pDes->buffer_address[buf_index];
pctmp += CopySize;
pDes->buffer_address[buf_index] = pctmp;
pDes->buffer_size[buf_index] -= CopySize;
}
memcpy(buffer, src_buffer, CopyLeft);
buffer += CopyLeft;
CopySize -= CopyLeft;
}
// 931130.5.n TxDesIndex = pMds->TxDesIndex;//Get the current ID
if (pMds->MicAdd) { pTxDes->Descriptor_ID = TxDesIndex;
if (!SizeLeft) { pMds->TxDesFrom[ TxDesIndex ] = 2;//Storing the information of source comming from
pMds->MicWriteAddress[ pMds->MicWriteIndex ] = buffer - pMds->MicAdd; pMds->TxDesIndex++;
pMds->MicWriteSize[ pMds->MicWriteIndex ] = pMds->MicAdd; pMds->TxDesIndex %= MAX_USB_TX_DESCRIPTOR;
pMds->MicAdd = 0;
}
else if( SizeLeft < 8 ) //931130.5.p
{
pMds->MicAdd = SizeLeft;
pMds->MicWriteAddress[ pMds->MicWriteIndex ] = buffer - ( 8 - SizeLeft );
pMds->MicWriteSize[ pMds->MicWriteIndex ] = 8 - SizeLeft;
pMds->MicWriteIndex++;
}
}
// Does it need to generate the new header for next mpdu? MLME_GetNextPacket( adapter, pTxDes );
if (SizeLeft) {
buffer = TargetBuffer + Size; // Get the next 4n start address
memcpy( buffer, TargetBuffer, 32 );//Copy 8B USB +24B 802.11
pT00 = (PT00_DESCRIPTOR)buffer;
pT00->T00_first_mpdu = 0;
}
FragmentCount++; // Copy header. 8byte USB + 24byte 802.11Hdr. Set TxRate, Preamble type
} Mds_HeaderCopy( adapter, pTxDes, XmitBufAddress );
pT00->T00_last_mpdu = 1; // For speed up Key setting
pT00->T00_IsLastMpdu = 1; if (pTxDes->EapFix) {
buffer = (u8 *)pT00 + 8; // +8 for USB hdr #ifdef _PE_TX_DUMP_
buffer[1] &= ~0x04; // Clear more frag bit of 802.11 frame control WBDEBUG(("35: EPA 4th frame detected. Size = %d\n", PacketSize));
pDes->FragmentCount = FragmentCount; // Update the correct fragment number #endif
return Size; pHwData->IsKeyPreSet = 1;
} }
// Copy (fragment) frame body, and set USB, 802.11 hdr flag
CurrentSize = Mds_BodyCopy(adapter, pTxDes, XmitBufAddress);
void // Set RTS/CTS and Normal duration field into buffer
Mds_DurationSet( struct wbsoft_priv * adapter, PDESCRIPTOR pDes, u8 *buffer ) Mds_DurationSet(adapter, pTxDes, XmitBufAddress);
{
PT00_DESCRIPTOR pT00;
PT01_DESCRIPTOR pT01;
u16 Duration, NextBodyLen, OffsetSize;
u8 Rate, i;
unsigned char CTS_on = false, RTS_on = false;
PT00_DESCRIPTOR pNextT00;
u16 BodyLen = 0;
unsigned char boGroupAddr = false;
OffsetSize = pDes->FragmentThreshold + 32 + 3; //
OffsetSize &= ~0x03; // Calculation MIC from buffer which maybe fragment, then fill into temporary address 8 byte
Rate = pDes->TxRate >> 1; // 931130.5.e
if (!Rate) if (MICAdd)
Rate = 1; Mds_MicFill( adapter, pTxDes, XmitBufAddress );
pT00 = (PT00_DESCRIPTOR)buffer; //Shift to the next address
pT01 = (PT01_DESCRIPTOR)(buffer+4); XmitBufSize += CurrentSize;
pNextT00 = (PT00_DESCRIPTOR)(buffer+OffsetSize); XmitBufAddress += CurrentSize;
if( buffer[ DOT_11_DA_OFFSET+8 ] & 0x1 ) // +8 for USB hdr #ifdef _IBSS_BEACON_SEQ_STICK_
boGroupAddr = true; if ((XmitBufAddress[ DOT_11_DA_OFFSET+8 ] & 0xfc) != MAC_SUBTYPE_MNGMNT_PROBE_REQUEST) // +8 for USB hdr
#endif
pMds->TxToggle = true;
//======================================== // Get packet to transmit completed, 1:TESTSTA 2:MLME 3: Ndis data
// Set RTS/CTS mechanism MLME_SendComplete(adapter, 0, true);
//========================================
if (!boGroupAddr)
{
//NOTE : If the protection mode is enabled and the MSDU will be fragmented,
// the tx rates of MPDUs will all be DSSS rates. So it will not use
// CTS-to-self in this case. CTS-To-self will only be used when without
// fragmentation. -- 20050112
BodyLen = (u16)pT00->T00_frame_length; //include 802.11 header
BodyLen += 4; //CRC
if( BodyLen >= CURRENT_RTS_THRESHOLD ) // Software TSC count 20060214
RTS_on = true; // Using RTS pMds->TxTsc++;
else if (pMds->TxTsc == 0)
{ pMds->TxTsc_2++;
if( pT01->T01_modulation_type ) // Is using OFDM
{
if( CURRENT_PROTECT_MECHANISM ) // Is using protect
CTS_on = true; // Using CTS
}
}
}
if( RTS_on || CTS_on ) FillCount++; // 20060928
{ } while (HAL_USB_MODE_BURST(pHwData)); // End of multiple MSDU copy loop. false = single true = multiple sending
if( pT01->T01_modulation_type) // Is using OFDM
{
//CTS duration
// 2 SIFS + DATA transmit time + 1 ACK
// ACK Rate : 24 Mega bps
// ACK frame length = 14 bytes
Duration = 2*DEFAULT_SIFSTIME +
2*PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION +
((BodyLen*8 + 22 + Rate*4 - 1)/(Rate*4))*Tsym +
((112 + 22 + 95)/96)*Tsym;
}
else //DSSS
{
//CTS duration
// 2 SIFS + DATA transmit time + 1 ACK
// Rate : ?? Mega bps
// ACK frame length = 14 bytes
if( pT01->T01_plcp_header_length ) //long preamble
Duration = LONG_PREAMBLE_PLUS_PLCPHEADER_TIME*2;
else
Duration = SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME*2;
Duration += ( ((BodyLen + 14)*8 + Rate-1) / Rate + // Move to the next one, if necessary
DEFAULT_SIFSTIME*2 ); if (BufferFilled) {
} // size setting
pMds->TxBufferSize[ FillIndex ] = XmitBufSize;
if( RTS_on ) // 20060928 set Tx count
{ pMds->TxCountInBuffer[FillIndex] = FillCount;
if( pT01->T01_modulation_type ) // Is using OFDM
{
//CTS + 1 SIFS + CTS duration
//CTS Rate : 24 Mega bps
//CTS frame length = 14 bytes
Duration += (DEFAULT_SIFSTIME +
PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION +
((112 + 22 + 95)/96)*Tsym);
}
else
{
//CTS + 1 SIFS + CTS duration
//CTS Rate : ?? Mega bps
//CTS frame length = 14 bytes
if( pT01->T01_plcp_header_length ) //long preamble
Duration += LONG_PREAMBLE_PLUS_PLCPHEADER_TIME;
else
Duration += SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME;
Duration += ( ((112 + Rate-1) / Rate) + DEFAULT_SIFSTIME ); // Set owner flag
} pMds->TxOwner[FillIndex] = 1;
}
// Set the value into USB descriptor pMds->TxFillIndex++;
pT01->T01_add_rts = RTS_on ? 1 : 0; pMds->TxFillIndex %= MAX_USB_TX_BUFFER_NUMBER;
pT01->T01_add_cts = CTS_on ? 1 : 0; BufferFilled = false;
pT01->T01_rts_cts_duration = Duration; } else
} break;
//===================================== if (!PacketSize) // No more pk for transmitting
// Fill the more fragment descriptor break;
//=====================================
if( boGroupAddr )
Duration = 0;
else
{
for( i=pDes->FragmentCount-1; i>0; i-- )
{
NextBodyLen = (u16)pNextT00->T00_frame_length;
NextBodyLen += 4; //CRC
if( pT01->T01_modulation_type ) } while(true);
{
//OFDM
// data transmit time + 3 SIFS + 2 ACK
// Rate : ??Mega bps
// ACK frame length = 14 bytes, tx rate = 24M
Duration = PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION * 3;
Duration += (((NextBodyLen*8 + 22 + Rate*4 - 1)/(Rate*4)) * Tsym +
(((2*14)*8 + 22 + 95)/96)*Tsym +
DEFAULT_SIFSTIME*3);
}
else
{
//DSSS
// data transmit time + 2 ACK + 3 SIFS
// Rate : ??Mega bps
// ACK frame length = 14 bytes
//TODO :
if( pT01->T01_plcp_header_length ) //long preamble
Duration = LONG_PREAMBLE_PLUS_PLCPHEADER_TIME*3;
else
Duration = SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME*3;
Duration += ( ((NextBodyLen + (2*14))*8 + Rate-1) / Rate + //
DEFAULT_SIFSTIME*3 ); // Start to send by lower module
} //
if (!pHwData->IsKeyPreSet)
Wb35Tx_start(adapter);
((u16 *)buffer)[5] = cpu_to_le16(Duration);// 4 USHOR for skip 8B USB, 2USHORT=FC + Duration cleanup:
atomic_dec(&pMds->TxThreadCount);
}
//----20061009 add by anson's endian void
pNextT00->value = cpu_to_le32(pNextT00->value); Mds_SendComplete(struct wbsoft_priv * adapter, PT02_DESCRIPTOR pT02)
pT01->value = cpu_to_le32( pT01->value ); {
//----end 20061009 add by anson's endian PMDS pMds = &adapter->Mds;
phw_data_t pHwData = &adapter->sHwData;
u8 PacketId = (u8)pT02->T02_Tx_PktID;
unsigned char SendOK = true;
u8 RetryCount, TxRate;
buffer += OffsetSize; if (pT02->T02_IgnoreResult) // Don't care the result
pT01 = (PT01_DESCRIPTOR)(buffer+4); return;
if (i != 1) //The last fragment will not have the next fragment if (pT02->T02_IsLastMpdu) {
pNextT00 = (PT00_DESCRIPTOR)(buffer+OffsetSize); //TODO: DTO -- get the retry count and fragment count
} // Tx rate
TxRate = pMds->TxRate[ PacketId ][ 0 ];
RetryCount = (u8)pT02->T02_MPDU_Cnt;
if (pT02->value & FLAG_ERROR_TX_MASK) {
SendOK = false;
//===================================== if (pT02->T02_transmit_abort || pT02->T02_out_of_MaxTxMSDULiftTime) {
// Fill the last fragment descriptor //retry error
//===================================== pHwData->dto_tx_retry_count += (RetryCount+1);
if( pT01->T01_modulation_type ) //[for tx debug]
{ if (RetryCount<7)
//OFDM pHwData->tx_retry_count[RetryCount] += RetryCount;
// 1 SIFS + 1 ACK else
// Rate : 24 Mega bps pHwData->tx_retry_count[7] += RetryCount;
// ACK frame length = 14 bytes #ifdef _PE_STATE_DUMP_
Duration = PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION; WBDEBUG(("dto_tx_retry_count =%d\n", pHwData->dto_tx_retry_count));
//The Tx rate of ACK use 24M #endif
Duration += (((112 + 22 + 95)/96)*Tsym + DEFAULT_SIFSTIME ); MTO_SetTxCount(adapter, TxRate, RetryCount);
} }
else pHwData->dto_tx_frag_count += (RetryCount+1);
{
// DSSS
// 1 ACK + 1 SIFS
// Rate : ?? Mega bps
// ACK frame length = 14 bytes(112 bits)
if( pT01->T01_plcp_header_length ) //long preamble
Duration = LONG_PREAMBLE_PLUS_PLCPHEADER_TIME;
else
Duration = SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME;
Duration += ( (112 + Rate-1)/Rate + DEFAULT_SIFSTIME ); //[for tx debug]
if (pT02->T02_transmit_abort_due_to_TBTT)
pHwData->tx_TBTT_start_count++;
if (pT02->T02_transmit_without_encryption_due_to_wep_on_false)
pHwData->tx_WepOn_false_count++;
if (pT02->T02_discard_due_to_null_wep_key)
pHwData->tx_Null_key_count++;
} else {
if (pT02->T02_effective_transmission_rate)
pHwData->tx_ETR_count++;
MTO_SetTxCount(adapter, TxRate, RetryCount);
} }
}
((u16 *)buffer)[5] = cpu_to_le16(Duration);// 4 USHOR for skip 8B USB, 2USHORT=FC + Duration
pT00->value = cpu_to_le32(pT00->value);
pT01->value = cpu_to_le32(pT01->value);
//--end 20061009 add
// Clear send result buffer
pMds->TxResult[ PacketId ] = 0;
} else
pMds->TxResult[ PacketId ] |= ((u16)(pT02->value & 0x0ffff));
} }
...@@ -7,12 +7,8 @@ ...@@ -7,12 +7,8 @@
unsigned char Mds_initial( struct wbsoft_priv *adapter ); unsigned char Mds_initial( struct wbsoft_priv *adapter );
void Mds_Destroy( struct wbsoft_priv *adapter ); void Mds_Destroy( struct wbsoft_priv *adapter );
void Mds_Tx( struct wbsoft_priv *adapter ); void Mds_Tx( struct wbsoft_priv *adapter );
void Mds_HeaderCopy( struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8 *TargetBuffer );
u16 Mds_BodyCopy( struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8 *TargetBuffer );
void Mds_DurationSet( struct wbsoft_priv *adapter, PDESCRIPTOR pDes, u8 *TargetBuffer );
void Mds_SendComplete( struct wbsoft_priv *adapter, PT02_DESCRIPTOR pT02 ); void Mds_SendComplete( struct wbsoft_priv *adapter, PT02_DESCRIPTOR pT02 );
void Mds_MpduProcess( struct wbsoft_priv *adapter, PDESCRIPTOR pRxDes ); void Mds_MpduProcess( struct wbsoft_priv *adapter, PDESCRIPTOR pRxDes );
void Mds_reset_descriptor( struct wbsoft_priv *adapter );
extern void DataDmp(u8 *pdata, u32 len, u32 offset); extern void DataDmp(u8 *pdata, u32 len, u32 offset);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment