Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of wl1271 |
| 3 | * |
Juuso Oikarinen | 8bf29b0 | 2010-02-18 13:25:51 +0200 | [diff] [blame] | 4 | * Copyright (C) 2008-2010 Nokia Corporation |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5 | * |
| 6 | * Contact: Luciano Coelho <luciano.coelho@nokia.com> |
| 7 | * |
| 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. |
| 11 | * |
| 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. |
| 16 | * |
| 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 |
| 20 | * 02110-1301 USA |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 25 | #include <linux/firmware.h> |
| 26 | #include <linux/delay.h> |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 27 | #include <linux/spi/spi.h> |
| 28 | #include <linux/crc32.h> |
| 29 | #include <linux/etherdevice.h> |
Juuso Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 30 | #include <linux/vmalloc.h> |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 31 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Ido Yariv | 341b7cd | 2011-03-31 10:07:01 +0200 | [diff] [blame] | 33 | #include <linux/wl12xx.h> |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 34 | #include <linux/sched.h> |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 35 | #include <linux/interrupt.h> |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 36 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 37 | #include "wl12xx.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 38 | #include "wl12xx_80211.h" |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 39 | #include "reg.h" |
| 40 | #include "io.h" |
| 41 | #include "event.h" |
| 42 | #include "tx.h" |
| 43 | #include "rx.h" |
| 44 | #include "ps.h" |
| 45 | #include "init.h" |
| 46 | #include "debugfs.h" |
| 47 | #include "cmd.h" |
| 48 | #include "boot.h" |
| 49 | #include "testmode.h" |
| 50 | #include "scan.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 51 | |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 52 | #define WL1271_BOOT_RETRIES 3 |
| 53 | |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 54 | static struct conf_drv_settings default_conf = { |
| 55 | .sg = { |
Eliad Peller | 3be4112 | 2011-08-14 13:17:19 +0300 | [diff] [blame] | 56 | .params = { |
| 57 | [CONF_SG_ACL_BT_MASTER_MIN_BR] = 10, |
| 58 | [CONF_SG_ACL_BT_MASTER_MAX_BR] = 180, |
| 59 | [CONF_SG_ACL_BT_SLAVE_MIN_BR] = 10, |
| 60 | [CONF_SG_ACL_BT_SLAVE_MAX_BR] = 180, |
| 61 | [CONF_SG_ACL_BT_MASTER_MIN_EDR] = 10, |
| 62 | [CONF_SG_ACL_BT_MASTER_MAX_EDR] = 80, |
| 63 | [CONF_SG_ACL_BT_SLAVE_MIN_EDR] = 10, |
| 64 | [CONF_SG_ACL_BT_SLAVE_MAX_EDR] = 80, |
| 65 | [CONF_SG_ACL_WLAN_PS_MASTER_BR] = 8, |
| 66 | [CONF_SG_ACL_WLAN_PS_SLAVE_BR] = 8, |
| 67 | [CONF_SG_ACL_WLAN_PS_MASTER_EDR] = 20, |
| 68 | [CONF_SG_ACL_WLAN_PS_SLAVE_EDR] = 20, |
| 69 | [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MIN_BR] = 20, |
| 70 | [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MAX_BR] = 35, |
| 71 | [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MIN_BR] = 16, |
| 72 | [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MAX_BR] = 35, |
| 73 | [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MIN_EDR] = 32, |
| 74 | [CONF_SG_ACL_WLAN_ACTIVE_MASTER_MAX_EDR] = 50, |
| 75 | [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MIN_EDR] = 28, |
| 76 | [CONF_SG_ACL_WLAN_ACTIVE_SLAVE_MAX_EDR] = 50, |
| 77 | [CONF_SG_ACL_ACTIVE_SCAN_WLAN_BR] = 10, |
| 78 | [CONF_SG_ACL_ACTIVE_SCAN_WLAN_EDR] = 20, |
| 79 | [CONF_SG_ACL_PASSIVE_SCAN_BT_BR] = 75, |
| 80 | [CONF_SG_ACL_PASSIVE_SCAN_WLAN_BR] = 15, |
| 81 | [CONF_SG_ACL_PASSIVE_SCAN_BT_EDR] = 27, |
| 82 | [CONF_SG_ACL_PASSIVE_SCAN_WLAN_EDR] = 17, |
| 83 | /* active scan params */ |
| 84 | [CONF_SG_AUTO_SCAN_PROBE_REQ] = 170, |
| 85 | [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_HV3] = 50, |
| 86 | [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_A2DP] = 100, |
| 87 | /* passive scan params */ |
| 88 | [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP_BR] = 800, |
| 89 | [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP_EDR] = 200, |
| 90 | [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_HV3] = 200, |
| 91 | /* passive scan in dual antenna params */ |
| 92 | [CONF_SG_CONSECUTIVE_HV3_IN_PASSIVE_SCAN] = 0, |
| 93 | [CONF_SG_BCN_HV3_COLLISION_THRESH_IN_PASSIVE_SCAN] = 0, |
| 94 | [CONF_SG_TX_RX_PROTECTION_BWIDTH_IN_PASSIVE_SCAN] = 0, |
| 95 | /* general params */ |
| 96 | [CONF_SG_STA_FORCE_PS_IN_BT_SCO] = 1, |
| 97 | [CONF_SG_ANTENNA_CONFIGURATION] = 0, |
| 98 | [CONF_SG_BEACON_MISS_PERCENT] = 60, |
| 99 | [CONF_SG_DHCP_TIME] = 5000, |
| 100 | [CONF_SG_RXT] = 1200, |
| 101 | [CONF_SG_TXT] = 1000, |
| 102 | [CONF_SG_ADAPTIVE_RXT_TXT] = 1, |
| 103 | [CONF_SG_GENERAL_USAGE_BIT_MAP] = 3, |
| 104 | [CONF_SG_HV3_MAX_SERVED] = 6, |
| 105 | [CONF_SG_PS_POLL_TIMEOUT] = 10, |
| 106 | [CONF_SG_UPSD_TIMEOUT] = 10, |
| 107 | [CONF_SG_CONSECUTIVE_CTS_THRESHOLD] = 2, |
| 108 | [CONF_SG_STA_RX_WINDOW_AFTER_DTIM] = 5, |
| 109 | [CONF_SG_STA_CONNECTION_PROTECTION_TIME] = 30, |
| 110 | /* AP params */ |
| 111 | [CONF_AP_BEACON_MISS_TX] = 3, |
| 112 | [CONF_AP_RX_WINDOW_AFTER_BEACON] = 10, |
| 113 | [CONF_AP_BEACON_WINDOW_INTERVAL] = 2, |
| 114 | [CONF_AP_CONNECTION_PROTECTION_TIME] = 0, |
| 115 | [CONF_AP_BT_ACL_VAL_BT_SERVE_TIME] = 25, |
| 116 | [CONF_AP_BT_ACL_VAL_WL_SERVE_TIME] = 25, |
Arik Nemtsov | 801f870 | 2011-04-18 14:15:20 +0300 | [diff] [blame] | 117 | }, |
Juuso Oikarinen | 1b00f54 | 2010-03-18 12:26:30 +0200 | [diff] [blame] | 118 | .state = CONF_SG_PROTECTIVE, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 119 | }, |
| 120 | .rx = { |
| 121 | .rx_msdu_life_time = 512000, |
| 122 | .packet_detection_threshold = 0, |
| 123 | .ps_poll_timeout = 15, |
| 124 | .upsd_timeout = 15, |
Arik Nemtsov | 5f704d1 | 2011-04-18 14:15:21 +0300 | [diff] [blame] | 125 | .rts_threshold = IEEE80211_MAX_RTS_THRESHOLD, |
Luciano Coelho | 3ed8f2c | 2009-12-11 15:40:54 +0200 | [diff] [blame] | 126 | .rx_cca_threshold = 0, |
| 127 | .irq_blk_threshold = 0xFFFF, |
| 128 | .irq_pkt_threshold = 0, |
| 129 | .irq_timeout = 600, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 130 | .queue_type = CONF_RX_QUEUE_TYPE_LOW_PRIORITY, |
| 131 | }, |
| 132 | .tx = { |
| 133 | .tx_energy_detection = 0, |
Arik Nemtsov | 1e05a81 | 2010-10-16 17:44:51 +0200 | [diff] [blame] | 134 | .sta_rc_conf = { |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 135 | .enabled_rates = 0, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 136 | .short_retry_limit = 10, |
| 137 | .long_retry_limit = 10, |
Arik Nemtsov | 1e05a81 | 2010-10-16 17:44:51 +0200 | [diff] [blame] | 138 | .aflags = 0, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 139 | }, |
| 140 | .ac_conf_count = 4, |
| 141 | .ac_conf = { |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 142 | [CONF_TX_AC_BE] = { |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 143 | .ac = CONF_TX_AC_BE, |
| 144 | .cw_min = 15, |
| 145 | .cw_max = 63, |
| 146 | .aifsn = 3, |
| 147 | .tx_op_limit = 0, |
| 148 | }, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 149 | [CONF_TX_AC_BK] = { |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 150 | .ac = CONF_TX_AC_BK, |
| 151 | .cw_min = 15, |
| 152 | .cw_max = 63, |
| 153 | .aifsn = 7, |
| 154 | .tx_op_limit = 0, |
| 155 | }, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 156 | [CONF_TX_AC_VI] = { |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 157 | .ac = CONF_TX_AC_VI, |
| 158 | .cw_min = 15, |
| 159 | .cw_max = 63, |
| 160 | .aifsn = CONF_TX_AIFS_PIFS, |
| 161 | .tx_op_limit = 3008, |
| 162 | }, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 163 | [CONF_TX_AC_VO] = { |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 164 | .ac = CONF_TX_AC_VO, |
| 165 | .cw_min = 15, |
| 166 | .cw_max = 63, |
| 167 | .aifsn = CONF_TX_AIFS_PIFS, |
| 168 | .tx_op_limit = 1504, |
| 169 | }, |
| 170 | }, |
Arik Nemtsov | 3618f30 | 2011-06-26 10:36:03 +0300 | [diff] [blame] | 171 | .max_tx_retries = 100, |
| 172 | .ap_aging_period = 300, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 173 | .tid_conf_count = 4, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 174 | .tid_conf = { |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 175 | [CONF_TX_AC_BE] = { |
| 176 | .queue_id = CONF_TX_AC_BE, |
| 177 | .channel_type = CONF_CHANNEL_TYPE_EDCF, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 178 | .tsid = CONF_TX_AC_BE, |
| 179 | .ps_scheme = CONF_PS_SCHEME_LEGACY, |
| 180 | .ack_policy = CONF_ACK_POLICY_LEGACY, |
| 181 | .apsd_conf = {0, 0}, |
| 182 | }, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 183 | [CONF_TX_AC_BK] = { |
| 184 | .queue_id = CONF_TX_AC_BK, |
| 185 | .channel_type = CONF_CHANNEL_TYPE_EDCF, |
| 186 | .tsid = CONF_TX_AC_BK, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 187 | .ps_scheme = CONF_PS_SCHEME_LEGACY, |
| 188 | .ack_policy = CONF_ACK_POLICY_LEGACY, |
| 189 | .apsd_conf = {0, 0}, |
| 190 | }, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 191 | [CONF_TX_AC_VI] = { |
| 192 | .queue_id = CONF_TX_AC_VI, |
| 193 | .channel_type = CONF_CHANNEL_TYPE_EDCF, |
| 194 | .tsid = CONF_TX_AC_VI, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 195 | .ps_scheme = CONF_PS_SCHEME_LEGACY, |
| 196 | .ack_policy = CONF_ACK_POLICY_LEGACY, |
| 197 | .apsd_conf = {0, 0}, |
| 198 | }, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 199 | [CONF_TX_AC_VO] = { |
| 200 | .queue_id = CONF_TX_AC_VO, |
| 201 | .channel_type = CONF_CHANNEL_TYPE_EDCF, |
| 202 | .tsid = CONF_TX_AC_VO, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 203 | .ps_scheme = CONF_PS_SCHEME_LEGACY, |
| 204 | .ack_policy = CONF_ACK_POLICY_LEGACY, |
| 205 | .apsd_conf = {0, 0}, |
| 206 | }, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 207 | }, |
| 208 | .frag_threshold = IEEE80211_MAX_FRAG_THRESHOLD, |
Luciano Coelho | 3ed8f2c | 2009-12-11 15:40:54 +0200 | [diff] [blame] | 209 | .tx_compl_timeout = 700, |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 210 | .tx_compl_threshold = 4, |
| 211 | .basic_rate = CONF_HW_BIT_RATE_1MBPS, |
| 212 | .basic_rate_5 = CONF_HW_BIT_RATE_6MBPS, |
Arik Nemtsov | 1e05a81 | 2010-10-16 17:44:51 +0200 | [diff] [blame] | 213 | .tmpl_short_retry_limit = 10, |
| 214 | .tmpl_long_retry_limit = 10, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 215 | }, |
| 216 | .conn = { |
| 217 | .wake_up_event = CONF_WAKE_UP_EVENT_DTIM, |
Juuso Oikarinen | 50c500a | 2010-04-01 11:38:22 +0300 | [diff] [blame] | 218 | .listen_interval = 1, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 219 | .bcn_filt_mode = CONF_BCN_FILT_MODE_ENABLED, |
Shahar Levi | bc76b94 | 2011-05-11 11:14:22 +0300 | [diff] [blame] | 220 | .bcn_filt_ie_count = 2, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 221 | .bcn_filt_ie = { |
| 222 | [0] = { |
| 223 | .ie = WLAN_EID_CHANNEL_SWITCH, |
| 224 | .rule = CONF_BCN_RULE_PASS_ON_APPEARANCE, |
Shahar Levi | bc76b94 | 2011-05-11 11:14:22 +0300 | [diff] [blame] | 225 | }, |
| 226 | [1] = { |
| 227 | .ie = WLAN_EID_HT_INFORMATION, |
| 228 | .rule = CONF_BCN_RULE_PASS_ON_CHANGE, |
| 229 | }, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 230 | }, |
Luciano Coelho | 3ed8f2c | 2009-12-11 15:40:54 +0200 | [diff] [blame] | 231 | .synch_fail_thold = 10, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 232 | .bss_lose_timeout = 100, |
| 233 | .beacon_rx_timeout = 10000, |
| 234 | .broadcast_timeout = 20000, |
| 235 | .rx_broadcast_in_ps = 1, |
Juuso Oikarinen | 90494a9 | 2010-07-08 17:50:00 +0300 | [diff] [blame] | 236 | .ps_poll_threshold = 10, |
| 237 | .ps_poll_recovery_period = 700, |
Juuso Oikarinen | 11f70f9 | 2009-10-13 12:47:46 +0300 | [diff] [blame] | 238 | .bet_enable = CONF_BET_MODE_ENABLE, |
Ohad Ben-Cohen | 958b20e | 2011-03-14 18:53:10 +0200 | [diff] [blame] | 239 | .bet_max_consecutive = 50, |
Eliad Peller | a879ed7 | 2011-08-23 16:37:02 +0300 | [diff] [blame] | 240 | .psm_entry_retries = 8, |
Shahar Levi | 2370841 | 2011-04-13 14:52:50 +0300 | [diff] [blame] | 241 | .psm_exit_retries = 16, |
Juuso Oikarinen | 8eab7b4 | 2010-09-24 03:10:11 +0200 | [diff] [blame] | 242 | .psm_entry_nullfunc_retries = 3, |
Juuso Oikarinen | 50c500a | 2010-04-01 11:38:22 +0300 | [diff] [blame] | 243 | .keep_alive_interval = 55000, |
| 244 | .max_listen_interval = 20, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 245 | }, |
Luciano Coelho | 6e92b41 | 2009-12-11 15:40:50 +0200 | [diff] [blame] | 246 | .itrim = { |
| 247 | .enable = false, |
| 248 | .timeout = 50000, |
Juuso Oikarinen | 38ad2d8 | 2009-12-11 15:41:08 +0200 | [diff] [blame] | 249 | }, |
| 250 | .pm_config = { |
| 251 | .host_clk_settling_time = 5000, |
| 252 | .host_fast_wakeup_support = false |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 253 | }, |
| 254 | .roam_trigger = { |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 255 | .trigger_pacing = 1, |
| 256 | .avg_weight_rssi_beacon = 20, |
| 257 | .avg_weight_rssi_data = 10, |
| 258 | .avg_weight_snr_beacon = 20, |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 259 | .avg_weight_snr_data = 10, |
Juuso Oikarinen | bea39d6 | 2010-09-21 08:14:31 +0200 | [diff] [blame] | 260 | }, |
| 261 | .scan = { |
| 262 | .min_dwell_time_active = 7500, |
| 263 | .max_dwell_time_active = 30000, |
Juuso Oikarinen | ea45b2c | 2011-01-24 07:01:54 +0100 | [diff] [blame] | 264 | .min_dwell_time_passive = 100000, |
| 265 | .max_dwell_time_passive = 100000, |
Juuso Oikarinen | bea39d6 | 2010-09-21 08:14:31 +0200 | [diff] [blame] | 266 | .num_probe_reqs = 2, |
| 267 | }, |
Luciano Coelho | 3a9d60e | 2011-05-10 14:06:31 +0300 | [diff] [blame] | 268 | .sched_scan = { |
| 269 | /* sched_scan requires dwell times in TU instead of TU/1000 */ |
Luciano Coelho | 221737d | 2011-09-02 14:28:22 +0300 | [diff] [blame] | 270 | .min_dwell_time_active = 30, |
| 271 | .max_dwell_time_active = 60, |
Luciano Coelho | 3a9d60e | 2011-05-10 14:06:31 +0300 | [diff] [blame] | 272 | .dwell_time_passive = 100, |
Luciano Coelho | 50a66d7 | 2011-05-27 15:34:47 +0300 | [diff] [blame] | 273 | .dwell_time_dfs = 150, |
Luciano Coelho | 3a9d60e | 2011-05-10 14:06:31 +0300 | [diff] [blame] | 274 | .num_probe_reqs = 2, |
| 275 | .rssi_threshold = -90, |
| 276 | .snr_threshold = 0, |
| 277 | }, |
Juuso Oikarinen | 644a486 | 2010-10-05 13:11:56 +0200 | [diff] [blame] | 278 | .rf = { |
| 279 | .tx_per_channel_power_compensation_2 = { |
| 280 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 281 | }, |
| 282 | .tx_per_channel_power_compensation_5 = { |
| 283 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 284 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 285 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 286 | }, |
| 287 | }, |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 288 | .ht = { |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 289 | .rx_ba_win_size = 8, |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 290 | .tx_ba_win_size = 64, |
| 291 | .inactivity_timeout = 10000, |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 292 | .tx_ba_tid_bitmap = CONF_TX_BA_ENABLED_TID_BITMAP, |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 293 | }, |
Shahar Levi | 13b107d | 2011-03-06 16:32:12 +0200 | [diff] [blame] | 294 | .mem_wl127x = { |
Eliad Peller | fe5ef09 | 2011-02-02 09:59:36 +0200 | [diff] [blame] | 295 | .num_stations = 1, |
| 296 | .ssid_profiles = 1, |
| 297 | .rx_block_num = 70, |
| 298 | .tx_min_block_num = 40, |
Ido Yariv | 4cf557f | 2011-04-18 16:45:10 +0300 | [diff] [blame] | 299 | .dynamic_memory = 1, |
Ido Yariv | b16d4b6 | 2011-03-01 15:14:44 +0200 | [diff] [blame] | 300 | .min_req_tx_blocks = 100, |
Eliad Peller | c8bde24 | 2011-02-02 09:59:35 +0200 | [diff] [blame] | 301 | .min_req_rx_blocks = 22, |
| 302 | .tx_min = 27, |
Shahar Levi | 13b107d | 2011-03-06 16:32:12 +0200 | [diff] [blame] | 303 | }, |
| 304 | .mem_wl128x = { |
| 305 | .num_stations = 1, |
| 306 | .ssid_profiles = 1, |
| 307 | .rx_block_num = 40, |
| 308 | .tx_min_block_num = 40, |
| 309 | .dynamic_memory = 1, |
| 310 | .min_req_tx_blocks = 45, |
| 311 | .min_req_rx_blocks = 22, |
| 312 | .tx_min = 27, |
| 313 | }, |
Shahar Levi | ff86843 | 2011-04-11 15:41:46 +0300 | [diff] [blame] | 314 | .fm_coex = { |
| 315 | .enable = true, |
| 316 | .swallow_period = 5, |
| 317 | .n_divider_fref_set_1 = 0xff, /* default */ |
| 318 | .n_divider_fref_set_2 = 12, |
| 319 | .m_divider_fref_set_1 = 148, |
| 320 | .m_divider_fref_set_2 = 0xffff, /* default */ |
| 321 | .coex_pll_stabilization_time = 0xffffffff, /* default */ |
| 322 | .ldo_stabilization_time = 0xffff, /* default */ |
| 323 | .fm_disturbed_band_margin = 0xff, /* default */ |
| 324 | .swallow_clk_diff = 0xff, /* default */ |
| 325 | }, |
Eliad Peller | f84673d | 2011-05-15 11:10:28 +0300 | [diff] [blame] | 326 | .rx_streaming = { |
| 327 | .duration = 150, |
| 328 | .queues = 0x1, |
| 329 | .interval = 20, |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 330 | .always = 0, |
Eliad Peller | f84673d | 2011-05-15 11:10:28 +0300 | [diff] [blame] | 331 | }, |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 332 | .fwlog = { |
| 333 | .mode = WL12XX_FWLOG_ON_DEMAND, |
| 334 | .mem_blocks = 2, |
| 335 | .severity = 0, |
| 336 | .timestamp = WL12XX_FWLOG_TIMESTAMP_DISABLED, |
| 337 | .output = WL12XX_FWLOG_OUTPUT_HOST, |
| 338 | .threshold = 0, |
| 339 | }, |
Luciano Coelho | afb7d3c | 2011-04-01 20:48:02 +0300 | [diff] [blame] | 340 | .hci_io_ds = HCI_IO_DS_6MA, |
Eliad Peller | fa6ad9f | 2011-08-14 13:17:14 +0300 | [diff] [blame] | 341 | .rate = { |
| 342 | .rate_retry_score = 32000, |
| 343 | .per_add = 8192, |
| 344 | .per_th1 = 2048, |
| 345 | .per_th2 = 4096, |
| 346 | .max_per = 8100, |
| 347 | .inverse_curiosity_factor = 5, |
| 348 | .tx_fail_low_th = 4, |
| 349 | .tx_fail_high_th = 10, |
| 350 | .per_alpha_shift = 4, |
| 351 | .per_add_shift = 13, |
| 352 | .per_beta1_shift = 10, |
| 353 | .per_beta2_shift = 8, |
| 354 | .rate_check_up = 2, |
| 355 | .rate_check_down = 12, |
| 356 | .rate_retry_policy = { |
| 357 | 0x00, 0x00, 0x00, 0x00, 0x00, |
| 358 | 0x00, 0x00, 0x00, 0x00, 0x00, |
| 359 | 0x00, 0x00, 0x00, |
| 360 | }, |
| 361 | }, |
Eliad Peller | 9487775 | 2011-08-28 15:11:56 +0300 | [diff] [blame] | 362 | .hangover = { |
| 363 | .recover_time = 0, |
| 364 | .hangover_period = 20, |
| 365 | .dynamic_mode = 1, |
| 366 | .early_termination_mode = 1, |
| 367 | .max_period = 20, |
| 368 | .min_period = 1, |
| 369 | .increase_delta = 1, |
| 370 | .decrease_delta = 2, |
| 371 | .quiet_time = 4, |
| 372 | .increase_time = 1, |
| 373 | .window_size = 16, |
| 374 | }, |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 375 | }; |
| 376 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 377 | static char *fwlog_param; |
Eliad Peller | 2a5bff0 | 2011-08-25 18:10:59 +0300 | [diff] [blame] | 378 | static bool bug_on_recovery; |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 379 | |
Arik Nemtsov | 7dece1c | 2011-04-18 14:15:28 +0300 | [diff] [blame] | 380 | static void __wl1271_op_remove_interface(struct wl1271 *wl, |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 381 | struct ieee80211_vif *vif, |
Arik Nemtsov | 7dece1c | 2011-04-18 14:15:28 +0300 | [diff] [blame] | 382 | bool reset_tx_queues); |
Eliad Peller | f027743 | 2011-10-10 10:13:14 +0200 | [diff] [blame] | 383 | static void wl1271_op_stop(struct ieee80211_hw *hw); |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 384 | static void wl1271_free_ap_keys(struct wl1271 *wl, struct wl12xx_vif *wlvif); |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 385 | |
| 386 | |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 387 | static void wl1271_device_release(struct device *dev) |
| 388 | { |
| 389 | |
| 390 | } |
| 391 | |
| 392 | static struct platform_device wl1271_device = { |
| 393 | .name = "wl1271", |
| 394 | .id = -1, |
| 395 | |
| 396 | /* device model insists to have a release function */ |
| 397 | .dev = { |
| 398 | .release = wl1271_device_release, |
| 399 | }, |
| 400 | }; |
| 401 | |
Juuso Oikarinen | f9f774c | 2011-03-21 10:43:36 +0200 | [diff] [blame] | 402 | static DEFINE_MUTEX(wl_list_mutex); |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 403 | static LIST_HEAD(wl_list); |
| 404 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 405 | static int wl1271_check_operstate(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 406 | unsigned char operstate) |
Eliad Peller | ef4b29e | 2011-06-06 13:03:12 +0300 | [diff] [blame] | 407 | { |
| 408 | int ret; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 409 | |
Eliad Peller | ef4b29e | 2011-06-06 13:03:12 +0300 | [diff] [blame] | 410 | if (operstate != IF_OPER_UP) |
| 411 | return 0; |
| 412 | |
Eliad Peller | 8181aec | 2011-10-10 10:13:04 +0200 | [diff] [blame] | 413 | if (test_and_set_bit(WLVIF_FLAG_STA_STATE_SENT, &wlvif->flags)) |
Eliad Peller | ef4b29e | 2011-06-06 13:03:12 +0300 | [diff] [blame] | 414 | return 0; |
| 415 | |
Eliad Peller | 154da67 | 2011-10-05 11:55:53 +0200 | [diff] [blame] | 416 | ret = wl12xx_cmd_set_peer_state(wl, wlvif->sta.hlid); |
Eliad Peller | ef4b29e | 2011-06-06 13:03:12 +0300 | [diff] [blame] | 417 | if (ret < 0) |
| 418 | return ret; |
| 419 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 420 | wl12xx_croc(wl, wlvif->role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 421 | |
Eliad Peller | ef4b29e | 2011-06-06 13:03:12 +0300 | [diff] [blame] | 422 | wl1271_info("Association completed."); |
| 423 | return 0; |
| 424 | } |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 425 | static int wl1271_dev_notify(struct notifier_block *me, unsigned long what, |
| 426 | void *arg) |
| 427 | { |
| 428 | struct net_device *dev = arg; |
| 429 | struct wireless_dev *wdev; |
| 430 | struct wiphy *wiphy; |
| 431 | struct ieee80211_hw *hw; |
| 432 | struct wl1271 *wl; |
| 433 | struct wl1271 *wl_temp; |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 434 | struct wl12xx_vif *wlvif; |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 435 | int ret = 0; |
| 436 | |
| 437 | /* Check that this notification is for us. */ |
| 438 | if (what != NETDEV_CHANGE) |
| 439 | return NOTIFY_DONE; |
| 440 | |
| 441 | wdev = dev->ieee80211_ptr; |
| 442 | if (wdev == NULL) |
| 443 | return NOTIFY_DONE; |
| 444 | |
| 445 | wiphy = wdev->wiphy; |
| 446 | if (wiphy == NULL) |
| 447 | return NOTIFY_DONE; |
| 448 | |
| 449 | hw = wiphy_priv(wiphy); |
| 450 | if (hw == NULL) |
| 451 | return NOTIFY_DONE; |
| 452 | |
| 453 | wl_temp = hw->priv; |
Juuso Oikarinen | f9f774c | 2011-03-21 10:43:36 +0200 | [diff] [blame] | 454 | mutex_lock(&wl_list_mutex); |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 455 | list_for_each_entry(wl, &wl_list, list) { |
| 456 | if (wl == wl_temp) |
| 457 | break; |
| 458 | } |
Juuso Oikarinen | f9f774c | 2011-03-21 10:43:36 +0200 | [diff] [blame] | 459 | mutex_unlock(&wl_list_mutex); |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 460 | if (wl != wl_temp) |
| 461 | return NOTIFY_DONE; |
| 462 | |
| 463 | mutex_lock(&wl->mutex); |
| 464 | |
| 465 | if (wl->state == WL1271_STATE_OFF) |
| 466 | goto out; |
| 467 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 468 | wl12xx_for_each_wlvif_sta(wl, wlvif) { |
| 469 | if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) |
| 470 | continue; |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 471 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 472 | ret = wl1271_ps_elp_wakeup(wl); |
| 473 | if (ret < 0) |
| 474 | goto out; |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 475 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 476 | wl1271_check_operstate(wl, wlvif, dev->operstate); |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 477 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 478 | wl1271_ps_elp_sleep(wl); |
| 479 | } |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 480 | out: |
| 481 | mutex_unlock(&wl->mutex); |
| 482 | |
| 483 | return NOTIFY_OK; |
| 484 | } |
| 485 | |
Juuso Oikarinen | b7417d9 | 2010-11-10 11:27:19 +0100 | [diff] [blame] | 486 | static int wl1271_reg_notify(struct wiphy *wiphy, |
Luciano Coelho | 573c67c | 2010-11-26 13:44:59 +0200 | [diff] [blame] | 487 | struct regulatory_request *request) |
| 488 | { |
Juuso Oikarinen | b7417d9 | 2010-11-10 11:27:19 +0100 | [diff] [blame] | 489 | struct ieee80211_supported_band *band; |
| 490 | struct ieee80211_channel *ch; |
| 491 | int i; |
| 492 | |
| 493 | band = wiphy->bands[IEEE80211_BAND_5GHZ]; |
| 494 | for (i = 0; i < band->n_channels; i++) { |
| 495 | ch = &band->channels[i]; |
| 496 | if (ch->flags & IEEE80211_CHAN_DISABLED) |
| 497 | continue; |
| 498 | |
| 499 | if (ch->flags & IEEE80211_CHAN_RADAR) |
| 500 | ch->flags |= IEEE80211_CHAN_NO_IBSS | |
| 501 | IEEE80211_CHAN_PASSIVE_SCAN; |
| 502 | |
| 503 | } |
| 504 | |
| 505 | return 0; |
| 506 | } |
| 507 | |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 508 | static int wl1271_set_rx_streaming(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 509 | bool enable) |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 510 | { |
| 511 | int ret = 0; |
| 512 | |
| 513 | /* we should hold wl->mutex */ |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 514 | ret = wl1271_acx_ps_rx_streaming(wl, wlvif, enable); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 515 | if (ret < 0) |
| 516 | goto out; |
| 517 | |
| 518 | if (enable) |
Eliad Peller | 0744bdb | 2011-10-10 10:13:05 +0200 | [diff] [blame] | 519 | set_bit(WLVIF_FLAG_RX_STREAMING_STARTED, &wlvif->flags); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 520 | else |
Eliad Peller | 0744bdb | 2011-10-10 10:13:05 +0200 | [diff] [blame] | 521 | clear_bit(WLVIF_FLAG_RX_STREAMING_STARTED, &wlvif->flags); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 522 | out: |
| 523 | return ret; |
| 524 | } |
| 525 | |
| 526 | /* |
| 527 | * this function is being called when the rx_streaming interval |
| 528 | * has beed changed or rx_streaming should be disabled |
| 529 | */ |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 530 | int wl1271_recalc_rx_streaming(struct wl1271 *wl, struct wl12xx_vif *wlvif) |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 531 | { |
| 532 | int ret = 0; |
| 533 | int period = wl->conf.rx_streaming.interval; |
| 534 | |
| 535 | /* don't reconfigure if rx_streaming is disabled */ |
Eliad Peller | 0744bdb | 2011-10-10 10:13:05 +0200 | [diff] [blame] | 536 | if (!test_bit(WLVIF_FLAG_RX_STREAMING_STARTED, &wlvif->flags)) |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 537 | goto out; |
| 538 | |
| 539 | /* reconfigure/disable according to new streaming_period */ |
| 540 | if (period && |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 541 | test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags) && |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 542 | (wl->conf.rx_streaming.always || |
| 543 | test_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags))) |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 544 | ret = wl1271_set_rx_streaming(wl, wlvif, true); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 545 | else { |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 546 | ret = wl1271_set_rx_streaming(wl, wlvif, false); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 547 | /* don't cancel_work_sync since we might deadlock */ |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 548 | del_timer_sync(&wlvif->rx_streaming_timer); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 549 | } |
| 550 | out: |
| 551 | return ret; |
| 552 | } |
| 553 | |
| 554 | static void wl1271_rx_streaming_enable_work(struct work_struct *work) |
| 555 | { |
| 556 | int ret; |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 557 | struct wl12xx_vif *wlvif = container_of(work, struct wl12xx_vif, |
| 558 | rx_streaming_enable_work); |
| 559 | struct wl1271 *wl = wlvif->wl; |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 560 | |
| 561 | mutex_lock(&wl->mutex); |
| 562 | |
Eliad Peller | 0744bdb | 2011-10-10 10:13:05 +0200 | [diff] [blame] | 563 | if (test_bit(WLVIF_FLAG_RX_STREAMING_STARTED, &wlvif->flags) || |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 564 | !test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags) || |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 565 | (!wl->conf.rx_streaming.always && |
| 566 | !test_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags))) |
| 567 | goto out; |
| 568 | |
| 569 | if (!wl->conf.rx_streaming.interval) |
| 570 | goto out; |
| 571 | |
| 572 | ret = wl1271_ps_elp_wakeup(wl); |
| 573 | if (ret < 0) |
| 574 | goto out; |
| 575 | |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 576 | ret = wl1271_set_rx_streaming(wl, wlvif, true); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 577 | if (ret < 0) |
| 578 | goto out_sleep; |
| 579 | |
| 580 | /* stop it after some time of inactivity */ |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 581 | mod_timer(&wlvif->rx_streaming_timer, |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 582 | jiffies + msecs_to_jiffies(wl->conf.rx_streaming.duration)); |
| 583 | |
| 584 | out_sleep: |
| 585 | wl1271_ps_elp_sleep(wl); |
| 586 | out: |
| 587 | mutex_unlock(&wl->mutex); |
| 588 | } |
| 589 | |
| 590 | static void wl1271_rx_streaming_disable_work(struct work_struct *work) |
| 591 | { |
| 592 | int ret; |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 593 | struct wl12xx_vif *wlvif = container_of(work, struct wl12xx_vif, |
| 594 | rx_streaming_disable_work); |
| 595 | struct wl1271 *wl = wlvif->wl; |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 596 | |
| 597 | mutex_lock(&wl->mutex); |
| 598 | |
Eliad Peller | 0744bdb | 2011-10-10 10:13:05 +0200 | [diff] [blame] | 599 | if (!test_bit(WLVIF_FLAG_RX_STREAMING_STARTED, &wlvif->flags)) |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 600 | goto out; |
| 601 | |
| 602 | ret = wl1271_ps_elp_wakeup(wl); |
| 603 | if (ret < 0) |
| 604 | goto out; |
| 605 | |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 606 | ret = wl1271_set_rx_streaming(wl, wlvif, false); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 607 | if (ret) |
| 608 | goto out_sleep; |
| 609 | |
| 610 | out_sleep: |
| 611 | wl1271_ps_elp_sleep(wl); |
| 612 | out: |
| 613 | mutex_unlock(&wl->mutex); |
| 614 | } |
| 615 | |
| 616 | static void wl1271_rx_streaming_timer(unsigned long data) |
| 617 | { |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 618 | struct wl12xx_vif *wlvif = (struct wl12xx_vif *)data; |
| 619 | struct wl1271 *wl = wlvif->wl; |
| 620 | ieee80211_queue_work(wl->hw, &wlvif->rx_streaming_disable_work); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 621 | } |
| 622 | |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 623 | static void wl1271_conf_init(struct wl1271 *wl) |
| 624 | { |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 625 | |
| 626 | /* |
| 627 | * This function applies the default configuration to the driver. This |
| 628 | * function is invoked upon driver load (spi probe.) |
| 629 | * |
| 630 | * The configuration is stored in a run-time structure in order to |
| 631 | * facilitate for run-time adjustment of any of the parameters. Making |
| 632 | * changes to the configuration structure will apply the new values on |
| 633 | * the next interface up (wl1271_op_start.) |
| 634 | */ |
| 635 | |
| 636 | /* apply driver default configuration */ |
Juuso Oikarinen | 8a08048 | 2009-10-13 12:47:44 +0300 | [diff] [blame] | 637 | memcpy(&wl->conf, &default_conf, sizeof(default_conf)); |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 638 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 639 | /* Adjust settings according to optional module parameters */ |
| 640 | if (fwlog_param) { |
| 641 | if (!strcmp(fwlog_param, "continuous")) { |
| 642 | wl->conf.fwlog.mode = WL12XX_FWLOG_CONTINUOUS; |
| 643 | } else if (!strcmp(fwlog_param, "ondemand")) { |
| 644 | wl->conf.fwlog.mode = WL12XX_FWLOG_ON_DEMAND; |
| 645 | } else if (!strcmp(fwlog_param, "dbgpins")) { |
| 646 | wl->conf.fwlog.mode = WL12XX_FWLOG_CONTINUOUS; |
| 647 | wl->conf.fwlog.output = WL12XX_FWLOG_OUTPUT_DBG_PINS; |
| 648 | } else if (!strcmp(fwlog_param, "disable")) { |
| 649 | wl->conf.fwlog.mem_blocks = 0; |
| 650 | wl->conf.fwlog.output = WL12XX_FWLOG_OUTPUT_NONE; |
| 651 | } else { |
| 652 | wl1271_error("Unknown fwlog parameter %s", fwlog_param); |
| 653 | } |
| 654 | } |
| 655 | } |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 656 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 657 | static int wl1271_plt_init(struct wl1271 *wl) |
| 658 | { |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 659 | struct conf_tx_ac_category *conf_ac; |
| 660 | struct conf_tx_tid *conf_tid; |
| 661 | int ret, i; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 662 | |
Shahar Levi | 49d750ca | 2011-03-06 16:32:09 +0200 | [diff] [blame] | 663 | if (wl->chip.id == CHIP_ID_1283_PG20) |
| 664 | ret = wl128x_cmd_general_parms(wl); |
| 665 | else |
| 666 | ret = wl1271_cmd_general_parms(wl); |
Luciano Coelho | 4a90406 | 2009-11-23 23:22:18 +0200 | [diff] [blame] | 667 | if (ret < 0) |
Luciano Coelho | cc7defa | 2009-11-23 23:22:16 +0200 | [diff] [blame] | 668 | return ret; |
| 669 | |
Shahar Levi | 49d750ca | 2011-03-06 16:32:09 +0200 | [diff] [blame] | 670 | if (wl->chip.id == CHIP_ID_1283_PG20) |
| 671 | ret = wl128x_cmd_radio_parms(wl); |
| 672 | else |
| 673 | ret = wl1271_cmd_radio_parms(wl); |
Luciano Coelho | 4a90406 | 2009-11-23 23:22:18 +0200 | [diff] [blame] | 674 | if (ret < 0) |
Luciano Coelho | cc7defa | 2009-11-23 23:22:16 +0200 | [diff] [blame] | 675 | return ret; |
| 676 | |
Shahar Levi | 49d750ca | 2011-03-06 16:32:09 +0200 | [diff] [blame] | 677 | if (wl->chip.id != CHIP_ID_1283_PG20) { |
| 678 | ret = wl1271_cmd_ext_radio_parms(wl); |
| 679 | if (ret < 0) |
| 680 | return ret; |
| 681 | } |
Juuso Oikarinen | 644a486 | 2010-10-05 13:11:56 +0200 | [diff] [blame] | 682 | if (ret < 0) |
| 683 | return ret; |
| 684 | |
Shahar Levi | 48a6147 | 2011-03-06 16:32:08 +0200 | [diff] [blame] | 685 | /* Chip-specific initializations */ |
| 686 | ret = wl1271_chip_specific_init(wl); |
| 687 | if (ret < 0) |
| 688 | return ret; |
| 689 | |
Eliad Peller | 92c77c7 | 2011-10-05 11:55:40 +0200 | [diff] [blame] | 690 | ret = wl1271_init_templates_config(wl); |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 691 | if (ret < 0) |
| 692 | return ret; |
| 693 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 694 | ret = wl1271_acx_init_mem_config(wl); |
| 695 | if (ret < 0) |
| 696 | return ret; |
| 697 | |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 698 | /* PHY layer config */ |
| 699 | ret = wl1271_init_phy_config(wl); |
| 700 | if (ret < 0) |
| 701 | goto out_free_memmap; |
| 702 | |
| 703 | ret = wl1271_acx_dco_itrim_params(wl); |
| 704 | if (ret < 0) |
| 705 | goto out_free_memmap; |
| 706 | |
| 707 | /* Initialize connection monitoring thresholds */ |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 708 | ret = wl1271_acx_conn_monit_params(wl, NULL, false); /* TODO: fix */ |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 709 | if (ret < 0) |
| 710 | goto out_free_memmap; |
| 711 | |
| 712 | /* Bluetooth WLAN coexistence */ |
| 713 | ret = wl1271_init_pta(wl); |
| 714 | if (ret < 0) |
| 715 | goto out_free_memmap; |
| 716 | |
Shahar Levi | ff86843 | 2011-04-11 15:41:46 +0300 | [diff] [blame] | 717 | /* FM WLAN coexistence */ |
| 718 | ret = wl1271_acx_fm_coex(wl); |
| 719 | if (ret < 0) |
| 720 | goto out_free_memmap; |
| 721 | |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 722 | /* Energy detection */ |
| 723 | ret = wl1271_init_energy_detection(wl); |
| 724 | if (ret < 0) |
| 725 | goto out_free_memmap; |
| 726 | |
Eliad Peller | 7f097988 | 2011-08-14 13:17:06 +0300 | [diff] [blame] | 727 | ret = wl12xx_acx_mem_cfg(wl); |
Gery Kahn | 1ec610e | 2011-02-01 03:03:08 -0600 | [diff] [blame] | 728 | if (ret < 0) |
| 729 | goto out_free_memmap; |
| 730 | |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 731 | /* Default fragmentation threshold */ |
Arik Nemtsov | 68d069c | 2010-11-08 10:51:07 +0100 | [diff] [blame] | 732 | ret = wl1271_acx_frag_threshold(wl, wl->conf.tx.frag_threshold); |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 733 | if (ret < 0) |
| 734 | goto out_free_memmap; |
| 735 | |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 736 | /* Default TID/AC configuration */ |
| 737 | BUG_ON(wl->conf.tx.tid_conf_count != wl->conf.tx.ac_conf_count); |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 738 | for (i = 0; i < wl->conf.tx.tid_conf_count; i++) { |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 739 | conf_ac = &wl->conf.tx.ac_conf[i]; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 740 | /* TODO: fix */ |
| 741 | ret = wl1271_acx_ac_cfg(wl, NULL, conf_ac->ac, conf_ac->cw_min, |
Juuso Oikarinen | 9987a9d | 2010-09-01 11:31:12 +0200 | [diff] [blame] | 742 | conf_ac->cw_max, conf_ac->aifsn, |
| 743 | conf_ac->tx_op_limit); |
| 744 | if (ret < 0) |
| 745 | goto out_free_memmap; |
| 746 | |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 747 | conf_tid = &wl->conf.tx.tid_conf[i]; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 748 | /* TODO: fix */ |
| 749 | ret = wl1271_acx_tid_cfg(wl, NULL, conf_tid->queue_id, |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 750 | conf_tid->channel_type, |
| 751 | conf_tid->tsid, |
| 752 | conf_tid->ps_scheme, |
| 753 | conf_tid->ack_policy, |
| 754 | conf_tid->apsd_conf[0], |
| 755 | conf_tid->apsd_conf[1]); |
| 756 | if (ret < 0) |
| 757 | goto out_free_memmap; |
| 758 | } |
| 759 | |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 760 | /* Enable data path */ |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 761 | ret = wl1271_cmd_data_path(wl, 1); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 762 | if (ret < 0) |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 763 | goto out_free_memmap; |
| 764 | |
| 765 | /* Configure for CAM power saving (ie. always active) */ |
| 766 | ret = wl1271_acx_sleep_auth(wl, WL1271_PSM_CAM); |
| 767 | if (ret < 0) |
| 768 | goto out_free_memmap; |
| 769 | |
| 770 | /* configure PM */ |
| 771 | ret = wl1271_acx_pm_config(wl); |
| 772 | if (ret < 0) |
| 773 | goto out_free_memmap; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 774 | |
| 775 | return 0; |
Luciano Coelho | 12419cc | 2010-02-18 13:25:44 +0200 | [diff] [blame] | 776 | |
| 777 | out_free_memmap: |
| 778 | kfree(wl->target_mem_map); |
| 779 | wl->target_mem_map = NULL; |
| 780 | |
| 781 | return ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 782 | } |
| 783 | |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 784 | static void wl12xx_irq_ps_regulate_link(struct wl1271 *wl, |
| 785 | struct wl12xx_vif *wlvif, |
| 786 | u8 hlid, u8 tx_pkts) |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 787 | { |
Arik Nemtsov | da03209 | 2011-08-25 12:43:15 +0300 | [diff] [blame] | 788 | bool fw_ps, single_sta; |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 789 | |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 790 | fw_ps = test_bit(hlid, (unsigned long *)&wl->ap_fw_ps_map); |
Arik Nemtsov | da03209 | 2011-08-25 12:43:15 +0300 | [diff] [blame] | 791 | single_sta = (wl->active_sta_count == 1); |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 792 | |
| 793 | /* |
| 794 | * Wake up from high level PS if the STA is asleep with too little |
Arik Nemtsov | 9b17f1b | 2011-08-14 13:17:35 +0300 | [diff] [blame] | 795 | * packets in FW or if the STA is awake. |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 796 | */ |
Arik Nemtsov | 9b17f1b | 2011-08-14 13:17:35 +0300 | [diff] [blame] | 797 | if (!fw_ps || tx_pkts < WL1271_PS_STA_MAX_PACKETS) |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 798 | wl12xx_ps_link_end(wl, wlvif, hlid); |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 799 | |
Arik Nemtsov | da03209 | 2011-08-25 12:43:15 +0300 | [diff] [blame] | 800 | /* |
| 801 | * Start high-level PS if the STA is asleep with enough blocks in FW. |
| 802 | * Make an exception if this is the only connected station. In this |
| 803 | * case FW-memory congestion is not a problem. |
| 804 | */ |
| 805 | else if (!single_sta && fw_ps && tx_pkts >= WL1271_PS_STA_MAX_PACKETS) |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 806 | wl12xx_ps_link_start(wl, wlvif, hlid, true); |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 807 | } |
| 808 | |
Arik Nemtsov | 9b17f1b | 2011-08-14 13:17:35 +0300 | [diff] [blame] | 809 | static void wl12xx_irq_update_links_status(struct wl1271 *wl, |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 810 | struct wl12xx_vif *wlvif, |
Arik Nemtsov | 9b17f1b | 2011-08-14 13:17:35 +0300 | [diff] [blame] | 811 | struct wl12xx_fw_status *status) |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 812 | { |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 813 | struct wl1271_link *lnk; |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 814 | u32 cur_fw_ps_map; |
Arik Nemtsov | 9b17f1b | 2011-08-14 13:17:35 +0300 | [diff] [blame] | 815 | u8 hlid, cnt; |
| 816 | |
| 817 | /* TODO: also use link_fast_bitmap here */ |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 818 | |
| 819 | cur_fw_ps_map = le32_to_cpu(status->link_ps_bitmap); |
| 820 | if (wl->ap_fw_ps_map != cur_fw_ps_map) { |
| 821 | wl1271_debug(DEBUG_PSM, |
| 822 | "link ps prev 0x%x cur 0x%x changed 0x%x", |
| 823 | wl->ap_fw_ps_map, cur_fw_ps_map, |
| 824 | wl->ap_fw_ps_map ^ cur_fw_ps_map); |
| 825 | |
| 826 | wl->ap_fw_ps_map = cur_fw_ps_map; |
| 827 | } |
| 828 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 829 | for_each_set_bit(hlid, wlvif->ap.sta_hlid_map, WL12XX_MAX_LINKS) { |
| 830 | lnk = &wl->links[hlid]; |
| 831 | cnt = status->tx_lnk_free_pkts[hlid] - lnk->prev_freed_pkts; |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 832 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 833 | lnk->prev_freed_pkts = status->tx_lnk_free_pkts[hlid]; |
| 834 | lnk->allocated_pkts -= cnt; |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 835 | |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 836 | wl12xx_irq_ps_regulate_link(wl, wlvif, hlid, |
| 837 | lnk->allocated_pkts); |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 838 | } |
| 839 | } |
| 840 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 841 | static void wl12xx_fw_status(struct wl1271 *wl, |
| 842 | struct wl12xx_fw_status *status) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 843 | { |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 844 | struct wl12xx_vif *wlvif; |
Juuso Oikarinen | ac5e1e3 | 2010-02-22 08:38:38 +0200 | [diff] [blame] | 845 | struct timespec ts; |
Shahar Levi | 13b107d | 2011-03-06 16:32:12 +0200 | [diff] [blame] | 846 | u32 old_tx_blk_count = wl->tx_blocks_available; |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 847 | int avail, freed_blocks; |
Arik Nemtsov | bf54e30 | 2011-08-14 13:17:32 +0300 | [diff] [blame] | 848 | int i; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 849 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 850 | wl1271_raw_read(wl, FW_STATUS_ADDR, status, sizeof(*status), false); |
Shahar Levi | 13b107d | 2011-03-06 16:32:12 +0200 | [diff] [blame] | 851 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 852 | wl1271_debug(DEBUG_IRQ, "intr: 0x%x (fw_rx_counter = %d, " |
| 853 | "drv_rx_counter = %d, tx_results_counter = %d)", |
| 854 | status->intr, |
| 855 | status->fw_rx_counter, |
| 856 | status->drv_rx_counter, |
| 857 | status->tx_results_counter); |
| 858 | |
Arik Nemtsov | bf54e30 | 2011-08-14 13:17:32 +0300 | [diff] [blame] | 859 | for (i = 0; i < NUM_TX_QUEUES; i++) { |
| 860 | /* prevent wrap-around in freed-packets counter */ |
Arik Nemtsov | 742246f | 2011-08-14 13:17:33 +0300 | [diff] [blame] | 861 | wl->tx_allocated_pkts[i] -= |
Arik Nemtsov | bf54e30 | 2011-08-14 13:17:32 +0300 | [diff] [blame] | 862 | (status->tx_released_pkts[i] - |
| 863 | wl->tx_pkts_freed[i]) & 0xff; |
| 864 | |
| 865 | wl->tx_pkts_freed[i] = status->tx_released_pkts[i]; |
| 866 | } |
| 867 | |
Arik Nemtsov | bdf91cf | 2011-08-14 13:17:34 +0300 | [diff] [blame] | 868 | /* prevent wrap-around in total blocks counter */ |
| 869 | if (likely(wl->tx_blocks_freed <= |
| 870 | le32_to_cpu(status->total_released_blks))) |
| 871 | freed_blocks = le32_to_cpu(status->total_released_blks) - |
| 872 | wl->tx_blocks_freed; |
| 873 | else |
| 874 | freed_blocks = 0x100000000LL - wl->tx_blocks_freed + |
| 875 | le32_to_cpu(status->total_released_blks); |
| 876 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 877 | wl->tx_blocks_freed = le32_to_cpu(status->total_released_blks); |
Shahar Levi | 13b107d | 2011-03-06 16:32:12 +0200 | [diff] [blame] | 878 | |
Arik Nemtsov | 7bb5d6c | 2011-08-14 13:17:00 +0300 | [diff] [blame] | 879 | wl->tx_allocated_blocks -= freed_blocks; |
| 880 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 881 | avail = le32_to_cpu(status->tx_total) - wl->tx_allocated_blocks; |
Ido Yariv | d2f4d47 | 2011-03-31 10:07:00 +0200 | [diff] [blame] | 882 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 883 | /* |
| 884 | * The FW might change the total number of TX memblocks before |
| 885 | * we get a notification about blocks being released. Thus, the |
| 886 | * available blocks calculation might yield a temporary result |
| 887 | * which is lower than the actual available blocks. Keeping in |
| 888 | * mind that only blocks that were allocated can be moved from |
| 889 | * TX to RX, tx_blocks_available should never decrease here. |
| 890 | */ |
| 891 | wl->tx_blocks_available = max((int)wl->tx_blocks_available, |
| 892 | avail); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 893 | |
Ido Yariv | a522550 | 2010-10-12 14:49:10 +0200 | [diff] [blame] | 894 | /* if more blocks are available now, tx work can be scheduled */ |
Shahar Levi | 13b107d | 2011-03-06 16:32:12 +0200 | [diff] [blame] | 895 | if (wl->tx_blocks_available > old_tx_blk_count) |
Ido Yariv | a522550 | 2010-10-12 14:49:10 +0200 | [diff] [blame] | 896 | clear_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 897 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 898 | /* for AP update num of allocated TX blocks per link and ps status */ |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 899 | wl12xx_for_each_wlvif_ap(wl, wlvif) { |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 900 | wl12xx_irq_update_links_status(wl, wlvif, status); |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 901 | } |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 902 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 903 | /* update the host-chipset time offset */ |
Juuso Oikarinen | ac5e1e3 | 2010-02-22 08:38:38 +0200 | [diff] [blame] | 904 | getnstimeofday(&ts); |
| 905 | wl->time_offset = (timespec_to_ns(&ts) >> 10) - |
| 906 | (s64)le32_to_cpu(status->fw_localtime); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 907 | } |
| 908 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 909 | static void wl1271_flush_deferred_work(struct wl1271 *wl) |
| 910 | { |
| 911 | struct sk_buff *skb; |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 912 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 913 | /* Pass all received frames to the network stack */ |
| 914 | while ((skb = skb_dequeue(&wl->deferred_rx_queue))) |
| 915 | ieee80211_rx_ni(wl->hw, skb); |
| 916 | |
| 917 | /* Return sent skbs to the network stack */ |
| 918 | while ((skb = skb_dequeue(&wl->deferred_tx_queue))) |
Eliad Peller | c27d3ac | 2011-06-07 10:40:39 +0300 | [diff] [blame] | 919 | ieee80211_tx_status_ni(wl->hw, skb); |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | static void wl1271_netstack_work(struct work_struct *work) |
| 923 | { |
| 924 | struct wl1271 *wl = |
| 925 | container_of(work, struct wl1271, netstack_work); |
| 926 | |
| 927 | do { |
| 928 | wl1271_flush_deferred_work(wl); |
| 929 | } while (skb_queue_len(&wl->deferred_rx_queue)); |
| 930 | } |
| 931 | |
| 932 | #define WL1271_IRQ_MAX_LOOPS 256 |
| 933 | |
Felipe Balbi | 4b32a2c | 2011-10-06 10:46:20 +0300 | [diff] [blame^] | 934 | static irqreturn_t wl1271_irq(int irq, void *cookie) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 935 | { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 936 | int ret; |
Juuso Oikarinen | c15f63b | 2009-10-12 15:08:50 +0300 | [diff] [blame] | 937 | u32 intr; |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 938 | int loopcount = WL1271_IRQ_MAX_LOOPS; |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 939 | struct wl1271 *wl = (struct wl1271 *)cookie; |
| 940 | bool done = false; |
| 941 | unsigned int defer_count; |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 942 | unsigned long flags; |
| 943 | |
| 944 | /* TX might be handled here, avoid redundant work */ |
| 945 | set_bit(WL1271_FLAG_TX_PENDING, &wl->flags); |
| 946 | cancel_work_sync(&wl->tx_work); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 947 | |
Ido Yariv | 341b7cd | 2011-03-31 10:07:01 +0200 | [diff] [blame] | 948 | /* |
| 949 | * In case edge triggered interrupt must be used, we cannot iterate |
| 950 | * more than once without introducing race conditions with the hardirq. |
| 951 | */ |
| 952 | if (wl->platform_quirks & WL12XX_PLATFORM_QUIRK_EDGE_IRQ) |
| 953 | loopcount = 1; |
| 954 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 955 | mutex_lock(&wl->mutex); |
| 956 | |
| 957 | wl1271_debug(DEBUG_IRQ, "IRQ work"); |
| 958 | |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 959 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 960 | goto out; |
| 961 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 962 | ret = wl1271_ps_elp_wakeup(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 963 | if (ret < 0) |
| 964 | goto out; |
| 965 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 966 | while (!done && loopcount--) { |
| 967 | /* |
| 968 | * In order to avoid a race with the hardirq, clear the flag |
| 969 | * before acknowledging the chip. Since the mutex is held, |
| 970 | * wl1271_ps_elp_wakeup cannot be called concurrently. |
| 971 | */ |
| 972 | clear_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags); |
| 973 | smp_mb__after_clear_bit(); |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 974 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 975 | wl12xx_fw_status(wl, wl->fw_status); |
| 976 | intr = le32_to_cpu(wl->fw_status->intr); |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 977 | intr &= WL1271_INTR_MASK; |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 978 | if (!intr) { |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 979 | done = true; |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 980 | continue; |
| 981 | } |
| 982 | |
Eliad Peller | ccc83b0 | 2010-10-27 14:09:57 +0200 | [diff] [blame] | 983 | if (unlikely(intr & WL1271_ACX_INTR_WATCHDOG)) { |
| 984 | wl1271_error("watchdog interrupt received! " |
| 985 | "starting recovery."); |
Ido Yariv | baacb9a | 2011-06-06 14:57:05 +0300 | [diff] [blame] | 986 | wl12xx_queue_recovery_work(wl); |
Eliad Peller | ccc83b0 | 2010-10-27 14:09:57 +0200 | [diff] [blame] | 987 | |
| 988 | /* restarting the chip. ignore any other interrupt. */ |
| 989 | goto out; |
| 990 | } |
| 991 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 992 | if (likely(intr & WL1271_ACX_INTR_DATA)) { |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 993 | wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_DATA"); |
| 994 | |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 995 | wl12xx_rx(wl, wl->fw_status); |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 996 | |
Ido Yariv | a522550 | 2010-10-12 14:49:10 +0200 | [diff] [blame] | 997 | /* Check if any tx blocks were freed */ |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 998 | spin_lock_irqsave(&wl->wl_lock, flags); |
Ido Yariv | a522550 | 2010-10-12 14:49:10 +0200 | [diff] [blame] | 999 | if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags) && |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 1000 | wl1271_tx_total_queue_count(wl) > 0) { |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1001 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
Ido Yariv | a522550 | 2010-10-12 14:49:10 +0200 | [diff] [blame] | 1002 | /* |
| 1003 | * In order to avoid starvation of the TX path, |
| 1004 | * call the work function directly. |
| 1005 | */ |
Eliad Peller | a32d0cd | 2011-10-10 10:12:55 +0200 | [diff] [blame] | 1006 | wl1271_tx_work_locked(wl); |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1007 | } else { |
| 1008 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
Ido Yariv | a522550 | 2010-10-12 14:49:10 +0200 | [diff] [blame] | 1009 | } |
| 1010 | |
Ido Yariv | 8aad246 | 2011-03-01 15:14:38 +0200 | [diff] [blame] | 1011 | /* check for tx results */ |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 1012 | if (wl->fw_status->tx_results_counter != |
Ido Yariv | 8aad246 | 2011-03-01 15:14:38 +0200 | [diff] [blame] | 1013 | (wl->tx_results_count & 0xff)) |
| 1014 | wl1271_tx_complete(wl); |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 1015 | |
| 1016 | /* Make sure the deferred queues don't get too long */ |
| 1017 | defer_count = skb_queue_len(&wl->deferred_tx_queue) + |
| 1018 | skb_queue_len(&wl->deferred_rx_queue); |
| 1019 | if (defer_count > WL1271_DEFERRED_QUEUE_LIMIT) |
| 1020 | wl1271_flush_deferred_work(wl); |
Juuso Oikarinen | 1e73eb6 | 2010-02-22 08:38:37 +0200 | [diff] [blame] | 1021 | } |
| 1022 | |
| 1023 | if (intr & WL1271_ACX_INTR_EVENT_A) { |
| 1024 | wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_EVENT_A"); |
| 1025 | wl1271_event_handle(wl, 0); |
| 1026 | } |
| 1027 | |
| 1028 | if (intr & WL1271_ACX_INTR_EVENT_B) { |
| 1029 | wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_EVENT_B"); |
| 1030 | wl1271_event_handle(wl, 1); |
| 1031 | } |
| 1032 | |
| 1033 | if (intr & WL1271_ACX_INTR_INIT_COMPLETE) |
| 1034 | wl1271_debug(DEBUG_IRQ, |
| 1035 | "WL1271_ACX_INTR_INIT_COMPLETE"); |
| 1036 | |
| 1037 | if (intr & WL1271_ACX_INTR_HW_AVAILABLE) |
| 1038 | wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_HW_AVAILABLE"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1039 | } |
| 1040 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1041 | wl1271_ps_elp_sleep(wl); |
| 1042 | |
| 1043 | out: |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1044 | spin_lock_irqsave(&wl->wl_lock, flags); |
| 1045 | /* In case TX was not handled here, queue TX work */ |
| 1046 | clear_bit(WL1271_FLAG_TX_PENDING, &wl->flags); |
| 1047 | if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags) && |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 1048 | wl1271_tx_total_queue_count(wl) > 0) |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1049 | ieee80211_queue_work(wl->hw, &wl->tx_work); |
| 1050 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
| 1051 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1052 | mutex_unlock(&wl->mutex); |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 1053 | |
| 1054 | return IRQ_HANDLED; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1055 | } |
| 1056 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1057 | static int wl1271_fetch_firmware(struct wl1271 *wl) |
| 1058 | { |
| 1059 | const struct firmware *fw; |
Arik Nemtsov | 166d504 | 2010-10-16 21:44:57 +0200 | [diff] [blame] | 1060 | const char *fw_name; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1061 | int ret; |
| 1062 | |
Arik Nemtsov | c302b2c | 2011-08-17 10:45:48 +0300 | [diff] [blame] | 1063 | if (wl->chip.id == CHIP_ID_1283_PG20) |
| 1064 | fw_name = WL128X_FW_NAME; |
| 1065 | else |
| 1066 | fw_name = WL127X_FW_NAME; |
Arik Nemtsov | 166d504 | 2010-10-16 21:44:57 +0200 | [diff] [blame] | 1067 | |
| 1068 | wl1271_debug(DEBUG_BOOT, "booting firmware %s", fw_name); |
| 1069 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 1070 | ret = request_firmware(&fw, fw_name, wl->dev); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1071 | |
| 1072 | if (ret < 0) { |
| 1073 | wl1271_error("could not get firmware: %d", ret); |
| 1074 | return ret; |
| 1075 | } |
| 1076 | |
| 1077 | if (fw->size % 4) { |
| 1078 | wl1271_error("firmware size is not multiple of 32 bits: %zu", |
| 1079 | fw->size); |
| 1080 | ret = -EILSEQ; |
| 1081 | goto out; |
| 1082 | } |
| 1083 | |
Arik Nemtsov | 166d504 | 2010-10-16 21:44:57 +0200 | [diff] [blame] | 1084 | vfree(wl->fw); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1085 | wl->fw_len = fw->size; |
Juuso Oikarinen | 1fba497 | 2009-10-08 21:56:32 +0300 | [diff] [blame] | 1086 | wl->fw = vmalloc(wl->fw_len); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1087 | |
| 1088 | if (!wl->fw) { |
| 1089 | wl1271_error("could not allocate memory for the firmware"); |
| 1090 | ret = -ENOMEM; |
| 1091 | goto out; |
| 1092 | } |
| 1093 | |
| 1094 | memcpy(wl->fw, fw->data, wl->fw_len); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1095 | ret = 0; |
| 1096 | |
| 1097 | out: |
| 1098 | release_firmware(fw); |
| 1099 | |
| 1100 | return ret; |
| 1101 | } |
| 1102 | |
| 1103 | static int wl1271_fetch_nvs(struct wl1271 *wl) |
| 1104 | { |
| 1105 | const struct firmware *fw; |
| 1106 | int ret; |
| 1107 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 1108 | ret = request_firmware(&fw, WL12XX_NVS_NAME, wl->dev); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1109 | |
| 1110 | if (ret < 0) { |
| 1111 | wl1271_error("could not get nvs file: %d", ret); |
| 1112 | return ret; |
| 1113 | } |
| 1114 | |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 1115 | wl->nvs = kmemdup(fw->data, fw->size, GFP_KERNEL); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1116 | |
| 1117 | if (!wl->nvs) { |
| 1118 | wl1271_error("could not allocate memory for the nvs file"); |
| 1119 | ret = -ENOMEM; |
| 1120 | goto out; |
| 1121 | } |
| 1122 | |
Juuso Oikarinen | 02fabb0 | 2010-08-19 04:41:15 +0200 | [diff] [blame] | 1123 | wl->nvs_len = fw->size; |
| 1124 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1125 | out: |
| 1126 | release_firmware(fw); |
| 1127 | |
| 1128 | return ret; |
| 1129 | } |
| 1130 | |
Ido Yariv | baacb9a | 2011-06-06 14:57:05 +0300 | [diff] [blame] | 1131 | void wl12xx_queue_recovery_work(struct wl1271 *wl) |
| 1132 | { |
| 1133 | if (!test_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags)) |
| 1134 | ieee80211_queue_work(wl->hw, &wl->recovery_work); |
| 1135 | } |
| 1136 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 1137 | size_t wl12xx_copy_fwlog(struct wl1271 *wl, u8 *memblock, size_t maxlen) |
| 1138 | { |
| 1139 | size_t len = 0; |
| 1140 | |
| 1141 | /* The FW log is a length-value list, find where the log end */ |
| 1142 | while (len < maxlen) { |
| 1143 | if (memblock[len] == 0) |
| 1144 | break; |
| 1145 | if (len + memblock[len] + 1 > maxlen) |
| 1146 | break; |
| 1147 | len += memblock[len] + 1; |
| 1148 | } |
| 1149 | |
| 1150 | /* Make sure we have enough room */ |
| 1151 | len = min(len, (size_t)(PAGE_SIZE - wl->fwlog_size)); |
| 1152 | |
| 1153 | /* Fill the FW log file, consumed by the sysfs fwlog entry */ |
| 1154 | memcpy(wl->fwlog + wl->fwlog_size, memblock, len); |
| 1155 | wl->fwlog_size += len; |
| 1156 | |
| 1157 | return len; |
| 1158 | } |
| 1159 | |
| 1160 | static void wl12xx_read_fwlog_panic(struct wl1271 *wl) |
| 1161 | { |
| 1162 | u32 addr; |
| 1163 | u32 first_addr; |
| 1164 | u8 *block; |
| 1165 | |
| 1166 | if ((wl->quirks & WL12XX_QUIRK_FWLOG_NOT_IMPLEMENTED) || |
| 1167 | (wl->conf.fwlog.mode != WL12XX_FWLOG_ON_DEMAND) || |
| 1168 | (wl->conf.fwlog.mem_blocks == 0)) |
| 1169 | return; |
| 1170 | |
| 1171 | wl1271_info("Reading FW panic log"); |
| 1172 | |
| 1173 | block = kmalloc(WL12XX_HW_BLOCK_SIZE, GFP_KERNEL); |
| 1174 | if (!block) |
| 1175 | return; |
| 1176 | |
| 1177 | /* |
| 1178 | * Make sure the chip is awake and the logger isn't active. |
| 1179 | * This might fail if the firmware hanged. |
| 1180 | */ |
| 1181 | if (!wl1271_ps_elp_wakeup(wl)) |
| 1182 | wl12xx_cmd_stop_fwlog(wl); |
| 1183 | |
| 1184 | /* Read the first memory block address */ |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 1185 | wl12xx_fw_status(wl, wl->fw_status); |
| 1186 | first_addr = le32_to_cpu(wl->fw_status->log_start_addr); |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 1187 | if (!first_addr) |
| 1188 | goto out; |
| 1189 | |
| 1190 | /* Traverse the memory blocks linked list */ |
| 1191 | addr = first_addr; |
| 1192 | do { |
| 1193 | memset(block, 0, WL12XX_HW_BLOCK_SIZE); |
| 1194 | wl1271_read_hwaddr(wl, addr, block, WL12XX_HW_BLOCK_SIZE, |
| 1195 | false); |
| 1196 | |
| 1197 | /* |
| 1198 | * Memory blocks are linked to one another. The first 4 bytes |
| 1199 | * of each memory block hold the hardware address of the next |
| 1200 | * one. The last memory block points to the first one. |
| 1201 | */ |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 1202 | addr = le32_to_cpup((__le32 *)block); |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 1203 | if (!wl12xx_copy_fwlog(wl, block + sizeof(addr), |
| 1204 | WL12XX_HW_BLOCK_SIZE - sizeof(addr))) |
| 1205 | break; |
| 1206 | } while (addr && (addr != first_addr)); |
| 1207 | |
| 1208 | wake_up_interruptible(&wl->fwlog_waitq); |
| 1209 | |
| 1210 | out: |
| 1211 | kfree(block); |
| 1212 | } |
| 1213 | |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1214 | static void wl1271_recovery_work(struct work_struct *work) |
| 1215 | { |
| 1216 | struct wl1271 *wl = |
| 1217 | container_of(work, struct wl1271, recovery_work); |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 1218 | struct wl12xx_vif *wlvif; |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 1219 | struct ieee80211_vif *vif; |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1220 | |
| 1221 | mutex_lock(&wl->mutex); |
| 1222 | |
| 1223 | if (wl->state != WL1271_STATE_ON) |
Eliad Peller | f027743 | 2011-10-10 10:13:14 +0200 | [diff] [blame] | 1224 | goto out_unlock; |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1225 | |
Ido Yariv | baacb9a | 2011-06-06 14:57:05 +0300 | [diff] [blame] | 1226 | /* Avoid a recursive recovery */ |
| 1227 | set_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags); |
| 1228 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 1229 | wl12xx_read_fwlog_panic(wl); |
| 1230 | |
Arik Nemtsov | 52dcaf5 | 2011-04-18 14:15:24 +0300 | [diff] [blame] | 1231 | wl1271_info("Hardware recovery in progress. FW ver: %s pc: 0x%x", |
| 1232 | wl->chip.fw_ver_str, wl1271_read32(wl, SCR_PAD4)); |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1233 | |
Eliad Peller | 2a5bff0 | 2011-08-25 18:10:59 +0300 | [diff] [blame] | 1234 | BUG_ON(bug_on_recovery); |
| 1235 | |
Oz Krakowski | b992c68 | 2011-06-26 10:36:02 +0300 | [diff] [blame] | 1236 | /* |
| 1237 | * Advance security sequence number to overcome potential progress |
| 1238 | * in the firmware during recovery. This doens't hurt if the network is |
| 1239 | * not encrypted. |
| 1240 | */ |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 1241 | wl12xx_for_each_wlvif(wl, wlvif) { |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 1242 | if (test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags) || |
Eliad Peller | 53d40d0 | 2011-10-10 10:13:02 +0200 | [diff] [blame] | 1243 | test_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags)) |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 1244 | wlvif->tx_security_seq += |
| 1245 | WL1271_TX_SQN_POST_RECOVERY_PADDING; |
| 1246 | } |
Oz Krakowski | b992c68 | 2011-06-26 10:36:02 +0300 | [diff] [blame] | 1247 | |
Arik Nemtsov | 7dece1c | 2011-04-18 14:15:28 +0300 | [diff] [blame] | 1248 | /* Prevent spurious TX during FW restart */ |
| 1249 | ieee80211_stop_queues(wl->hw); |
| 1250 | |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 1251 | if (wl->sched_scanning) { |
| 1252 | ieee80211_sched_scan_stopped(wl->hw); |
| 1253 | wl->sched_scanning = false; |
| 1254 | } |
| 1255 | |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1256 | /* reboot the chipset */ |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 1257 | while (!list_empty(&wl->wlvif_list)) { |
| 1258 | wlvif = list_first_entry(&wl->wlvif_list, |
| 1259 | struct wl12xx_vif, list); |
| 1260 | vif = wl12xx_wlvif_to_vif(wlvif); |
| 1261 | __wl1271_op_remove_interface(wl, vif, false); |
| 1262 | } |
Eliad Peller | f027743 | 2011-10-10 10:13:14 +0200 | [diff] [blame] | 1263 | mutex_unlock(&wl->mutex); |
| 1264 | wl1271_op_stop(wl->hw); |
Ido Yariv | baacb9a | 2011-06-06 14:57:05 +0300 | [diff] [blame] | 1265 | |
| 1266 | clear_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags); |
| 1267 | |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1268 | ieee80211_restart_hw(wl->hw); |
| 1269 | |
Arik Nemtsov | 7dece1c | 2011-04-18 14:15:28 +0300 | [diff] [blame] | 1270 | /* |
| 1271 | * Its safe to enable TX now - the queues are stopped after a request |
| 1272 | * to restart the HW. |
| 1273 | */ |
| 1274 | ieee80211_wake_queues(wl->hw); |
Eliad Peller | f027743 | 2011-10-10 10:13:14 +0200 | [diff] [blame] | 1275 | return; |
| 1276 | out_unlock: |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1277 | mutex_unlock(&wl->mutex); |
| 1278 | } |
| 1279 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1280 | static void wl1271_fw_wakeup(struct wl1271 *wl) |
| 1281 | { |
| 1282 | u32 elp_reg; |
| 1283 | |
| 1284 | elp_reg = ELPCTRL_WAKE_UP; |
Juuso Oikarinen | 7462141 | 2009-10-12 15:08:54 +0300 | [diff] [blame] | 1285 | wl1271_raw_write32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, elp_reg); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1286 | } |
| 1287 | |
| 1288 | static int wl1271_setup(struct wl1271 *wl) |
| 1289 | { |
| 1290 | wl->fw_status = kmalloc(sizeof(*wl->fw_status), GFP_KERNEL); |
| 1291 | if (!wl->fw_status) |
| 1292 | return -ENOMEM; |
| 1293 | |
| 1294 | wl->tx_res_if = kmalloc(sizeof(*wl->tx_res_if), GFP_KERNEL); |
| 1295 | if (!wl->tx_res_if) { |
| 1296 | kfree(wl->fw_status); |
| 1297 | return -ENOMEM; |
| 1298 | } |
| 1299 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1300 | return 0; |
| 1301 | } |
| 1302 | |
| 1303 | static int wl1271_chip_wakeup(struct wl1271 *wl) |
| 1304 | { |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 1305 | struct wl1271_partition_set partition; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1306 | int ret = 0; |
| 1307 | |
Juuso Oikarinen | 01ac17e | 2009-12-11 15:41:02 +0200 | [diff] [blame] | 1308 | msleep(WL1271_PRE_POWER_ON_SLEEP); |
Ohad Ben-Cohen | 2cc78ff | 2010-09-16 01:22:04 +0200 | [diff] [blame] | 1309 | ret = wl1271_power_on(wl); |
| 1310 | if (ret < 0) |
| 1311 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1312 | msleep(WL1271_POWER_ON_SLEEP); |
Teemu Paasikivi | 9b28072 | 2010-02-18 13:25:56 +0200 | [diff] [blame] | 1313 | wl1271_io_reset(wl); |
| 1314 | wl1271_io_init(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1315 | |
| 1316 | /* We don't need a real memory partition here, because we only want |
| 1317 | * to use the registers at this point. */ |
Juuso Oikarinen | 451de97 | 2009-10-12 15:08:46 +0300 | [diff] [blame] | 1318 | memset(&partition, 0, sizeof(partition)); |
| 1319 | partition.reg.start = REGISTERS_BASE; |
| 1320 | partition.reg.size = REGISTERS_DOWN_SIZE; |
| 1321 | wl1271_set_partition(wl, &partition); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1322 | |
| 1323 | /* ELP module wake up */ |
| 1324 | wl1271_fw_wakeup(wl); |
| 1325 | |
| 1326 | /* whal_FwCtrl_BootSm() */ |
| 1327 | |
| 1328 | /* 0. read chip id from CHIP_ID */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 1329 | wl->chip.id = wl1271_read32(wl, CHIP_ID_B); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1330 | |
| 1331 | /* 1. check if chip id is valid */ |
| 1332 | |
| 1333 | switch (wl->chip.id) { |
| 1334 | case CHIP_ID_1271_PG10: |
| 1335 | wl1271_warning("chip id 0x%x (1271 PG10) support is obsolete", |
| 1336 | wl->chip.id); |
| 1337 | |
| 1338 | ret = wl1271_setup(wl); |
| 1339 | if (ret < 0) |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1340 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1341 | break; |
| 1342 | case CHIP_ID_1271_PG20: |
| 1343 | wl1271_debug(DEBUG_BOOT, "chip id 0x%x (1271 PG20)", |
| 1344 | wl->chip.id); |
| 1345 | |
| 1346 | ret = wl1271_setup(wl); |
| 1347 | if (ret < 0) |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1348 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1349 | break; |
Shahar Levi | 0830cee | 2011-03-06 16:32:20 +0200 | [diff] [blame] | 1350 | case CHIP_ID_1283_PG20: |
| 1351 | wl1271_debug(DEBUG_BOOT, "chip id 0x%x (1283 PG20)", |
| 1352 | wl->chip.id); |
| 1353 | |
| 1354 | ret = wl1271_setup(wl); |
| 1355 | if (ret < 0) |
| 1356 | goto out; |
Shahar Levi | 0c00504 | 2011-06-12 10:34:43 +0300 | [diff] [blame] | 1357 | |
Ido Yariv | 0da13da | 2011-03-31 10:06:58 +0200 | [diff] [blame] | 1358 | if (wl1271_set_block_size(wl)) |
| 1359 | wl->quirks |= WL12XX_QUIRK_BLOCKSIZE_ALIGNMENT; |
Shahar Levi | 0830cee | 2011-03-06 16:32:20 +0200 | [diff] [blame] | 1360 | break; |
| 1361 | case CHIP_ID_1283_PG10: |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1362 | default: |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1363 | wl1271_warning("unsupported chip id: 0x%x", wl->chip.id); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1364 | ret = -ENODEV; |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1365 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1366 | } |
| 1367 | |
Arik Nemtsov | c302b2c | 2011-08-17 10:45:48 +0300 | [diff] [blame] | 1368 | if (wl->fw == NULL) { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1369 | ret = wl1271_fetch_firmware(wl); |
| 1370 | if (ret < 0) |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1371 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1372 | } |
| 1373 | |
| 1374 | /* No NVS from netlink, try to get it from the filesystem */ |
| 1375 | if (wl->nvs == NULL) { |
| 1376 | ret = wl1271_fetch_nvs(wl); |
| 1377 | if (ret < 0) |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1378 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1379 | } |
| 1380 | |
| 1381 | out: |
| 1382 | return ret; |
| 1383 | } |
| 1384 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1385 | int wl1271_plt_start(struct wl1271 *wl) |
| 1386 | { |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1387 | int retries = WL1271_BOOT_RETRIES; |
Gery Kahn | 6f07b72 | 2011-07-18 14:21:49 +0300 | [diff] [blame] | 1388 | struct wiphy *wiphy = wl->hw->wiphy; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1389 | int ret; |
| 1390 | |
| 1391 | mutex_lock(&wl->mutex); |
| 1392 | |
| 1393 | wl1271_notice("power up"); |
| 1394 | |
| 1395 | if (wl->state != WL1271_STATE_OFF) { |
| 1396 | wl1271_error("cannot go into PLT state because not " |
| 1397 | "in off state: %d", wl->state); |
| 1398 | ret = -EBUSY; |
| 1399 | goto out; |
| 1400 | } |
| 1401 | |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1402 | while (retries) { |
| 1403 | retries--; |
| 1404 | ret = wl1271_chip_wakeup(wl); |
| 1405 | if (ret < 0) |
| 1406 | goto power_off; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1407 | |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1408 | ret = wl1271_boot(wl); |
| 1409 | if (ret < 0) |
| 1410 | goto power_off; |
| 1411 | |
| 1412 | ret = wl1271_plt_init(wl); |
| 1413 | if (ret < 0) |
| 1414 | goto irq_disable; |
| 1415 | |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1416 | wl->state = WL1271_STATE_PLT; |
| 1417 | wl1271_notice("firmware booted in PLT mode (%s)", |
Levi, Shahar | 4b7fac7 | 2011-01-23 07:27:22 +0100 | [diff] [blame] | 1418 | wl->chip.fw_ver_str); |
Luciano Coelho | e7ddf54 | 2011-03-10 15:24:57 +0200 | [diff] [blame] | 1419 | |
Gery Kahn | 6f07b72 | 2011-07-18 14:21:49 +0300 | [diff] [blame] | 1420 | /* update hw/fw version info in wiphy struct */ |
| 1421 | wiphy->hw_version = wl->chip.id; |
| 1422 | strncpy(wiphy->fw_version, wl->chip.fw_ver_str, |
| 1423 | sizeof(wiphy->fw_version)); |
| 1424 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1425 | goto out; |
| 1426 | |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1427 | irq_disable: |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1428 | mutex_unlock(&wl->mutex); |
| 1429 | /* Unlocking the mutex in the middle of handling is |
| 1430 | inherently unsafe. In this case we deem it safe to do, |
| 1431 | because we need to let any possibly pending IRQ out of |
| 1432 | the system (and while we are WL1271_STATE_OFF the IRQ |
| 1433 | work function will not do anything.) Also, any other |
| 1434 | possible concurrent operations will fail due to the |
| 1435 | current state, hence the wl1271 struct should be safe. */ |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 1436 | wl1271_disable_interrupts(wl); |
| 1437 | wl1271_flush_deferred_work(wl); |
| 1438 | cancel_work_sync(&wl->netstack_work); |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1439 | mutex_lock(&wl->mutex); |
| 1440 | power_off: |
| 1441 | wl1271_power_off(wl); |
| 1442 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1443 | |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 1444 | wl1271_error("firmware boot in PLT mode failed despite %d retries", |
| 1445 | WL1271_BOOT_RETRIES); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1446 | out: |
| 1447 | mutex_unlock(&wl->mutex); |
| 1448 | |
| 1449 | return ret; |
| 1450 | } |
| 1451 | |
Luciano Coelho | 4623ec7 | 2011-03-21 19:26:41 +0200 | [diff] [blame] | 1452 | static int __wl1271_plt_stop(struct wl1271 *wl) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1453 | { |
| 1454 | int ret = 0; |
| 1455 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1456 | wl1271_notice("power down"); |
| 1457 | |
| 1458 | if (wl->state != WL1271_STATE_PLT) { |
| 1459 | wl1271_error("cannot power down because not in PLT " |
| 1460 | "state: %d", wl->state); |
| 1461 | ret = -EBUSY; |
| 1462 | goto out; |
| 1463 | } |
| 1464 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1465 | wl1271_power_off(wl); |
| 1466 | |
| 1467 | wl->state = WL1271_STATE_OFF; |
Luciano Coelho | bd5ea18 | 2009-10-13 12:47:58 +0300 | [diff] [blame] | 1468 | wl->rx_counter = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1469 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1470 | mutex_unlock(&wl->mutex); |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 1471 | wl1271_disable_interrupts(wl); |
| 1472 | wl1271_flush_deferred_work(wl); |
| 1473 | cancel_work_sync(&wl->netstack_work); |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 1474 | cancel_work_sync(&wl->recovery_work); |
Juuso Oikarinen | 4ae3fa8 | 2011-01-14 12:48:46 +0100 | [diff] [blame] | 1475 | mutex_lock(&wl->mutex); |
| 1476 | out: |
| 1477 | return ret; |
| 1478 | } |
Juuso Oikarinen | 8c7f4f3 | 2010-09-21 06:23:29 +0200 | [diff] [blame] | 1479 | |
Juuso Oikarinen | 4ae3fa8 | 2011-01-14 12:48:46 +0100 | [diff] [blame] | 1480 | int wl1271_plt_stop(struct wl1271 *wl) |
| 1481 | { |
| 1482 | int ret; |
| 1483 | |
| 1484 | mutex_lock(&wl->mutex); |
| 1485 | ret = __wl1271_plt_stop(wl); |
| 1486 | mutex_unlock(&wl->mutex); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1487 | return ret; |
| 1488 | } |
| 1489 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1490 | static void wl1271_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1491 | { |
| 1492 | struct wl1271 *wl = hw->priv; |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 1493 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1494 | struct ieee80211_vif *vif = info->control.vif; |
| 1495 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Juuso Oikarinen | 830fb67 | 2009-12-11 15:41:06 +0200 | [diff] [blame] | 1496 | unsigned long flags; |
Arik Nemtsov | 708bb3c | 2011-06-24 13:03:37 +0300 | [diff] [blame] | 1497 | int q, mapping; |
Eliad Peller | d6a3cc2 | 2011-10-10 10:12:51 +0200 | [diff] [blame] | 1498 | u8 hlid; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1499 | |
Arik Nemtsov | 708bb3c | 2011-06-24 13:03:37 +0300 | [diff] [blame] | 1500 | mapping = skb_get_queue_mapping(skb); |
| 1501 | q = wl1271_tx_get_queue(mapping); |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1502 | |
Eliad Peller | d6a3cc2 | 2011-10-10 10:12:51 +0200 | [diff] [blame] | 1503 | hlid = wl12xx_tx_get_hlid(wl, wlvif, skb); |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1504 | |
Juuso Oikarinen | 830fb67 | 2009-12-11 15:41:06 +0200 | [diff] [blame] | 1505 | spin_lock_irqsave(&wl->wl_lock, flags); |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1506 | |
Juuso Oikarinen | 830fb67 | 2009-12-11 15:41:06 +0200 | [diff] [blame] | 1507 | /* queue the packet */ |
Eliad Peller | d6a3cc2 | 2011-10-10 10:12:51 +0200 | [diff] [blame] | 1508 | if (hlid == WL12XX_INVALID_LINK_ID || |
| 1509 | !test_bit(hlid, wlvif->links_map)) { |
| 1510 | wl1271_debug(DEBUG_TX, "DROP skb hlid %d q %d", hlid, q); |
| 1511 | dev_kfree_skb(skb); |
| 1512 | goto out; |
Arik Nemtsov | a8c0ddb | 2011-02-23 00:22:26 +0200 | [diff] [blame] | 1513 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1514 | |
Eliad Peller | d6a3cc2 | 2011-10-10 10:12:51 +0200 | [diff] [blame] | 1515 | wl1271_debug(DEBUG_TX, "queue skb hlid %d q %d", hlid, q); |
| 1516 | skb_queue_tail(&wl->links[hlid].tx_queue[q], skb); |
| 1517 | |
Arik Nemtsov | 04b4d69 | 2011-08-14 13:17:39 +0300 | [diff] [blame] | 1518 | wl->tx_queue_count[q]++; |
| 1519 | |
| 1520 | /* |
| 1521 | * The workqueue is slow to process the tx_queue and we need stop |
| 1522 | * the queue here, otherwise the queue will get too long. |
| 1523 | */ |
| 1524 | if (wl->tx_queue_count[q] >= WL1271_TX_QUEUE_HIGH_WATERMARK) { |
| 1525 | wl1271_debug(DEBUG_TX, "op_tx: stopping queues for q %d", q); |
| 1526 | ieee80211_stop_queue(wl->hw, mapping); |
| 1527 | set_bit(q, &wl->stopped_queues_map); |
| 1528 | } |
| 1529 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1530 | /* |
| 1531 | * The chip specific setup must run before the first TX packet - |
| 1532 | * before that, the tx_work will not be initialized! |
| 1533 | */ |
| 1534 | |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1535 | if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags) && |
| 1536 | !test_bit(WL1271_FLAG_TX_PENDING, &wl->flags)) |
Ido Yariv | a522550 | 2010-10-12 14:49:10 +0200 | [diff] [blame] | 1537 | ieee80211_queue_work(wl->hw, &wl->tx_work); |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1538 | |
Arik Nemtsov | 04216da | 2011-08-14 13:17:38 +0300 | [diff] [blame] | 1539 | out: |
Ido Yariv | b07d403 | 2011-03-01 15:14:43 +0200 | [diff] [blame] | 1540 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1541 | } |
| 1542 | |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1543 | int wl1271_tx_dummy_packet(struct wl1271 *wl) |
| 1544 | { |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1545 | unsigned long flags; |
Arik Nemtsov | 1462378 | 2011-08-28 15:11:57 +0300 | [diff] [blame] | 1546 | int q; |
| 1547 | |
| 1548 | /* no need to queue a new dummy packet if one is already pending */ |
| 1549 | if (test_bit(WL1271_FLAG_DUMMY_PACKET_PENDING, &wl->flags)) |
| 1550 | return 0; |
| 1551 | |
| 1552 | q = wl1271_tx_get_queue(skb_get_queue_mapping(wl->dummy_packet)); |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1553 | |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1554 | spin_lock_irqsave(&wl->wl_lock, flags); |
| 1555 | set_bit(WL1271_FLAG_DUMMY_PACKET_PENDING, &wl->flags); |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 1556 | wl->tx_queue_count[q]++; |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1557 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
| 1558 | |
| 1559 | /* The FW is low on RX memory blocks, so send the dummy packet asap */ |
| 1560 | if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags)) |
Eliad Peller | a32d0cd | 2011-10-10 10:12:55 +0200 | [diff] [blame] | 1561 | wl1271_tx_work_locked(wl); |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1562 | |
| 1563 | /* |
| 1564 | * If the FW TX is busy, TX work will be scheduled by the threaded |
| 1565 | * interrupt handler function |
| 1566 | */ |
| 1567 | return 0; |
| 1568 | } |
| 1569 | |
| 1570 | /* |
| 1571 | * The size of the dummy packet should be at least 1400 bytes. However, in |
| 1572 | * order to minimize the number of bus transactions, aligning it to 512 bytes |
| 1573 | * boundaries could be beneficial, performance wise |
| 1574 | */ |
| 1575 | #define TOTAL_TX_DUMMY_PACKET_SIZE (ALIGN(1400, 512)) |
| 1576 | |
Luciano Coelho | cf27d86 | 2011-04-01 21:08:23 +0300 | [diff] [blame] | 1577 | static struct sk_buff *wl12xx_alloc_dummy_packet(struct wl1271 *wl) |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1578 | { |
| 1579 | struct sk_buff *skb; |
| 1580 | struct ieee80211_hdr_3addr *hdr; |
| 1581 | unsigned int dummy_packet_size; |
| 1582 | |
| 1583 | dummy_packet_size = TOTAL_TX_DUMMY_PACKET_SIZE - |
| 1584 | sizeof(struct wl1271_tx_hw_descr) - sizeof(*hdr); |
| 1585 | |
| 1586 | skb = dev_alloc_skb(TOTAL_TX_DUMMY_PACKET_SIZE); |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1587 | if (!skb) { |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1588 | wl1271_warning("Failed to allocate a dummy packet skb"); |
| 1589 | return NULL; |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1590 | } |
| 1591 | |
| 1592 | skb_reserve(skb, sizeof(struct wl1271_tx_hw_descr)); |
| 1593 | |
| 1594 | hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr)); |
| 1595 | memset(hdr, 0, sizeof(*hdr)); |
| 1596 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA | |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1597 | IEEE80211_STYPE_NULLFUNC | |
| 1598 | IEEE80211_FCTL_TODS); |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1599 | |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1600 | memset(skb_put(skb, dummy_packet_size), 0, dummy_packet_size); |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1601 | |
Luciano Coelho | 18b92ff | 2011-03-21 16:35:21 +0200 | [diff] [blame] | 1602 | /* Dummy packets require the TID to be management */ |
| 1603 | skb->priority = WL1271_TID_MGMT; |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1604 | |
| 1605 | /* Initialize all fields that might be used */ |
Hauke Mehrtens | 86c438f | 2011-04-26 23:27:44 +0200 | [diff] [blame] | 1606 | skb_set_queue_mapping(skb, 0); |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1607 | memset(IEEE80211_SKB_CB(skb), 0, sizeof(struct ieee80211_tx_info)); |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1608 | |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1609 | return skb; |
Shahar Levi | ae47c45 | 2011-03-06 16:32:14 +0200 | [diff] [blame] | 1610 | } |
| 1611 | |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 1612 | |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 1613 | static struct notifier_block wl1271_dev_notifier = { |
| 1614 | .notifier_call = wl1271_dev_notify, |
| 1615 | }; |
| 1616 | |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 1617 | #ifdef CONFIG_PM |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 1618 | static int wl1271_configure_suspend_sta(struct wl1271 *wl, |
| 1619 | struct wl12xx_vif *wlvif) |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1620 | { |
Eliad Peller | e85d162 | 2011-06-27 13:06:43 +0300 | [diff] [blame] | 1621 | int ret = 0; |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1622 | |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1623 | mutex_lock(&wl->mutex); |
| 1624 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 1625 | if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) |
Eliad Peller | e85d162 | 2011-06-27 13:06:43 +0300 | [diff] [blame] | 1626 | goto out_unlock; |
| 1627 | |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1628 | ret = wl1271_ps_elp_wakeup(wl); |
| 1629 | if (ret < 0) |
| 1630 | goto out_unlock; |
| 1631 | |
| 1632 | /* enter psm if needed*/ |
Eliad Peller | c29bb00 | 2011-10-10 10:13:03 +0200 | [diff] [blame] | 1633 | if (!test_bit(WLVIF_FLAG_PSM, &wlvif->flags)) { |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1634 | DECLARE_COMPLETION_ONSTACK(compl); |
| 1635 | |
Eliad Peller | 6ec45dc | 2011-10-05 11:56:01 +0200 | [diff] [blame] | 1636 | wlvif->ps_compl = &compl; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1637 | ret = wl1271_ps_set_mode(wl, wlvif, STATION_POWER_SAVE_MODE, |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 1638 | wlvif->basic_rate, true); |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1639 | if (ret < 0) |
| 1640 | goto out_sleep; |
| 1641 | |
| 1642 | /* we must unlock here so we will be able to get events */ |
| 1643 | wl1271_ps_elp_sleep(wl); |
| 1644 | mutex_unlock(&wl->mutex); |
| 1645 | |
| 1646 | ret = wait_for_completion_timeout( |
| 1647 | &compl, msecs_to_jiffies(WL1271_PS_COMPLETE_TIMEOUT)); |
| 1648 | if (ret <= 0) { |
| 1649 | wl1271_warning("couldn't enter ps mode!"); |
| 1650 | ret = -EBUSY; |
| 1651 | goto out; |
| 1652 | } |
| 1653 | |
| 1654 | /* take mutex again, and wakeup */ |
| 1655 | mutex_lock(&wl->mutex); |
| 1656 | |
| 1657 | ret = wl1271_ps_elp_wakeup(wl); |
| 1658 | if (ret < 0) |
| 1659 | goto out_unlock; |
| 1660 | } |
| 1661 | out_sleep: |
| 1662 | wl1271_ps_elp_sleep(wl); |
| 1663 | out_unlock: |
| 1664 | mutex_unlock(&wl->mutex); |
| 1665 | out: |
| 1666 | return ret; |
| 1667 | |
| 1668 | } |
| 1669 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1670 | static int wl1271_configure_suspend_ap(struct wl1271 *wl, |
| 1671 | struct wl12xx_vif *wlvif) |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1672 | { |
Eliad Peller | e85d162 | 2011-06-27 13:06:43 +0300 | [diff] [blame] | 1673 | int ret = 0; |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1674 | |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1675 | mutex_lock(&wl->mutex); |
| 1676 | |
Eliad Peller | 53d40d0 | 2011-10-10 10:13:02 +0200 | [diff] [blame] | 1677 | if (!test_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags)) |
Eliad Peller | e85d162 | 2011-06-27 13:06:43 +0300 | [diff] [blame] | 1678 | goto out_unlock; |
| 1679 | |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1680 | ret = wl1271_ps_elp_wakeup(wl); |
| 1681 | if (ret < 0) |
| 1682 | goto out_unlock; |
| 1683 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1684 | ret = wl1271_acx_beacon_filter_opt(wl, wlvif, true); |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1685 | |
| 1686 | wl1271_ps_elp_sleep(wl); |
| 1687 | out_unlock: |
| 1688 | mutex_unlock(&wl->mutex); |
| 1689 | return ret; |
| 1690 | |
| 1691 | } |
| 1692 | |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 1693 | static int wl1271_configure_suspend(struct wl1271 *wl, |
| 1694 | struct wl12xx_vif *wlvif) |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1695 | { |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 1696 | if (wlvif->bss_type == BSS_TYPE_STA_BSS) |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 1697 | return wl1271_configure_suspend_sta(wl, wlvif); |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 1698 | if (wlvif->bss_type == BSS_TYPE_AP_BSS) |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1699 | return wl1271_configure_suspend_ap(wl, wlvif); |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1700 | return 0; |
| 1701 | } |
| 1702 | |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 1703 | static void wl1271_configure_resume(struct wl1271 *wl, |
| 1704 | struct wl12xx_vif *wlvif) |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1705 | { |
| 1706 | int ret; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 1707 | bool is_sta = wlvif->bss_type == BSS_TYPE_STA_BSS; |
| 1708 | bool is_ap = wlvif->bss_type == BSS_TYPE_AP_BSS; |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1709 | |
| 1710 | if (!is_sta && !is_ap) |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1711 | return; |
| 1712 | |
| 1713 | mutex_lock(&wl->mutex); |
| 1714 | ret = wl1271_ps_elp_wakeup(wl); |
| 1715 | if (ret < 0) |
| 1716 | goto out; |
| 1717 | |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1718 | if (is_sta) { |
| 1719 | /* exit psm if it wasn't configured */ |
Eliad Peller | c29bb00 | 2011-10-10 10:13:03 +0200 | [diff] [blame] | 1720 | if (!test_bit(WLVIF_FLAG_PSM_REQUESTED, &wlvif->flags)) |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1721 | wl1271_ps_set_mode(wl, wlvif, STATION_ACTIVE_MODE, |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 1722 | wlvif->basic_rate, true); |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1723 | } else if (is_ap) { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1724 | wl1271_acx_beacon_filter_opt(wl, wlvif, false); |
Eliad Peller | 8a7cf3f | 2011-06-06 12:21:54 +0300 | [diff] [blame] | 1725 | } |
Eliad Peller | 9439064 | 2011-05-13 11:57:13 +0300 | [diff] [blame] | 1726 | |
| 1727 | wl1271_ps_elp_sleep(wl); |
| 1728 | out: |
| 1729 | mutex_unlock(&wl->mutex); |
| 1730 | } |
| 1731 | |
Eliad Peller | 402e4861 | 2011-05-13 11:57:09 +0300 | [diff] [blame] | 1732 | static int wl1271_op_suspend(struct ieee80211_hw *hw, |
| 1733 | struct cfg80211_wowlan *wow) |
| 1734 | { |
| 1735 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 1736 | struct wl12xx_vif *wlvif; |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1737 | int ret; |
| 1738 | |
Eliad Peller | 402e4861 | 2011-05-13 11:57:09 +0300 | [diff] [blame] | 1739 | wl1271_debug(DEBUG_MAC80211, "mac80211 suspend wow=%d", !!wow); |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1740 | WARN_ON(!wow || !wow->any); |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 1741 | |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1742 | wl->wow_enabled = true; |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 1743 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 1744 | ret = wl1271_configure_suspend(wl, wlvif); |
| 1745 | if (ret < 0) { |
| 1746 | wl1271_warning("couldn't prepare device to suspend"); |
| 1747 | return ret; |
| 1748 | } |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 1749 | } |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1750 | /* flush any remaining work */ |
| 1751 | wl1271_debug(DEBUG_MAC80211, "flushing remaining works"); |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1752 | |
| 1753 | /* |
| 1754 | * disable and re-enable interrupts in order to flush |
| 1755 | * the threaded_irq |
| 1756 | */ |
| 1757 | wl1271_disable_interrupts(wl); |
| 1758 | |
| 1759 | /* |
| 1760 | * set suspended flag to avoid triggering a new threaded_irq |
| 1761 | * work. no need for spinlock as interrupts are disabled. |
| 1762 | */ |
| 1763 | set_bit(WL1271_FLAG_SUSPENDED, &wl->flags); |
| 1764 | |
| 1765 | wl1271_enable_interrupts(wl); |
| 1766 | flush_work(&wl->tx_work); |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 1767 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 1768 | flush_delayed_work(&wlvif->pspoll_work); |
| 1769 | } |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1770 | flush_delayed_work(&wl->elp_work); |
| 1771 | |
Eliad Peller | 402e4861 | 2011-05-13 11:57:09 +0300 | [diff] [blame] | 1772 | return 0; |
| 1773 | } |
| 1774 | |
| 1775 | static int wl1271_op_resume(struct ieee80211_hw *hw) |
| 1776 | { |
| 1777 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 1778 | struct wl12xx_vif *wlvif; |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1779 | unsigned long flags; |
| 1780 | bool run_irq_work = false; |
| 1781 | |
Eliad Peller | 402e4861 | 2011-05-13 11:57:09 +0300 | [diff] [blame] | 1782 | wl1271_debug(DEBUG_MAC80211, "mac80211 resume wow=%d", |
| 1783 | wl->wow_enabled); |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1784 | WARN_ON(!wl->wow_enabled); |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 1785 | |
| 1786 | /* |
| 1787 | * re-enable irq_work enqueuing, and call irq_work directly if |
| 1788 | * there is a pending work. |
| 1789 | */ |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1790 | spin_lock_irqsave(&wl->wl_lock, flags); |
| 1791 | clear_bit(WL1271_FLAG_SUSPENDED, &wl->flags); |
| 1792 | if (test_and_clear_bit(WL1271_FLAG_PENDING_WORK, &wl->flags)) |
| 1793 | run_irq_work = true; |
| 1794 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 1795 | |
Eliad Peller | 4a859df | 2011-06-06 12:21:52 +0300 | [diff] [blame] | 1796 | if (run_irq_work) { |
| 1797 | wl1271_debug(DEBUG_MAC80211, |
| 1798 | "run postponed irq_work directly"); |
| 1799 | wl1271_irq(0, wl); |
| 1800 | wl1271_enable_interrupts(wl); |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 1801 | } |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 1802 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 1803 | wl1271_configure_resume(wl, wlvif); |
| 1804 | } |
Eliad Peller | ff91afc | 2011-06-06 12:21:53 +0300 | [diff] [blame] | 1805 | wl->wow_enabled = false; |
Eliad Peller | f44e586 | 2011-05-13 11:57:11 +0300 | [diff] [blame] | 1806 | |
Eliad Peller | 402e4861 | 2011-05-13 11:57:09 +0300 | [diff] [blame] | 1807 | return 0; |
| 1808 | } |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 1809 | #endif |
Eliad Peller | 402e4861 | 2011-05-13 11:57:09 +0300 | [diff] [blame] | 1810 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1811 | static int wl1271_op_start(struct ieee80211_hw *hw) |
| 1812 | { |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 1813 | wl1271_debug(DEBUG_MAC80211, "mac80211 start"); |
| 1814 | |
| 1815 | /* |
| 1816 | * We have to delay the booting of the hardware because |
| 1817 | * we need to know the local MAC address before downloading and |
| 1818 | * initializing the firmware. The MAC address cannot be changed |
| 1819 | * after boot, and without the proper MAC address, the firmware |
| 1820 | * will not function properly. |
| 1821 | * |
| 1822 | * The MAC address is first known when the corresponding interface |
| 1823 | * is added. That is where we will initialize the hardware. |
| 1824 | */ |
| 1825 | |
| 1826 | return 0; |
| 1827 | } |
| 1828 | |
| 1829 | static void wl1271_op_stop(struct ieee80211_hw *hw) |
| 1830 | { |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 1831 | struct wl1271 *wl = hw->priv; |
| 1832 | int i; |
| 1833 | |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 1834 | wl1271_debug(DEBUG_MAC80211, "mac80211 stop"); |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 1835 | |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 1836 | mutex_lock(&wl->mutex); |
| 1837 | if (wl->state == WL1271_STATE_OFF) { |
| 1838 | mutex_unlock(&wl->mutex); |
| 1839 | return; |
| 1840 | } |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 1841 | /* |
| 1842 | * this must be before the cancel_work calls below, so that the work |
| 1843 | * functions don't perform further work. |
| 1844 | */ |
| 1845 | wl->state = WL1271_STATE_OFF; |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 1846 | mutex_unlock(&wl->mutex); |
| 1847 | |
| 1848 | mutex_lock(&wl_list_mutex); |
| 1849 | list_del(&wl->list); |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 1850 | mutex_unlock(&wl_list_mutex); |
| 1851 | |
| 1852 | wl1271_disable_interrupts(wl); |
| 1853 | wl1271_flush_deferred_work(wl); |
| 1854 | cancel_delayed_work_sync(&wl->scan_complete_work); |
| 1855 | cancel_work_sync(&wl->netstack_work); |
| 1856 | cancel_work_sync(&wl->tx_work); |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 1857 | cancel_delayed_work_sync(&wl->elp_work); |
| 1858 | |
| 1859 | /* let's notify MAC80211 about the remaining pending TX frames */ |
| 1860 | wl12xx_tx_reset(wl, true); |
| 1861 | mutex_lock(&wl->mutex); |
| 1862 | |
| 1863 | wl1271_power_off(wl); |
| 1864 | |
| 1865 | wl->band = IEEE80211_BAND_2GHZ; |
| 1866 | |
| 1867 | wl->rx_counter = 0; |
| 1868 | wl->power_level = WL1271_DEFAULT_POWER_LEVEL; |
| 1869 | wl->tx_blocks_available = 0; |
| 1870 | wl->tx_allocated_blocks = 0; |
| 1871 | wl->tx_results_count = 0; |
| 1872 | wl->tx_packets_count = 0; |
| 1873 | wl->time_offset = 0; |
| 1874 | wl->vif = NULL; |
| 1875 | wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT; |
| 1876 | wl->ap_fw_ps_map = 0; |
| 1877 | wl->ap_ps_map = 0; |
| 1878 | wl->sched_scanning = false; |
| 1879 | memset(wl->roles_map, 0, sizeof(wl->roles_map)); |
| 1880 | memset(wl->links_map, 0, sizeof(wl->links_map)); |
| 1881 | memset(wl->roc_map, 0, sizeof(wl->roc_map)); |
| 1882 | wl->active_sta_count = 0; |
| 1883 | |
| 1884 | /* The system link is always allocated */ |
| 1885 | __set_bit(WL12XX_SYSTEM_HLID, wl->links_map); |
| 1886 | |
| 1887 | /* |
| 1888 | * this is performed after the cancel_work calls and the associated |
| 1889 | * mutex_lock, so that wl1271_op_add_interface does not accidentally |
| 1890 | * get executed before all these vars have been reset. |
| 1891 | */ |
| 1892 | wl->flags = 0; |
| 1893 | |
| 1894 | wl->tx_blocks_freed = 0; |
| 1895 | |
| 1896 | for (i = 0; i < NUM_TX_QUEUES; i++) { |
| 1897 | wl->tx_pkts_freed[i] = 0; |
| 1898 | wl->tx_allocated_pkts[i] = 0; |
| 1899 | } |
| 1900 | |
| 1901 | wl1271_debugfs_reset(wl); |
| 1902 | |
| 1903 | kfree(wl->fw_status); |
| 1904 | wl->fw_status = NULL; |
| 1905 | kfree(wl->tx_res_if); |
| 1906 | wl->tx_res_if = NULL; |
| 1907 | kfree(wl->target_mem_map); |
| 1908 | wl->target_mem_map = NULL; |
| 1909 | |
| 1910 | mutex_unlock(&wl->mutex); |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 1911 | } |
| 1912 | |
Eliad Peller | e5a359f | 2011-10-10 10:13:15 +0200 | [diff] [blame] | 1913 | static int wl12xx_allocate_rate_policy(struct wl1271 *wl, u8 *idx) |
| 1914 | { |
| 1915 | u8 policy = find_first_zero_bit(wl->rate_policies_map, |
| 1916 | WL12XX_MAX_RATE_POLICIES); |
| 1917 | if (policy >= WL12XX_MAX_RATE_POLICIES) |
| 1918 | return -EBUSY; |
| 1919 | |
| 1920 | __set_bit(policy, wl->rate_policies_map); |
| 1921 | *idx = policy; |
| 1922 | return 0; |
| 1923 | } |
| 1924 | |
| 1925 | static void wl12xx_free_rate_policy(struct wl1271 *wl, u8 *idx) |
| 1926 | { |
| 1927 | if (WARN_ON(*idx >= WL12XX_MAX_RATE_POLICIES)) |
| 1928 | return; |
| 1929 | |
| 1930 | __clear_bit(*idx, wl->rate_policies_map); |
| 1931 | *idx = WL12XX_MAX_RATE_POLICIES; |
| 1932 | } |
| 1933 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 1934 | static u8 wl12xx_get_role_type(struct wl1271 *wl, struct wl12xx_vif *wlvif) |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 1935 | { |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 1936 | switch (wlvif->bss_type) { |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 1937 | case BSS_TYPE_AP_BSS: |
Eliad Peller | fb0e707 | 2011-10-05 11:55:47 +0200 | [diff] [blame] | 1938 | if (wlvif->p2p) |
Eliad Peller | 045c745 | 2011-08-28 15:23:01 +0300 | [diff] [blame] | 1939 | return WL1271_ROLE_P2P_GO; |
| 1940 | else |
| 1941 | return WL1271_ROLE_AP; |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 1942 | |
| 1943 | case BSS_TYPE_STA_BSS: |
Eliad Peller | fb0e707 | 2011-10-05 11:55:47 +0200 | [diff] [blame] | 1944 | if (wlvif->p2p) |
Eliad Peller | 045c745 | 2011-08-28 15:23:01 +0300 | [diff] [blame] | 1945 | return WL1271_ROLE_P2P_CL; |
| 1946 | else |
| 1947 | return WL1271_ROLE_STA; |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 1948 | |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 1949 | case BSS_TYPE_IBSS: |
| 1950 | return WL1271_ROLE_IBSS; |
| 1951 | |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 1952 | default: |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 1953 | wl1271_error("invalid bss_type: %d", wlvif->bss_type); |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 1954 | } |
| 1955 | return WL12XX_INVALID_ROLE_TYPE; |
| 1956 | } |
| 1957 | |
Eliad Peller | 8358750 | 2011-10-10 10:12:53 +0200 | [diff] [blame] | 1958 | static int wl12xx_init_vif_data(struct wl1271 *wl, struct ieee80211_vif *vif) |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 1959 | { |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 1960 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Eliad Peller | e5a359f | 2011-10-10 10:13:15 +0200 | [diff] [blame] | 1961 | int i; |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 1962 | |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 1963 | /* clear everything but the persistent data */ |
| 1964 | memset(wlvif, 0, offsetof(struct wl12xx_vif, persistent)); |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 1965 | |
| 1966 | switch (ieee80211_vif_type_p2p(vif)) { |
| 1967 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1968 | wlvif->p2p = 1; |
| 1969 | /* fall-through */ |
| 1970 | case NL80211_IFTYPE_STATION: |
| 1971 | wlvif->bss_type = BSS_TYPE_STA_BSS; |
| 1972 | break; |
| 1973 | case NL80211_IFTYPE_ADHOC: |
| 1974 | wlvif->bss_type = BSS_TYPE_IBSS; |
| 1975 | break; |
| 1976 | case NL80211_IFTYPE_P2P_GO: |
| 1977 | wlvif->p2p = 1; |
| 1978 | /* fall-through */ |
| 1979 | case NL80211_IFTYPE_AP: |
| 1980 | wlvif->bss_type = BSS_TYPE_AP_BSS; |
| 1981 | break; |
| 1982 | default: |
| 1983 | wlvif->bss_type = MAX_BSS_TYPE; |
| 1984 | return -EOPNOTSUPP; |
| 1985 | } |
| 1986 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 1987 | wlvif->role_id = WL12XX_INVALID_ROLE_ID; |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 1988 | wlvif->dev_role_id = WL12XX_INVALID_ROLE_ID; |
Eliad Peller | afaf8bd | 2011-10-05 11:55:57 +0200 | [diff] [blame] | 1989 | wlvif->dev_hlid = WL12XX_INVALID_LINK_ID; |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 1990 | |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 1991 | if (wlvif->bss_type == BSS_TYPE_STA_BSS || |
| 1992 | wlvif->bss_type == BSS_TYPE_IBSS) { |
| 1993 | /* init sta/ibss data */ |
| 1994 | wlvif->sta.hlid = WL12XX_INVALID_LINK_ID; |
Eliad Peller | e5a359f | 2011-10-10 10:13:15 +0200 | [diff] [blame] | 1995 | wl12xx_allocate_rate_policy(wl, &wlvif->sta.basic_rate_idx); |
| 1996 | wl12xx_allocate_rate_policy(wl, &wlvif->sta.ap_rate_idx); |
| 1997 | wl12xx_allocate_rate_policy(wl, &wlvif->sta.p2p_rate_idx); |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 1998 | } else { |
| 1999 | /* init ap data */ |
| 2000 | wlvif->ap.bcast_hlid = WL12XX_INVALID_LINK_ID; |
| 2001 | wlvif->ap.global_hlid = WL12XX_INVALID_LINK_ID; |
Eliad Peller | e5a359f | 2011-10-10 10:13:15 +0200 | [diff] [blame] | 2002 | wl12xx_allocate_rate_policy(wl, &wlvif->ap.mgmt_rate_idx); |
| 2003 | wl12xx_allocate_rate_policy(wl, &wlvif->ap.bcast_rate_idx); |
| 2004 | for (i = 0; i < CONF_TX_MAX_AC_COUNT; i++) |
| 2005 | wl12xx_allocate_rate_policy(wl, |
| 2006 | &wlvif->ap.ucast_rate_idx[i]); |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 2007 | } |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2008 | |
Eliad Peller | 8358750 | 2011-10-10 10:12:53 +0200 | [diff] [blame] | 2009 | wlvif->bitrate_masks[IEEE80211_BAND_2GHZ] = wl->conf.tx.basic_rate; |
| 2010 | wlvif->bitrate_masks[IEEE80211_BAND_5GHZ] = wl->conf.tx.basic_rate_5; |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2011 | wlvif->basic_rate_set = CONF_TX_RATE_MASK_BASIC; |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 2012 | wlvif->basic_rate = CONF_TX_RATE_MASK_BASIC; |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 2013 | wlvif->rate_set = CONF_TX_RATE_MASK_BASIC; |
Eliad Peller | 6a89979 | 2011-10-05 11:55:58 +0200 | [diff] [blame] | 2014 | wlvif->beacon_int = WL1271_DEFAULT_BEACON_INT; |
| 2015 | |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 2016 | /* |
| 2017 | * mac80211 configures some values globally, while we treat them |
| 2018 | * per-interface. thus, on init, we have to copy them from wl |
| 2019 | */ |
| 2020 | wlvif->band = wl->band; |
Eliad Peller | 61f845f | 2011-10-10 10:13:10 +0200 | [diff] [blame] | 2021 | wlvif->channel = wl->channel; |
Eliad Peller | 6bd6502 | 2011-10-10 10:13:11 +0200 | [diff] [blame] | 2022 | wlvif->power_level = wl->power_level; |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 2023 | |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 2024 | INIT_WORK(&wlvif->rx_streaming_enable_work, |
| 2025 | wl1271_rx_streaming_enable_work); |
| 2026 | INIT_WORK(&wlvif->rx_streaming_disable_work, |
| 2027 | wl1271_rx_streaming_disable_work); |
Eliad Peller | 252efa4 | 2011-10-05 11:56:00 +0200 | [diff] [blame] | 2028 | INIT_DELAYED_WORK(&wlvif->pspoll_work, wl1271_pspoll_work); |
Eliad Peller | 8762721 | 2011-10-10 10:12:54 +0200 | [diff] [blame] | 2029 | INIT_LIST_HEAD(&wlvif->list); |
Eliad Peller | 252efa4 | 2011-10-05 11:56:00 +0200 | [diff] [blame] | 2030 | |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 2031 | setup_timer(&wlvif->rx_streaming_timer, wl1271_rx_streaming_timer, |
| 2032 | (unsigned long) wlvif); |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 2033 | return 0; |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2034 | } |
| 2035 | |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2036 | static bool wl12xx_init_fw(struct wl1271 *wl) |
| 2037 | { |
| 2038 | int retries = WL1271_BOOT_RETRIES; |
| 2039 | bool booted = false; |
| 2040 | struct wiphy *wiphy = wl->hw->wiphy; |
| 2041 | int ret; |
| 2042 | |
| 2043 | while (retries) { |
| 2044 | retries--; |
| 2045 | ret = wl1271_chip_wakeup(wl); |
| 2046 | if (ret < 0) |
| 2047 | goto power_off; |
| 2048 | |
| 2049 | ret = wl1271_boot(wl); |
| 2050 | if (ret < 0) |
| 2051 | goto power_off; |
| 2052 | |
| 2053 | ret = wl1271_hw_init(wl); |
| 2054 | if (ret < 0) |
| 2055 | goto irq_disable; |
| 2056 | |
| 2057 | booted = true; |
| 2058 | break; |
| 2059 | |
| 2060 | irq_disable: |
| 2061 | mutex_unlock(&wl->mutex); |
| 2062 | /* Unlocking the mutex in the middle of handling is |
| 2063 | inherently unsafe. In this case we deem it safe to do, |
| 2064 | because we need to let any possibly pending IRQ out of |
| 2065 | the system (and while we are WL1271_STATE_OFF the IRQ |
| 2066 | work function will not do anything.) Also, any other |
| 2067 | possible concurrent operations will fail due to the |
| 2068 | current state, hence the wl1271 struct should be safe. */ |
| 2069 | wl1271_disable_interrupts(wl); |
| 2070 | wl1271_flush_deferred_work(wl); |
| 2071 | cancel_work_sync(&wl->netstack_work); |
| 2072 | mutex_lock(&wl->mutex); |
| 2073 | power_off: |
| 2074 | wl1271_power_off(wl); |
| 2075 | } |
| 2076 | |
| 2077 | if (!booted) { |
| 2078 | wl1271_error("firmware boot failed despite %d retries", |
| 2079 | WL1271_BOOT_RETRIES); |
| 2080 | goto out; |
| 2081 | } |
| 2082 | |
| 2083 | wl1271_info("firmware booted (%s)", wl->chip.fw_ver_str); |
| 2084 | |
| 2085 | /* update hw/fw version info in wiphy struct */ |
| 2086 | wiphy->hw_version = wl->chip.id; |
| 2087 | strncpy(wiphy->fw_version, wl->chip.fw_ver_str, |
| 2088 | sizeof(wiphy->fw_version)); |
| 2089 | |
| 2090 | /* |
| 2091 | * Now we know if 11a is supported (info from the NVS), so disable |
| 2092 | * 11a channels if not supported |
| 2093 | */ |
| 2094 | if (!wl->enable_11a) |
| 2095 | wiphy->bands[IEEE80211_BAND_5GHZ]->n_channels = 0; |
| 2096 | |
| 2097 | wl1271_debug(DEBUG_MAC80211, "11a is %ssupported", |
| 2098 | wl->enable_11a ? "" : "not "); |
| 2099 | |
| 2100 | wl->state = WL1271_STATE_ON; |
| 2101 | out: |
| 2102 | return booted; |
| 2103 | } |
| 2104 | |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2105 | static int wl1271_op_add_interface(struct ieee80211_hw *hw, |
| 2106 | struct ieee80211_vif *vif) |
| 2107 | { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2108 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2109 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2110 | int ret = 0; |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 2111 | u8 role_type; |
Eliad Peller | 71125ab | 2010-10-28 21:46:43 +0200 | [diff] [blame] | 2112 | bool booted = false; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2113 | |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2114 | wl1271_debug(DEBUG_MAC80211, "mac80211 add interface type %d mac %pM", |
Eliad Peller | 045c745 | 2011-08-28 15:23:01 +0300 | [diff] [blame] | 2115 | ieee80211_vif_type_p2p(vif), vif->addr); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2116 | |
| 2117 | mutex_lock(&wl->mutex); |
Eliad Peller | f750c82 | 2011-10-10 10:13:16 +0200 | [diff] [blame] | 2118 | ret = wl1271_ps_elp_wakeup(wl); |
| 2119 | if (ret < 0) |
| 2120 | goto out_unlock; |
| 2121 | |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2122 | if (wl->vif) { |
Eliad Peller | 71125ab | 2010-10-28 21:46:43 +0200 | [diff] [blame] | 2123 | wl1271_debug(DEBUG_MAC80211, |
| 2124 | "multiple vifs are not supported yet"); |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2125 | ret = -EBUSY; |
| 2126 | goto out; |
| 2127 | } |
| 2128 | |
Juuso Oikarinen | 13026de | 2011-03-29 16:43:50 +0300 | [diff] [blame] | 2129 | /* |
| 2130 | * in some very corner case HW recovery scenarios its possible to |
| 2131 | * get here before __wl1271_op_remove_interface is complete, so |
| 2132 | * opt out if that is the case. |
| 2133 | */ |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 2134 | if (test_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags) || |
| 2135 | test_bit(WLVIF_FLAG_INITIALIZED, &wlvif->flags)) { |
Juuso Oikarinen | 13026de | 2011-03-29 16:43:50 +0300 | [diff] [blame] | 2136 | ret = -EBUSY; |
| 2137 | goto out; |
| 2138 | } |
| 2139 | |
Eliad Peller | 8358750 | 2011-10-10 10:12:53 +0200 | [diff] [blame] | 2140 | ret = wl12xx_init_vif_data(wl, vif); |
Eliad Peller | e936bbe | 2011-10-05 11:55:56 +0200 | [diff] [blame] | 2141 | if (ret < 0) |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2142 | goto out; |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2143 | |
Eliad Peller | 252efa4 | 2011-10-05 11:56:00 +0200 | [diff] [blame] | 2144 | wlvif->wl = wl; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2145 | role_type = wl12xx_get_role_type(wl, wlvif); |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 2146 | if (role_type == WL12XX_INVALID_ROLE_TYPE) { |
| 2147 | ret = -EINVAL; |
| 2148 | goto out; |
| 2149 | } |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2150 | |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 2151 | /* |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2152 | * TODO: after the nvs issue will be solved, move this block |
| 2153 | * to start(), and make sure here the driver is ON. |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 2154 | */ |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2155 | if (wl->state == WL1271_STATE_OFF) { |
| 2156 | /* |
| 2157 | * we still need this in order to configure the fw |
| 2158 | * while uploading the nvs |
| 2159 | */ |
| 2160 | memcpy(wl->mac_addr, vif->addr, ETH_ALEN); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2161 | |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2162 | booted = wl12xx_init_fw(wl); |
| 2163 | if (!booted) { |
| 2164 | ret = -EINVAL; |
| 2165 | goto out; |
Eliad Peller | 04e8079 | 2011-08-14 13:17:09 +0300 | [diff] [blame] | 2166 | } |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2167 | } |
Eliad Peller | 04e8079 | 2011-08-14 13:17:09 +0300 | [diff] [blame] | 2168 | |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2169 | if (wlvif->bss_type == BSS_TYPE_STA_BSS || |
| 2170 | wlvif->bss_type == BSS_TYPE_IBSS) { |
| 2171 | /* |
| 2172 | * The device role is a special role used for |
| 2173 | * rx and tx frames prior to association (as |
| 2174 | * the STA role can get packets only from |
| 2175 | * its associated bssid) |
| 2176 | */ |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 2177 | ret = wl12xx_cmd_role_enable(wl, vif->addr, |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2178 | WL1271_ROLE_DEVICE, |
| 2179 | &wlvif->dev_role_id); |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 2180 | if (ret < 0) |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2181 | goto out; |
Juuso Oikarinen | 9ccd921 | 2009-12-11 15:41:01 +0200 | [diff] [blame] | 2182 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2183 | |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2184 | ret = wl12xx_cmd_role_enable(wl, vif->addr, |
| 2185 | role_type, &wlvif->role_id); |
| 2186 | if (ret < 0) |
Eliad Peller | 71125ab | 2010-10-28 21:46:43 +0200 | [diff] [blame] | 2187 | goto out; |
Eliad Peller | 1d09547 | 2011-10-10 10:12:49 +0200 | [diff] [blame] | 2188 | |
| 2189 | ret = wl1271_init_vif_specific(wl, vif); |
| 2190 | if (ret < 0) |
| 2191 | goto out; |
Eliad Peller | 71125ab | 2010-10-28 21:46:43 +0200 | [diff] [blame] | 2192 | |
| 2193 | wl->vif = vif; |
Eliad Peller | 8762721 | 2011-10-10 10:12:54 +0200 | [diff] [blame] | 2194 | list_add(&wlvif->list, &wl->wlvif_list); |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 2195 | set_bit(WLVIF_FLAG_INITIALIZED, &wlvif->flags); |
Eliad Peller | a4e4130 | 2011-10-11 11:49:15 +0200 | [diff] [blame] | 2196 | |
| 2197 | if (wlvif->bss_type == BSS_TYPE_AP_BSS) |
| 2198 | wl->ap_count++; |
| 2199 | else |
| 2200 | wl->sta_count++; |
Juuso Oikarinen | eb5b28d | 2009-10-13 12:47:45 +0300 | [diff] [blame] | 2201 | out: |
Eliad Peller | f750c82 | 2011-10-10 10:13:16 +0200 | [diff] [blame] | 2202 | wl1271_ps_elp_sleep(wl); |
| 2203 | out_unlock: |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2204 | mutex_unlock(&wl->mutex); |
| 2205 | |
Juuso Oikarinen | f9f774c | 2011-03-21 10:43:36 +0200 | [diff] [blame] | 2206 | mutex_lock(&wl_list_mutex); |
Juuso Oikarinen | eb887df | 2010-07-08 17:49:58 +0300 | [diff] [blame] | 2207 | if (!ret) |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 2208 | list_add(&wl->list, &wl_list); |
Juuso Oikarinen | f9f774c | 2011-03-21 10:43:36 +0200 | [diff] [blame] | 2209 | mutex_unlock(&wl_list_mutex); |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 2210 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2211 | return ret; |
| 2212 | } |
| 2213 | |
Arik Nemtsov | 7dece1c | 2011-04-18 14:15:28 +0300 | [diff] [blame] | 2214 | static void __wl1271_op_remove_interface(struct wl1271 *wl, |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2215 | struct ieee80211_vif *vif, |
Arik Nemtsov | 7dece1c | 2011-04-18 14:15:28 +0300 | [diff] [blame] | 2216 | bool reset_tx_queues) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2217 | { |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2218 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Eliad Peller | e5a359f | 2011-10-10 10:13:15 +0200 | [diff] [blame] | 2219 | int i, ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2220 | |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2221 | wl1271_debug(DEBUG_MAC80211, "mac80211 remove interface"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2222 | |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 2223 | if (!test_and_clear_bit(WLVIF_FLAG_INITIALIZED, &wlvif->flags)) |
| 2224 | return; |
| 2225 | |
Juuso Oikarinen | 13026de | 2011-03-29 16:43:50 +0300 | [diff] [blame] | 2226 | /* because of hardware recovery, we may get here twice */ |
| 2227 | if (wl->state != WL1271_STATE_ON) |
| 2228 | return; |
| 2229 | |
Juuso Oikarinen | 1b72aec | 2010-03-18 12:26:39 +0200 | [diff] [blame] | 2230 | wl1271_info("down"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2231 | |
Juuso Oikarinen | 8d2ef7b | 2010-07-08 17:50:03 +0300 | [diff] [blame] | 2232 | /* enable dyn ps just in case (if left on due to fw crash etc) */ |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2233 | if (wlvif->bss_type == BSS_TYPE_STA_BSS) |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 2234 | ieee80211_enable_dyn_ps(vif); |
Juuso Oikarinen | 8d2ef7b | 2010-07-08 17:50:03 +0300 | [diff] [blame] | 2235 | |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 2236 | if (wl->scan.state != WL1271_SCAN_STATE_IDLE && |
| 2237 | wl->scan_vif == vif) { |
Luciano Coelho | 08688d6 | 2010-07-08 17:50:07 +0300 | [diff] [blame] | 2238 | wl->scan.state = WL1271_SCAN_STATE_IDLE; |
Luciano Coelho | 4a31c11 | 2011-03-21 23:16:14 +0200 | [diff] [blame] | 2239 | memset(wl->scan.scanned_ch, 0, sizeof(wl->scan.scanned_ch)); |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 2240 | wl->scan_vif = NULL; |
Juuso Oikarinen | b739a42 | 2010-10-26 13:24:38 +0200 | [diff] [blame] | 2241 | wl->scan.req = NULL; |
Juuso Oikarinen | 76a029f | 2010-07-29 04:54:45 +0300 | [diff] [blame] | 2242 | ieee80211_scan_completed(wl->hw, true); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2243 | } |
| 2244 | |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 2245 | if (!test_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags)) { |
| 2246 | /* disable active roles */ |
| 2247 | ret = wl1271_ps_elp_wakeup(wl); |
| 2248 | if (ret < 0) |
| 2249 | goto deinit; |
| 2250 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2251 | if (wlvif->bss_type == BSS_TYPE_STA_BSS) { |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2252 | ret = wl12xx_cmd_role_disable(wl, &wlvif->dev_role_id); |
Eliad Peller | 04e8079 | 2011-08-14 13:17:09 +0300 | [diff] [blame] | 2253 | if (ret < 0) |
| 2254 | goto deinit; |
| 2255 | } |
| 2256 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2257 | ret = wl12xx_cmd_role_disable(wl, &wlvif->role_id); |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 2258 | if (ret < 0) |
| 2259 | goto deinit; |
| 2260 | |
| 2261 | wl1271_ps_elp_sleep(wl); |
| 2262 | } |
| 2263 | deinit: |
Arik Nemtsov | e51ae9b | 2011-08-14 13:17:21 +0300 | [diff] [blame] | 2264 | /* clear all hlids (except system_hlid) */ |
Eliad Peller | afaf8bd | 2011-10-05 11:55:57 +0200 | [diff] [blame] | 2265 | wlvif->dev_hlid = WL12XX_INVALID_LINK_ID; |
Eliad Peller | e5a359f | 2011-10-10 10:13:15 +0200 | [diff] [blame] | 2266 | |
| 2267 | if (wlvif->bss_type == BSS_TYPE_STA_BSS || |
| 2268 | wlvif->bss_type == BSS_TYPE_IBSS) { |
| 2269 | wlvif->sta.hlid = WL12XX_INVALID_LINK_ID; |
| 2270 | wl12xx_free_rate_policy(wl, &wlvif->sta.basic_rate_idx); |
| 2271 | wl12xx_free_rate_policy(wl, &wlvif->sta.ap_rate_idx); |
| 2272 | wl12xx_free_rate_policy(wl, &wlvif->sta.p2p_rate_idx); |
| 2273 | } else { |
| 2274 | wlvif->ap.bcast_hlid = WL12XX_INVALID_LINK_ID; |
| 2275 | wlvif->ap.global_hlid = WL12XX_INVALID_LINK_ID; |
| 2276 | wl12xx_free_rate_policy(wl, &wlvif->ap.mgmt_rate_idx); |
| 2277 | wl12xx_free_rate_policy(wl, &wlvif->ap.bcast_rate_idx); |
| 2278 | for (i = 0; i < CONF_TX_MAX_AC_COUNT; i++) |
| 2279 | wl12xx_free_rate_policy(wl, |
| 2280 | &wlvif->ap.ucast_rate_idx[i]); |
| 2281 | } |
Eliad Peller | b78b47e | 2011-08-14 13:17:08 +0300 | [diff] [blame] | 2282 | |
Eliad Peller | d6a3cc2 | 2011-10-10 10:12:51 +0200 | [diff] [blame] | 2283 | wl12xx_tx_reset_wlvif(wl, wlvif); |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2284 | wl1271_free_ap_keys(wl, wlvif); |
Eliad Peller | e4120df | 2011-10-10 10:13:17 +0200 | [diff] [blame] | 2285 | if (wl->last_wlvif == wlvif) |
| 2286 | wl->last_wlvif = NULL; |
Eliad Peller | 8762721 | 2011-10-10 10:12:54 +0200 | [diff] [blame] | 2287 | list_del(&wlvif->list); |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 2288 | memset(wlvif->ap.sta_hlid_map, 0, sizeof(wlvif->ap.sta_hlid_map)); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2289 | wlvif->role_id = WL12XX_INVALID_ROLE_ID; |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2290 | wlvif->dev_role_id = WL12XX_INVALID_ROLE_ID; |
Luciano Coelho | d6e19d1 | 2009-10-12 15:08:43 +0300 | [diff] [blame] | 2291 | |
Eliad Peller | a4e4130 | 2011-10-11 11:49:15 +0200 | [diff] [blame] | 2292 | if (wlvif->bss_type == BSS_TYPE_AP_BSS) |
| 2293 | wl->ap_count--; |
| 2294 | else |
| 2295 | wl->sta_count--; |
| 2296 | |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 2297 | mutex_unlock(&wl->mutex); |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 2298 | del_timer_sync(&wlvif->rx_streaming_timer); |
| 2299 | cancel_work_sync(&wlvif->rx_streaming_enable_work); |
| 2300 | cancel_work_sync(&wlvif->rx_streaming_disable_work); |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 2301 | cancel_delayed_work_sync(&wlvif->pspoll_work); |
Eliad Peller | f4df1bd | 2011-08-14 13:17:15 +0300 | [diff] [blame] | 2302 | |
Eliad Peller | baf6277 | 2011-10-10 10:12:52 +0200 | [diff] [blame] | 2303 | mutex_lock(&wl->mutex); |
Juuso Oikarinen | 52a2a37 | 2010-09-21 06:23:30 +0200 | [diff] [blame] | 2304 | } |
Juuso Oikarinen | bd9dc49 | 2010-04-09 11:07:26 +0300 | [diff] [blame] | 2305 | |
Juuso Oikarinen | 52a2a37 | 2010-09-21 06:23:30 +0200 | [diff] [blame] | 2306 | static void wl1271_op_remove_interface(struct ieee80211_hw *hw, |
| 2307 | struct ieee80211_vif *vif) |
| 2308 | { |
| 2309 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 2310 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2311 | struct wl12xx_vif *iter; |
Juuso Oikarinen | 52a2a37 | 2010-09-21 06:23:30 +0200 | [diff] [blame] | 2312 | |
| 2313 | mutex_lock(&wl->mutex); |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 2314 | |
| 2315 | if (wl->state == WL1271_STATE_OFF || |
| 2316 | !test_bit(WLVIF_FLAG_INITIALIZED, &wlvif->flags)) |
| 2317 | goto out; |
| 2318 | |
Juuso Oikarinen | 6735329 | 2010-11-18 15:19:02 +0200 | [diff] [blame] | 2319 | /* |
| 2320 | * wl->vif can be null here if someone shuts down the interface |
| 2321 | * just when hardware recovery has been started. |
| 2322 | */ |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2323 | wl12xx_for_each_wlvif(wl, iter) { |
| 2324 | if (iter != wlvif) |
| 2325 | continue; |
| 2326 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2327 | __wl1271_op_remove_interface(wl, vif, true); |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2328 | break; |
Juuso Oikarinen | 6735329 | 2010-11-18 15:19:02 +0200 | [diff] [blame] | 2329 | } |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2330 | WARN_ON(iter != wlvif); |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 2331 | out: |
Juuso Oikarinen | 6735329 | 2010-11-18 15:19:02 +0200 | [diff] [blame] | 2332 | mutex_unlock(&wl->mutex); |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 2333 | cancel_work_sync(&wl->recovery_work); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2334 | } |
| 2335 | |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2336 | static int wl1271_join(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 2337 | bool set_assoc) |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2338 | { |
| 2339 | int ret; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2340 | bool is_ibss = (wlvif->bss_type == BSS_TYPE_IBSS); |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2341 | |
Juuso Oikarinen | 69e5434 | 2010-05-07 11:39:00 +0300 | [diff] [blame] | 2342 | /* |
| 2343 | * One of the side effects of the JOIN command is that is clears |
| 2344 | * WPA/WPA2 keys from the chipset. Performing a JOIN while associated |
| 2345 | * to a WPA/WPA2 access point will therefore kill the data-path. |
Ohad Ben-Cohen | 8bf69aa | 2011-03-30 19:18:31 +0200 | [diff] [blame] | 2346 | * Currently the only valid scenario for JOIN during association |
| 2347 | * is on roaming, in which case we will also be given new keys. |
| 2348 | * Keep the below message for now, unless it starts bothering |
| 2349 | * users who really like to roam a lot :) |
Juuso Oikarinen | 69e5434 | 2010-05-07 11:39:00 +0300 | [diff] [blame] | 2350 | */ |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 2351 | if (test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) |
Juuso Oikarinen | 69e5434 | 2010-05-07 11:39:00 +0300 | [diff] [blame] | 2352 | wl1271_info("JOIN while associated."); |
| 2353 | |
| 2354 | if (set_assoc) |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 2355 | set_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags); |
Juuso Oikarinen | 69e5434 | 2010-05-07 11:39:00 +0300 | [diff] [blame] | 2356 | |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 2357 | if (is_ibss) |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2358 | ret = wl12xx_cmd_role_start_ibss(wl, wlvif); |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 2359 | else |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2360 | ret = wl12xx_cmd_role_start_sta(wl, wlvif); |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2361 | if (ret < 0) |
| 2362 | goto out; |
| 2363 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 2364 | if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2365 | goto out; |
| 2366 | |
| 2367 | /* |
| 2368 | * The join command disable the keep-alive mode, shut down its process, |
| 2369 | * and also clear the template config, so we need to reset it all after |
| 2370 | * the join. The acx_aid starts the keep-alive process, and the order |
| 2371 | * of the commands below is relevant. |
| 2372 | */ |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2373 | ret = wl1271_acx_keep_alive_mode(wl, wlvif, true); |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2374 | if (ret < 0) |
| 2375 | goto out; |
| 2376 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2377 | ret = wl1271_acx_aid(wl, wlvif, wlvif->aid); |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2378 | if (ret < 0) |
| 2379 | goto out; |
| 2380 | |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 2381 | ret = wl12xx_cmd_build_klv_null_data(wl, wlvif); |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2382 | if (ret < 0) |
| 2383 | goto out; |
| 2384 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2385 | ret = wl1271_acx_keep_alive_config(wl, wlvif, |
| 2386 | CMD_TEMPL_KLV_IDX_NULL_DATA, |
Juuso Oikarinen | 82429d3 | 2010-04-28 09:50:01 +0300 | [diff] [blame] | 2387 | ACX_KEEP_ALIVE_TPL_VALID); |
| 2388 | if (ret < 0) |
| 2389 | goto out; |
| 2390 | |
| 2391 | out: |
| 2392 | return ret; |
| 2393 | } |
| 2394 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2395 | static int wl1271_unjoin(struct wl1271 *wl, struct wl12xx_vif *wlvif) |
Luciano Coelho | c7f43e4 | 2009-12-11 15:40:44 +0200 | [diff] [blame] | 2396 | { |
| 2397 | int ret; |
| 2398 | |
Eliad Peller | 52630c5 | 2011-10-10 10:13:08 +0200 | [diff] [blame] | 2399 | if (test_and_clear_bit(WLVIF_FLAG_CS_PROGRESS, &wlvif->flags)) { |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2400 | struct ieee80211_vif *vif = wl12xx_wlvif_to_vif(wlvif); |
| 2401 | |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 2402 | wl12xx_cmd_stop_channel_switch(wl); |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2403 | ieee80211_chswitch_done(vif, false); |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 2404 | } |
| 2405 | |
Luciano Coelho | c7f43e4 | 2009-12-11 15:40:44 +0200 | [diff] [blame] | 2406 | /* to stop listening to a channel, we disconnect */ |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2407 | ret = wl12xx_cmd_role_stop_sta(wl, wlvif); |
Luciano Coelho | c7f43e4 | 2009-12-11 15:40:44 +0200 | [diff] [blame] | 2408 | if (ret < 0) |
| 2409 | goto out; |
| 2410 | |
Oz Krakowski | b992c68 | 2011-06-26 10:36:02 +0300 | [diff] [blame] | 2411 | /* reset TX security counters on a clean disconnect */ |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 2412 | wlvif->tx_security_last_seq_lsb = 0; |
| 2413 | wlvif->tx_security_seq = 0; |
Oz Krakowski | b992c68 | 2011-06-26 10:36:02 +0300 | [diff] [blame] | 2414 | |
Luciano Coelho | c7f43e4 | 2009-12-11 15:40:44 +0200 | [diff] [blame] | 2415 | out: |
| 2416 | return ret; |
| 2417 | } |
| 2418 | |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2419 | static void wl1271_set_band_rate(struct wl1271 *wl, struct wl12xx_vif *wlvif) |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2420 | { |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 2421 | wlvif->basic_rate_set = wlvif->bitrate_masks[wlvif->band]; |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 2422 | wlvif->rate_set = wlvif->basic_rate_set; |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2423 | } |
| 2424 | |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2425 | static bool wl12xx_is_roc(struct wl1271 *wl) |
| 2426 | { |
| 2427 | u8 role_id; |
| 2428 | |
| 2429 | role_id = find_first_bit(wl->roc_map, WL12XX_MAX_ROLES); |
| 2430 | if (role_id >= WL12XX_MAX_ROLES) |
| 2431 | return false; |
| 2432 | |
| 2433 | return true; |
| 2434 | } |
| 2435 | |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2436 | static int wl1271_sta_handle_idle(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 2437 | bool idle) |
Juuso Oikarinen | 0d58cbf | 2010-05-24 11:18:16 +0300 | [diff] [blame] | 2438 | { |
| 2439 | int ret; |
| 2440 | |
| 2441 | if (idle) { |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2442 | /* no need to croc if we weren't busy (e.g. during boot) */ |
| 2443 | if (wl12xx_is_roc(wl)) { |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2444 | ret = wl12xx_croc(wl, wlvif->dev_role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2445 | if (ret < 0) |
| 2446 | goto out; |
| 2447 | |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2448 | ret = wl12xx_cmd_role_stop_dev(wl, wlvif); |
Juuso Oikarinen | 0d58cbf | 2010-05-24 11:18:16 +0300 | [diff] [blame] | 2449 | if (ret < 0) |
| 2450 | goto out; |
| 2451 | } |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 2452 | wlvif->rate_set = |
| 2453 | wl1271_tx_min_rate_get(wl, wlvif->basic_rate_set); |
| 2454 | ret = wl1271_acx_sta_rate_policies(wl, wlvif); |
Juuso Oikarinen | 0d58cbf | 2010-05-24 11:18:16 +0300 | [diff] [blame] | 2455 | if (ret < 0) |
| 2456 | goto out; |
| 2457 | ret = wl1271_acx_keep_alive_config( |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2458 | wl, wlvif, CMD_TEMPL_KLV_IDX_NULL_DATA, |
Juuso Oikarinen | 0d58cbf | 2010-05-24 11:18:16 +0300 | [diff] [blame] | 2459 | ACX_KEEP_ALIVE_TPL_INVALID); |
| 2460 | if (ret < 0) |
| 2461 | goto out; |
| 2462 | set_bit(WL1271_FLAG_IDLE, &wl->flags); |
| 2463 | } else { |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 2464 | /* The current firmware only supports sched_scan in idle */ |
| 2465 | if (wl->sched_scanning) { |
| 2466 | wl1271_scan_sched_scan_stop(wl); |
| 2467 | ieee80211_sched_scan_stopped(wl->hw); |
| 2468 | } |
| 2469 | |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2470 | ret = wl12xx_cmd_role_start_dev(wl, wlvif); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2471 | if (ret < 0) |
| 2472 | goto out; |
| 2473 | |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 2474 | ret = wl12xx_roc(wl, wlvif, wlvif->dev_role_id); |
Juuso Oikarinen | 0d58cbf | 2010-05-24 11:18:16 +0300 | [diff] [blame] | 2475 | if (ret < 0) |
| 2476 | goto out; |
| 2477 | clear_bit(WL1271_FLAG_IDLE, &wl->flags); |
| 2478 | } |
| 2479 | |
| 2480 | out: |
| 2481 | return ret; |
| 2482 | } |
| 2483 | |
Eliad Peller | 9f259c4 | 2011-10-10 10:13:12 +0200 | [diff] [blame] | 2484 | static int wl12xx_config_vif(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 2485 | struct ieee80211_conf *conf, u32 changed) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2486 | { |
Eliad Peller | 9f259c4 | 2011-10-10 10:13:12 +0200 | [diff] [blame] | 2487 | bool is_ap = (wlvif->bss_type == BSS_TYPE_AP_BSS); |
| 2488 | int channel, ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2489 | |
| 2490 | channel = ieee80211_frequency_to_channel(conf->channel->center_freq); |
| 2491 | |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2492 | /* if the channel changes while joined, join again */ |
Juuso Oikarinen | 69e5434 | 2010-05-07 11:39:00 +0300 | [diff] [blame] | 2493 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL && |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 2494 | ((wlvif->band != conf->channel->band) || |
Eliad Peller | 61f845f | 2011-10-10 10:13:10 +0200 | [diff] [blame] | 2495 | (wlvif->channel != channel))) { |
Eliad Peller | c6930b0 | 2011-09-15 13:00:01 +0300 | [diff] [blame] | 2496 | /* send all pending packets */ |
Eliad Peller | a32d0cd | 2011-10-10 10:12:55 +0200 | [diff] [blame] | 2497 | wl1271_tx_work_locked(wl); |
Eliad Peller | 61f845f | 2011-10-10 10:13:10 +0200 | [diff] [blame] | 2498 | wlvif->band = conf->channel->band; |
| 2499 | wlvif->channel = channel; |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2500 | |
Arik Nemtsov | bee0ffe | 2010-10-16 19:17:02 +0200 | [diff] [blame] | 2501 | if (!is_ap) { |
| 2502 | /* |
| 2503 | * FIXME: the mac80211 should really provide a fixed |
| 2504 | * rate to use here. for now, just use the smallest |
| 2505 | * possible rate for the band as a fixed rate for |
| 2506 | * association frames and other control messages. |
| 2507 | */ |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 2508 | if (!test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2509 | wl1271_set_band_rate(wl, wlvif); |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2510 | |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 2511 | wlvif->basic_rate = |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2512 | wl1271_tx_min_rate_get(wl, |
| 2513 | wlvif->basic_rate_set); |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 2514 | ret = wl1271_acx_sta_rate_policies(wl, wlvif); |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2515 | if (ret < 0) |
Arik Nemtsov | bee0ffe | 2010-10-16 19:17:02 +0200 | [diff] [blame] | 2516 | wl1271_warning("rate policy for channel " |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2517 | "failed %d", ret); |
Arik Nemtsov | bee0ffe | 2010-10-16 19:17:02 +0200 | [diff] [blame] | 2518 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 2519 | if (test_bit(WLVIF_FLAG_STA_ASSOCIATED, |
| 2520 | &wlvif->flags)) { |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2521 | if (wl12xx_is_roc(wl)) { |
| 2522 | /* roaming */ |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2523 | ret = wl12xx_croc(wl, |
| 2524 | wlvif->dev_role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2525 | if (ret < 0) |
Eliad Peller | 9f259c4 | 2011-10-10 10:13:12 +0200 | [diff] [blame] | 2526 | return ret; |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2527 | } |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2528 | ret = wl1271_join(wl, wlvif, false); |
Arik Nemtsov | bee0ffe | 2010-10-16 19:17:02 +0200 | [diff] [blame] | 2529 | if (ret < 0) |
| 2530 | wl1271_warning("cmd join on channel " |
| 2531 | "failed %d", ret); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2532 | } else { |
| 2533 | /* |
| 2534 | * change the ROC channel. do it only if we are |
| 2535 | * not idle. otherwise, CROC will be called |
| 2536 | * anyway. |
| 2537 | */ |
| 2538 | if (wl12xx_is_roc(wl) && |
| 2539 | !(conf->flags & IEEE80211_CONF_IDLE)) { |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2540 | ret = wl12xx_croc(wl, |
| 2541 | wlvif->dev_role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2542 | if (ret < 0) |
Eliad Peller | 9f259c4 | 2011-10-10 10:13:12 +0200 | [diff] [blame] | 2543 | return ret; |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2544 | |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 2545 | ret = wl12xx_roc(wl, wlvif, |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 2546 | wlvif->dev_role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 2547 | if (ret < 0) |
| 2548 | wl1271_warning("roc failed %d", |
| 2549 | ret); |
| 2550 | } |
Arik Nemtsov | bee0ffe | 2010-10-16 19:17:02 +0200 | [diff] [blame] | 2551 | } |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 2552 | } |
| 2553 | } |
| 2554 | |
Arik Nemtsov | bee0ffe | 2010-10-16 19:17:02 +0200 | [diff] [blame] | 2555 | if (changed & IEEE80211_CONF_CHANGE_IDLE && !is_ap) { |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 2556 | ret = wl1271_sta_handle_idle(wl, wlvif, |
Arik Nemtsov | bee0ffe | 2010-10-16 19:17:02 +0200 | [diff] [blame] | 2557 | conf->flags & IEEE80211_CONF_IDLE); |
Juuso Oikarinen | 0d58cbf | 2010-05-24 11:18:16 +0300 | [diff] [blame] | 2558 | if (ret < 0) |
| 2559 | wl1271_warning("idle mode change failed %d", ret); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2560 | } |
| 2561 | |
Juuso Oikarinen | 90494a9 | 2010-07-08 17:50:00 +0300 | [diff] [blame] | 2562 | /* |
| 2563 | * if mac80211 changes the PSM mode, make sure the mode is not |
| 2564 | * incorrectly changed after the pspoll failure active window. |
| 2565 | */ |
| 2566 | if (changed & IEEE80211_CONF_CHANGE_PS) |
Eliad Peller | 836d660 | 2011-10-10 10:13:07 +0200 | [diff] [blame] | 2567 | clear_bit(WLVIF_FLAG_PSPOLL_FAILURE, &wlvif->flags); |
Juuso Oikarinen | 90494a9 | 2010-07-08 17:50:00 +0300 | [diff] [blame] | 2568 | |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 2569 | if (conf->flags & IEEE80211_CONF_PS && |
Eliad Peller | c29bb00 | 2011-10-10 10:13:03 +0200 | [diff] [blame] | 2570 | !test_bit(WLVIF_FLAG_PSM_REQUESTED, &wlvif->flags)) { |
| 2571 | set_bit(WLVIF_FLAG_PSM_REQUESTED, &wlvif->flags); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2572 | |
| 2573 | /* |
| 2574 | * We enter PSM only if we're already associated. |
| 2575 | * If we're not, we'll enter it when joining an SSID, |
| 2576 | * through the bss_info_changed() hook. |
| 2577 | */ |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 2578 | if (test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) { |
Juuso Oikarinen | 18f8d46 | 2010-02-22 08:38:34 +0200 | [diff] [blame] | 2579 | wl1271_debug(DEBUG_PSM, "psm enabled"); |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2580 | ret = wl1271_ps_set_mode(wl, wlvif, |
| 2581 | STATION_POWER_SAVE_MODE, |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 2582 | wlvif->basic_rate, true); |
Juuso Oikarinen | af5e084 | 2009-12-11 15:41:00 +0200 | [diff] [blame] | 2583 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2584 | } else if (!(conf->flags & IEEE80211_CONF_PS) && |
Eliad Peller | c29bb00 | 2011-10-10 10:13:03 +0200 | [diff] [blame] | 2585 | test_bit(WLVIF_FLAG_PSM_REQUESTED, &wlvif->flags)) { |
Juuso Oikarinen | 18f8d46 | 2010-02-22 08:38:34 +0200 | [diff] [blame] | 2586 | wl1271_debug(DEBUG_PSM, "psm disabled"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2587 | |
Eliad Peller | c29bb00 | 2011-10-10 10:13:03 +0200 | [diff] [blame] | 2588 | clear_bit(WLVIF_FLAG_PSM_REQUESTED, &wlvif->flags); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2589 | |
Eliad Peller | c29bb00 | 2011-10-10 10:13:03 +0200 | [diff] [blame] | 2590 | if (test_bit(WLVIF_FLAG_PSM, &wlvif->flags)) |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2591 | ret = wl1271_ps_set_mode(wl, wlvif, |
| 2592 | STATION_ACTIVE_MODE, |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 2593 | wlvif->basic_rate, true); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2594 | } |
| 2595 | |
Eliad Peller | 6bd6502 | 2011-10-10 10:13:11 +0200 | [diff] [blame] | 2596 | if (conf->power_level != wlvif->power_level) { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 2597 | ret = wl1271_acx_tx_power(wl, wlvif, conf->power_level); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2598 | if (ret < 0) |
Eliad Peller | 9f259c4 | 2011-10-10 10:13:12 +0200 | [diff] [blame] | 2599 | return ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2600 | |
Eliad Peller | 6bd6502 | 2011-10-10 10:13:11 +0200 | [diff] [blame] | 2601 | wlvif->power_level = conf->power_level; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2602 | } |
| 2603 | |
Eliad Peller | 9f259c4 | 2011-10-10 10:13:12 +0200 | [diff] [blame] | 2604 | return 0; |
| 2605 | } |
| 2606 | |
| 2607 | static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed) |
| 2608 | { |
| 2609 | struct wl1271 *wl = hw->priv; |
| 2610 | struct wl12xx_vif *wlvif; |
| 2611 | struct ieee80211_conf *conf = &hw->conf; |
| 2612 | int channel, ret = 0; |
| 2613 | |
| 2614 | channel = ieee80211_frequency_to_channel(conf->channel->center_freq); |
| 2615 | |
| 2616 | wl1271_debug(DEBUG_MAC80211, "mac80211 config ch %d psm %s power %d %s" |
| 2617 | " changed 0x%x", |
| 2618 | channel, |
| 2619 | conf->flags & IEEE80211_CONF_PS ? "on" : "off", |
| 2620 | conf->power_level, |
| 2621 | conf->flags & IEEE80211_CONF_IDLE ? "idle" : "in use", |
| 2622 | changed); |
| 2623 | |
| 2624 | /* |
| 2625 | * mac80211 will go to idle nearly immediately after transmitting some |
| 2626 | * frames, such as the deauth. To make sure those frames reach the air, |
| 2627 | * wait here until the TX queue is fully flushed. |
| 2628 | */ |
| 2629 | if ((changed & IEEE80211_CONF_CHANGE_IDLE) && |
| 2630 | (conf->flags & IEEE80211_CONF_IDLE)) |
| 2631 | wl1271_tx_flush(wl); |
| 2632 | |
| 2633 | mutex_lock(&wl->mutex); |
| 2634 | |
| 2635 | /* we support configuring the channel and band even while off */ |
| 2636 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { |
| 2637 | wl->band = conf->channel->band; |
| 2638 | wl->channel = channel; |
| 2639 | } |
| 2640 | |
| 2641 | if (changed & IEEE80211_CONF_CHANGE_POWER) |
| 2642 | wl->power_level = conf->power_level; |
| 2643 | |
| 2644 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
| 2645 | goto out; |
| 2646 | |
| 2647 | ret = wl1271_ps_elp_wakeup(wl); |
| 2648 | if (ret < 0) |
| 2649 | goto out; |
| 2650 | |
| 2651 | /* configure each interface */ |
| 2652 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 2653 | ret = wl12xx_config_vif(wl, wlvif, conf, changed); |
| 2654 | if (ret < 0) |
| 2655 | goto out_sleep; |
| 2656 | } |
| 2657 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2658 | out_sleep: |
| 2659 | wl1271_ps_elp_sleep(wl); |
| 2660 | |
| 2661 | out: |
| 2662 | mutex_unlock(&wl->mutex); |
| 2663 | |
| 2664 | return ret; |
| 2665 | } |
| 2666 | |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2667 | struct wl1271_filter_params { |
| 2668 | bool enabled; |
| 2669 | int mc_list_length; |
| 2670 | u8 mc_list[ACX_MC_ADDRESS_GROUP_MAX][ETH_ALEN]; |
| 2671 | }; |
| 2672 | |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2673 | static u64 wl1271_op_prepare_multicast(struct ieee80211_hw *hw, |
| 2674 | struct netdev_hw_addr_list *mc_list) |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2675 | { |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2676 | struct wl1271_filter_params *fp; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2677 | struct netdev_hw_addr *ha; |
Saravanan Dhanabal | 2c10bb9 | 2010-04-09 11:07:27 +0300 | [diff] [blame] | 2678 | struct wl1271 *wl = hw->priv; |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2679 | |
Saravanan Dhanabal | 2c10bb9 | 2010-04-09 11:07:27 +0300 | [diff] [blame] | 2680 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
| 2681 | return 0; |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2682 | |
Juuso Oikarinen | 7444113 | 2009-10-13 12:47:53 +0300 | [diff] [blame] | 2683 | fp = kzalloc(sizeof(*fp), GFP_ATOMIC); |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2684 | if (!fp) { |
| 2685 | wl1271_error("Out of memory setting filters."); |
| 2686 | return 0; |
| 2687 | } |
| 2688 | |
| 2689 | /* update multicast filtering parameters */ |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2690 | fp->mc_list_length = 0; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2691 | if (netdev_hw_addr_list_count(mc_list) > ACX_MC_ADDRESS_GROUP_MAX) { |
| 2692 | fp->enabled = false; |
| 2693 | } else { |
| 2694 | fp->enabled = true; |
| 2695 | netdev_hw_addr_list_for_each(ha, mc_list) { |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2696 | memcpy(fp->mc_list[fp->mc_list_length], |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2697 | ha->addr, ETH_ALEN); |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2698 | fp->mc_list_length++; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2699 | } |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2700 | } |
| 2701 | |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2702 | return (u64)(unsigned long)fp; |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2703 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2704 | |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2705 | #define WL1271_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \ |
| 2706 | FIF_ALLMULTI | \ |
| 2707 | FIF_FCSFAIL | \ |
| 2708 | FIF_BCN_PRBRESP_PROMISC | \ |
| 2709 | FIF_CONTROL | \ |
| 2710 | FIF_OTHER_BSS) |
| 2711 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2712 | static void wl1271_op_configure_filter(struct ieee80211_hw *hw, |
| 2713 | unsigned int changed, |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 2714 | unsigned int *total, u64 multicast) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2715 | { |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2716 | struct wl1271_filter_params *fp = (void *)(unsigned long)multicast; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2717 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2718 | struct wl12xx_vif *wlvif; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2719 | |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2720 | int ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2721 | |
Arik Nemtsov | 7d05786 | 2010-10-16 19:25:35 +0200 | [diff] [blame] | 2722 | wl1271_debug(DEBUG_MAC80211, "mac80211 configure filter changed %x" |
| 2723 | " total %x", changed, *total); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2724 | |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2725 | mutex_lock(&wl->mutex); |
| 2726 | |
Saravanan Dhanabal | 2c10bb9 | 2010-04-09 11:07:27 +0300 | [diff] [blame] | 2727 | *total &= WL1271_SUPPORTED_FILTERS; |
| 2728 | changed &= WL1271_SUPPORTED_FILTERS; |
| 2729 | |
| 2730 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2731 | goto out; |
| 2732 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 2733 | ret = wl1271_ps_elp_wakeup(wl); |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2734 | if (ret < 0) |
| 2735 | goto out; |
| 2736 | |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 2737 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 2738 | if (wlvif->bss_type != BSS_TYPE_AP_BSS) { |
| 2739 | if (*total & FIF_ALLMULTI) |
| 2740 | ret = wl1271_acx_group_address_tbl(wl, wlvif, |
| 2741 | false, |
| 2742 | NULL, 0); |
| 2743 | else if (fp) |
| 2744 | ret = wl1271_acx_group_address_tbl(wl, wlvif, |
| 2745 | fp->enabled, |
| 2746 | fp->mc_list, |
| 2747 | fp->mc_list_length); |
| 2748 | if (ret < 0) |
| 2749 | goto out_sleep; |
| 2750 | } |
Arik Nemtsov | 7d05786 | 2010-10-16 19:25:35 +0200 | [diff] [blame] | 2751 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2752 | |
Eliad Peller | 08c1d1c | 2011-08-14 13:17:04 +0300 | [diff] [blame] | 2753 | /* |
| 2754 | * the fw doesn't provide an api to configure the filters. instead, |
| 2755 | * the filters configuration is based on the active roles / ROC |
| 2756 | * state. |
| 2757 | */ |
Juuso Oikarinen | b54853f | 2009-10-13 12:47:59 +0300 | [diff] [blame] | 2758 | |
| 2759 | out_sleep: |
| 2760 | wl1271_ps_elp_sleep(wl); |
| 2761 | |
| 2762 | out: |
| 2763 | mutex_unlock(&wl->mutex); |
Juuso Oikarinen | 14b228a | 2010-03-18 12:26:43 +0200 | [diff] [blame] | 2764 | kfree(fp); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2765 | } |
| 2766 | |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2767 | static int wl1271_record_ap_key(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 2768 | u8 id, u8 key_type, u8 key_size, |
| 2769 | const u8 *key, u8 hlid, u32 tx_seq_32, |
| 2770 | u16 tx_seq_16) |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2771 | { |
| 2772 | struct wl1271_ap_key *ap_key; |
| 2773 | int i; |
| 2774 | |
| 2775 | wl1271_debug(DEBUG_CRYPT, "record ap key id %d", (int)id); |
| 2776 | |
| 2777 | if (key_size > MAX_KEY_SIZE) |
| 2778 | return -EINVAL; |
| 2779 | |
| 2780 | /* |
| 2781 | * Find next free entry in ap_keys. Also check we are not replacing |
| 2782 | * an existing key. |
| 2783 | */ |
| 2784 | for (i = 0; i < MAX_NUM_KEYS; i++) { |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2785 | if (wlvif->ap.recorded_keys[i] == NULL) |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2786 | break; |
| 2787 | |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2788 | if (wlvif->ap.recorded_keys[i]->id == id) { |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2789 | wl1271_warning("trying to record key replacement"); |
| 2790 | return -EINVAL; |
| 2791 | } |
| 2792 | } |
| 2793 | |
| 2794 | if (i == MAX_NUM_KEYS) |
| 2795 | return -EBUSY; |
| 2796 | |
| 2797 | ap_key = kzalloc(sizeof(*ap_key), GFP_KERNEL); |
| 2798 | if (!ap_key) |
| 2799 | return -ENOMEM; |
| 2800 | |
| 2801 | ap_key->id = id; |
| 2802 | ap_key->key_type = key_type; |
| 2803 | ap_key->key_size = key_size; |
| 2804 | memcpy(ap_key->key, key, key_size); |
| 2805 | ap_key->hlid = hlid; |
| 2806 | ap_key->tx_seq_32 = tx_seq_32; |
| 2807 | ap_key->tx_seq_16 = tx_seq_16; |
| 2808 | |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2809 | wlvif->ap.recorded_keys[i] = ap_key; |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2810 | return 0; |
| 2811 | } |
| 2812 | |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2813 | static void wl1271_free_ap_keys(struct wl1271 *wl, struct wl12xx_vif *wlvif) |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2814 | { |
| 2815 | int i; |
| 2816 | |
| 2817 | for (i = 0; i < MAX_NUM_KEYS; i++) { |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2818 | kfree(wlvif->ap.recorded_keys[i]); |
| 2819 | wlvif->ap.recorded_keys[i] = NULL; |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2820 | } |
| 2821 | } |
| 2822 | |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2823 | static int wl1271_ap_init_hwenc(struct wl1271 *wl, struct wl12xx_vif *wlvif) |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2824 | { |
| 2825 | int i, ret = 0; |
| 2826 | struct wl1271_ap_key *key; |
| 2827 | bool wep_key_added = false; |
| 2828 | |
| 2829 | for (i = 0; i < MAX_NUM_KEYS; i++) { |
Eliad Peller | 7f97b48 | 2011-08-14 13:17:30 +0300 | [diff] [blame] | 2830 | u8 hlid; |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2831 | if (wlvif->ap.recorded_keys[i] == NULL) |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2832 | break; |
| 2833 | |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2834 | key = wlvif->ap.recorded_keys[i]; |
Eliad Peller | 7f97b48 | 2011-08-14 13:17:30 +0300 | [diff] [blame] | 2835 | hlid = key->hlid; |
| 2836 | if (hlid == WL12XX_INVALID_LINK_ID) |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2837 | hlid = wlvif->ap.bcast_hlid; |
Eliad Peller | 7f97b48 | 2011-08-14 13:17:30 +0300 | [diff] [blame] | 2838 | |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2839 | ret = wl1271_cmd_set_ap_key(wl, wlvif, KEY_ADD_OR_REPLACE, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2840 | key->id, key->key_type, |
| 2841 | key->key_size, key->key, |
Eliad Peller | 7f97b48 | 2011-08-14 13:17:30 +0300 | [diff] [blame] | 2842 | hlid, key->tx_seq_32, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2843 | key->tx_seq_16); |
| 2844 | if (ret < 0) |
| 2845 | goto out; |
| 2846 | |
| 2847 | if (key->key_type == KEY_WEP) |
| 2848 | wep_key_added = true; |
| 2849 | } |
| 2850 | |
| 2851 | if (wep_key_added) { |
Eliad Peller | f75c753f | 2011-10-05 11:55:59 +0200 | [diff] [blame] | 2852 | ret = wl12xx_cmd_set_default_wep_key(wl, wlvif->default_key, |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2853 | wlvif->ap.bcast_hlid); |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2854 | if (ret < 0) |
| 2855 | goto out; |
| 2856 | } |
| 2857 | |
| 2858 | out: |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2859 | wl1271_free_ap_keys(wl, wlvif); |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2860 | return ret; |
| 2861 | } |
| 2862 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2863 | static int wl1271_set_key(struct wl1271 *wl, struct wl12xx_vif *wlvif, |
| 2864 | u16 action, u8 id, u8 key_type, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2865 | u8 key_size, const u8 *key, u32 tx_seq_32, |
| 2866 | u16 tx_seq_16, struct ieee80211_sta *sta) |
| 2867 | { |
| 2868 | int ret; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2869 | bool is_ap = (wlvif->bss_type == BSS_TYPE_AP_BSS); |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2870 | |
| 2871 | if (is_ap) { |
| 2872 | struct wl1271_station *wl_sta; |
| 2873 | u8 hlid; |
| 2874 | |
| 2875 | if (sta) { |
| 2876 | wl_sta = (struct wl1271_station *)sta->drv_priv; |
| 2877 | hlid = wl_sta->hlid; |
| 2878 | } else { |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2879 | hlid = wlvif->ap.bcast_hlid; |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2880 | } |
| 2881 | |
Eliad Peller | 53d40d0 | 2011-10-10 10:13:02 +0200 | [diff] [blame] | 2882 | if (!test_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags)) { |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2883 | /* |
| 2884 | * We do not support removing keys after AP shutdown. |
| 2885 | * Pretend we do to make mac80211 happy. |
| 2886 | */ |
| 2887 | if (action != KEY_ADD_OR_REPLACE) |
| 2888 | return 0; |
| 2889 | |
Eliad Peller | 170d0e6 | 2011-10-05 11:56:06 +0200 | [diff] [blame] | 2890 | ret = wl1271_record_ap_key(wl, wlvif, id, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2891 | key_type, key_size, |
| 2892 | key, hlid, tx_seq_32, |
| 2893 | tx_seq_16); |
| 2894 | } else { |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2895 | ret = wl1271_cmd_set_ap_key(wl, wlvif, action, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2896 | id, key_type, key_size, |
| 2897 | key, hlid, tx_seq_32, |
| 2898 | tx_seq_16); |
| 2899 | } |
| 2900 | |
| 2901 | if (ret < 0) |
| 2902 | return ret; |
| 2903 | } else { |
| 2904 | const u8 *addr; |
| 2905 | static const u8 bcast_addr[ETH_ALEN] = { |
| 2906 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
| 2907 | }; |
| 2908 | |
Guy Eilam | e9eb8cb | 2011-08-16 19:49:12 +0300 | [diff] [blame] | 2909 | /* |
| 2910 | * A STA set to GEM cipher requires 2 tx spare blocks. |
| 2911 | * Return to default value when GEM cipher key is removed |
| 2912 | */ |
| 2913 | if (key_type == KEY_GEM) { |
| 2914 | if (action == KEY_ADD_OR_REPLACE) |
| 2915 | wl->tx_spare_blocks = 2; |
| 2916 | else if (action == KEY_REMOVE) |
| 2917 | wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT; |
| 2918 | } |
| 2919 | |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2920 | addr = sta ? sta->addr : bcast_addr; |
| 2921 | |
| 2922 | if (is_zero_ether_addr(addr)) { |
| 2923 | /* We dont support TX only encryption */ |
| 2924 | return -EOPNOTSUPP; |
| 2925 | } |
| 2926 | |
| 2927 | /* The wl1271 does not allow to remove unicast keys - they |
| 2928 | will be cleared automatically on next CMD_JOIN. Ignore the |
| 2929 | request silently, as we dont want the mac80211 to emit |
| 2930 | an error message. */ |
| 2931 | if (action == KEY_REMOVE && !is_broadcast_ether_addr(addr)) |
| 2932 | return 0; |
| 2933 | |
Eliad Peller | 010d3d3 | 2011-08-14 13:17:31 +0300 | [diff] [blame] | 2934 | /* don't remove key if hlid was already deleted */ |
| 2935 | if (action == KEY_REMOVE && |
Eliad Peller | 154da67 | 2011-10-05 11:55:53 +0200 | [diff] [blame] | 2936 | wlvif->sta.hlid == WL12XX_INVALID_LINK_ID) |
Eliad Peller | 010d3d3 | 2011-08-14 13:17:31 +0300 | [diff] [blame] | 2937 | return 0; |
| 2938 | |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 2939 | ret = wl1271_cmd_set_sta_key(wl, wlvif, action, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2940 | id, key_type, key_size, |
| 2941 | key, addr, tx_seq_32, |
| 2942 | tx_seq_16); |
| 2943 | if (ret < 0) |
| 2944 | return ret; |
| 2945 | |
| 2946 | /* the default WEP key needs to be configured at least once */ |
| 2947 | if (key_type == KEY_WEP) { |
Eliad Peller | c690ec8 | 2011-08-14 13:17:07 +0300 | [diff] [blame] | 2948 | ret = wl12xx_cmd_set_default_wep_key(wl, |
Eliad Peller | f75c753f | 2011-10-05 11:55:59 +0200 | [diff] [blame] | 2949 | wlvif->default_key, |
| 2950 | wlvif->sta.hlid); |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2951 | if (ret < 0) |
| 2952 | return ret; |
| 2953 | } |
| 2954 | } |
| 2955 | |
| 2956 | return 0; |
| 2957 | } |
| 2958 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2959 | static int wl1271_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
| 2960 | struct ieee80211_vif *vif, |
| 2961 | struct ieee80211_sta *sta, |
| 2962 | struct ieee80211_key_conf *key_conf) |
| 2963 | { |
| 2964 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 2965 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2966 | int ret; |
Juuso Oikarinen | ac4e4ce | 2009-10-08 21:56:19 +0300 | [diff] [blame] | 2967 | u32 tx_seq_32 = 0; |
| 2968 | u16 tx_seq_16 = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2969 | u8 key_type; |
| 2970 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2971 | wl1271_debug(DEBUG_MAC80211, "mac80211 set key"); |
| 2972 | |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 2973 | wl1271_debug(DEBUG_CRYPT, "CMD: 0x%x sta: %p", cmd, sta); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2974 | wl1271_debug(DEBUG_CRYPT, "Key: algo:0x%x, id:%d, len:%d flags 0x%x", |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 2975 | key_conf->cipher, key_conf->keyidx, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2976 | key_conf->keylen, key_conf->flags); |
| 2977 | wl1271_dump(DEBUG_CRYPT, "KEY: ", key_conf->key, key_conf->keylen); |
| 2978 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2979 | mutex_lock(&wl->mutex); |
| 2980 | |
Juuso Oikarinen | f8d9802 | 2010-10-26 13:24:39 +0200 | [diff] [blame] | 2981 | if (unlikely(wl->state == WL1271_STATE_OFF)) { |
| 2982 | ret = -EAGAIN; |
| 2983 | goto out_unlock; |
| 2984 | } |
| 2985 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 2986 | ret = wl1271_ps_elp_wakeup(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2987 | if (ret < 0) |
| 2988 | goto out_unlock; |
| 2989 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 2990 | switch (key_conf->cipher) { |
| 2991 | case WLAN_CIPHER_SUITE_WEP40: |
| 2992 | case WLAN_CIPHER_SUITE_WEP104: |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2993 | key_type = KEY_WEP; |
| 2994 | |
| 2995 | key_conf->hw_key_idx = key_conf->keyidx; |
| 2996 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 2997 | case WLAN_CIPHER_SUITE_TKIP: |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 2998 | key_type = KEY_TKIP; |
| 2999 | |
| 3000 | key_conf->hw_key_idx = key_conf->keyidx; |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 3001 | tx_seq_32 = WL1271_TX_SECURITY_HI32(wlvif->tx_security_seq); |
| 3002 | tx_seq_16 = WL1271_TX_SECURITY_LO16(wlvif->tx_security_seq); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3003 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3004 | case WLAN_CIPHER_SUITE_CCMP: |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3005 | key_type = KEY_AES; |
| 3006 | |
| 3007 | key_conf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 3008 | tx_seq_32 = WL1271_TX_SECURITY_HI32(wlvif->tx_security_seq); |
| 3009 | tx_seq_16 = WL1271_TX_SECURITY_LO16(wlvif->tx_security_seq); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3010 | break; |
Juuso Oikarinen | 7a55724 | 2010-09-27 12:42:07 +0200 | [diff] [blame] | 3011 | case WL1271_CIPHER_SUITE_GEM: |
| 3012 | key_type = KEY_GEM; |
Eliad Peller | 48e93e4 | 2011-10-10 10:12:58 +0200 | [diff] [blame] | 3013 | tx_seq_32 = WL1271_TX_SECURITY_HI32(wlvif->tx_security_seq); |
| 3014 | tx_seq_16 = WL1271_TX_SECURITY_LO16(wlvif->tx_security_seq); |
Juuso Oikarinen | 7a55724 | 2010-09-27 12:42:07 +0200 | [diff] [blame] | 3015 | break; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3016 | default: |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3017 | wl1271_error("Unknown key algo 0x%x", key_conf->cipher); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3018 | |
| 3019 | ret = -EOPNOTSUPP; |
| 3020 | goto out_sleep; |
| 3021 | } |
| 3022 | |
| 3023 | switch (cmd) { |
| 3024 | case SET_KEY: |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3025 | ret = wl1271_set_key(wl, wlvif, KEY_ADD_OR_REPLACE, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 3026 | key_conf->keyidx, key_type, |
| 3027 | key_conf->keylen, key_conf->key, |
| 3028 | tx_seq_32, tx_seq_16, sta); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3029 | if (ret < 0) { |
| 3030 | wl1271_error("Could not add or replace key"); |
| 3031 | goto out_sleep; |
| 3032 | } |
| 3033 | break; |
| 3034 | |
| 3035 | case DISABLE_KEY: |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3036 | ret = wl1271_set_key(wl, wlvif, KEY_REMOVE, |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 3037 | key_conf->keyidx, key_type, |
| 3038 | key_conf->keylen, key_conf->key, |
| 3039 | 0, 0, sta); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3040 | if (ret < 0) { |
| 3041 | wl1271_error("Could not remove key"); |
| 3042 | goto out_sleep; |
| 3043 | } |
| 3044 | break; |
| 3045 | |
| 3046 | default: |
| 3047 | wl1271_error("Unsupported key cmd 0x%x", cmd); |
| 3048 | ret = -EOPNOTSUPP; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3049 | break; |
| 3050 | } |
| 3051 | |
| 3052 | out_sleep: |
| 3053 | wl1271_ps_elp_sleep(wl); |
| 3054 | |
| 3055 | out_unlock: |
| 3056 | mutex_unlock(&wl->mutex); |
| 3057 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3058 | return ret; |
| 3059 | } |
| 3060 | |
| 3061 | static int wl1271_op_hw_scan(struct ieee80211_hw *hw, |
Johannes Berg | a060bbf | 2010-04-27 11:59:34 +0200 | [diff] [blame] | 3062 | struct ieee80211_vif *vif, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3063 | struct cfg80211_scan_request *req) |
| 3064 | { |
| 3065 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 3066 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
| 3067 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3068 | int ret; |
| 3069 | u8 *ssid = NULL; |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 3070 | size_t len = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3071 | |
| 3072 | wl1271_debug(DEBUG_MAC80211, "mac80211 hw scan"); |
| 3073 | |
| 3074 | if (req->n_ssids) { |
| 3075 | ssid = req->ssids[0].ssid; |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 3076 | len = req->ssids[0].ssid_len; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3077 | } |
| 3078 | |
| 3079 | mutex_lock(&wl->mutex); |
| 3080 | |
Juuso Oikarinen | b739a42 | 2010-10-26 13:24:38 +0200 | [diff] [blame] | 3081 | if (wl->state == WL1271_STATE_OFF) { |
| 3082 | /* |
| 3083 | * We cannot return -EBUSY here because cfg80211 will expect |
| 3084 | * a call to ieee80211_scan_completed if we do - in this case |
| 3085 | * there won't be any call. |
| 3086 | */ |
| 3087 | ret = -EAGAIN; |
| 3088 | goto out; |
| 3089 | } |
| 3090 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 3091 | ret = wl1271_ps_elp_wakeup(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3092 | if (ret < 0) |
| 3093 | goto out; |
| 3094 | |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3095 | /* cancel ROC before scanning */ |
| 3096 | if (wl12xx_is_roc(wl)) { |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 3097 | if (test_bit(WLVIF_FLAG_STA_ASSOCIATED, &wlvif->flags)) { |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3098 | /* don't allow scanning right now */ |
| 3099 | ret = -EBUSY; |
| 3100 | goto out_sleep; |
| 3101 | } |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 3102 | wl12xx_croc(wl, wlvif->dev_role_id); |
| 3103 | wl12xx_cmd_role_stop_dev(wl, wlvif); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3104 | } |
| 3105 | |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 3106 | ret = wl1271_scan(hw->priv, vif, ssid, len, req); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3107 | out_sleep: |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3108 | wl1271_ps_elp_sleep(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3109 | out: |
| 3110 | mutex_unlock(&wl->mutex); |
| 3111 | |
| 3112 | return ret; |
| 3113 | } |
| 3114 | |
Eliad Peller | 73ecce3 | 2011-06-27 13:06:45 +0300 | [diff] [blame] | 3115 | static void wl1271_op_cancel_hw_scan(struct ieee80211_hw *hw, |
| 3116 | struct ieee80211_vif *vif) |
| 3117 | { |
| 3118 | struct wl1271 *wl = hw->priv; |
| 3119 | int ret; |
| 3120 | |
| 3121 | wl1271_debug(DEBUG_MAC80211, "mac80211 cancel hw scan"); |
| 3122 | |
| 3123 | mutex_lock(&wl->mutex); |
| 3124 | |
| 3125 | if (wl->state == WL1271_STATE_OFF) |
| 3126 | goto out; |
| 3127 | |
| 3128 | if (wl->scan.state == WL1271_SCAN_STATE_IDLE) |
| 3129 | goto out; |
| 3130 | |
| 3131 | ret = wl1271_ps_elp_wakeup(wl); |
| 3132 | if (ret < 0) |
| 3133 | goto out; |
| 3134 | |
| 3135 | if (wl->scan.state != WL1271_SCAN_STATE_DONE) { |
| 3136 | ret = wl1271_scan_stop(wl); |
| 3137 | if (ret < 0) |
| 3138 | goto out_sleep; |
| 3139 | } |
| 3140 | wl->scan.state = WL1271_SCAN_STATE_IDLE; |
| 3141 | memset(wl->scan.scanned_ch, 0, sizeof(wl->scan.scanned_ch)); |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 3142 | wl->scan_vif = NULL; |
Eliad Peller | 73ecce3 | 2011-06-27 13:06:45 +0300 | [diff] [blame] | 3143 | wl->scan.req = NULL; |
| 3144 | ieee80211_scan_completed(wl->hw, true); |
| 3145 | |
| 3146 | out_sleep: |
| 3147 | wl1271_ps_elp_sleep(wl); |
| 3148 | out: |
| 3149 | mutex_unlock(&wl->mutex); |
| 3150 | |
| 3151 | cancel_delayed_work_sync(&wl->scan_complete_work); |
| 3152 | } |
| 3153 | |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 3154 | static int wl1271_op_sched_scan_start(struct ieee80211_hw *hw, |
| 3155 | struct ieee80211_vif *vif, |
| 3156 | struct cfg80211_sched_scan_request *req, |
| 3157 | struct ieee80211_sched_scan_ies *ies) |
| 3158 | { |
| 3159 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3160 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 3161 | int ret; |
| 3162 | |
| 3163 | wl1271_debug(DEBUG_MAC80211, "wl1271_op_sched_scan_start"); |
| 3164 | |
| 3165 | mutex_lock(&wl->mutex); |
| 3166 | |
| 3167 | ret = wl1271_ps_elp_wakeup(wl); |
| 3168 | if (ret < 0) |
| 3169 | goto out; |
| 3170 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3171 | ret = wl1271_scan_sched_scan_config(wl, wlvif, req, ies); |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 3172 | if (ret < 0) |
| 3173 | goto out_sleep; |
| 3174 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3175 | ret = wl1271_scan_sched_scan_start(wl, wlvif); |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 3176 | if (ret < 0) |
| 3177 | goto out_sleep; |
| 3178 | |
| 3179 | wl->sched_scanning = true; |
| 3180 | |
| 3181 | out_sleep: |
| 3182 | wl1271_ps_elp_sleep(wl); |
| 3183 | out: |
| 3184 | mutex_unlock(&wl->mutex); |
| 3185 | return ret; |
| 3186 | } |
| 3187 | |
| 3188 | static void wl1271_op_sched_scan_stop(struct ieee80211_hw *hw, |
| 3189 | struct ieee80211_vif *vif) |
| 3190 | { |
| 3191 | struct wl1271 *wl = hw->priv; |
| 3192 | int ret; |
| 3193 | |
| 3194 | wl1271_debug(DEBUG_MAC80211, "wl1271_op_sched_scan_stop"); |
| 3195 | |
| 3196 | mutex_lock(&wl->mutex); |
| 3197 | |
| 3198 | ret = wl1271_ps_elp_wakeup(wl); |
| 3199 | if (ret < 0) |
| 3200 | goto out; |
| 3201 | |
| 3202 | wl1271_scan_sched_scan_stop(wl); |
| 3203 | |
| 3204 | wl1271_ps_elp_sleep(wl); |
| 3205 | out: |
| 3206 | mutex_unlock(&wl->mutex); |
| 3207 | } |
| 3208 | |
Arik Nemtsov | 68d069c | 2010-11-08 10:51:07 +0100 | [diff] [blame] | 3209 | static int wl1271_op_set_frag_threshold(struct ieee80211_hw *hw, u32 value) |
| 3210 | { |
| 3211 | struct wl1271 *wl = hw->priv; |
| 3212 | int ret = 0; |
| 3213 | |
| 3214 | mutex_lock(&wl->mutex); |
| 3215 | |
| 3216 | if (unlikely(wl->state == WL1271_STATE_OFF)) { |
| 3217 | ret = -EAGAIN; |
| 3218 | goto out; |
| 3219 | } |
| 3220 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 3221 | ret = wl1271_ps_elp_wakeup(wl); |
Arik Nemtsov | 68d069c | 2010-11-08 10:51:07 +0100 | [diff] [blame] | 3222 | if (ret < 0) |
| 3223 | goto out; |
| 3224 | |
Arik Nemtsov | 5f704d1 | 2011-04-18 14:15:21 +0300 | [diff] [blame] | 3225 | ret = wl1271_acx_frag_threshold(wl, value); |
Arik Nemtsov | 68d069c | 2010-11-08 10:51:07 +0100 | [diff] [blame] | 3226 | if (ret < 0) |
| 3227 | wl1271_warning("wl1271_op_set_frag_threshold failed: %d", ret); |
| 3228 | |
| 3229 | wl1271_ps_elp_sleep(wl); |
| 3230 | |
| 3231 | out: |
| 3232 | mutex_unlock(&wl->mutex); |
| 3233 | |
| 3234 | return ret; |
| 3235 | } |
| 3236 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3237 | static int wl1271_op_set_rts_threshold(struct ieee80211_hw *hw, u32 value) |
| 3238 | { |
| 3239 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 3240 | struct wl12xx_vif *wlvif; |
Saravanan Dhanabal | aecb056 | 2010-04-09 11:07:28 +0300 | [diff] [blame] | 3241 | int ret = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3242 | |
| 3243 | mutex_lock(&wl->mutex); |
| 3244 | |
Juuso Oikarinen | f8d9802 | 2010-10-26 13:24:39 +0200 | [diff] [blame] | 3245 | if (unlikely(wl->state == WL1271_STATE_OFF)) { |
| 3246 | ret = -EAGAIN; |
Saravanan Dhanabal | aecb056 | 2010-04-09 11:07:28 +0300 | [diff] [blame] | 3247 | goto out; |
Juuso Oikarinen | f8d9802 | 2010-10-26 13:24:39 +0200 | [diff] [blame] | 3248 | } |
Saravanan Dhanabal | aecb056 | 2010-04-09 11:07:28 +0300 | [diff] [blame] | 3249 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 3250 | ret = wl1271_ps_elp_wakeup(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3251 | if (ret < 0) |
| 3252 | goto out; |
| 3253 | |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 3254 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 3255 | ret = wl1271_acx_rts_threshold(wl, wlvif, value); |
| 3256 | if (ret < 0) |
| 3257 | wl1271_warning("set rts threshold failed: %d", ret); |
| 3258 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3259 | wl1271_ps_elp_sleep(wl); |
| 3260 | |
| 3261 | out: |
| 3262 | mutex_unlock(&wl->mutex); |
| 3263 | |
| 3264 | return ret; |
| 3265 | } |
| 3266 | |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3267 | static int wl1271_ssid_set(struct ieee80211_vif *vif, struct sk_buff *skb, |
Juuso Oikarinen | 2f6724b | 2010-11-24 08:16:57 +0200 | [diff] [blame] | 3268 | int offset) |
Juuso Oikarinen | 30240fc | 2010-02-18 13:25:38 +0200 | [diff] [blame] | 3269 | { |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3270 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Eliad Peller | 889cb36 | 2011-05-01 09:56:45 +0300 | [diff] [blame] | 3271 | u8 ssid_len; |
| 3272 | const u8 *ptr = cfg80211_find_ie(WLAN_EID_SSID, skb->data + offset, |
| 3273 | skb->len - offset); |
Juuso Oikarinen | 30240fc | 2010-02-18 13:25:38 +0200 | [diff] [blame] | 3274 | |
Eliad Peller | 889cb36 | 2011-05-01 09:56:45 +0300 | [diff] [blame] | 3275 | if (!ptr) { |
| 3276 | wl1271_error("No SSID in IEs!"); |
| 3277 | return -ENOENT; |
Juuso Oikarinen | 30240fc | 2010-02-18 13:25:38 +0200 | [diff] [blame] | 3278 | } |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3279 | |
Eliad Peller | 889cb36 | 2011-05-01 09:56:45 +0300 | [diff] [blame] | 3280 | ssid_len = ptr[1]; |
| 3281 | if (ssid_len > IEEE80211_MAX_SSID_LEN) { |
| 3282 | wl1271_error("SSID is too long!"); |
| 3283 | return -EINVAL; |
| 3284 | } |
| 3285 | |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3286 | wlvif->ssid_len = ssid_len; |
| 3287 | memcpy(wlvif->ssid, ptr+2, ssid_len); |
Eliad Peller | 889cb36 | 2011-05-01 09:56:45 +0300 | [diff] [blame] | 3288 | return 0; |
Juuso Oikarinen | 30240fc | 2010-02-18 13:25:38 +0200 | [diff] [blame] | 3289 | } |
| 3290 | |
Eliad Peller | d48055d | 2011-09-15 12:07:04 +0300 | [diff] [blame] | 3291 | static void wl12xx_remove_ie(struct sk_buff *skb, u8 eid, int ieoffset) |
| 3292 | { |
| 3293 | int len; |
| 3294 | const u8 *next, *end = skb->data + skb->len; |
| 3295 | u8 *ie = (u8 *)cfg80211_find_ie(eid, skb->data + ieoffset, |
| 3296 | skb->len - ieoffset); |
| 3297 | if (!ie) |
| 3298 | return; |
| 3299 | len = ie[1] + 2; |
| 3300 | next = ie + len; |
| 3301 | memmove(ie, next, end - next); |
| 3302 | skb_trim(skb, skb->len - len); |
| 3303 | } |
| 3304 | |
Eliad Peller | 26b4bf2 | 2011-09-15 12:07:05 +0300 | [diff] [blame] | 3305 | static void wl12xx_remove_vendor_ie(struct sk_buff *skb, |
| 3306 | unsigned int oui, u8 oui_type, |
| 3307 | int ieoffset) |
| 3308 | { |
| 3309 | int len; |
| 3310 | const u8 *next, *end = skb->data + skb->len; |
| 3311 | u8 *ie = (u8 *)cfg80211_find_vendor_ie(oui, oui_type, |
| 3312 | skb->data + ieoffset, |
| 3313 | skb->len - ieoffset); |
| 3314 | if (!ie) |
| 3315 | return; |
| 3316 | len = ie[1] + 2; |
| 3317 | next = ie + len; |
| 3318 | memmove(ie, next, end - next); |
| 3319 | skb_trim(skb, skb->len - len); |
| 3320 | } |
| 3321 | |
Arik Nemtsov | 68eaaf6 | 2011-09-03 20:22:03 +0300 | [diff] [blame] | 3322 | static int wl1271_ap_set_probe_resp_tmpl(struct wl1271 *wl, |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3323 | struct ieee80211_vif *vif, |
Arik Nemtsov | 68eaaf6 | 2011-09-03 20:22:03 +0300 | [diff] [blame] | 3324 | u8 *probe_rsp_data, |
| 3325 | size_t probe_rsp_len, |
| 3326 | u32 rates) |
| 3327 | { |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3328 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
| 3329 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; |
Arik Nemtsov | 68eaaf6 | 2011-09-03 20:22:03 +0300 | [diff] [blame] | 3330 | u8 probe_rsp_templ[WL1271_CMD_TEMPL_MAX_SIZE]; |
| 3331 | int ssid_ie_offset, ie_offset, templ_len; |
| 3332 | const u8 *ptr; |
| 3333 | |
| 3334 | /* no need to change probe response if the SSID is set correctly */ |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3335 | if (wlvif->ssid_len > 0) |
Arik Nemtsov | 68eaaf6 | 2011-09-03 20:22:03 +0300 | [diff] [blame] | 3336 | return wl1271_cmd_template_set(wl, |
| 3337 | CMD_TEMPL_AP_PROBE_RESPONSE, |
| 3338 | probe_rsp_data, |
| 3339 | probe_rsp_len, 0, |
| 3340 | rates); |
| 3341 | |
| 3342 | if (probe_rsp_len + bss_conf->ssid_len > WL1271_CMD_TEMPL_MAX_SIZE) { |
| 3343 | wl1271_error("probe_rsp template too big"); |
| 3344 | return -EINVAL; |
| 3345 | } |
| 3346 | |
| 3347 | /* start searching from IE offset */ |
| 3348 | ie_offset = offsetof(struct ieee80211_mgmt, u.probe_resp.variable); |
| 3349 | |
| 3350 | ptr = cfg80211_find_ie(WLAN_EID_SSID, probe_rsp_data + ie_offset, |
| 3351 | probe_rsp_len - ie_offset); |
| 3352 | if (!ptr) { |
| 3353 | wl1271_error("No SSID in beacon!"); |
| 3354 | return -EINVAL; |
| 3355 | } |
| 3356 | |
| 3357 | ssid_ie_offset = ptr - probe_rsp_data; |
| 3358 | ptr += (ptr[1] + 2); |
| 3359 | |
| 3360 | memcpy(probe_rsp_templ, probe_rsp_data, ssid_ie_offset); |
| 3361 | |
| 3362 | /* insert SSID from bss_conf */ |
| 3363 | probe_rsp_templ[ssid_ie_offset] = WLAN_EID_SSID; |
| 3364 | probe_rsp_templ[ssid_ie_offset + 1] = bss_conf->ssid_len; |
| 3365 | memcpy(probe_rsp_templ + ssid_ie_offset + 2, |
| 3366 | bss_conf->ssid, bss_conf->ssid_len); |
| 3367 | templ_len = ssid_ie_offset + 2 + bss_conf->ssid_len; |
| 3368 | |
| 3369 | memcpy(probe_rsp_templ + ssid_ie_offset + 2 + bss_conf->ssid_len, |
| 3370 | ptr, probe_rsp_len - (ptr - probe_rsp_data)); |
| 3371 | templ_len += probe_rsp_len - (ptr - probe_rsp_data); |
| 3372 | |
| 3373 | return wl1271_cmd_template_set(wl, |
| 3374 | CMD_TEMPL_AP_PROBE_RESPONSE, |
| 3375 | probe_rsp_templ, |
| 3376 | templ_len, 0, |
| 3377 | rates); |
| 3378 | } |
| 3379 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3380 | static int wl1271_bss_erp_info_changed(struct wl1271 *wl, |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3381 | struct ieee80211_vif *vif, |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3382 | struct ieee80211_bss_conf *bss_conf, |
| 3383 | u32 changed) |
| 3384 | { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3385 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3386 | int ret = 0; |
| 3387 | |
| 3388 | if (changed & BSS_CHANGED_ERP_SLOT) { |
| 3389 | if (bss_conf->use_short_slot) |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3390 | ret = wl1271_acx_slot(wl, wlvif, SLOT_TIME_SHORT); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3391 | else |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3392 | ret = wl1271_acx_slot(wl, wlvif, SLOT_TIME_LONG); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3393 | if (ret < 0) { |
| 3394 | wl1271_warning("Set slot time failed %d", ret); |
| 3395 | goto out; |
| 3396 | } |
| 3397 | } |
| 3398 | |
| 3399 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
| 3400 | if (bss_conf->use_short_preamble) |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3401 | wl1271_acx_set_preamble(wl, wlvif, ACX_PREAMBLE_SHORT); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3402 | else |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3403 | wl1271_acx_set_preamble(wl, wlvif, ACX_PREAMBLE_LONG); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3404 | } |
| 3405 | |
| 3406 | if (changed & BSS_CHANGED_ERP_CTS_PROT) { |
| 3407 | if (bss_conf->use_cts_prot) |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3408 | ret = wl1271_acx_cts_protect(wl, wlvif, |
| 3409 | CTSPROTECT_ENABLE); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3410 | else |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3411 | ret = wl1271_acx_cts_protect(wl, wlvif, |
| 3412 | CTSPROTECT_DISABLE); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3413 | if (ret < 0) { |
| 3414 | wl1271_warning("Set ctsprotect failed %d", ret); |
| 3415 | goto out; |
| 3416 | } |
| 3417 | } |
| 3418 | |
| 3419 | out: |
| 3420 | return ret; |
| 3421 | } |
| 3422 | |
| 3423 | static int wl1271_bss_beacon_info_changed(struct wl1271 *wl, |
| 3424 | struct ieee80211_vif *vif, |
| 3425 | struct ieee80211_bss_conf *bss_conf, |
| 3426 | u32 changed) |
| 3427 | { |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3428 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3429 | bool is_ap = (wlvif->bss_type == BSS_TYPE_AP_BSS); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3430 | int ret = 0; |
| 3431 | |
| 3432 | if ((changed & BSS_CHANGED_BEACON_INT)) { |
| 3433 | wl1271_debug(DEBUG_MASTER, "beacon interval updated: %d", |
| 3434 | bss_conf->beacon_int); |
| 3435 | |
Eliad Peller | 6a89979 | 2011-10-05 11:55:58 +0200 | [diff] [blame] | 3436 | wlvif->beacon_int = bss_conf->beacon_int; |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3437 | } |
| 3438 | |
| 3439 | if ((changed & BSS_CHANGED_BEACON)) { |
| 3440 | struct ieee80211_hdr *hdr; |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 3441 | u32 min_rate; |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3442 | int ieoffset = offsetof(struct ieee80211_mgmt, |
| 3443 | u.beacon.variable); |
| 3444 | struct sk_buff *beacon = ieee80211_beacon_get(wl->hw, vif); |
| 3445 | u16 tmpl_id; |
| 3446 | |
| 3447 | if (!beacon) |
| 3448 | goto out; |
| 3449 | |
| 3450 | wl1271_debug(DEBUG_MASTER, "beacon updated"); |
| 3451 | |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3452 | ret = wl1271_ssid_set(vif, beacon, ieoffset); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3453 | if (ret < 0) { |
| 3454 | dev_kfree_skb(beacon); |
| 3455 | goto out; |
| 3456 | } |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3457 | min_rate = wl1271_tx_min_rate_get(wl, wlvif->basic_rate_set); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3458 | tmpl_id = is_ap ? CMD_TEMPL_AP_BEACON : |
| 3459 | CMD_TEMPL_BEACON; |
| 3460 | ret = wl1271_cmd_template_set(wl, tmpl_id, |
| 3461 | beacon->data, |
| 3462 | beacon->len, 0, |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 3463 | min_rate); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3464 | if (ret < 0) { |
| 3465 | dev_kfree_skb(beacon); |
| 3466 | goto out; |
| 3467 | } |
| 3468 | |
Eliad Peller | d48055d | 2011-09-15 12:07:04 +0300 | [diff] [blame] | 3469 | /* remove TIM ie from probe response */ |
| 3470 | wl12xx_remove_ie(beacon, WLAN_EID_TIM, ieoffset); |
| 3471 | |
Eliad Peller | 26b4bf2 | 2011-09-15 12:07:05 +0300 | [diff] [blame] | 3472 | /* |
| 3473 | * remove p2p ie from probe response. |
| 3474 | * the fw reponds to probe requests that don't include |
| 3475 | * the p2p ie. probe requests with p2p ie will be passed, |
| 3476 | * and will be responded by the supplicant (the spec |
| 3477 | * forbids including the p2p ie when responding to probe |
| 3478 | * requests that didn't include it). |
| 3479 | */ |
| 3480 | wl12xx_remove_vendor_ie(beacon, WLAN_OUI_WFA, |
| 3481 | WLAN_OUI_TYPE_WFA_P2P, ieoffset); |
| 3482 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3483 | hdr = (struct ieee80211_hdr *) beacon->data; |
| 3484 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 3485 | IEEE80211_STYPE_PROBE_RESP); |
Arik Nemtsov | 68eaaf6 | 2011-09-03 20:22:03 +0300 | [diff] [blame] | 3486 | if (is_ap) |
Eliad Peller | 1fe9f16 | 2011-10-05 11:55:48 +0200 | [diff] [blame] | 3487 | ret = wl1271_ap_set_probe_resp_tmpl(wl, vif, |
Arik Nemtsov | 68eaaf6 | 2011-09-03 20:22:03 +0300 | [diff] [blame] | 3488 | beacon->data, |
| 3489 | beacon->len, |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 3490 | min_rate); |
Arik Nemtsov | 68eaaf6 | 2011-09-03 20:22:03 +0300 | [diff] [blame] | 3491 | else |
| 3492 | ret = wl1271_cmd_template_set(wl, |
| 3493 | CMD_TEMPL_PROBE_RESPONSE, |
| 3494 | beacon->data, |
| 3495 | beacon->len, 0, |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 3496 | min_rate); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3497 | dev_kfree_skb(beacon); |
| 3498 | if (ret < 0) |
| 3499 | goto out; |
| 3500 | } |
| 3501 | |
| 3502 | out: |
| 3503 | return ret; |
| 3504 | } |
| 3505 | |
| 3506 | /* AP mode changes */ |
| 3507 | static void wl1271_bss_info_changed_ap(struct wl1271 *wl, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3508 | struct ieee80211_vif *vif, |
| 3509 | struct ieee80211_bss_conf *bss_conf, |
| 3510 | u32 changed) |
| 3511 | { |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3512 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3513 | int ret = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3514 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3515 | if ((changed & BSS_CHANGED_BASIC_RATES)) { |
| 3516 | u32 rates = bss_conf->basic_rates; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3517 | |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3518 | wlvif->basic_rate_set = wl1271_tx_enabled_rates_get(wl, rates, |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 3519 | wlvif->band); |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 3520 | wlvif->basic_rate = wl1271_tx_min_rate_get(wl, |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3521 | wlvif->basic_rate_set); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3522 | |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3523 | ret = wl1271_init_ap_rates(wl, wlvif); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3524 | if (ret < 0) { |
Arik Nemtsov | 70f4742 | 2011-04-18 14:15:25 +0300 | [diff] [blame] | 3525 | wl1271_error("AP rate policy change failed %d", ret); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3526 | goto out; |
Juuso Oikarinen | e0d8bbf | 2009-12-11 15:41:04 +0200 | [diff] [blame] | 3527 | } |
Arik Nemtsov | c45a85b | 2011-04-18 14:15:26 +0300 | [diff] [blame] | 3528 | |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 3529 | ret = wl1271_ap_init_templates(wl, vif); |
Arik Nemtsov | c45a85b | 2011-04-18 14:15:26 +0300 | [diff] [blame] | 3530 | if (ret < 0) |
| 3531 | goto out; |
Juuso Oikarinen | e0d8bbf | 2009-12-11 15:41:04 +0200 | [diff] [blame] | 3532 | } |
| 3533 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3534 | ret = wl1271_bss_beacon_info_changed(wl, vif, bss_conf, changed); |
| 3535 | if (ret < 0) |
| 3536 | goto out; |
| 3537 | |
| 3538 | if ((changed & BSS_CHANGED_BEACON_ENABLED)) { |
| 3539 | if (bss_conf->enable_beacon) { |
Eliad Peller | 53d40d0 | 2011-10-10 10:13:02 +0200 | [diff] [blame] | 3540 | if (!test_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags)) { |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3541 | ret = wl12xx_cmd_role_start_ap(wl, wlvif); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3542 | if (ret < 0) |
| 3543 | goto out; |
| 3544 | |
Eliad Peller | a8ab39a | 2011-10-05 11:55:54 +0200 | [diff] [blame] | 3545 | ret = wl1271_ap_init_hwenc(wl, wlvif); |
Arik Nemtsov | 7f179b4 | 2010-10-16 21:39:06 +0200 | [diff] [blame] | 3546 | if (ret < 0) |
| 3547 | goto out; |
Arik Nemtsov | cf42039 | 2011-08-14 13:17:37 +0300 | [diff] [blame] | 3548 | |
Eliad Peller | 53d40d0 | 2011-10-10 10:13:02 +0200 | [diff] [blame] | 3549 | set_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags); |
Arik Nemtsov | cf42039 | 2011-08-14 13:17:37 +0300 | [diff] [blame] | 3550 | wl1271_debug(DEBUG_AP, "started AP"); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3551 | } |
| 3552 | } else { |
Eliad Peller | 53d40d0 | 2011-10-10 10:13:02 +0200 | [diff] [blame] | 3553 | if (test_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags)) { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3554 | ret = wl12xx_cmd_role_stop_ap(wl, wlvif); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3555 | if (ret < 0) |
| 3556 | goto out; |
| 3557 | |
Eliad Peller | 53d40d0 | 2011-10-10 10:13:02 +0200 | [diff] [blame] | 3558 | clear_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3559 | wl1271_debug(DEBUG_AP, "stopped AP"); |
| 3560 | } |
| 3561 | } |
| 3562 | } |
| 3563 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3564 | ret = wl1271_bss_erp_info_changed(wl, vif, bss_conf, changed); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3565 | if (ret < 0) |
| 3566 | goto out; |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 3567 | |
| 3568 | /* Handle HT information change */ |
| 3569 | if ((changed & BSS_CHANGED_HT) && |
| 3570 | (bss_conf->channel_type != NL80211_CHAN_NO_HT)) { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3571 | ret = wl1271_acx_set_ht_information(wl, wlvif, |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 3572 | bss_conf->ht_operation_mode); |
| 3573 | if (ret < 0) { |
| 3574 | wl1271_warning("Set ht information failed %d", ret); |
| 3575 | goto out; |
| 3576 | } |
| 3577 | } |
| 3578 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3579 | out: |
| 3580 | return; |
| 3581 | } |
| 3582 | |
| 3583 | /* STA/IBSS mode changes */ |
| 3584 | static void wl1271_bss_info_changed_sta(struct wl1271 *wl, |
| 3585 | struct ieee80211_vif *vif, |
| 3586 | struct ieee80211_bss_conf *bss_conf, |
| 3587 | u32 changed) |
| 3588 | { |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3589 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3590 | bool do_join = false, set_assoc = false; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3591 | bool is_ibss = (wlvif->bss_type == BSS_TYPE_IBSS); |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 3592 | bool ibss_joined = false; |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 3593 | u32 sta_rate_set = 0; |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3594 | int ret; |
Luciano Coelho | 2d6e4e76 | 2011-01-11 19:07:21 +0100 | [diff] [blame] | 3595 | struct ieee80211_sta *sta; |
Arik Nemtsov | a100885 | 2011-02-12 23:24:20 +0200 | [diff] [blame] | 3596 | bool sta_exists = false; |
| 3597 | struct ieee80211_sta_ht_cap sta_ht_cap; |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3598 | |
| 3599 | if (is_ibss) { |
| 3600 | ret = wl1271_bss_beacon_info_changed(wl, vif, bss_conf, |
| 3601 | changed); |
| 3602 | if (ret < 0) |
| 3603 | goto out; |
| 3604 | } |
| 3605 | |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 3606 | if (changed & BSS_CHANGED_IBSS) { |
| 3607 | if (bss_conf->ibss_joined) { |
Eliad Peller | eee514e | 2011-10-10 10:13:01 +0200 | [diff] [blame] | 3608 | set_bit(WLVIF_FLAG_IBSS_JOINED, &wlvif->flags); |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 3609 | ibss_joined = true; |
| 3610 | } else { |
Eliad Peller | eee514e | 2011-10-10 10:13:01 +0200 | [diff] [blame] | 3611 | if (test_and_clear_bit(WLVIF_FLAG_IBSS_JOINED, |
| 3612 | &wlvif->flags)) { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3613 | wl1271_unjoin(wl, wlvif); |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 3614 | wl12xx_cmd_role_start_dev(wl, wlvif); |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 3615 | wl12xx_roc(wl, wlvif, wlvif->dev_role_id); |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 3616 | } |
| 3617 | } |
| 3618 | } |
| 3619 | |
| 3620 | if ((changed & BSS_CHANGED_BEACON_INT) && ibss_joined) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3621 | do_join = true; |
| 3622 | |
| 3623 | /* Need to update the SSID (for filtering etc) */ |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 3624 | if ((changed & BSS_CHANGED_BEACON) && ibss_joined) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3625 | do_join = true; |
| 3626 | |
Eliad Peller | 227e81e | 2011-08-14 13:17:26 +0300 | [diff] [blame] | 3627 | if ((changed & BSS_CHANGED_BEACON_ENABLED) && ibss_joined) { |
Juuso Oikarinen | 5da11dc | 2010-03-26 12:53:24 +0200 | [diff] [blame] | 3628 | wl1271_debug(DEBUG_ADHOC, "ad-hoc beaconing: %s", |
| 3629 | bss_conf->enable_beacon ? "enabled" : "disabled"); |
| 3630 | |
Juuso Oikarinen | 5da11dc | 2010-03-26 12:53:24 +0200 | [diff] [blame] | 3631 | do_join = true; |
| 3632 | } |
| 3633 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3634 | if ((changed & BSS_CHANGED_CQM)) { |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 3635 | bool enable = false; |
| 3636 | if (bss_conf->cqm_rssi_thold) |
| 3637 | enable = true; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3638 | ret = wl1271_acx_rssi_snr_trigger(wl, wlvif, enable, |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 3639 | bss_conf->cqm_rssi_thold, |
| 3640 | bss_conf->cqm_rssi_hyst); |
| 3641 | if (ret < 0) |
| 3642 | goto out; |
Eliad Peller | 04324d9 | 2011-10-05 11:56:03 +0200 | [diff] [blame] | 3643 | wlvif->rssi_thold = bss_conf->cqm_rssi_thold; |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 3644 | } |
| 3645 | |
Eliad Peller | cdf0949 | 2011-10-05 11:55:44 +0200 | [diff] [blame] | 3646 | if (changed & BSS_CHANGED_BSSID) |
| 3647 | if (!is_zero_ether_addr(bss_conf->bssid)) { |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 3648 | ret = wl12xx_cmd_build_null_data(wl, wlvif); |
Eliad Peller | fa287b8 | 2010-12-26 09:27:50 +0100 | [diff] [blame] | 3649 | if (ret < 0) |
| 3650 | goto out; |
Juuso Oikarinen | 30240fc | 2010-02-18 13:25:38 +0200 | [diff] [blame] | 3651 | |
Eliad Peller | 784f694 | 2011-10-05 11:55:39 +0200 | [diff] [blame] | 3652 | ret = wl1271_build_qos_null_data(wl, vif); |
Eliad Peller | fa287b8 | 2010-12-26 09:27:50 +0100 | [diff] [blame] | 3653 | if (ret < 0) |
| 3654 | goto out; |
Saravanan Dhanabal | 141418c | 2010-04-28 09:50:00 +0300 | [diff] [blame] | 3655 | |
Eliad Peller | fa287b8 | 2010-12-26 09:27:50 +0100 | [diff] [blame] | 3656 | /* Need to update the BSSID (for filtering etc) */ |
| 3657 | do_join = true; |
| 3658 | } |
Juuso Oikarinen | 30240fc | 2010-02-18 13:25:38 +0200 | [diff] [blame] | 3659 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 3660 | if (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_HT)) { |
| 3661 | rcu_read_lock(); |
| 3662 | sta = ieee80211_find_sta(vif, bss_conf->bssid); |
| 3663 | if (!sta) |
| 3664 | goto sta_not_found; |
| 3665 | |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 3666 | /* save the supp_rates of the ap */ |
| 3667 | sta_rate_set = sta->supp_rates[wl->hw->conf.channel->band]; |
| 3668 | if (sta->ht_cap.ht_supported) |
| 3669 | sta_rate_set |= |
| 3670 | (sta->ht_cap.mcs.rx_mask[0] << HW_HT_RATES_OFFSET); |
Arik Nemtsov | a100885 | 2011-02-12 23:24:20 +0200 | [diff] [blame] | 3671 | sta_ht_cap = sta->ht_cap; |
| 3672 | sta_exists = true; |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 3673 | |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 3674 | sta_not_found: |
| 3675 | rcu_read_unlock(); |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 3676 | } |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 3677 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3678 | if ((changed & BSS_CHANGED_ASSOC)) { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3679 | if (bss_conf->assoc) { |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 3680 | u32 rates; |
Juuso Oikarinen | 2f6724b | 2010-11-24 08:16:57 +0200 | [diff] [blame] | 3681 | int ieoffset; |
Eliad Peller | 6840e37 | 2011-10-05 11:55:50 +0200 | [diff] [blame] | 3682 | wlvif->aid = bss_conf->aid; |
Juuso Oikarinen | 69e5434 | 2010-05-07 11:39:00 +0300 | [diff] [blame] | 3683 | set_assoc = true; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3684 | |
Eliad Peller | 74ec839 | 2011-10-05 11:56:02 +0200 | [diff] [blame] | 3685 | wlvif->ps_poll_failures = 0; |
Juuso Oikarinen | 90494a9 | 2010-07-08 17:50:00 +0300 | [diff] [blame] | 3686 | |
Luciano Coelho | ae751ba | 2009-10-12 15:08:57 +0300 | [diff] [blame] | 3687 | /* |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 3688 | * use basic rates from AP, and determine lowest rate |
| 3689 | * to use with control frames. |
| 3690 | */ |
| 3691 | rates = bss_conf->basic_rates; |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3692 | wlvif->basic_rate_set = |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 3693 | wl1271_tx_enabled_rates_get(wl, rates, |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 3694 | wlvif->band); |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 3695 | wlvif->basic_rate = |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3696 | wl1271_tx_min_rate_get(wl, |
| 3697 | wlvif->basic_rate_set); |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 3698 | if (sta_rate_set) |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 3699 | wlvif->rate_set = |
| 3700 | wl1271_tx_enabled_rates_get(wl, |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 3701 | sta_rate_set, |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 3702 | wlvif->band); |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 3703 | ret = wl1271_acx_sta_rate_policies(wl, wlvif); |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 3704 | if (ret < 0) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3705 | goto out; |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 3706 | |
| 3707 | /* |
Luciano Coelho | ae751ba | 2009-10-12 15:08:57 +0300 | [diff] [blame] | 3708 | * with wl1271, we don't need to update the |
| 3709 | * beacon_int and dtim_period, because the firmware |
| 3710 | * updates it by itself when the first beacon is |
| 3711 | * received after a join. |
| 3712 | */ |
Eliad Peller | 6840e37 | 2011-10-05 11:55:50 +0200 | [diff] [blame] | 3713 | ret = wl1271_cmd_build_ps_poll(wl, wlvif, wlvif->aid); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3714 | if (ret < 0) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3715 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3716 | |
Juuso Oikarinen | c2b2d99 | 2010-03-26 12:53:28 +0200 | [diff] [blame] | 3717 | /* |
Juuso Oikarinen | 2f6724b | 2010-11-24 08:16:57 +0200 | [diff] [blame] | 3718 | * Get a template for hardware connection maintenance |
Juuso Oikarinen | c2b2d99 | 2010-03-26 12:53:28 +0200 | [diff] [blame] | 3719 | */ |
Eliad Peller | bddb29b | 2011-10-05 11:55:49 +0200 | [diff] [blame] | 3720 | dev_kfree_skb(wlvif->probereq); |
| 3721 | wlvif->probereq = wl1271_cmd_build_ap_probe_req(wl, |
Eliad Peller | 8358750 | 2011-10-10 10:12:53 +0200 | [diff] [blame] | 3722 | wlvif, |
Eliad Peller | bddb29b | 2011-10-05 11:55:49 +0200 | [diff] [blame] | 3723 | NULL); |
Juuso Oikarinen | 2f6724b | 2010-11-24 08:16:57 +0200 | [diff] [blame] | 3724 | ieoffset = offsetof(struct ieee80211_mgmt, |
| 3725 | u.probe_req.variable); |
Eliad Peller | bddb29b | 2011-10-05 11:55:49 +0200 | [diff] [blame] | 3726 | wl1271_ssid_set(vif, wlvif->probereq, ieoffset); |
Juuso Oikarinen | c2b2d99 | 2010-03-26 12:53:28 +0200 | [diff] [blame] | 3727 | |
Juuso Oikarinen | 6ccbb92 | 2010-03-26 12:53:23 +0200 | [diff] [blame] | 3728 | /* enable the connection monitoring feature */ |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3729 | ret = wl1271_acx_conn_monit_params(wl, wlvif, true); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3730 | if (ret < 0) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3731 | goto out; |
Juuso Oikarinen | d94cd29 | 2009-10-08 21:56:25 +0300 | [diff] [blame] | 3732 | } else { |
| 3733 | /* use defaults when not associated */ |
Eliad Peller | 30df14d | 2011-04-05 19:13:28 +0300 | [diff] [blame] | 3734 | bool was_assoc = |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 3735 | !!test_and_clear_bit(WLVIF_FLAG_STA_ASSOCIATED, |
| 3736 | &wlvif->flags); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3737 | bool was_ifup = |
Eliad Peller | 8181aec | 2011-10-10 10:13:04 +0200 | [diff] [blame] | 3738 | !!test_and_clear_bit(WLVIF_FLAG_STA_STATE_SENT, |
| 3739 | &wlvif->flags); |
Eliad Peller | 6840e37 | 2011-10-05 11:55:50 +0200 | [diff] [blame] | 3740 | wlvif->aid = 0; |
Juuso Oikarinen | 6ccbb92 | 2010-03-26 12:53:23 +0200 | [diff] [blame] | 3741 | |
Juuso Oikarinen | 2f6724b | 2010-11-24 08:16:57 +0200 | [diff] [blame] | 3742 | /* free probe-request template */ |
Eliad Peller | bddb29b | 2011-10-05 11:55:49 +0200 | [diff] [blame] | 3743 | dev_kfree_skb(wlvif->probereq); |
| 3744 | wlvif->probereq = NULL; |
Juuso Oikarinen | 2f6724b | 2010-11-24 08:16:57 +0200 | [diff] [blame] | 3745 | |
Juuso Oikarinen | 8d2ef7b | 2010-07-08 17:50:03 +0300 | [diff] [blame] | 3746 | /* re-enable dynamic ps - just in case */ |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 3747 | ieee80211_enable_dyn_ps(vif); |
Juuso Oikarinen | 8d2ef7b | 2010-07-08 17:50:03 +0300 | [diff] [blame] | 3748 | |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 3749 | /* revert back to minimum rates for the current band */ |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3750 | wl1271_set_band_rate(wl, wlvif); |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 3751 | wlvif->basic_rate = |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3752 | wl1271_tx_min_rate_get(wl, |
| 3753 | wlvif->basic_rate_set); |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 3754 | ret = wl1271_acx_sta_rate_policies(wl, wlvif); |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 3755 | if (ret < 0) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3756 | goto out; |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 3757 | |
Juuso Oikarinen | 6ccbb92 | 2010-03-26 12:53:23 +0200 | [diff] [blame] | 3758 | /* disable connection monitor features */ |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3759 | ret = wl1271_acx_conn_monit_params(wl, wlvif, false); |
Juuso Oikarinen | c189955 | 2010-03-26 12:53:32 +0200 | [diff] [blame] | 3760 | |
| 3761 | /* Disable the keep-alive feature */ |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3762 | ret = wl1271_acx_keep_alive_mode(wl, wlvif, false); |
Juuso Oikarinen | 6ccbb92 | 2010-03-26 12:53:23 +0200 | [diff] [blame] | 3763 | if (ret < 0) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3764 | goto out; |
Juuso Oikarinen | b84a7d3 | 2010-11-22 12:59:08 +0200 | [diff] [blame] | 3765 | |
| 3766 | /* restore the bssid filter and go to dummy bssid */ |
Eliad Peller | 30df14d | 2011-04-05 19:13:28 +0300 | [diff] [blame] | 3767 | if (was_assoc) { |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3768 | u32 conf_flags = wl->hw->conf.flags; |
| 3769 | /* |
| 3770 | * we might have to disable roc, if there was |
| 3771 | * no IF_OPER_UP notification. |
| 3772 | */ |
| 3773 | if (!was_ifup) { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3774 | ret = wl12xx_croc(wl, wlvif->role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3775 | if (ret < 0) |
| 3776 | goto out; |
| 3777 | } |
| 3778 | /* |
| 3779 | * (we also need to disable roc in case of |
| 3780 | * roaming on the same channel. until we will |
| 3781 | * have a better flow...) |
| 3782 | */ |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 3783 | if (test_bit(wlvif->dev_role_id, wl->roc_map)) { |
| 3784 | ret = wl12xx_croc(wl, |
| 3785 | wlvif->dev_role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3786 | if (ret < 0) |
| 3787 | goto out; |
| 3788 | } |
| 3789 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3790 | wl1271_unjoin(wl, wlvif); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3791 | if (!(conf_flags & IEEE80211_CONF_IDLE)) { |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 3792 | wl12xx_cmd_role_start_dev(wl, wlvif); |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 3793 | wl12xx_roc(wl, wlvif, |
| 3794 | wlvif->dev_role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3795 | } |
Eliad Peller | 30df14d | 2011-04-05 19:13:28 +0300 | [diff] [blame] | 3796 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3797 | } |
| 3798 | } |
Juuso Oikarinen | 8a5a37a | 2009-10-08 21:56:24 +0300 | [diff] [blame] | 3799 | |
Eliad Peller | d192d26 | 2011-05-24 14:33:08 +0300 | [diff] [blame] | 3800 | if (changed & BSS_CHANGED_IBSS) { |
| 3801 | wl1271_debug(DEBUG_ADHOC, "ibss_joined: %d", |
| 3802 | bss_conf->ibss_joined); |
| 3803 | |
| 3804 | if (bss_conf->ibss_joined) { |
| 3805 | u32 rates = bss_conf->basic_rates; |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3806 | wlvif->basic_rate_set = |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 3807 | wl1271_tx_enabled_rates_get(wl, rates, |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 3808 | wlvif->band); |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 3809 | wlvif->basic_rate = |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3810 | wl1271_tx_min_rate_get(wl, |
| 3811 | wlvif->basic_rate_set); |
Eliad Peller | d192d26 | 2011-05-24 14:33:08 +0300 | [diff] [blame] | 3812 | |
Shahar Levi | 06b660e | 2011-09-05 13:54:36 +0300 | [diff] [blame] | 3813 | /* by default, use 11b + OFDM rates */ |
Eliad Peller | 30d0c8f | 2011-10-05 11:55:42 +0200 | [diff] [blame] | 3814 | wlvif->rate_set = CONF_TX_IBSS_DEFAULT_RATES; |
| 3815 | ret = wl1271_acx_sta_rate_policies(wl, wlvif); |
Eliad Peller | d192d26 | 2011-05-24 14:33:08 +0300 | [diff] [blame] | 3816 | if (ret < 0) |
| 3817 | goto out; |
| 3818 | } |
| 3819 | } |
| 3820 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3821 | ret = wl1271_bss_erp_info_changed(wl, vif, bss_conf, changed); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3822 | if (ret < 0) |
| 3823 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3824 | |
Juuso Oikarinen | ca52a5e | 2010-07-08 17:50:02 +0300 | [diff] [blame] | 3825 | if (changed & BSS_CHANGED_ARP_FILTER) { |
| 3826 | __be32 addr = bss_conf->arp_addr_list[0]; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3827 | WARN_ON(wlvif->bss_type != BSS_TYPE_STA_BSS); |
Juuso Oikarinen | ca52a5e | 2010-07-08 17:50:02 +0300 | [diff] [blame] | 3828 | |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 3829 | if (bss_conf->arp_addr_cnt == 1 && |
| 3830 | bss_conf->arp_filter_enabled) { |
| 3831 | /* |
| 3832 | * The template should have been configured only upon |
| 3833 | * association. however, it seems that the correct ip |
| 3834 | * isn't being set (when sending), so we have to |
| 3835 | * reconfigure the template upon every ip change. |
| 3836 | */ |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 3837 | ret = wl1271_cmd_build_arp_rsp(wl, wlvif, addr); |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 3838 | if (ret < 0) { |
| 3839 | wl1271_warning("build arp rsp failed: %d", ret); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3840 | goto out; |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 3841 | } |
| 3842 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3843 | ret = wl1271_acx_arp_ip_filter(wl, wlvif, |
Eliad Peller | e5e2f24 | 2011-01-24 19:19:03 +0100 | [diff] [blame] | 3844 | ACX_ARP_FILTER_ARP_FILTERING, |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 3845 | addr); |
| 3846 | } else |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3847 | ret = wl1271_acx_arp_ip_filter(wl, wlvif, 0, addr); |
Juuso Oikarinen | ca52a5e | 2010-07-08 17:50:02 +0300 | [diff] [blame] | 3848 | |
| 3849 | if (ret < 0) |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3850 | goto out; |
Juuso Oikarinen | ca52a5e | 2010-07-08 17:50:02 +0300 | [diff] [blame] | 3851 | } |
| 3852 | |
Juuso Oikarinen | 8bf29b0 | 2010-02-18 13:25:51 +0200 | [diff] [blame] | 3853 | if (do_join) { |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 3854 | ret = wl1271_join(wl, wlvif, set_assoc); |
Juuso Oikarinen | 8bf29b0 | 2010-02-18 13:25:51 +0200 | [diff] [blame] | 3855 | if (ret < 0) { |
| 3856 | wl1271_warning("cmd join failed %d", ret); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3857 | goto out; |
Juuso Oikarinen | 8bf29b0 | 2010-02-18 13:25:51 +0200 | [diff] [blame] | 3858 | } |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3859 | |
| 3860 | /* ROC until connected (after EAPOL exchange) */ |
| 3861 | if (!is_ibss) { |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 3862 | ret = wl12xx_roc(wl, wlvif, wlvif->role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3863 | if (ret < 0) |
| 3864 | goto out; |
| 3865 | |
Eliad Peller | ba8447f | 2011-10-10 10:13:00 +0200 | [diff] [blame] | 3866 | wl1271_check_operstate(wl, wlvif, |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3867 | ieee80211_get_operstate(vif)); |
| 3868 | } |
| 3869 | /* |
| 3870 | * stop device role if started (we might already be in |
| 3871 | * STA role). TODO: make it better. |
| 3872 | */ |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 3873 | if (wlvif->dev_role_id != WL12XX_INVALID_ROLE_ID) { |
| 3874 | ret = wl12xx_croc(wl, wlvif->dev_role_id); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3875 | if (ret < 0) |
| 3876 | goto out; |
| 3877 | |
Eliad Peller | 7edebf5 | 2011-10-05 11:55:52 +0200 | [diff] [blame] | 3878 | ret = wl12xx_cmd_role_stop_dev(wl, wlvif); |
Eliad Peller | 251c177 | 2011-08-14 13:17:17 +0300 | [diff] [blame] | 3879 | if (ret < 0) |
| 3880 | goto out; |
| 3881 | } |
Eliad Peller | 05dba35 | 2011-08-23 16:37:01 +0300 | [diff] [blame] | 3882 | |
| 3883 | /* If we want to go in PSM but we're not there yet */ |
Eliad Peller | c29bb00 | 2011-10-10 10:13:03 +0200 | [diff] [blame] | 3884 | if (test_bit(WLVIF_FLAG_PSM_REQUESTED, &wlvif->flags) && |
| 3885 | !test_bit(WLVIF_FLAG_PSM, &wlvif->flags)) { |
Eliad Peller | 05dba35 | 2011-08-23 16:37:01 +0300 | [diff] [blame] | 3886 | enum wl1271_cmd_ps_mode mode; |
| 3887 | |
| 3888 | mode = STATION_POWER_SAVE_MODE; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3889 | ret = wl1271_ps_set_mode(wl, wlvif, mode, |
Eliad Peller | d2d66c5 | 2011-10-05 11:55:43 +0200 | [diff] [blame] | 3890 | wlvif->basic_rate, |
Eliad Peller | 05dba35 | 2011-08-23 16:37:01 +0300 | [diff] [blame] | 3891 | true); |
| 3892 | if (ret < 0) |
| 3893 | goto out; |
| 3894 | } |
Juuso Oikarinen | c189955 | 2010-03-26 12:53:32 +0200 | [diff] [blame] | 3895 | } |
| 3896 | |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 3897 | /* Handle new association with HT. Do this after join. */ |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 3898 | if (sta_exists) { |
| 3899 | if ((changed & BSS_CHANGED_HT) && |
| 3900 | (bss_conf->channel_type != NL80211_CHAN_NO_HT)) { |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 3901 | ret = wl1271_acx_set_ht_capabilities(wl, |
| 3902 | &sta_ht_cap, |
| 3903 | true, |
Eliad Peller | 154da67 | 2011-10-05 11:55:53 +0200 | [diff] [blame] | 3904 | wlvif->sta.hlid); |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 3905 | if (ret < 0) { |
| 3906 | wl1271_warning("Set ht cap true failed %d", |
| 3907 | ret); |
| 3908 | goto out; |
| 3909 | } |
| 3910 | } |
| 3911 | /* handle new association without HT and disassociation */ |
| 3912 | else if (changed & BSS_CHANGED_ASSOC) { |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 3913 | ret = wl1271_acx_set_ht_capabilities(wl, |
| 3914 | &sta_ht_cap, |
| 3915 | false, |
Eliad Peller | 154da67 | 2011-10-05 11:55:53 +0200 | [diff] [blame] | 3916 | wlvif->sta.hlid); |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 3917 | if (ret < 0) { |
| 3918 | wl1271_warning("Set ht cap false failed %d", |
| 3919 | ret); |
| 3920 | goto out; |
| 3921 | } |
| 3922 | } |
| 3923 | } |
| 3924 | |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 3925 | /* Handle HT information change. Done after join. */ |
| 3926 | if ((changed & BSS_CHANGED_HT) && |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 3927 | (bss_conf->channel_type != NL80211_CHAN_NO_HT)) { |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3928 | ret = wl1271_acx_set_ht_information(wl, wlvif, |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 3929 | bss_conf->ht_operation_mode); |
| 3930 | if (ret < 0) { |
| 3931 | wl1271_warning("Set ht information failed %d", ret); |
| 3932 | goto out; |
| 3933 | } |
| 3934 | } |
| 3935 | |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3936 | out: |
| 3937 | return; |
| 3938 | } |
| 3939 | |
| 3940 | static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw, |
| 3941 | struct ieee80211_vif *vif, |
| 3942 | struct ieee80211_bss_conf *bss_conf, |
| 3943 | u32 changed) |
| 3944 | { |
| 3945 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 3946 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
| 3947 | bool is_ap = (wlvif->bss_type == BSS_TYPE_AP_BSS); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3948 | int ret; |
| 3949 | |
| 3950 | wl1271_debug(DEBUG_MAC80211, "mac80211 bss info changed 0x%x", |
| 3951 | (int)changed); |
| 3952 | |
| 3953 | mutex_lock(&wl->mutex); |
| 3954 | |
| 3955 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
| 3956 | goto out; |
| 3957 | |
Eliad Peller | 10c8cd0 | 2011-10-10 10:13:06 +0200 | [diff] [blame] | 3958 | if (unlikely(!test_bit(WLVIF_FLAG_INITIALIZED, &wlvif->flags))) |
| 3959 | goto out; |
| 3960 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 3961 | ret = wl1271_ps_elp_wakeup(wl); |
Arik Nemtsov | e78a287 | 2010-10-16 19:07:21 +0200 | [diff] [blame] | 3962 | if (ret < 0) |
| 3963 | goto out; |
| 3964 | |
| 3965 | if (is_ap) |
| 3966 | wl1271_bss_info_changed_ap(wl, vif, bss_conf, changed); |
| 3967 | else |
| 3968 | wl1271_bss_info_changed_sta(wl, vif, bss_conf, changed); |
| 3969 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 3970 | wl1271_ps_elp_sleep(wl); |
| 3971 | |
| 3972 | out: |
| 3973 | mutex_unlock(&wl->mutex); |
| 3974 | } |
| 3975 | |
Eliad Peller | 8a3a3c8 | 2011-10-02 10:15:52 +0200 | [diff] [blame] | 3976 | static int wl1271_op_conf_tx(struct ieee80211_hw *hw, |
| 3977 | struct ieee80211_vif *vif, u16 queue, |
Kalle Valo | c6999d8 | 2010-02-18 13:25:41 +0200 | [diff] [blame] | 3978 | const struct ieee80211_tx_queue_params *params) |
| 3979 | { |
| 3980 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 3981 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Kalle Valo | 4695dc9 | 2010-03-18 12:26:38 +0200 | [diff] [blame] | 3982 | u8 ps_scheme; |
Arik Nemtsov | 488fc54 | 2010-10-16 20:33:45 +0200 | [diff] [blame] | 3983 | int ret = 0; |
Kalle Valo | c6999d8 | 2010-02-18 13:25:41 +0200 | [diff] [blame] | 3984 | |
| 3985 | mutex_lock(&wl->mutex); |
| 3986 | |
| 3987 | wl1271_debug(DEBUG_MAC80211, "mac80211 conf tx %d", queue); |
| 3988 | |
Kalle Valo | 4695dc9 | 2010-03-18 12:26:38 +0200 | [diff] [blame] | 3989 | if (params->uapsd) |
| 3990 | ps_scheme = CONF_PS_SCHEME_UPSD_TRIGGER; |
| 3991 | else |
| 3992 | ps_scheme = CONF_PS_SCHEME_LEGACY; |
| 3993 | |
Arik Nemtsov | 488fc54 | 2010-10-16 20:33:45 +0200 | [diff] [blame] | 3994 | if (wl->state == WL1271_STATE_OFF) { |
| 3995 | /* |
| 3996 | * If the state is off, the parameters will be recorded and |
| 3997 | * configured on init. This happens in AP-mode. |
| 3998 | */ |
| 3999 | struct conf_tx_ac_category *conf_ac = |
| 4000 | &wl->conf.tx.ac_conf[wl1271_tx_get_queue(queue)]; |
| 4001 | struct conf_tx_tid *conf_tid = |
| 4002 | &wl->conf.tx.tid_conf[wl1271_tx_get_queue(queue)]; |
| 4003 | |
| 4004 | conf_ac->ac = wl1271_tx_get_queue(queue); |
| 4005 | conf_ac->cw_min = (u8)params->cw_min; |
| 4006 | conf_ac->cw_max = params->cw_max; |
| 4007 | conf_ac->aifsn = params->aifs; |
| 4008 | conf_ac->tx_op_limit = params->txop << 5; |
| 4009 | |
| 4010 | conf_tid->queue_id = wl1271_tx_get_queue(queue); |
| 4011 | conf_tid->channel_type = CONF_CHANNEL_TYPE_EDCF; |
| 4012 | conf_tid->tsid = wl1271_tx_get_queue(queue); |
| 4013 | conf_tid->ps_scheme = ps_scheme; |
| 4014 | conf_tid->ack_policy = CONF_ACK_POLICY_LEGACY; |
| 4015 | conf_tid->apsd_conf[0] = 0; |
| 4016 | conf_tid->apsd_conf[1] = 0; |
Eliad Peller | c1b193e | 2011-03-23 22:22:15 +0200 | [diff] [blame] | 4017 | goto out; |
| 4018 | } |
Arik Nemtsov | 488fc54 | 2010-10-16 20:33:45 +0200 | [diff] [blame] | 4019 | |
Eliad Peller | c1b193e | 2011-03-23 22:22:15 +0200 | [diff] [blame] | 4020 | ret = wl1271_ps_elp_wakeup(wl); |
| 4021 | if (ret < 0) |
| 4022 | goto out; |
Arik Nemtsov | 488fc54 | 2010-10-16 20:33:45 +0200 | [diff] [blame] | 4023 | |
Eliad Peller | c1b193e | 2011-03-23 22:22:15 +0200 | [diff] [blame] | 4024 | /* |
| 4025 | * the txop is confed in units of 32us by the mac80211, |
| 4026 | * we need us |
| 4027 | */ |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 4028 | ret = wl1271_acx_ac_cfg(wl, wlvif, wl1271_tx_get_queue(queue), |
Eliad Peller | c1b193e | 2011-03-23 22:22:15 +0200 | [diff] [blame] | 4029 | params->cw_min, params->cw_max, |
| 4030 | params->aifs, params->txop << 5); |
| 4031 | if (ret < 0) |
| 4032 | goto out_sleep; |
| 4033 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 4034 | ret = wl1271_acx_tid_cfg(wl, wlvif, wl1271_tx_get_queue(queue), |
Eliad Peller | c1b193e | 2011-03-23 22:22:15 +0200 | [diff] [blame] | 4035 | CONF_CHANNEL_TYPE_EDCF, |
| 4036 | wl1271_tx_get_queue(queue), |
| 4037 | ps_scheme, CONF_ACK_POLICY_LEGACY, |
| 4038 | 0, 0); |
Kalle Valo | c82c1dd | 2010-02-18 13:25:47 +0200 | [diff] [blame] | 4039 | |
| 4040 | out_sleep: |
Eliad Peller | c1b193e | 2011-03-23 22:22:15 +0200 | [diff] [blame] | 4041 | wl1271_ps_elp_sleep(wl); |
Kalle Valo | c6999d8 | 2010-02-18 13:25:41 +0200 | [diff] [blame] | 4042 | |
| 4043 | out: |
| 4044 | mutex_unlock(&wl->mutex); |
| 4045 | |
| 4046 | return ret; |
| 4047 | } |
| 4048 | |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 4049 | static u64 wl1271_op_get_tsf(struct ieee80211_hw *hw, |
| 4050 | struct ieee80211_vif *vif) |
Juuso Oikarinen | bbbb538 | 2010-07-08 17:49:57 +0300 | [diff] [blame] | 4051 | { |
| 4052 | |
| 4053 | struct wl1271 *wl = hw->priv; |
| 4054 | u64 mactime = ULLONG_MAX; |
| 4055 | int ret; |
| 4056 | |
| 4057 | wl1271_debug(DEBUG_MAC80211, "mac80211 get tsf"); |
| 4058 | |
| 4059 | mutex_lock(&wl->mutex); |
| 4060 | |
Juuso Oikarinen | f8d9802 | 2010-10-26 13:24:39 +0200 | [diff] [blame] | 4061 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
| 4062 | goto out; |
| 4063 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 4064 | ret = wl1271_ps_elp_wakeup(wl); |
Juuso Oikarinen | bbbb538 | 2010-07-08 17:49:57 +0300 | [diff] [blame] | 4065 | if (ret < 0) |
| 4066 | goto out; |
| 4067 | |
| 4068 | ret = wl1271_acx_tsf_info(wl, &mactime); |
| 4069 | if (ret < 0) |
| 4070 | goto out_sleep; |
| 4071 | |
| 4072 | out_sleep: |
| 4073 | wl1271_ps_elp_sleep(wl); |
| 4074 | |
| 4075 | out: |
| 4076 | mutex_unlock(&wl->mutex); |
| 4077 | return mactime; |
| 4078 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4079 | |
John W. Linville | ece550d | 2010-07-28 16:41:06 -0400 | [diff] [blame] | 4080 | static int wl1271_op_get_survey(struct ieee80211_hw *hw, int idx, |
| 4081 | struct survey_info *survey) |
| 4082 | { |
| 4083 | struct wl1271 *wl = hw->priv; |
| 4084 | struct ieee80211_conf *conf = &hw->conf; |
Juuso Oikarinen | b739a42 | 2010-10-26 13:24:38 +0200 | [diff] [blame] | 4085 | |
John W. Linville | ece550d | 2010-07-28 16:41:06 -0400 | [diff] [blame] | 4086 | if (idx != 0) |
| 4087 | return -ENOENT; |
Juuso Oikarinen | b739a42 | 2010-10-26 13:24:38 +0200 | [diff] [blame] | 4088 | |
John W. Linville | ece550d | 2010-07-28 16:41:06 -0400 | [diff] [blame] | 4089 | survey->channel = conf->channel; |
| 4090 | survey->filled = SURVEY_INFO_NOISE_DBM; |
| 4091 | survey->noise = wl->noise; |
Juuso Oikarinen | b739a42 | 2010-10-26 13:24:38 +0200 | [diff] [blame] | 4092 | |
John W. Linville | ece550d | 2010-07-28 16:41:06 -0400 | [diff] [blame] | 4093 | return 0; |
| 4094 | } |
| 4095 | |
Arik Nemtsov | 409622e | 2011-02-23 00:22:29 +0200 | [diff] [blame] | 4096 | static int wl1271_allocate_sta(struct wl1271 *wl, |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4097 | struct wl12xx_vif *wlvif, |
| 4098 | struct ieee80211_sta *sta) |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4099 | { |
| 4100 | struct wl1271_station *wl_sta; |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4101 | int ret; |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4102 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4103 | |
| 4104 | if (wl->active_sta_count >= AP_MAX_STATIONS) { |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4105 | wl1271_warning("could not allocate HLID - too much stations"); |
| 4106 | return -EBUSY; |
| 4107 | } |
| 4108 | |
| 4109 | wl_sta = (struct wl1271_station *)sta->drv_priv; |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4110 | ret = wl12xx_allocate_link(wl, wlvif, &wl_sta->hlid); |
| 4111 | if (ret < 0) { |
| 4112 | wl1271_warning("could not allocate HLID - too many links"); |
| 4113 | return -EBUSY; |
| 4114 | } |
| 4115 | |
| 4116 | set_bit(wl_sta->hlid, wlvif->ap.sta_hlid_map); |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 4117 | memcpy(wl->links[wl_sta->hlid].addr, sta->addr, ETH_ALEN); |
Arik Nemtsov | da03209 | 2011-08-25 12:43:15 +0300 | [diff] [blame] | 4118 | wl->active_sta_count++; |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4119 | return 0; |
| 4120 | } |
| 4121 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4122 | void wl1271_free_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 hlid) |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4123 | { |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4124 | if (!test_bit(hlid, wlvif->ap.sta_hlid_map)) |
Arik Nemtsov | f1acea9 | 2011-08-25 12:43:17 +0300 | [diff] [blame] | 4125 | return; |
| 4126 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4127 | clear_bit(hlid, wlvif->ap.sta_hlid_map); |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 4128 | memset(wl->links[hlid].addr, 0, ETH_ALEN); |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 4129 | wl->links[hlid].ba_bitmap = 0; |
Arik Nemtsov | a8c0ddb | 2011-02-23 00:22:26 +0200 | [diff] [blame] | 4130 | wl1271_tx_reset_link_queues(wl, hlid); |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 4131 | __clear_bit(hlid, &wl->ap_ps_map); |
| 4132 | __clear_bit(hlid, (unsigned long *)&wl->ap_fw_ps_map); |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4133 | wl12xx_free_link(wl, wlvif, &hlid); |
Arik Nemtsov | da03209 | 2011-08-25 12:43:15 +0300 | [diff] [blame] | 4134 | wl->active_sta_count--; |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4135 | } |
| 4136 | |
| 4137 | static int wl1271_op_sta_add(struct ieee80211_hw *hw, |
| 4138 | struct ieee80211_vif *vif, |
| 4139 | struct ieee80211_sta *sta) |
| 4140 | { |
| 4141 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 4142 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4143 | struct wl1271_station *wl_sta; |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4144 | int ret = 0; |
| 4145 | u8 hlid; |
| 4146 | |
| 4147 | mutex_lock(&wl->mutex); |
| 4148 | |
| 4149 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
| 4150 | goto out; |
| 4151 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 4152 | if (wlvif->bss_type != BSS_TYPE_AP_BSS) |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4153 | goto out; |
| 4154 | |
| 4155 | wl1271_debug(DEBUG_MAC80211, "mac80211 add sta %d", (int)sta->aid); |
| 4156 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4157 | ret = wl1271_allocate_sta(wl, wlvif, sta); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4158 | if (ret < 0) |
| 4159 | goto out; |
| 4160 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4161 | wl_sta = (struct wl1271_station *)sta->drv_priv; |
| 4162 | hlid = wl_sta->hlid; |
| 4163 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 4164 | ret = wl1271_ps_elp_wakeup(wl); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4165 | if (ret < 0) |
Arik Nemtsov | 409622e | 2011-02-23 00:22:29 +0200 | [diff] [blame] | 4166 | goto out_free_sta; |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4167 | |
Eliad Peller | 1b92f15 | 2011-10-10 10:13:09 +0200 | [diff] [blame] | 4168 | ret = wl12xx_cmd_add_peer(wl, wlvif, sta, hlid); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4169 | if (ret < 0) |
| 4170 | goto out_sleep; |
| 4171 | |
Eliad Peller | b67476e | 2011-08-14 13:17:23 +0300 | [diff] [blame] | 4172 | ret = wl12xx_cmd_set_peer_state(wl, hlid); |
| 4173 | if (ret < 0) |
| 4174 | goto out_sleep; |
| 4175 | |
Arik Nemtsov | 0b932ab | 2011-08-14 13:17:27 +0300 | [diff] [blame] | 4176 | ret = wl1271_acx_set_ht_capabilities(wl, &sta->ht_cap, true, hlid); |
| 4177 | if (ret < 0) |
| 4178 | goto out_sleep; |
| 4179 | |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4180 | out_sleep: |
| 4181 | wl1271_ps_elp_sleep(wl); |
| 4182 | |
Arik Nemtsov | 409622e | 2011-02-23 00:22:29 +0200 | [diff] [blame] | 4183 | out_free_sta: |
| 4184 | if (ret < 0) |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4185 | wl1271_free_sta(wl, wlvif, hlid); |
Arik Nemtsov | 409622e | 2011-02-23 00:22:29 +0200 | [diff] [blame] | 4186 | |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4187 | out: |
| 4188 | mutex_unlock(&wl->mutex); |
| 4189 | return ret; |
| 4190 | } |
| 4191 | |
| 4192 | static int wl1271_op_sta_remove(struct ieee80211_hw *hw, |
| 4193 | struct ieee80211_vif *vif, |
| 4194 | struct ieee80211_sta *sta) |
| 4195 | { |
| 4196 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 4197 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4198 | struct wl1271_station *wl_sta; |
| 4199 | int ret = 0, id; |
| 4200 | |
| 4201 | mutex_lock(&wl->mutex); |
| 4202 | |
| 4203 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
| 4204 | goto out; |
| 4205 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 4206 | if (wlvif->bss_type != BSS_TYPE_AP_BSS) |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4207 | goto out; |
| 4208 | |
| 4209 | wl1271_debug(DEBUG_MAC80211, "mac80211 remove sta %d", (int)sta->aid); |
| 4210 | |
| 4211 | wl_sta = (struct wl1271_station *)sta->drv_priv; |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4212 | id = wl_sta->hlid; |
| 4213 | if (WARN_ON(!test_bit(id, wlvif->ap.sta_hlid_map))) |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4214 | goto out; |
| 4215 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 4216 | ret = wl1271_ps_elp_wakeup(wl); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4217 | if (ret < 0) |
| 4218 | goto out; |
| 4219 | |
Eliad Peller | c690ec8 | 2011-08-14 13:17:07 +0300 | [diff] [blame] | 4220 | ret = wl12xx_cmd_remove_peer(wl, wl_sta->hlid); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4221 | if (ret < 0) |
| 4222 | goto out_sleep; |
| 4223 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 4224 | wl1271_free_sta(wl, wlvif, wl_sta->hlid); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4225 | |
| 4226 | out_sleep: |
| 4227 | wl1271_ps_elp_sleep(wl); |
| 4228 | |
| 4229 | out: |
| 4230 | mutex_unlock(&wl->mutex); |
| 4231 | return ret; |
| 4232 | } |
| 4233 | |
Luciano Coelho | 4623ec7 | 2011-03-21 19:26:41 +0200 | [diff] [blame] | 4234 | static int wl1271_op_ampdu_action(struct ieee80211_hw *hw, |
| 4235 | struct ieee80211_vif *vif, |
| 4236 | enum ieee80211_ampdu_mlme_action action, |
| 4237 | struct ieee80211_sta *sta, u16 tid, u16 *ssn, |
| 4238 | u8 buf_size) |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4239 | { |
| 4240 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 4241 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4242 | int ret; |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 4243 | u8 hlid, *ba_bitmap; |
| 4244 | |
| 4245 | wl1271_debug(DEBUG_MAC80211, "mac80211 ampdu action %d tid %d", action, |
| 4246 | tid); |
| 4247 | |
| 4248 | /* sanity check - the fields in FW are only 8bits wide */ |
| 4249 | if (WARN_ON(tid > 0xFF)) |
| 4250 | return -ENOTSUPP; |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4251 | |
| 4252 | mutex_lock(&wl->mutex); |
| 4253 | |
| 4254 | if (unlikely(wl->state == WL1271_STATE_OFF)) { |
| 4255 | ret = -EAGAIN; |
| 4256 | goto out; |
| 4257 | } |
| 4258 | |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 4259 | if (wlvif->bss_type == BSS_TYPE_STA_BSS) { |
Eliad Peller | 154da67 | 2011-10-05 11:55:53 +0200 | [diff] [blame] | 4260 | hlid = wlvif->sta.hlid; |
Eliad Peller | d0802ab | 2011-10-05 11:56:04 +0200 | [diff] [blame] | 4261 | ba_bitmap = &wlvif->sta.ba_rx_bitmap; |
Eliad Peller | 536129c | 2011-10-05 11:55:45 +0200 | [diff] [blame] | 4262 | } else if (wlvif->bss_type == BSS_TYPE_AP_BSS) { |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 4263 | struct wl1271_station *wl_sta; |
| 4264 | |
| 4265 | wl_sta = (struct wl1271_station *)sta->drv_priv; |
| 4266 | hlid = wl_sta->hlid; |
| 4267 | ba_bitmap = &wl->links[hlid].ba_bitmap; |
| 4268 | } else { |
| 4269 | ret = -EINVAL; |
| 4270 | goto out; |
| 4271 | } |
| 4272 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 4273 | ret = wl1271_ps_elp_wakeup(wl); |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4274 | if (ret < 0) |
| 4275 | goto out; |
| 4276 | |
Shahar Levi | 70559a0 | 2011-05-22 16:10:22 +0300 | [diff] [blame] | 4277 | wl1271_debug(DEBUG_MAC80211, "mac80211 ampdu: Rx tid %d action %d", |
| 4278 | tid, action); |
| 4279 | |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4280 | switch (action) { |
| 4281 | case IEEE80211_AMPDU_RX_START: |
Eliad Peller | d0802ab | 2011-10-05 11:56:04 +0200 | [diff] [blame] | 4282 | if (!wlvif->ba_support || !wlvif->ba_allowed) { |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4283 | ret = -ENOTSUPP; |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 4284 | break; |
| 4285 | } |
| 4286 | |
| 4287 | if (wl->ba_rx_session_count >= RX_BA_MAX_SESSIONS) { |
| 4288 | ret = -EBUSY; |
| 4289 | wl1271_error("exceeded max RX BA sessions"); |
| 4290 | break; |
| 4291 | } |
| 4292 | |
| 4293 | if (*ba_bitmap & BIT(tid)) { |
| 4294 | ret = -EINVAL; |
| 4295 | wl1271_error("cannot enable RX BA session on active " |
| 4296 | "tid: %d", tid); |
| 4297 | break; |
| 4298 | } |
| 4299 | |
| 4300 | ret = wl12xx_acx_set_ba_receiver_session(wl, tid, *ssn, true, |
| 4301 | hlid); |
| 4302 | if (!ret) { |
| 4303 | *ba_bitmap |= BIT(tid); |
| 4304 | wl->ba_rx_session_count++; |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4305 | } |
| 4306 | break; |
| 4307 | |
| 4308 | case IEEE80211_AMPDU_RX_STOP: |
Arik Nemtsov | 0f9c825 | 2011-08-17 10:45:49 +0300 | [diff] [blame] | 4309 | if (!(*ba_bitmap & BIT(tid))) { |
| 4310 | ret = -EINVAL; |
| 4311 | wl1271_error("no active RX BA session on tid: %d", |
| 4312 | tid); |
| 4313 | break; |
| 4314 | } |
| 4315 | |
| 4316 | ret = wl12xx_acx_set_ba_receiver_session(wl, tid, 0, false, |
| 4317 | hlid); |
| 4318 | if (!ret) { |
| 4319 | *ba_bitmap &= ~BIT(tid); |
| 4320 | wl->ba_rx_session_count--; |
| 4321 | } |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4322 | break; |
| 4323 | |
| 4324 | /* |
| 4325 | * The BA initiator session management in FW independently. |
| 4326 | * Falling break here on purpose for all TX APDU commands. |
| 4327 | */ |
| 4328 | case IEEE80211_AMPDU_TX_START: |
| 4329 | case IEEE80211_AMPDU_TX_STOP: |
| 4330 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
| 4331 | ret = -EINVAL; |
| 4332 | break; |
| 4333 | |
| 4334 | default: |
| 4335 | wl1271_error("Incorrect ampdu action id=%x\n", action); |
| 4336 | ret = -EINVAL; |
| 4337 | } |
| 4338 | |
| 4339 | wl1271_ps_elp_sleep(wl); |
| 4340 | |
| 4341 | out: |
| 4342 | mutex_unlock(&wl->mutex); |
| 4343 | |
| 4344 | return ret; |
| 4345 | } |
| 4346 | |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 4347 | static int wl12xx_set_bitrate_mask(struct ieee80211_hw *hw, |
| 4348 | struct ieee80211_vif *vif, |
| 4349 | const struct cfg80211_bitrate_mask *mask) |
| 4350 | { |
Eliad Peller | 8358750 | 2011-10-10 10:12:53 +0200 | [diff] [blame] | 4351 | struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif); |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 4352 | struct wl1271 *wl = hw->priv; |
| 4353 | int i; |
| 4354 | |
| 4355 | wl1271_debug(DEBUG_MAC80211, "mac80211 set_bitrate_mask 0x%x 0x%x", |
| 4356 | mask->control[NL80211_BAND_2GHZ].legacy, |
| 4357 | mask->control[NL80211_BAND_5GHZ].legacy); |
| 4358 | |
| 4359 | mutex_lock(&wl->mutex); |
| 4360 | |
| 4361 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) |
Eliad Peller | 8358750 | 2011-10-10 10:12:53 +0200 | [diff] [blame] | 4362 | wlvif->bitrate_masks[i] = |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 4363 | wl1271_tx_enabled_rates_get(wl, |
| 4364 | mask->control[i].legacy, |
| 4365 | i); |
| 4366 | mutex_unlock(&wl->mutex); |
| 4367 | |
| 4368 | return 0; |
| 4369 | } |
| 4370 | |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 4371 | static void wl12xx_op_channel_switch(struct ieee80211_hw *hw, |
| 4372 | struct ieee80211_channel_switch *ch_switch) |
| 4373 | { |
| 4374 | struct wl1271 *wl = hw->priv; |
Eliad Peller | 52630c5 | 2011-10-10 10:13:08 +0200 | [diff] [blame] | 4375 | struct wl12xx_vif *wlvif; |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 4376 | int ret; |
| 4377 | |
| 4378 | wl1271_debug(DEBUG_MAC80211, "mac80211 channel switch"); |
| 4379 | |
| 4380 | mutex_lock(&wl->mutex); |
| 4381 | |
| 4382 | if (unlikely(wl->state == WL1271_STATE_OFF)) { |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 4383 | wl12xx_for_each_wlvif_sta(wl, wlvif) { |
| 4384 | struct ieee80211_vif *vif = wl12xx_wlvif_to_vif(wlvif); |
| 4385 | ieee80211_chswitch_done(vif, false); |
| 4386 | } |
| 4387 | goto out; |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 4388 | } |
| 4389 | |
| 4390 | ret = wl1271_ps_elp_wakeup(wl); |
| 4391 | if (ret < 0) |
| 4392 | goto out; |
| 4393 | |
Eliad Peller | 52630c5 | 2011-10-10 10:13:08 +0200 | [diff] [blame] | 4394 | /* TODO: change mac80211 to pass vif as param */ |
| 4395 | wl12xx_for_each_wlvif_sta(wl, wlvif) { |
| 4396 | ret = wl12xx_cmd_channel_switch(wl, ch_switch); |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 4397 | |
Eliad Peller | 52630c5 | 2011-10-10 10:13:08 +0200 | [diff] [blame] | 4398 | if (!ret) |
| 4399 | set_bit(WLVIF_FLAG_CS_PROGRESS, &wlvif->flags); |
| 4400 | } |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 4401 | |
| 4402 | wl1271_ps_elp_sleep(wl); |
| 4403 | |
| 4404 | out: |
| 4405 | mutex_unlock(&wl->mutex); |
| 4406 | } |
| 4407 | |
Arik Nemtsov | 3343789 | 2011-04-26 23:35:39 +0300 | [diff] [blame] | 4408 | static bool wl1271_tx_frames_pending(struct ieee80211_hw *hw) |
| 4409 | { |
| 4410 | struct wl1271 *wl = hw->priv; |
| 4411 | bool ret = false; |
| 4412 | |
| 4413 | mutex_lock(&wl->mutex); |
| 4414 | |
| 4415 | if (unlikely(wl->state == WL1271_STATE_OFF)) |
| 4416 | goto out; |
| 4417 | |
| 4418 | /* packets are considered pending if in the TX queue or the FW */ |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 4419 | ret = (wl1271_tx_total_queue_count(wl) > 0) || (wl->tx_frames_cnt > 0); |
Arik Nemtsov | 3343789 | 2011-04-26 23:35:39 +0300 | [diff] [blame] | 4420 | out: |
| 4421 | mutex_unlock(&wl->mutex); |
| 4422 | |
| 4423 | return ret; |
| 4424 | } |
| 4425 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4426 | /* can't be const, mac80211 writes to this */ |
| 4427 | static struct ieee80211_rate wl1271_rates[] = { |
| 4428 | { .bitrate = 10, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4429 | .hw_value = CONF_HW_BIT_RATE_1MBPS, |
| 4430 | .hw_value_short = CONF_HW_BIT_RATE_1MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4431 | { .bitrate = 20, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4432 | .hw_value = CONF_HW_BIT_RATE_2MBPS, |
| 4433 | .hw_value_short = CONF_HW_BIT_RATE_2MBPS, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4434 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 4435 | { .bitrate = 55, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4436 | .hw_value = CONF_HW_BIT_RATE_5_5MBPS, |
| 4437 | .hw_value_short = CONF_HW_BIT_RATE_5_5MBPS, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4438 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 4439 | { .bitrate = 110, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4440 | .hw_value = CONF_HW_BIT_RATE_11MBPS, |
| 4441 | .hw_value_short = CONF_HW_BIT_RATE_11MBPS, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4442 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 4443 | { .bitrate = 60, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4444 | .hw_value = CONF_HW_BIT_RATE_6MBPS, |
| 4445 | .hw_value_short = CONF_HW_BIT_RATE_6MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4446 | { .bitrate = 90, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4447 | .hw_value = CONF_HW_BIT_RATE_9MBPS, |
| 4448 | .hw_value_short = CONF_HW_BIT_RATE_9MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4449 | { .bitrate = 120, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4450 | .hw_value = CONF_HW_BIT_RATE_12MBPS, |
| 4451 | .hw_value_short = CONF_HW_BIT_RATE_12MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4452 | { .bitrate = 180, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4453 | .hw_value = CONF_HW_BIT_RATE_18MBPS, |
| 4454 | .hw_value_short = CONF_HW_BIT_RATE_18MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4455 | { .bitrate = 240, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4456 | .hw_value = CONF_HW_BIT_RATE_24MBPS, |
| 4457 | .hw_value_short = CONF_HW_BIT_RATE_24MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4458 | { .bitrate = 360, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4459 | .hw_value = CONF_HW_BIT_RATE_36MBPS, |
| 4460 | .hw_value_short = CONF_HW_BIT_RATE_36MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4461 | { .bitrate = 480, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4462 | .hw_value = CONF_HW_BIT_RATE_48MBPS, |
| 4463 | .hw_value_short = CONF_HW_BIT_RATE_48MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4464 | { .bitrate = 540, |
Juuso Oikarinen | 2b60100b | 2009-10-13 12:47:39 +0300 | [diff] [blame] | 4465 | .hw_value = CONF_HW_BIT_RATE_54MBPS, |
| 4466 | .hw_value_short = CONF_HW_BIT_RATE_54MBPS, }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4467 | }; |
| 4468 | |
Juuso Oikarinen | fa97f46 | 2010-11-10 11:27:20 +0100 | [diff] [blame] | 4469 | /* can't be const, mac80211 writes to this */ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4470 | static struct ieee80211_channel wl1271_channels[] = { |
Luciano Coelho | a2d0e3f | 2009-12-11 15:40:46 +0200 | [diff] [blame] | 4471 | { .hw_value = 1, .center_freq = 2412, .max_power = 25 }, |
Juuso Oikarinen | fa21c7a | 2010-08-10 08:22:02 +0200 | [diff] [blame] | 4472 | { .hw_value = 2, .center_freq = 2417, .max_power = 25 }, |
Juuso Oikarinen | fa97f46 | 2010-11-10 11:27:20 +0100 | [diff] [blame] | 4473 | { .hw_value = 3, .center_freq = 2422, .max_power = 25 }, |
| 4474 | { .hw_value = 4, .center_freq = 2427, .max_power = 25 }, |
| 4475 | { .hw_value = 5, .center_freq = 2432, .max_power = 25 }, |
Juuso Oikarinen | fa21c7a | 2010-08-10 08:22:02 +0200 | [diff] [blame] | 4476 | { .hw_value = 6, .center_freq = 2437, .max_power = 25 }, |
Juuso Oikarinen | fa97f46 | 2010-11-10 11:27:20 +0100 | [diff] [blame] | 4477 | { .hw_value = 7, .center_freq = 2442, .max_power = 25 }, |
| 4478 | { .hw_value = 8, .center_freq = 2447, .max_power = 25 }, |
| 4479 | { .hw_value = 9, .center_freq = 2452, .max_power = 25 }, |
Juuso Oikarinen | fa21c7a | 2010-08-10 08:22:02 +0200 | [diff] [blame] | 4480 | { .hw_value = 10, .center_freq = 2457, .max_power = 25 }, |
Juuso Oikarinen | fa97f46 | 2010-11-10 11:27:20 +0100 | [diff] [blame] | 4481 | { .hw_value = 11, .center_freq = 2462, .max_power = 25 }, |
| 4482 | { .hw_value = 12, .center_freq = 2467, .max_power = 25 }, |
| 4483 | { .hw_value = 13, .center_freq = 2472, .max_power = 25 }, |
Arik Nemtsov | 6c89b7b | 2011-01-18 20:39:52 +0100 | [diff] [blame] | 4484 | { .hw_value = 14, .center_freq = 2484, .max_power = 25 }, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4485 | }; |
| 4486 | |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4487 | /* mapping to indexes for wl1271_rates */ |
Tobias Klauser | a0ea949 | 2010-05-20 10:38:11 +0200 | [diff] [blame] | 4488 | static const u8 wl1271_rate_to_idx_2ghz[] = { |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4489 | /* MCS rates are used only with 11n */ |
Shahar Levi | 1835785 | 2010-10-13 16:09:41 +0200 | [diff] [blame] | 4490 | 7, /* CONF_HW_RXTX_RATE_MCS7 */ |
| 4491 | 6, /* CONF_HW_RXTX_RATE_MCS6 */ |
| 4492 | 5, /* CONF_HW_RXTX_RATE_MCS5 */ |
| 4493 | 4, /* CONF_HW_RXTX_RATE_MCS4 */ |
| 4494 | 3, /* CONF_HW_RXTX_RATE_MCS3 */ |
| 4495 | 2, /* CONF_HW_RXTX_RATE_MCS2 */ |
| 4496 | 1, /* CONF_HW_RXTX_RATE_MCS1 */ |
| 4497 | 0, /* CONF_HW_RXTX_RATE_MCS0 */ |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4498 | |
| 4499 | 11, /* CONF_HW_RXTX_RATE_54 */ |
| 4500 | 10, /* CONF_HW_RXTX_RATE_48 */ |
| 4501 | 9, /* CONF_HW_RXTX_RATE_36 */ |
| 4502 | 8, /* CONF_HW_RXTX_RATE_24 */ |
| 4503 | |
| 4504 | /* TI-specific rate */ |
| 4505 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_22 */ |
| 4506 | |
| 4507 | 7, /* CONF_HW_RXTX_RATE_18 */ |
| 4508 | 6, /* CONF_HW_RXTX_RATE_12 */ |
| 4509 | 3, /* CONF_HW_RXTX_RATE_11 */ |
| 4510 | 5, /* CONF_HW_RXTX_RATE_9 */ |
| 4511 | 4, /* CONF_HW_RXTX_RATE_6 */ |
| 4512 | 2, /* CONF_HW_RXTX_RATE_5_5 */ |
| 4513 | 1, /* CONF_HW_RXTX_RATE_2 */ |
| 4514 | 0 /* CONF_HW_RXTX_RATE_1 */ |
| 4515 | }; |
| 4516 | |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 4517 | /* 11n STA capabilities */ |
| 4518 | #define HW_RX_HIGHEST_RATE 72 |
| 4519 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 4520 | #define WL12XX_HT_CAP { \ |
Shahar Levi | 871d0c3 | 2011-03-13 11:24:40 +0200 | [diff] [blame] | 4521 | .cap = IEEE80211_HT_CAP_GRN_FLD | IEEE80211_HT_CAP_SGI_20 | \ |
| 4522 | (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT), \ |
Shahar Levi | e8b03a2 | 2010-10-13 16:09:39 +0200 | [diff] [blame] | 4523 | .ht_supported = true, \ |
| 4524 | .ampdu_factor = IEEE80211_HT_MAX_AMPDU_8K, \ |
| 4525 | .ampdu_density = IEEE80211_HT_MPDU_DENSITY_8, \ |
| 4526 | .mcs = { \ |
| 4527 | .rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, \ |
| 4528 | .rx_highest = cpu_to_le16(HW_RX_HIGHEST_RATE), \ |
| 4529 | .tx_params = IEEE80211_HT_MCS_TX_DEFINED, \ |
| 4530 | }, \ |
| 4531 | } |
| 4532 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4533 | /* can't be const, mac80211 writes to this */ |
| 4534 | static struct ieee80211_supported_band wl1271_band_2ghz = { |
| 4535 | .channels = wl1271_channels, |
| 4536 | .n_channels = ARRAY_SIZE(wl1271_channels), |
| 4537 | .bitrates = wl1271_rates, |
| 4538 | .n_bitrates = ARRAY_SIZE(wl1271_rates), |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 4539 | .ht_cap = WL12XX_HT_CAP, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4540 | }; |
| 4541 | |
Teemu Paasikivi | 1ebec3d | 2009-10-13 12:47:48 +0300 | [diff] [blame] | 4542 | /* 5 GHz data rates for WL1273 */ |
| 4543 | static struct ieee80211_rate wl1271_rates_5ghz[] = { |
| 4544 | { .bitrate = 60, |
| 4545 | .hw_value = CONF_HW_BIT_RATE_6MBPS, |
| 4546 | .hw_value_short = CONF_HW_BIT_RATE_6MBPS, }, |
| 4547 | { .bitrate = 90, |
| 4548 | .hw_value = CONF_HW_BIT_RATE_9MBPS, |
| 4549 | .hw_value_short = CONF_HW_BIT_RATE_9MBPS, }, |
| 4550 | { .bitrate = 120, |
| 4551 | .hw_value = CONF_HW_BIT_RATE_12MBPS, |
| 4552 | .hw_value_short = CONF_HW_BIT_RATE_12MBPS, }, |
| 4553 | { .bitrate = 180, |
| 4554 | .hw_value = CONF_HW_BIT_RATE_18MBPS, |
| 4555 | .hw_value_short = CONF_HW_BIT_RATE_18MBPS, }, |
| 4556 | { .bitrate = 240, |
| 4557 | .hw_value = CONF_HW_BIT_RATE_24MBPS, |
| 4558 | .hw_value_short = CONF_HW_BIT_RATE_24MBPS, }, |
| 4559 | { .bitrate = 360, |
| 4560 | .hw_value = CONF_HW_BIT_RATE_36MBPS, |
| 4561 | .hw_value_short = CONF_HW_BIT_RATE_36MBPS, }, |
| 4562 | { .bitrate = 480, |
| 4563 | .hw_value = CONF_HW_BIT_RATE_48MBPS, |
| 4564 | .hw_value_short = CONF_HW_BIT_RATE_48MBPS, }, |
| 4565 | { .bitrate = 540, |
| 4566 | .hw_value = CONF_HW_BIT_RATE_54MBPS, |
| 4567 | .hw_value_short = CONF_HW_BIT_RATE_54MBPS, }, |
| 4568 | }; |
| 4569 | |
Juuso Oikarinen | fa97f46 | 2010-11-10 11:27:20 +0100 | [diff] [blame] | 4570 | /* 5 GHz band channels for WL1273 */ |
Teemu Paasikivi | 1ebec3d | 2009-10-13 12:47:48 +0300 | [diff] [blame] | 4571 | static struct ieee80211_channel wl1271_channels_5ghz[] = { |
Arik Nemtsov | 6cfa5cf | 2011-06-27 22:06:33 +0300 | [diff] [blame] | 4572 | { .hw_value = 7, .center_freq = 5035, .max_power = 25 }, |
| 4573 | { .hw_value = 8, .center_freq = 5040, .max_power = 25 }, |
| 4574 | { .hw_value = 9, .center_freq = 5045, .max_power = 25 }, |
| 4575 | { .hw_value = 11, .center_freq = 5055, .max_power = 25 }, |
| 4576 | { .hw_value = 12, .center_freq = 5060, .max_power = 25 }, |
| 4577 | { .hw_value = 16, .center_freq = 5080, .max_power = 25 }, |
| 4578 | { .hw_value = 34, .center_freq = 5170, .max_power = 25 }, |
| 4579 | { .hw_value = 36, .center_freq = 5180, .max_power = 25 }, |
| 4580 | { .hw_value = 38, .center_freq = 5190, .max_power = 25 }, |
| 4581 | { .hw_value = 40, .center_freq = 5200, .max_power = 25 }, |
| 4582 | { .hw_value = 42, .center_freq = 5210, .max_power = 25 }, |
| 4583 | { .hw_value = 44, .center_freq = 5220, .max_power = 25 }, |
| 4584 | { .hw_value = 46, .center_freq = 5230, .max_power = 25 }, |
| 4585 | { .hw_value = 48, .center_freq = 5240, .max_power = 25 }, |
| 4586 | { .hw_value = 52, .center_freq = 5260, .max_power = 25 }, |
| 4587 | { .hw_value = 56, .center_freq = 5280, .max_power = 25 }, |
| 4588 | { .hw_value = 60, .center_freq = 5300, .max_power = 25 }, |
| 4589 | { .hw_value = 64, .center_freq = 5320, .max_power = 25 }, |
| 4590 | { .hw_value = 100, .center_freq = 5500, .max_power = 25 }, |
| 4591 | { .hw_value = 104, .center_freq = 5520, .max_power = 25 }, |
| 4592 | { .hw_value = 108, .center_freq = 5540, .max_power = 25 }, |
| 4593 | { .hw_value = 112, .center_freq = 5560, .max_power = 25 }, |
| 4594 | { .hw_value = 116, .center_freq = 5580, .max_power = 25 }, |
| 4595 | { .hw_value = 120, .center_freq = 5600, .max_power = 25 }, |
| 4596 | { .hw_value = 124, .center_freq = 5620, .max_power = 25 }, |
| 4597 | { .hw_value = 128, .center_freq = 5640, .max_power = 25 }, |
| 4598 | { .hw_value = 132, .center_freq = 5660, .max_power = 25 }, |
| 4599 | { .hw_value = 136, .center_freq = 5680, .max_power = 25 }, |
| 4600 | { .hw_value = 140, .center_freq = 5700, .max_power = 25 }, |
| 4601 | { .hw_value = 149, .center_freq = 5745, .max_power = 25 }, |
| 4602 | { .hw_value = 153, .center_freq = 5765, .max_power = 25 }, |
| 4603 | { .hw_value = 157, .center_freq = 5785, .max_power = 25 }, |
| 4604 | { .hw_value = 161, .center_freq = 5805, .max_power = 25 }, |
| 4605 | { .hw_value = 165, .center_freq = 5825, .max_power = 25 }, |
Teemu Paasikivi | 1ebec3d | 2009-10-13 12:47:48 +0300 | [diff] [blame] | 4606 | }; |
| 4607 | |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4608 | /* mapping to indexes for wl1271_rates_5ghz */ |
Tobias Klauser | a0ea949 | 2010-05-20 10:38:11 +0200 | [diff] [blame] | 4609 | static const u8 wl1271_rate_to_idx_5ghz[] = { |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4610 | /* MCS rates are used only with 11n */ |
Shahar Levi | 1835785 | 2010-10-13 16:09:41 +0200 | [diff] [blame] | 4611 | 7, /* CONF_HW_RXTX_RATE_MCS7 */ |
| 4612 | 6, /* CONF_HW_RXTX_RATE_MCS6 */ |
| 4613 | 5, /* CONF_HW_RXTX_RATE_MCS5 */ |
| 4614 | 4, /* CONF_HW_RXTX_RATE_MCS4 */ |
| 4615 | 3, /* CONF_HW_RXTX_RATE_MCS3 */ |
| 4616 | 2, /* CONF_HW_RXTX_RATE_MCS2 */ |
| 4617 | 1, /* CONF_HW_RXTX_RATE_MCS1 */ |
| 4618 | 0, /* CONF_HW_RXTX_RATE_MCS0 */ |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4619 | |
| 4620 | 7, /* CONF_HW_RXTX_RATE_54 */ |
| 4621 | 6, /* CONF_HW_RXTX_RATE_48 */ |
| 4622 | 5, /* CONF_HW_RXTX_RATE_36 */ |
| 4623 | 4, /* CONF_HW_RXTX_RATE_24 */ |
| 4624 | |
| 4625 | /* TI-specific rate */ |
| 4626 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_22 */ |
| 4627 | |
| 4628 | 3, /* CONF_HW_RXTX_RATE_18 */ |
| 4629 | 2, /* CONF_HW_RXTX_RATE_12 */ |
| 4630 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_11 */ |
| 4631 | 1, /* CONF_HW_RXTX_RATE_9 */ |
| 4632 | 0, /* CONF_HW_RXTX_RATE_6 */ |
| 4633 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_5_5 */ |
| 4634 | CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_2 */ |
| 4635 | CONF_HW_RXTX_RATE_UNSUPPORTED /* CONF_HW_RXTX_RATE_1 */ |
| 4636 | }; |
Teemu Paasikivi | 1ebec3d | 2009-10-13 12:47:48 +0300 | [diff] [blame] | 4637 | |
| 4638 | static struct ieee80211_supported_band wl1271_band_5ghz = { |
| 4639 | .channels = wl1271_channels_5ghz, |
| 4640 | .n_channels = ARRAY_SIZE(wl1271_channels_5ghz), |
| 4641 | .bitrates = wl1271_rates_5ghz, |
| 4642 | .n_bitrates = ARRAY_SIZE(wl1271_rates_5ghz), |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 4643 | .ht_cap = WL12XX_HT_CAP, |
Teemu Paasikivi | 1ebec3d | 2009-10-13 12:47:48 +0300 | [diff] [blame] | 4644 | }; |
| 4645 | |
Tobias Klauser | a0ea949 | 2010-05-20 10:38:11 +0200 | [diff] [blame] | 4646 | static const u8 *wl1271_band_rate_to_idx[] = { |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4647 | [IEEE80211_BAND_2GHZ] = wl1271_rate_to_idx_2ghz, |
| 4648 | [IEEE80211_BAND_5GHZ] = wl1271_rate_to_idx_5ghz |
| 4649 | }; |
| 4650 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4651 | static const struct ieee80211_ops wl1271_ops = { |
| 4652 | .start = wl1271_op_start, |
| 4653 | .stop = wl1271_op_stop, |
| 4654 | .add_interface = wl1271_op_add_interface, |
| 4655 | .remove_interface = wl1271_op_remove_interface, |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 4656 | #ifdef CONFIG_PM |
Eliad Peller | 402e4861 | 2011-05-13 11:57:09 +0300 | [diff] [blame] | 4657 | .suspend = wl1271_op_suspend, |
| 4658 | .resume = wl1271_op_resume, |
Luciano Coelho | f634a4e | 2011-05-18 16:51:26 -0400 | [diff] [blame] | 4659 | #endif |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4660 | .config = wl1271_op_config, |
Juuso Oikarinen | c87dec9 | 2009-10-08 21:56:31 +0300 | [diff] [blame] | 4661 | .prepare_multicast = wl1271_op_prepare_multicast, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4662 | .configure_filter = wl1271_op_configure_filter, |
| 4663 | .tx = wl1271_op_tx, |
| 4664 | .set_key = wl1271_op_set_key, |
| 4665 | .hw_scan = wl1271_op_hw_scan, |
Eliad Peller | 73ecce3 | 2011-06-27 13:06:45 +0300 | [diff] [blame] | 4666 | .cancel_hw_scan = wl1271_op_cancel_hw_scan, |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 4667 | .sched_scan_start = wl1271_op_sched_scan_start, |
| 4668 | .sched_scan_stop = wl1271_op_sched_scan_stop, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4669 | .bss_info_changed = wl1271_op_bss_info_changed, |
Arik Nemtsov | 68d069c | 2010-11-08 10:51:07 +0100 | [diff] [blame] | 4670 | .set_frag_threshold = wl1271_op_set_frag_threshold, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4671 | .set_rts_threshold = wl1271_op_set_rts_threshold, |
Kalle Valo | c6999d8 | 2010-02-18 13:25:41 +0200 | [diff] [blame] | 4672 | .conf_tx = wl1271_op_conf_tx, |
Juuso Oikarinen | bbbb538 | 2010-07-08 17:49:57 +0300 | [diff] [blame] | 4673 | .get_tsf = wl1271_op_get_tsf, |
John W. Linville | ece550d | 2010-07-28 16:41:06 -0400 | [diff] [blame] | 4674 | .get_survey = wl1271_op_get_survey, |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4675 | .sta_add = wl1271_op_sta_add, |
| 4676 | .sta_remove = wl1271_op_sta_remove, |
Levi, Shahar | bbba3e6 | 2011-01-23 07:27:23 +0100 | [diff] [blame] | 4677 | .ampdu_action = wl1271_op_ampdu_action, |
Arik Nemtsov | 3343789 | 2011-04-26 23:35:39 +0300 | [diff] [blame] | 4678 | .tx_frames_pending = wl1271_tx_frames_pending, |
Eliad Peller | af7fbb2 | 2011-09-19 13:51:42 +0300 | [diff] [blame] | 4679 | .set_bitrate_mask = wl12xx_set_bitrate_mask, |
Shahar Levi | 6d158ff | 2011-09-08 13:01:33 +0300 | [diff] [blame] | 4680 | .channel_switch = wl12xx_op_channel_switch, |
Kalle Valo | c8c9087 | 2010-02-18 13:25:53 +0200 | [diff] [blame] | 4681 | CFG80211_TESTMODE_CMD(wl1271_tm_cmd) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4682 | }; |
| 4683 | |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4684 | |
Teemu Paasikivi | 6a2de93 | 2010-10-14 11:00:04 +0200 | [diff] [blame] | 4685 | u8 wl1271_rate_to_idx(int rate, enum ieee80211_band band) |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4686 | { |
| 4687 | u8 idx; |
| 4688 | |
Teemu Paasikivi | 6a2de93 | 2010-10-14 11:00:04 +0200 | [diff] [blame] | 4689 | BUG_ON(band >= sizeof(wl1271_band_rate_to_idx)/sizeof(u8 *)); |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4690 | |
| 4691 | if (unlikely(rate >= CONF_HW_RXTX_RATE_MAX)) { |
| 4692 | wl1271_error("Illegal RX rate from HW: %d", rate); |
| 4693 | return 0; |
| 4694 | } |
| 4695 | |
Teemu Paasikivi | 6a2de93 | 2010-10-14 11:00:04 +0200 | [diff] [blame] | 4696 | idx = wl1271_band_rate_to_idx[band][rate]; |
Juuso Oikarinen | f876bb9 | 2010-03-26 12:53:11 +0200 | [diff] [blame] | 4697 | if (unlikely(idx == CONF_HW_RXTX_RATE_UNSUPPORTED)) { |
| 4698 | wl1271_error("Unsupported RX rate from HW: %d", rate); |
| 4699 | return 0; |
| 4700 | } |
| 4701 | |
| 4702 | return idx; |
| 4703 | } |
| 4704 | |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 4705 | static ssize_t wl1271_sysfs_show_bt_coex_state(struct device *dev, |
| 4706 | struct device_attribute *attr, |
| 4707 | char *buf) |
| 4708 | { |
| 4709 | struct wl1271 *wl = dev_get_drvdata(dev); |
| 4710 | ssize_t len; |
| 4711 | |
Juuso Oikarinen | 2f63b01 | 2010-08-10 06:38:35 +0200 | [diff] [blame] | 4712 | len = PAGE_SIZE; |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 4713 | |
| 4714 | mutex_lock(&wl->mutex); |
| 4715 | len = snprintf(buf, len, "%d\n\n0 - off\n1 - on\n", |
| 4716 | wl->sg_enabled); |
| 4717 | mutex_unlock(&wl->mutex); |
| 4718 | |
| 4719 | return len; |
| 4720 | |
| 4721 | } |
| 4722 | |
| 4723 | static ssize_t wl1271_sysfs_store_bt_coex_state(struct device *dev, |
| 4724 | struct device_attribute *attr, |
| 4725 | const char *buf, size_t count) |
| 4726 | { |
| 4727 | struct wl1271 *wl = dev_get_drvdata(dev); |
| 4728 | unsigned long res; |
| 4729 | int ret; |
| 4730 | |
Luciano Coelho | 6277ed6 | 2011-04-01 17:49:54 +0300 | [diff] [blame] | 4731 | ret = kstrtoul(buf, 10, &res); |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 4732 | if (ret < 0) { |
| 4733 | wl1271_warning("incorrect value written to bt_coex_mode"); |
| 4734 | return count; |
| 4735 | } |
| 4736 | |
| 4737 | mutex_lock(&wl->mutex); |
| 4738 | |
| 4739 | res = !!res; |
| 4740 | |
| 4741 | if (res == wl->sg_enabled) |
| 4742 | goto out; |
| 4743 | |
| 4744 | wl->sg_enabled = res; |
| 4745 | |
| 4746 | if (wl->state == WL1271_STATE_OFF) |
| 4747 | goto out; |
| 4748 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 4749 | ret = wl1271_ps_elp_wakeup(wl); |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 4750 | if (ret < 0) |
| 4751 | goto out; |
| 4752 | |
| 4753 | wl1271_acx_sg_enable(wl, wl->sg_enabled); |
| 4754 | wl1271_ps_elp_sleep(wl); |
| 4755 | |
| 4756 | out: |
| 4757 | mutex_unlock(&wl->mutex); |
| 4758 | return count; |
| 4759 | } |
| 4760 | |
| 4761 | static DEVICE_ATTR(bt_coex_state, S_IRUGO | S_IWUSR, |
| 4762 | wl1271_sysfs_show_bt_coex_state, |
| 4763 | wl1271_sysfs_store_bt_coex_state); |
| 4764 | |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 4765 | static ssize_t wl1271_sysfs_show_hw_pg_ver(struct device *dev, |
| 4766 | struct device_attribute *attr, |
| 4767 | char *buf) |
| 4768 | { |
| 4769 | struct wl1271 *wl = dev_get_drvdata(dev); |
| 4770 | ssize_t len; |
| 4771 | |
Juuso Oikarinen | 2f63b01 | 2010-08-10 06:38:35 +0200 | [diff] [blame] | 4772 | len = PAGE_SIZE; |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 4773 | |
| 4774 | mutex_lock(&wl->mutex); |
| 4775 | if (wl->hw_pg_ver >= 0) |
| 4776 | len = snprintf(buf, len, "%d\n", wl->hw_pg_ver); |
| 4777 | else |
| 4778 | len = snprintf(buf, len, "n/a\n"); |
| 4779 | mutex_unlock(&wl->mutex); |
| 4780 | |
| 4781 | return len; |
| 4782 | } |
| 4783 | |
Gery Kahn | 6f07b72 | 2011-07-18 14:21:49 +0300 | [diff] [blame] | 4784 | static DEVICE_ATTR(hw_pg_ver, S_IRUGO, |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 4785 | wl1271_sysfs_show_hw_pg_ver, NULL); |
| 4786 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 4787 | static ssize_t wl1271_sysfs_read_fwlog(struct file *filp, struct kobject *kobj, |
| 4788 | struct bin_attribute *bin_attr, |
| 4789 | char *buffer, loff_t pos, size_t count) |
| 4790 | { |
| 4791 | struct device *dev = container_of(kobj, struct device, kobj); |
| 4792 | struct wl1271 *wl = dev_get_drvdata(dev); |
| 4793 | ssize_t len; |
| 4794 | int ret; |
| 4795 | |
| 4796 | ret = mutex_lock_interruptible(&wl->mutex); |
| 4797 | if (ret < 0) |
| 4798 | return -ERESTARTSYS; |
| 4799 | |
| 4800 | /* Let only one thread read the log at a time, blocking others */ |
| 4801 | while (wl->fwlog_size == 0) { |
| 4802 | DEFINE_WAIT(wait); |
| 4803 | |
| 4804 | prepare_to_wait_exclusive(&wl->fwlog_waitq, |
| 4805 | &wait, |
| 4806 | TASK_INTERRUPTIBLE); |
| 4807 | |
| 4808 | if (wl->fwlog_size != 0) { |
| 4809 | finish_wait(&wl->fwlog_waitq, &wait); |
| 4810 | break; |
| 4811 | } |
| 4812 | |
| 4813 | mutex_unlock(&wl->mutex); |
| 4814 | |
| 4815 | schedule(); |
| 4816 | finish_wait(&wl->fwlog_waitq, &wait); |
| 4817 | |
| 4818 | if (signal_pending(current)) |
| 4819 | return -ERESTARTSYS; |
| 4820 | |
| 4821 | ret = mutex_lock_interruptible(&wl->mutex); |
| 4822 | if (ret < 0) |
| 4823 | return -ERESTARTSYS; |
| 4824 | } |
| 4825 | |
| 4826 | /* Check if the fwlog is still valid */ |
| 4827 | if (wl->fwlog_size < 0) { |
| 4828 | mutex_unlock(&wl->mutex); |
| 4829 | return 0; |
| 4830 | } |
| 4831 | |
| 4832 | /* Seeking is not supported - old logs are not kept. Disregard pos. */ |
| 4833 | len = min(count, (size_t)wl->fwlog_size); |
| 4834 | wl->fwlog_size -= len; |
| 4835 | memcpy(buffer, wl->fwlog, len); |
| 4836 | |
| 4837 | /* Make room for new messages */ |
| 4838 | memmove(wl->fwlog, wl->fwlog + len, wl->fwlog_size); |
| 4839 | |
| 4840 | mutex_unlock(&wl->mutex); |
| 4841 | |
| 4842 | return len; |
| 4843 | } |
| 4844 | |
| 4845 | static struct bin_attribute fwlog_attr = { |
| 4846 | .attr = {.name = "fwlog", .mode = S_IRUSR}, |
| 4847 | .read = wl1271_sysfs_read_fwlog, |
| 4848 | }; |
| 4849 | |
Felipe Balbi | 4b32a2c | 2011-10-06 10:46:20 +0300 | [diff] [blame^] | 4850 | static int wl1271_register_hw(struct wl1271 *wl) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4851 | { |
| 4852 | int ret; |
| 4853 | |
| 4854 | if (wl->mac80211_registered) |
| 4855 | return 0; |
| 4856 | |
Arik Nemtsov | 31d26ec | 2010-10-16 21:49:52 +0200 | [diff] [blame] | 4857 | ret = wl1271_fetch_nvs(wl); |
| 4858 | if (ret == 0) { |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 4859 | /* NOTE: The wl->nvs->nvs element must be first, in |
| 4860 | * order to simplify the casting, we assume it is at |
| 4861 | * the beginning of the wl->nvs structure. |
| 4862 | */ |
| 4863 | u8 *nvs_ptr = (u8 *)wl->nvs; |
Arik Nemtsov | 31d26ec | 2010-10-16 21:49:52 +0200 | [diff] [blame] | 4864 | |
| 4865 | wl->mac_addr[0] = nvs_ptr[11]; |
| 4866 | wl->mac_addr[1] = nvs_ptr[10]; |
| 4867 | wl->mac_addr[2] = nvs_ptr[6]; |
| 4868 | wl->mac_addr[3] = nvs_ptr[5]; |
| 4869 | wl->mac_addr[4] = nvs_ptr[4]; |
| 4870 | wl->mac_addr[5] = nvs_ptr[3]; |
| 4871 | } |
| 4872 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4873 | SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr); |
| 4874 | |
| 4875 | ret = ieee80211_register_hw(wl->hw); |
| 4876 | if (ret < 0) { |
| 4877 | wl1271_error("unable to register mac80211 hw: %d", ret); |
| 4878 | return ret; |
| 4879 | } |
| 4880 | |
| 4881 | wl->mac80211_registered = true; |
| 4882 | |
Eliad Peller | d60080a | 2010-11-24 12:53:16 +0200 | [diff] [blame] | 4883 | wl1271_debugfs_init(wl); |
| 4884 | |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 4885 | register_netdevice_notifier(&wl1271_dev_notifier); |
| 4886 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4887 | wl1271_notice("loaded"); |
| 4888 | |
| 4889 | return 0; |
| 4890 | } |
| 4891 | |
Felipe Balbi | 4b32a2c | 2011-10-06 10:46:20 +0300 | [diff] [blame^] | 4892 | static void wl1271_unregister_hw(struct wl1271 *wl) |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 4893 | { |
Juuso Oikarinen | 4ae3fa8 | 2011-01-14 12:48:46 +0100 | [diff] [blame] | 4894 | if (wl->state == WL1271_STATE_PLT) |
| 4895 | __wl1271_plt_stop(wl); |
| 4896 | |
Juuso Oikarinen | c2c192a | 2010-07-27 03:30:09 +0300 | [diff] [blame] | 4897 | unregister_netdevice_notifier(&wl1271_dev_notifier); |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 4898 | ieee80211_unregister_hw(wl->hw); |
| 4899 | wl->mac80211_registered = false; |
| 4900 | |
| 4901 | } |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 4902 | |
Felipe Balbi | 4b32a2c | 2011-10-06 10:46:20 +0300 | [diff] [blame^] | 4903 | static int wl1271_init_ieee80211(struct wl1271 *wl) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4904 | { |
Juuso Oikarinen | 7a55724 | 2010-09-27 12:42:07 +0200 | [diff] [blame] | 4905 | static const u32 cipher_suites[] = { |
| 4906 | WLAN_CIPHER_SUITE_WEP40, |
| 4907 | WLAN_CIPHER_SUITE_WEP104, |
| 4908 | WLAN_CIPHER_SUITE_TKIP, |
| 4909 | WLAN_CIPHER_SUITE_CCMP, |
| 4910 | WL1271_CIPHER_SUITE_GEM, |
| 4911 | }; |
| 4912 | |
Juuso Oikarinen | 1e2b797 | 2009-10-08 21:56:20 +0300 | [diff] [blame] | 4913 | /* The tx descriptor buffer and the TKIP space. */ |
| 4914 | wl->hw->extra_tx_headroom = WL1271_TKIP_IV_SPACE + |
| 4915 | sizeof(struct wl1271_tx_hw_descr); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4916 | |
| 4917 | /* unit us */ |
| 4918 | /* FIXME: find a proper value */ |
| 4919 | wl->hw->channel_change_time = 10000; |
Juuso Oikarinen | 50c500a | 2010-04-01 11:38:22 +0300 | [diff] [blame] | 4920 | wl->hw->max_listen_interval = wl->conf.conn.max_listen_interval; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4921 | |
| 4922 | wl->hw->flags = IEEE80211_HW_SIGNAL_DBM | |
Juuso Oikarinen | 03442a3 | 2009-11-23 23:22:14 +0200 | [diff] [blame] | 4923 | IEEE80211_HW_BEACON_FILTER | |
Juuso Oikarinen | 0a34332 | 2010-02-22 08:38:41 +0200 | [diff] [blame] | 4924 | IEEE80211_HW_SUPPORTS_PS | |
Kalle Valo | 4695dc9 | 2010-03-18 12:26:38 +0200 | [diff] [blame] | 4925 | IEEE80211_HW_SUPPORTS_UAPSD | |
Juuso Oikarinen | a9af092 | 2010-03-26 12:53:30 +0200 | [diff] [blame] | 4926 | IEEE80211_HW_HAS_RATE_CONTROL | |
Juuso Oikarinen | 00236aed | 2010-04-09 11:07:30 +0300 | [diff] [blame] | 4927 | IEEE80211_HW_CONNECTION_MONITOR | |
Eliad Peller | 62c0740 | 2011-02-02 11:20:05 +0200 | [diff] [blame] | 4928 | IEEE80211_HW_SUPPORTS_CQM_RSSI | |
Luciano Coelho | 25eaea30 | 2011-05-02 12:37:33 +0300 | [diff] [blame] | 4929 | IEEE80211_HW_REPORTS_TX_ACK_STATUS | |
Shahar Levi | fcd23b6 | 2011-05-11 12:12:56 +0300 | [diff] [blame] | 4930 | IEEE80211_HW_SPECTRUM_MGMT | |
Arik Nemtsov | 93f8c8e | 2011-08-30 09:34:01 +0300 | [diff] [blame] | 4931 | IEEE80211_HW_AP_LINK_PS | |
| 4932 | IEEE80211_HW_AMPDU_AGGREGATION | |
| 4933 | IEEE80211_HW_TX_AMPDU_SETUP_IN_HW; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4934 | |
Juuso Oikarinen | 7a55724 | 2010-09-27 12:42:07 +0200 | [diff] [blame] | 4935 | wl->hw->wiphy->cipher_suites = cipher_suites; |
| 4936 | wl->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites); |
| 4937 | |
Juuso Oikarinen | e0d8bbf | 2009-12-11 15:41:04 +0200 | [diff] [blame] | 4938 | wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
Eliad Peller | 045c745 | 2011-08-28 15:23:01 +0300 | [diff] [blame] | 4939 | BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP) | |
| 4940 | BIT(NL80211_IFTYPE_P2P_CLIENT) | BIT(NL80211_IFTYPE_P2P_GO); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4941 | wl->hw->wiphy->max_scan_ssids = 1; |
Luciano Coelho | 221737d | 2011-09-02 14:28:22 +0300 | [diff] [blame] | 4942 | wl->hw->wiphy->max_sched_scan_ssids = 16; |
| 4943 | wl->hw->wiphy->max_match_sets = 16; |
Guy Eilam | ea559b4 | 2010-12-09 16:54:59 +0200 | [diff] [blame] | 4944 | /* |
| 4945 | * Maximum length of elements in scanning probe request templates |
| 4946 | * should be the maximum length possible for a template, without |
| 4947 | * the IEEE80211 header of the template |
| 4948 | */ |
Eliad Peller | 154037d | 2011-08-14 13:17:12 +0300 | [diff] [blame] | 4949 | wl->hw->wiphy->max_scan_ie_len = WL1271_CMD_TEMPL_DFLT_SIZE - |
Guy Eilam | ea559b4 | 2010-12-09 16:54:59 +0200 | [diff] [blame] | 4950 | sizeof(struct ieee80211_header); |
Luciano Coelho | a8aaaf5 | 2011-01-11 18:25:18 +0100 | [diff] [blame] | 4951 | |
Luciano Coelho | c9e79a4 | 2011-09-27 16:22:35 +0300 | [diff] [blame] | 4952 | wl->hw->wiphy->max_sched_scan_ie_len = WL1271_CMD_TEMPL_DFLT_SIZE - |
| 4953 | sizeof(struct ieee80211_header); |
| 4954 | |
Eliad Peller | 1ec23f7 | 2011-08-25 14:26:54 +0300 | [diff] [blame] | 4955 | wl->hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD; |
| 4956 | |
Luciano Coelho | 4a31c11 | 2011-03-21 23:16:14 +0200 | [diff] [blame] | 4957 | /* make sure all our channels fit in the scanned_ch bitmask */ |
| 4958 | BUILD_BUG_ON(ARRAY_SIZE(wl1271_channels) + |
| 4959 | ARRAY_SIZE(wl1271_channels_5ghz) > |
| 4960 | WL1271_MAX_CHANNELS); |
Luciano Coelho | a8aaaf5 | 2011-01-11 18:25:18 +0100 | [diff] [blame] | 4961 | /* |
| 4962 | * We keep local copies of the band structs because we need to |
| 4963 | * modify them on a per-device basis. |
| 4964 | */ |
| 4965 | memcpy(&wl->bands[IEEE80211_BAND_2GHZ], &wl1271_band_2ghz, |
| 4966 | sizeof(wl1271_band_2ghz)); |
| 4967 | memcpy(&wl->bands[IEEE80211_BAND_5GHZ], &wl1271_band_5ghz, |
| 4968 | sizeof(wl1271_band_5ghz)); |
| 4969 | |
| 4970 | wl->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 4971 | &wl->bands[IEEE80211_BAND_2GHZ]; |
| 4972 | wl->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 4973 | &wl->bands[IEEE80211_BAND_5GHZ]; |
Teemu Paasikivi | 1ebec3d | 2009-10-13 12:47:48 +0300 | [diff] [blame] | 4974 | |
Kalle Valo | 12bd894 | 2010-03-18 12:26:33 +0200 | [diff] [blame] | 4975 | wl->hw->queues = 4; |
Juuso Oikarinen | 31627dc | 2010-03-26 12:53:12 +0200 | [diff] [blame] | 4976 | wl->hw->max_rates = 1; |
Kalle Valo | 12bd894 | 2010-03-18 12:26:33 +0200 | [diff] [blame] | 4977 | |
Juuso Oikarinen | b7417d9 | 2010-11-10 11:27:19 +0100 | [diff] [blame] | 4978 | wl->hw->wiphy->reg_notifier = wl1271_reg_notify; |
| 4979 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 4980 | SET_IEEE80211_DEV(wl->hw, wl->dev); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4981 | |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4982 | wl->hw->sta_data_size = sizeof(struct wl1271_station); |
Eliad Peller | 87fbcb0 | 2011-10-05 11:55:41 +0200 | [diff] [blame] | 4983 | wl->hw->vif_data_size = sizeof(struct wl12xx_vif); |
Arik Nemtsov | f84f7d7 | 2010-10-16 20:21:23 +0200 | [diff] [blame] | 4984 | |
Luciano Coelho | 4c9cfa7 | 2011-01-12 14:27:03 +0100 | [diff] [blame] | 4985 | wl->hw->max_rx_aggregation_subframes = 8; |
| 4986 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4987 | return 0; |
| 4988 | } |
| 4989 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4990 | #define WL1271_DEFAULT_CHANNEL 0 |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 4991 | |
Felipe Balbi | 4b32a2c | 2011-10-06 10:46:20 +0300 | [diff] [blame^] | 4992 | static struct ieee80211_hw *wl1271_alloc_hw(void) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4993 | { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4994 | struct ieee80211_hw *hw; |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 4995 | struct platform_device *plat_dev = NULL; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4996 | struct wl1271 *wl; |
Arik Nemtsov | a8c0ddb | 2011-02-23 00:22:26 +0200 | [diff] [blame] | 4997 | int i, j, ret; |
Ido Yariv | 1f37cbc | 2010-09-30 13:28:27 +0200 | [diff] [blame] | 4998 | unsigned int order; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 4999 | |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 5000 | BUILD_BUG_ON(AP_MAX_STATIONS > WL12XX_MAX_LINKS); |
Arik Nemtsov | f80c2d1 | 2011-09-22 09:52:05 +0300 | [diff] [blame] | 5001 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5002 | hw = ieee80211_alloc_hw(sizeof(*wl), &wl1271_ops); |
| 5003 | if (!hw) { |
| 5004 | wl1271_error("could not alloc ieee80211_hw"); |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5005 | ret = -ENOMEM; |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5006 | goto err_hw_alloc; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5007 | } |
| 5008 | |
Julia Lawall | 929ebd3 | 2010-05-15 23:16:39 +0200 | [diff] [blame] | 5009 | plat_dev = kmemdup(&wl1271_device, sizeof(wl1271_device), GFP_KERNEL); |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5010 | if (!plat_dev) { |
| 5011 | wl1271_error("could not allocate platform_device"); |
| 5012 | ret = -ENOMEM; |
| 5013 | goto err_plat_alloc; |
| 5014 | } |
| 5015 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5016 | wl = hw->priv; |
| 5017 | memset(wl, 0, sizeof(*wl)); |
| 5018 | |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 5019 | INIT_LIST_HEAD(&wl->list); |
Eliad Peller | 8762721 | 2011-10-10 10:12:54 +0200 | [diff] [blame] | 5020 | INIT_LIST_HEAD(&wl->wlvif_list); |
Juuso Oikarinen | 01c0916 | 2009-10-13 12:47:55 +0300 | [diff] [blame] | 5021 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5022 | wl->hw = hw; |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5023 | wl->plat_dev = plat_dev; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5024 | |
Juuso Oikarinen | 6742f55 | 2010-12-13 09:52:37 +0200 | [diff] [blame] | 5025 | for (i = 0; i < NUM_TX_QUEUES; i++) |
Eliad Peller | c7ffb90 | 2011-10-05 11:56:05 +0200 | [diff] [blame] | 5026 | for (j = 0; j < WL12XX_MAX_LINKS; j++) |
Arik Nemtsov | a8c0ddb | 2011-02-23 00:22:26 +0200 | [diff] [blame] | 5027 | skb_queue_head_init(&wl->links[j].tx_queue[i]); |
| 5028 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 5029 | skb_queue_head_init(&wl->deferred_rx_queue); |
| 5030 | skb_queue_head_init(&wl->deferred_tx_queue); |
| 5031 | |
Juuso Oikarinen | 37b70a8 | 2009-10-08 21:56:21 +0300 | [diff] [blame] | 5032 | INIT_DELAYED_WORK(&wl->elp_work, wl1271_elp_work); |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 5033 | INIT_WORK(&wl->netstack_work, wl1271_netstack_work); |
Juuso Oikarinen | 117b38d | 2010-09-30 10:43:28 +0200 | [diff] [blame] | 5034 | INIT_WORK(&wl->tx_work, wl1271_tx_work); |
| 5035 | INIT_WORK(&wl->recovery_work, wl1271_recovery_work); |
| 5036 | INIT_DELAYED_WORK(&wl->scan_complete_work, wl1271_scan_complete_work); |
Eliad Peller | 77ddaa1 | 2011-05-15 11:10:29 +0300 | [diff] [blame] | 5037 | |
Eliad Peller | 92ef896 | 2011-06-07 12:50:46 +0300 | [diff] [blame] | 5038 | wl->freezable_wq = create_freezable_workqueue("wl12xx_wq"); |
| 5039 | if (!wl->freezable_wq) { |
| 5040 | ret = -ENOMEM; |
| 5041 | goto err_hw; |
| 5042 | } |
| 5043 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5044 | wl->channel = WL1271_DEFAULT_CHANNEL; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5045 | wl->rx_counter = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5046 | wl->power_level = WL1271_DEFAULT_POWER_LEVEL; |
Juuso Oikarinen | 8a5a37a | 2009-10-08 21:56:24 +0300 | [diff] [blame] | 5047 | wl->band = IEEE80211_BAND_2GHZ; |
Juuso Oikarinen | b771eee | 2009-10-08 21:56:34 +0300 | [diff] [blame] | 5048 | wl->vif = NULL; |
Juuso Oikarinen | 830fb67 | 2009-12-11 15:41:06 +0200 | [diff] [blame] | 5049 | wl->flags = 0; |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 5050 | wl->sg_enabled = true; |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 5051 | wl->hw_pg_ver = -1; |
Arik Nemtsov | b622d99 | 2011-02-23 00:22:31 +0200 | [diff] [blame] | 5052 | wl->ap_ps_map = 0; |
| 5053 | wl->ap_fw_ps_map = 0; |
Ido Yariv | 606ea9f | 2011-03-01 15:14:39 +0200 | [diff] [blame] | 5054 | wl->quirks = 0; |
Ido Yariv | 341b7cd | 2011-03-31 10:07:01 +0200 | [diff] [blame] | 5055 | wl->platform_quirks = 0; |
Luciano Coelho | 33c2c06 | 2011-05-10 14:46:02 +0300 | [diff] [blame] | 5056 | wl->sched_scanning = false; |
Guy Eilam | e9eb8cb | 2011-08-16 19:49:12 +0300 | [diff] [blame] | 5057 | wl->tx_spare_blocks = TX_HW_BLOCK_SPARE_DEFAULT; |
Eliad Peller | f4df1bd | 2011-08-14 13:17:15 +0300 | [diff] [blame] | 5058 | wl->system_hlid = WL12XX_SYSTEM_HLID; |
Arik Nemtsov | da03209 | 2011-08-25 12:43:15 +0300 | [diff] [blame] | 5059 | wl->active_sta_count = 0; |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5060 | wl->fwlog_size = 0; |
| 5061 | init_waitqueue_head(&wl->fwlog_waitq); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5062 | |
Eliad Peller | f4df1bd | 2011-08-14 13:17:15 +0300 | [diff] [blame] | 5063 | /* The system link is always allocated */ |
| 5064 | __set_bit(WL12XX_SYSTEM_HLID, wl->links_map); |
| 5065 | |
Ido Yariv | 25eeb9e | 2010-10-12 16:20:06 +0200 | [diff] [blame] | 5066 | memset(wl->tx_frames_map, 0, sizeof(wl->tx_frames_map)); |
Juuso Oikarinen | be7078c | 2009-10-08 21:56:26 +0300 | [diff] [blame] | 5067 | for (i = 0; i < ACX_TX_DESCRIPTORS; i++) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5068 | wl->tx_frames[i] = NULL; |
| 5069 | |
| 5070 | spin_lock_init(&wl->wl_lock); |
| 5071 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5072 | wl->state = WL1271_STATE_OFF; |
| 5073 | mutex_init(&wl->mutex); |
| 5074 | |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 5075 | /* Apply default driver configuration. */ |
| 5076 | wl1271_conf_init(wl); |
| 5077 | |
Ido Yariv | 1f37cbc | 2010-09-30 13:28:27 +0200 | [diff] [blame] | 5078 | order = get_order(WL1271_AGGR_BUFFER_SIZE); |
| 5079 | wl->aggr_buf = (u8 *)__get_free_pages(GFP_KERNEL, order); |
| 5080 | if (!wl->aggr_buf) { |
| 5081 | ret = -ENOMEM; |
Eliad Peller | 92ef896 | 2011-06-07 12:50:46 +0300 | [diff] [blame] | 5082 | goto err_wq; |
Ido Yariv | 1f37cbc | 2010-09-30 13:28:27 +0200 | [diff] [blame] | 5083 | } |
| 5084 | |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 5085 | wl->dummy_packet = wl12xx_alloc_dummy_packet(wl); |
| 5086 | if (!wl->dummy_packet) { |
| 5087 | ret = -ENOMEM; |
| 5088 | goto err_aggr; |
| 5089 | } |
| 5090 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5091 | /* Allocate one page for the FW log */ |
| 5092 | wl->fwlog = (u8 *)get_zeroed_page(GFP_KERNEL); |
| 5093 | if (!wl->fwlog) { |
| 5094 | ret = -ENOMEM; |
| 5095 | goto err_dummy_packet; |
| 5096 | } |
| 5097 | |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5098 | /* Register platform device */ |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5099 | ret = platform_device_register(wl->plat_dev); |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5100 | if (ret) { |
| 5101 | wl1271_error("couldn't register platform device"); |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5102 | goto err_fwlog; |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5103 | } |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5104 | dev_set_drvdata(&wl->plat_dev->dev, wl); |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5105 | |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 5106 | /* Create sysfs file to control bt coex state */ |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5107 | ret = device_create_file(&wl->plat_dev->dev, &dev_attr_bt_coex_state); |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 5108 | if (ret < 0) { |
| 5109 | wl1271_error("failed to create sysfs file bt_coex_state"); |
| 5110 | goto err_platform; |
| 5111 | } |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5112 | |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 5113 | /* Create sysfs file to get HW PG version */ |
| 5114 | ret = device_create_file(&wl->plat_dev->dev, &dev_attr_hw_pg_ver); |
| 5115 | if (ret < 0) { |
| 5116 | wl1271_error("failed to create sysfs file hw_pg_ver"); |
| 5117 | goto err_bt_coex_state; |
| 5118 | } |
| 5119 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5120 | /* Create sysfs file for the FW log */ |
| 5121 | ret = device_create_bin_file(&wl->plat_dev->dev, &fwlog_attr); |
| 5122 | if (ret < 0) { |
| 5123 | wl1271_error("failed to create sysfs file fwlog"); |
| 5124 | goto err_hw_pg_ver; |
| 5125 | } |
| 5126 | |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 5127 | return hw; |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5128 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5129 | err_hw_pg_ver: |
| 5130 | device_remove_file(&wl->plat_dev->dev, &dev_attr_hw_pg_ver); |
| 5131 | |
Juuso Oikarinen | d717fd6 | 2010-05-07 11:38:58 +0300 | [diff] [blame] | 5132 | err_bt_coex_state: |
| 5133 | device_remove_file(&wl->plat_dev->dev, &dev_attr_bt_coex_state); |
| 5134 | |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 5135 | err_platform: |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5136 | platform_device_unregister(wl->plat_dev); |
Juuso Oikarinen | 7fc3a86 | 2010-03-18 12:26:32 +0200 | [diff] [blame] | 5137 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5138 | err_fwlog: |
| 5139 | free_page((unsigned long)wl->fwlog); |
| 5140 | |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 5141 | err_dummy_packet: |
| 5142 | dev_kfree_skb(wl->dummy_packet); |
| 5143 | |
Ido Yariv | 1f37cbc | 2010-09-30 13:28:27 +0200 | [diff] [blame] | 5144 | err_aggr: |
| 5145 | free_pages((unsigned long)wl->aggr_buf, order); |
| 5146 | |
Eliad Peller | 92ef896 | 2011-06-07 12:50:46 +0300 | [diff] [blame] | 5147 | err_wq: |
| 5148 | destroy_workqueue(wl->freezable_wq); |
| 5149 | |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5150 | err_hw: |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5151 | wl1271_debugfs_exit(wl); |
| 5152 | kfree(plat_dev); |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5153 | |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5154 | err_plat_alloc: |
| 5155 | ieee80211_free_hw(hw); |
| 5156 | |
| 5157 | err_hw_alloc: |
| 5158 | |
Juuso Oikarinen | a1dd818 | 2010-03-18 12:26:31 +0200 | [diff] [blame] | 5159 | return ERR_PTR(ret); |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 5160 | } |
| 5161 | |
Felipe Balbi | 4b32a2c | 2011-10-06 10:46:20 +0300 | [diff] [blame^] | 5162 | static int wl1271_free_hw(struct wl1271 *wl) |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 5163 | { |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5164 | /* Unblock any fwlog readers */ |
| 5165 | mutex_lock(&wl->mutex); |
| 5166 | wl->fwlog_size = -1; |
| 5167 | wake_up_interruptible_all(&wl->fwlog_waitq); |
| 5168 | mutex_unlock(&wl->mutex); |
| 5169 | |
| 5170 | device_remove_bin_file(&wl->plat_dev->dev, &fwlog_attr); |
Gery Kahn | 6f07b72 | 2011-07-18 14:21:49 +0300 | [diff] [blame] | 5171 | |
| 5172 | device_remove_file(&wl->plat_dev->dev, &dev_attr_hw_pg_ver); |
| 5173 | |
| 5174 | device_remove_file(&wl->plat_dev->dev, &dev_attr_bt_coex_state); |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5175 | platform_device_unregister(wl->plat_dev); |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5176 | free_page((unsigned long)wl->fwlog); |
Ido Yariv | 990f5de | 2011-03-31 10:06:59 +0200 | [diff] [blame] | 5177 | dev_kfree_skb(wl->dummy_packet); |
Ido Yariv | 1f37cbc | 2010-09-30 13:28:27 +0200 | [diff] [blame] | 5178 | free_pages((unsigned long)wl->aggr_buf, |
| 5179 | get_order(WL1271_AGGR_BUFFER_SIZE)); |
Teemu Paasikivi | 3b56dd6 | 2010-03-18 12:26:46 +0200 | [diff] [blame] | 5180 | kfree(wl->plat_dev); |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 5181 | |
| 5182 | wl1271_debugfs_exit(wl); |
| 5183 | |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 5184 | vfree(wl->fw); |
| 5185 | wl->fw = NULL; |
| 5186 | kfree(wl->nvs); |
| 5187 | wl->nvs = NULL; |
| 5188 | |
| 5189 | kfree(wl->fw_status); |
| 5190 | kfree(wl->tx_res_if); |
Eliad Peller | 92ef896 | 2011-06-07 12:50:46 +0300 | [diff] [blame] | 5191 | destroy_workqueue(wl->freezable_wq); |
Teemu Paasikivi | c332a4b | 2010-02-18 13:25:57 +0200 | [diff] [blame] | 5192 | |
| 5193 | ieee80211_free_hw(wl->hw); |
| 5194 | |
| 5195 | return 0; |
| 5196 | } |
Teemu Paasikivi | 50b3eb4 | 2010-02-22 08:38:26 +0200 | [diff] [blame] | 5197 | |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 5198 | static irqreturn_t wl12xx_hardirq(int irq, void *cookie) |
| 5199 | { |
| 5200 | struct wl1271 *wl = cookie; |
| 5201 | unsigned long flags; |
| 5202 | |
| 5203 | wl1271_debug(DEBUG_IRQ, "IRQ"); |
| 5204 | |
| 5205 | /* complete the ELP completion */ |
| 5206 | spin_lock_irqsave(&wl->wl_lock, flags); |
| 5207 | set_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags); |
| 5208 | if (wl->elp_compl) { |
| 5209 | complete(wl->elp_compl); |
| 5210 | wl->elp_compl = NULL; |
| 5211 | } |
| 5212 | |
| 5213 | if (test_bit(WL1271_FLAG_SUSPENDED, &wl->flags)) { |
| 5214 | /* don't enqueue a work right now. mark it as pending */ |
| 5215 | set_bit(WL1271_FLAG_PENDING_WORK, &wl->flags); |
| 5216 | wl1271_debug(DEBUG_IRQ, "should not enqueue work"); |
| 5217 | disable_irq_nosync(wl->irq); |
| 5218 | pm_wakeup_event(wl->dev, 0); |
| 5219 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
| 5220 | return IRQ_HANDLED; |
| 5221 | } |
| 5222 | spin_unlock_irqrestore(&wl->wl_lock, flags); |
| 5223 | |
| 5224 | return IRQ_WAKE_THREAD; |
| 5225 | } |
| 5226 | |
Felipe Balbi | ce2a217 | 2011-10-05 14:12:55 +0300 | [diff] [blame] | 5227 | static int __devinit wl12xx_probe(struct platform_device *pdev) |
| 5228 | { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 5229 | struct wl12xx_platform_data *pdata = pdev->dev.platform_data; |
| 5230 | struct ieee80211_hw *hw; |
| 5231 | struct wl1271 *wl; |
| 5232 | unsigned long irqflags; |
| 5233 | int ret = -ENODEV; |
| 5234 | |
| 5235 | hw = wl1271_alloc_hw(); |
| 5236 | if (IS_ERR(hw)) { |
| 5237 | wl1271_error("can't allocate hw"); |
| 5238 | ret = PTR_ERR(hw); |
| 5239 | goto out; |
| 5240 | } |
| 5241 | |
| 5242 | wl = hw->priv; |
| 5243 | wl->irq = platform_get_irq(pdev, 0); |
| 5244 | wl->ref_clock = pdata->board_ref_clock; |
| 5245 | wl->tcxo_clock = pdata->board_tcxo_clock; |
| 5246 | wl->platform_quirks = pdata->platform_quirks; |
| 5247 | wl->set_power = pdata->set_power; |
| 5248 | wl->dev = &pdev->dev; |
| 5249 | wl->if_ops = pdata->ops; |
| 5250 | |
| 5251 | platform_set_drvdata(pdev, wl); |
| 5252 | |
| 5253 | if (wl->platform_quirks & WL12XX_PLATFORM_QUIRK_EDGE_IRQ) |
| 5254 | irqflags = IRQF_TRIGGER_RISING; |
| 5255 | else |
| 5256 | irqflags = IRQF_TRIGGER_HIGH | IRQF_ONESHOT; |
| 5257 | |
| 5258 | ret = request_threaded_irq(wl->irq, wl12xx_hardirq, wl1271_irq, |
| 5259 | irqflags, |
| 5260 | pdev->name, wl); |
| 5261 | if (ret < 0) { |
| 5262 | wl1271_error("request_irq() failed: %d", ret); |
| 5263 | goto out_free_hw; |
| 5264 | } |
| 5265 | |
| 5266 | ret = enable_irq_wake(wl->irq); |
| 5267 | if (!ret) { |
| 5268 | wl->irq_wake_enabled = true; |
| 5269 | device_init_wakeup(wl->dev, 1); |
| 5270 | if (pdata->pwr_in_suspend) |
| 5271 | hw->wiphy->wowlan.flags = WIPHY_WOWLAN_ANY; |
| 5272 | |
| 5273 | } |
| 5274 | disable_irq(wl->irq); |
| 5275 | |
| 5276 | ret = wl1271_init_ieee80211(wl); |
| 5277 | if (ret) |
| 5278 | goto out_irq; |
| 5279 | |
| 5280 | ret = wl1271_register_hw(wl); |
| 5281 | if (ret) |
| 5282 | goto out_irq; |
| 5283 | |
Felipe Balbi | ce2a217 | 2011-10-05 14:12:55 +0300 | [diff] [blame] | 5284 | return 0; |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 5285 | |
| 5286 | out_irq: |
| 5287 | free_irq(wl->irq, wl); |
| 5288 | |
| 5289 | out_free_hw: |
| 5290 | wl1271_free_hw(wl); |
| 5291 | |
| 5292 | out: |
| 5293 | return ret; |
Felipe Balbi | ce2a217 | 2011-10-05 14:12:55 +0300 | [diff] [blame] | 5294 | } |
| 5295 | |
| 5296 | static int __devexit wl12xx_remove(struct platform_device *pdev) |
| 5297 | { |
Felipe Balbi | a390e85 | 2011-10-06 10:07:44 +0300 | [diff] [blame] | 5298 | struct wl1271 *wl = platform_get_drvdata(pdev); |
| 5299 | |
| 5300 | if (wl->irq_wake_enabled) { |
| 5301 | device_init_wakeup(wl->dev, 0); |
| 5302 | disable_irq_wake(wl->irq); |
| 5303 | } |
| 5304 | wl1271_unregister_hw(wl); |
| 5305 | free_irq(wl->irq, wl); |
| 5306 | wl1271_free_hw(wl); |
| 5307 | |
Felipe Balbi | ce2a217 | 2011-10-05 14:12:55 +0300 | [diff] [blame] | 5308 | return 0; |
| 5309 | } |
| 5310 | |
| 5311 | static const struct platform_device_id wl12xx_id_table[] __devinitconst = { |
| 5312 | { "wl12xx-sdio", 0 }, |
| 5313 | { "wl12xx-spi", 0 }, |
| 5314 | { } /* Terminating Entry */ |
| 5315 | }; |
| 5316 | MODULE_DEVICE_TABLE(platform, wl12xx_id_table); |
| 5317 | |
| 5318 | static struct platform_driver wl12xx_driver = { |
| 5319 | .probe = wl12xx_probe, |
| 5320 | .remove = __devexit_p(wl12xx_remove), |
| 5321 | .id_table = wl12xx_id_table, |
| 5322 | .driver = { |
| 5323 | .name = "wl12xx", |
| 5324 | .owner = THIS_MODULE, |
| 5325 | } |
| 5326 | }; |
| 5327 | |
| 5328 | static int __init wl12xx_init(void) |
| 5329 | { |
| 5330 | return platform_driver_register(&wl12xx_driver); |
| 5331 | } |
| 5332 | module_init(wl12xx_init); |
| 5333 | |
| 5334 | static void __exit wl12xx_exit(void) |
| 5335 | { |
| 5336 | platform_driver_unregister(&wl12xx_driver); |
| 5337 | } |
| 5338 | module_exit(wl12xx_exit); |
| 5339 | |
Guy Eilam | 491bbd6 | 2011-01-12 10:33:29 +0100 | [diff] [blame] | 5340 | u32 wl12xx_debug_level = DEBUG_NONE; |
Eliad Peller | 17c1755 | 2010-12-12 12:15:35 +0200 | [diff] [blame] | 5341 | EXPORT_SYMBOL_GPL(wl12xx_debug_level); |
Guy Eilam | 491bbd6 | 2011-01-12 10:33:29 +0100 | [diff] [blame] | 5342 | module_param_named(debug_level, wl12xx_debug_level, uint, S_IRUSR | S_IWUSR); |
Eliad Peller | 17c1755 | 2010-12-12 12:15:35 +0200 | [diff] [blame] | 5343 | MODULE_PARM_DESC(debug_level, "wl12xx debugging level"); |
| 5344 | |
Ido Yariv | 95dac04f | 2011-06-06 14:57:06 +0300 | [diff] [blame] | 5345 | module_param_named(fwlog, fwlog_param, charp, 0); |
| 5346 | MODULE_PARM_DESC(keymap, |
| 5347 | "FW logger options: continuous, ondemand, dbgpins or disable"); |
| 5348 | |
Eliad Peller | 2a5bff0 | 2011-08-25 18:10:59 +0300 | [diff] [blame] | 5349 | module_param(bug_on_recovery, bool, S_IRUSR | S_IWUSR); |
| 5350 | MODULE_PARM_DESC(bug_on_recovery, "BUG() on fw recovery"); |
| 5351 | |
Teemu Paasikivi | 50b3eb4 | 2010-02-22 08:38:26 +0200 | [diff] [blame] | 5352 | MODULE_LICENSE("GPL"); |
Luciano Coelho | b1a48ca | 2011-02-22 14:19:28 +0200 | [diff] [blame] | 5353 | MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>"); |
Teemu Paasikivi | 50b3eb4 | 2010-02-22 08:38:26 +0200 | [diff] [blame] | 5354 | MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>"); |