Home
last modified time | relevance | path

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

/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dtx.c1687 struct iwl_mvm_tx_resp *tx_resp) in iwl_mvm_get_scd_ssn() argument
1689 u32 val = le32_to_cpup((__le32 *)iwl_mvm_get_agg_status(mvm, tx_resp) + in iwl_mvm_get_scd_ssn()
1690 tx_resp->frame_count); in iwl_mvm_get_scd_ssn()
1704 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data; in iwl_mvm_rx_tx_cmd_single() local
1705 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid); in iwl_mvm_rx_tx_cmd_single()
1706 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid); in iwl_mvm_rx_tx_cmd_single()
1708 iwl_mvm_get_agg_status(mvm, tx_resp); in iwl_mvm_rx_tx_cmd_single()
1710 u16 ssn = iwl_mvm_get_scd_ssn(mvm, tx_resp); in iwl_mvm_rx_tx_cmd_single()
1720 txq_id = le16_to_cpu(tx_resp->tx_queue); in iwl_mvm_rx_tx_cmd_single()
1722 seq_ctl = le16_to_cpu(tx_resp->seq_ctl); in iwl_mvm_rx_tx_cmd_single()
[all …]
H A Dmvm.h1705 iwl_mvm_get_agg_status(struct iwl_mvm *mvm, void *tx_resp)
1708 return &((struct iwl_mvm_tx_resp *)tx_resp)->status;
1710 return ((struct iwl_mvm_tx_resp_v3 *)tx_resp)->status;
1533 iwl_mvm_get_agg_status(struct iwl_mvm * mvm,void * tx_resp) iwl_mvm_get_agg_status() argument
/freebsd/sys/dev/iwm/
H A Dif_iwm.c3443 struct iwm_tx_resp *tx_resp = (void *)pkt->data; in iwm_rx_tx_cmd_single() local
3447 int status = le16toh(tx_resp->status.status) & IWM_TX_STATUS_MSK; in iwm_rx_tx_cmd_single()
3452 KASSERT(tx_resp->frame_count == 1, ("too many frames")); in iwm_rx_tx_cmd_single()
3457 (int) le16toh(tx_resp->status.status), in iwm_rx_tx_cmd_single()
3458 (int) le16toh(tx_resp->status.sequence), in iwm_rx_tx_cmd_single()
3459 tx_resp->frame_count, in iwm_rx_tx_cmd_single()
3460 tx_resp->bt_kill_count, in iwm_rx_tx_cmd_single()
3461 tx_resp->failure_rts, in iwm_rx_tx_cmd_single()
3462 tx_resp->failure_frame, in iwm_rx_tx_cmd_single()
3463 le32toh(tx_resp->initial_rate), in iwm_rx_tx_cmd_single()
[all …]
H A Dif_iwmreg.h5298 * @tx_resp: the Tx response from the fw (agg or non-agg)
5309 static inline uint32_t iwm_get_scd_ssn(struct iwm_tx_resp *tx_resp) in iwm_get_scd_ssn()
5311 return le32_to_cpup((uint32_t *)&tx_resp->status +
5312 tx_resp->frame_count) & 0xfff;
5305 iwm_get_scd_ssn(struct iwm_tx_resp * tx_resp) iwm_get_scd_ssn() argument