Home
last modified time | relevance | path

Searched refs:sta_id (Results 1 – 50 of 50) sorted by relevance

/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/
Dsta.c37 static int iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id) in iwl_sta_ucode_activate() argument
41 if (sta_id >= IWLAGN_STATION_COUNT) { in iwl_sta_ucode_activate()
42 IWL_ERR(priv, "invalid sta_id %u\n", sta_id); in iwl_sta_ucode_activate()
45 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) in iwl_sta_ucode_activate()
48 sta_id, priv->stations[sta_id].sta.sta.addr); in iwl_sta_ucode_activate()
50 if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) { in iwl_sta_ucode_activate()
54 sta_id, priv->stations[sta_id].sta.sta.addr); in iwl_sta_ucode_activate()
56 priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE; in iwl_sta_ucode_activate()
58 sta_id, priv->stations[sta_id].sta.sta.addr); in iwl_sta_ucode_activate()
68 u8 sta_id = addsta->sta.sta_id; in iwl_process_add_sta_resp() local
[all …]
Dtx.c68 struct ieee80211_hdr *hdr, u8 sta_id) in iwlagn_tx_cmd_build_basic() argument
93 tx_cmd->sta_id = sta_id; in iwlagn_tx_cmd_build_basic()
260 int sta_id; in iwl_sta_id_or_broadcast() local
265 sta_id = iwl_sta_id(sta); in iwl_sta_id_or_broadcast()
271 WARN_ON(sta_id == IWL_INVALID_STATION); in iwl_sta_id_or_broadcast()
273 return sta_id; in iwl_sta_id_or_broadcast()
292 u8 sta_id, tid = IWL_MAX_TID_COUNT; in iwlagn_tx_skb() local
332 sta_id = ctx->bcast_sta_id; in iwlagn_tx_skb()
335 sta_id = iwl_sta_id_or_broadcast(ctx, sta); in iwlagn_tx_skb()
336 if (sta_id == IWL_INVALID_STATION) { in iwlagn_tx_skb()
[all …]
Dmac80211.c797 u8 sta_id; in iwlagn_mac_sta_add() local
801 sta_priv->sta_id = IWL_INVALID_STATION; in iwlagn_mac_sta_add()
808 is_ap, sta, &sta_id); in iwlagn_mac_sta_add()
816 sta_priv->sta_id = sta_id; in iwlagn_mac_sta_add()
838 iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr); in iwlagn_mac_sta_remove()
840 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr); in iwlagn_mac_sta_remove()
1550 static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id) in iwl_sta_modify_ps_wake() argument
1555 .sta.sta_id = sta_id, in iwl_sta_modify_ps_wake()
1568 int sta_id; in iwlagn_mac_sta_notify() local
1584 sta_id = iwl_sta_id(sta); in iwlagn_mac_sta_notify()
[all …]
Dagn.h326 int iwl_remove_station(struct iwl_priv *priv, const u8 sta_id,
328 void iwl_deactivate_station(struct iwl_priv *priv, const u8 sta_id,
349 return ((struct iwl_station_priv *)sta->drv_priv)->sta_id; in iwl_sta_id()
374 int iwl_sta_tx_modify_enable_tid(struct iwl_priv *priv, int sta_id, int tid);
379 void iwl_sta_modify_sleep_tx_count(struct iwl_priv *priv, int sta_id, int cnt);
Drs.c354 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate); in rs_program_fix_rate()
2258 tid_data = &priv->tid_data[lq_sta->lq.sta_id][tid]; in rs_rate_scale_perform()
2629 u8 sta_id = lq_sta->lq.sta_id; in rs_rate_scale_perform() local
2630 tid_data = &priv->tid_data[sta_id][tid]; in rs_rate_scale_perform()
2711 priv->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq; in rs_initialize_lq()
2803 void iwl_rs_rate_init(struct iwl_priv *priv, struct ieee80211_sta *sta, u8 sta_id) in iwl_rs_rate_init() argument
2819 lq_sta->lq.sta_id = sta_id; in iwl_rs_rate_init()
2829 sta_id); in iwl_rs_rate_init()
3143 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id); in rs_sta_dbgfs_scale_table_read()
Drs.h404 u8 sta_id);
Dcommands.h870 u8 sta_id; member
1273 u8 sta_id; member
1514 u8 sta_id; member
1810 u8 sta_id; member
Ddev.h215 u8 sta_id; member
Dscan.c758 scan->tx_cmd.sta_id = ctx->bcast_sta_id; in iwlagn_request_scan()
Dmain.c149 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id; in iwlagn_send_beacon_cmd()
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/
Dsta.c74 int sta_id; in iwl_mvm_find_free_sta_id() local
87 for (sta_id = 0; sta_id < IWL_MVM_STATION_COUNT; sta_id++) { in iwl_mvm_find_free_sta_id()
88 if (BIT(sta_id) & reserved_ids) in iwl_mvm_find_free_sta_id()
91 if (!rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id], in iwl_mvm_find_free_sta_id()
93 return sta_id; in iwl_mvm_find_free_sta_id()
104 .sta_id = mvm_sta->sta_id, in iwl_mvm_sta_send_to_fw()
265 int i, ret, sta_id; in iwl_mvm_add_sta() local
270 sta_id = iwl_mvm_find_free_sta_id(mvm, in iwl_mvm_add_sta()
273 sta_id = mvm_sta->sta_id; in iwl_mvm_add_sta()
275 if (sta_id == IWL_MVM_STATION_COUNT) in iwl_mvm_add_sta()
[all …]
Dtx.c78 struct ieee80211_tx_info *info, u8 sta_id) in iwl_mvm_set_tx_cmd() argument
157 tx_cmd->sta_id = sta_id; in iwl_mvm_set_tx_cmd()
284 struct ieee80211_sta *sta, u8 sta_id) in iwl_mvm_set_tx_params() argument
303 iwl_mvm_set_tx_cmd(mvm, skb, tx_cmd, info, sta_id); in iwl_mvm_set_tx_params()
321 u8 sta_id; in iwl_mvm_tx_skb_non_sta() local
351 sta_id = mvmvif->bcast_sta.sta_id; in iwl_mvm_tx_skb_non_sta()
353 sta_id = mvm->aux_sta.sta_id; in iwl_mvm_tx_skb_non_sta()
356 IWL_DEBUG_TX(mvm, "station Id %d, queue=%d\n", sta_id, info->hw_queue); in iwl_mvm_tx_skb_non_sta()
358 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, NULL, sta_id); in iwl_mvm_tx_skb_non_sta()
380 atomic_inc(&mvm->pending_frames[sta_id]); in iwl_mvm_tx_skb_non_sta()
[all …]
Dsf.c214 static int iwl_mvm_sf_config(struct iwl_mvm *mvm, u8 sta_id, in iwl_mvm_sf_config() argument
242 if (sta_id == IWL_MVM_STATION_COUNT) { in iwl_mvm_sf_config()
248 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]); in iwl_mvm_sf_config()
283 u8 sta_id = IWL_MVM_STATION_COUNT; in iwl_mvm_sf_update() local
319 sta_id = data.sta_vif_ap_sta_id; in iwl_mvm_sf_update()
328 sta_id = mvmvif->ap_sta_id; in iwl_mvm_sf_update()
339 return iwl_mvm_sf_config(mvm, sta_id, new_state); in iwl_mvm_sf_update()
Dtdls.c154 tdls_cfg_cmd.sta_info[cnt].sta_id = i; in iwl_mvm_tdls_config()
273 u32 sta_id = le32_to_cpu(notif->sta_id); in iwl_mvm_rx_tdls_notif() local
283 if (WARN_ON(sta_id >= IWL_MVM_STATION_COUNT)) in iwl_mvm_rx_tdls_notif()
286 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id], in iwl_mvm_rx_tdls_notif()
435 cmd.peer_sta_id = cpu_to_le32(mvmsta->sta_id); in iwl_mvm_tdls_config_channel_switch()
478 mvmsta->sta_id); in iwl_mvm_tdls_config_channel_switch()
497 mvm->tdls_cs.cur_sta_id = mvmsta->sta_id; in iwl_mvm_tdls_config_channel_switch()
531 if (mvm->tdls_cs.peer.sta_id == IWL_MVM_STATION_COUNT) in iwl_mvm_tdls_ch_switch_work()
535 mvm->fw_id_to_mac_id[mvm->tdls_cs.peer.sta_id], in iwl_mvm_tdls_ch_switch_work()
581 if (mvm->tdls_cs.peer.sta_id != IWL_MVM_STATION_COUNT) { in iwl_mvm_tdls_channel_switch()
[all …]
Dfw-api-sta.h300 u8 sta_id; member
328 u8 sta_id; member
360 u8 sta_id; member
381 __le32 sta_id; member
411 __le32 sta_id; member
Dfw-api-tx.h230 u8 sta_id; member
507 u8 sta_id; member
609 u8 sta_id; member
629 u8 sta_id; member
Dsta.h313 u32 sta_id; member
347 u32 sta_id; member
364 u8 sta_id);
Dmvm.h834 u8 sta_id; member
882 iwl_mvm_sta_from_staid_rcu(struct iwl_mvm *mvm, u8 sta_id) in iwl_mvm_sta_from_staid_rcu() argument
886 if (sta_id >= ARRAY_SIZE(mvm->fw_id_to_mac_id)) in iwl_mvm_sta_from_staid_rcu()
889 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]); in iwl_mvm_sta_from_staid_rcu()
899 iwl_mvm_sta_from_staid_protected(struct iwl_mvm *mvm, u8 sta_id) in iwl_mvm_sta_from_staid_protected() argument
903 if (sta_id >= ARRAY_SIZE(mvm->fw_id_to_mac_id)) in iwl_mvm_sta_from_staid_protected()
906 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id], in iwl_mvm_sta_from_staid_protected()
1012 struct ieee80211_tx_info *info, u8 sta_id);
1397 int fifo, int sta_id, int tid, in iwl_mvm_enable_agg_txq() argument
1403 .sta_id = sta_id, in iwl_mvm_enable_agg_txq()
Dmac-ctxt.c247 u8 sta_id; in iwl_mvm_get_used_hw_queues() local
272 for_each_set_bit(sta_id, mvm->sta_drained, IWL_MVM_STATION_COUNT) in iwl_mvm_get_used_hw_queues()
273 data.used_hw_queues |= mvm->tfd_drained[sta_id]; in iwl_mvm_get_used_hw_queues()
456 mvmvif->bcast_sta.sta_id = IWL_MVM_STATION_COUNT; in iwl_mvm_mac_ctxt_allocate_resources()
982 beacon_cmd.tx.sta_id = mvmvif->bcast_sta.sta_id; in iwl_mvm_mac_ctxt_send_beacon()
Dfw-api-rs.h372 u8 sta_id; member
Dcoex.c475 static int iwl_mvm_bt_coex_reduced_txp(struct iwl_mvm *mvm, u8 sta_id, in iwl_mvm_bt_coex_reduced_txp() argument
483 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id); in iwl_mvm_bt_coex_reduced_txp()
491 value = mvmsta->sta_id; in iwl_mvm_bt_coex_reduced_txp()
497 enable ? "en" : "dis", sta_id); in iwl_mvm_bt_coex_reduced_txp()
Dfw-api.h1670 __le32 sta_id; member
1682 u8 sta_id; member
1720 __le16 sta_id; member
Dfw-api-power.h295 __le32 sta_id; member
Dcoex_legacy.c771 static int iwl_mvm_bt_coex_reduced_txp(struct iwl_mvm *mvm, u8 sta_id, in iwl_mvm_bt_coex_reduced_txp() argument
785 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id); in iwl_mvm_bt_coex_reduced_txp()
801 bt_cmd->bt_reduced_tx_power = sta_id; in iwl_mvm_bt_coex_reduced_txp()
807 enable ? "en" : "dis", sta_id); in iwl_mvm_bt_coex_reduced_txp()
Dutils.c675 .sta_id = cfg->sta_id, in iwl_mvm_enable_txq()
733 if (WARN_ON(lq->sta_id == IWL_MVM_STATION_COUNT)) in iwl_mvm_send_lq_cmd()
Dscan.c643 tx_cmd[0].sta_id = mvm->aux_sta.sta_id; in iwl_mvm_unified_scan_fill_tx_cmd()
650 tx_cmd[1].sta_id = mvm->aux_sta.sta_id; in iwl_mvm_unified_scan_fill_tx_cmd()
1129 scan_config->bcast_sta_id = mvm->aux_sta.sta_id; in iwl_mvm_config_scan()
Ddebugfs.c98 int sta_id, drain, ret; in iwl_dbgfs_sta_drain_write() local
103 if (sscanf(buf, "%d %d", &sta_id, &drain) != 2) in iwl_dbgfs_sta_drain_write()
105 if (sta_id < 0 || sta_id >= IWL_MVM_STATION_COUNT) in iwl_dbgfs_sta_drain_write()
112 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id); in iwl_dbgfs_sta_drain_write()
Drs.c2821 lq_sta->lq.sta_id = sta_priv->sta_id; in iwl_mvm_rs_rate_init()
2831 sta_priv->sta_id); in iwl_mvm_rs_rate_init()
3103 WARN_ONCE(true, "viftype %d sta_id %d", viftype, sta->sta_id); in rs_bfer_priority()
3180 bfer_mvmsta->sta_id); in rs_set_lq_ss_params()
3194 bfer_mvmsta->sta_id); in rs_set_lq_ss_params()
3351 lq_sta->lq.sta_id, lq_sta->pers.dbg_fixed_rate); in rs_program_fix_rate()
3402 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id); in rs_sta_dbgfs_scale_table_read()
Dmac80211.c656 if (mvmsta->sta_id == IWL_MVM_STATION_COUNT || in iwl_mvm_defer_tx()
657 mvmsta->sta_id != mvm->d0i3_ap_sta_id) in iwl_mvm_defer_tx()
2545 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0) in iwl_mvm_mac_sta_notify()
2560 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT)) in iwl_mvm_mac_sta_notify()
2589 if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id])) in iwl_mvm_sta_pre_rcu_remove()
2590 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id], in iwl_mvm_sta_pre_rcu_remove()
3024 .sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id), in iwl_mvm_send_aux_roc_cmd()
3967 if (mvmvif->ap_sta_id != mvmsta->sta_id) in iwl_mvm_mac_sta_statistics()
Dfw-api-scan.h371 u8 sta_id; member
Dfw.c713 mvm->tdls_cs.peer.sta_id = IWL_MVM_STATION_COUNT; in iwl_mvm_up()
Dpower.c518 u8 ap_sta_id = le32_to_cpu(notif->sta_id); in iwl_mvm_power_uapsd_misbehaving_ap_notif()
/linux-4.1.27/drivers/net/wireless/iwlegacy/
D4965-mac.c943 scan->tx_cmd.sta_id = il->hw_params.bcast_id; in il4965_request_scan()
1064 il4965_free_tfds_in_queue(struct il_priv *il, int sta_id, int tid, int freed) in il4965_free_tfds_in_queue() argument
1068 if (il->stations[sta_id].tid[tid].tfds_in_queue >= freed) in il4965_free_tfds_in_queue()
1069 il->stations[sta_id].tid[tid].tfds_in_queue -= freed; in il4965_free_tfds_in_queue()
1072 il->stations[sta_id].tid[tid].tfds_in_queue, freed); in il4965_free_tfds_in_queue()
1073 il->stations[sta_id].tid[tid].tfds_in_queue = 0; in il4965_free_tfds_in_queue()
1523 tx_cmd->sta_id = std_id; in il4965_tx_cmd_build_basic()
1615 int sta_id) in il4965_tx_cmd_build_hwcrypto() argument
1678 u8 sta_id; in il4965_tx_skb() local
1706 sta_id = il->hw_params.bcast_id; in il4965_tx_skb()
[all …]
Dcommon.c1755 il_sta_ucode_activate(struct il_priv *il, u8 sta_id) in il_sta_ucode_activate() argument
1758 if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) in il_sta_ucode_activate()
1760 sta_id, il->stations[sta_id].sta.sta.addr); in il_sta_ucode_activate()
1762 if (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) { in il_sta_ucode_activate()
1764 " in uCode (according to driver)\n", sta_id, in il_sta_ucode_activate()
1765 il->stations[sta_id].sta.sta.addr); in il_sta_ucode_activate()
1767 il->stations[sta_id].used |= IL_STA_UCODE_ACTIVE; in il_sta_ucode_activate()
1768 D_ASSOC("Added STA id %u addr %pM to uCode\n", sta_id, in il_sta_ucode_activate()
1769 il->stations[sta_id].sta.sta.addr); in il_sta_ucode_activate()
1777 u8 sta_id = addsta->sta.sta_id; in il_process_add_sta_resp() local
[all …]
D3945-mac.c134 struct ieee80211_key_conf *keyconf, u8 sta_id) in il3945_set_ccmp_dynamic_key_info() argument
143 if (sta_id == il->hw_params.bcast_id) in il3945_set_ccmp_dynamic_key_info()
151 il->stations[sta_id].keyinfo.cipher = keyconf->cipher; in il3945_set_ccmp_dynamic_key_info()
152 il->stations[sta_id].keyinfo.keylen = keyconf->keylen; in il3945_set_ccmp_dynamic_key_info()
153 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen); in il3945_set_ccmp_dynamic_key_info()
155 memcpy(il->stations[sta_id].sta.key.key, keyconf->key, keyconf->keylen); in il3945_set_ccmp_dynamic_key_info()
157 if ((il->stations[sta_id].sta.key. in il3945_set_ccmp_dynamic_key_info()
159 il->stations[sta_id].sta.key.key_offset = in il3945_set_ccmp_dynamic_key_info()
164 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET, in il3945_set_ccmp_dynamic_key_info()
167 il->stations[sta_id].sta.key.key_flags = key_flags; in il3945_set_ccmp_dynamic_key_info()
[all …]
D4965.h46 void il4965_free_tfds_in_queue(struct il_priv *il, int sta_id, int tid,
88 int il4965_txq_check_empty(struct il_priv *il, int sta_id, u8 tid, int txq_id);
139 struct ieee80211_key_conf *key, u8 sta_id);
141 struct ieee80211_key_conf *key, u8 sta_id);
146 int il4965_sta_tx_modify_enable_tid(struct il_priv *il, int sta_id, int tid);
151 void il4965_sta_modify_sleep_tx_count(struct il_priv *il, int sta_id, int cnt);
D3945-rs.c334 il3945_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta, u8 sta_id) in il3945_rs_rate_init() argument
344 if (sta_id == il->hw_params.bcast_id) in il3945_rs_rate_init()
389 il->stations[sta_id].used &= ~IL_STA_UCODE_INPROGRESS; in il3945_rs_rate_init()
911 il3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id) in il3945_rate_scale_init() argument
924 sta = ieee80211_find_sta(il->vif, il->stations[sta_id].sta.sta.addr); in il3945_rate_scale_init()
D3945.c700 struct ieee80211_hdr *hdr, int sta_id) in il3945_hw_build_tx_cmd_rate() argument
739 "cck/ofdm mask: 0x%x/0x%x\n", sta_id, tx_cmd->rate, in il3945_hw_build_tx_cmd_rate()
745 il3945_sync_sta(struct il_priv *il, int sta_id, u16 tx_rate) in il3945_sync_sta() argument
750 if (sta_id == IL_INVALID_STATION) in il3945_sync_sta()
754 station = &il->stations[sta_id]; in il3945_sync_sta()
762 D_RATE("SCALE sync station %d to rate %d\n", sta_id, tx_rate); in il3945_sync_sta()
763 return sta_id; in il3945_sync_sta()
2275 u8 sta_id; in il3945_add_bssid_station() local
2281 ret = il_add_station_common(il, addr, 0, NULL, &sta_id); in il3945_add_bssid_station()
2288 *sta_id_r = sta_id; in il3945_add_bssid_station()
[all …]
Dcommands.h897 #define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid)) argument
924 u8 sta_id; member
1379 u8 sta_id; member
1468 u8 sta_id; member
1726 u8 sta_id; member
2060 u8 sta_id; member
Dcommon.h728 u8 sta_id; member
2141 int il_remove_station(struct il_priv *il, const u8 sta_id, const u8 * addr);
2178 return ((struct il_station_priv_common *)sta->drv_priv)->sta_id; in il_sta_id()
2195 int sta_id; in il_sta_id_or_broadcast() local
2200 sta_id = il_sta_id(sta); in il_sta_id_or_broadcast()
2206 WARN_ON(sta_id == IL_INVALID_STATION); in il_sta_id_or_broadcast()
2208 return sta_id; in il_sta_id_or_broadcast()
2887 void il3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id);
2891 u8 sta_id);
2893 u8 sta_id);
D4965-rs.c1782 tid_data = &il->stations[lq_sta->lq.sta_id].tid[tid]; in il4965_rs_rate_scale_perform()
2113 &il->stations[lq_sta->lq.sta_id].tid[tid]; in il4965_rs_rate_scale_perform()
2194 il->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq; in il4965_rs_initialize_lq()
2290 il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta, u8 sta_id) in il4965_rs_rate_init() argument
2304 lq_sta->lq.sta_id = sta_id; in il4965_rs_rate_init()
2319 sta_id); in il4965_rs_rate_init()
2576 D_RATE("sta_id %d rate 0x%X\n", lq_sta->lq.sta_id, in il4965_rs_sta_dbgfs_scale_table_write()
2606 desc += sprintf(buff + desc, "sta_id %d\n", lq_sta->lq.sta_id); in il4965_rs_sta_dbgfs_scale_table_read()
D3945.h236 struct ieee80211_hdr *hdr, int sta_id);
/linux-4.1.27/drivers/net/wireless/orinoco/
Dhw.c76 struct comp_id nic_id, sta_id; in determine_fw_capabilities() local
104 err = HERMES_READ_RECORD(hw, USER_BAP, HERMES_RID_STAID, &sta_id); in determine_fw_capabilities()
111 le16_to_cpus(&sta_id.id); in determine_fw_capabilities()
112 le16_to_cpus(&sta_id.variant); in determine_fw_capabilities()
113 le16_to_cpus(&sta_id.major); in determine_fw_capabilities()
114 le16_to_cpus(&sta_id.minor); in determine_fw_capabilities()
116 sta_id.id, sta_id.variant, sta_id.major, sta_id.minor); in determine_fw_capabilities()
118 switch (sta_id.id) { in determine_fw_capabilities()
153 sta_id.major, sta_id.minor); in determine_fw_capabilities()
155 firmver = ((unsigned long)sta_id.major << 16) | sta_id.minor; in determine_fw_capabilities()
[all …]
/linux-4.1.27/drivers/net/wireless/iwlwifi/
Diwl-trans.h413 s8 sta_id; member
863 int fifo, int sta_id, int tid, in iwl_trans_txq_enable() argument
869 .sta_id = sta_id, in iwl_trans_txq_enable()
872 .aggregate = sta_id >= 0, in iwl_trans_txq_enable()
884 .sta_id = -1, in iwl_trans_ac_txq_enable()
/linux-4.1.27/drivers/net/wireless/iwlwifi/pcie/
Dtx.c214 u8 sta_id = 0; in iwl_pcie_txq_update_byte_cnt_tbl() local
224 sta_id = tx_cmd->sta_id; in iwl_pcie_txq_update_byte_cnt_tbl()
242 bc_ent = cpu_to_le16(len | (sta_id << 12)); in iwl_pcie_txq_update_byte_cnt_tbl()
259 u8 sta_id = 0; in iwl_pcie_txq_inval_byte_cnt_tbl() local
267 sta_id = tx_cmd->sta_id; in iwl_pcie_txq_inval_byte_cnt_tbl()
269 bc_ent = cpu_to_le16(1 | (sta_id << 12)); in iwl_pcie_txq_inval_byte_cnt_tbl()
1166 #define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid)) argument
1197 u16 ra_tid = BUILD_RAxTID(cfg->sta_id, cfg->tid); in iwl_trans_pcie_txq_enable()
/linux-4.1.27/drivers/net/wireless/ath/wcn36xx/
Dhal.h1461 u8 sta_id; member
2181 u32 sta_id; member
2841 u16 sta_id; member
2983 u16 sta_id; member
3021 u8 sta_id; member
3031 u8 sta_id; member
3360 u32 sta_id; member
3471 u8 sta_id; member
3599 u8 sta_id; member
Dsmd.c2036 if (sta && (tmp->sta->sta_index == rsp->sta_id)) { in wcn36xx_smd_delete_sta_context_ind()
2043 rsp->sta_id); in wcn36xx_smd_delete_sta_context_ind()
2051 rsp->sta_id); in wcn36xx_smd_delete_sta_context_ind()
/linux-4.1.27/drivers/net/wireless/rsi/
Drsi_main.h97 s8 sta_id; member
Drsi_91x_pkt.c99 (tx_params->sta_id << 8)); in rsi_send_data_pkt()
Drsi_91x_core.c358 tx_params->sta_id = 0; in rsi_core_xmit()