mirror of https://gitee.com/openkylin/linux.git
rsi: update tx command frame block/unblock data
TX command frame block/unblock data is modified to use common descriptor structure. Signed-off-by: Prameela Rani Garnepudi <prameela.j04cs@gmail.com> Signed-off-by: Amitkumar Karwar <amit.karwar@redpinesignals.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
bcb283d27f
commit
79e590d924
|
@ -1327,7 +1327,7 @@ static int rsi_eeprom_read(struct rsi_common *common)
|
||||||
*/
|
*/
|
||||||
int rsi_send_block_unblock_frame(struct rsi_common *common, bool block_event)
|
int rsi_send_block_unblock_frame(struct rsi_common *common, bool block_event)
|
||||||
{
|
{
|
||||||
struct rsi_mac_frame *mgmt_frame;
|
struct rsi_block_unblock_data *mgmt_frame;
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
|
|
||||||
rsi_dbg(MGMT_TX_ZONE, "%s: Sending block/unblock frame\n", __func__);
|
rsi_dbg(MGMT_TX_ZONE, "%s: Sending block/unblock frame\n", __func__);
|
||||||
|
@ -1340,23 +1340,25 @@ int rsi_send_block_unblock_frame(struct rsi_common *common, bool block_event)
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(skb->data, 0, FRAME_DESC_SZ);
|
memset(skb->data, 0, FRAME_DESC_SZ);
|
||||||
mgmt_frame = (struct rsi_mac_frame *)skb->data;
|
mgmt_frame = (struct rsi_block_unblock_data *)skb->data;
|
||||||
|
|
||||||
mgmt_frame->desc_word[0] = cpu_to_le16(RSI_WIFI_MGMT_Q << 12);
|
rsi_set_len_qno(&mgmt_frame->desc_dword0.len_qno, 0, RSI_WIFI_MGMT_Q);
|
||||||
mgmt_frame->desc_word[1] = cpu_to_le16(BLOCK_HW_QUEUE);
|
mgmt_frame->desc_dword0.frame_type = BLOCK_HW_QUEUE;
|
||||||
|
mgmt_frame->host_quiet_info = QUIET_INFO_VALID;
|
||||||
|
|
||||||
if (block_event) {
|
if (block_event) {
|
||||||
rsi_dbg(INFO_ZONE, "blocking the data qs\n");
|
rsi_dbg(INFO_ZONE, "blocking the data qs\n");
|
||||||
mgmt_frame->desc_word[4] = cpu_to_le16(0xf);
|
mgmt_frame->block_q_bitmap = cpu_to_le16(0xf);
|
||||||
|
mgmt_frame->block_q_bitmap |= cpu_to_le16(0xf << 4);
|
||||||
} else {
|
} else {
|
||||||
rsi_dbg(INFO_ZONE, "unblocking the data qs\n");
|
rsi_dbg(INFO_ZONE, "unblocking the data qs\n");
|
||||||
mgmt_frame->desc_word[5] = cpu_to_le16(0xf);
|
mgmt_frame->unblock_q_bitmap = cpu_to_le16(0xf);
|
||||||
|
mgmt_frame->unblock_q_bitmap |= cpu_to_le16(0xf << 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
skb_put(skb, FRAME_DESC_SZ);
|
skb_put(skb, FRAME_DESC_SZ);
|
||||||
|
|
||||||
return rsi_send_internal_mgmt_frame(common, skb);
|
return rsi_send_internal_mgmt_frame(common, skb);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -381,6 +381,19 @@ struct rsi_auto_rate {
|
||||||
__le16 supported_rates[40];
|
__le16 supported_rates[40];
|
||||||
} __packed;
|
} __packed;
|
||||||
|
|
||||||
|
#define QUIET_INFO_VALID BIT(0)
|
||||||
|
#define QUIET_ENABLE BIT(1)
|
||||||
|
struct rsi_block_unblock_data {
|
||||||
|
struct rsi_cmd_desc_dword0 desc_dword0;
|
||||||
|
u8 xtend_desc_size;
|
||||||
|
u8 host_quiet_info;
|
||||||
|
__le16 reserved;
|
||||||
|
__le16 block_q_bitmap;
|
||||||
|
__le16 unblock_q_bitmap;
|
||||||
|
__le16 token;
|
||||||
|
__le16 flush_q_bitmap;
|
||||||
|
} __packed;
|
||||||
|
|
||||||
struct qos_params {
|
struct qos_params {
|
||||||
__le16 cont_win_min_q;
|
__le16 cont_win_min_q;
|
||||||
__le16 cont_win_max_q;
|
__le16 cont_win_max_q;
|
||||||
|
|
Loading…
Reference in New Issue