mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 15:13:55 +08:00
rt2x00: Set MIMO PS flag in tx descriptor for STAs in dynamic SMPS mode
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
7e613e1666
commit
84804cdca0
@ -437,7 +437,8 @@ void rt2800_write_txwi(__le32 *txwi, struct txentry_desc *txdesc)
|
|||||||
rt2x00_desc_read(txwi, 0, &word);
|
rt2x00_desc_read(txwi, 0, &word);
|
||||||
rt2x00_set_field32(&word, TXWI_W0_FRAG,
|
rt2x00_set_field32(&word, TXWI_W0_FRAG,
|
||||||
test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
|
test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
|
||||||
rt2x00_set_field32(&word, TXWI_W0_MIMO_PS, 0);
|
rt2x00_set_field32(&word, TXWI_W0_MIMO_PS,
|
||||||
|
test_bit(ENTRY_TXD_HT_MIMO_PS, &txdesc->flags));
|
||||||
rt2x00_set_field32(&word, TXWI_W0_CF_ACK, 0);
|
rt2x00_set_field32(&word, TXWI_W0_CF_ACK, 0);
|
||||||
rt2x00_set_field32(&word, TXWI_W0_TS,
|
rt2x00_set_field32(&word, TXWI_W0_TS,
|
||||||
test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
|
test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
|
||||||
|
@ -54,6 +54,16 @@ void rt2x00ht_create_tx_descriptor(struct queue_entry *entry,
|
|||||||
*/
|
*/
|
||||||
if (txrate->flags & IEEE80211_TX_RC_MCS) {
|
if (txrate->flags & IEEE80211_TX_RC_MCS) {
|
||||||
txdesc->mcs = txrate->idx;
|
txdesc->mcs = txrate->idx;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* MIMO PS should be set to 1 for STA's using dynamic SM PS
|
||||||
|
* when using more then one tx stream (>MCS7).
|
||||||
|
*/
|
||||||
|
if (tx_info->control.sta && txdesc->mcs > 7 &&
|
||||||
|
(tx_info->control.sta->ht_cap.cap &
|
||||||
|
(WLAN_HT_CAP_SM_PS_DYNAMIC <<
|
||||||
|
IEEE80211_HT_CAP_SM_PS_SHIFT)))
|
||||||
|
__set_bit(ENTRY_TXD_HT_MIMO_PS, &txdesc->flags);
|
||||||
} else {
|
} else {
|
||||||
txdesc->mcs = rt2x00_get_rate_mcs(hwrate->mcs);
|
txdesc->mcs = rt2x00_get_rate_mcs(hwrate->mcs);
|
||||||
if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
|
if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
|
||||||
|
@ -268,6 +268,7 @@ struct txdone_entry_desc {
|
|||||||
* @ENTRY_TXD_HT_AMPDU: This frame is part of an AMPDU.
|
* @ENTRY_TXD_HT_AMPDU: This frame is part of an AMPDU.
|
||||||
* @ENTRY_TXD_HT_BW_40: Use 40MHz Bandwidth.
|
* @ENTRY_TXD_HT_BW_40: Use 40MHz Bandwidth.
|
||||||
* @ENTRY_TXD_HT_SHORT_GI: Use short GI.
|
* @ENTRY_TXD_HT_SHORT_GI: Use short GI.
|
||||||
|
* @ENTRY_TXD_HT_MIMO_PS: The receiving STA is in dynamic SM PS mode.
|
||||||
*/
|
*/
|
||||||
enum txentry_desc_flags {
|
enum txentry_desc_flags {
|
||||||
ENTRY_TXD_RTS_FRAME,
|
ENTRY_TXD_RTS_FRAME,
|
||||||
@ -286,6 +287,7 @@ enum txentry_desc_flags {
|
|||||||
ENTRY_TXD_HT_AMPDU,
|
ENTRY_TXD_HT_AMPDU,
|
||||||
ENTRY_TXD_HT_BW_40,
|
ENTRY_TXD_HT_BW_40,
|
||||||
ENTRY_TXD_HT_SHORT_GI,
|
ENTRY_TXD_HT_SHORT_GI,
|
||||||
|
ENTRY_TXD_HT_MIMO_PS,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user