Home
last modified time | relevance | path

Searched refs:tx_resp (Results 1 – 6 of 6) sorted by relevance

/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/dvm/
Dtx.c934 static inline u32 iwlagn_get_scd_ssn(struct iwlagn_tx_resp *tx_resp) in iwlagn_get_scd_ssn() argument
936 return le32_to_cpup((__le32 *)&tx_resp->status + in iwlagn_get_scd_ssn()
937 tx_resp->frame_count) & IEEE80211_MAX_SN; in iwlagn_get_scd_ssn()
941 struct iwlagn_tx_resp *tx_resp) in iwl_rx_reply_tx_agg() argument
943 struct agg_tx_status *frame_status = &tx_resp->status; in iwl_rx_reply_tx_agg()
944 int tid = (tx_resp->ra_tid & IWLAGN_TX_RES_TID_MSK) >> in iwl_rx_reply_tx_agg()
946 int sta_id = (tx_resp->ra_tid & IWLAGN_TX_RES_RA_MSK) >> in iwl_rx_reply_tx_agg()
949 u32 status = le16_to_cpu(tx_resp->status.status); in iwl_rx_reply_tx_agg()
958 agg->rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags); in iwl_rx_reply_tx_agg()
959 agg->wait_for_ba = (tx_resp->frame_count > 1); in iwl_rx_reply_tx_agg()
[all …]
/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/mvm/
Dtx.c1368 struct iwl_mvm_tx_resp *tx_resp) in iwl_mvm_get_scd_ssn() argument
1370 return le32_to_cpup((__le32 *)iwl_mvm_get_agg_status(mvm, tx_resp) + in iwl_mvm_get_scd_ssn()
1371 tx_resp->frame_count) & 0xfff; in iwl_mvm_get_scd_ssn()
1381 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data; in iwl_mvm_rx_tx_cmd_single() local
1382 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid); in iwl_mvm_rx_tx_cmd_single()
1383 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid); in iwl_mvm_rx_tx_cmd_single()
1385 iwl_mvm_get_agg_status(mvm, tx_resp); in iwl_mvm_rx_tx_cmd_single()
1387 u16 ssn = iwl_mvm_get_scd_ssn(mvm, tx_resp); in iwl_mvm_rx_tx_cmd_single()
1398 txq_id = le16_to_cpu(tx_resp->tx_queue); in iwl_mvm_rx_tx_cmd_single()
1400 seq_ctl = le16_to_cpu(tx_resp->seq_ctl); in iwl_mvm_rx_tx_cmd_single()
[all …]
Dmvm.h1376 iwl_mvm_get_agg_status(struct iwl_mvm *mvm, void *tx_resp) in iwl_mvm_get_agg_status() argument
1379 return &((struct iwl_mvm_tx_resp *)tx_resp)->status; in iwl_mvm_get_agg_status()
1381 return ((struct iwl_mvm_tx_resp_v3 *)tx_resp)->status; in iwl_mvm_get_agg_status()
/Linux-v4.19/drivers/net/wireless/intel/iwlegacy/
D4965-mac.c2637 il4965_get_scd_ssn(struct il4965_tx_resp *tx_resp) in il4965_get_scd_ssn() argument
2639 return le32_to_cpup(&tx_resp->u.status + in il4965_get_scd_ssn()
2640 tx_resp->frame_count) & IEEE80211_MAX_SN; in il4965_get_scd_ssn()
2664 struct il4965_tx_resp *tx_resp, int txq_id, in il4965_tx_status_reply_tx() argument
2668 struct agg_tx_status *frame_status = tx_resp->u.agg_status; in il4965_tx_status_reply_tx()
2671 u32 rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags); in il4965_tx_status_reply_tx()
2677 agg->frame_count = tx_resp->frame_count; in il4965_tx_status_reply_tx()
2692 info->status.rates[0].count = tx_resp->failure_frame + 1; in il4965_tx_status_reply_tx()
2698 tx_resp->failure_frame); in il4965_tx_status_reply_tx()
2785 struct il4965_tx_resp *tx_resp = (void *)&pkt->u.raw[0]; in il4965_hdl_tx() local
[all …]
D3945.c321 struct il3945_tx_resp *tx_resp = (void *)&pkt->u.raw[0]; in il3945_hdl_tx() local
322 u32 status = le32_to_cpu(tx_resp->status); in il3945_hdl_tx()
351 rate_idx = il3945_hwrate_to_plcp_idx(tx_resp->rate); in il3945_hdl_tx()
355 fail = tx_resp->failure_frame; in il3945_hdl_tx()
366 il3945_get_tx_fail_reason(status), status, tx_resp->rate, in il3945_hdl_tx()
367 tx_resp->failure_frame); in il3945_hdl_tx()
Dcommands.h3350 struct il3945_tx_resp tx_resp; member