2 * This file is part of wl1271
4 * Copyright (C) 2008-2010 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24 #include <linux/module.h>
25 #include <linux/firmware.h>
26 #include <linux/delay.h>
27 #include <linux/spi/spi.h>
28 #include <linux/crc32.h>
29 #include <linux/etherdevice.h>
30 #include <linux/vmalloc.h>
31 #include <linux/platform_device.h>
32 #include <linux/slab.h>
33 #include <linux/wl12xx.h>
34 #include <linux/sched.h>
35 #include <linux/interrupt.h>
39 #include "wl12xx_80211.h"
53 #define WL1271_BOOT_RETRIES 3
55 static struct conf_drv_settings default_conf
= {
58 [CONF_SG_ACL_BT_MASTER_MIN_BR
] = 10,
59 [CONF_SG_ACL_BT_MASTER_MAX_BR
] = 180,
60 [CONF_SG_ACL_BT_SLAVE_MIN_BR
] = 10,
61 [CONF_SG_ACL_BT_SLAVE_MAX_BR
] = 180,
62 [CONF_SG_ACL_BT_MASTER_MIN_EDR
] = 10,
63 [CONF_SG_ACL_BT_MASTER_MAX_EDR
] = 80,
64 [CONF_SG_ACL_BT_SLAVE_MIN_EDR
] = 10,
65 [CONF_SG_ACL_BT_SLAVE_MAX_EDR
] = 80,
66 [CONF_SG_ACL_WLAN_PS_MASTER_BR
] = 8,
67 [CONF_SG_ACL_WLAN_PS_SLAVE_BR
] = 8,
68 [CONF_SG_ACL_WLAN_PS_MASTER_EDR
] = 20,
69 [CONF_SG_ACL_WLAN_PS_SLAVE_EDR
] = 20,
70 [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MIN_BR
] = 20,
71 [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MAX_BR
] = 35,
72 [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MIN_BR
] = 16,
73 [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MAX_BR
] = 35,
74 [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MIN_EDR
] = 32,
75 [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MAX_EDR
] = 50,
76 [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MIN_EDR
] = 28,
77 [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MAX_EDR
] = 50,
78 [CONF_SG_ACL_ACTIVE_SCAN_WLAN_BR
] = 10,
79 [CONF_SG_ACL_ACTIVE_SCAN_WLAN_EDR
] = 20,
80 [CONF_SG_ACL_PASSIVE_SCAN_BT_BR
] = 75,
81 [CONF_SG_ACL_PASSIVE_SCAN_WLAN_BR
] = 15,
82 [CONF_SG_ACL_PASSIVE_SCAN_BT_EDR
] = 27,
83 [CONF_SG_ACL_PASSIVE_SCAN_WLAN_EDR
] = 17,
84 /* active scan params */
85 [CONF_SG_AUTO_SCAN_PROBE_REQ
] = 170,
86 [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_HV3
] = 50,
87 [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_A2DP
] = 100,
88 /* passive scan params */
89 [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP_BR
] = 800,
90 [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP_EDR
] = 200,
91 [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_HV3
] = 200,
92 /* passive scan in dual antenna params */
93 [CONF_SG_CONSECUTIVE_HV3_IN_PASSIVE_SCAN
] = 0,
94 [CONF_SG_BCN_HV3_COLLISION_THRESH_IN_PASSIVE_SCAN
] = 0,
95 [CONF_SG_TX_RX_PROTECTION_BWIDTH_IN_PASSIVE_SCAN
] = 0,
97 [CONF_SG_STA_FORCE_PS_IN_BT_SCO
] = 1,
98 [CONF_SG_ANTENNA_CONFIGURATION
] = 0,
99 [CONF_SG_BEACON_MISS_PERCENT
] = 60,
100 [CONF_SG_DHCP_TIME
] = 5000,
101 [CONF_SG_RXT
] = 1200,
102 [CONF_SG_TXT
] = 1000,
103 [CONF_SG_ADAPTIVE_RXT_TXT
] = 1,
104 [CONF_SG_GENERAL_USAGE_BIT_MAP
] = 3,
105 [CONF_SG_HV3_MAX_SERVED
] = 6,
106 [CONF_SG_PS_POLL_TIMEOUT
] = 10,
107 [CONF_SG_UPSD_TIMEOUT
] = 10,
108 [CONF_SG_CONSECUTIVE_CTS_THRESHOLD
] = 2,
109 [CONF_SG_STA_RX_WINDOW_AFTER_DTIM
] = 5,
110 [CONF_SG_STA_CONNECTION_PROTECTION_TIME
] = 30,
112 [CONF_AP_BEACON_MISS_TX
] = 3,
113 [CONF_AP_RX_WINDOW_AFTER_BEACON
] = 10,
114 [CONF_AP_BEACON_WINDOW_INTERVAL
] = 2,
115 [CONF_AP_CONNECTION_PROTECTION_TIME
] = 0,
116 [CONF_AP_BT_ACL_VAL_BT_SERVE_TIME
] = 25,
117 [CONF_AP_BT_ACL_VAL_WL_SERVE_TIME
] = 25,
119 .state
= CONF_SG_PROTECTIVE
,
122 .rx_msdu_life_time
= 512000,
123 .packet_detection_threshold
= 0,
124 .ps_poll_timeout
= 15,
126 .rts_threshold
= IEEE80211_MAX_RTS_THRESHOLD
,
127 .rx_cca_threshold
= 0,
128 .irq_blk_threshold
= 0xFFFF,
129 .irq_pkt_threshold
= 0,
131 .queue_type
= CONF_RX_QUEUE_TYPE_LOW_PRIORITY
,
134 .tx_energy_detection
= 0,
137 .short_retry_limit
= 10,
138 .long_retry_limit
= 10,
161 .aifsn
= CONF_TX_AIFS_PIFS
,
168 .aifsn
= CONF_TX_AIFS_PIFS
,
172 .max_tx_retries
= 100,
173 .ap_aging_period
= 300,
177 .queue_id
= CONF_TX_AC_BE
,
178 .channel_type
= CONF_CHANNEL_TYPE_EDCF
,
179 .tsid
= CONF_TX_AC_BE
,
180 .ps_scheme
= CONF_PS_SCHEME_LEGACY
,
181 .ack_policy
= CONF_ACK_POLICY_LEGACY
,
185 .queue_id
= CONF_TX_AC_BK
,
186 .channel_type
= CONF_CHANNEL_TYPE_EDCF
,
187 .tsid
= CONF_TX_AC_BK
,
188 .ps_scheme
= CONF_PS_SCHEME_LEGACY
,
189 .ack_policy
= CONF_ACK_POLICY_LEGACY
,
193 .queue_id
= CONF_TX_AC_VI
,
194 .channel_type
= CONF_CHANNEL_TYPE_EDCF
,
195 .tsid
= CONF_TX_AC_VI
,
196 .ps_scheme
= CONF_PS_SCHEME_LEGACY
,
197 .ack_policy
= CONF_ACK_POLICY_LEGACY
,
201 .queue_id
= CONF_TX_AC_VO
,
202 .channel_type
= CONF_CHANNEL_TYPE_EDCF
,
203 .tsid
= CONF_TX_AC_VO
,
204 .ps_scheme
= CONF_PS_SCHEME_LEGACY
,
205 .ack_policy
= CONF_ACK_POLICY_LEGACY
,
209 .frag_threshold
= IEEE80211_MAX_FRAG_THRESHOLD
,
210 .tx_compl_timeout
= 700,
211 .tx_compl_threshold
= 4,
212 .basic_rate
= CONF_HW_BIT_RATE_1MBPS
,
213 .basic_rate_5
= CONF_HW_BIT_RATE_6MBPS
,
214 .tmpl_short_retry_limit
= 10,
215 .tmpl_long_retry_limit
= 10,
218 .wake_up_event
= CONF_WAKE_UP_EVENT_DTIM
,
219 .listen_interval
= 1,
220 .bcn_filt_mode
= CONF_BCN_FILT_MODE_ENABLED
,
221 .bcn_filt_ie_count
= 2,
224 .ie
= WLAN_EID_CHANNEL_SWITCH
,
225 .rule
= CONF_BCN_RULE_PASS_ON_APPEARANCE
,
228 .ie
= WLAN_EID_HT_INFORMATION
,
229 .rule
= CONF_BCN_RULE_PASS_ON_CHANGE
,
232 .synch_fail_thold
= 10,
233 .bss_lose_timeout
= 100,
234 .beacon_rx_timeout
= 10000,
235 .broadcast_timeout
= 20000,
236 .rx_broadcast_in_ps
= 1,
237 .ps_poll_threshold
= 10,
238 .ps_poll_recovery_period
= 700,
239 .bet_enable
= CONF_BET_MODE_ENABLE
,
240 .bet_max_consecutive
= 50,
241 .psm_entry_retries
= 8,
242 .psm_exit_retries
= 16,
243 .psm_entry_nullfunc_retries
= 3,
244 .keep_alive_interval
= 55000,
245 .max_listen_interval
= 20,
252 .host_clk_settling_time
= 5000,
253 .host_fast_wakeup_support
= false
257 .avg_weight_rssi_beacon
= 20,
258 .avg_weight_rssi_data
= 10,
259 .avg_weight_snr_beacon
= 20,
260 .avg_weight_snr_data
= 10,
263 .min_dwell_time_active
= 7500,
264 .max_dwell_time_active
= 30000,
265 .min_dwell_time_passive
= 100000,
266 .max_dwell_time_passive
= 100000,
270 /* sched_scan requires dwell times in TU instead of TU/1000 */
271 .min_dwell_time_active
= 30,
272 .max_dwell_time_active
= 60,
273 .dwell_time_passive
= 100,
274 .dwell_time_dfs
= 150,
276 .rssi_threshold
= -90,
280 .tx_per_channel_power_compensation_2
= {
281 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
283 .tx_per_channel_power_compensation_5
= {
284 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
285 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
286 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
291 .tx_ba_win_size
= 64,
292 .inactivity_timeout
= 10000,
293 .tx_ba_tid_bitmap
= CONF_TX_BA_ENABLED_TID_BITMAP
,
299 .tx_min_block_num
= 40,
301 .min_req_tx_blocks
= 100,
302 .min_req_rx_blocks
= 22,
309 .tx_min_block_num
= 40,
311 .min_req_tx_blocks
= 45,
312 .min_req_rx_blocks
= 22,
318 .n_divider_fref_set_1
= 0xff, /* default */
319 .n_divider_fref_set_2
= 12,
320 .m_divider_fref_set_1
= 148,
321 .m_divider_fref_set_2
= 0xffff, /* default */
322 .coex_pll_stabilization_time
= 0xffffffff, /* default */
323 .ldo_stabilization_time
= 0xffff, /* default */
324 .fm_disturbed_band_margin
= 0xff, /* default */
325 .swallow_clk_diff
= 0xff, /* default */
334 .mode
= WL12XX_FWLOG_ON_DEMAND
,
337 .timestamp
= WL12XX_FWLOG_TIMESTAMP_DISABLED
,
338 .output
= WL12XX_FWLOG_OUTPUT_HOST
,
341 .hci_io_ds
= HCI_IO_DS_6MA
,
343 .rate_retry_score
= 32000,
348 .inverse_curiosity_factor
= 5,
350 .tx_fail_high_th
= 10,
351 .per_alpha_shift
= 4,
353 .per_beta1_shift
= 10,
354 .per_beta2_shift
= 8,
356 .rate_check_down
= 12,
357 .rate_retry_policy
= {
358 0x00, 0x00, 0x00, 0x00, 0x00,
359 0x00, 0x00, 0x00, 0x00, 0x00,
365 .hangover_period
= 20,
367 .early_termination_mode
= 1,
378 static char *fwlog_param
;
379 static bool bug_on_recovery
;
381 static void __wl1271_op_remove_interface(struct wl1271
*wl
,
382 struct ieee80211_vif
*vif
,
383 bool reset_tx_queues
);
384 static void wl1271_op_stop(struct ieee80211_hw
*hw
);
385 static void wl1271_free_ap_keys(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
);
387 static DEFINE_MUTEX(wl_list_mutex
);
388 static LIST_HEAD(wl_list
);
390 static int wl1271_check_operstate(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
391 unsigned char operstate
)
395 if (operstate
!= IF_OPER_UP
)
398 if (test_and_set_bit(WLVIF_FLAG_STA_STATE_SENT
, &wlvif
->flags
))
401 ret
= wl12xx_cmd_set_peer_state(wl
, wlvif
->sta
.hlid
);
405 wl12xx_croc(wl
, wlvif
->role_id
);
407 wl1271_info("Association completed.");
410 static int wl1271_dev_notify(struct notifier_block
*me
, unsigned long what
,
413 struct net_device
*dev
= arg
;
414 struct wireless_dev
*wdev
;
416 struct ieee80211_hw
*hw
;
418 struct wl1271
*wl_temp
;
419 struct wl12xx_vif
*wlvif
;
422 /* Check that this notification is for us. */
423 if (what
!= NETDEV_CHANGE
)
426 wdev
= dev
->ieee80211_ptr
;
434 hw
= wiphy_priv(wiphy
);
439 mutex_lock(&wl_list_mutex
);
440 list_for_each_entry(wl
, &wl_list
, list
) {
444 mutex_unlock(&wl_list_mutex
);
448 mutex_lock(&wl
->mutex
);
450 if (wl
->state
== WL1271_STATE_OFF
)
453 if (dev
->operstate
!= IF_OPER_UP
)
456 * The correct behavior should be just getting the appropriate wlvif
457 * from the given dev, but currently we don't have a mac80211
460 wl12xx_for_each_wlvif_sta(wl
, wlvif
) {
461 struct ieee80211_vif
*vif
= wl12xx_wlvif_to_vif(wlvif
);
463 if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
))
466 ret
= wl1271_ps_elp_wakeup(wl
);
470 wl1271_check_operstate(wl
, wlvif
,
471 ieee80211_get_operstate(vif
));
473 wl1271_ps_elp_sleep(wl
);
476 mutex_unlock(&wl
->mutex
);
481 static int wl1271_reg_notify(struct wiphy
*wiphy
,
482 struct regulatory_request
*request
)
484 struct ieee80211_supported_band
*band
;
485 struct ieee80211_channel
*ch
;
488 band
= wiphy
->bands
[IEEE80211_BAND_5GHZ
];
489 for (i
= 0; i
< band
->n_channels
; i
++) {
490 ch
= &band
->channels
[i
];
491 if (ch
->flags
& IEEE80211_CHAN_DISABLED
)
494 if (ch
->flags
& IEEE80211_CHAN_RADAR
)
495 ch
->flags
|= IEEE80211_CHAN_NO_IBSS
|
496 IEEE80211_CHAN_PASSIVE_SCAN
;
503 static int wl1271_set_rx_streaming(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
508 /* we should hold wl->mutex */
509 ret
= wl1271_acx_ps_rx_streaming(wl
, wlvif
, enable
);
514 set_bit(WLVIF_FLAG_RX_STREAMING_STARTED
, &wlvif
->flags
);
516 clear_bit(WLVIF_FLAG_RX_STREAMING_STARTED
, &wlvif
->flags
);
522 * this function is being called when the rx_streaming interval
523 * has beed changed or rx_streaming should be disabled
525 int wl1271_recalc_rx_streaming(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
)
528 int period
= wl
->conf
.rx_streaming
.interval
;
530 /* don't reconfigure if rx_streaming is disabled */
531 if (!test_bit(WLVIF_FLAG_RX_STREAMING_STARTED
, &wlvif
->flags
))
534 /* reconfigure/disable according to new streaming_period */
536 test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
) &&
537 (wl
->conf
.rx_streaming
.always
||
538 test_bit(WL1271_FLAG_SOFT_GEMINI
, &wl
->flags
)))
539 ret
= wl1271_set_rx_streaming(wl
, wlvif
, true);
541 ret
= wl1271_set_rx_streaming(wl
, wlvif
, false);
542 /* don't cancel_work_sync since we might deadlock */
543 del_timer_sync(&wlvif
->rx_streaming_timer
);
549 static void wl1271_rx_streaming_enable_work(struct work_struct
*work
)
552 struct wl12xx_vif
*wlvif
= container_of(work
, struct wl12xx_vif
,
553 rx_streaming_enable_work
);
554 struct wl1271
*wl
= wlvif
->wl
;
556 mutex_lock(&wl
->mutex
);
558 if (test_bit(WLVIF_FLAG_RX_STREAMING_STARTED
, &wlvif
->flags
) ||
559 !test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
) ||
560 (!wl
->conf
.rx_streaming
.always
&&
561 !test_bit(WL1271_FLAG_SOFT_GEMINI
, &wl
->flags
)))
564 if (!wl
->conf
.rx_streaming
.interval
)
567 ret
= wl1271_ps_elp_wakeup(wl
);
571 ret
= wl1271_set_rx_streaming(wl
, wlvif
, true);
575 /* stop it after some time of inactivity */
576 mod_timer(&wlvif
->rx_streaming_timer
,
577 jiffies
+ msecs_to_jiffies(wl
->conf
.rx_streaming
.duration
));
580 wl1271_ps_elp_sleep(wl
);
582 mutex_unlock(&wl
->mutex
);
585 static void wl1271_rx_streaming_disable_work(struct work_struct
*work
)
588 struct wl12xx_vif
*wlvif
= container_of(work
, struct wl12xx_vif
,
589 rx_streaming_disable_work
);
590 struct wl1271
*wl
= wlvif
->wl
;
592 mutex_lock(&wl
->mutex
);
594 if (!test_bit(WLVIF_FLAG_RX_STREAMING_STARTED
, &wlvif
->flags
))
597 ret
= wl1271_ps_elp_wakeup(wl
);
601 ret
= wl1271_set_rx_streaming(wl
, wlvif
, false);
606 wl1271_ps_elp_sleep(wl
);
608 mutex_unlock(&wl
->mutex
);
611 static void wl1271_rx_streaming_timer(unsigned long data
)
613 struct wl12xx_vif
*wlvif
= (struct wl12xx_vif
*)data
;
614 struct wl1271
*wl
= wlvif
->wl
;
615 ieee80211_queue_work(wl
->hw
, &wlvif
->rx_streaming_disable_work
);
618 static void wl1271_conf_init(struct wl1271
*wl
)
622 * This function applies the default configuration to the driver. This
623 * function is invoked upon driver load (spi probe.)
625 * The configuration is stored in a run-time structure in order to
626 * facilitate for run-time adjustment of any of the parameters. Making
627 * changes to the configuration structure will apply the new values on
628 * the next interface up (wl1271_op_start.)
631 /* apply driver default configuration */
632 memcpy(&wl
->conf
, &default_conf
, sizeof(default_conf
));
634 /* Adjust settings according to optional module parameters */
636 if (!strcmp(fwlog_param
, "continuous")) {
637 wl
->conf
.fwlog
.mode
= WL12XX_FWLOG_CONTINUOUS
;
638 } else if (!strcmp(fwlog_param
, "ondemand")) {
639 wl
->conf
.fwlog
.mode
= WL12XX_FWLOG_ON_DEMAND
;
640 } else if (!strcmp(fwlog_param
, "dbgpins")) {
641 wl
->conf
.fwlog
.mode
= WL12XX_FWLOG_CONTINUOUS
;
642 wl
->conf
.fwlog
.output
= WL12XX_FWLOG_OUTPUT_DBG_PINS
;
643 } else if (!strcmp(fwlog_param
, "disable")) {
644 wl
->conf
.fwlog
.mem_blocks
= 0;
645 wl
->conf
.fwlog
.output
= WL12XX_FWLOG_OUTPUT_NONE
;
647 wl1271_error("Unknown fwlog parameter %s", fwlog_param
);
652 static int wl1271_plt_init(struct wl1271
*wl
)
656 if (wl
->chip
.id
== CHIP_ID_1283_PG20
)
657 ret
= wl128x_cmd_general_parms(wl
);
659 ret
= wl1271_cmd_general_parms(wl
);
663 if (wl
->chip
.id
== CHIP_ID_1283_PG20
)
664 ret
= wl128x_cmd_radio_parms(wl
);
666 ret
= wl1271_cmd_radio_parms(wl
);
670 if (wl
->chip
.id
!= CHIP_ID_1283_PG20
) {
671 ret
= wl1271_cmd_ext_radio_parms(wl
);
678 /* Chip-specific initializations */
679 ret
= wl1271_chip_specific_init(wl
);
683 ret
= wl1271_acx_init_mem_config(wl
);
687 ret
= wl12xx_acx_mem_cfg(wl
);
689 goto out_free_memmap
;
691 /* Enable data path */
692 ret
= wl1271_cmd_data_path(wl
, 1);
694 goto out_free_memmap
;
696 /* Configure for CAM power saving (ie. always active) */
697 ret
= wl1271_acx_sleep_auth(wl
, WL1271_PSM_CAM
);
699 goto out_free_memmap
;
702 ret
= wl1271_acx_pm_config(wl
);
704 goto out_free_memmap
;
709 kfree(wl
->target_mem_map
);
710 wl
->target_mem_map
= NULL
;
715 static void wl12xx_irq_ps_regulate_link(struct wl1271
*wl
,
716 struct wl12xx_vif
*wlvif
,
719 bool fw_ps
, single_sta
;
721 fw_ps
= test_bit(hlid
, (unsigned long *)&wl
->ap_fw_ps_map
);
722 single_sta
= (wl
->active_sta_count
== 1);
725 * Wake up from high level PS if the STA is asleep with too little
726 * packets in FW or if the STA is awake.
728 if (!fw_ps
|| tx_pkts
< WL1271_PS_STA_MAX_PACKETS
)
729 wl12xx_ps_link_end(wl
, wlvif
, hlid
);
732 * Start high-level PS if the STA is asleep with enough blocks in FW.
733 * Make an exception if this is the only connected station. In this
734 * case FW-memory congestion is not a problem.
736 else if (!single_sta
&& fw_ps
&& tx_pkts
>= WL1271_PS_STA_MAX_PACKETS
)
737 wl12xx_ps_link_start(wl
, wlvif
, hlid
, true);
740 static void wl12xx_irq_update_links_status(struct wl1271
*wl
,
741 struct wl12xx_vif
*wlvif
,
742 struct wl12xx_fw_status
*status
)
744 struct wl1271_link
*lnk
;
748 /* TODO: also use link_fast_bitmap here */
750 cur_fw_ps_map
= le32_to_cpu(status
->link_ps_bitmap
);
751 if (wl
->ap_fw_ps_map
!= cur_fw_ps_map
) {
752 wl1271_debug(DEBUG_PSM
,
753 "link ps prev 0x%x cur 0x%x changed 0x%x",
754 wl
->ap_fw_ps_map
, cur_fw_ps_map
,
755 wl
->ap_fw_ps_map
^ cur_fw_ps_map
);
757 wl
->ap_fw_ps_map
= cur_fw_ps_map
;
760 for_each_set_bit(hlid
, wlvif
->ap
.sta_hlid_map
, WL12XX_MAX_LINKS
) {
761 lnk
= &wl
->links
[hlid
];
762 cnt
= status
->tx_lnk_free_pkts
[hlid
] - lnk
->prev_freed_pkts
;
764 lnk
->prev_freed_pkts
= status
->tx_lnk_free_pkts
[hlid
];
765 lnk
->allocated_pkts
-= cnt
;
767 wl12xx_irq_ps_regulate_link(wl
, wlvif
, hlid
,
768 lnk
->allocated_pkts
);
772 static void wl12xx_fw_status(struct wl1271
*wl
,
773 struct wl12xx_fw_status
*status
)
775 struct wl12xx_vif
*wlvif
;
777 u32 old_tx_blk_count
= wl
->tx_blocks_available
;
778 int avail
, freed_blocks
;
781 wl1271_raw_read(wl
, FW_STATUS_ADDR
, status
, sizeof(*status
), false);
783 wl1271_debug(DEBUG_IRQ
, "intr: 0x%x (fw_rx_counter = %d, "
784 "drv_rx_counter = %d, tx_results_counter = %d)",
786 status
->fw_rx_counter
,
787 status
->drv_rx_counter
,
788 status
->tx_results_counter
);
790 for (i
= 0; i
< NUM_TX_QUEUES
; i
++) {
791 /* prevent wrap-around in freed-packets counter */
792 wl
->tx_allocated_pkts
[i
] -=
793 (status
->tx_released_pkts
[i
] -
794 wl
->tx_pkts_freed
[i
]) & 0xff;
796 wl
->tx_pkts_freed
[i
] = status
->tx_released_pkts
[i
];
799 /* prevent wrap-around in total blocks counter */
800 if (likely(wl
->tx_blocks_freed
<=
801 le32_to_cpu(status
->total_released_blks
)))
802 freed_blocks
= le32_to_cpu(status
->total_released_blks
) -
805 freed_blocks
= 0x100000000LL
- wl
->tx_blocks_freed
+
806 le32_to_cpu(status
->total_released_blks
);
808 wl
->tx_blocks_freed
= le32_to_cpu(status
->total_released_blks
);
810 wl
->tx_allocated_blocks
-= freed_blocks
;
812 avail
= le32_to_cpu(status
->tx_total
) - wl
->tx_allocated_blocks
;
815 * The FW might change the total number of TX memblocks before
816 * we get a notification about blocks being released. Thus, the
817 * available blocks calculation might yield a temporary result
818 * which is lower than the actual available blocks. Keeping in
819 * mind that only blocks that were allocated can be moved from
820 * TX to RX, tx_blocks_available should never decrease here.
822 wl
->tx_blocks_available
= max((int)wl
->tx_blocks_available
,
825 /* if more blocks are available now, tx work can be scheduled */
826 if (wl
->tx_blocks_available
> old_tx_blk_count
)
827 clear_bit(WL1271_FLAG_FW_TX_BUSY
, &wl
->flags
);
829 /* for AP update num of allocated TX blocks per link and ps status */
830 wl12xx_for_each_wlvif_ap(wl
, wlvif
) {
831 wl12xx_irq_update_links_status(wl
, wlvif
, status
);
834 /* update the host-chipset time offset */
836 wl
->time_offset
= (timespec_to_ns(&ts
) >> 10) -
837 (s64
)le32_to_cpu(status
->fw_localtime
);
840 static void wl1271_flush_deferred_work(struct wl1271
*wl
)
844 /* Pass all received frames to the network stack */
845 while ((skb
= skb_dequeue(&wl
->deferred_rx_queue
)))
846 ieee80211_rx_ni(wl
->hw
, skb
);
848 /* Return sent skbs to the network stack */
849 while ((skb
= skb_dequeue(&wl
->deferred_tx_queue
)))
850 ieee80211_tx_status_ni(wl
->hw
, skb
);
853 static void wl1271_netstack_work(struct work_struct
*work
)
856 container_of(work
, struct wl1271
, netstack_work
);
859 wl1271_flush_deferred_work(wl
);
860 } while (skb_queue_len(&wl
->deferred_rx_queue
));
863 #define WL1271_IRQ_MAX_LOOPS 256
865 static irqreturn_t
wl1271_irq(int irq
, void *cookie
)
869 int loopcount
= WL1271_IRQ_MAX_LOOPS
;
870 struct wl1271
*wl
= (struct wl1271
*)cookie
;
872 unsigned int defer_count
;
875 /* TX might be handled here, avoid redundant work */
876 set_bit(WL1271_FLAG_TX_PENDING
, &wl
->flags
);
877 cancel_work_sync(&wl
->tx_work
);
880 * In case edge triggered interrupt must be used, we cannot iterate
881 * more than once without introducing race conditions with the hardirq.
883 if (wl
->platform_quirks
& WL12XX_PLATFORM_QUIRK_EDGE_IRQ
)
886 mutex_lock(&wl
->mutex
);
888 wl1271_debug(DEBUG_IRQ
, "IRQ work");
890 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
893 ret
= wl1271_ps_elp_wakeup(wl
);
897 while (!done
&& loopcount
--) {
899 * In order to avoid a race with the hardirq, clear the flag
900 * before acknowledging the chip. Since the mutex is held,
901 * wl1271_ps_elp_wakeup cannot be called concurrently.
903 clear_bit(WL1271_FLAG_IRQ_RUNNING
, &wl
->flags
);
904 smp_mb__after_clear_bit();
906 wl12xx_fw_status(wl
, wl
->fw_status
);
907 intr
= le32_to_cpu(wl
->fw_status
->intr
);
908 intr
&= WL1271_INTR_MASK
;
914 if (unlikely(intr
& WL1271_ACX_INTR_WATCHDOG
)) {
915 wl1271_error("watchdog interrupt received! "
916 "starting recovery.");
917 wl12xx_queue_recovery_work(wl
);
919 /* restarting the chip. ignore any other interrupt. */
923 if (likely(intr
& WL1271_ACX_INTR_DATA
)) {
924 wl1271_debug(DEBUG_IRQ
, "WL1271_ACX_INTR_DATA");
926 wl12xx_rx(wl
, wl
->fw_status
);
928 /* Check if any tx blocks were freed */
929 spin_lock_irqsave(&wl
->wl_lock
, flags
);
930 if (!test_bit(WL1271_FLAG_FW_TX_BUSY
, &wl
->flags
) &&
931 wl1271_tx_total_queue_count(wl
) > 0) {
932 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
934 * In order to avoid starvation of the TX path,
935 * call the work function directly.
937 wl1271_tx_work_locked(wl
);
939 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
942 /* check for tx results */
943 if (wl
->fw_status
->tx_results_counter
!=
944 (wl
->tx_results_count
& 0xff))
945 wl1271_tx_complete(wl
);
947 /* Make sure the deferred queues don't get too long */
948 defer_count
= skb_queue_len(&wl
->deferred_tx_queue
) +
949 skb_queue_len(&wl
->deferred_rx_queue
);
950 if (defer_count
> WL1271_DEFERRED_QUEUE_LIMIT
)
951 wl1271_flush_deferred_work(wl
);
954 if (intr
& WL1271_ACX_INTR_EVENT_A
) {
955 wl1271_debug(DEBUG_IRQ
, "WL1271_ACX_INTR_EVENT_A");
956 wl1271_event_handle(wl
, 0);
959 if (intr
& WL1271_ACX_INTR_EVENT_B
) {
960 wl1271_debug(DEBUG_IRQ
, "WL1271_ACX_INTR_EVENT_B");
961 wl1271_event_handle(wl
, 1);
964 if (intr
& WL1271_ACX_INTR_INIT_COMPLETE
)
965 wl1271_debug(DEBUG_IRQ
,
966 "WL1271_ACX_INTR_INIT_COMPLETE");
968 if (intr
& WL1271_ACX_INTR_HW_AVAILABLE
)
969 wl1271_debug(DEBUG_IRQ
, "WL1271_ACX_INTR_HW_AVAILABLE");
972 wl1271_ps_elp_sleep(wl
);
975 spin_lock_irqsave(&wl
->wl_lock
, flags
);
976 /* In case TX was not handled here, queue TX work */
977 clear_bit(WL1271_FLAG_TX_PENDING
, &wl
->flags
);
978 if (!test_bit(WL1271_FLAG_FW_TX_BUSY
, &wl
->flags
) &&
979 wl1271_tx_total_queue_count(wl
) > 0)
980 ieee80211_queue_work(wl
->hw
, &wl
->tx_work
);
981 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
983 mutex_unlock(&wl
->mutex
);
988 static int wl1271_fetch_firmware(struct wl1271
*wl
)
990 const struct firmware
*fw
;
994 if (wl
->chip
.id
== CHIP_ID_1283_PG20
)
995 fw_name
= WL128X_FW_NAME
;
997 fw_name
= WL127X_FW_NAME
;
999 wl1271_debug(DEBUG_BOOT
, "booting firmware %s", fw_name
);
1001 ret
= request_firmware(&fw
, fw_name
, wl
->dev
);
1004 wl1271_error("could not get firmware %s: %d", fw_name
, ret
);
1009 wl1271_error("firmware size is not multiple of 32 bits: %zu",
1016 wl
->fw_len
= fw
->size
;
1017 wl
->fw
= vmalloc(wl
->fw_len
);
1020 wl1271_error("could not allocate memory for the firmware");
1025 memcpy(wl
->fw
, fw
->data
, wl
->fw_len
);
1029 release_firmware(fw
);
1034 static int wl1271_fetch_nvs(struct wl1271
*wl
)
1036 const struct firmware
*fw
;
1039 ret
= request_firmware(&fw
, WL12XX_NVS_NAME
, wl
->dev
);
1042 wl1271_error("could not get nvs file %s: %d", WL12XX_NVS_NAME
,
1047 wl
->nvs
= kmemdup(fw
->data
, fw
->size
, GFP_KERNEL
);
1050 wl1271_error("could not allocate memory for the nvs file");
1055 wl
->nvs_len
= fw
->size
;
1058 release_firmware(fw
);
1063 void wl12xx_queue_recovery_work(struct wl1271
*wl
)
1065 if (!test_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS
, &wl
->flags
))
1066 ieee80211_queue_work(wl
->hw
, &wl
->recovery_work
);
1069 size_t wl12xx_copy_fwlog(struct wl1271
*wl
, u8
*memblock
, size_t maxlen
)
1073 /* The FW log is a length-value list, find where the log end */
1074 while (len
< maxlen
) {
1075 if (memblock
[len
] == 0)
1077 if (len
+ memblock
[len
] + 1 > maxlen
)
1079 len
+= memblock
[len
] + 1;
1082 /* Make sure we have enough room */
1083 len
= min(len
, (size_t)(PAGE_SIZE
- wl
->fwlog_size
));
1085 /* Fill the FW log file, consumed by the sysfs fwlog entry */
1086 memcpy(wl
->fwlog
+ wl
->fwlog_size
, memblock
, len
);
1087 wl
->fwlog_size
+= len
;
1092 static void wl12xx_read_fwlog_panic(struct wl1271
*wl
)
1098 if ((wl
->quirks
& WL12XX_QUIRK_FWLOG_NOT_IMPLEMENTED
) ||
1099 (wl
->conf
.fwlog
.mode
!= WL12XX_FWLOG_ON_DEMAND
) ||
1100 (wl
->conf
.fwlog
.mem_blocks
== 0))
1103 wl1271_info("Reading FW panic log");
1105 block
= kmalloc(WL12XX_HW_BLOCK_SIZE
, GFP_KERNEL
);
1110 * Make sure the chip is awake and the logger isn't active.
1111 * This might fail if the firmware hanged.
1113 if (!wl1271_ps_elp_wakeup(wl
))
1114 wl12xx_cmd_stop_fwlog(wl
);
1116 /* Read the first memory block address */
1117 wl12xx_fw_status(wl
, wl
->fw_status
);
1118 first_addr
= le32_to_cpu(wl
->fw_status
->log_start_addr
);
1122 /* Traverse the memory blocks linked list */
1125 memset(block
, 0, WL12XX_HW_BLOCK_SIZE
);
1126 wl1271_read_hwaddr(wl
, addr
, block
, WL12XX_HW_BLOCK_SIZE
,
1130 * Memory blocks are linked to one another. The first 4 bytes
1131 * of each memory block hold the hardware address of the next
1132 * one. The last memory block points to the first one.
1134 addr
= le32_to_cpup((__le32
*)block
);
1135 if (!wl12xx_copy_fwlog(wl
, block
+ sizeof(addr
),
1136 WL12XX_HW_BLOCK_SIZE
- sizeof(addr
)))
1138 } while (addr
&& (addr
!= first_addr
));
1140 wake_up_interruptible(&wl
->fwlog_waitq
);
1146 static void wl1271_recovery_work(struct work_struct
*work
)
1149 container_of(work
, struct wl1271
, recovery_work
);
1150 struct wl12xx_vif
*wlvif
;
1151 struct ieee80211_vif
*vif
;
1153 mutex_lock(&wl
->mutex
);
1155 if (wl
->state
!= WL1271_STATE_ON
)
1158 /* Avoid a recursive recovery */
1159 set_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS
, &wl
->flags
);
1161 wl12xx_read_fwlog_panic(wl
);
1163 wl1271_info("Hardware recovery in progress. FW ver: %s pc: 0x%x",
1164 wl
->chip
.fw_ver_str
, wl1271_read32(wl
, SCR_PAD4
));
1166 BUG_ON(bug_on_recovery
);
1169 * Advance security sequence number to overcome potential progress
1170 * in the firmware during recovery. This doens't hurt if the network is
1173 wl12xx_for_each_wlvif(wl
, wlvif
) {
1174 if (test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
) ||
1175 test_bit(WLVIF_FLAG_AP_STARTED
, &wlvif
->flags
))
1176 wlvif
->tx_security_seq
+=
1177 WL1271_TX_SQN_POST_RECOVERY_PADDING
;
1180 /* Prevent spurious TX during FW restart */
1181 ieee80211_stop_queues(wl
->hw
);
1183 if (wl
->sched_scanning
) {
1184 ieee80211_sched_scan_stopped(wl
->hw
);
1185 wl
->sched_scanning
= false;
1188 /* reboot the chipset */
1189 while (!list_empty(&wl
->wlvif_list
)) {
1190 wlvif
= list_first_entry(&wl
->wlvif_list
,
1191 struct wl12xx_vif
, list
);
1192 vif
= wl12xx_wlvif_to_vif(wlvif
);
1193 __wl1271_op_remove_interface(wl
, vif
, false);
1195 mutex_unlock(&wl
->mutex
);
1196 wl1271_op_stop(wl
->hw
);
1198 clear_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS
, &wl
->flags
);
1200 ieee80211_restart_hw(wl
->hw
);
1203 * Its safe to enable TX now - the queues are stopped after a request
1204 * to restart the HW.
1206 ieee80211_wake_queues(wl
->hw
);
1209 mutex_unlock(&wl
->mutex
);
1212 static void wl1271_fw_wakeup(struct wl1271
*wl
)
1216 elp_reg
= ELPCTRL_WAKE_UP
;
1217 wl1271_raw_write32(wl
, HW_ACCESS_ELP_CTRL_REG_ADDR
, elp_reg
);
1220 static int wl1271_setup(struct wl1271
*wl
)
1222 wl
->fw_status
= kmalloc(sizeof(*wl
->fw_status
), GFP_KERNEL
);
1226 wl
->tx_res_if
= kmalloc(sizeof(*wl
->tx_res_if
), GFP_KERNEL
);
1227 if (!wl
->tx_res_if
) {
1228 kfree(wl
->fw_status
);
1235 static int wl1271_chip_wakeup(struct wl1271
*wl
)
1237 struct wl1271_partition_set partition
;
1240 msleep(WL1271_PRE_POWER_ON_SLEEP
);
1241 ret
= wl1271_power_on(wl
);
1244 msleep(WL1271_POWER_ON_SLEEP
);
1245 wl1271_io_reset(wl
);
1248 /* We don't need a real memory partition here, because we only want
1249 * to use the registers at this point. */
1250 memset(&partition
, 0, sizeof(partition
));
1251 partition
.reg
.start
= REGISTERS_BASE
;
1252 partition
.reg
.size
= REGISTERS_DOWN_SIZE
;
1253 wl1271_set_partition(wl
, &partition
);
1255 /* ELP module wake up */
1256 wl1271_fw_wakeup(wl
);
1258 /* whal_FwCtrl_BootSm() */
1260 /* 0. read chip id from CHIP_ID */
1261 wl
->chip
.id
= wl1271_read32(wl
, CHIP_ID_B
);
1264 * For wl127x based devices we could use the default block
1265 * size (512 bytes), but due to a bug in the sdio driver, we
1266 * need to set it explicitly after the chip is powered on. To
1267 * simplify the code and since the performance impact is
1268 * negligible, we use the same block size for all different
1271 if (!wl1271_set_block_size(wl
))
1272 wl
->quirks
|= WL12XX_QUIRK_NO_BLOCKSIZE_ALIGNMENT
;
1274 switch (wl
->chip
.id
) {
1275 case CHIP_ID_1271_PG10
:
1276 wl1271_warning("chip id 0x%x (1271 PG10) support is obsolete",
1279 ret
= wl1271_setup(wl
);
1282 wl
->quirks
|= WL12XX_QUIRK_NO_BLOCKSIZE_ALIGNMENT
;
1285 case CHIP_ID_1271_PG20
:
1286 wl1271_debug(DEBUG_BOOT
, "chip id 0x%x (1271 PG20)",
1289 ret
= wl1271_setup(wl
);
1292 wl
->quirks
|= WL12XX_QUIRK_NO_BLOCKSIZE_ALIGNMENT
;
1295 case CHIP_ID_1283_PG20
:
1296 wl1271_debug(DEBUG_BOOT
, "chip id 0x%x (1283 PG20)",
1299 ret
= wl1271_setup(wl
);
1303 case CHIP_ID_1283_PG10
:
1305 wl1271_warning("unsupported chip id: 0x%x", wl
->chip
.id
);
1310 if (wl
->fw
== NULL
) {
1311 ret
= wl1271_fetch_firmware(wl
);
1316 /* No NVS from netlink, try to get it from the filesystem */
1317 if (wl
->nvs
== NULL
) {
1318 ret
= wl1271_fetch_nvs(wl
);
1327 int wl1271_plt_start(struct wl1271
*wl
)
1329 int retries
= WL1271_BOOT_RETRIES
;
1330 struct wiphy
*wiphy
= wl
->hw
->wiphy
;
1333 mutex_lock(&wl
->mutex
);
1335 wl1271_notice("power up");
1337 if (wl
->state
!= WL1271_STATE_OFF
) {
1338 wl1271_error("cannot go into PLT state because not "
1339 "in off state: %d", wl
->state
);
1346 ret
= wl1271_chip_wakeup(wl
);
1350 ret
= wl1271_boot(wl
);
1354 ret
= wl1271_plt_init(wl
);
1358 wl
->state
= WL1271_STATE_PLT
;
1359 wl1271_notice("firmware booted in PLT mode (%s)",
1360 wl
->chip
.fw_ver_str
);
1362 /* update hw/fw version info in wiphy struct */
1363 wiphy
->hw_version
= wl
->chip
.id
;
1364 strncpy(wiphy
->fw_version
, wl
->chip
.fw_ver_str
,
1365 sizeof(wiphy
->fw_version
));
1370 mutex_unlock(&wl
->mutex
);
1371 /* Unlocking the mutex in the middle of handling is
1372 inherently unsafe. In this case we deem it safe to do,
1373 because we need to let any possibly pending IRQ out of
1374 the system (and while we are WL1271_STATE_OFF the IRQ
1375 work function will not do anything.) Also, any other
1376 possible concurrent operations will fail due to the
1377 current state, hence the wl1271 struct should be safe. */
1378 wl1271_disable_interrupts(wl
);
1379 wl1271_flush_deferred_work(wl
);
1380 cancel_work_sync(&wl
->netstack_work
);
1381 mutex_lock(&wl
->mutex
);
1383 wl1271_power_off(wl
);
1386 wl1271_error("firmware boot in PLT mode failed despite %d retries",
1387 WL1271_BOOT_RETRIES
);
1389 mutex_unlock(&wl
->mutex
);
1394 static int __wl1271_plt_stop(struct wl1271
*wl
)
1398 wl1271_notice("power down");
1400 if (wl
->state
!= WL1271_STATE_PLT
) {
1401 wl1271_error("cannot power down because not in PLT "
1402 "state: %d", wl
->state
);
1407 wl1271_power_off(wl
);
1409 wl
->state
= WL1271_STATE_OFF
;
1412 mutex_unlock(&wl
->mutex
);
1413 wl1271_disable_interrupts(wl
);
1414 wl1271_flush_deferred_work(wl
);
1415 cancel_work_sync(&wl
->netstack_work
);
1416 cancel_work_sync(&wl
->recovery_work
);
1417 mutex_lock(&wl
->mutex
);
1422 int wl1271_plt_stop(struct wl1271
*wl
)
1426 mutex_lock(&wl
->mutex
);
1427 ret
= __wl1271_plt_stop(wl
);
1428 mutex_unlock(&wl
->mutex
);
1432 static void wl1271_op_tx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
)
1434 struct wl1271
*wl
= hw
->priv
;
1435 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
1436 struct ieee80211_vif
*vif
= info
->control
.vif
;
1437 struct wl12xx_vif
*wlvif
= NULL
;
1438 unsigned long flags
;
1443 wlvif
= wl12xx_vif_to_data(vif
);
1445 mapping
= skb_get_queue_mapping(skb
);
1446 q
= wl1271_tx_get_queue(mapping
);
1448 hlid
= wl12xx_tx_get_hlid(wl
, wlvif
, skb
);
1450 spin_lock_irqsave(&wl
->wl_lock
, flags
);
1452 /* queue the packet */
1453 if (hlid
== WL12XX_INVALID_LINK_ID
||
1454 (wlvif
&& !test_bit(hlid
, wlvif
->links_map
))) {
1455 wl1271_debug(DEBUG_TX
, "DROP skb hlid %d q %d", hlid
, q
);
1456 ieee80211_free_txskb(hw
, skb
);
1460 wl1271_debug(DEBUG_TX
, "queue skb hlid %d q %d", hlid
, q
);
1461 skb_queue_tail(&wl
->links
[hlid
].tx_queue
[q
], skb
);
1463 wl
->tx_queue_count
[q
]++;
1466 * The workqueue is slow to process the tx_queue and we need stop
1467 * the queue here, otherwise the queue will get too long.
1469 if (wl
->tx_queue_count
[q
] >= WL1271_TX_QUEUE_HIGH_WATERMARK
) {
1470 wl1271_debug(DEBUG_TX
, "op_tx: stopping queues for q %d", q
);
1471 ieee80211_stop_queue(wl
->hw
, mapping
);
1472 set_bit(q
, &wl
->stopped_queues_map
);
1476 * The chip specific setup must run before the first TX packet -
1477 * before that, the tx_work will not be initialized!
1480 if (!test_bit(WL1271_FLAG_FW_TX_BUSY
, &wl
->flags
) &&
1481 !test_bit(WL1271_FLAG_TX_PENDING
, &wl
->flags
))
1482 ieee80211_queue_work(wl
->hw
, &wl
->tx_work
);
1485 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
1488 int wl1271_tx_dummy_packet(struct wl1271
*wl
)
1490 unsigned long flags
;
1493 /* no need to queue a new dummy packet if one is already pending */
1494 if (test_bit(WL1271_FLAG_DUMMY_PACKET_PENDING
, &wl
->flags
))
1497 q
= wl1271_tx_get_queue(skb_get_queue_mapping(wl
->dummy_packet
));
1499 spin_lock_irqsave(&wl
->wl_lock
, flags
);
1500 set_bit(WL1271_FLAG_DUMMY_PACKET_PENDING
, &wl
->flags
);
1501 wl
->tx_queue_count
[q
]++;
1502 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
1504 /* The FW is low on RX memory blocks, so send the dummy packet asap */
1505 if (!test_bit(WL1271_FLAG_FW_TX_BUSY
, &wl
->flags
))
1506 wl1271_tx_work_locked(wl
);
1509 * If the FW TX is busy, TX work will be scheduled by the threaded
1510 * interrupt handler function
1516 * The size of the dummy packet should be at least 1400 bytes. However, in
1517 * order to minimize the number of bus transactions, aligning it to 512 bytes
1518 * boundaries could be beneficial, performance wise
1520 #define TOTAL_TX_DUMMY_PACKET_SIZE (ALIGN(1400, 512))
1522 static struct sk_buff
*wl12xx_alloc_dummy_packet(struct wl1271
*wl
)
1524 struct sk_buff
*skb
;
1525 struct ieee80211_hdr_3addr
*hdr
;
1526 unsigned int dummy_packet_size
;
1528 dummy_packet_size
= TOTAL_TX_DUMMY_PACKET_SIZE
-
1529 sizeof(struct wl1271_tx_hw_descr
) - sizeof(*hdr
);
1531 skb
= dev_alloc_skb(TOTAL_TX_DUMMY_PACKET_SIZE
);
1533 wl1271_warning("Failed to allocate a dummy packet skb");
1537 skb_reserve(skb
, sizeof(struct wl1271_tx_hw_descr
));
1539 hdr
= (struct ieee80211_hdr_3addr
*) skb_put(skb
, sizeof(*hdr
));
1540 memset(hdr
, 0, sizeof(*hdr
));
1541 hdr
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_DATA
|
1542 IEEE80211_STYPE_NULLFUNC
|
1543 IEEE80211_FCTL_TODS
);
1545 memset(skb_put(skb
, dummy_packet_size
), 0, dummy_packet_size
);
1547 /* Dummy packets require the TID to be management */
1548 skb
->priority
= WL1271_TID_MGMT
;
1550 /* Initialize all fields that might be used */
1551 skb_set_queue_mapping(skb
, 0);
1552 memset(IEEE80211_SKB_CB(skb
), 0, sizeof(struct ieee80211_tx_info
));
1558 static struct notifier_block wl1271_dev_notifier
= {
1559 .notifier_call
= wl1271_dev_notify
,
1563 static int wl1271_configure_suspend_sta(struct wl1271
*wl
,
1564 struct wl12xx_vif
*wlvif
)
1568 mutex_lock(&wl
->mutex
);
1570 if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
))
1573 ret
= wl1271_ps_elp_wakeup(wl
);
1577 /* enter psm if needed*/
1578 if (!test_bit(WLVIF_FLAG_PSM
, &wlvif
->flags
)) {
1579 DECLARE_COMPLETION_ONSTACK(compl);
1581 wlvif
->ps_compl
= &compl;
1582 ret
= wl1271_ps_set_mode(wl
, wlvif
, STATION_POWER_SAVE_MODE
,
1583 wlvif
->basic_rate
, true);
1587 /* we must unlock here so we will be able to get events */
1588 wl1271_ps_elp_sleep(wl
);
1589 mutex_unlock(&wl
->mutex
);
1591 ret
= wait_for_completion_timeout(
1592 &compl, msecs_to_jiffies(WL1271_PS_COMPLETE_TIMEOUT
));
1594 mutex_lock(&wl
->mutex
);
1596 wl1271_warning("couldn't enter ps mode!");
1601 ret
= wl1271_ps_elp_wakeup(wl
);
1606 wl1271_ps_elp_sleep(wl
);
1608 wlvif
->ps_compl
= NULL
;
1610 mutex_unlock(&wl
->mutex
);
1615 static int wl1271_configure_suspend_ap(struct wl1271
*wl
,
1616 struct wl12xx_vif
*wlvif
)
1620 mutex_lock(&wl
->mutex
);
1622 if (!test_bit(WLVIF_FLAG_AP_STARTED
, &wlvif
->flags
))
1625 ret
= wl1271_ps_elp_wakeup(wl
);
1629 ret
= wl1271_acx_beacon_filter_opt(wl
, wlvif
, true);
1631 wl1271_ps_elp_sleep(wl
);
1633 mutex_unlock(&wl
->mutex
);
1638 static int wl1271_configure_suspend(struct wl1271
*wl
,
1639 struct wl12xx_vif
*wlvif
)
1641 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
)
1642 return wl1271_configure_suspend_sta(wl
, wlvif
);
1643 if (wlvif
->bss_type
== BSS_TYPE_AP_BSS
)
1644 return wl1271_configure_suspend_ap(wl
, wlvif
);
1648 static void wl1271_configure_resume(struct wl1271
*wl
,
1649 struct wl12xx_vif
*wlvif
)
1652 bool is_sta
= wlvif
->bss_type
== BSS_TYPE_STA_BSS
;
1653 bool is_ap
= wlvif
->bss_type
== BSS_TYPE_AP_BSS
;
1655 if (!is_sta
&& !is_ap
)
1658 mutex_lock(&wl
->mutex
);
1659 ret
= wl1271_ps_elp_wakeup(wl
);
1664 /* exit psm if it wasn't configured */
1665 if (!test_bit(WLVIF_FLAG_PSM_REQUESTED
, &wlvif
->flags
))
1666 wl1271_ps_set_mode(wl
, wlvif
, STATION_ACTIVE_MODE
,
1667 wlvif
->basic_rate
, true);
1669 wl1271_acx_beacon_filter_opt(wl
, wlvif
, false);
1672 wl1271_ps_elp_sleep(wl
);
1674 mutex_unlock(&wl
->mutex
);
1677 static int wl1271_op_suspend(struct ieee80211_hw
*hw
,
1678 struct cfg80211_wowlan
*wow
)
1680 struct wl1271
*wl
= hw
->priv
;
1681 struct wl12xx_vif
*wlvif
;
1684 wl1271_debug(DEBUG_MAC80211
, "mac80211 suspend wow=%d", !!wow
);
1685 WARN_ON(!wow
|| !wow
->any
);
1687 wl
->wow_enabled
= true;
1688 wl12xx_for_each_wlvif(wl
, wlvif
) {
1689 ret
= wl1271_configure_suspend(wl
, wlvif
);
1691 wl1271_warning("couldn't prepare device to suspend");
1695 /* flush any remaining work */
1696 wl1271_debug(DEBUG_MAC80211
, "flushing remaining works");
1699 * disable and re-enable interrupts in order to flush
1702 wl1271_disable_interrupts(wl
);
1705 * set suspended flag to avoid triggering a new threaded_irq
1706 * work. no need for spinlock as interrupts are disabled.
1708 set_bit(WL1271_FLAG_SUSPENDED
, &wl
->flags
);
1710 wl1271_enable_interrupts(wl
);
1711 flush_work(&wl
->tx_work
);
1712 wl12xx_for_each_wlvif(wl
, wlvif
) {
1713 flush_delayed_work(&wlvif
->pspoll_work
);
1715 flush_delayed_work(&wl
->elp_work
);
1720 static int wl1271_op_resume(struct ieee80211_hw
*hw
)
1722 struct wl1271
*wl
= hw
->priv
;
1723 struct wl12xx_vif
*wlvif
;
1724 unsigned long flags
;
1725 bool run_irq_work
= false;
1727 wl1271_debug(DEBUG_MAC80211
, "mac80211 resume wow=%d",
1729 WARN_ON(!wl
->wow_enabled
);
1732 * re-enable irq_work enqueuing, and call irq_work directly if
1733 * there is a pending work.
1735 spin_lock_irqsave(&wl
->wl_lock
, flags
);
1736 clear_bit(WL1271_FLAG_SUSPENDED
, &wl
->flags
);
1737 if (test_and_clear_bit(WL1271_FLAG_PENDING_WORK
, &wl
->flags
))
1738 run_irq_work
= true;
1739 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
1742 wl1271_debug(DEBUG_MAC80211
,
1743 "run postponed irq_work directly");
1745 wl1271_enable_interrupts(wl
);
1747 wl12xx_for_each_wlvif(wl
, wlvif
) {
1748 wl1271_configure_resume(wl
, wlvif
);
1750 wl
->wow_enabled
= false;
1756 static int wl1271_op_start(struct ieee80211_hw
*hw
)
1758 wl1271_debug(DEBUG_MAC80211
, "mac80211 start");
1761 * We have to delay the booting of the hardware because
1762 * we need to know the local MAC address before downloading and
1763 * initializing the firmware. The MAC address cannot be changed
1764 * after boot, and without the proper MAC address, the firmware
1765 * will not function properly.
1767 * The MAC address is first known when the corresponding interface
1768 * is added. That is where we will initialize the hardware.
1774 static void wl1271_op_stop(struct ieee80211_hw
*hw
)
1776 struct wl1271
*wl
= hw
->priv
;
1779 wl1271_debug(DEBUG_MAC80211
, "mac80211 stop");
1781 mutex_lock(&wl
->mutex
);
1782 if (wl
->state
== WL1271_STATE_OFF
) {
1783 mutex_unlock(&wl
->mutex
);
1787 * this must be before the cancel_work calls below, so that the work
1788 * functions don't perform further work.
1790 wl
->state
= WL1271_STATE_OFF
;
1791 mutex_unlock(&wl
->mutex
);
1793 mutex_lock(&wl_list_mutex
);
1794 list_del(&wl
->list
);
1795 mutex_unlock(&wl_list_mutex
);
1797 wl1271_disable_interrupts(wl
);
1798 wl1271_flush_deferred_work(wl
);
1799 cancel_delayed_work_sync(&wl
->scan_complete_work
);
1800 cancel_work_sync(&wl
->netstack_work
);
1801 cancel_work_sync(&wl
->tx_work
);
1802 cancel_delayed_work_sync(&wl
->elp_work
);
1804 /* let's notify MAC80211 about the remaining pending TX frames */
1805 wl12xx_tx_reset(wl
, true);
1806 mutex_lock(&wl
->mutex
);
1808 wl1271_power_off(wl
);
1810 wl
->band
= IEEE80211_BAND_2GHZ
;
1813 wl
->power_level
= WL1271_DEFAULT_POWER_LEVEL
;
1814 wl
->tx_blocks_available
= 0;
1815 wl
->tx_allocated_blocks
= 0;
1816 wl
->tx_results_count
= 0;
1817 wl
->tx_packets_count
= 0;
1818 wl
->time_offset
= 0;
1819 wl
->tx_spare_blocks
= TX_HW_BLOCK_SPARE_DEFAULT
;
1820 wl
->ap_fw_ps_map
= 0;
1822 wl
->sched_scanning
= false;
1823 memset(wl
->roles_map
, 0, sizeof(wl
->roles_map
));
1824 memset(wl
->links_map
, 0, sizeof(wl
->links_map
));
1825 memset(wl
->roc_map
, 0, sizeof(wl
->roc_map
));
1826 wl
->active_sta_count
= 0;
1828 /* The system link is always allocated */
1829 __set_bit(WL12XX_SYSTEM_HLID
, wl
->links_map
);
1832 * this is performed after the cancel_work calls and the associated
1833 * mutex_lock, so that wl1271_op_add_interface does not accidentally
1834 * get executed before all these vars have been reset.
1838 wl
->tx_blocks_freed
= 0;
1840 for (i
= 0; i
< NUM_TX_QUEUES
; i
++) {
1841 wl
->tx_pkts_freed
[i
] = 0;
1842 wl
->tx_allocated_pkts
[i
] = 0;
1845 wl1271_debugfs_reset(wl
);
1847 kfree(wl
->fw_status
);
1848 wl
->fw_status
= NULL
;
1849 kfree(wl
->tx_res_if
);
1850 wl
->tx_res_if
= NULL
;
1851 kfree(wl
->target_mem_map
);
1852 wl
->target_mem_map
= NULL
;
1854 mutex_unlock(&wl
->mutex
);
1857 static int wl12xx_allocate_rate_policy(struct wl1271
*wl
, u8
*idx
)
1859 u8 policy
= find_first_zero_bit(wl
->rate_policies_map
,
1860 WL12XX_MAX_RATE_POLICIES
);
1861 if (policy
>= WL12XX_MAX_RATE_POLICIES
)
1864 __set_bit(policy
, wl
->rate_policies_map
);
1869 static void wl12xx_free_rate_policy(struct wl1271
*wl
, u8
*idx
)
1871 if (WARN_ON(*idx
>= WL12XX_MAX_RATE_POLICIES
))
1874 __clear_bit(*idx
, wl
->rate_policies_map
);
1875 *idx
= WL12XX_MAX_RATE_POLICIES
;
1878 static u8
wl12xx_get_role_type(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
)
1880 switch (wlvif
->bss_type
) {
1881 case BSS_TYPE_AP_BSS
:
1883 return WL1271_ROLE_P2P_GO
;
1885 return WL1271_ROLE_AP
;
1887 case BSS_TYPE_STA_BSS
:
1889 return WL1271_ROLE_P2P_CL
;
1891 return WL1271_ROLE_STA
;
1894 return WL1271_ROLE_IBSS
;
1897 wl1271_error("invalid bss_type: %d", wlvif
->bss_type
);
1899 return WL12XX_INVALID_ROLE_TYPE
;
1902 static int wl12xx_init_vif_data(struct wl1271
*wl
, struct ieee80211_vif
*vif
)
1904 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
1907 /* clear everything but the persistent data */
1908 memset(wlvif
, 0, offsetof(struct wl12xx_vif
, persistent
));
1910 switch (ieee80211_vif_type_p2p(vif
)) {
1911 case NL80211_IFTYPE_P2P_CLIENT
:
1914 case NL80211_IFTYPE_STATION
:
1915 wlvif
->bss_type
= BSS_TYPE_STA_BSS
;
1917 case NL80211_IFTYPE_ADHOC
:
1918 wlvif
->bss_type
= BSS_TYPE_IBSS
;
1920 case NL80211_IFTYPE_P2P_GO
:
1923 case NL80211_IFTYPE_AP
:
1924 wlvif
->bss_type
= BSS_TYPE_AP_BSS
;
1927 wlvif
->bss_type
= MAX_BSS_TYPE
;
1931 wlvif
->role_id
= WL12XX_INVALID_ROLE_ID
;
1932 wlvif
->dev_role_id
= WL12XX_INVALID_ROLE_ID
;
1933 wlvif
->dev_hlid
= WL12XX_INVALID_LINK_ID
;
1935 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
||
1936 wlvif
->bss_type
== BSS_TYPE_IBSS
) {
1937 /* init sta/ibss data */
1938 wlvif
->sta
.hlid
= WL12XX_INVALID_LINK_ID
;
1939 wl12xx_allocate_rate_policy(wl
, &wlvif
->sta
.basic_rate_idx
);
1940 wl12xx_allocate_rate_policy(wl
, &wlvif
->sta
.ap_rate_idx
);
1941 wl12xx_allocate_rate_policy(wl
, &wlvif
->sta
.p2p_rate_idx
);
1944 wlvif
->ap
.bcast_hlid
= WL12XX_INVALID_LINK_ID
;
1945 wlvif
->ap
.global_hlid
= WL12XX_INVALID_LINK_ID
;
1946 wl12xx_allocate_rate_policy(wl
, &wlvif
->ap
.mgmt_rate_idx
);
1947 wl12xx_allocate_rate_policy(wl
, &wlvif
->ap
.bcast_rate_idx
);
1948 for (i
= 0; i
< CONF_TX_MAX_AC_COUNT
; i
++)
1949 wl12xx_allocate_rate_policy(wl
,
1950 &wlvif
->ap
.ucast_rate_idx
[i
]);
1953 wlvif
->bitrate_masks
[IEEE80211_BAND_2GHZ
] = wl
->conf
.tx
.basic_rate
;
1954 wlvif
->bitrate_masks
[IEEE80211_BAND_5GHZ
] = wl
->conf
.tx
.basic_rate_5
;
1955 wlvif
->basic_rate_set
= CONF_TX_RATE_MASK_BASIC
;
1956 wlvif
->basic_rate
= CONF_TX_RATE_MASK_BASIC
;
1957 wlvif
->rate_set
= CONF_TX_RATE_MASK_BASIC
;
1958 wlvif
->beacon_int
= WL1271_DEFAULT_BEACON_INT
;
1961 * mac80211 configures some values globally, while we treat them
1962 * per-interface. thus, on init, we have to copy them from wl
1964 wlvif
->band
= wl
->band
;
1965 wlvif
->channel
= wl
->channel
;
1966 wlvif
->power_level
= wl
->power_level
;
1968 INIT_WORK(&wlvif
->rx_streaming_enable_work
,
1969 wl1271_rx_streaming_enable_work
);
1970 INIT_WORK(&wlvif
->rx_streaming_disable_work
,
1971 wl1271_rx_streaming_disable_work
);
1972 INIT_DELAYED_WORK(&wlvif
->pspoll_work
, wl1271_pspoll_work
);
1973 INIT_LIST_HEAD(&wlvif
->list
);
1975 setup_timer(&wlvif
->rx_streaming_timer
, wl1271_rx_streaming_timer
,
1976 (unsigned long) wlvif
);
1980 static bool wl12xx_init_fw(struct wl1271
*wl
)
1982 int retries
= WL1271_BOOT_RETRIES
;
1983 bool booted
= false;
1984 struct wiphy
*wiphy
= wl
->hw
->wiphy
;
1989 ret
= wl1271_chip_wakeup(wl
);
1993 ret
= wl1271_boot(wl
);
1997 ret
= wl1271_hw_init(wl
);
2005 mutex_unlock(&wl
->mutex
);
2006 /* Unlocking the mutex in the middle of handling is
2007 inherently unsafe. In this case we deem it safe to do,
2008 because we need to let any possibly pending IRQ out of
2009 the system (and while we are WL1271_STATE_OFF the IRQ
2010 work function will not do anything.) Also, any other
2011 possible concurrent operations will fail due to the
2012 current state, hence the wl1271 struct should be safe. */
2013 wl1271_disable_interrupts(wl
);
2014 wl1271_flush_deferred_work(wl
);
2015 cancel_work_sync(&wl
->netstack_work
);
2016 mutex_lock(&wl
->mutex
);
2018 wl1271_power_off(wl
);
2022 wl1271_error("firmware boot failed despite %d retries",
2023 WL1271_BOOT_RETRIES
);
2027 wl1271_info("firmware booted (%s)", wl
->chip
.fw_ver_str
);
2029 /* update hw/fw version info in wiphy struct */
2030 wiphy
->hw_version
= wl
->chip
.id
;
2031 strncpy(wiphy
->fw_version
, wl
->chip
.fw_ver_str
,
2032 sizeof(wiphy
->fw_version
));
2035 * Now we know if 11a is supported (info from the NVS), so disable
2036 * 11a channels if not supported
2038 if (!wl
->enable_11a
)
2039 wiphy
->bands
[IEEE80211_BAND_5GHZ
]->n_channels
= 0;
2041 wl1271_debug(DEBUG_MAC80211
, "11a is %ssupported",
2042 wl
->enable_11a
? "" : "not ");
2044 wl
->state
= WL1271_STATE_ON
;
2049 static bool wl12xx_dev_role_started(struct wl12xx_vif
*wlvif
)
2051 return wlvif
->dev_hlid
!= WL12XX_INVALID_LINK_ID
;
2054 static int wl1271_op_add_interface(struct ieee80211_hw
*hw
,
2055 struct ieee80211_vif
*vif
)
2057 struct wl1271
*wl
= hw
->priv
;
2058 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
2061 bool booted
= false;
2063 wl1271_debug(DEBUG_MAC80211
, "mac80211 add interface type %d mac %pM",
2064 ieee80211_vif_type_p2p(vif
), vif
->addr
);
2066 mutex_lock(&wl
->mutex
);
2067 ret
= wl1271_ps_elp_wakeup(wl
);
2072 wl1271_debug(DEBUG_MAC80211
,
2073 "multiple vifs are not supported yet");
2079 * in some very corner case HW recovery scenarios its possible to
2080 * get here before __wl1271_op_remove_interface is complete, so
2081 * opt out if that is the case.
2083 if (test_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS
, &wl
->flags
) ||
2084 test_bit(WLVIF_FLAG_INITIALIZED
, &wlvif
->flags
)) {
2089 ret
= wl12xx_init_vif_data(wl
, vif
);
2094 role_type
= wl12xx_get_role_type(wl
, wlvif
);
2095 if (role_type
== WL12XX_INVALID_ROLE_TYPE
) {
2101 * TODO: after the nvs issue will be solved, move this block
2102 * to start(), and make sure here the driver is ON.
2104 if (wl
->state
== WL1271_STATE_OFF
) {
2106 * we still need this in order to configure the fw
2107 * while uploading the nvs
2109 memcpy(wl
->mac_addr
, vif
->addr
, ETH_ALEN
);
2111 booted
= wl12xx_init_fw(wl
);
2118 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
||
2119 wlvif
->bss_type
== BSS_TYPE_IBSS
) {
2121 * The device role is a special role used for
2122 * rx and tx frames prior to association (as
2123 * the STA role can get packets only from
2124 * its associated bssid)
2126 ret
= wl12xx_cmd_role_enable(wl
, vif
->addr
,
2128 &wlvif
->dev_role_id
);
2133 ret
= wl12xx_cmd_role_enable(wl
, vif
->addr
,
2134 role_type
, &wlvif
->role_id
);
2138 ret
= wl1271_init_vif_specific(wl
, vif
);
2143 list_add(&wlvif
->list
, &wl
->wlvif_list
);
2144 set_bit(WLVIF_FLAG_INITIALIZED
, &wlvif
->flags
);
2146 if (wlvif
->bss_type
== BSS_TYPE_AP_BSS
)
2151 wl1271_ps_elp_sleep(wl
);
2153 mutex_unlock(&wl
->mutex
);
2155 mutex_lock(&wl_list_mutex
);
2157 list_add(&wl
->list
, &wl_list
);
2158 mutex_unlock(&wl_list_mutex
);
2163 static void __wl1271_op_remove_interface(struct wl1271
*wl
,
2164 struct ieee80211_vif
*vif
,
2165 bool reset_tx_queues
)
2167 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
2170 wl1271_debug(DEBUG_MAC80211
, "mac80211 remove interface");
2172 if (!test_and_clear_bit(WLVIF_FLAG_INITIALIZED
, &wlvif
->flags
))
2177 /* because of hardware recovery, we may get here twice */
2178 if (wl
->state
!= WL1271_STATE_ON
)
2181 wl1271_info("down");
2183 /* enable dyn ps just in case (if left on due to fw crash etc) */
2184 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
)
2185 ieee80211_enable_dyn_ps(vif
);
2187 if (wl
->scan
.state
!= WL1271_SCAN_STATE_IDLE
&&
2188 wl
->scan_vif
== vif
) {
2189 wl
->scan
.state
= WL1271_SCAN_STATE_IDLE
;
2190 memset(wl
->scan
.scanned_ch
, 0, sizeof(wl
->scan
.scanned_ch
));
2191 wl
->scan_vif
= NULL
;
2192 wl
->scan
.req
= NULL
;
2193 ieee80211_scan_completed(wl
->hw
, true);
2196 if (!test_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS
, &wl
->flags
)) {
2197 /* disable active roles */
2198 ret
= wl1271_ps_elp_wakeup(wl
);
2202 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
||
2203 wlvif
->bss_type
== BSS_TYPE_IBSS
) {
2204 if (wl12xx_dev_role_started(wlvif
))
2205 wl12xx_stop_dev(wl
, wlvif
);
2207 ret
= wl12xx_cmd_role_disable(wl
, &wlvif
->dev_role_id
);
2212 ret
= wl12xx_cmd_role_disable(wl
, &wlvif
->role_id
);
2216 wl1271_ps_elp_sleep(wl
);
2219 /* clear all hlids (except system_hlid) */
2220 wlvif
->dev_hlid
= WL12XX_INVALID_LINK_ID
;
2222 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
||
2223 wlvif
->bss_type
== BSS_TYPE_IBSS
) {
2224 wlvif
->sta
.hlid
= WL12XX_INVALID_LINK_ID
;
2225 wl12xx_free_rate_policy(wl
, &wlvif
->sta
.basic_rate_idx
);
2226 wl12xx_free_rate_policy(wl
, &wlvif
->sta
.ap_rate_idx
);
2227 wl12xx_free_rate_policy(wl
, &wlvif
->sta
.p2p_rate_idx
);
2229 wlvif
->ap
.bcast_hlid
= WL12XX_INVALID_LINK_ID
;
2230 wlvif
->ap
.global_hlid
= WL12XX_INVALID_LINK_ID
;
2231 wl12xx_free_rate_policy(wl
, &wlvif
->ap
.mgmt_rate_idx
);
2232 wl12xx_free_rate_policy(wl
, &wlvif
->ap
.bcast_rate_idx
);
2233 for (i
= 0; i
< CONF_TX_MAX_AC_COUNT
; i
++)
2234 wl12xx_free_rate_policy(wl
,
2235 &wlvif
->ap
.ucast_rate_idx
[i
]);
2238 wl12xx_tx_reset_wlvif(wl
, wlvif
);
2239 wl1271_free_ap_keys(wl
, wlvif
);
2240 if (wl
->last_wlvif
== wlvif
)
2241 wl
->last_wlvif
= NULL
;
2242 list_del(&wlvif
->list
);
2243 memset(wlvif
->ap
.sta_hlid_map
, 0, sizeof(wlvif
->ap
.sta_hlid_map
));
2244 wlvif
->role_id
= WL12XX_INVALID_ROLE_ID
;
2245 wlvif
->dev_role_id
= WL12XX_INVALID_ROLE_ID
;
2247 if (wlvif
->bss_type
== BSS_TYPE_AP_BSS
)
2252 mutex_unlock(&wl
->mutex
);
2253 del_timer_sync(&wlvif
->rx_streaming_timer
);
2254 cancel_work_sync(&wlvif
->rx_streaming_enable_work
);
2255 cancel_work_sync(&wlvif
->rx_streaming_disable_work
);
2256 cancel_delayed_work_sync(&wlvif
->pspoll_work
);
2258 mutex_lock(&wl
->mutex
);
2261 static void wl1271_op_remove_interface(struct ieee80211_hw
*hw
,
2262 struct ieee80211_vif
*vif
)
2264 struct wl1271
*wl
= hw
->priv
;
2265 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
2266 struct wl12xx_vif
*iter
;
2268 mutex_lock(&wl
->mutex
);
2270 if (wl
->state
== WL1271_STATE_OFF
||
2271 !test_bit(WLVIF_FLAG_INITIALIZED
, &wlvif
->flags
))
2275 * wl->vif can be null here if someone shuts down the interface
2276 * just when hardware recovery has been started.
2278 wl12xx_for_each_wlvif(wl
, iter
) {
2282 __wl1271_op_remove_interface(wl
, vif
, true);
2285 WARN_ON(iter
!= wlvif
);
2287 mutex_unlock(&wl
->mutex
);
2288 cancel_work_sync(&wl
->recovery_work
);
2291 static int wl12xx_op_change_interface(struct ieee80211_hw
*hw
,
2292 struct ieee80211_vif
*vif
,
2293 enum nl80211_iftype new_type
, bool p2p
)
2295 wl1271_op_remove_interface(hw
, vif
);
2297 vif
->type
= ieee80211_iftype_p2p(new_type
, p2p
);
2299 return wl1271_op_add_interface(hw
, vif
);
2302 static int wl1271_join(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
2306 bool is_ibss
= (wlvif
->bss_type
== BSS_TYPE_IBSS
);
2309 * One of the side effects of the JOIN command is that is clears
2310 * WPA/WPA2 keys from the chipset. Performing a JOIN while associated
2311 * to a WPA/WPA2 access point will therefore kill the data-path.
2312 * Currently the only valid scenario for JOIN during association
2313 * is on roaming, in which case we will also be given new keys.
2314 * Keep the below message for now, unless it starts bothering
2315 * users who really like to roam a lot :)
2317 if (test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
))
2318 wl1271_info("JOIN while associated.");
2321 set_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
);
2324 ret
= wl12xx_cmd_role_start_ibss(wl
, wlvif
);
2326 ret
= wl12xx_cmd_role_start_sta(wl
, wlvif
);
2330 if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
))
2334 * The join command disable the keep-alive mode, shut down its process,
2335 * and also clear the template config, so we need to reset it all after
2336 * the join. The acx_aid starts the keep-alive process, and the order
2337 * of the commands below is relevant.
2339 ret
= wl1271_acx_keep_alive_mode(wl
, wlvif
, true);
2343 ret
= wl1271_acx_aid(wl
, wlvif
, wlvif
->aid
);
2347 ret
= wl12xx_cmd_build_klv_null_data(wl
, wlvif
);
2351 ret
= wl1271_acx_keep_alive_config(wl
, wlvif
,
2352 CMD_TEMPL_KLV_IDX_NULL_DATA
,
2353 ACX_KEEP_ALIVE_TPL_VALID
);
2361 static int wl1271_unjoin(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
)
2365 if (test_and_clear_bit(WLVIF_FLAG_CS_PROGRESS
, &wlvif
->flags
)) {
2366 struct ieee80211_vif
*vif
= wl12xx_wlvif_to_vif(wlvif
);
2368 wl12xx_cmd_stop_channel_switch(wl
);
2369 ieee80211_chswitch_done(vif
, false);
2372 /* to stop listening to a channel, we disconnect */
2373 ret
= wl12xx_cmd_role_stop_sta(wl
, wlvif
);
2377 /* reset TX security counters on a clean disconnect */
2378 wlvif
->tx_security_last_seq_lsb
= 0;
2379 wlvif
->tx_security_seq
= 0;
2385 static void wl1271_set_band_rate(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
)
2387 wlvif
->basic_rate_set
= wlvif
->bitrate_masks
[wlvif
->band
];
2388 wlvif
->rate_set
= wlvif
->basic_rate_set
;
2391 static int wl1271_sta_handle_idle(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
2395 bool cur_idle
= !test_bit(WLVIF_FLAG_IN_USE
, &wlvif
->flags
);
2397 if (idle
== cur_idle
)
2401 /* no need to croc if we weren't busy (e.g. during boot) */
2402 if (wl12xx_dev_role_started(wlvif
)) {
2403 ret
= wl12xx_stop_dev(wl
, wlvif
);
2408 wl1271_tx_min_rate_get(wl
, wlvif
->basic_rate_set
);
2409 ret
= wl1271_acx_sta_rate_policies(wl
, wlvif
);
2412 ret
= wl1271_acx_keep_alive_config(
2413 wl
, wlvif
, CMD_TEMPL_KLV_IDX_NULL_DATA
,
2414 ACX_KEEP_ALIVE_TPL_INVALID
);
2417 clear_bit(WLVIF_FLAG_IN_USE
, &wlvif
->flags
);
2419 /* The current firmware only supports sched_scan in idle */
2420 if (wl
->sched_scanning
) {
2421 wl1271_scan_sched_scan_stop(wl
);
2422 ieee80211_sched_scan_stopped(wl
->hw
);
2425 ret
= wl12xx_start_dev(wl
, wlvif
);
2428 set_bit(WLVIF_FLAG_IN_USE
, &wlvif
->flags
);
2435 static int wl12xx_config_vif(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
2436 struct ieee80211_conf
*conf
, u32 changed
)
2438 bool is_ap
= (wlvif
->bss_type
== BSS_TYPE_AP_BSS
);
2441 channel
= ieee80211_frequency_to_channel(conf
->channel
->center_freq
);
2443 /* if the channel changes while joined, join again */
2444 if (changed
& IEEE80211_CONF_CHANGE_CHANNEL
&&
2445 ((wlvif
->band
!= conf
->channel
->band
) ||
2446 (wlvif
->channel
!= channel
))) {
2447 /* send all pending packets */
2448 wl1271_tx_work_locked(wl
);
2449 wlvif
->band
= conf
->channel
->band
;
2450 wlvif
->channel
= channel
;
2454 * FIXME: the mac80211 should really provide a fixed
2455 * rate to use here. for now, just use the smallest
2456 * possible rate for the band as a fixed rate for
2457 * association frames and other control messages.
2459 if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
))
2460 wl1271_set_band_rate(wl
, wlvif
);
2463 wl1271_tx_min_rate_get(wl
,
2464 wlvif
->basic_rate_set
);
2465 ret
= wl1271_acx_sta_rate_policies(wl
, wlvif
);
2467 wl1271_warning("rate policy for channel "
2470 if (test_bit(WLVIF_FLAG_STA_ASSOCIATED
,
2472 if (wl12xx_dev_role_started(wlvif
)) {
2474 ret
= wl12xx_croc(wl
,
2475 wlvif
->dev_role_id
);
2479 ret
= wl1271_join(wl
, wlvif
, false);
2481 wl1271_warning("cmd join on channel "
2485 * change the ROC channel. do it only if we are
2486 * not idle. otherwise, CROC will be called
2489 if (wl12xx_dev_role_started(wlvif
) &&
2490 !(conf
->flags
& IEEE80211_CONF_IDLE
)) {
2491 ret
= wl12xx_stop_dev(wl
, wlvif
);
2495 ret
= wl12xx_start_dev(wl
, wlvif
);
2504 * if mac80211 changes the PSM mode, make sure the mode is not
2505 * incorrectly changed after the pspoll failure active window.
2507 if (changed
& IEEE80211_CONF_CHANGE_PS
)
2508 clear_bit(WLVIF_FLAG_PSPOLL_FAILURE
, &wlvif
->flags
);
2510 if (conf
->flags
& IEEE80211_CONF_PS
&&
2511 !test_bit(WLVIF_FLAG_PSM_REQUESTED
, &wlvif
->flags
)) {
2512 set_bit(WLVIF_FLAG_PSM_REQUESTED
, &wlvif
->flags
);
2515 * We enter PSM only if we're already associated.
2516 * If we're not, we'll enter it when joining an SSID,
2517 * through the bss_info_changed() hook.
2519 if (test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
)) {
2520 wl1271_debug(DEBUG_PSM
, "psm enabled");
2521 ret
= wl1271_ps_set_mode(wl
, wlvif
,
2522 STATION_POWER_SAVE_MODE
,
2523 wlvif
->basic_rate
, true);
2525 } else if (!(conf
->flags
& IEEE80211_CONF_PS
) &&
2526 test_bit(WLVIF_FLAG_PSM_REQUESTED
, &wlvif
->flags
)) {
2527 wl1271_debug(DEBUG_PSM
, "psm disabled");
2529 clear_bit(WLVIF_FLAG_PSM_REQUESTED
, &wlvif
->flags
);
2531 if (test_bit(WLVIF_FLAG_PSM
, &wlvif
->flags
))
2532 ret
= wl1271_ps_set_mode(wl
, wlvif
,
2533 STATION_ACTIVE_MODE
,
2534 wlvif
->basic_rate
, true);
2537 if (conf
->power_level
!= wlvif
->power_level
) {
2538 ret
= wl1271_acx_tx_power(wl
, wlvif
, conf
->power_level
);
2542 wlvif
->power_level
= conf
->power_level
;
2548 static int wl1271_op_config(struct ieee80211_hw
*hw
, u32 changed
)
2550 struct wl1271
*wl
= hw
->priv
;
2551 struct wl12xx_vif
*wlvif
;
2552 struct ieee80211_conf
*conf
= &hw
->conf
;
2553 int channel
, ret
= 0;
2555 channel
= ieee80211_frequency_to_channel(conf
->channel
->center_freq
);
2557 wl1271_debug(DEBUG_MAC80211
, "mac80211 config ch %d psm %s power %d %s"
2560 conf
->flags
& IEEE80211_CONF_PS
? "on" : "off",
2562 conf
->flags
& IEEE80211_CONF_IDLE
? "idle" : "in use",
2566 * mac80211 will go to idle nearly immediately after transmitting some
2567 * frames, such as the deauth. To make sure those frames reach the air,
2568 * wait here until the TX queue is fully flushed.
2570 if ((changed
& IEEE80211_CONF_CHANGE_IDLE
) &&
2571 (conf
->flags
& IEEE80211_CONF_IDLE
))
2572 wl1271_tx_flush(wl
);
2574 mutex_lock(&wl
->mutex
);
2576 /* we support configuring the channel and band even while off */
2577 if (changed
& IEEE80211_CONF_CHANGE_CHANNEL
) {
2578 wl
->band
= conf
->channel
->band
;
2579 wl
->channel
= channel
;
2582 if (changed
& IEEE80211_CONF_CHANGE_POWER
)
2583 wl
->power_level
= conf
->power_level
;
2585 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
2588 ret
= wl1271_ps_elp_wakeup(wl
);
2592 /* configure each interface */
2593 wl12xx_for_each_wlvif(wl
, wlvif
) {
2594 ret
= wl12xx_config_vif(wl
, wlvif
, conf
, changed
);
2600 wl1271_ps_elp_sleep(wl
);
2603 mutex_unlock(&wl
->mutex
);
2608 struct wl1271_filter_params
{
2611 u8 mc_list
[ACX_MC_ADDRESS_GROUP_MAX
][ETH_ALEN
];
2614 static u64
wl1271_op_prepare_multicast(struct ieee80211_hw
*hw
,
2615 struct netdev_hw_addr_list
*mc_list
)
2617 struct wl1271_filter_params
*fp
;
2618 struct netdev_hw_addr
*ha
;
2619 struct wl1271
*wl
= hw
->priv
;
2621 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
2624 fp
= kzalloc(sizeof(*fp
), GFP_ATOMIC
);
2626 wl1271_error("Out of memory setting filters.");
2630 /* update multicast filtering parameters */
2631 fp
->mc_list_length
= 0;
2632 if (netdev_hw_addr_list_count(mc_list
) > ACX_MC_ADDRESS_GROUP_MAX
) {
2633 fp
->enabled
= false;
2636 netdev_hw_addr_list_for_each(ha
, mc_list
) {
2637 memcpy(fp
->mc_list
[fp
->mc_list_length
],
2638 ha
->addr
, ETH_ALEN
);
2639 fp
->mc_list_length
++;
2643 return (u64
)(unsigned long)fp
;
2646 #define WL1271_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \
2649 FIF_BCN_PRBRESP_PROMISC | \
2653 static void wl1271_op_configure_filter(struct ieee80211_hw
*hw
,
2654 unsigned int changed
,
2655 unsigned int *total
, u64 multicast
)
2657 struct wl1271_filter_params
*fp
= (void *)(unsigned long)multicast
;
2658 struct wl1271
*wl
= hw
->priv
;
2659 struct wl12xx_vif
*wlvif
;
2663 wl1271_debug(DEBUG_MAC80211
, "mac80211 configure filter changed %x"
2664 " total %x", changed
, *total
);
2666 mutex_lock(&wl
->mutex
);
2668 *total
&= WL1271_SUPPORTED_FILTERS
;
2669 changed
&= WL1271_SUPPORTED_FILTERS
;
2671 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
2674 ret
= wl1271_ps_elp_wakeup(wl
);
2678 wl12xx_for_each_wlvif(wl
, wlvif
) {
2679 if (wlvif
->bss_type
!= BSS_TYPE_AP_BSS
) {
2680 if (*total
& FIF_ALLMULTI
)
2681 ret
= wl1271_acx_group_address_tbl(wl
, wlvif
,
2685 ret
= wl1271_acx_group_address_tbl(wl
, wlvif
,
2688 fp
->mc_list_length
);
2695 * the fw doesn't provide an api to configure the filters. instead,
2696 * the filters configuration is based on the active roles / ROC
2701 wl1271_ps_elp_sleep(wl
);
2704 mutex_unlock(&wl
->mutex
);
2708 static int wl1271_record_ap_key(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
2709 u8 id
, u8 key_type
, u8 key_size
,
2710 const u8
*key
, u8 hlid
, u32 tx_seq_32
,
2713 struct wl1271_ap_key
*ap_key
;
2716 wl1271_debug(DEBUG_CRYPT
, "record ap key id %d", (int)id
);
2718 if (key_size
> MAX_KEY_SIZE
)
2722 * Find next free entry in ap_keys. Also check we are not replacing
2725 for (i
= 0; i
< MAX_NUM_KEYS
; i
++) {
2726 if (wlvif
->ap
.recorded_keys
[i
] == NULL
)
2729 if (wlvif
->ap
.recorded_keys
[i
]->id
== id
) {
2730 wl1271_warning("trying to record key replacement");
2735 if (i
== MAX_NUM_KEYS
)
2738 ap_key
= kzalloc(sizeof(*ap_key
), GFP_KERNEL
);
2743 ap_key
->key_type
= key_type
;
2744 ap_key
->key_size
= key_size
;
2745 memcpy(ap_key
->key
, key
, key_size
);
2746 ap_key
->hlid
= hlid
;
2747 ap_key
->tx_seq_32
= tx_seq_32
;
2748 ap_key
->tx_seq_16
= tx_seq_16
;
2750 wlvif
->ap
.recorded_keys
[i
] = ap_key
;
2754 static void wl1271_free_ap_keys(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
)
2758 for (i
= 0; i
< MAX_NUM_KEYS
; i
++) {
2759 kfree(wlvif
->ap
.recorded_keys
[i
]);
2760 wlvif
->ap
.recorded_keys
[i
] = NULL
;
2764 static int wl1271_ap_init_hwenc(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
)
2767 struct wl1271_ap_key
*key
;
2768 bool wep_key_added
= false;
2770 for (i
= 0; i
< MAX_NUM_KEYS
; i
++) {
2772 if (wlvif
->ap
.recorded_keys
[i
] == NULL
)
2775 key
= wlvif
->ap
.recorded_keys
[i
];
2777 if (hlid
== WL12XX_INVALID_LINK_ID
)
2778 hlid
= wlvif
->ap
.bcast_hlid
;
2780 ret
= wl1271_cmd_set_ap_key(wl
, wlvif
, KEY_ADD_OR_REPLACE
,
2781 key
->id
, key
->key_type
,
2782 key
->key_size
, key
->key
,
2783 hlid
, key
->tx_seq_32
,
2788 if (key
->key_type
== KEY_WEP
)
2789 wep_key_added
= true;
2792 if (wep_key_added
) {
2793 ret
= wl12xx_cmd_set_default_wep_key(wl
, wlvif
->default_key
,
2794 wlvif
->ap
.bcast_hlid
);
2800 wl1271_free_ap_keys(wl
, wlvif
);
2804 static int wl1271_set_key(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
,
2805 u16 action
, u8 id
, u8 key_type
,
2806 u8 key_size
, const u8
*key
, u32 tx_seq_32
,
2807 u16 tx_seq_16
, struct ieee80211_sta
*sta
)
2810 bool is_ap
= (wlvif
->bss_type
== BSS_TYPE_AP_BSS
);
2813 struct wl1271_station
*wl_sta
;
2817 wl_sta
= (struct wl1271_station
*)sta
->drv_priv
;
2818 hlid
= wl_sta
->hlid
;
2820 hlid
= wlvif
->ap
.bcast_hlid
;
2823 if (!test_bit(WLVIF_FLAG_AP_STARTED
, &wlvif
->flags
)) {
2825 * We do not support removing keys after AP shutdown.
2826 * Pretend we do to make mac80211 happy.
2828 if (action
!= KEY_ADD_OR_REPLACE
)
2831 ret
= wl1271_record_ap_key(wl
, wlvif
, id
,
2833 key
, hlid
, tx_seq_32
,
2836 ret
= wl1271_cmd_set_ap_key(wl
, wlvif
, action
,
2837 id
, key_type
, key_size
,
2838 key
, hlid
, tx_seq_32
,
2846 static const u8 bcast_addr
[ETH_ALEN
] = {
2847 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2851 * A STA set to GEM cipher requires 2 tx spare blocks.
2852 * Return to default value when GEM cipher key is removed
2854 if (key_type
== KEY_GEM
) {
2855 if (action
== KEY_ADD_OR_REPLACE
)
2856 wl
->tx_spare_blocks
= 2;
2857 else if (action
== KEY_REMOVE
)
2858 wl
->tx_spare_blocks
= TX_HW_BLOCK_SPARE_DEFAULT
;
2861 addr
= sta
? sta
->addr
: bcast_addr
;
2863 if (is_zero_ether_addr(addr
)) {
2864 /* We dont support TX only encryption */
2868 /* The wl1271 does not allow to remove unicast keys - they
2869 will be cleared automatically on next CMD_JOIN. Ignore the
2870 request silently, as we dont want the mac80211 to emit
2871 an error message. */
2872 if (action
== KEY_REMOVE
&& !is_broadcast_ether_addr(addr
))
2875 /* don't remove key if hlid was already deleted */
2876 if (action
== KEY_REMOVE
&&
2877 wlvif
->sta
.hlid
== WL12XX_INVALID_LINK_ID
)
2880 ret
= wl1271_cmd_set_sta_key(wl
, wlvif
, action
,
2881 id
, key_type
, key_size
,
2882 key
, addr
, tx_seq_32
,
2887 /* the default WEP key needs to be configured at least once */
2888 if (key_type
== KEY_WEP
) {
2889 ret
= wl12xx_cmd_set_default_wep_key(wl
,
2900 static int wl1271_op_set_key(struct ieee80211_hw
*hw
, enum set_key_cmd cmd
,
2901 struct ieee80211_vif
*vif
,
2902 struct ieee80211_sta
*sta
,
2903 struct ieee80211_key_conf
*key_conf
)
2905 struct wl1271
*wl
= hw
->priv
;
2906 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
2912 wl1271_debug(DEBUG_MAC80211
, "mac80211 set key");
2914 wl1271_debug(DEBUG_CRYPT
, "CMD: 0x%x sta: %p", cmd
, sta
);
2915 wl1271_debug(DEBUG_CRYPT
, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
2916 key_conf
->cipher
, key_conf
->keyidx
,
2917 key_conf
->keylen
, key_conf
->flags
);
2918 wl1271_dump(DEBUG_CRYPT
, "KEY: ", key_conf
->key
, key_conf
->keylen
);
2920 mutex_lock(&wl
->mutex
);
2922 if (unlikely(wl
->state
== WL1271_STATE_OFF
)) {
2927 ret
= wl1271_ps_elp_wakeup(wl
);
2931 switch (key_conf
->cipher
) {
2932 case WLAN_CIPHER_SUITE_WEP40
:
2933 case WLAN_CIPHER_SUITE_WEP104
:
2936 key_conf
->hw_key_idx
= key_conf
->keyidx
;
2938 case WLAN_CIPHER_SUITE_TKIP
:
2939 key_type
= KEY_TKIP
;
2941 key_conf
->hw_key_idx
= key_conf
->keyidx
;
2942 tx_seq_32
= WL1271_TX_SECURITY_HI32(wlvif
->tx_security_seq
);
2943 tx_seq_16
= WL1271_TX_SECURITY_LO16(wlvif
->tx_security_seq
);
2945 case WLAN_CIPHER_SUITE_CCMP
:
2948 key_conf
->flags
|= IEEE80211_KEY_FLAG_PUT_IV_SPACE
;
2949 tx_seq_32
= WL1271_TX_SECURITY_HI32(wlvif
->tx_security_seq
);
2950 tx_seq_16
= WL1271_TX_SECURITY_LO16(wlvif
->tx_security_seq
);
2952 case WL1271_CIPHER_SUITE_GEM
:
2954 tx_seq_32
= WL1271_TX_SECURITY_HI32(wlvif
->tx_security_seq
);
2955 tx_seq_16
= WL1271_TX_SECURITY_LO16(wlvif
->tx_security_seq
);
2958 wl1271_error("Unknown key algo 0x%x", key_conf
->cipher
);
2966 ret
= wl1271_set_key(wl
, wlvif
, KEY_ADD_OR_REPLACE
,
2967 key_conf
->keyidx
, key_type
,
2968 key_conf
->keylen
, key_conf
->key
,
2969 tx_seq_32
, tx_seq_16
, sta
);
2971 wl1271_error("Could not add or replace key");
2977 ret
= wl1271_set_key(wl
, wlvif
, KEY_REMOVE
,
2978 key_conf
->keyidx
, key_type
,
2979 key_conf
->keylen
, key_conf
->key
,
2982 wl1271_error("Could not remove key");
2988 wl1271_error("Unsupported key cmd 0x%x", cmd
);
2994 wl1271_ps_elp_sleep(wl
);
2997 mutex_unlock(&wl
->mutex
);
3002 static int wl1271_op_hw_scan(struct ieee80211_hw
*hw
,
3003 struct ieee80211_vif
*vif
,
3004 struct cfg80211_scan_request
*req
)
3006 struct wl1271
*wl
= hw
->priv
;
3007 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3013 wl1271_debug(DEBUG_MAC80211
, "mac80211 hw scan");
3016 ssid
= req
->ssids
[0].ssid
;
3017 len
= req
->ssids
[0].ssid_len
;
3020 mutex_lock(&wl
->mutex
);
3022 if (wl
->state
== WL1271_STATE_OFF
) {
3024 * We cannot return -EBUSY here because cfg80211 will expect
3025 * a call to ieee80211_scan_completed if we do - in this case
3026 * there won't be any call.
3032 ret
= wl1271_ps_elp_wakeup(wl
);
3036 if (test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
) &&
3037 test_bit(wlvif
->role_id
, wl
->roc_map
)) {
3038 /* don't allow scanning right now */
3043 /* cancel ROC before scanning */
3044 if (wl12xx_dev_role_started(wlvif
))
3045 wl12xx_stop_dev(wl
, wlvif
);
3047 ret
= wl1271_scan(hw
->priv
, vif
, ssid
, len
, req
);
3049 wl1271_ps_elp_sleep(wl
);
3051 mutex_unlock(&wl
->mutex
);
3056 static void wl1271_op_cancel_hw_scan(struct ieee80211_hw
*hw
,
3057 struct ieee80211_vif
*vif
)
3059 struct wl1271
*wl
= hw
->priv
;
3062 wl1271_debug(DEBUG_MAC80211
, "mac80211 cancel hw scan");
3064 mutex_lock(&wl
->mutex
);
3066 if (wl
->state
== WL1271_STATE_OFF
)
3069 if (wl
->scan
.state
== WL1271_SCAN_STATE_IDLE
)
3072 ret
= wl1271_ps_elp_wakeup(wl
);
3076 if (wl
->scan
.state
!= WL1271_SCAN_STATE_DONE
) {
3077 ret
= wl1271_scan_stop(wl
);
3081 wl
->scan
.state
= WL1271_SCAN_STATE_IDLE
;
3082 memset(wl
->scan
.scanned_ch
, 0, sizeof(wl
->scan
.scanned_ch
));
3083 wl
->scan_vif
= NULL
;
3084 wl
->scan
.req
= NULL
;
3085 ieee80211_scan_completed(wl
->hw
, true);
3088 wl1271_ps_elp_sleep(wl
);
3090 mutex_unlock(&wl
->mutex
);
3092 cancel_delayed_work_sync(&wl
->scan_complete_work
);
3095 static int wl1271_op_sched_scan_start(struct ieee80211_hw
*hw
,
3096 struct ieee80211_vif
*vif
,
3097 struct cfg80211_sched_scan_request
*req
,
3098 struct ieee80211_sched_scan_ies
*ies
)
3100 struct wl1271
*wl
= hw
->priv
;
3101 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3104 wl1271_debug(DEBUG_MAC80211
, "wl1271_op_sched_scan_start");
3106 mutex_lock(&wl
->mutex
);
3108 ret
= wl1271_ps_elp_wakeup(wl
);
3112 ret
= wl1271_scan_sched_scan_config(wl
, wlvif
, req
, ies
);
3116 ret
= wl1271_scan_sched_scan_start(wl
, wlvif
);
3120 wl
->sched_scanning
= true;
3123 wl1271_ps_elp_sleep(wl
);
3125 mutex_unlock(&wl
->mutex
);
3129 static void wl1271_op_sched_scan_stop(struct ieee80211_hw
*hw
,
3130 struct ieee80211_vif
*vif
)
3132 struct wl1271
*wl
= hw
->priv
;
3135 wl1271_debug(DEBUG_MAC80211
, "wl1271_op_sched_scan_stop");
3137 mutex_lock(&wl
->mutex
);
3139 ret
= wl1271_ps_elp_wakeup(wl
);
3143 wl1271_scan_sched_scan_stop(wl
);
3145 wl1271_ps_elp_sleep(wl
);
3147 mutex_unlock(&wl
->mutex
);
3150 static int wl1271_op_set_frag_threshold(struct ieee80211_hw
*hw
, u32 value
)
3152 struct wl1271
*wl
= hw
->priv
;
3155 mutex_lock(&wl
->mutex
);
3157 if (unlikely(wl
->state
== WL1271_STATE_OFF
)) {
3162 ret
= wl1271_ps_elp_wakeup(wl
);
3166 ret
= wl1271_acx_frag_threshold(wl
, value
);
3168 wl1271_warning("wl1271_op_set_frag_threshold failed: %d", ret
);
3170 wl1271_ps_elp_sleep(wl
);
3173 mutex_unlock(&wl
->mutex
);
3178 static int wl1271_op_set_rts_threshold(struct ieee80211_hw
*hw
, u32 value
)
3180 struct wl1271
*wl
= hw
->priv
;
3181 struct wl12xx_vif
*wlvif
;
3184 mutex_lock(&wl
->mutex
);
3186 if (unlikely(wl
->state
== WL1271_STATE_OFF
)) {
3191 ret
= wl1271_ps_elp_wakeup(wl
);
3195 wl12xx_for_each_wlvif(wl
, wlvif
) {
3196 ret
= wl1271_acx_rts_threshold(wl
, wlvif
, value
);
3198 wl1271_warning("set rts threshold failed: %d", ret
);
3200 wl1271_ps_elp_sleep(wl
);
3203 mutex_unlock(&wl
->mutex
);
3208 static int wl1271_ssid_set(struct ieee80211_vif
*vif
, struct sk_buff
*skb
,
3211 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3213 const u8
*ptr
= cfg80211_find_ie(WLAN_EID_SSID
, skb
->data
+ offset
,
3217 wl1271_error("No SSID in IEs!");
3222 if (ssid_len
> IEEE80211_MAX_SSID_LEN
) {
3223 wl1271_error("SSID is too long!");
3227 wlvif
->ssid_len
= ssid_len
;
3228 memcpy(wlvif
->ssid
, ptr
+2, ssid_len
);
3232 static void wl12xx_remove_ie(struct sk_buff
*skb
, u8 eid
, int ieoffset
)
3235 const u8
*next
, *end
= skb
->data
+ skb
->len
;
3236 u8
*ie
= (u8
*)cfg80211_find_ie(eid
, skb
->data
+ ieoffset
,
3237 skb
->len
- ieoffset
);
3242 memmove(ie
, next
, end
- next
);
3243 skb_trim(skb
, skb
->len
- len
);
3246 static void wl12xx_remove_vendor_ie(struct sk_buff
*skb
,
3247 unsigned int oui
, u8 oui_type
,
3251 const u8
*next
, *end
= skb
->data
+ skb
->len
;
3252 u8
*ie
= (u8
*)cfg80211_find_vendor_ie(oui
, oui_type
,
3253 skb
->data
+ ieoffset
,
3254 skb
->len
- ieoffset
);
3259 memmove(ie
, next
, end
- next
);
3260 skb_trim(skb
, skb
->len
- len
);
3263 static int wl1271_ap_set_probe_resp_tmpl(struct wl1271
*wl
, u32 rates
,
3264 struct ieee80211_vif
*vif
)
3266 struct sk_buff
*skb
;
3269 skb
= ieee80211_proberesp_get(wl
->hw
, vif
);
3273 ret
= wl1271_cmd_template_set(wl
,
3274 CMD_TEMPL_AP_PROBE_RESPONSE
,
3283 static int wl1271_ap_set_probe_resp_tmpl_legacy(struct wl1271
*wl
,
3284 struct ieee80211_vif
*vif
,
3286 size_t probe_rsp_len
,
3289 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3290 struct ieee80211_bss_conf
*bss_conf
= &vif
->bss_conf
;
3291 u8 probe_rsp_templ
[WL1271_CMD_TEMPL_MAX_SIZE
];
3292 int ssid_ie_offset
, ie_offset
, templ_len
;
3295 /* no need to change probe response if the SSID is set correctly */
3296 if (wlvif
->ssid_len
> 0)
3297 return wl1271_cmd_template_set(wl
,
3298 CMD_TEMPL_AP_PROBE_RESPONSE
,
3303 if (probe_rsp_len
+ bss_conf
->ssid_len
> WL1271_CMD_TEMPL_MAX_SIZE
) {
3304 wl1271_error("probe_rsp template too big");
3308 /* start searching from IE offset */
3309 ie_offset
= offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
);
3311 ptr
= cfg80211_find_ie(WLAN_EID_SSID
, probe_rsp_data
+ ie_offset
,
3312 probe_rsp_len
- ie_offset
);
3314 wl1271_error("No SSID in beacon!");
3318 ssid_ie_offset
= ptr
- probe_rsp_data
;
3319 ptr
+= (ptr
[1] + 2);
3321 memcpy(probe_rsp_templ
, probe_rsp_data
, ssid_ie_offset
);
3323 /* insert SSID from bss_conf */
3324 probe_rsp_templ
[ssid_ie_offset
] = WLAN_EID_SSID
;
3325 probe_rsp_templ
[ssid_ie_offset
+ 1] = bss_conf
->ssid_len
;
3326 memcpy(probe_rsp_templ
+ ssid_ie_offset
+ 2,
3327 bss_conf
->ssid
, bss_conf
->ssid_len
);
3328 templ_len
= ssid_ie_offset
+ 2 + bss_conf
->ssid_len
;
3330 memcpy(probe_rsp_templ
+ ssid_ie_offset
+ 2 + bss_conf
->ssid_len
,
3331 ptr
, probe_rsp_len
- (ptr
- probe_rsp_data
));
3332 templ_len
+= probe_rsp_len
- (ptr
- probe_rsp_data
);
3334 return wl1271_cmd_template_set(wl
,
3335 CMD_TEMPL_AP_PROBE_RESPONSE
,
3341 static int wl1271_bss_erp_info_changed(struct wl1271
*wl
,
3342 struct ieee80211_vif
*vif
,
3343 struct ieee80211_bss_conf
*bss_conf
,
3346 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3349 if (changed
& BSS_CHANGED_ERP_SLOT
) {
3350 if (bss_conf
->use_short_slot
)
3351 ret
= wl1271_acx_slot(wl
, wlvif
, SLOT_TIME_SHORT
);
3353 ret
= wl1271_acx_slot(wl
, wlvif
, SLOT_TIME_LONG
);
3355 wl1271_warning("Set slot time failed %d", ret
);
3360 if (changed
& BSS_CHANGED_ERP_PREAMBLE
) {
3361 if (bss_conf
->use_short_preamble
)
3362 wl1271_acx_set_preamble(wl
, wlvif
, ACX_PREAMBLE_SHORT
);
3364 wl1271_acx_set_preamble(wl
, wlvif
, ACX_PREAMBLE_LONG
);
3367 if (changed
& BSS_CHANGED_ERP_CTS_PROT
) {
3368 if (bss_conf
->use_cts_prot
)
3369 ret
= wl1271_acx_cts_protect(wl
, wlvif
,
3372 ret
= wl1271_acx_cts_protect(wl
, wlvif
,
3373 CTSPROTECT_DISABLE
);
3375 wl1271_warning("Set ctsprotect failed %d", ret
);
3384 static int wl1271_bss_beacon_info_changed(struct wl1271
*wl
,
3385 struct ieee80211_vif
*vif
,
3386 struct ieee80211_bss_conf
*bss_conf
,
3389 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3390 bool is_ap
= (wlvif
->bss_type
== BSS_TYPE_AP_BSS
);
3393 if ((changed
& BSS_CHANGED_BEACON_INT
)) {
3394 wl1271_debug(DEBUG_MASTER
, "beacon interval updated: %d",
3395 bss_conf
->beacon_int
);
3397 wlvif
->beacon_int
= bss_conf
->beacon_int
;
3400 if ((changed
& BSS_CHANGED_AP_PROBE_RESP
) && is_ap
) {
3401 u32 rate
= wl1271_tx_min_rate_get(wl
, wlvif
->basic_rate_set
);
3402 if (!wl1271_ap_set_probe_resp_tmpl(wl
, rate
, vif
)) {
3403 wl1271_debug(DEBUG_AP
, "probe response updated");
3404 set_bit(WLVIF_FLAG_AP_PROBE_RESP_SET
, &wlvif
->flags
);
3408 if ((changed
& BSS_CHANGED_BEACON
)) {
3409 struct ieee80211_hdr
*hdr
;
3411 int ieoffset
= offsetof(struct ieee80211_mgmt
,
3413 struct sk_buff
*beacon
= ieee80211_beacon_get(wl
->hw
, vif
);
3421 wl1271_debug(DEBUG_MASTER
, "beacon updated");
3423 ret
= wl1271_ssid_set(vif
, beacon
, ieoffset
);
3425 dev_kfree_skb(beacon
);
3428 min_rate
= wl1271_tx_min_rate_get(wl
, wlvif
->basic_rate_set
);
3429 tmpl_id
= is_ap
? CMD_TEMPL_AP_BEACON
:
3431 ret
= wl1271_cmd_template_set(wl
, tmpl_id
,
3436 dev_kfree_skb(beacon
);
3441 * In case we already have a probe-resp beacon set explicitly
3442 * by usermode, don't use the beacon data.
3444 if (test_bit(WLVIF_FLAG_AP_PROBE_RESP_SET
, &wlvif
->flags
))
3447 /* remove TIM ie from probe response */
3448 wl12xx_remove_ie(beacon
, WLAN_EID_TIM
, ieoffset
);
3451 * remove p2p ie from probe response.
3452 * the fw reponds to probe requests that don't include
3453 * the p2p ie. probe requests with p2p ie will be passed,
3454 * and will be responded by the supplicant (the spec
3455 * forbids including the p2p ie when responding to probe
3456 * requests that didn't include it).
3458 wl12xx_remove_vendor_ie(beacon
, WLAN_OUI_WFA
,
3459 WLAN_OUI_TYPE_WFA_P2P
, ieoffset
);
3461 hdr
= (struct ieee80211_hdr
*) beacon
->data
;
3462 hdr
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
3463 IEEE80211_STYPE_PROBE_RESP
);
3465 ret
= wl1271_ap_set_probe_resp_tmpl_legacy(wl
, vif
,
3470 ret
= wl1271_cmd_template_set(wl
,
3471 CMD_TEMPL_PROBE_RESPONSE
,
3476 dev_kfree_skb(beacon
);
3483 wl1271_error("beacon info change failed: %d", ret
);
3487 /* AP mode changes */
3488 static void wl1271_bss_info_changed_ap(struct wl1271
*wl
,
3489 struct ieee80211_vif
*vif
,
3490 struct ieee80211_bss_conf
*bss_conf
,
3493 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3496 if ((changed
& BSS_CHANGED_BASIC_RATES
)) {
3497 u32 rates
= bss_conf
->basic_rates
;
3499 wlvif
->basic_rate_set
= wl1271_tx_enabled_rates_get(wl
, rates
,
3501 wlvif
->basic_rate
= wl1271_tx_min_rate_get(wl
,
3502 wlvif
->basic_rate_set
);
3504 ret
= wl1271_init_ap_rates(wl
, wlvif
);
3506 wl1271_error("AP rate policy change failed %d", ret
);
3510 ret
= wl1271_ap_init_templates(wl
, vif
);
3515 ret
= wl1271_bss_beacon_info_changed(wl
, vif
, bss_conf
, changed
);
3519 if ((changed
& BSS_CHANGED_BEACON_ENABLED
)) {
3520 if (bss_conf
->enable_beacon
) {
3521 if (!test_bit(WLVIF_FLAG_AP_STARTED
, &wlvif
->flags
)) {
3522 ret
= wl12xx_cmd_role_start_ap(wl
, wlvif
);
3526 ret
= wl1271_ap_init_hwenc(wl
, wlvif
);
3530 set_bit(WLVIF_FLAG_AP_STARTED
, &wlvif
->flags
);
3531 wl1271_debug(DEBUG_AP
, "started AP");
3534 if (test_bit(WLVIF_FLAG_AP_STARTED
, &wlvif
->flags
)) {
3535 ret
= wl12xx_cmd_role_stop_ap(wl
, wlvif
);
3539 clear_bit(WLVIF_FLAG_AP_STARTED
, &wlvif
->flags
);
3540 clear_bit(WLVIF_FLAG_AP_PROBE_RESP_SET
,
3542 wl1271_debug(DEBUG_AP
, "stopped AP");
3547 ret
= wl1271_bss_erp_info_changed(wl
, vif
, bss_conf
, changed
);
3551 /* Handle HT information change */
3552 if ((changed
& BSS_CHANGED_HT
) &&
3553 (bss_conf
->channel_type
!= NL80211_CHAN_NO_HT
)) {
3554 ret
= wl1271_acx_set_ht_information(wl
, wlvif
,
3555 bss_conf
->ht_operation_mode
);
3557 wl1271_warning("Set ht information failed %d", ret
);
3566 /* STA/IBSS mode changes */
3567 static void wl1271_bss_info_changed_sta(struct wl1271
*wl
,
3568 struct ieee80211_vif
*vif
,
3569 struct ieee80211_bss_conf
*bss_conf
,
3572 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3573 bool do_join
= false, set_assoc
= false;
3574 bool is_ibss
= (wlvif
->bss_type
== BSS_TYPE_IBSS
);
3575 bool ibss_joined
= false;
3576 u32 sta_rate_set
= 0;
3578 struct ieee80211_sta
*sta
;
3579 bool sta_exists
= false;
3580 struct ieee80211_sta_ht_cap sta_ht_cap
;
3583 ret
= wl1271_bss_beacon_info_changed(wl
, vif
, bss_conf
,
3589 if (changed
& BSS_CHANGED_IBSS
) {
3590 if (bss_conf
->ibss_joined
) {
3591 set_bit(WLVIF_FLAG_IBSS_JOINED
, &wlvif
->flags
);
3594 if (test_and_clear_bit(WLVIF_FLAG_IBSS_JOINED
,
3596 wl1271_unjoin(wl
, wlvif
);
3597 wl12xx_start_dev(wl
, wlvif
);
3602 if ((changed
& BSS_CHANGED_BEACON_INT
) && ibss_joined
)
3605 /* Need to update the SSID (for filtering etc) */
3606 if ((changed
& BSS_CHANGED_BEACON
) && ibss_joined
)
3609 if ((changed
& BSS_CHANGED_BEACON_ENABLED
) && ibss_joined
) {
3610 wl1271_debug(DEBUG_ADHOC
, "ad-hoc beaconing: %s",
3611 bss_conf
->enable_beacon
? "enabled" : "disabled");
3616 if (changed
& BSS_CHANGED_IDLE
) {
3617 ret
= wl1271_sta_handle_idle(wl
, wlvif
, bss_conf
->idle
);
3619 wl1271_warning("idle mode change failed %d", ret
);
3622 if ((changed
& BSS_CHANGED_CQM
)) {
3623 bool enable
= false;
3624 if (bss_conf
->cqm_rssi_thold
)
3626 ret
= wl1271_acx_rssi_snr_trigger(wl
, wlvif
, enable
,
3627 bss_conf
->cqm_rssi_thold
,
3628 bss_conf
->cqm_rssi_hyst
);
3631 wlvif
->rssi_thold
= bss_conf
->cqm_rssi_thold
;
3634 if (changed
& BSS_CHANGED_BSSID
)
3635 if (!is_zero_ether_addr(bss_conf
->bssid
)) {
3636 ret
= wl12xx_cmd_build_null_data(wl
, wlvif
);
3640 ret
= wl1271_build_qos_null_data(wl
, vif
);
3644 /* Need to update the BSSID (for filtering etc) */
3648 if (changed
& (BSS_CHANGED_ASSOC
| BSS_CHANGED_HT
)) {
3650 sta
= ieee80211_find_sta(vif
, bss_conf
->bssid
);
3654 /* save the supp_rates of the ap */
3655 sta_rate_set
= sta
->supp_rates
[wl
->hw
->conf
.channel
->band
];
3656 if (sta
->ht_cap
.ht_supported
)
3658 (sta
->ht_cap
.mcs
.rx_mask
[0] << HW_HT_RATES_OFFSET
);
3659 sta_ht_cap
= sta
->ht_cap
;
3666 if ((changed
& BSS_CHANGED_ASSOC
)) {
3667 if (bss_conf
->assoc
) {
3670 wlvif
->aid
= bss_conf
->aid
;
3673 wlvif
->ps_poll_failures
= 0;
3676 * use basic rates from AP, and determine lowest rate
3677 * to use with control frames.
3679 rates
= bss_conf
->basic_rates
;
3680 wlvif
->basic_rate_set
=
3681 wl1271_tx_enabled_rates_get(wl
, rates
,
3684 wl1271_tx_min_rate_get(wl
,
3685 wlvif
->basic_rate_set
);
3688 wl1271_tx_enabled_rates_get(wl
,
3691 ret
= wl1271_acx_sta_rate_policies(wl
, wlvif
);
3696 * with wl1271, we don't need to update the
3697 * beacon_int and dtim_period, because the firmware
3698 * updates it by itself when the first beacon is
3699 * received after a join.
3701 ret
= wl1271_cmd_build_ps_poll(wl
, wlvif
, wlvif
->aid
);
3706 * Get a template for hardware connection maintenance
3708 dev_kfree_skb(wlvif
->probereq
);
3709 wlvif
->probereq
= wl1271_cmd_build_ap_probe_req(wl
,
3712 ieoffset
= offsetof(struct ieee80211_mgmt
,
3713 u
.probe_req
.variable
);
3714 wl1271_ssid_set(vif
, wlvif
->probereq
, ieoffset
);
3716 /* enable the connection monitoring feature */
3717 ret
= wl1271_acx_conn_monit_params(wl
, wlvif
, true);
3721 /* use defaults when not associated */
3723 !!test_and_clear_bit(WLVIF_FLAG_STA_ASSOCIATED
,
3726 !!test_and_clear_bit(WLVIF_FLAG_STA_STATE_SENT
,
3730 /* free probe-request template */
3731 dev_kfree_skb(wlvif
->probereq
);
3732 wlvif
->probereq
= NULL
;
3734 /* re-enable dynamic ps - just in case */
3735 ieee80211_enable_dyn_ps(vif
);
3737 /* revert back to minimum rates for the current band */
3738 wl1271_set_band_rate(wl
, wlvif
);
3740 wl1271_tx_min_rate_get(wl
,
3741 wlvif
->basic_rate_set
);
3742 ret
= wl1271_acx_sta_rate_policies(wl
, wlvif
);
3746 /* disable connection monitor features */
3747 ret
= wl1271_acx_conn_monit_params(wl
, wlvif
, false);
3749 /* Disable the keep-alive feature */
3750 ret
= wl1271_acx_keep_alive_mode(wl
, wlvif
, false);
3754 /* restore the bssid filter and go to dummy bssid */
3756 u32 conf_flags
= wl
->hw
->conf
.flags
;
3758 * we might have to disable roc, if there was
3759 * no IF_OPER_UP notification.
3762 ret
= wl12xx_croc(wl
, wlvif
->role_id
);
3767 * (we also need to disable roc in case of
3768 * roaming on the same channel. until we will
3769 * have a better flow...)
3771 if (test_bit(wlvif
->dev_role_id
, wl
->roc_map
)) {
3772 ret
= wl12xx_croc(wl
,
3773 wlvif
->dev_role_id
);
3778 wl1271_unjoin(wl
, wlvif
);
3779 if (!(conf_flags
& IEEE80211_CONF_IDLE
))
3780 wl12xx_start_dev(wl
, wlvif
);
3785 if (changed
& BSS_CHANGED_IBSS
) {
3786 wl1271_debug(DEBUG_ADHOC
, "ibss_joined: %d",
3787 bss_conf
->ibss_joined
);
3789 if (bss_conf
->ibss_joined
) {
3790 u32 rates
= bss_conf
->basic_rates
;
3791 wlvif
->basic_rate_set
=
3792 wl1271_tx_enabled_rates_get(wl
, rates
,
3795 wl1271_tx_min_rate_get(wl
,
3796 wlvif
->basic_rate_set
);
3798 /* by default, use 11b + OFDM rates */
3799 wlvif
->rate_set
= CONF_TX_IBSS_DEFAULT_RATES
;
3800 ret
= wl1271_acx_sta_rate_policies(wl
, wlvif
);
3806 ret
= wl1271_bss_erp_info_changed(wl
, vif
, bss_conf
, changed
);
3810 if (changed
& BSS_CHANGED_ARP_FILTER
) {
3811 __be32 addr
= bss_conf
->arp_addr_list
[0];
3812 WARN_ON(wlvif
->bss_type
!= BSS_TYPE_STA_BSS
);
3814 if (bss_conf
->arp_addr_cnt
== 1 &&
3815 bss_conf
->arp_filter_enabled
) {
3817 * The template should have been configured only upon
3818 * association. however, it seems that the correct ip
3819 * isn't being set (when sending), so we have to
3820 * reconfigure the template upon every ip change.
3822 ret
= wl1271_cmd_build_arp_rsp(wl
, wlvif
, addr
);
3824 wl1271_warning("build arp rsp failed: %d", ret
);
3828 ret
= wl1271_acx_arp_ip_filter(wl
, wlvif
,
3829 ACX_ARP_FILTER_ARP_FILTERING
,
3832 ret
= wl1271_acx_arp_ip_filter(wl
, wlvif
, 0, addr
);
3839 ret
= wl1271_join(wl
, wlvif
, set_assoc
);
3841 wl1271_warning("cmd join failed %d", ret
);
3845 /* ROC until connected (after EAPOL exchange) */
3847 ret
= wl12xx_roc(wl
, wlvif
, wlvif
->role_id
);
3851 wl1271_check_operstate(wl
, wlvif
,
3852 ieee80211_get_operstate(vif
));
3855 * stop device role if started (we might already be in
3858 if (wl12xx_dev_role_started(wlvif
)) {
3859 ret
= wl12xx_stop_dev(wl
, wlvif
);
3864 /* If we want to go in PSM but we're not there yet */
3865 if (test_bit(WLVIF_FLAG_PSM_REQUESTED
, &wlvif
->flags
) &&
3866 !test_bit(WLVIF_FLAG_PSM
, &wlvif
->flags
)) {
3867 enum wl1271_cmd_ps_mode mode
;
3869 mode
= STATION_POWER_SAVE_MODE
;
3870 ret
= wl1271_ps_set_mode(wl
, wlvif
, mode
,
3878 /* Handle new association with HT. Do this after join. */
3880 if ((changed
& BSS_CHANGED_HT
) &&
3881 (bss_conf
->channel_type
!= NL80211_CHAN_NO_HT
)) {
3882 ret
= wl1271_acx_set_ht_capabilities(wl
,
3887 wl1271_warning("Set ht cap true failed %d",
3892 /* handle new association without HT and disassociation */
3893 else if (changed
& BSS_CHANGED_ASSOC
) {
3894 ret
= wl1271_acx_set_ht_capabilities(wl
,
3899 wl1271_warning("Set ht cap false failed %d",
3906 /* Handle HT information change. Done after join. */
3907 if ((changed
& BSS_CHANGED_HT
) &&
3908 (bss_conf
->channel_type
!= NL80211_CHAN_NO_HT
)) {
3909 ret
= wl1271_acx_set_ht_information(wl
, wlvif
,
3910 bss_conf
->ht_operation_mode
);
3912 wl1271_warning("Set ht information failed %d", ret
);
3921 static void wl1271_op_bss_info_changed(struct ieee80211_hw
*hw
,
3922 struct ieee80211_vif
*vif
,
3923 struct ieee80211_bss_conf
*bss_conf
,
3926 struct wl1271
*wl
= hw
->priv
;
3927 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3928 bool is_ap
= (wlvif
->bss_type
== BSS_TYPE_AP_BSS
);
3931 wl1271_debug(DEBUG_MAC80211
, "mac80211 bss info changed 0x%x",
3934 mutex_lock(&wl
->mutex
);
3936 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
3939 if (unlikely(!test_bit(WLVIF_FLAG_INITIALIZED
, &wlvif
->flags
)))
3942 ret
= wl1271_ps_elp_wakeup(wl
);
3947 wl1271_bss_info_changed_ap(wl
, vif
, bss_conf
, changed
);
3949 wl1271_bss_info_changed_sta(wl
, vif
, bss_conf
, changed
);
3951 wl1271_ps_elp_sleep(wl
);
3954 mutex_unlock(&wl
->mutex
);
3957 static int wl1271_op_conf_tx(struct ieee80211_hw
*hw
,
3958 struct ieee80211_vif
*vif
, u16 queue
,
3959 const struct ieee80211_tx_queue_params
*params
)
3961 struct wl1271
*wl
= hw
->priv
;
3962 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
3966 mutex_lock(&wl
->mutex
);
3968 wl1271_debug(DEBUG_MAC80211
, "mac80211 conf tx %d", queue
);
3971 ps_scheme
= CONF_PS_SCHEME_UPSD_TRIGGER
;
3973 ps_scheme
= CONF_PS_SCHEME_LEGACY
;
3975 if (!test_bit(WLVIF_FLAG_INITIALIZED
, &wlvif
->flags
))
3978 ret
= wl1271_ps_elp_wakeup(wl
);
3983 * the txop is confed in units of 32us by the mac80211,
3986 ret
= wl1271_acx_ac_cfg(wl
, wlvif
, wl1271_tx_get_queue(queue
),
3987 params
->cw_min
, params
->cw_max
,
3988 params
->aifs
, params
->txop
<< 5);
3992 ret
= wl1271_acx_tid_cfg(wl
, wlvif
, wl1271_tx_get_queue(queue
),
3993 CONF_CHANNEL_TYPE_EDCF
,
3994 wl1271_tx_get_queue(queue
),
3995 ps_scheme
, CONF_ACK_POLICY_LEGACY
,
3999 wl1271_ps_elp_sleep(wl
);
4002 mutex_unlock(&wl
->mutex
);
4007 static u64
wl1271_op_get_tsf(struct ieee80211_hw
*hw
,
4008 struct ieee80211_vif
*vif
)
4011 struct wl1271
*wl
= hw
->priv
;
4012 u64 mactime
= ULLONG_MAX
;
4015 wl1271_debug(DEBUG_MAC80211
, "mac80211 get tsf");
4017 mutex_lock(&wl
->mutex
);
4019 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
4022 ret
= wl1271_ps_elp_wakeup(wl
);
4026 ret
= wl1271_acx_tsf_info(wl
, &mactime
);
4031 wl1271_ps_elp_sleep(wl
);
4034 mutex_unlock(&wl
->mutex
);
4038 static int wl1271_op_get_survey(struct ieee80211_hw
*hw
, int idx
,
4039 struct survey_info
*survey
)
4041 struct wl1271
*wl
= hw
->priv
;
4042 struct ieee80211_conf
*conf
= &hw
->conf
;
4047 survey
->channel
= conf
->channel
;
4048 survey
->filled
= SURVEY_INFO_NOISE_DBM
;
4049 survey
->noise
= wl
->noise
;
4054 static int wl1271_allocate_sta(struct wl1271
*wl
,
4055 struct wl12xx_vif
*wlvif
,
4056 struct ieee80211_sta
*sta
)
4058 struct wl1271_station
*wl_sta
;
4062 if (wl
->active_sta_count
>= AP_MAX_STATIONS
) {
4063 wl1271_warning("could not allocate HLID - too much stations");
4067 wl_sta
= (struct wl1271_station
*)sta
->drv_priv
;
4068 ret
= wl12xx_allocate_link(wl
, wlvif
, &wl_sta
->hlid
);
4070 wl1271_warning("could not allocate HLID - too many links");
4074 set_bit(wl_sta
->hlid
, wlvif
->ap
.sta_hlid_map
);
4075 memcpy(wl
->links
[wl_sta
->hlid
].addr
, sta
->addr
, ETH_ALEN
);
4076 wl
->active_sta_count
++;
4080 void wl1271_free_sta(struct wl1271
*wl
, struct wl12xx_vif
*wlvif
, u8 hlid
)
4082 if (!test_bit(hlid
, wlvif
->ap
.sta_hlid_map
))
4085 clear_bit(hlid
, wlvif
->ap
.sta_hlid_map
);
4086 memset(wl
->links
[hlid
].addr
, 0, ETH_ALEN
);
4087 wl
->links
[hlid
].ba_bitmap
= 0;
4088 wl1271_tx_reset_link_queues(wl
, hlid
);
4089 __clear_bit(hlid
, &wl
->ap_ps_map
);
4090 __clear_bit(hlid
, (unsigned long *)&wl
->ap_fw_ps_map
);
4091 wl12xx_free_link(wl
, wlvif
, &hlid
);
4092 wl
->active_sta_count
--;
4095 static int wl1271_op_sta_add(struct ieee80211_hw
*hw
,
4096 struct ieee80211_vif
*vif
,
4097 struct ieee80211_sta
*sta
)
4099 struct wl1271
*wl
= hw
->priv
;
4100 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
4101 struct wl1271_station
*wl_sta
;
4105 mutex_lock(&wl
->mutex
);
4107 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
4110 if (wlvif
->bss_type
!= BSS_TYPE_AP_BSS
)
4113 wl1271_debug(DEBUG_MAC80211
, "mac80211 add sta %d", (int)sta
->aid
);
4115 ret
= wl1271_allocate_sta(wl
, wlvif
, sta
);
4119 wl_sta
= (struct wl1271_station
*)sta
->drv_priv
;
4120 hlid
= wl_sta
->hlid
;
4122 ret
= wl1271_ps_elp_wakeup(wl
);
4126 ret
= wl12xx_cmd_add_peer(wl
, wlvif
, sta
, hlid
);
4130 ret
= wl12xx_cmd_set_peer_state(wl
, hlid
);
4134 ret
= wl1271_acx_set_ht_capabilities(wl
, &sta
->ht_cap
, true, hlid
);
4139 wl1271_ps_elp_sleep(wl
);
4143 wl1271_free_sta(wl
, wlvif
, hlid
);
4146 mutex_unlock(&wl
->mutex
);
4150 static int wl1271_op_sta_remove(struct ieee80211_hw
*hw
,
4151 struct ieee80211_vif
*vif
,
4152 struct ieee80211_sta
*sta
)
4154 struct wl1271
*wl
= hw
->priv
;
4155 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
4156 struct wl1271_station
*wl_sta
;
4159 mutex_lock(&wl
->mutex
);
4161 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
4164 if (wlvif
->bss_type
!= BSS_TYPE_AP_BSS
)
4167 wl1271_debug(DEBUG_MAC80211
, "mac80211 remove sta %d", (int)sta
->aid
);
4169 wl_sta
= (struct wl1271_station
*)sta
->drv_priv
;
4171 if (WARN_ON(!test_bit(id
, wlvif
->ap
.sta_hlid_map
)))
4174 ret
= wl1271_ps_elp_wakeup(wl
);
4178 ret
= wl12xx_cmd_remove_peer(wl
, wl_sta
->hlid
);
4182 wl1271_free_sta(wl
, wlvif
, wl_sta
->hlid
);
4185 wl1271_ps_elp_sleep(wl
);
4188 mutex_unlock(&wl
->mutex
);
4192 static int wl1271_op_ampdu_action(struct ieee80211_hw
*hw
,
4193 struct ieee80211_vif
*vif
,
4194 enum ieee80211_ampdu_mlme_action action
,
4195 struct ieee80211_sta
*sta
, u16 tid
, u16
*ssn
,
4198 struct wl1271
*wl
= hw
->priv
;
4199 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
4201 u8 hlid
, *ba_bitmap
;
4203 wl1271_debug(DEBUG_MAC80211
, "mac80211 ampdu action %d tid %d", action
,
4206 /* sanity check - the fields in FW are only 8bits wide */
4207 if (WARN_ON(tid
> 0xFF))
4210 mutex_lock(&wl
->mutex
);
4212 if (unlikely(wl
->state
== WL1271_STATE_OFF
)) {
4217 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
) {
4218 hlid
= wlvif
->sta
.hlid
;
4219 ba_bitmap
= &wlvif
->sta
.ba_rx_bitmap
;
4220 } else if (wlvif
->bss_type
== BSS_TYPE_AP_BSS
) {
4221 struct wl1271_station
*wl_sta
;
4223 wl_sta
= (struct wl1271_station
*)sta
->drv_priv
;
4224 hlid
= wl_sta
->hlid
;
4225 ba_bitmap
= &wl
->links
[hlid
].ba_bitmap
;
4231 ret
= wl1271_ps_elp_wakeup(wl
);
4235 wl1271_debug(DEBUG_MAC80211
, "mac80211 ampdu: Rx tid %d action %d",
4239 case IEEE80211_AMPDU_RX_START
:
4240 if (!wlvif
->ba_support
|| !wlvif
->ba_allowed
) {
4245 if (wl
->ba_rx_session_count
>= RX_BA_MAX_SESSIONS
) {
4247 wl1271_error("exceeded max RX BA sessions");
4251 if (*ba_bitmap
& BIT(tid
)) {
4253 wl1271_error("cannot enable RX BA session on active "
4258 ret
= wl12xx_acx_set_ba_receiver_session(wl
, tid
, *ssn
, true,
4261 *ba_bitmap
|= BIT(tid
);
4262 wl
->ba_rx_session_count
++;
4266 case IEEE80211_AMPDU_RX_STOP
:
4267 if (!(*ba_bitmap
& BIT(tid
))) {
4269 wl1271_error("no active RX BA session on tid: %d",
4274 ret
= wl12xx_acx_set_ba_receiver_session(wl
, tid
, 0, false,
4277 *ba_bitmap
&= ~BIT(tid
);
4278 wl
->ba_rx_session_count
--;
4283 * The BA initiator session management in FW independently.
4284 * Falling break here on purpose for all TX APDU commands.
4286 case IEEE80211_AMPDU_TX_START
:
4287 case IEEE80211_AMPDU_TX_STOP
:
4288 case IEEE80211_AMPDU_TX_OPERATIONAL
:
4293 wl1271_error("Incorrect ampdu action id=%x\n", action
);
4297 wl1271_ps_elp_sleep(wl
);
4300 mutex_unlock(&wl
->mutex
);
4305 static int wl12xx_set_bitrate_mask(struct ieee80211_hw
*hw
,
4306 struct ieee80211_vif
*vif
,
4307 const struct cfg80211_bitrate_mask
*mask
)
4309 struct wl12xx_vif
*wlvif
= wl12xx_vif_to_data(vif
);
4310 struct wl1271
*wl
= hw
->priv
;
4313 wl1271_debug(DEBUG_MAC80211
, "mac80211 set_bitrate_mask 0x%x 0x%x",
4314 mask
->control
[NL80211_BAND_2GHZ
].legacy
,
4315 mask
->control
[NL80211_BAND_5GHZ
].legacy
);
4317 mutex_lock(&wl
->mutex
);
4319 for (i
= 0; i
< IEEE80211_NUM_BANDS
; i
++)
4320 wlvif
->bitrate_masks
[i
] =
4321 wl1271_tx_enabled_rates_get(wl
,
4322 mask
->control
[i
].legacy
,
4325 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
4328 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
&&
4329 !test_bit(WLVIF_FLAG_STA_ASSOCIATED
, &wlvif
->flags
)) {
4331 ret
= wl1271_ps_elp_wakeup(wl
);
4335 wl1271_set_band_rate(wl
, wlvif
);
4337 wl1271_tx_min_rate_get(wl
, wlvif
->basic_rate_set
);
4338 ret
= wl1271_acx_sta_rate_policies(wl
, wlvif
);
4340 wl1271_ps_elp_sleep(wl
);
4343 mutex_unlock(&wl
->mutex
);
4348 static void wl12xx_op_channel_switch(struct ieee80211_hw
*hw
,
4349 struct ieee80211_channel_switch
*ch_switch
)
4351 struct wl1271
*wl
= hw
->priv
;
4352 struct wl12xx_vif
*wlvif
;
4355 wl1271_debug(DEBUG_MAC80211
, "mac80211 channel switch");
4357 mutex_lock(&wl
->mutex
);
4359 if (unlikely(wl
->state
== WL1271_STATE_OFF
)) {
4360 wl12xx_for_each_wlvif_sta(wl
, wlvif
) {
4361 struct ieee80211_vif
*vif
= wl12xx_wlvif_to_vif(wlvif
);
4362 ieee80211_chswitch_done(vif
, false);
4367 ret
= wl1271_ps_elp_wakeup(wl
);
4371 /* TODO: change mac80211 to pass vif as param */
4372 wl12xx_for_each_wlvif_sta(wl
, wlvif
) {
4373 ret
= wl12xx_cmd_channel_switch(wl
, ch_switch
);
4376 set_bit(WLVIF_FLAG_CS_PROGRESS
, &wlvif
->flags
);
4379 wl1271_ps_elp_sleep(wl
);
4382 mutex_unlock(&wl
->mutex
);
4385 static bool wl1271_tx_frames_pending(struct ieee80211_hw
*hw
)
4387 struct wl1271
*wl
= hw
->priv
;
4390 mutex_lock(&wl
->mutex
);
4392 if (unlikely(wl
->state
== WL1271_STATE_OFF
))
4395 /* packets are considered pending if in the TX queue or the FW */
4396 ret
= (wl1271_tx_total_queue_count(wl
) > 0) || (wl
->tx_frames_cnt
> 0);
4398 mutex_unlock(&wl
->mutex
);
4403 /* can't be const, mac80211 writes to this */
4404 static struct ieee80211_rate wl1271_rates
[] = {
4406 .hw_value
= CONF_HW_BIT_RATE_1MBPS
,
4407 .hw_value_short
= CONF_HW_BIT_RATE_1MBPS
, },
4409 .hw_value
= CONF_HW_BIT_RATE_2MBPS
,
4410 .hw_value_short
= CONF_HW_BIT_RATE_2MBPS
,
4411 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
4413 .hw_value
= CONF_HW_BIT_RATE_5_5MBPS
,
4414 .hw_value_short
= CONF_HW_BIT_RATE_5_5MBPS
,
4415 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
4417 .hw_value
= CONF_HW_BIT_RATE_11MBPS
,
4418 .hw_value_short
= CONF_HW_BIT_RATE_11MBPS
,
4419 .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
4421 .hw_value
= CONF_HW_BIT_RATE_6MBPS
,
4422 .hw_value_short
= CONF_HW_BIT_RATE_6MBPS
, },
4424 .hw_value
= CONF_HW_BIT_RATE_9MBPS
,
4425 .hw_value_short
= CONF_HW_BIT_RATE_9MBPS
, },
4427 .hw_value
= CONF_HW_BIT_RATE_12MBPS
,
4428 .hw_value_short
= CONF_HW_BIT_RATE_12MBPS
, },
4430 .hw_value
= CONF_HW_BIT_RATE_18MBPS
,
4431 .hw_value_short
= CONF_HW_BIT_RATE_18MBPS
, },
4433 .hw_value
= CONF_HW_BIT_RATE_24MBPS
,
4434 .hw_value_short
= CONF_HW_BIT_RATE_24MBPS
, },
4436 .hw_value
= CONF_HW_BIT_RATE_36MBPS
,
4437 .hw_value_short
= CONF_HW_BIT_RATE_36MBPS
, },
4439 .hw_value
= CONF_HW_BIT_RATE_48MBPS
,
4440 .hw_value_short
= CONF_HW_BIT_RATE_48MBPS
, },
4442 .hw_value
= CONF_HW_BIT_RATE_54MBPS
,
4443 .hw_value_short
= CONF_HW_BIT_RATE_54MBPS
, },
4446 /* can't be const, mac80211 writes to this */
4447 static struct ieee80211_channel wl1271_channels
[] = {
4448 { .hw_value
= 1, .center_freq
= 2412, .max_power
= 25 },
4449 { .hw_value
= 2, .center_freq
= 2417, .max_power
= 25 },
4450 { .hw_value
= 3, .center_freq
= 2422, .max_power
= 25 },
4451 { .hw_value
= 4, .center_freq
= 2427, .max_power
= 25 },
4452 { .hw_value
= 5, .center_freq
= 2432, .max_power
= 25 },
4453 { .hw_value
= 6, .center_freq
= 2437, .max_power
= 25 },
4454 { .hw_value
= 7, .center_freq
= 2442, .max_power
= 25 },
4455 { .hw_value
= 8, .center_freq
= 2447, .max_power
= 25 },
4456 { .hw_value
= 9, .center_freq
= 2452, .max_power
= 25 },
4457 { .hw_value
= 10, .center_freq
= 2457, .max_power
= 25 },
4458 { .hw_value
= 11, .center_freq
= 2462, .max_power
= 25 },
4459 { .hw_value
= 12, .center_freq
= 2467, .max_power
= 25 },
4460 { .hw_value
= 13, .center_freq
= 2472, .max_power
= 25 },
4461 { .hw_value
= 14, .center_freq
= 2484, .max_power
= 25 },
4464 /* mapping to indexes for wl1271_rates */
4465 static const u8 wl1271_rate_to_idx_2ghz
[] = {
4466 /* MCS rates are used only with 11n */
4467 7, /* CONF_HW_RXTX_RATE_MCS7 */
4468 6, /* CONF_HW_RXTX_RATE_MCS6 */
4469 5, /* CONF_HW_RXTX_RATE_MCS5 */
4470 4, /* CONF_HW_RXTX_RATE_MCS4 */
4471 3, /* CONF_HW_RXTX_RATE_MCS3 */
4472 2, /* CONF_HW_RXTX_RATE_MCS2 */
4473 1, /* CONF_HW_RXTX_RATE_MCS1 */
4474 0, /* CONF_HW_RXTX_RATE_MCS0 */
4476 11, /* CONF_HW_RXTX_RATE_54 */
4477 10, /* CONF_HW_RXTX_RATE_48 */
4478 9, /* CONF_HW_RXTX_RATE_36 */
4479 8, /* CONF_HW_RXTX_RATE_24 */
4481 /* TI-specific rate */
4482 CONF_HW_RXTX_RATE_UNSUPPORTED
, /* CONF_HW_RXTX_RATE_22 */
4484 7, /* CONF_HW_RXTX_RATE_18 */
4485 6, /* CONF_HW_RXTX_RATE_12 */
4486 3, /* CONF_HW_RXTX_RATE_11 */
4487 5, /* CONF_HW_RXTX_RATE_9 */
4488 4, /* CONF_HW_RXTX_RATE_6 */
4489 2, /* CONF_HW_RXTX_RATE_5_5 */
4490 1, /* CONF_HW_RXTX_RATE_2 */
4491 0 /* CONF_HW_RXTX_RATE_1 */
4494 /* 11n STA capabilities */
4495 #define HW_RX_HIGHEST_RATE 72
4497 #define WL12XX_HT_CAP { \
4498 .cap = IEEE80211_HT_CAP_GRN_FLD | IEEE80211_HT_CAP_SGI_20 | \
4499 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT), \
4500 .ht_supported = true, \
4501 .ampdu_factor = IEEE80211_HT_MAX_AMPDU_8K, \
4502 .ampdu_density = IEEE80211_HT_MPDU_DENSITY_8, \
4504 .rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, \
4505 .rx_highest = cpu_to_le16(HW_RX_HIGHEST_RATE), \
4506 .tx_params = IEEE80211_HT_MCS_TX_DEFINED, \
4510 /* can't be const, mac80211 writes to this */
4511 static struct ieee80211_supported_band wl1271_band_2ghz
= {
4512 .channels
= wl1271_channels
,
4513 .n_channels
= ARRAY_SIZE(wl1271_channels
),
4514 .bitrates
= wl1271_rates
,
4515 .n_bitrates
= ARRAY_SIZE(wl1271_rates
),
4516 .ht_cap
= WL12XX_HT_CAP
,
4519 /* 5 GHz data rates for WL1273 */
4520 static struct ieee80211_rate wl1271_rates_5ghz
[] = {
4522 .hw_value
= CONF_HW_BIT_RATE_6MBPS
,
4523 .hw_value_short
= CONF_HW_BIT_RATE_6MBPS
, },
4525 .hw_value
= CONF_HW_BIT_RATE_9MBPS
,
4526 .hw_value_short
= CONF_HW_BIT_RATE_9MBPS
, },
4528 .hw_value
= CONF_HW_BIT_RATE_12MBPS
,
4529 .hw_value_short
= CONF_HW_BIT_RATE_12MBPS
, },
4531 .hw_value
= CONF_HW_BIT_RATE_18MBPS
,
4532 .hw_value_short
= CONF_HW_BIT_RATE_18MBPS
, },
4534 .hw_value
= CONF_HW_BIT_RATE_24MBPS
,
4535 .hw_value_short
= CONF_HW_BIT_RATE_24MBPS
, },
4537 .hw_value
= CONF_HW_BIT_RATE_36MBPS
,
4538 .hw_value_short
= CONF_HW_BIT_RATE_36MBPS
, },
4540 .hw_value
= CONF_HW_BIT_RATE_48MBPS
,
4541 .hw_value_short
= CONF_HW_BIT_RATE_48MBPS
, },
4543 .hw_value
= CONF_HW_BIT_RATE_54MBPS
,
4544 .hw_value_short
= CONF_HW_BIT_RATE_54MBPS
, },
4547 /* 5 GHz band channels for WL1273 */
4548 static struct ieee80211_channel wl1271_channels_5ghz
[] = {
4549 { .hw_value
= 7, .center_freq
= 5035, .max_power
= 25 },
4550 { .hw_value
= 8, .center_freq
= 5040, .max_power
= 25 },
4551 { .hw_value
= 9, .center_freq
= 5045, .max_power
= 25 },
4552 { .hw_value
= 11, .center_freq
= 5055, .max_power
= 25 },
4553 { .hw_value
= 12, .center_freq
= 5060, .max_power
= 25 },
4554 { .hw_value
= 16, .center_freq
= 5080, .max_power
= 25 },
4555 { .hw_value
= 34, .center_freq
= 5170, .max_power
= 25 },
4556 { .hw_value
= 36, .center_freq
= 5180, .max_power
= 25 },
4557 { .hw_value
= 38, .center_freq
= 5190, .max_power
= 25 },
4558 { .hw_value
= 40, .center_freq
= 5200, .max_power
= 25 },
4559 { .hw_value
= 42, .center_freq
= 5210, .max_power
= 25 },
4560 { .hw_value
= 44, .center_freq
= 5220, .max_power
= 25 },
4561 { .hw_value
= 46, .center_freq
= 5230, .max_power
= 25 },
4562 { .hw_value
= 48, .center_freq
= 5240, .max_power
= 25 },
4563 { .hw_value
= 52, .center_freq
= 5260, .max_power
= 25 },
4564 { .hw_value
= 56, .center_freq
= 5280, .max_power
= 25 },
4565 { .hw_value
= 60, .center_freq
= 5300, .max_power
= 25 },
4566 { .hw_value
= 64, .center_freq
= 5320, .max_power
= 25 },
4567 { .hw_value
= 100, .center_freq
= 5500, .max_power
= 25 },
4568 { .hw_value
= 104, .center_freq
= 5520, .max_power
= 25 },
4569 { .hw_value
= 108, .center_freq
= 5540, .max_power
= 25 },
4570 { .hw_value
= 112, .center_freq
= 5560, .max_power
= 25 },
4571 { .hw_value
= 116, .center_freq
= 5580, .max_power
= 25 },
4572 { .hw_value
= 120, .center_freq
= 5600, .max_power
= 25 },
4573 { .hw_value
= 124, .center_freq
= 5620, .max_power
= 25 },
4574 { .hw_value
= 128, .center_freq
= 5640, .max_power
= 25 },
4575 { .hw_value
= 132, .center_freq
= 5660, .max_power
= 25 },
4576 { .hw_value
= 136, .center_freq
= 5680, .max_power
= 25 },
4577 { .hw_value
= 140, .center_freq
= 5700, .max_power
= 25 },
4578 { .hw_value
= 149, .center_freq
= 5745, .max_power
= 25 },
4579 { .hw_value
= 153, .center_freq
= 5765, .max_power
= 25 },
4580 { .hw_value
= 157, .center_freq
= 5785, .max_power
= 25 },
4581 { .hw_value
= 161, .center_freq
= 5805, .max_power
= 25 },
4582 { .hw_value
= 165, .center_freq
= 5825, .max_power
= 25 },
4585 /* mapping to indexes for wl1271_rates_5ghz */
4586 static const u8 wl1271_rate_to_idx_5ghz
[] = {
4587 /* MCS rates are used only with 11n */
4588 7, /* CONF_HW_RXTX_RATE_MCS7 */
4589 6, /* CONF_HW_RXTX_RATE_MCS6 */
4590 5, /* CONF_HW_RXTX_RATE_MCS5 */
4591 4, /* CONF_HW_RXTX_RATE_MCS4 */
4592 3, /* CONF_HW_RXTX_RATE_MCS3 */
4593 2, /* CONF_HW_RXTX_RATE_MCS2 */
4594 1, /* CONF_HW_RXTX_RATE_MCS1 */
4595 0, /* CONF_HW_RXTX_RATE_MCS0 */
4597 7, /* CONF_HW_RXTX_RATE_54 */
4598 6, /* CONF_HW_RXTX_RATE_48 */
4599 5, /* CONF_HW_RXTX_RATE_36 */
4600 4, /* CONF_HW_RXTX_RATE_24 */
4602 /* TI-specific rate */
4603 CONF_HW_RXTX_RATE_UNSUPPORTED
, /* CONF_HW_RXTX_RATE_22 */
4605 3, /* CONF_HW_RXTX_RATE_18 */
4606 2, /* CONF_HW_RXTX_RATE_12 */
4607 CONF_HW_RXTX_RATE_UNSUPPORTED
, /* CONF_HW_RXTX_RATE_11 */
4608 1, /* CONF_HW_RXTX_RATE_9 */
4609 0, /* CONF_HW_RXTX_RATE_6 */
4610 CONF_HW_RXTX_RATE_UNSUPPORTED
, /* CONF_HW_RXTX_RATE_5_5 */
4611 CONF_HW_RXTX_RATE_UNSUPPORTED
, /* CONF_HW_RXTX_RATE_2 */
4612 CONF_HW_RXTX_RATE_UNSUPPORTED
/* CONF_HW_RXTX_RATE_1 */
4615 static struct ieee80211_supported_band wl1271_band_5ghz
= {
4616 .channels
= wl1271_channels_5ghz
,
4617 .n_channels
= ARRAY_SIZE(wl1271_channels_5ghz
),
4618 .bitrates
= wl1271_rates_5ghz
,
4619 .n_bitrates
= ARRAY_SIZE(wl1271_rates_5ghz
),
4620 .ht_cap
= WL12XX_HT_CAP
,
4623 static const u8
*wl1271_band_rate_to_idx
[] = {
4624 [IEEE80211_BAND_2GHZ
] = wl1271_rate_to_idx_2ghz
,
4625 [IEEE80211_BAND_5GHZ
] = wl1271_rate_to_idx_5ghz
4628 static const struct ieee80211_ops wl1271_ops
= {
4629 .start
= wl1271_op_start
,
4630 .stop
= wl1271_op_stop
,
4631 .add_interface
= wl1271_op_add_interface
,
4632 .remove_interface
= wl1271_op_remove_interface
,
4633 .change_interface
= wl12xx_op_change_interface
,
4635 .suspend
= wl1271_op_suspend
,
4636 .resume
= wl1271_op_resume
,
4638 .config
= wl1271_op_config
,
4639 .prepare_multicast
= wl1271_op_prepare_multicast
,
4640 .configure_filter
= wl1271_op_configure_filter
,
4642 .set_key
= wl1271_op_set_key
,
4643 .hw_scan
= wl1271_op_hw_scan
,
4644 .cancel_hw_scan
= wl1271_op_cancel_hw_scan
,
4645 .sched_scan_start
= wl1271_op_sched_scan_start
,
4646 .sched_scan_stop
= wl1271_op_sched_scan_stop
,
4647 .bss_info_changed
= wl1271_op_bss_info_changed
,
4648 .set_frag_threshold
= wl1271_op_set_frag_threshold
,
4649 .set_rts_threshold
= wl1271_op_set_rts_threshold
,
4650 .conf_tx
= wl1271_op_conf_tx
,
4651 .get_tsf
= wl1271_op_get_tsf
,
4652 .get_survey
= wl1271_op_get_survey
,
4653 .sta_add
= wl1271_op_sta_add
,
4654 .sta_remove
= wl1271_op_sta_remove
,
4655 .ampdu_action
= wl1271_op_ampdu_action
,
4656 .tx_frames_pending
= wl1271_tx_frames_pending
,
4657 .set_bitrate_mask
= wl12xx_set_bitrate_mask
,
4658 .channel_switch
= wl12xx_op_channel_switch
,
4659 CFG80211_TESTMODE_CMD(wl1271_tm_cmd
)
4663 u8
wl1271_rate_to_idx(int rate
, enum ieee80211_band band
)
4667 BUG_ON(band
>= sizeof(wl1271_band_rate_to_idx
)/sizeof(u8
*));
4669 if (unlikely(rate
>= CONF_HW_RXTX_RATE_MAX
)) {
4670 wl1271_error("Illegal RX rate from HW: %d", rate
);
4674 idx
= wl1271_band_rate_to_idx
[band
][rate
];
4675 if (unlikely(idx
== CONF_HW_RXTX_RATE_UNSUPPORTED
)) {
4676 wl1271_error("Unsupported RX rate from HW: %d", rate
);
4683 static ssize_t
wl1271_sysfs_show_bt_coex_state(struct device
*dev
,
4684 struct device_attribute
*attr
,
4687 struct wl1271
*wl
= dev_get_drvdata(dev
);
4692 mutex_lock(&wl
->mutex
);
4693 len
= snprintf(buf
, len
, "%d\n\n0 - off\n1 - on\n",
4695 mutex_unlock(&wl
->mutex
);
4701 static ssize_t
wl1271_sysfs_store_bt_coex_state(struct device
*dev
,
4702 struct device_attribute
*attr
,
4703 const char *buf
, size_t count
)
4705 struct wl1271
*wl
= dev_get_drvdata(dev
);
4709 ret
= kstrtoul(buf
, 10, &res
);
4711 wl1271_warning("incorrect value written to bt_coex_mode");
4715 mutex_lock(&wl
->mutex
);
4719 if (res
== wl
->sg_enabled
)
4722 wl
->sg_enabled
= res
;
4724 if (wl
->state
== WL1271_STATE_OFF
)
4727 ret
= wl1271_ps_elp_wakeup(wl
);
4731 wl1271_acx_sg_enable(wl
, wl
->sg_enabled
);
4732 wl1271_ps_elp_sleep(wl
);
4735 mutex_unlock(&wl
->mutex
);
4739 static DEVICE_ATTR(bt_coex_state
, S_IRUGO
| S_IWUSR
,
4740 wl1271_sysfs_show_bt_coex_state
,
4741 wl1271_sysfs_store_bt_coex_state
);
4743 static ssize_t
wl1271_sysfs_show_hw_pg_ver(struct device
*dev
,
4744 struct device_attribute
*attr
,
4747 struct wl1271
*wl
= dev_get_drvdata(dev
);
4752 mutex_lock(&wl
->mutex
);
4753 if (wl
->hw_pg_ver
>= 0)
4754 len
= snprintf(buf
, len
, "%d\n", wl
->hw_pg_ver
);
4756 len
= snprintf(buf
, len
, "n/a\n");
4757 mutex_unlock(&wl
->mutex
);
4762 static DEVICE_ATTR(hw_pg_ver
, S_IRUGO
,
4763 wl1271_sysfs_show_hw_pg_ver
, NULL
);
4765 static ssize_t
wl1271_sysfs_read_fwlog(struct file
*filp
, struct kobject
*kobj
,
4766 struct bin_attribute
*bin_attr
,
4767 char *buffer
, loff_t pos
, size_t count
)
4769 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
4770 struct wl1271
*wl
= dev_get_drvdata(dev
);
4774 ret
= mutex_lock_interruptible(&wl
->mutex
);
4776 return -ERESTARTSYS
;
4778 /* Let only one thread read the log at a time, blocking others */
4779 while (wl
->fwlog_size
== 0) {
4782 prepare_to_wait_exclusive(&wl
->fwlog_waitq
,
4784 TASK_INTERRUPTIBLE
);
4786 if (wl
->fwlog_size
!= 0) {
4787 finish_wait(&wl
->fwlog_waitq
, &wait
);
4791 mutex_unlock(&wl
->mutex
);
4794 finish_wait(&wl
->fwlog_waitq
, &wait
);
4796 if (signal_pending(current
))
4797 return -ERESTARTSYS
;
4799 ret
= mutex_lock_interruptible(&wl
->mutex
);
4801 return -ERESTARTSYS
;
4804 /* Check if the fwlog is still valid */
4805 if (wl
->fwlog_size
< 0) {
4806 mutex_unlock(&wl
->mutex
);
4810 /* Seeking is not supported - old logs are not kept. Disregard pos. */
4811 len
= min(count
, (size_t)wl
->fwlog_size
);
4812 wl
->fwlog_size
-= len
;
4813 memcpy(buffer
, wl
->fwlog
, len
);
4815 /* Make room for new messages */
4816 memmove(wl
->fwlog
, wl
->fwlog
+ len
, wl
->fwlog_size
);
4818 mutex_unlock(&wl
->mutex
);
4823 static struct bin_attribute fwlog_attr
= {
4824 .attr
= {.name
= "fwlog", .mode
= S_IRUSR
},
4825 .read
= wl1271_sysfs_read_fwlog
,
4828 static int wl1271_register_hw(struct wl1271
*wl
)
4832 if (wl
->mac80211_registered
)
4835 ret
= wl1271_fetch_nvs(wl
);
4837 /* NOTE: The wl->nvs->nvs element must be first, in
4838 * order to simplify the casting, we assume it is at
4839 * the beginning of the wl->nvs structure.
4841 u8
*nvs_ptr
= (u8
*)wl
->nvs
;
4843 wl
->mac_addr
[0] = nvs_ptr
[11];
4844 wl
->mac_addr
[1] = nvs_ptr
[10];
4845 wl
->mac_addr
[2] = nvs_ptr
[6];
4846 wl
->mac_addr
[3] = nvs_ptr
[5];
4847 wl
->mac_addr
[4] = nvs_ptr
[4];
4848 wl
->mac_addr
[5] = nvs_ptr
[3];
4851 SET_IEEE80211_PERM_ADDR(wl
->hw
, wl
->mac_addr
);
4853 ret
= ieee80211_register_hw(wl
->hw
);
4855 wl1271_error("unable to register mac80211 hw: %d", ret
);
4859 wl
->mac80211_registered
= true;
4861 wl1271_debugfs_init(wl
);
4863 register_netdevice_notifier(&wl1271_dev_notifier
);
4865 wl1271_notice("loaded");
4870 static void wl1271_unregister_hw(struct wl1271
*wl
)
4872 if (wl
->state
== WL1271_STATE_PLT
)
4873 __wl1271_plt_stop(wl
);
4875 unregister_netdevice_notifier(&wl1271_dev_notifier
);
4876 ieee80211_unregister_hw(wl
->hw
);
4877 wl
->mac80211_registered
= false;
4881 static int wl1271_init_ieee80211(struct wl1271
*wl
)
4883 static const u32 cipher_suites
[] = {
4884 WLAN_CIPHER_SUITE_WEP40
,
4885 WLAN_CIPHER_SUITE_WEP104
,
4886 WLAN_CIPHER_SUITE_TKIP
,
4887 WLAN_CIPHER_SUITE_CCMP
,
4888 WL1271_CIPHER_SUITE_GEM
,
4891 /* The tx descriptor buffer and the TKIP space. */
4892 wl
->hw
->extra_tx_headroom
= WL1271_TKIP_IV_SPACE
+
4893 sizeof(struct wl1271_tx_hw_descr
);
4896 /* FIXME: find a proper value */
4897 wl
->hw
->channel_change_time
= 10000;
4898 wl
->hw
->max_listen_interval
= wl
->conf
.conn
.max_listen_interval
;
4900 wl
->hw
->flags
= IEEE80211_HW_SIGNAL_DBM
|
4901 IEEE80211_HW_BEACON_FILTER
|
4902 IEEE80211_HW_SUPPORTS_PS
|
4903 IEEE80211_HW_SUPPORTS_UAPSD
|
4904 IEEE80211_HW_HAS_RATE_CONTROL
|
4905 IEEE80211_HW_CONNECTION_MONITOR
|
4906 IEEE80211_HW_SUPPORTS_CQM_RSSI
|
4907 IEEE80211_HW_REPORTS_TX_ACK_STATUS
|
4908 IEEE80211_HW_SPECTRUM_MGMT
|
4909 IEEE80211_HW_AP_LINK_PS
|
4910 IEEE80211_HW_AMPDU_AGGREGATION
|
4911 IEEE80211_HW_TX_AMPDU_SETUP_IN_HW
;
4913 wl
->hw
->wiphy
->cipher_suites
= cipher_suites
;
4914 wl
->hw
->wiphy
->n_cipher_suites
= ARRAY_SIZE(cipher_suites
);
4916 wl
->hw
->wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
) |
4917 BIT(NL80211_IFTYPE_ADHOC
) | BIT(NL80211_IFTYPE_AP
) |
4918 BIT(NL80211_IFTYPE_P2P_CLIENT
) | BIT(NL80211_IFTYPE_P2P_GO
);
4919 wl
->hw
->wiphy
->max_scan_ssids
= 1;
4920 wl
->hw
->wiphy
->max_sched_scan_ssids
= 16;
4921 wl
->hw
->wiphy
->max_match_sets
= 16;
4923 * Maximum length of elements in scanning probe request templates
4924 * should be the maximum length possible for a template, without
4925 * the IEEE80211 header of the template
4927 wl
->hw
->wiphy
->max_scan_ie_len
= WL1271_CMD_TEMPL_DFLT_SIZE
-
4928 sizeof(struct ieee80211_header
);
4930 wl
->hw
->wiphy
->max_sched_scan_ie_len
= WL1271_CMD_TEMPL_DFLT_SIZE
-
4931 sizeof(struct ieee80211_header
);
4933 wl
->hw
->wiphy
->flags
|= WIPHY_FLAG_AP_UAPSD
;
4935 /* make sure all our channels fit in the scanned_ch bitmask */
4936 BUILD_BUG_ON(ARRAY_SIZE(wl1271_channels
) +
4937 ARRAY_SIZE(wl1271_channels_5ghz
) >
4938 WL1271_MAX_CHANNELS
);
4940 * We keep local copies of the band structs because we need to
4941 * modify them on a per-device basis.
4943 memcpy(&wl
->bands
[IEEE80211_BAND_2GHZ
], &wl1271_band_2ghz
,
4944 sizeof(wl1271_band_2ghz
));
4945 memcpy(&wl
->bands
[IEEE80211_BAND_5GHZ
], &wl1271_band_5ghz
,
4946 sizeof(wl1271_band_5ghz
));
4948 wl
->hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] =
4949 &wl
->bands
[IEEE80211_BAND_2GHZ
];
4950 wl
->hw
->wiphy
->bands
[IEEE80211_BAND_5GHZ
] =
4951 &wl
->bands
[IEEE80211_BAND_5GHZ
];
4954 wl
->hw
->max_rates
= 1;
4956 wl
->hw
->wiphy
->reg_notifier
= wl1271_reg_notify
;
4958 /* the FW answers probe-requests in AP-mode */
4959 wl
->hw
->wiphy
->flags
|= WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
;
4960 wl
->hw
->wiphy
->probe_resp_offload
=
4961 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS
|
4962 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2
|
4963 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P
;
4965 SET_IEEE80211_DEV(wl
->hw
, wl
->dev
);
4967 wl
->hw
->sta_data_size
= sizeof(struct wl1271_station
);
4968 wl
->hw
->vif_data_size
= sizeof(struct wl12xx_vif
);
4970 wl
->hw
->max_rx_aggregation_subframes
= 8;
4975 #define WL1271_DEFAULT_CHANNEL 0
4977 static struct ieee80211_hw
*wl1271_alloc_hw(void)
4979 struct ieee80211_hw
*hw
;
4984 BUILD_BUG_ON(AP_MAX_STATIONS
> WL12XX_MAX_LINKS
);
4986 hw
= ieee80211_alloc_hw(sizeof(*wl
), &wl1271_ops
);
4988 wl1271_error("could not alloc ieee80211_hw");
4994 memset(wl
, 0, sizeof(*wl
));
4996 INIT_LIST_HEAD(&wl
->list
);
4997 INIT_LIST_HEAD(&wl
->wlvif_list
);
5001 for (i
= 0; i
< NUM_TX_QUEUES
; i
++)
5002 for (j
= 0; j
< WL12XX_MAX_LINKS
; j
++)
5003 skb_queue_head_init(&wl
->links
[j
].tx_queue
[i
]);
5005 skb_queue_head_init(&wl
->deferred_rx_queue
);
5006 skb_queue_head_init(&wl
->deferred_tx_queue
);
5008 INIT_DELAYED_WORK(&wl
->elp_work
, wl1271_elp_work
);
5009 INIT_WORK(&wl
->netstack_work
, wl1271_netstack_work
);
5010 INIT_WORK(&wl
->tx_work
, wl1271_tx_work
);
5011 INIT_WORK(&wl
->recovery_work
, wl1271_recovery_work
);
5012 INIT_DELAYED_WORK(&wl
->scan_complete_work
, wl1271_scan_complete_work
);
5014 wl
->freezable_wq
= create_freezable_workqueue("wl12xx_wq");
5015 if (!wl
->freezable_wq
) {
5020 wl
->channel
= WL1271_DEFAULT_CHANNEL
;
5022 wl
->power_level
= WL1271_DEFAULT_POWER_LEVEL
;
5023 wl
->band
= IEEE80211_BAND_2GHZ
;
5026 wl
->sg_enabled
= true;
5029 wl
->ap_fw_ps_map
= 0;
5031 wl
->platform_quirks
= 0;
5032 wl
->sched_scanning
= false;
5033 wl
->tx_spare_blocks
= TX_HW_BLOCK_SPARE_DEFAULT
;
5034 wl
->system_hlid
= WL12XX_SYSTEM_HLID
;
5035 wl
->active_sta_count
= 0;
5037 init_waitqueue_head(&wl
->fwlog_waitq
);
5039 /* The system link is always allocated */
5040 __set_bit(WL12XX_SYSTEM_HLID
, wl
->links_map
);
5042 memset(wl
->tx_frames_map
, 0, sizeof(wl
->tx_frames_map
));
5043 for (i
= 0; i
< ACX_TX_DESCRIPTORS
; i
++)
5044 wl
->tx_frames
[i
] = NULL
;
5046 spin_lock_init(&wl
->wl_lock
);
5048 wl
->state
= WL1271_STATE_OFF
;
5049 mutex_init(&wl
->mutex
);
5051 /* Apply default driver configuration. */
5052 wl1271_conf_init(wl
);
5054 order
= get_order(WL1271_AGGR_BUFFER_SIZE
);
5055 wl
->aggr_buf
= (u8
*)__get_free_pages(GFP_KERNEL
, order
);
5056 if (!wl
->aggr_buf
) {
5061 wl
->dummy_packet
= wl12xx_alloc_dummy_packet(wl
);
5062 if (!wl
->dummy_packet
) {
5067 /* Allocate one page for the FW log */
5068 wl
->fwlog
= (u8
*)get_zeroed_page(GFP_KERNEL
);
5071 goto err_dummy_packet
;
5077 dev_kfree_skb(wl
->dummy_packet
);
5080 free_pages((unsigned long)wl
->aggr_buf
, order
);
5083 destroy_workqueue(wl
->freezable_wq
);
5086 wl1271_debugfs_exit(wl
);
5087 ieee80211_free_hw(hw
);
5091 return ERR_PTR(ret
);
5094 static int wl1271_free_hw(struct wl1271
*wl
)
5096 /* Unblock any fwlog readers */
5097 mutex_lock(&wl
->mutex
);
5098 wl
->fwlog_size
= -1;
5099 wake_up_interruptible_all(&wl
->fwlog_waitq
);
5100 mutex_unlock(&wl
->mutex
);
5102 device_remove_bin_file(wl
->dev
, &fwlog_attr
);
5104 device_remove_file(wl
->dev
, &dev_attr_hw_pg_ver
);
5106 device_remove_file(wl
->dev
, &dev_attr_bt_coex_state
);
5107 free_page((unsigned long)wl
->fwlog
);
5108 dev_kfree_skb(wl
->dummy_packet
);
5109 free_pages((unsigned long)wl
->aggr_buf
,
5110 get_order(WL1271_AGGR_BUFFER_SIZE
));
5112 wl1271_debugfs_exit(wl
);
5119 kfree(wl
->fw_status
);
5120 kfree(wl
->tx_res_if
);
5121 destroy_workqueue(wl
->freezable_wq
);
5123 ieee80211_free_hw(wl
->hw
);
5128 static irqreturn_t
wl12xx_hardirq(int irq
, void *cookie
)
5130 struct wl1271
*wl
= cookie
;
5131 unsigned long flags
;
5133 wl1271_debug(DEBUG_IRQ
, "IRQ");
5135 /* complete the ELP completion */
5136 spin_lock_irqsave(&wl
->wl_lock
, flags
);
5137 set_bit(WL1271_FLAG_IRQ_RUNNING
, &wl
->flags
);
5138 if (wl
->elp_compl
) {
5139 complete(wl
->elp_compl
);
5140 wl
->elp_compl
= NULL
;
5143 if (test_bit(WL1271_FLAG_SUSPENDED
, &wl
->flags
)) {
5144 /* don't enqueue a work right now. mark it as pending */
5145 set_bit(WL1271_FLAG_PENDING_WORK
, &wl
->flags
);
5146 wl1271_debug(DEBUG_IRQ
, "should not enqueue work");
5147 disable_irq_nosync(wl
->irq
);
5148 pm_wakeup_event(wl
->dev
, 0);
5149 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
5152 spin_unlock_irqrestore(&wl
->wl_lock
, flags
);
5154 return IRQ_WAKE_THREAD
;
5157 static int __devinit
wl12xx_probe(struct platform_device
*pdev
)
5159 struct wl12xx_platform_data
*pdata
= pdev
->dev
.platform_data
;
5160 struct ieee80211_hw
*hw
;
5162 unsigned long irqflags
;
5165 hw
= wl1271_alloc_hw();
5167 wl1271_error("can't allocate hw");
5173 wl
->irq
= platform_get_irq(pdev
, 0);
5174 wl
->ref_clock
= pdata
->board_ref_clock
;
5175 wl
->tcxo_clock
= pdata
->board_tcxo_clock
;
5176 wl
->platform_quirks
= pdata
->platform_quirks
;
5177 wl
->set_power
= pdata
->set_power
;
5178 wl
->dev
= &pdev
->dev
;
5179 wl
->if_ops
= pdata
->ops
;
5181 platform_set_drvdata(pdev
, wl
);
5183 if (wl
->platform_quirks
& WL12XX_PLATFORM_QUIRK_EDGE_IRQ
)
5184 irqflags
= IRQF_TRIGGER_RISING
;
5186 irqflags
= IRQF_TRIGGER_HIGH
| IRQF_ONESHOT
;
5188 ret
= request_threaded_irq(wl
->irq
, wl12xx_hardirq
, wl1271_irq
,
5192 wl1271_error("request_irq() failed: %d", ret
);
5196 ret
= enable_irq_wake(wl
->irq
);
5198 wl
->irq_wake_enabled
= true;
5199 device_init_wakeup(wl
->dev
, 1);
5200 if (pdata
->pwr_in_suspend
)
5201 hw
->wiphy
->wowlan
.flags
= WIPHY_WOWLAN_ANY
;
5204 disable_irq(wl
->irq
);
5206 ret
= wl1271_init_ieee80211(wl
);
5210 ret
= wl1271_register_hw(wl
);
5214 /* Create sysfs file to control bt coex state */
5215 ret
= device_create_file(wl
->dev
, &dev_attr_bt_coex_state
);
5217 wl1271_error("failed to create sysfs file bt_coex_state");
5221 /* Create sysfs file to get HW PG version */
5222 ret
= device_create_file(wl
->dev
, &dev_attr_hw_pg_ver
);
5224 wl1271_error("failed to create sysfs file hw_pg_ver");
5225 goto out_bt_coex_state
;
5228 /* Create sysfs file for the FW log */
5229 ret
= device_create_bin_file(wl
->dev
, &fwlog_attr
);
5231 wl1271_error("failed to create sysfs file fwlog");
5238 device_remove_file(wl
->dev
, &dev_attr_hw_pg_ver
);
5241 device_remove_file(wl
->dev
, &dev_attr_bt_coex_state
);
5244 free_irq(wl
->irq
, wl
);
5253 static int __devexit
wl12xx_remove(struct platform_device
*pdev
)
5255 struct wl1271
*wl
= platform_get_drvdata(pdev
);
5257 if (wl
->irq_wake_enabled
) {
5258 device_init_wakeup(wl
->dev
, 0);
5259 disable_irq_wake(wl
->irq
);
5261 wl1271_unregister_hw(wl
);
5262 free_irq(wl
->irq
, wl
);
5268 static const struct platform_device_id wl12xx_id_table
[] __devinitconst
= {
5270 { } /* Terminating Entry */
5272 MODULE_DEVICE_TABLE(platform
, wl12xx_id_table
);
5274 static struct platform_driver wl12xx_driver
= {
5275 .probe
= wl12xx_probe
,
5276 .remove
= __devexit_p(wl12xx_remove
),
5277 .id_table
= wl12xx_id_table
,
5279 .name
= "wl12xx_driver",
5280 .owner
= THIS_MODULE
,
5284 static int __init
wl12xx_init(void)
5286 return platform_driver_register(&wl12xx_driver
);
5288 module_init(wl12xx_init
);
5290 static void __exit
wl12xx_exit(void)
5292 platform_driver_unregister(&wl12xx_driver
);
5294 module_exit(wl12xx_exit
);
5296 u32 wl12xx_debug_level
= DEBUG_NONE
;
5297 EXPORT_SYMBOL_GPL(wl12xx_debug_level
);
5298 module_param_named(debug_level
, wl12xx_debug_level
, uint
, S_IRUSR
| S_IWUSR
);
5299 MODULE_PARM_DESC(debug_level
, "wl12xx debugging level");
5301 module_param_named(fwlog
, fwlog_param
, charp
, 0);
5302 MODULE_PARM_DESC(keymap
,
5303 "FW logger options: continuous, ondemand, dbgpins or disable");
5305 module_param(bug_on_recovery
, bool, S_IRUSR
| S_IWUSR
);
5306 MODULE_PARM_DESC(bug_on_recovery
, "BUG() on fw recovery");
5308 MODULE_LICENSE("GPL");
5309 MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
5310 MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");