1 /******************************************************************************
3 * Copyright(c) 2009-2012 Realtek Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * The full GNU General Public License is included in this distribution in the
15 * file called LICENSE.
17 * Contact Information:
18 * wlanfae <wlanfae@realtek.com>
19 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
20 * Hsinchu 300, Taiwan.
22 * Larry Finger <Larry.Finger@lwfinger.net>
24 *****************************************************************************/
36 static u8
_rtl8723e_map_hwqueue_to_fwqueue(struct sk_buff
*skb
, u8 hw_queue
)
38 __le16 fc
= rtl_get_fc(skb
);
40 if (unlikely(ieee80211_is_beacon(fc
)))
42 if (ieee80211_is_mgmt(fc
) || ieee80211_is_ctl(fc
))
48 static void _rtl8723e_query_rxphystatus(struct ieee80211_hw
*hw
,
49 struct rtl_stats
*pstatus
, u8
*pdesc
,
50 struct rx_fwinfo_8723e
*p_drvinfo
,
51 bool bpacket_match_bssid
,
52 bool bpacket_toself
, bool packet_beacon
)
54 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
55 struct rtl_ps_ctl
*ppsc
= rtl_psc(rtlpriv
);
56 struct phy_sts_cck_8723e_t
*cck_buf
;
57 s8 rx_pwr_all
= 0, rx_pwr
[4];
58 u8 rf_rx_num
= 0, evm
, pwdb_all
;
59 u8 i
, max_spatial_stream
;
60 u32 rssi
, total_rssi
= 0;
61 bool is_cck
= pstatus
->is_cck
;
63 /* Record it for next packet processing */
64 pstatus
->packet_matchbssid
= bpacket_match_bssid
;
65 pstatus
->packet_toself
= bpacket_toself
;
66 pstatus
->packet_beacon
= packet_beacon
;
67 pstatus
->rx_mimo_signalquality
[0] = -1;
68 pstatus
->rx_mimo_signalquality
[1] = -1;
71 u8 report
, cck_highpwr
;
73 /* CCK Driver info Structure is not the same as OFDM packet. */
74 cck_buf
= (struct phy_sts_cck_8723e_t
*)p_drvinfo
;
76 /* (1)Hardware does not provide RSSI for CCK */
77 /* (2)PWDB, Average PWDB cacluated by
78 * hardware (for rate adaptive)
80 if (ppsc
->rfpwr_state
== ERFON
)
81 cck_highpwr
= (u8
)rtl_get_bbreg(hw
,
82 RFPGA0_XA_HSSIPARAMETER2
,
88 u8 cck_agc_rpt
= cck_buf
->cck_agc_rpt
;
89 report
= cck_buf
->cck_agc_rpt
& 0xc0;
93 rx_pwr_all
= -46 - (cck_agc_rpt
& 0x3e);
96 rx_pwr_all
= -26 - (cck_agc_rpt
& 0x3e);
99 rx_pwr_all
= -12 - (cck_agc_rpt
& 0x3e);
102 rx_pwr_all
= 16 - (cck_agc_rpt
& 0x3e);
106 u8 cck_agc_rpt
= cck_buf
->cck_agc_rpt
;
107 report
= p_drvinfo
->cfosho
[0] & 0x60;
108 report
= report
>> 5;
111 rx_pwr_all
= -46 - ((cck_agc_rpt
& 0x1f) << 1);
114 rx_pwr_all
= -26 - ((cck_agc_rpt
& 0x1f) << 1);
117 rx_pwr_all
= -12 - ((cck_agc_rpt
& 0x1f) << 1);
120 rx_pwr_all
= 16 - ((cck_agc_rpt
& 0x1f) << 1);
125 pwdb_all
= rtl_query_rxpwrpercentage(rx_pwr_all
);
126 /* CCK gain is smaller than OFDM/MCS gain, */
127 /* so we add gain diff by experiences,
133 /* modify the offset to make the same
134 * gain index with OFDM.
136 if (pwdb_all
> 34 && pwdb_all
<= 42)
138 else if (pwdb_all
> 26 && pwdb_all
<= 34)
140 else if (pwdb_all
> 14 && pwdb_all
<= 26)
142 else if (pwdb_all
> 4 && pwdb_all
<= 14)
145 pstatus
->rx_pwdb_all
= pwdb_all
;
146 pstatus
->recvsignalpower
= rx_pwr_all
;
148 /* (3) Get Signal Quality (EVM) */
149 if (bpacket_match_bssid
) {
152 if (pstatus
->rx_pwdb_all
> 40)
155 sq
= cck_buf
->sq_rpt
;
161 sq
= ((64 - sq
) * 100) / 44;
164 pstatus
->signalquality
= sq
;
165 pstatus
->rx_mimo_signalquality
[0] = sq
;
166 pstatus
->rx_mimo_signalquality
[1] = -1;
169 rtlpriv
->dm
.rfpath_rxenable
[0] =
170 rtlpriv
->dm
.rfpath_rxenable
[1] = true;
172 /* (1)Get RSSI for HT rate */
173 for (i
= RF90_PATH_A
; i
< RF6052_MAX_PATH
; i
++) {
175 /* we will judge RF RX path now. */
176 if (rtlpriv
->dm
.rfpath_rxenable
[i
])
179 rx_pwr
[i
] = ((p_drvinfo
->gain_trsw
[i
] &
182 /* Translate DBM to percentage. */
183 rssi
= rtl_query_rxpwrpercentage(rx_pwr
[i
]);
186 /* Get Rx snr value in DB */
187 rtlpriv
->stats
.rx_snr_db
[i
] =
188 (long)(p_drvinfo
->rxsnr
[i
] / 2);
190 /* Record Signal Strength for next packet */
191 if (bpacket_match_bssid
)
192 pstatus
->rx_mimo_signalstrength
[i
] = (u8
)rssi
;
195 /* (2)PWDB, Average PWDB cacluated by
196 * hardware (for rate adaptive)
198 rx_pwr_all
= ((p_drvinfo
->pwdb_all
>> 1) & 0x7f) - 110;
200 pwdb_all
= rtl_query_rxpwrpercentage(rx_pwr_all
);
201 pstatus
->rx_pwdb_all
= pwdb_all
;
202 pstatus
->rxpower
= rx_pwr_all
;
203 pstatus
->recvsignalpower
= rx_pwr_all
;
205 /* (3)EVM of HT rate */
206 if (pstatus
->is_ht
&& pstatus
->rate
>= DESC92C_RATEMCS8
&&
207 pstatus
->rate
<= DESC92C_RATEMCS15
)
208 max_spatial_stream
= 2;
210 max_spatial_stream
= 1;
212 for (i
= 0; i
< max_spatial_stream
; i
++) {
213 evm
= rtl_evm_db_to_percentage(p_drvinfo
->rxevm
[i
]);
215 if (bpacket_match_bssid
) {
216 /* Fill value in RFD, Get the first
217 * spatial stream only
220 pstatus
->signalquality
=
222 pstatus
->rx_mimo_signalquality
[i
] =
228 /* UI BSS List signal strength(in percentage),
229 * make it good looking, from 0~100.
232 pstatus
->signalstrength
= (u8
)(rtl_signal_scale_mapping(hw
,
234 else if (rf_rx_num
!= 0)
235 pstatus
->signalstrength
= (u8
)(rtl_signal_scale_mapping(hw
,
236 total_rssi
/= rf_rx_num
));
239 static void translate_rx_signal_stuff(struct ieee80211_hw
*hw
,
241 struct rtl_stats
*pstatus
, u8
*pdesc
,
242 struct rx_fwinfo_8723e
*p_drvinfo
)
244 struct rtl_mac
*mac
= rtl_mac(rtl_priv(hw
));
245 struct rtl_efuse
*rtlefuse
= rtl_efuse(rtl_priv(hw
));
246 struct ieee80211_hdr
*hdr
;
251 bool packet_matchbssid
, packet_toself
, packet_beacon
;
253 tmp_buf
= skb
->data
+ pstatus
->rx_drvinfo_size
+ pstatus
->rx_bufshift
;
255 hdr
= (struct ieee80211_hdr
*)tmp_buf
;
256 fc
= le16_to_cpu(hdr
->frame_control
);
257 type
= WLAN_FC_GET_TYPE(hdr
->frame_control
);
260 packet_matchbssid
= ((IEEE80211_FTYPE_CTL
!= type
) &&
261 (ether_addr_equal(mac
->bssid
, (fc
& IEEE80211_FCTL_TODS
) ?
262 hdr
->addr1
: (fc
& IEEE80211_FCTL_FROMDS
) ?
263 hdr
->addr2
: hdr
->addr3
)) &&
264 (!pstatus
->hwerror
) &&
265 (!pstatus
->crc
) && (!pstatus
->icv
));
267 packet_toself
= packet_matchbssid
&&
268 (ether_addr_equal(praddr
, rtlefuse
->dev_addr
));
270 if (ieee80211_is_beacon(hdr
->frame_control
))
271 packet_beacon
= true;
273 packet_beacon
= false;
275 _rtl8723e_query_rxphystatus(hw
, pstatus
, pdesc
, p_drvinfo
,
276 packet_matchbssid
, packet_toself
,
279 rtl_process_phyinfo(hw
, tmp_buf
, pstatus
);
282 bool rtl8723e_rx_query_desc(struct ieee80211_hw
*hw
,
283 struct rtl_stats
*status
,
284 struct ieee80211_rx_status
*rx_status
,
285 u8
*pdesc
, struct sk_buff
*skb
)
287 struct rx_fwinfo_8723e
*p_drvinfo
;
288 struct ieee80211_hdr
*hdr
;
289 u32 phystatus
= GET_RX_DESC_PHYST(pdesc
);
291 status
->length
= (u16
)GET_RX_DESC_PKT_LEN(pdesc
);
292 status
->rx_drvinfo_size
= (u8
)GET_RX_DESC_DRV_INFO_SIZE(pdesc
) *
293 RX_DRV_INFO_SIZE_UNIT
;
294 status
->rx_bufshift
= (u8
)(GET_RX_DESC_SHIFT(pdesc
) & 0x03);
295 status
->icv
= (u16
)GET_RX_DESC_ICV(pdesc
);
296 status
->crc
= (u16
)GET_RX_DESC_CRC32(pdesc
);
297 status
->hwerror
= (status
->crc
| status
->icv
);
298 status
->decrypted
= !GET_RX_DESC_SWDEC(pdesc
);
299 status
->rate
= (u8
)GET_RX_DESC_RXMCS(pdesc
);
300 status
->shortpreamble
= (u16
)GET_RX_DESC_SPLCP(pdesc
);
301 status
->isampdu
= (bool)(GET_RX_DESC_PAGGR(pdesc
) == 1);
302 status
->isfirst_ampdu
= (bool)((GET_RX_DESC_PAGGR(pdesc
) == 1) &&
303 (GET_RX_DESC_FAGGR(pdesc
) == 1));
304 status
->timestamp_low
= GET_RX_DESC_TSFL(pdesc
);
305 status
->rx_is40Mhzpacket
= (bool)GET_RX_DESC_BW(pdesc
);
306 status
->is_ht
= (bool)GET_RX_DESC_RXHT(pdesc
);
308 status
->is_cck
= RX_HAL_IS_CCK_RATE(status
->rate
);
310 rx_status
->freq
= hw
->conf
.chandef
.chan
->center_freq
;
311 rx_status
->band
= hw
->conf
.chandef
.chan
->band
;
313 hdr
= (struct ieee80211_hdr
*)(skb
->data
+ status
->rx_drvinfo_size
314 + status
->rx_bufshift
);
317 rx_status
->flag
|= RX_FLAG_FAILED_FCS_CRC
;
319 if (status
->rx_is40Mhzpacket
)
320 rx_status
->flag
|= RX_FLAG_40MHZ
;
323 rx_status
->flag
|= RX_FLAG_HT
;
325 rx_status
->flag
|= RX_FLAG_MACTIME_START
;
327 /* hw will set status->decrypted true, if it finds the
328 * frame is open data frame or mgmt frame.
329 * So hw will not decryption robust managment frame
330 * for IEEE80211w but still set status->decrypted
331 * true, so here we should set it back to undecrypted
332 * for IEEE80211w frame, and mac80211 sw will help
335 if (status
->decrypted
) {
336 if ((!_ieee80211_is_robust_mgmt_frame(hdr
)) &&
337 (ieee80211_has_protected(hdr
->frame_control
)))
338 rx_status
->flag
|= RX_FLAG_DECRYPTED
;
340 rx_status
->flag
&= ~RX_FLAG_DECRYPTED
;
343 /* rate_idx: index of data rate into band's
344 * supported rates or MCS index if HT rates
345 * are use (RX_FLAG_HT)
346 * Notice: this is diff with windows define
348 rx_status
->rate_idx
= rtlwifi_rate_mapping(hw
, status
->is_ht
,
349 false, status
->rate
);
351 rx_status
->mactime
= status
->timestamp_low
;
352 if (phystatus
== true) {
353 p_drvinfo
= (struct rx_fwinfo_8723e
*)(skb
->data
+
354 status
->rx_bufshift
);
356 translate_rx_signal_stuff(hw
, skb
, status
, pdesc
, p_drvinfo
);
358 rx_status
->signal
= status
->recvsignalpower
+ 10;
362 void rtl8723e_tx_fill_desc(struct ieee80211_hw
*hw
,
363 struct ieee80211_hdr
*hdr
, u8
*pdesc_tx
,
364 u8
*txbd
, struct ieee80211_tx_info
*info
,
365 struct ieee80211_sta
*sta
,
367 u8 hw_queue
, struct rtl_tcb_desc
*ptcb_desc
)
369 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
370 struct rtl_mac
*mac
= rtl_mac(rtl_priv(hw
));
371 struct rtl_pci
*rtlpci
= rtl_pcidev(rtl_pcipriv(hw
));
372 struct rtl_ps_ctl
*ppsc
= rtl_psc(rtl_priv(hw
));
373 bool b_defaultadapter
= true;
374 /* bool b_trigger_ac = false; */
375 u8
*pdesc
= (u8
*)pdesc_tx
;
377 __le16 fc
= hdr
->frame_control
;
378 u8 fw_qsel
= _rtl8723e_map_hwqueue_to_fwqueue(skb
, hw_queue
);
379 bool firstseg
= ((hdr
->seq_ctrl
&
380 cpu_to_le16(IEEE80211_SCTL_FRAG
)) == 0);
382 bool lastseg
= ((hdr
->frame_control
&
383 cpu_to_le16(IEEE80211_FCTL_MOREFRAGS
)) == 0);
385 dma_addr_t mapping
= pci_map_single(rtlpci
->pdev
,
390 if (pci_dma_mapping_error(rtlpci
->pdev
, mapping
)) {
391 RT_TRACE(rtlpriv
, COMP_SEND
, DBG_TRACE
,
392 "DMA mapping error");
395 if (mac
->opmode
== NL80211_IFTYPE_STATION
) {
397 } else if (mac
->opmode
== NL80211_IFTYPE_AP
||
398 mac
->opmode
== NL80211_IFTYPE_ADHOC
) {
400 bw_40
= sta
->ht_cap
.cap
&
401 IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
404 seq_number
= (le16_to_cpu(hdr
->seq_ctrl
) & IEEE80211_SCTL_SEQ
) >> 4;
406 rtl_get_tcb_desc(hw
, info
, sta
, skb
, ptcb_desc
);
408 CLEAR_PCI_TX_DESC_CONTENT(pdesc
, sizeof(struct tx_desc_8723e
));
410 if (ieee80211_is_nullfunc(fc
) || ieee80211_is_ctl(fc
)) {
416 SET_TX_DESC_OFFSET(pdesc
, USB_HWDESC_HEADER_LEN
);
418 SET_TX_DESC_TX_RATE(pdesc
, ptcb_desc
->hw_rate
);
420 if (ptcb_desc
->use_shortgi
|| ptcb_desc
->use_shortpreamble
)
421 SET_TX_DESC_DATA_SHORTGI(pdesc
, 1);
423 if (info
->flags
& IEEE80211_TX_CTL_AMPDU
) {
424 SET_TX_DESC_AGG_BREAK(pdesc
, 1);
425 SET_TX_DESC_MAX_AGG_NUM(pdesc
, 0x14);
427 SET_TX_DESC_SEQ(pdesc
, seq_number
);
429 SET_TX_DESC_RTS_ENABLE(pdesc
,
430 ((ptcb_desc
->rts_enable
&&
431 !ptcb_desc
->cts_enable
) ? 1 : 0));
432 SET_TX_DESC_HW_RTS_ENABLE(pdesc
,
433 ((ptcb_desc
->rts_enable
||
434 ptcb_desc
->cts_enable
) ? 1 : 0));
435 SET_TX_DESC_CTS2SELF(pdesc
,
436 ((ptcb_desc
->cts_enable
) ? 1 : 0));
437 SET_TX_DESC_RTS_STBC(pdesc
,
438 ((ptcb_desc
->rts_stbc
) ? 1 : 0));
440 SET_TX_DESC_RTS_RATE(pdesc
, ptcb_desc
->rts_rate
);
441 SET_TX_DESC_RTS_BW(pdesc
, 0);
442 SET_TX_DESC_RTS_SC(pdesc
, ptcb_desc
->rts_sc
);
443 SET_TX_DESC_RTS_SHORT(pdesc
,
444 ((ptcb_desc
->rts_rate
<= DESC92C_RATE54M
) ?
445 (ptcb_desc
->rts_use_shortpreamble
? 1 : 0)
446 : (ptcb_desc
->rts_use_shortgi
? 1 : 0)));
449 if (ptcb_desc
->packet_bw
== HT_CHANNEL_WIDTH_20_40
) {
450 SET_TX_DESC_DATA_BW(pdesc
, 1);
451 SET_TX_DESC_TX_SUB_CARRIER(pdesc
, 3);
453 SET_TX_DESC_DATA_BW(pdesc
, 0);
454 SET_TX_DESC_TX_SUB_CARRIER(pdesc
,
455 mac
->cur_40_prime_sc
);
458 SET_TX_DESC_DATA_BW(pdesc
, 0);
459 SET_TX_DESC_TX_SUB_CARRIER(pdesc
, 0);
462 SET_TX_DESC_LINIP(pdesc
, 0);
463 SET_TX_DESC_PKT_SIZE(pdesc
, (u16
) skb
->len
);
466 u8 ampdu_density
= sta
->ht_cap
.ampdu_density
;
467 SET_TX_DESC_AMPDU_DENSITY(pdesc
, ampdu_density
);
470 if (info
->control
.hw_key
) {
471 struct ieee80211_key_conf
*keyconf
=
472 info
->control
.hw_key
;
474 switch (keyconf
->cipher
) {
475 case WLAN_CIPHER_SUITE_WEP40
:
476 case WLAN_CIPHER_SUITE_WEP104
:
477 case WLAN_CIPHER_SUITE_TKIP
:
478 SET_TX_DESC_SEC_TYPE(pdesc
, 0x1);
480 case WLAN_CIPHER_SUITE_CCMP
:
481 SET_TX_DESC_SEC_TYPE(pdesc
, 0x3);
484 SET_TX_DESC_SEC_TYPE(pdesc
, 0x0);
490 SET_TX_DESC_PKT_ID(pdesc
, 0);
491 SET_TX_DESC_QUEUE_SEL(pdesc
, fw_qsel
);
493 SET_TX_DESC_DATA_RATE_FB_LIMIT(pdesc
, 0x1F);
494 SET_TX_DESC_RTS_RATE_FB_LIMIT(pdesc
, 0xF);
495 SET_TX_DESC_DISABLE_FB(pdesc
, 0);
496 SET_TX_DESC_USE_RATE(pdesc
, ptcb_desc
->use_driver_rate
? 1 : 0);
498 if (ieee80211_is_data_qos(fc
)) {
500 RT_TRACE(rtlpriv
, COMP_SEND
, DBG_TRACE
,
501 "Enable RDG function.\n");
502 SET_TX_DESC_RDG_ENABLE(pdesc
, 1);
503 SET_TX_DESC_HTC(pdesc
, 1);
508 SET_TX_DESC_FIRST_SEG(pdesc
, (firstseg
? 1 : 0));
509 SET_TX_DESC_LAST_SEG(pdesc
, (lastseg
? 1 : 0));
511 SET_TX_DESC_TX_BUFFER_SIZE(pdesc
, (u16
) skb
->len
);
513 SET_TX_DESC_TX_BUFFER_ADDRESS(pdesc
, mapping
);
515 if (rtlpriv
->dm
.useramask
) {
516 SET_TX_DESC_RATE_ID(pdesc
, ptcb_desc
->ratr_index
);
517 SET_TX_DESC_MACID(pdesc
, ptcb_desc
->mac_id
);
519 SET_TX_DESC_RATE_ID(pdesc
, 0xC + ptcb_desc
->ratr_index
);
520 SET_TX_DESC_MACID(pdesc
, ptcb_desc
->ratr_index
);
523 if ((!ieee80211_is_data_qos(fc
)) && ppsc
->fwctrl_lps
) {
524 SET_TX_DESC_HWSEQ_EN_8723(pdesc
, 1);
525 /* SET_TX_DESC_HWSEQ_EN(pdesc, 1); */
526 /* SET_TX_DESC_PKT_ID(pdesc, 8); */
528 if (!b_defaultadapter
)
529 SET_TX_DESC_HWSEQ_SEL_8723(pdesc
, 1);
530 /* SET_TX_DESC_QOS(pdesc, 1); */
533 SET_TX_DESC_MORE_FRAG(pdesc
, (lastseg
? 0 : 1));
535 if (is_multicast_ether_addr(ieee80211_get_DA(hdr
)) ||
536 is_broadcast_ether_addr(ieee80211_get_DA(hdr
))) {
537 SET_TX_DESC_BMC(pdesc
, 1);
540 RT_TRACE(rtlpriv
, COMP_SEND
, DBG_TRACE
, "\n");
543 void rtl8723e_tx_fill_cmddesc(struct ieee80211_hw
*hw
,
544 u8
*pdesc
, bool firstseg
,
545 bool lastseg
, struct sk_buff
*skb
)
547 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
548 struct rtl_pci
*rtlpci
= rtl_pcidev(rtl_pcipriv(hw
));
549 u8 fw_queue
= QSLT_BEACON
;
551 dma_addr_t mapping
= pci_map_single(rtlpci
->pdev
,
555 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)(skb
->data
);
556 __le16 fc
= hdr
->frame_control
;
558 if (pci_dma_mapping_error(rtlpci
->pdev
, mapping
)) {
559 RT_TRACE(rtlpriv
, COMP_SEND
, DBG_TRACE
,
560 "DMA mapping error");
563 CLEAR_PCI_TX_DESC_CONTENT(pdesc
, TX_DESC_SIZE
);
566 SET_TX_DESC_OFFSET(pdesc
, USB_HWDESC_HEADER_LEN
);
568 SET_TX_DESC_TX_RATE(pdesc
, DESC92C_RATE1M
);
570 SET_TX_DESC_SEQ(pdesc
, 0);
572 SET_TX_DESC_LINIP(pdesc
, 0);
574 SET_TX_DESC_QUEUE_SEL(pdesc
, fw_queue
);
576 SET_TX_DESC_FIRST_SEG(pdesc
, 1);
577 SET_TX_DESC_LAST_SEG(pdesc
, 1);
579 SET_TX_DESC_TX_BUFFER_SIZE(pdesc
, (u16
) (skb
->len
));
581 SET_TX_DESC_TX_BUFFER_ADDRESS(pdesc
, mapping
);
583 SET_TX_DESC_RATE_ID(pdesc
, 7);
584 SET_TX_DESC_MACID(pdesc
, 0);
586 SET_TX_DESC_OWN(pdesc
, 1);
588 SET_TX_DESC_PKT_SIZE((u8
*)pdesc
, (u16
)(skb
->len
));
590 SET_TX_DESC_FIRST_SEG(pdesc
, 1);
591 SET_TX_DESC_LAST_SEG(pdesc
, 1);
593 SET_TX_DESC_OFFSET(pdesc
, 0x20);
595 SET_TX_DESC_USE_RATE(pdesc
, 1);
597 if (!ieee80211_is_data_qos(fc
)) {
598 SET_TX_DESC_HWSEQ_EN_8723(pdesc
, 1);
599 /* SET_TX_DESC_HWSEQ_EN(pdesc, 1); */
600 /* SET_TX_DESC_PKT_ID(pdesc, 8); */
603 RT_PRINT_DATA(rtlpriv
, COMP_CMD
, DBG_LOUD
,
604 "H2C Tx Cmd Content\n",
605 pdesc
, TX_DESC_SIZE
);
608 void rtl8723e_set_desc(struct ieee80211_hw
*hw
, u8
*pdesc
,
609 bool istx
, u8 desc_name
, u8
*val
)
614 SET_TX_DESC_OWN(pdesc
, 1);
616 case HW_DESC_TX_NEXTDESC_ADDR
:
617 SET_TX_DESC_NEXT_DESC_ADDRESS(pdesc
, *(u32
*) val
);
620 RT_ASSERT(false, "ERR txdesc :%d not process\n",
627 SET_RX_DESC_OWN(pdesc
, 1);
629 case HW_DESC_RXBUFF_ADDR
:
630 SET_RX_DESC_BUFF_ADDR(pdesc
, *(u32
*) val
);
632 case HW_DESC_RXPKT_LEN
:
633 SET_RX_DESC_PKT_LEN(pdesc
, *(u32
*) val
);
636 SET_RX_DESC_EOR(pdesc
, 1);
639 RT_ASSERT(false, "ERR rxdesc :%d not process\n",
646 u32
rtl8723e_get_desc(u8
*pdesc
, bool istx
, u8 desc_name
)
653 ret
= GET_TX_DESC_OWN(pdesc
);
655 case HW_DESC_TXBUFF_ADDR
:
656 ret
= GET_TX_DESC_TX_BUFFER_ADDRESS(pdesc
);
659 RT_ASSERT(false, "ERR txdesc :%d not process\n",
666 ret
= GET_RX_DESC_OWN(pdesc
);
668 case HW_DESC_RXPKT_LEN
:
669 ret
= GET_RX_DESC_PKT_LEN(pdesc
);
671 case HW_DESC_RXBUFF_ADDR
:
672 ret
= GET_RX_DESC_BUFF_ADDR(pdesc
);
675 RT_ASSERT(false, "ERR rxdesc :%d not process\n",
683 bool rtl8723e_is_tx_desc_closed(struct ieee80211_hw
*hw
,
684 u8 hw_queue
, u16 index
)
686 struct rtl_pci
*rtlpci
= rtl_pcidev(rtl_pcipriv(hw
));
687 struct rtl8192_tx_ring
*ring
= &rtlpci
->tx_ring
[hw_queue
];
688 u8
*entry
= (u8
*)(&ring
->desc
[ring
->idx
]);
689 u8 own
= (u8
)rtl8723e_get_desc(entry
, true, HW_DESC_OWN
);
692 *beacon packet will only use the first
693 *descriptor defautly,and the own may not
694 *be cleared by the hardware
701 void rtl8723e_tx_polling(struct ieee80211_hw
*hw
, u8 hw_queue
)
703 struct rtl_priv
*rtlpriv
= rtl_priv(hw
);
704 if (hw_queue
== BEACON_QUEUE
) {
705 rtl_write_word(rtlpriv
, REG_PCIE_CTRL_REG
, BIT(4));
707 rtl_write_word(rtlpriv
, REG_PCIE_CTRL_REG
,
708 BIT(0) << (hw_queue
));
712 u32
rtl8723e_rx_command_packet(struct ieee80211_hw
*hw
,
713 const struct rtl_stats
*status
,