/** * \fn mcpf_MsgqEnable * \brief Enable message queue * */ EMcpfRes mcpf_MsgqEnable (handle_t hMcpf, EmcpTaskId eDestTaskId, McpU8 uDestQId) { Tmcpf *pMcpf = (Tmcpf *) hMcpf; TMcpfTask *pTask = pMcpf->tTask[ eDestTaskId ]; McpBool bQueFull = MCP_FALSE; EMcpfRes res = RES_OK; mcpf_critSec_Enter (hMcpf, pTask->hCritSecObj, MCPF_INFINIT); pTask->bQueueFlag[ uDestQId ] = MCP_TRUE; if (que_Size (pTask->hQueue[ uDestQId ])) { bQueFull = MCP_TRUE; } mcpf_critSec_Exit (hMcpf, pTask->hCritSecObj); if (bQueFull) { res = os_sigobj_set (pMcpf->hPla, pTask->hSignalObj); } return res; }
/** * \fn txMgmtQ_Xmit * \brief Insert non-data packet for transmission * * This function is used by the driver applications to send Tx packets other than the * regular data traffic, including the following packet types: * - Management * - EAPOL * - NULL * - IAPP * The managment packets are enqueued to the Mgmt-queue and the others to the Eapol-queue. * EAPOL packets may be inserted from the network stack context, so it requires switching * to the driver's context (after the packet is enqueued). * If the selected queue was empty before the packet insertion, the SM is called * with QUEUES_NOT_EMPTY event (in case of external context, only after the context switch). * * \note * \param hTxMgmtQ - The module's object * \param pPktCtrlBlk - Pointer to the packet CtrlBlk * \param bExternalContext - Indicates if called from non-driver context * \return TI_OK - if the packet was queued, TI_NOK - if the packet was dropped. * \sa txMgmtQ_QueuesNotEmpty */ TI_STATUS txMgmtQ_Xmit (TI_HANDLE hTxMgmtQ, TTxCtrlBlk *pPktCtrlBlk, TI_BOOL bExternalContext) { TTxMgmtQ *pTxMgmtQ = (TTxMgmtQ *)hTxMgmtQ; TI_STATUS eStatus; TI_UINT32 uQueId; TI_UINT32 uQueSize; /* Always set highest TID for mgmt-queues packets. */ pPktCtrlBlk->tTxDescriptor.tid = MGMT_QUEUES_TID; /* Select queue asccording to the packet type */ uQueId = (pPktCtrlBlk->tTxPktParams.uPktType == TX_PKT_TYPE_MGMT) ? QUEUE_TYPE_MGMT : QUEUE_TYPE_EAPOL ; /* Enter critical section to protect queue access */ context_EnterCriticalSection (pTxMgmtQ->hContext); /* Enqueue the packet in the appropriate Queue */ eStatus = que_Enqueue (pTxMgmtQ->aQueues[uQueId], (TI_HANDLE)pPktCtrlBlk); /* Get number of packets in current queue */ uQueSize = que_Size (pTxMgmtQ->aQueues[uQueId]); /* Leave critical section */ context_LeaveCriticalSection (pTxMgmtQ->hContext); /* If packet enqueued successfully */ if (eStatus == TI_OK) { pTxMgmtQ->tDbgCounters.aEnqueuePackets[uQueId]++; /* If selected queue was empty before packet insertion */ if (uQueSize == 1) { /* If called from external context (EAPOL from network), request switch to the driver's context. */ if (bExternalContext) { context_RequestSchedule (pTxMgmtQ->hContext, pTxMgmtQ->uContextId); } /* If already in the driver's context, call the SM with QUEUES_NOT_EMPTY event. */ else { mgmtQueuesSM(pTxMgmtQ, SM_EVENT_QUEUES_NOT_EMPTY); } } } else { /* If the packet can't be queued so drop it */ txCtrl_FreePacket (pTxMgmtQ->hTxCtrl, pPktCtrlBlk, TI_NOK); pTxMgmtQ->tDbgCounters.aDroppedPackets[uQueId]++; } return eStatus; }
/** * \fn txnQ_IsQueueEmpty * \brief Return transaction queue status whether it is empty or not * * The function return TRUE, if all the priority queues for specified function ID are empty, * otherwise - TRUE * * \note critical section is required in caller context * \param pTxnQ - Pointer to transaction queue object * \param uFuncId - Function ID * \return TRUE - queues are empty, FALSE - at least one queue is not empty * \sa */ McpBool txnQ_IsQueueEmpty (const handle_t hTxnQ, const McpU32 uFuncId) { TTxnQObj *pTxnQ = (TTxnQObj*)hTxnQ; McpU32 uPrio; McpU32 uLen; McpBool bEmpty = MCP_TRUE; /* For all function priorities */ for (uPrio = 0; uPrio < pTxnQ->aFuncInfo[uFuncId].uNumPrios; uPrio++) { uLen = que_Size (pTxnQ->aTxnQueues[uFuncId][uPrio]); if (uLen) { bEmpty = MCP_FALSE; break; } } return bEmpty; }
TI_STATUS txDataQ_InsertPacket (TI_HANDLE hTxDataQ, TTxCtrlBlk *pPktCtrlBlk, TI_UINT8 uPacketDtag) { TTxDataQ *pTxDataQ = (TTxDataQ *)hTxDataQ; TEthernetHeader *pEthHead = (TEthernetHeader *)(pPktCtrlBlk->tTxnStruct.aBuf[0]); TI_STATUS eStatus; TI_UINT32 uQueId; TI_UINT32 uQueSize; txCtrl_t *pTxCtrl = (txCtrl_t *)(pTxDataQ->hTxCtrl); TI_BOOL bRequestSchedule = TI_FALSE; TI_BOOL bStopNetStack = TI_FALSE; CL_TRACE_START_L3(); /* If packet is EAPOL or from the generic Ethertype, forward it to the Mgmt-Queue and exit */ if ((HTOWLANS(pEthHead->type) == ETHERTYPE_EAPOL) || (HTOWLANS(pEthHead->type) == pTxCtrl->genericEthertype)) { pPktCtrlBlk->tTxPktParams.uPktType = TX_PKT_TYPE_EAPOL; return txMgmtQ_Xmit (pTxDataQ->hTxMgmtQ, pPktCtrlBlk, TI_TRUE); /* Note: The last parameter indicates that we are running in external context */ } pPktCtrlBlk->tTxPktParams.uPktType = TX_PKT_TYPE_ETHER; /* Enter critical section to protect classifier data and queue access */ context_EnterCriticalSection (pTxDataQ->hContext); /* Call the Classify function to set the TID field */ if (txDataClsfr_ClassifyTxPacket (hTxDataQ, pPktCtrlBlk, uPacketDtag) != TI_OK) { #ifdef TI_DBG pTxDataQ->uClsfrMismatchCount++; TRACE0(pTxDataQ->hReport, REPORT_SEVERITY_WARNING, "txDataQueue_xmit: No matching classifier found \n"); #endif /* TI_DBG */ } /* Enqueue the packet in the appropriate Queue */ uQueId = aTidToQueueTable[pPktCtrlBlk->tTxDescriptor.tid]; eStatus = que_Enqueue (pTxDataQ->aQueues[uQueId], (TI_HANDLE)pPktCtrlBlk); /* Get number of packets in current queue */ uQueSize = que_Size (pTxDataQ->aQueues[uQueId]); /* If the current queue is not stopped */ if (pTxDataQ->aQueueBusy[uQueId] == TI_FALSE) { /* If the queue has the desired number of packets, request switch to driver context for handling them */ if (uQueSize == pTxDataQ->aTxSendPaceThresh[uQueId]) { tmr_StopTimer (pTxDataQ->hTxSendPaceTimer); bRequestSchedule = TI_TRUE; } /* If below Tx-Send pacing threshold, start timer to trigger packets handling if expired */ else if (uQueSize < pTxDataQ->aTxSendPaceThresh[uQueId]) { tmr_StartTimer (pTxDataQ->hTxSendPaceTimer, txDataQ_TxSendPaceTimeout, hTxDataQ, TX_SEND_PACE_TIMEOUT_MSEC, TI_FALSE); } } /* If allowed to stop network stack and the queue is full, indicate to stop network and to schedule Tx handling (both are executed below, outside the critical section!) */ if ((pTxDataQ->bStopNetStackTx) && (uQueSize == pTxDataQ->aQueueMaxSize[uQueId])) { pTxDataQ->aNetStackQueueStopped[uQueId] = TI_TRUE; bRequestSchedule = TI_TRUE; bStopNetStack = TI_TRUE; } /* Leave critical section */ context_LeaveCriticalSection (pTxDataQ->hContext); /* If needed, schedule Tx handling */ if (bRequestSchedule) { context_RequestSchedule (pTxDataQ->hContext, pTxDataQ->uContextId); } /* If needed, stop the network stack Tx */ if (bStopNetStack) { /* Stop the network stack from sending Tx packets as we have at least one date queue full. Note that in some of the OS's (e.g Win Mobile) it is implemented by blocking the thread*/ wlanDrvIf_StopTx (pTxDataQ->hOs); } if (eStatus != TI_OK) { /* If the packet can't be queued drop it */ txCtrl_FreePacket (pTxDataQ->hTxCtrl, pPktCtrlBlk, TI_NOK); #ifdef TI_DBG pTxDataQ->aQueueCounters[uQueId].uDroppedPacket++; #endif /* TI_DBG */ } else { #ifdef TI_DBG pTxDataQ->aQueueCounters[uQueId].uEnqueuePacket++; #endif /* TI_DBG */ } CL_TRACE_END_L3 ("tiwlan_drv.ko", "INHERIT", "TX", ""); return eStatus; }
/** * \fn txMgmtQ_Xmit * \brief Insert non-data packet for transmission * * This function is used by the driver applications to send Tx packets other than the * regular data traffic, including the following packet types: * - Management * - EAPOL * - NULL * - IAPP * The managment packets are enqueued to the Mgmt-queue and the others to the Eapol-queue. * EAPOL packets may be inserted from the network stack context, so it requires switching * to the driver's context (after the packet is enqueued). * If the selected queue was empty before the packet insertion, the SM is called * with QUEUES_NOT_EMPTY event (in case of external context, only after the context switch). * * \note * \param hTxMgmtQ - The module's object * \param pPktCtrlBlk - Pointer to the packet CtrlBlk * \param bExternalContext - Indicates if called from non-driver context * \return TI_OK - if the packet was queued, TI_NOK - if the packet was dropped. * \sa txMgmtQ_QueuesNotEmpty */ TI_STATUS txMgmtQ_Xmit (TI_HANDLE hTxMgmtQ, TTxCtrlBlk *pPktCtrlBlk, TI_BOOL bExternalContext) { TTxMgmtQ *pTxMgmtQ = (TTxMgmtQ *)hTxMgmtQ; TI_STATUS eStatus; TI_UINT32 uQueId; TI_UINT32 uQueSize; TI_UINT32 uHlid; TMgmtLinkQ *pLinkQ; /* Find link id by destination MAC address, if not found use global link id */ if (pPktCtrlBlk->tTxPktParams.uPktType == TX_PKT_TYPE_MGMT) { /* MGMT packet, use destination MAC address from WLAN header, aBuf[0] is the WLAN header */ if ((txDataQ_LinkMacFind( pTxMgmtQ->hTxDataQ, &uHlid ,((dot11_header_t *)(pPktCtrlBlk->tTxnStruct.aBuf[0]))->address1 )) != TI_OK) { uHlid = pTxMgmtQ->uGlobalHlid; } } else { /* EAPOL packet, use destination MAC address from ETHERNET header, aBuf[0] is the ETHERNET header */ if ((txDataQ_LinkMacFind( pTxMgmtQ->hTxDataQ, &uHlid, ((TEthernetHeader *)(pPktCtrlBlk->tTxnStruct.aBuf[0]))->dst)) != TI_OK) { uHlid = pTxMgmtQ->uGlobalHlid; } } pPktCtrlBlk->tTxDescriptor.hlid = uHlid; pLinkQ = &pTxMgmtQ->aMgmtLinkQ[uHlid]; /* Link queues */ /* Always set highest TID for mgmt-queues packets. */ pPktCtrlBlk->tTxDescriptor.tid = MGMT_QUEUES_TID; if ((pLinkQ->bEncrypt)&& (pPktCtrlBlk->tTxPktParams.uPktType == TX_PKT_TYPE_EAPOL)) { SET_PKT_TYPE_ENCRYPT(pPktCtrlBlk); } /* Select queue asccording to the packet type */ uQueId = (pPktCtrlBlk->tTxPktParams.uPktType == TX_PKT_TYPE_MGMT) ? QUEUE_TYPE_MGMT : QUEUE_TYPE_EAPOL ; /* Enter critical section to protect queue access */ context_EnterCriticalSection (pTxMgmtQ->hContext); /* Check resources per LINK and per MGMT AC (VOICE)*/ if (txDataQ_AllocCheckResources( pTxMgmtQ->hTxDataQ, pPktCtrlBlk) != TI_OK) { pLinkQ->tDbgCounters.aDroppedPackets[uQueId]++; pLinkQ->tDbgCounters.uNoResourcesCount++; /* Leave critical section */ context_LeaveCriticalSection (pTxMgmtQ->hContext); /* If the packet can't be queued drop it */ /* !!! This call should be out of the critical section */ txCtrl_FreePacket (pTxMgmtQ->hTxCtrl, pPktCtrlBlk, TI_NOK); return TI_NOK; } /* Enqueue the packet in the appropriate Queue */ eStatus = que_Enqueue (pLinkQ->aQueues[uQueId], (TI_HANDLE)pPktCtrlBlk); /* Get number of packets in current queue */ uQueSize = que_Size (pLinkQ->aQueues[uQueId]); /* Leave critical section */ context_LeaveCriticalSection (pTxMgmtQ->hContext); /* If packet enqueued successfully */ if (eStatus == TI_OK) { pLinkQ->tDbgCounters.aEnqueuePackets[uQueId]++; /* If selected queue was empty before packet insertion */ if (uQueSize == 1 ) if (uQueSize ) { /* If called from external context (EAPOL from network), request switch to the driver's context. */ if (bExternalContext) { /* Set bSendEvent_NotEmpty flag to use in driver context */ pLinkQ->bSendEvent_NotEmpty = TI_TRUE; context_RequestSchedule (pTxMgmtQ->hContext, pTxMgmtQ->uContextId); } /* If already in the driver's context, call the SM with QUEUES_NOT_EMPTY event. */ else { mgmtQueuesSM(pTxMgmtQ, uHlid, SM_EVENT_QUEUES_NOT_EMPTY); } } } else { /* If the packet can't be queued so drop it */ txCtrl_FreePacket (pTxMgmtQ->hTxCtrl, pPktCtrlBlk, TI_NOK); pLinkQ->tDbgCounters.aDroppedPackets[uQueId]++; } return eStatus; }
TI_STATUS txDataQ_InsertPacket (TI_HANDLE hTxDataQ, TTxCtrlBlk *pPktCtrlBlk, TI_UINT8 uPacketDtag, TIntraBssBridge *pIntraBssBridgeParam) { TTxDataQ *pTxDataQ = (TTxDataQ *)hTxDataQ; TEthernetHeader *pEthHead = (TEthernetHeader *)(pPktCtrlBlk->tTxnStruct.aBuf[0]); TI_STATUS eStatus; TI_UINT32 uQueId; TI_UINT32 uQueSize; txCtrl_t *pTxCtrl = (txCtrl_t *)(pTxDataQ->hTxCtrl); TI_BOOL bRequestSchedule = TI_FALSE; TI_BOOL bStopNetStack = TI_FALSE; TDataLinkQ *pLinkQ; TI_UINT32 uHlid; /* If packet is EAPOL or from the generic Ethertype, forward it to the Mgmt-Queue and exit */ if ((HTOWLANS(pEthHead->type) == ETHERTYPE_EAPOL) || (HTOWLANS(pEthHead->type) == pTxCtrl->genericEthertype)) { pPktCtrlBlk->tTxPktParams.uPktType = TX_PKT_TYPE_EAPOL; return txMgmtQ_Xmit (pTxDataQ->hTxMgmtQ, pPktCtrlBlk, TI_TRUE); /* Note: The last parameter indicates that we are running in external context */ } /* Find link id by destination MAC address, if not found drop the packet */ /* use Intra Bss bridge params*/ if(!pIntraBssBridgeParam) { if (TI_UNLIKELY(MAC_MULTICAST(pEthHead->dst))) { uHlid = pTxDataQ->uBcastHlid; } else { if (txDataQ_LinkMacFind( hTxDataQ, &uHlid, pEthHead->dst) != TI_OK) { /* If the packet can't be queued drop it */ txCtrl_FreePacket (pTxDataQ->hTxCtrl, pPktCtrlBlk, TI_NOK); pTxDataQ->uLinkNotFoundCount++; return TI_NOK; } } } else { uHlid = pIntraBssBridgeParam->uParam; } pPktCtrlBlk->tTxDescriptor.hlid = uHlid; pLinkQ = &pTxDataQ->aDataLinkQ[uHlid]; /* Link queues */ pPktCtrlBlk->tTxPktParams.uPktType = TX_PKT_TYPE_ETHER; /* set encryption bit */ if (pLinkQ->bEncrypt) { SET_PKT_TYPE_ENCRYPT(pPktCtrlBlk); } /* Enter critical section to protect classifier data and queue access */ context_EnterCriticalSection (pTxDataQ->hContext); /* Call the Classify function to set the TID field */ if (txDataClsfr_ClassifyTxPacket (hTxDataQ, pPktCtrlBlk, uPacketDtag) != TI_OK) { #ifdef TI_DBG pTxDataQ->uClsfrMismatchCount++; #endif /* TI_DBG */ } uQueId = aTidToQueueTable[pPktCtrlBlk->tTxDescriptor.tid]; /* Check resources per LINK and per AC */ if (txDataQ_AllocCheckResources( hTxDataQ, pPktCtrlBlk) != TI_OK) { #ifdef TI_DBG pLinkQ->aQueueCounters[uQueId].uDroppedPacket++; pTxDataQ->uNoResourcesCount++; #endif /* TI_DBG */ /* Leave critical section */ context_LeaveCriticalSection (pTxDataQ->hContext); /* If the packet can't be queued drop it - Should be out of the critical section */ /* !!! This call should be out of the critical section */ txCtrl_FreePacket (pTxDataQ->hTxCtrl, pPktCtrlBlk, TI_NOK); return TI_NOK; } /* Enqueue the packet in the appropriate Queue */ eStatus = que_Enqueue (pLinkQ->aQueues[uQueId], (TI_HANDLE)pPktCtrlBlk); /* Get number of packets in current queue */ uQueSize = que_Size (pLinkQ->aQueues[uQueId]); /* If the current queue is not stopped */ if (pTxDataQ->aQueueBusy[uQueId] == TI_FALSE) { /* If the queue has the desired number of packets, request switch to driver context for handling them */ if (uQueSize == pTxDataQ->aTxSendPaceThresh[uQueId]) { tmr_StopTimer (pTxDataQ->hTxSendPaceTimer); bRequestSchedule = TI_TRUE; } /* If below Tx-Send pacing threshold, start timer to trigger packets handling if expired */ else if (uQueSize < pTxDataQ->aTxSendPaceThresh[uQueId]) { tmr_StartTimer (pTxDataQ->hTxSendPaceTimer, txDataQ_TxSendPaceTimeout, hTxDataQ, TX_SEND_PACE_TIMEOUT_MSEC, TI_FALSE); } } /* If allowed to stop network stack and the queue is full, indicate to stop network and to schedule Tx handling (both are executed below, outside the critical section!) */ if ((pTxDataQ->bStopNetStackTx) && (uQueSize == pTxDataQ->aQueueMaxSize[uQueId])) { pLinkQ->aNetStackQueueStopped[uQueId] = TI_TRUE; bRequestSchedule = TI_TRUE; bStopNetStack = TI_TRUE; } /* Leave critical section */ context_LeaveCriticalSection (pTxDataQ->hContext); /* If needed, schedule Tx handling */ if (bRequestSchedule) { context_RequestSchedule (pTxDataQ->hContext, pTxDataQ->uContextId); } /* If needed, stop the network stack Tx */ if (bStopNetStack) { /* Stop the network stack from sending Tx packets as we have at least one date queue full. Note that in some of the OS's (e.g Win Mobile) it is implemented by blocking the thread! */ wlanDrvIf_StopTx (pTxDataQ->hOs); } if (eStatus != TI_OK) { /* If the packet can't be queued drop it */ txCtrl_FreePacket (pTxDataQ->hTxCtrl, pPktCtrlBlk, TI_NOK); #ifdef TI_DBG pLinkQ->aQueueCounters[uQueId].uDroppedPacket++; #endif /* TI_DBG */ } else { #ifdef TI_DBG pLinkQ->aQueueCounters[uQueId].uEnqueuePacket++; #endif /* TI_DBG */ } return eStatus; }