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