Home
last modified time | relevance | path

Searched refs:wlvif (Results 1 – 25 of 29) sorted by relevance

12

/drivers/net/wireless/ti/wlcore/
Devent.c34 struct wl12xx_vif *wlvif; in wlcore_event_rssi_trigger() local
42 wl12xx_for_each_wlvif_sta(wl, wlvif) { in wlcore_event_rssi_trigger()
43 if (metric <= wlvif->rssi_thold) in wlcore_event_rssi_trigger()
48 vif = wl12xx_wlvif_to_vif(wlvif); in wlcore_event_rssi_trigger()
49 if (event != wlvif->last_rssi_event) in wlcore_event_rssi_trigger()
51 wlvif->last_rssi_event = event; in wlcore_event_rssi_trigger()
56 static void wl1271_stop_ba_event(struct wl1271 *wl, struct wl12xx_vif *wlvif) in wl1271_stop_ba_event() argument
58 struct ieee80211_vif *vif = wl12xx_wlvif_to_vif(wlvif); in wl1271_stop_ba_event()
60 if (wlvif->bss_type != BSS_TYPE_AP_BSS) { in wl1271_stop_ba_event()
61 u8 hlid = wlvif->sta.hlid; in wl1271_stop_ba_event()
[all …]
Dcmd.c311 int wl12xx_allocate_link(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 *hlid) in wl12xx_allocate_link() argument
323 __set_bit(link, wlvif->links_map); in wl12xx_allocate_link()
329 wl->links[link].wlvif = wlvif; in wl12xx_allocate_link()
335 if (wlvif->bss_type != BSS_TYPE_AP_BSS) in wl12xx_allocate_link()
336 wl->links[link].total_freed_pkts = wlvif->total_freed_pkts; in wl12xx_allocate_link()
344 void wl12xx_free_link(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 *hlid) in wl12xx_free_link() argument
354 __clear_bit(*hlid, wlvif->links_map); in wl12xx_free_link()
367 wl->links[*hlid].wlvif = NULL; in wl12xx_free_link()
369 if (wlvif->bss_type == BSS_TYPE_STA_BSS || in wl12xx_free_link()
370 (wlvif->bss_type == BSS_TYPE_AP_BSS && in wl12xx_free_link()
[all …]
Dinit.c159 struct wl12xx_vif *wlvif) in wl1271_ap_init_deauth_template() argument
174 rate = wl1271_tx_min_rate_get(wl, wlvif->basic_rate_set); in wl1271_ap_init_deauth_template()
175 ret = wl1271_cmd_template_set(wl, wlvif->role_id, in wl1271_ap_init_deauth_template()
187 struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); in wl1271_ap_init_null_template() local
207 rate = wl1271_tx_min_rate_get(wl, wlvif->basic_rate_set); in wl1271_ap_init_null_template()
208 ret = wl1271_cmd_template_set(wl, wlvif->role_id, in wl1271_ap_init_null_template()
220 struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); in wl1271_ap_init_qos_null_template() local
240 rate = wl1271_tx_min_rate_get(wl, wlvif->basic_rate_set); in wl1271_ap_init_qos_null_template()
241 ret = wl1271_cmd_template_set(wl, wlvif->role_id, in wl1271_ap_init_qos_null_template()
262 struct wl12xx_vif *wlvif) in wl12xx_init_phy_vif_config() argument
[all …]
Dmain.c66 static void wl1271_free_ap_keys(struct wl1271 *wl, struct wl12xx_vif *wlvif);
69 struct wl12xx_vif *wlvif) in wl12xx_set_authorized() argument
73 if (WARN_ON(wlvif->bss_type != BSS_TYPE_STA_BSS)) in wl12xx_set_authorized()
76 if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) in wl12xx_set_authorized()
79 if (test_and_set_bit(WLVIF_FLAG_STA_STATE_SENT, &wlvif->flags)) in wl12xx_set_authorized()
82 ret = wl12xx_cmd_set_peer_state(wl, wlvif, wlvif->sta.hlid); in wl12xx_set_authorized()
114 static int wl1271_set_rx_streaming(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl1271_set_rx_streaming() argument
120 ret = wl1271_acx_ps_rx_streaming(wl, wlvif, enable); in wl1271_set_rx_streaming()
125 set_bit(WLVIF_FLAG_RX_STREAMING_STARTED, &wlvif->flags); in wl1271_set_rx_streaming()
127 clear_bit(WLVIF_FLAG_RX_STREAMING_STARTED, &wlvif->flags); in wl1271_set_rx_streaming()
[all …]
Dtx.c44 struct wl12xx_vif *wlvif, u8 id) in wl1271_set_default_wep_key() argument
47 bool is_ap = (wlvif->bss_type == BSS_TYPE_AP_BSS); in wl1271_set_default_wep_key()
51 wlvif->ap.bcast_hlid); in wl1271_set_default_wep_key()
53 ret = wl12xx_cmd_set_default_wep_key(wl, id, wlvif->sta.hlid); in wl1271_set_default_wep_key()
105 struct wl12xx_vif *wlvif, in wl1271_tx_regulate_link() argument
111 if (WARN_ON(!test_bit(hlid, wlvif->links_map))) in wl1271_tx_regulate_link()
129 wl12xx_ps_link_start(wl, wlvif, hlid, true); in wl1271_tx_regulate_link()
138 static u8 wl12xx_tx_get_hlid_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl12xx_tx_get_hlid_ap() argument
149 if (!test_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags)) in wl12xx_tx_get_hlid_ap()
154 return wlvif->ap.bcast_hlid; in wl12xx_tx_get_hlid_ap()
[all …]
Dps.c38 struct wl12xx_vif *wlvif; in wl1271_elp_work() local
58 wl12xx_for_each_wlvif(wl, wlvif) { in wl1271_elp_work()
59 if (wlvif->bss_type == BSS_TYPE_AP_BSS) in wl1271_elp_work()
62 if (!test_bit(WLVIF_FLAG_IN_PS, &wlvif->flags) && in wl1271_elp_work()
63 test_bit(WLVIF_FLAG_IN_USE, &wlvif->flags)) in wl1271_elp_work()
83 struct wl12xx_vif *wlvif; in wl1271_ps_elp_sleep() local
93 wl12xx_for_each_wlvif(wl, wlvif) { in wl1271_ps_elp_sleep()
94 if (wlvif->bss_type == BSS_TYPE_AP_BSS) in wl1271_ps_elp_sleep()
97 if (!test_bit(WLVIF_FLAG_IN_PS, &wlvif->flags) && in wl1271_ps_elp_sleep()
98 test_bit(WLVIF_FLAG_IN_USE, &wlvif->flags)) in wl1271_ps_elp_sleep()
[all …]
Dacx.c37 int wl1271_acx_wake_up_conditions(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl1271_acx_wake_up_conditions() argument
52 wake_up->role_id = wlvif->role_id; in wl1271_acx_wake_up_conditions()
97 int wl1271_acx_tx_power(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl1271_acx_tx_power() argument
114 acx->role_id = wlvif->role_id; in wl1271_acx_tx_power()
128 int wl1271_acx_feature_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif) in wl1271_acx_feature_cfg() argument
142 feature->role_id = wlvif->role_id; in wl1271_acx_feature_cfg()
198 int wl1271_acx_slot(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl1271_acx_slot() argument
212 slot->role_id = wlvif->role_id; in wl1271_acx_slot()
227 int wl1271_acx_group_address_tbl(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl1271_acx_group_address_tbl() argument
242 acx->role_id = wlvif->role_id; in wl1271_acx_group_address_tbl()
[all …]
Dcmd.h39 int wl12xx_cmd_role_start_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif);
40 int wl12xx_cmd_role_stop_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif);
41 int wl12xx_cmd_role_start_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif);
42 int wl12xx_cmd_role_stop_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif);
43 int wl12xx_cmd_role_start_ibss(struct wl1271 *wl, struct wl12xx_vif *wlvif);
44 int wl12xx_start_dev(struct wl1271 *wl, struct wl12xx_vif *wlvif,
46 int wl12xx_stop_dev(struct wl1271 *wl, struct wl12xx_vif *wlvif);
53 int wl1271_cmd_ps_mode(struct wl1271 *wl, struct wl12xx_vif *wlvif,
60 int wl12xx_cmd_build_null_data(struct wl1271 *wl, struct wl12xx_vif *wlvif);
61 int wl1271_cmd_build_ps_poll(struct wl1271 *wl, struct wl12xx_vif *wlvif,
[all …]
Dwlcore_i.h276 struct wl12xx_vif *wlvif; member
485 struct ieee80211_vif *wl12xx_wlvif_to_vif(struct wl12xx_vif *wlvif) in wl12xx_wlvif_to_vif() argument
487 return container_of((void *)wlvif, struct ieee80211_vif, drv_priv); in wl12xx_wlvif_to_vif()
490 #define wl12xx_for_each_wlvif(wl, wlvif) \ argument
491 list_for_each_entry(wlvif, &wl->wlvif_list, list)
493 #define wl12xx_for_each_wlvif_continue(wl, wlvif) \ argument
494 list_for_each_entry_continue(wlvif, &wl->wlvif_list, list)
496 #define wl12xx_for_each_wlvif_bss_type(wl, wlvif, _bss_type) \ argument
497 wl12xx_for_each_wlvif(wl, wlvif) \
498 if (wlvif->bss_type == _bss_type)
[all …]
Dacx.h1042 struct wl12xx_vif *wlvif,
1045 int wl1271_acx_tx_power(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1047 int wl1271_acx_feature_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif);
1051 int wl1271_acx_slot(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1053 int wl1271_acx_group_address_tbl(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1056 struct wl12xx_vif *wlvif);
1057 int wl1271_acx_rts_threshold(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1060 int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1063 struct wl12xx_vif *wlvif);
1064 int wl1271_acx_conn_monit_params(struct wl1271 *wl, struct wl12xx_vif *wlvif,
[all …]
Dtx.h211 int wlcore_tx_get_mac80211_queue(struct wl12xx_vif *wlvif, int queue) in wlcore_tx_get_mac80211_queue() argument
213 int mac_queue = wlvif->hw_queue_base; in wlcore_tx_get_mac80211_queue()
242 void wl12xx_tx_reset_wlvif(struct wl1271 *wl, struct wl12xx_vif *wlvif);
249 u8 wl12xx_tx_get_hlid(struct wl1271 *wl, struct wl12xx_vif *wlvif,
258 void wlcore_stop_queue_locked(struct wl1271 *wl, struct wl12xx_vif *wlvif,
260 void wlcore_stop_queue(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 queue,
262 void wlcore_wake_queue(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 queue,
269 struct wl12xx_vif *wlvif, u8 queue,
273 struct wl12xx_vif *wlvif,
276 bool wlcore_is_queue_stopped_locked(struct wl1271 *wl, struct wl12xx_vif *wlvif,
[all …]
Dhw_ops.h101 wlcore_hw_init_vif(struct wl1271 *wl, struct wl12xx_vif *wlvif) in wlcore_hw_init_vif() argument
104 return wl->ops->init_vif(wl, wlvif); in wlcore_hw_init_vif()
110 wlcore_hw_sta_get_ap_rate_mask(struct wl1271 *wl, struct wl12xx_vif *wlvif) in wlcore_hw_sta_get_ap_rate_mask() argument
115 return wl->ops->sta_get_ap_rate_mask(wl, wlvif); in wlcore_hw_sta_get_ap_rate_mask()
148 struct wl12xx_vif *wlvif) in wlcore_hw_ap_get_mimo_wide_rate_mask() argument
151 return wl->ops->ap_get_mimo_wide_rate_mask(wl, wlvif); in wlcore_hw_ap_get_mimo_wide_rate_mask()
205 wlcore_hw_sta_rc_update(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wlcore_hw_sta_rc_update() argument
209 wl->ops->sta_rc_update(wl, wlvif, sta, changed); in wlcore_hw_sta_rc_update()
Ddebugfs.c273 struct wl12xx_vif *wlvif; in dynamic_ps_timeout_write() local
303 wl12xx_for_each_wlvif_sta(wl, wlvif) { in dynamic_ps_timeout_write()
304 if (test_bit(WLVIF_FLAG_IN_PS, &wlvif->flags)) in dynamic_ps_timeout_write()
305 wl1271_ps_set_mode(wl, wlvif, STATION_AUTO_PS_MODE); in dynamic_ps_timeout_write()
337 struct wl12xx_vif *wlvif; in forced_ps_write() local
372 wl12xx_for_each_wlvif_sta(wl, wlvif) { in forced_ps_write()
373 if (test_bit(WLVIF_FLAG_IN_PS, &wlvif->flags)) in forced_ps_write()
374 wl1271_ps_set_mode(wl, wlvif, ps_mode); in forced_ps_write()
520 struct wl12xx_vif *wlvif; in vifs_state_read() local
534 #x " = " fmt "\n", wlvif->x)) in vifs_state_read()
[all …]
Dscan.c38 struct wl12xx_vif *wlvif; in wl1271_scan_complete_work() local
54 wlvif = wl->scan_wlvif; in wl1271_scan_complete_work()
71 if (test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) { in wl1271_scan_complete_work()
73 wl1271_cmd_build_ap_probe_req(wl, wlvif, wlvif->probereq); in wl1271_scan_complete_work()
323 struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); in wlcore_scan() local
343 wl->scan_wlvif = wlvif; in wlcore_scan()
352 wl->ops->scan_start(wl, wlvif, req); in wlcore_scan()
359 struct wl12xx_vif *wlvif, in wlcore_scan_sched_scan_ssid_list() argument
388 cmd->role_id = wlvif->role_id; in wlcore_scan_sched_scan_ssid_list()
Dwlcore.h75 int (*init_vif)(struct wl1271 *wl, struct wl12xx_vif *wlvif);
77 struct wl12xx_vif *wlvif);
87 struct wl12xx_vif *wlvif);
91 int (*scan_start)(struct wl1271 *wl, struct wl12xx_vif *wlvif,
93 int (*scan_stop)(struct wl1271 *wl, struct wl12xx_vif *wlvif);
94 int (*sched_scan_start)(struct wl1271 *wl, struct wl12xx_vif *wlvif,
97 void (*sched_scan_stop)(struct wl1271 *wl, struct wl12xx_vif *wlvif);
104 struct wl12xx_vif *wlvif,
107 void (*sta_rc_update)(struct wl1271 *wl, struct wl12xx_vif *wlvif,
Dps.h30 int wl1271_ps_set_mode(struct wl1271 *wl, struct wl12xx_vif *wlvif,
35 void wl12xx_ps_link_start(struct wl1271 *wl, struct wl12xx_vif *wlvif,
37 void wl12xx_ps_link_end(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 hlid);
Dscan.h35 void wl1271_scan_stm(struct wl1271 *wl, struct wl12xx_vif *wlvif);
38 struct wl12xx_vif *wlvif,
41 int wl1271_scan_sched_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif);
169 struct wl12xx_vif *wlvif,
/drivers/net/wireless/ti/wl12xx/
Dscan.c94 static int wl1271_scan_send(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl1271_scan_send() argument
98 struct ieee80211_vif *vif = wl12xx_wlvif_to_vif(wlvif); in wl1271_scan_send()
121 cmd->params.role_id = wlvif->role_id; in wl1271_scan_send()
155 ret = wl12xx_cmd_build_probe_req(wl, wlvif, in wl1271_scan_send()
187 int wl12xx_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif) in wl12xx_scan_stop() argument
214 void wl1271_scan_stm(struct wl1271 *wl, struct wl12xx_vif *wlvif) in wl1271_scan_stm() argument
226 mask = wlvif->bitrate_masks[band]; in wl1271_scan_stm()
233 ret = wl1271_scan_send(wl, wlvif, band, false, rate); in wl1271_scan_stm()
236 wl1271_scan_stm(wl, wlvif); in wl1271_scan_stm()
243 mask = wlvif->bitrate_masks[band]; in wl1271_scan_stm()
[all …]
Dscan.h132 int wl12xx_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif,
134 int wl12xx_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif);
135 void wl12xx_scan_completed(struct wl1271 *wl, struct wl12xx_vif *wlvif);
136 int wl12xx_sched_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif,
139 void wl12xx_scan_sched_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif);
/drivers/net/wireless/ti/wl18xx/
Dscan.c41 static int wl18xx_scan_send(struct wl1271 *wl, struct wl12xx_vif *wlvif, in wl18xx_scan_send() argument
54 cmd->role_id = wlvif->role_id; in wl18xx_scan_send()
110 ret = wl12xx_cmd_build_probe_req(wl, wlvif, in wl18xx_scan_send()
125 ret = wl12xx_cmd_build_probe_req(wl, wlvif, in wl18xx_scan_send()
152 void wl18xx_scan_completed(struct wl1271 *wl, struct wl12xx_vif *wlvif) in wl18xx_scan_completed() argument
162 struct wl12xx_vif *wlvif, in wl18xx_scan_sched_scan_config() argument
174 filter_type = wlcore_scan_sched_scan_ssid_list(wl, wlvif, req); in wl18xx_scan_sched_scan_config()
184 cmd->role_id = wlvif->role_id; in wl18xx_scan_sched_scan_config()
236 ret = wl12xx_cmd_build_probe_req(wl, wlvif, in wl18xx_scan_sched_scan_config()
251 ret = wl12xx_cmd_build_probe_req(wl, wlvif, in wl18xx_scan_sched_scan_config()
[all …]
Dcmd.c29 struct wl12xx_vif *wlvif, in wl18xx_cmd_channel_switch() argument
44 cmd->role_id = wlvif->role_id; in wl18xx_cmd_channel_switch()
64 wlcore_hw_sta_get_ap_rate_mask(wl, wlvif); in wl18xx_cmd_channel_switch()
65 if (wlvif->p2p) in wl18xx_cmd_channel_switch()
68 cmd->channel_type = wlvif->channel_type; in wl18xx_cmd_channel_switch()
Dscan.h119 int wl18xx_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif,
121 int wl18xx_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif);
122 void wl18xx_scan_completed(struct wl1271 *wl, struct wl12xx_vif *wlvif);
123 int wl18xx_sched_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif,
126 void wl18xx_scan_sched_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif);
Dmain.c1101 struct wl12xx_vif *wlvif) in wl18xx_sta_get_ap_rate_mask() argument
1103 u32 hw_rate_set = wlvif->rate_set; in wl18xx_sta_get_ap_rate_mask()
1105 if (wlvif->channel_type == NL80211_CHAN_HT40MINUS || in wl18xx_sta_get_ap_rate_mask()
1106 wlvif->channel_type == NL80211_CHAN_HT40PLUS) { in wl18xx_sta_get_ap_rate_mask()
1121 struct wl12xx_vif *wlvif) in wl18xx_ap_get_mimo_wide_rate_mask() argument
1123 if (wlvif->channel_type == NL80211_CHAN_HT40MINUS || in wl18xx_ap_get_mimo_wide_rate_mask()
1124 wlvif->channel_type == NL80211_CHAN_HT40PLUS) { in wl18xx_ap_get_mimo_wide_rate_mask()
1128 if (WARN_ON(wlvif->band != IEEE80211_BAND_5GHZ)) in wl18xx_ap_get_mimo_wide_rate_mask()
1133 wlvif->band == IEEE80211_BAND_2GHZ) { in wl18xx_ap_get_mimo_wide_rate_mask()
1396 struct wl12xx_vif *wlvif, in wl18xx_sta_rc_update() argument
[all …]
Dtx.c63 struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); in wl18xx_get_last_tx_rate() local
64 if (wlvif->channel_type == NL80211_CHAN_HT40MINUS || in wl18xx_get_last_tx_rate()
65 wlvif->channel_type == NL80211_CHAN_HT40PLUS) { in wl18xx_get_last_tx_rate()
Dcmd.h49 struct wl12xx_vif *wlvif,

12