1 /******************************************************************************
3 (c) Copyright 2008, RealTEK Technologies Inc. All Rights Reserved.
5 Module: r819xusb_cmdpkt.c (RTL8190 TX/RX command packet handler Source C File)
7 Note: The module is responsible for handling TX and RX command packet.
8 1. TX : Send set and query configuration command packet.
9 2. RX : Receive tx feedback, beacon state, query configuration
21 05/06/2008 amy Create initial version porting from windows driver.
23 ******************************************************************************/
25 #include "r8192E_hw.h"
26 #include "r819xE_cmdpkt.h"
27 /*---------------------------Define Local Constant---------------------------*/
29 #define CMPK_DEBOUNCE_CNT 1
30 /* 2007/10/24 MH Add for printing a range of data. */
31 #define CMPK_PRINT(Address)\
36 memcpy(temp, Address, 40);\
37 for (i = 0; i <40; i+=4)\
38 printk("\r\n %08x", temp[i]);\
41 /*---------------------------Define functions---------------------------------*/
42 /*-----------------------------------------------------------------------------
43 * Function: cmpk_message_handle_tx()
45 * Overview: Driver internal module can call the API to send message to
46 * firmware side. For example, you can send a debug command packet.
47 * Or you can send a request for FW to modify RLX4181 LBUS HW bank.
48 * Otherwise, you can change MAC/PHT/RF register by firmware at
49 * run time. We do not support message more than one segment now.
59 * 05/06/2008 amy porting from windows code.
61 *---------------------------------------------------------------------------*/
62 RT_STATUS
cmpk_message_handle_tx(
63 struct net_device
*dev
,
64 u8
* code_virtual_address
,
69 RT_STATUS rt_status
= RT_STATUS_SUCCESS
;
73 struct r8192_priv
*priv
= ieee80211_priv(dev
);
75 u16 frag_length
= 0, frag_offset
= 0;
76 rt_firmware
*pfirmware
= priv
->pFirmware
;
78 unsigned char *seg_ptr
;
82 PTX_FWINFO_8190PCI pTxFwInfo
= NULL
;
85 //spin_lock_irqsave(&priv->tx_lock,flags);
86 RT_TRACE(COMP_CMDPKT
,"%s(),buffer_len is %d\n",__FUNCTION__
,buffer_len
);
87 firmware_init_param(dev
);
88 //Fragmentation might be required
89 frag_threshold
= pfirmware
->cmdpacket_frag_thresold
;
91 if((buffer_len
- frag_offset
) > frag_threshold
) {
92 frag_length
= frag_threshold
;
96 frag_length
=(u16
)(buffer_len
- frag_offset
);
101 /* Allocate skb buffer to contain firmware info and tx descriptor info
102 * add 4 to avoid packet appending overflow.
105 skb
= dev_alloc_skb(USB_HWDESC_HEADER_LEN
+ frag_length
+ 4);
107 skb
= dev_alloc_skb(frag_length
+ priv
->ieee80211
->tx_headroom
+ 4);
110 rt_status
= RT_STATUS_FAILURE
;
114 memcpy((unsigned char *)(skb
->cb
),&dev
,sizeof(dev
));
115 tcb_desc
= (cb_desc
*)(skb
->cb
+ MAX_DEV_ADDR_SIZE
);
116 tcb_desc
->queue_index
= TXCMD_QUEUE
;
117 tcb_desc
->bCmdOrInit
= packettype
;
118 tcb_desc
->bLastIniPkt
= bLastIniPkt
;
119 tcb_desc
->pkt_size
= frag_length
;
122 skb_reserve(skb
, USB_HWDESC_HEADER_LEN
);
125 //seg_ptr = skb_put(skb, frag_length + priv->ieee80211->tx_headroom);
126 seg_ptr
= skb_put(skb
, priv
->ieee80211
->tx_headroom
);
128 pTxFwInfo
= (PTX_FWINFO_8190PCI
)seg_ptr
;
129 memset(pTxFwInfo
,0,sizeof(TX_FWINFO_8190PCI
));
130 memset(pTxFwInfo
,0x12,8);
132 seg_ptr
+=sizeof(TX_FWINFO_8190PCI
);
135 * Transform from little endian to big endian
139 for(i
=0 ; i
< frag_length
; i
+=4) {
140 *seg_ptr
++ = ((i
+0)<frag_length
)?code_virtual_address
[i
+3]:0;
141 *seg_ptr
++ = ((i
+1)<frag_length
)?code_virtual_address
[i
+2]:0;
142 *seg_ptr
++ = ((i
+2)<frag_length
)?code_virtual_address
[i
+1]:0;
143 *seg_ptr
++ = ((i
+3)<frag_length
)?code_virtual_address
[i
+0]:0;
146 priv
->ieee80211
->softmac_hard_start_xmit(skb
,dev
);
148 code_virtual_address
+= frag_length
;
149 frag_offset
+= frag_length
;
151 }while(frag_offset
< buffer_len
);
154 //spin_unlock_irqrestore(&priv->tx_lock,flags);
159 } /* CMPK_Message_Handle_Tx */
161 /*-----------------------------------------------------------------------------
162 * Function: cmpk_counttxstatistic()
166 * Input: PADAPTER pAdapter - .
167 * CMPK_TXFB_T *psTx_FB - .
175 * 05/12/2008 amy Create Version 0 porting from windows code.
177 *---------------------------------------------------------------------------*/
179 cmpk_count_txstatistic(
180 struct net_device
*dev
,
181 cmpk_txfb_t
*pstx_fb
)
183 struct r8192_priv
*priv
= ieee80211_priv(dev
);
185 RT_RF_POWER_STATE rtState
;
187 pAdapter
->HalFunc
.GetHwRegHandler(pAdapter
, HW_VAR_RF_STATE
, (pu1Byte
)(&rtState
));
189 // When RF is off, we should not count the packet for hw/sw synchronize
190 // reason, ie. there may be a duration while sw switch is changed and hw
191 // switch is being changed. 2006.12.04, by shien chang.
192 if (rtState
== eRfOff
)
199 if(pAdapter
->bInHctTest
)
202 /* We can not know the packet length and transmit type: broadcast or uni
203 or multicast. So the relative statistics must be collected in tx
207 priv
->stats
.txfeedbackok
++;
208 priv
->stats
.txoktotal
++;
209 priv
->stats
.txokbytestotal
+= pstx_fb
->pkt_length
;
210 priv
->stats
.txokinperiod
++;
212 /* We can not make sure broadcast/multicast or unicast mode. */
213 if (pstx_fb
->pkt_type
== PACKET_MULTICAST
)
215 priv
->stats
.txmulticast
++;
216 priv
->stats
.txbytesmulticast
+= pstx_fb
->pkt_length
;
218 else if (pstx_fb
->pkt_type
== PACKET_BROADCAST
)
220 priv
->stats
.txbroadcast
++;
221 priv
->stats
.txbytesbroadcast
+= pstx_fb
->pkt_length
;
225 priv
->stats
.txunicast
++;
226 priv
->stats
.txbytesunicast
+= pstx_fb
->pkt_length
;
231 priv
->stats
.txfeedbackfail
++;
232 priv
->stats
.txerrtotal
++;
233 priv
->stats
.txerrbytestotal
+= pstx_fb
->pkt_length
;
235 /* We can not make sure broadcast/multicast or unicast mode. */
236 if (pstx_fb
->pkt_type
== PACKET_MULTICAST
)
238 priv
->stats
.txerrmulticast
++;
240 else if (pstx_fb
->pkt_type
== PACKET_BROADCAST
)
242 priv
->stats
.txerrbroadcast
++;
246 priv
->stats
.txerrunicast
++;
250 priv
->stats
.txretrycount
+= pstx_fb
->retry_cnt
;
251 priv
->stats
.txfeedbackretry
+= pstx_fb
->retry_cnt
;
253 } /* cmpk_CountTxStatistic */
257 /*-----------------------------------------------------------------------------
258 * Function: cmpk_handle_tx_feedback()
260 * Overview: The function is responsible for extract the message inside TX
261 * feedbck message from firmware. It will contain dedicated info in
262 * ws-06-0063-rtl8190-command-packet-specification. Please
263 * refer to chapter "TX Feedback Element". We have to read 20 bytes
264 * in the command packet.
266 * Input: struct net_device * dev
267 * u8 * pmsg - Msg Ptr of the command packet.
275 * 05/08/2008 amy Create Version 0 porting from windows code.
277 *---------------------------------------------------------------------------*/
279 cmpk_handle_tx_feedback(
280 struct net_device
*dev
,
283 struct r8192_priv
*priv
= ieee80211_priv(dev
);
284 cmpk_txfb_t rx_tx_fb
; /* */
286 priv
->stats
.txfeedback
++;
288 /* 0. Display received message. */
289 //cmpk_Display_Message(CMPK_RX_TX_FB_SIZE, pMsg);
291 /* 1. Extract TX feedback info from RFD to temp structure buffer. */
292 /* It seems that FW use big endian(MIPS) and DRV use little endian in
293 windows OS. So we have to read the content byte by byte or transfer
294 endian type before copy the message copy. */
295 #if 0 // The TX FEEDBACK packet element address
296 //rx_tx_fb.Element_ID = pMsg[0];
297 //rx_tx_fb.Length = pMsg[1];
298 rx_tx_fb
.TOK
= pMsg
[2]>>7;
299 rx_tx_fb
.Fail_Reason
= (pMsg
[2] & 0x70) >> 4;
300 rx_tx_fb
.TID
= (pMsg
[2] & 0x0F);
301 rx_tx_fb
.Qos_Pkt
= pMsg
[3] >> 7;
302 rx_tx_fb
.Bandwidth
= (pMsg
[3] & 0x40) >> 6;
303 rx_tx_fb
.Retry_Cnt
= pMsg
[5];
304 rx_tx_fb
.Pkt_ID
= (pMsg
[6] << 8) | pMsg
[7];
305 rx_tx_fb
.Seq_Num
= (pMsg
[8] << 8) | pMsg
[9];
306 rx_tx_fb
.S_Rate
= pMsg
[10];
307 rx_tx_fb
.F_Rate
= pMsg
[11];
308 rx_tx_fb
.S_RTS_Rate
= pMsg
[12];
309 rx_tx_fb
.F_RTS_Rate
= pMsg
[13];
310 rx_tx_fb
.pkt_length
= (pMsg
[14] << 8) | pMsg
[15];
312 /* 2007/07/05 MH Use pointer to transfer structure memory. */
313 //memcpy((UINT8 *)&rx_tx_fb, pMsg, sizeof(CMPK_TXFB_T));
314 memcpy((u8
*)&rx_tx_fb
, pmsg
, sizeof(cmpk_txfb_t
));
315 /* 2. Use tx feedback info to count TX statistics. */
316 cmpk_count_txstatistic(dev
, &rx_tx_fb
);
318 /* 2007/07/11 MH Assign current operate rate. */
319 if (pAdapter
->RegWirelessMode
== WIRELESS_MODE_A
||
320 pAdapter
->RegWirelessMode
== WIRELESS_MODE_B
||
321 pAdapter
->RegWirelessMode
== WIRELESS_MODE_G
)
323 pMgntInfo
->CurrentOperaRate
= (rx_tx_fb
.F_Rate
& 0x7F);
325 else if (pAdapter
->RegWirelessMode
== WIRELESS_MODE_N_24G
||
326 pAdapter
->RegWirelessMode
== WIRELESS_MODE_N_5G
)
328 pMgntInfo
->HTCurrentOperaRate
= (rx_tx_fb
.F_Rate
& 0x8F);
331 /* 2007/01/17 MH Comment previous method for TX statistic function. */
332 /* Collect info TX feedback packet to fill TCB. */
333 /* We can not know the packet length and transmit type: broadcast or uni
335 //CountTxStatistics( pAdapter, &tcb );
337 } /* cmpk_Handle_Tx_Feedback */
339 static void cmdpkt_beacontimerinterrupt_819xusb(struct net_device
*dev
)
341 struct r8192_priv
*priv
= ieee80211_priv(dev
);
345 // 070117, rcnjko: 87B have to S/W beacon for DTM encryption_cmn.
347 if((priv
->ieee80211
->current_network
.mode
== IEEE_A
) ||
348 (priv
->ieee80211
->current_network
.mode
== IEEE_N_5G
) ||
349 ((priv
->ieee80211
->current_network
.mode
== IEEE_N_24G
) && (!priv
->ieee80211
->pHTInfo
->bCurSuppCCK
)))
352 DMESG("send beacon frame tx rate is 6Mbpm\n");
357 DMESG("send beacon frame tx rate is 1Mbpm\n");
360 //rtl819xusb_beacon_tx(dev,tx_rate); // HW Beacon
369 /*-----------------------------------------------------------------------------
370 * Function: cmpk_handle_interrupt_status()
372 * Overview: The function is responsible for extract the message from
373 * firmware. It will contain dedicated info in
374 * ws-07-0063-v06-rtl819x-command-packet-specification-070315.doc.
375 * Please refer to chapter "Interrupt Status Element".
377 * Input: struct net_device *dev,
378 * u8* pmsg - Message Pointer of the command packet.
386 * 05/12/2008 amy Add this for rtl8192 porting from windows code.
388 *---------------------------------------------------------------------------*/
390 cmpk_handle_interrupt_status(
391 struct net_device
*dev
,
394 cmpk_intr_sta_t rx_intr_status
; /* */
395 struct r8192_priv
*priv
= ieee80211_priv(dev
);
397 DMESG("---> cmpk_Handle_Interrupt_Status()\n");
399 /* 0. Display received message. */
400 //cmpk_Display_Message(CMPK_RX_BEACON_STATE_SIZE, pMsg);
402 /* 1. Extract TX feedback info from RFD to temp structure buffer. */
403 /* It seems that FW use big endian(MIPS) and DRV use little endian in
404 windows OS. So we have to read the content byte by byte or transfer
405 endian type before copy the message copy. */
406 //rx_bcn_state.Element_ID = pMsg[0];
407 //rx_bcn_state.Length = pMsg[1];
408 rx_intr_status
.length
= pmsg
[1];
409 if (rx_intr_status
.length
!= (sizeof(cmpk_intr_sta_t
) - 2))
411 DMESG("cmpk_Handle_Interrupt_Status: wrong length!\n");
416 // Statistics of beacon for ad-hoc mode.
417 if( priv
->ieee80211
->iw_mode
== IW_MODE_ADHOC
)
419 //2 maybe need endian transform?
420 rx_intr_status
.interrupt_status
= *((u32
*)(pmsg
+ 4));
421 //rx_intr_status.InterruptStatus = N2H4BYTE(*((UINT32 *)(pMsg + 4)));
423 DMESG("interrupt status = 0x%x\n", rx_intr_status
.interrupt_status
);
425 if (rx_intr_status
.interrupt_status
& ISR_TxBcnOk
)
427 priv
->ieee80211
->bibsscoordinator
= true;
428 priv
->stats
.txbeaconokint
++;
430 else if (rx_intr_status
.interrupt_status
& ISR_TxBcnErr
)
432 priv
->ieee80211
->bibsscoordinator
= false;
433 priv
->stats
.txbeaconerr
++;
436 if (rx_intr_status
.interrupt_status
& ISR_BcnTimerIntr
)
438 cmdpkt_beacontimerinterrupt_819xusb(dev
);
443 // Other informations in interrupt status we need?
446 DMESG("<---- cmpk_handle_interrupt_status()\n");
448 } /* cmpk_handle_interrupt_status */
451 /*-----------------------------------------------------------------------------
452 * Function: cmpk_handle_query_config_rx()
454 * Overview: The function is responsible for extract the message from
455 * firmware. It will contain dedicated info in
456 * ws-06-0063-rtl8190-command-packet-specification. Please
457 * refer to chapter "Beacon State Element".
459 * Input: u8 * pmsg - Message Pointer of the command packet.
467 * 05/12/2008 amy Create Version 0 porting from windows code.
469 *---------------------------------------------------------------------------*/
471 cmpk_handle_query_config_rx(
472 struct net_device
*dev
,
475 cmpk_query_cfg_t rx_query_cfg
; /* */
477 /* 0. Display received message. */
478 //cmpk_Display_Message(CMPK_RX_BEACON_STATE_SIZE, pMsg);
480 /* 1. Extract TX feedback info from RFD to temp structure buffer. */
481 /* It seems that FW use big endian(MIPS) and DRV use little endian in
482 windows OS. So we have to read the content byte by byte or transfer
483 endian type before copy the message copy. */
484 //rx_query_cfg.Element_ID = pMsg[0];
485 //rx_query_cfg.Length = pMsg[1];
486 rx_query_cfg
.cfg_action
= (pmsg
[4] & 0x80000000)>>31;
487 rx_query_cfg
.cfg_type
= (pmsg
[4] & 0x60) >> 5;
488 rx_query_cfg
.cfg_size
= (pmsg
[4] & 0x18) >> 3;
489 rx_query_cfg
.cfg_page
= (pmsg
[6] & 0x0F) >> 0;
490 rx_query_cfg
.cfg_offset
= pmsg
[7];
491 rx_query_cfg
.value
= (pmsg
[8] << 24) | (pmsg
[9] << 16) |
492 (pmsg
[10] << 8) | (pmsg
[11] << 0);
493 rx_query_cfg
.mask
= (pmsg
[12] << 24) | (pmsg
[13] << 16) |
494 (pmsg
[14] << 8) | (pmsg
[15] << 0);
496 } /* cmpk_Handle_Query_Config_Rx */
499 /*-----------------------------------------------------------------------------
500 * Function: cmpk_count_tx_status()
502 * Overview: Count aggregated tx status from firmwar of one type rx command
503 * packet element id = RX_TX_STATUS.
513 * 05/12/2008 amy Create Version 0 porting from windows code.
515 *---------------------------------------------------------------------------*/
516 static void cmpk_count_tx_status( struct net_device
*dev
,
517 cmpk_tx_status_t
*pstx_status
)
519 struct r8192_priv
*priv
= ieee80211_priv(dev
);
523 RT_RF_POWER_STATE rtstate
;
525 pAdapter
->HalFunc
.GetHwRegHandler(pAdapter
, HW_VAR_RF_STATE
, (pu1Byte
)(&rtState
));
527 // When RF is off, we should not count the packet for hw/sw synchronize
528 // reason, ie. there may be a duration while sw switch is changed and hw
529 // switch is being changed. 2006.12.04, by shien chang.
530 if (rtState
== eRfOff
)
536 priv
->stats
.txfeedbackok
+= pstx_status
->txok
;
537 priv
->stats
.txoktotal
+= pstx_status
->txok
;
539 priv
->stats
.txfeedbackfail
+= pstx_status
->txfail
;
540 priv
->stats
.txerrtotal
+= pstx_status
->txfail
;
542 priv
->stats
.txretrycount
+= pstx_status
->txretry
;
543 priv
->stats
.txfeedbackretry
+= pstx_status
->txretry
;
545 //pAdapter->TxStats.NumTxOkBytesTotal += psTx_FB->pkt_length;
546 //pAdapter->TxStats.NumTxErrBytesTotal += psTx_FB->pkt_length;
547 //pAdapter->MgntInfo.LinkDetectInfo.NumTxOkInPeriod++;
549 priv
->stats
.txmulticast
+= pstx_status
->txmcok
;
550 priv
->stats
.txbroadcast
+= pstx_status
->txbcok
;
551 priv
->stats
.txunicast
+= pstx_status
->txucok
;
553 priv
->stats
.txerrmulticast
+= pstx_status
->txmcfail
;
554 priv
->stats
.txerrbroadcast
+= pstx_status
->txbcfail
;
555 priv
->stats
.txerrunicast
+= pstx_status
->txucfail
;
557 priv
->stats
.txbytesmulticast
+= pstx_status
->txmclength
;
558 priv
->stats
.txbytesbroadcast
+= pstx_status
->txbclength
;
559 priv
->stats
.txbytesunicast
+= pstx_status
->txuclength
;
561 priv
->stats
.last_packet_rate
= pstx_status
->rate
;
562 } /* cmpk_CountTxStatus */
566 /*-----------------------------------------------------------------------------
567 * Function: cmpk_handle_tx_status()
569 * Overview: Firmware add a new tx feedback status to reduce rx command
570 * packet buffer operation load.
580 * 05/12/2008 amy Create Version 0 porting from windows code.
582 *---------------------------------------------------------------------------*/
584 cmpk_handle_tx_status(
585 struct net_device
*dev
,
588 cmpk_tx_status_t rx_tx_sts
; /* */
590 memcpy((void*)&rx_tx_sts
, (void*)pmsg
, sizeof(cmpk_tx_status_t
));
591 /* 2. Use tx feedback info to count TX statistics. */
592 cmpk_count_tx_status(dev
, &rx_tx_sts
);
594 } /* cmpk_Handle_Tx_Status */
597 /*-----------------------------------------------------------------------------
598 * Function: cmpk_handle_tx_rate_history()
600 * Overview: Firmware add a new tx rate history
610 * 05/12/2008 amy Create Version 0 porting from windows code.
612 *---------------------------------------------------------------------------*/
614 cmpk_handle_tx_rate_history(
615 struct net_device
*dev
,
618 cmpk_tx_rahis_t
*ptxrate
;
619 // RT_RF_POWER_STATE rtState;
621 u16 length
= sizeof(cmpk_tx_rahis_t
);
623 struct r8192_priv
*priv
= ieee80211_priv(dev
);
627 pAdapter
->HalFunc
.GetHwRegHandler(pAdapter
, HW_VAR_RF_STATE
, (pu1Byte
)(&rtState
));
629 // When RF is off, we should not count the packet for hw/sw synchronize
630 // reason, ie. there may be a duration while sw switch is changed and hw
631 // switch is being changed. 2006.12.04, by shien chang.
632 if (rtState
== eRfOff
)
641 // Do endian transfer to word alignment(16 bits) for windows system.
642 // You must do different endian transfer for linux and MAC OS
644 for (i
= 0; i
< (length
/4); i
++)
648 temp1
= ptemp
[i
]&0x0000FFFF;
649 temp2
= ptemp
[i
]>>16;
650 ptemp
[i
] = (temp1
<<16)|temp2
;
653 ptxrate
= (cmpk_tx_rahis_t
*)pmsg
;
655 if (ptxrate
== NULL
)
660 for (i
= 0; i
< 16; i
++)
662 // Collect CCK rate packet num
664 priv
->stats
.txrate
.cck
[i
] += ptxrate
->cck
[i
];
666 // Collect OFDM rate packet num
668 priv
->stats
.txrate
.ofdm
[i
] += ptxrate
->ofdm
[i
];
670 for (j
= 0; j
< 4; j
++)
671 priv
->stats
.txrate
.ht_mcs
[j
][i
] += ptxrate
->ht_mcs
[j
][i
];
674 } /* cmpk_Handle_Tx_Rate_History */
677 /*-----------------------------------------------------------------------------
678 * Function: cmpk_message_handle_rx()
680 * Overview: In the function, we will capture different RX command packet
681 * info. Every RX command packet element has different message
682 * length and meaning in content. We only support three type of RX
683 * command packet now. Please refer to document
684 * ws-06-0063-rtl8190-command-packet-specification.
694 * 05/06/2008 amy Create Version 0 porting from windows code.
696 *---------------------------------------------------------------------------*/
697 u32
cmpk_message_handle_rx(struct net_device
*dev
, struct ieee80211_rx_stats
*pstats
)
699 // u32 debug_level = DBG_LOUD;
700 struct r8192_priv
*priv
= ieee80211_priv(dev
);
702 u8 cmd_length
, exe_cnt
= 0;
706 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx()\n");
708 /* 0. Check inpt arguments. If is is a command queue message or pointer is
710 if (/*(prfd->queue_id != CMPK_RX_QUEUE_ID) || */(pstats
== NULL
))
712 /* Print error message. */
713 /*RT_TRACE(COMP_SEND, DebugLevel,
714 ("\n\r[CMPK]-->Err queue id or pointer"));*/
715 return 0; /* This is not a command packet. */
718 /* 1. Read received command packet message length from RFD. */
719 total_length
= pstats
->Length
;
721 /* 2. Read virtual address from RFD. */
722 pcmd_buff
= pstats
->virtual_address
;
724 /* 3. Read command pakcet element id and length. */
725 element_id
= pcmd_buff
[0];
726 /*RT_TRACE(COMP_SEND, DebugLevel,
727 ("\n\r[CMPK]-->element ID=%d Len=%d", element_id, total_length));*/
729 /* 4. Check every received command packet conent according to different
730 element type. Because FW may aggregate RX command packet to minimize
731 transmit time between DRV and FW.*/
732 // Add a counter to prevent to locked in the loop too long
733 while (total_length
> 0 || exe_cnt
++ >100)
735 /* 2007/01/17 MH We support aggregation of different cmd in the same packet. */
736 element_id
= pcmd_buff
[0];
742 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx():RX_TX_FEEDBACK\n");
743 cmpk_handle_tx_feedback (dev
, pcmd_buff
);
744 cmd_length
= CMPK_RX_TX_FB_SIZE
;
747 case RX_INTERRUPT_STATUS
:
749 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx():RX_INTERRUPT_STATUS\n");
750 cmpk_handle_interrupt_status(dev
, pcmd_buff
);
751 cmd_length
= sizeof(cmpk_intr_sta_t
);
754 case BOTH_QUERY_CONFIG
:
756 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx():BOTH_QUERY_CONFIG\n");
757 cmpk_handle_query_config_rx(dev
, pcmd_buff
);
758 cmd_length
= CMPK_BOTH_QUERY_CONFIG_SIZE
;
763 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx():RX_TX_STATUS\n");
764 cmpk_handle_tx_status(dev
, pcmd_buff
);
765 cmd_length
= CMPK_RX_TX_STS_SIZE
;
768 case RX_TX_PER_PKT_FEEDBACK
:
769 // You must at lease add a switch case element here,
770 // Otherwise, we will jump to default case.
771 //DbgPrint("CCX Test\r\n");
772 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx():RX_TX_PER_PKT_FEEDBACK\n");
773 cmd_length
= CMPK_RX_TX_FB_SIZE
;
776 case RX_TX_RATE_HISTORY
:
777 //DbgPrint(" rx tx rate history\r\n");
779 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx():RX_TX_HISTORY\n");
780 cmpk_handle_tx_rate_history(dev
, pcmd_buff
);
781 cmd_length
= CMPK_TX_RAHIS_SIZE
;
786 RT_TRACE(COMP_EVENTS
, "---->cmpk_message_handle_rx():unknow CMD Element\n");
787 return 1; /* This is a command packet. */
789 // 2007/01/22 MH Display received rx command packet info.
790 //cmpk_Display_Message(cmd_length, pcmd_buff);
792 // 2007/01/22 MH Add to display tx statistic.
793 //cmpk_DisplayTxStatistic(pAdapter);
795 /* 2007/03/09 MH Collect sidderent cmd element pkt num. */
796 priv
->stats
.rxcmdpkt
[element_id
]++;
798 total_length
-= cmd_length
;
799 pcmd_buff
+= cmd_length
;
800 } /* while (total_length > 0) */
801 return 1; /* This is a command packet. */
803 RT_TRACE(COMP_EVENTS
, "<----cmpk_message_handle_rx()\n");
804 } /* CMPK_Message_Handle_Rx */