Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Marvell Wireless LAN device driver: CFG80211 |
| 3 | * |
| 4 | * Copyright (C) 2011, Marvell International Ltd. |
| 5 | * |
| 6 | * This software file (the "File") is distributed by Marvell International |
| 7 | * Ltd. under the terms of the GNU General Public License Version 2, June 1991 |
| 8 | * (the "License"). You may use, redistribute and/or modify this File in |
| 9 | * accordance with the terms and conditions of the License, a copy of which |
| 10 | * is available by writing to the Free Software Foundation, Inc., |
| 11 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the |
| 12 | * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. |
| 13 | * |
| 14 | * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE |
| 15 | * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE |
| 16 | * ARE EXPRESSLY DISCLAIMED. The License provides additional details about |
| 17 | * this warranty disclaimer. |
| 18 | */ |
| 19 | |
| 20 | #include "cfg80211.h" |
| 21 | #include "main.h" |
| 22 | |
| 23 | /* |
| 24 | * This function maps the nl802.11 channel type into driver channel type. |
| 25 | * |
| 26 | * The mapping is as follows - |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 27 | * NL80211_CHAN_NO_HT -> IEEE80211_HT_PARAM_CHA_SEC_NONE |
| 28 | * NL80211_CHAN_HT20 -> IEEE80211_HT_PARAM_CHA_SEC_NONE |
| 29 | * NL80211_CHAN_HT40PLUS -> IEEE80211_HT_PARAM_CHA_SEC_ABOVE |
| 30 | * NL80211_CHAN_HT40MINUS -> IEEE80211_HT_PARAM_CHA_SEC_BELOW |
| 31 | * Others -> IEEE80211_HT_PARAM_CHA_SEC_NONE |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 32 | */ |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 33 | static u8 |
| 34 | mwifiex_cfg80211_channel_type_to_sec_chan_offset(enum nl80211_channel_type |
| 35 | channel_type) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 36 | { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 37 | switch (channel_type) { |
| 38 | case NL80211_CHAN_NO_HT: |
| 39 | case NL80211_CHAN_HT20: |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 40 | return IEEE80211_HT_PARAM_CHA_SEC_NONE; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 41 | case NL80211_CHAN_HT40PLUS: |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 42 | return IEEE80211_HT_PARAM_CHA_SEC_ABOVE; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 43 | case NL80211_CHAN_HT40MINUS: |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 44 | return IEEE80211_HT_PARAM_CHA_SEC_BELOW; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 45 | default: |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 46 | return IEEE80211_HT_PARAM_CHA_SEC_NONE; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 47 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 51 | * This function checks whether WEP is set. |
| 52 | */ |
| 53 | static int |
| 54 | mwifiex_is_alg_wep(u32 cipher) |
| 55 | { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 56 | switch (cipher) { |
Yogesh Ashok Powar | 2be50b8 | 2011-04-01 18:36:47 -0700 | [diff] [blame] | 57 | case WLAN_CIPHER_SUITE_WEP40: |
| 58 | case WLAN_CIPHER_SUITE_WEP104: |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 59 | return 1; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 60 | default: |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 61 | break; |
| 62 | } |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 63 | |
| 64 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 68 | * This function retrieves the private structure from kernel wiphy structure. |
| 69 | */ |
| 70 | static void *mwifiex_cfg80211_get_priv(struct wiphy *wiphy) |
| 71 | { |
| 72 | return (void *) (*(unsigned long *) wiphy_priv(wiphy)); |
| 73 | } |
| 74 | |
| 75 | /* |
| 76 | * CFG802.11 operation handler to delete a network key. |
| 77 | */ |
| 78 | static int |
| 79 | mwifiex_cfg80211_del_key(struct wiphy *wiphy, struct net_device *netdev, |
| 80 | u8 key_index, bool pairwise, const u8 *mac_addr) |
| 81 | { |
Yogesh Ashok Powar | f540f9f | 2012-01-11 20:06:12 -0800 | [diff] [blame] | 82 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 83 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 84 | if (mwifiex_set_encode(priv, NULL, 0, key_index, 1)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 85 | wiphy_err(wiphy, "deleting the crypto keys\n"); |
| 86 | return -EFAULT; |
| 87 | } |
| 88 | |
| 89 | wiphy_dbg(wiphy, "info: crypto keys deleted\n"); |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | * CFG802.11 operation handler to set Tx power. |
| 95 | */ |
| 96 | static int |
| 97 | mwifiex_cfg80211_set_tx_power(struct wiphy *wiphy, |
| 98 | enum nl80211_tx_power_setting type, |
Luis R. Rodriguez | 742c29f | 2011-11-28 16:38:50 -0500 | [diff] [blame] | 99 | int mbm) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 100 | { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 101 | struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 102 | struct mwifiex_power_cfg power_cfg; |
Luis R. Rodriguez | 742c29f | 2011-11-28 16:38:50 -0500 | [diff] [blame] | 103 | int dbm = MBM_TO_DBM(mbm); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 104 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 105 | if (type == NL80211_TX_POWER_FIXED) { |
| 106 | power_cfg.is_power_auto = 0; |
| 107 | power_cfg.power_level = dbm; |
| 108 | } else { |
| 109 | power_cfg.is_power_auto = 1; |
| 110 | } |
| 111 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 112 | return mwifiex_set_tx_power(priv, &power_cfg); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /* |
| 116 | * CFG802.11 operation handler to set Power Save option. |
| 117 | * |
| 118 | * The timeout value, if provided, is currently ignored. |
| 119 | */ |
| 120 | static int |
| 121 | mwifiex_cfg80211_set_power_mgmt(struct wiphy *wiphy, |
| 122 | struct net_device *dev, |
| 123 | bool enabled, int timeout) |
| 124 | { |
Yogesh Ashok Powar | f540f9f | 2012-01-11 20:06:12 -0800 | [diff] [blame] | 125 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 126 | u32 ps_mode; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 127 | |
| 128 | if (timeout) |
| 129 | wiphy_dbg(wiphy, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 130 | "info: ignore timeout value for IEEE Power Save\n"); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 131 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 132 | ps_mode = enabled; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 133 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 134 | return mwifiex_drv_set_power(priv, &ps_mode); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | /* |
| 138 | * CFG802.11 operation handler to set the default network key. |
| 139 | */ |
| 140 | static int |
| 141 | mwifiex_cfg80211_set_default_key(struct wiphy *wiphy, struct net_device *netdev, |
| 142 | u8 key_index, bool unicast, |
| 143 | bool multicast) |
| 144 | { |
Yogesh Ashok Powar | f540f9f | 2012-01-11 20:06:12 -0800 | [diff] [blame] | 145 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 146 | |
Amitkumar Karwar | 2d3d0a8 | 2011-04-01 18:36:46 -0700 | [diff] [blame] | 147 | /* Return if WEP key not configured */ |
Amitkumar Karwar | 5eb02e4 | 2012-02-24 21:36:04 -0800 | [diff] [blame] | 148 | if (!priv->sec_info.wep_enabled) |
Amitkumar Karwar | 2d3d0a8 | 2011-04-01 18:36:46 -0700 | [diff] [blame] | 149 | return 0; |
| 150 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 151 | if (mwifiex_set_encode(priv, NULL, 0, key_index, 0)) { |
| 152 | wiphy_err(wiphy, "set default Tx key index\n"); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 153 | return -EFAULT; |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 154 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 155 | |
| 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | /* |
| 160 | * CFG802.11 operation handler to add a network key. |
| 161 | */ |
| 162 | static int |
| 163 | mwifiex_cfg80211_add_key(struct wiphy *wiphy, struct net_device *netdev, |
| 164 | u8 key_index, bool pairwise, const u8 *mac_addr, |
| 165 | struct key_params *params) |
| 166 | { |
Yogesh Ashok Powar | f540f9f | 2012-01-11 20:06:12 -0800 | [diff] [blame] | 167 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 168 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 169 | if (mwifiex_set_encode(priv, params->key, params->key_len, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 170 | key_index, 0)) { |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 171 | wiphy_err(wiphy, "crypto keys added\n"); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 172 | return -EFAULT; |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 173 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * This function sends domain information to the firmware. |
| 180 | * |
| 181 | * The following information are passed to the firmware - |
| 182 | * - Country codes |
| 183 | * - Sub bands (first channel, number of channels, maximum Tx power) |
| 184 | */ |
| 185 | static int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy) |
| 186 | { |
| 187 | u8 no_of_triplet = 0; |
| 188 | struct ieee80211_country_ie_triplet *t; |
| 189 | u8 no_of_parsed_chan = 0; |
| 190 | u8 first_chan = 0, next_chan = 0, max_pwr = 0; |
| 191 | u8 i, flag = 0; |
| 192 | enum ieee80211_band band; |
| 193 | struct ieee80211_supported_band *sband; |
| 194 | struct ieee80211_channel *ch; |
| 195 | struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy); |
| 196 | struct mwifiex_adapter *adapter = priv->adapter; |
| 197 | struct mwifiex_802_11d_domain_reg *domain_info = &adapter->domain_reg; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 198 | |
| 199 | /* Set country code */ |
| 200 | domain_info->country_code[0] = priv->country_code[0]; |
| 201 | domain_info->country_code[1] = priv->country_code[1]; |
| 202 | domain_info->country_code[2] = ' '; |
| 203 | |
| 204 | band = mwifiex_band_to_radio_type(adapter->config_bands); |
| 205 | if (!wiphy->bands[band]) { |
| 206 | wiphy_err(wiphy, "11D: setting domain info in FW\n"); |
| 207 | return -1; |
| 208 | } |
| 209 | |
| 210 | sband = wiphy->bands[band]; |
| 211 | |
| 212 | for (i = 0; i < sband->n_channels ; i++) { |
| 213 | ch = &sband->channels[i]; |
| 214 | if (ch->flags & IEEE80211_CHAN_DISABLED) |
| 215 | continue; |
| 216 | |
| 217 | if (!flag) { |
| 218 | flag = 1; |
| 219 | first_chan = (u32) ch->hw_value; |
| 220 | next_chan = first_chan; |
| 221 | max_pwr = ch->max_power; |
| 222 | no_of_parsed_chan = 1; |
| 223 | continue; |
| 224 | } |
| 225 | |
| 226 | if (ch->hw_value == next_chan + 1 && |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 227 | ch->max_power == max_pwr) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 228 | next_chan++; |
| 229 | no_of_parsed_chan++; |
| 230 | } else { |
| 231 | t = &domain_info->triplet[no_of_triplet]; |
| 232 | t->chans.first_channel = first_chan; |
| 233 | t->chans.num_channels = no_of_parsed_chan; |
| 234 | t->chans.max_power = max_pwr; |
| 235 | no_of_triplet++; |
| 236 | first_chan = (u32) ch->hw_value; |
| 237 | next_chan = first_chan; |
| 238 | max_pwr = ch->max_power; |
| 239 | no_of_parsed_chan = 1; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | if (flag) { |
| 244 | t = &domain_info->triplet[no_of_triplet]; |
| 245 | t->chans.first_channel = first_chan; |
| 246 | t->chans.num_channels = no_of_parsed_chan; |
| 247 | t->chans.max_power = max_pwr; |
| 248 | no_of_triplet++; |
| 249 | } |
| 250 | |
| 251 | domain_info->no_of_triplet = no_of_triplet; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 252 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 253 | if (mwifiex_send_cmd_async(priv, HostCmd_CMD_802_11D_DOMAIN_INFO, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 254 | HostCmd_ACT_GEN_SET, 0, NULL)) { |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 255 | wiphy_err(wiphy, "11D: setting domain info in FW\n"); |
| 256 | return -1; |
| 257 | } |
| 258 | |
| 259 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /* |
| 263 | * CFG802.11 regulatory domain callback function. |
| 264 | * |
| 265 | * This function is called when the regulatory domain is changed due to the |
| 266 | * following reasons - |
| 267 | * - Set by driver |
| 268 | * - Set by system core |
| 269 | * - Set by user |
| 270 | * - Set bt Country IE |
| 271 | */ |
| 272 | static int mwifiex_reg_notifier(struct wiphy *wiphy, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 273 | struct regulatory_request *request) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 274 | { |
| 275 | struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy); |
| 276 | |
| 277 | wiphy_dbg(wiphy, "info: cfg80211 regulatory domain callback for domain" |
| 278 | " %c%c\n", request->alpha2[0], request->alpha2[1]); |
| 279 | |
| 280 | memcpy(priv->country_code, request->alpha2, sizeof(request->alpha2)); |
| 281 | |
| 282 | switch (request->initiator) { |
| 283 | case NL80211_REGDOM_SET_BY_DRIVER: |
| 284 | case NL80211_REGDOM_SET_BY_CORE: |
| 285 | case NL80211_REGDOM_SET_BY_USER: |
| 286 | break; |
| 287 | /* Todo: apply driver specific changes in channel flags based |
| 288 | on the request initiator if necessary. */ |
| 289 | case NL80211_REGDOM_SET_BY_COUNTRY_IE: |
| 290 | break; |
| 291 | } |
| 292 | mwifiex_send_domain_info_cmd_fw(wiphy); |
| 293 | |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | /* |
| 298 | * This function sets the RF channel. |
| 299 | * |
| 300 | * This function creates multiple IOCTL requests, populates them accordingly |
| 301 | * and issues them to set the band/channel and frequency. |
| 302 | */ |
| 303 | static int |
| 304 | mwifiex_set_rf_channel(struct mwifiex_private *priv, |
| 305 | struct ieee80211_channel *chan, |
| 306 | enum nl80211_channel_type channel_type) |
| 307 | { |
| 308 | struct mwifiex_chan_freq_power cfp; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 309 | u32 config_bands = 0; |
| 310 | struct wiphy *wiphy = priv->wdev->wiphy; |
Amitkumar Karwar | 43906cd | 2011-12-20 23:47:20 -0800 | [diff] [blame] | 311 | struct mwifiex_adapter *adapter = priv->adapter; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 312 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 313 | if (chan) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 314 | /* Set appropriate bands */ |
Amitkumar Karwar | 3aebee0 | 2011-12-20 23:47:22 -0800 | [diff] [blame] | 315 | if (chan->band == IEEE80211_BAND_2GHZ) { |
| 316 | if (channel_type == NL80211_CHAN_NO_HT) |
| 317 | if (priv->adapter->config_bands == BAND_B || |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 318 | priv->adapter->config_bands == BAND_G) |
Amitkumar Karwar | 3aebee0 | 2011-12-20 23:47:22 -0800 | [diff] [blame] | 319 | config_bands = |
| 320 | priv->adapter->config_bands; |
| 321 | else |
| 322 | config_bands = BAND_B | BAND_G; |
| 323 | else |
| 324 | config_bands = BAND_B | BAND_G | BAND_GN; |
| 325 | } else { |
| 326 | if (channel_type == NL80211_CHAN_NO_HT) |
| 327 | config_bands = BAND_A; |
| 328 | else |
| 329 | config_bands = BAND_AN | BAND_A; |
| 330 | } |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 331 | |
Amitkumar Karwar | 43906cd | 2011-12-20 23:47:20 -0800 | [diff] [blame] | 332 | if (!((config_bands | adapter->fw_bands) & |
| 333 | ~adapter->fw_bands)) { |
| 334 | adapter->config_bands = config_bands; |
| 335 | if (priv->bss_mode == NL80211_IFTYPE_ADHOC) { |
| 336 | adapter->adhoc_start_band = config_bands; |
| 337 | if ((config_bands & BAND_GN) || |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 338 | (config_bands & BAND_AN)) |
Amitkumar Karwar | 43906cd | 2011-12-20 23:47:20 -0800 | [diff] [blame] | 339 | adapter->adhoc_11n_enabled = true; |
| 340 | else |
| 341 | adapter->adhoc_11n_enabled = false; |
| 342 | } |
| 343 | } |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 344 | adapter->sec_chan_offset = |
| 345 | mwifiex_cfg80211_channel_type_to_sec_chan_offset |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 346 | (channel_type); |
Amitkumar Karwar | 3aebee0 | 2011-12-20 23:47:22 -0800 | [diff] [blame] | 347 | adapter->channel_type = channel_type; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 348 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 349 | mwifiex_send_domain_info_cmd_fw(wiphy); |
| 350 | } |
| 351 | |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 352 | wiphy_dbg(wiphy, "info: setting band %d, chan offset %d, mode %d\n", |
| 353 | config_bands, adapter->sec_chan_offset, priv->bss_mode); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 354 | if (!chan) |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 355 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 356 | |
| 357 | memset(&cfp, 0, sizeof(cfp)); |
| 358 | cfp.freq = chan->center_freq; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 359 | cfp.channel = ieee80211_frequency_to_channel(chan->center_freq); |
| 360 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 361 | if (mwifiex_bss_set_channel(priv, &cfp)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 362 | return -EFAULT; |
| 363 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 364 | return mwifiex_drv_change_adhoc_chan(priv, cfp.channel); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /* |
| 368 | * CFG802.11 operation handler to set channel. |
| 369 | * |
| 370 | * This function can only be used when station is not connected. |
| 371 | */ |
| 372 | static int |
| 373 | mwifiex_cfg80211_set_channel(struct wiphy *wiphy, struct net_device *dev, |
| 374 | struct ieee80211_channel *chan, |
| 375 | enum nl80211_channel_type channel_type) |
| 376 | { |
Amitkumar Karwar | 477778b | 2012-02-01 20:41:44 -0800 | [diff] [blame] | 377 | struct mwifiex_private *priv; |
| 378 | |
| 379 | if (dev) |
| 380 | priv = mwifiex_netdev_get_priv(dev); |
| 381 | else |
| 382 | priv = mwifiex_cfg80211_get_priv(wiphy); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 383 | |
| 384 | if (priv->media_connected) { |
| 385 | wiphy_err(wiphy, "This setting is valid only when station " |
| 386 | "is not connected\n"); |
| 387 | return -EINVAL; |
| 388 | } |
| 389 | |
| 390 | return mwifiex_set_rf_channel(priv, chan, channel_type); |
| 391 | } |
| 392 | |
| 393 | /* |
| 394 | * This function sets the fragmentation threshold. |
| 395 | * |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 396 | * The fragmentation threshold value must lie between MWIFIEX_FRAG_MIN_VALUE |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 397 | * and MWIFIEX_FRAG_MAX_VALUE. |
| 398 | */ |
| 399 | static int |
| 400 | mwifiex_set_frag(struct mwifiex_private *priv, u32 frag_thr) |
| 401 | { |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 402 | int ret; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 403 | |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 404 | if (frag_thr < MWIFIEX_FRAG_MIN_VALUE || |
| 405 | frag_thr > MWIFIEX_FRAG_MAX_VALUE) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 406 | return -EINVAL; |
| 407 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 408 | /* Send request to firmware */ |
| 409 | ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB, |
| 410 | HostCmd_ACT_GEN_SET, FRAG_THRESH_I, |
| 411 | &frag_thr); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 412 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 413 | return ret; |
| 414 | } |
| 415 | |
| 416 | /* |
| 417 | * This function sets the RTS threshold. |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 418 | |
| 419 | * The rts value must lie between MWIFIEX_RTS_MIN_VALUE |
| 420 | * and MWIFIEX_RTS_MAX_VALUE. |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 421 | */ |
| 422 | static int |
| 423 | mwifiex_set_rts(struct mwifiex_private *priv, u32 rts_thr) |
| 424 | { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 425 | if (rts_thr < MWIFIEX_RTS_MIN_VALUE || rts_thr > MWIFIEX_RTS_MAX_VALUE) |
| 426 | rts_thr = MWIFIEX_RTS_MAX_VALUE; |
| 427 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 428 | return mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB, |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 429 | HostCmd_ACT_GEN_SET, RTS_THRESH_I, |
| 430 | &rts_thr); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 431 | } |
| 432 | |
| 433 | /* |
| 434 | * CFG802.11 operation handler to set wiphy parameters. |
| 435 | * |
| 436 | * This function can be used to set the RTS threshold and the |
| 437 | * Fragmentation threshold of the driver. |
| 438 | */ |
| 439 | static int |
| 440 | mwifiex_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed) |
| 441 | { |
| 442 | struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 443 | int ret = 0; |
| 444 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 445 | if (changed & WIPHY_PARAM_RTS_THRESHOLD) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 446 | ret = mwifiex_set_rts(priv, wiphy->rts_threshold); |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 447 | if (ret) |
| 448 | return ret; |
| 449 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 450 | |
| 451 | if (changed & WIPHY_PARAM_FRAG_THRESHOLD) |
| 452 | ret = mwifiex_set_frag(priv, wiphy->frag_threshold); |
| 453 | |
| 454 | return ret; |
| 455 | } |
| 456 | |
| 457 | /* |
| 458 | * CFG802.11 operation handler to change interface type. |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 459 | */ |
| 460 | static int |
| 461 | mwifiex_cfg80211_change_virtual_intf(struct wiphy *wiphy, |
| 462 | struct net_device *dev, |
| 463 | enum nl80211_iftype type, u32 *flags, |
| 464 | struct vif_params *params) |
| 465 | { |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 466 | int ret; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 467 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 468 | |
| 469 | if (priv->bss_mode == type) { |
| 470 | wiphy_warn(wiphy, "already set to required type\n"); |
| 471 | return 0; |
| 472 | } |
| 473 | |
| 474 | priv->bss_mode = type; |
| 475 | |
| 476 | switch (type) { |
| 477 | case NL80211_IFTYPE_ADHOC: |
| 478 | dev->ieee80211_ptr->iftype = NL80211_IFTYPE_ADHOC; |
| 479 | wiphy_dbg(wiphy, "info: setting interface type to adhoc\n"); |
| 480 | break; |
| 481 | case NL80211_IFTYPE_STATION: |
| 482 | dev->ieee80211_ptr->iftype = NL80211_IFTYPE_STATION; |
| 483 | wiphy_dbg(wiphy, "info: setting interface type to managed\n"); |
| 484 | break; |
| 485 | case NL80211_IFTYPE_UNSPECIFIED: |
| 486 | dev->ieee80211_ptr->iftype = NL80211_IFTYPE_STATION; |
| 487 | wiphy_dbg(wiphy, "info: setting interface type to auto\n"); |
| 488 | return 0; |
| 489 | default: |
| 490 | wiphy_err(wiphy, "unknown interface type: %d\n", type); |
| 491 | return -EINVAL; |
| 492 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 493 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 494 | mwifiex_deauthenticate(priv, NULL); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 495 | |
Marc Yang | f986b6d | 2011-03-28 17:55:42 -0700 | [diff] [blame] | 496 | priv->sec_info.authentication_mode = NL80211_AUTHTYPE_OPEN_SYSTEM; |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 497 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 498 | ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_SET_BSS_MODE, |
| 499 | HostCmd_ACT_GEN_SET, 0, NULL); |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 500 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 501 | return ret; |
| 502 | } |
| 503 | |
| 504 | /* |
| 505 | * This function dumps the station information on a buffer. |
| 506 | * |
| 507 | * The following information are shown - |
| 508 | * - Total bytes transmitted |
| 509 | * - Total bytes received |
| 510 | * - Total packets transmitted |
| 511 | * - Total packets received |
| 512 | * - Signal quality level |
| 513 | * - Transmission rate |
| 514 | */ |
| 515 | static int |
| 516 | mwifiex_dump_station_info(struct mwifiex_private *priv, |
| 517 | struct station_info *sinfo) |
| 518 | { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 519 | struct mwifiex_rate_cfg rate; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 520 | |
| 521 | sinfo->filled = STATION_INFO_RX_BYTES | STATION_INFO_TX_BYTES | |
Amitkumar Karwar | 7013d3e | 2012-03-15 20:51:50 -0700 | [diff] [blame] | 522 | STATION_INFO_RX_PACKETS | STATION_INFO_TX_PACKETS | |
| 523 | STATION_INFO_TX_BITRATE | |
| 524 | STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 525 | |
| 526 | /* Get signal information from the firmware */ |
Amitkumar Karwar | 958a4a8 | 2012-03-15 20:51:49 -0700 | [diff] [blame] | 527 | if (mwifiex_send_cmd_sync(priv, HostCmd_CMD_RSSI_INFO, |
| 528 | HostCmd_ACT_GEN_GET, 0, NULL)) { |
| 529 | dev_err(priv->adapter->dev, "failed to get signal information\n"); |
| 530 | return -EFAULT; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | if (mwifiex_drv_get_data_rate(priv, &rate)) { |
| 534 | dev_err(priv->adapter->dev, "getting data rate\n"); |
Amitkumar Karwar | 958a4a8 | 2012-03-15 20:51:49 -0700 | [diff] [blame] | 535 | return -EFAULT; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 536 | } |
| 537 | |
Amitkumar Karwar | caf60a6 | 2012-02-02 20:48:58 -0800 | [diff] [blame] | 538 | /* Get DTIM period information from firmware */ |
| 539 | mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB, |
| 540 | HostCmd_ACT_GEN_GET, DTIM_PERIOD_I, |
| 541 | &priv->dtim_period); |
| 542 | |
Amitkumar Karwar | 4ec6f9c | 2011-09-26 20:37:25 -0700 | [diff] [blame] | 543 | /* |
| 544 | * Bit 0 in tx_htinfo indicates that current Tx rate is 11n rate. Valid |
| 545 | * MCS index values for us are 0 to 7. |
| 546 | */ |
| 547 | if ((priv->tx_htinfo & BIT(0)) && (priv->tx_rate < 8)) { |
| 548 | sinfo->txrate.mcs = priv->tx_rate; |
| 549 | sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS; |
| 550 | /* 40MHz rate */ |
| 551 | if (priv->tx_htinfo & BIT(1)) |
| 552 | sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH; |
| 553 | /* SGI enabled */ |
| 554 | if (priv->tx_htinfo & BIT(2)) |
| 555 | sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI; |
| 556 | } |
| 557 | |
Amitkumar Karwar | 7013d3e | 2012-03-15 20:51:50 -0700 | [diff] [blame] | 558 | sinfo->signal_avg = priv->bcn_rssi_avg; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 559 | sinfo->rx_bytes = priv->stats.rx_bytes; |
| 560 | sinfo->tx_bytes = priv->stats.tx_bytes; |
| 561 | sinfo->rx_packets = priv->stats.rx_packets; |
| 562 | sinfo->tx_packets = priv->stats.tx_packets; |
Amitkumar Karwar | 958a4a8 | 2012-03-15 20:51:49 -0700 | [diff] [blame] | 563 | sinfo->signal = priv->bcn_rssi_avg; |
Amitkumar Karwar | 4ec6f9c | 2011-09-26 20:37:25 -0700 | [diff] [blame] | 564 | /* bit rate is in 500 kb/s units. Convert it to 100kb/s units */ |
| 565 | sinfo->txrate.legacy = rate.rate * 5; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 566 | |
Amitkumar Karwar | c4f3b97 | 2012-01-24 20:50:25 -0800 | [diff] [blame] | 567 | if (priv->bss_mode == NL80211_IFTYPE_STATION) { |
| 568 | sinfo->filled |= STATION_INFO_BSS_PARAM; |
| 569 | sinfo->bss_param.flags = 0; |
| 570 | if (priv->curr_bss_params.bss_descriptor.cap_info_bitmap & |
| 571 | WLAN_CAPABILITY_SHORT_PREAMBLE) |
| 572 | sinfo->bss_param.flags |= |
| 573 | BSS_PARAM_FLAGS_SHORT_PREAMBLE; |
| 574 | if (priv->curr_bss_params.bss_descriptor.cap_info_bitmap & |
| 575 | WLAN_CAPABILITY_SHORT_SLOT_TIME) |
| 576 | sinfo->bss_param.flags |= |
| 577 | BSS_PARAM_FLAGS_SHORT_SLOT_TIME; |
Amitkumar Karwar | caf60a6 | 2012-02-02 20:48:58 -0800 | [diff] [blame] | 578 | sinfo->bss_param.dtim_period = priv->dtim_period; |
Amitkumar Karwar | c4f3b97 | 2012-01-24 20:50:25 -0800 | [diff] [blame] | 579 | sinfo->bss_param.beacon_interval = |
| 580 | priv->curr_bss_params.bss_descriptor.beacon_period; |
| 581 | } |
| 582 | |
Amitkumar Karwar | 958a4a8 | 2012-03-15 20:51:49 -0700 | [diff] [blame] | 583 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | /* |
| 587 | * CFG802.11 operation handler to get station information. |
| 588 | * |
| 589 | * This function only works in connected mode, and dumps the |
| 590 | * requested station information, if available. |
| 591 | */ |
| 592 | static int |
| 593 | mwifiex_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev, |
| 594 | u8 *mac, struct station_info *sinfo) |
| 595 | { |
| 596 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 597 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 598 | if (!priv->media_connected) |
| 599 | return -ENOENT; |
| 600 | if (memcmp(mac, priv->cfg_bssid, ETH_ALEN)) |
| 601 | return -ENOENT; |
| 602 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 603 | return mwifiex_dump_station_info(priv, sinfo); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 604 | } |
| 605 | |
Amitkumar Karwar | f85aae6 | 2012-03-15 20:51:48 -0700 | [diff] [blame] | 606 | /* |
| 607 | * CFG802.11 operation handler to dump station information. |
| 608 | */ |
| 609 | static int |
| 610 | mwifiex_cfg80211_dump_station(struct wiphy *wiphy, struct net_device *dev, |
| 611 | int idx, u8 *mac, struct station_info *sinfo) |
| 612 | { |
| 613 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
| 614 | |
| 615 | if (!priv->media_connected || idx) |
| 616 | return -ENOENT; |
| 617 | |
| 618 | memcpy(mac, priv->cfg_bssid, ETH_ALEN); |
| 619 | |
| 620 | return mwifiex_dump_station_info(priv, sinfo); |
| 621 | } |
| 622 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 623 | /* Supported rates to be advertised to the cfg80211 */ |
| 624 | |
| 625 | static struct ieee80211_rate mwifiex_rates[] = { |
| 626 | {.bitrate = 10, .hw_value = 2, }, |
| 627 | {.bitrate = 20, .hw_value = 4, }, |
| 628 | {.bitrate = 55, .hw_value = 11, }, |
| 629 | {.bitrate = 110, .hw_value = 22, }, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 630 | {.bitrate = 60, .hw_value = 12, }, |
| 631 | {.bitrate = 90, .hw_value = 18, }, |
| 632 | {.bitrate = 120, .hw_value = 24, }, |
| 633 | {.bitrate = 180, .hw_value = 36, }, |
| 634 | {.bitrate = 240, .hw_value = 48, }, |
| 635 | {.bitrate = 360, .hw_value = 72, }, |
| 636 | {.bitrate = 480, .hw_value = 96, }, |
| 637 | {.bitrate = 540, .hw_value = 108, }, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 638 | }; |
| 639 | |
| 640 | /* Channel definitions to be advertised to cfg80211 */ |
| 641 | |
| 642 | static struct ieee80211_channel mwifiex_channels_2ghz[] = { |
| 643 | {.center_freq = 2412, .hw_value = 1, }, |
| 644 | {.center_freq = 2417, .hw_value = 2, }, |
| 645 | {.center_freq = 2422, .hw_value = 3, }, |
| 646 | {.center_freq = 2427, .hw_value = 4, }, |
| 647 | {.center_freq = 2432, .hw_value = 5, }, |
| 648 | {.center_freq = 2437, .hw_value = 6, }, |
| 649 | {.center_freq = 2442, .hw_value = 7, }, |
| 650 | {.center_freq = 2447, .hw_value = 8, }, |
| 651 | {.center_freq = 2452, .hw_value = 9, }, |
| 652 | {.center_freq = 2457, .hw_value = 10, }, |
| 653 | {.center_freq = 2462, .hw_value = 11, }, |
| 654 | {.center_freq = 2467, .hw_value = 12, }, |
| 655 | {.center_freq = 2472, .hw_value = 13, }, |
| 656 | {.center_freq = 2484, .hw_value = 14, }, |
| 657 | }; |
| 658 | |
| 659 | static struct ieee80211_supported_band mwifiex_band_2ghz = { |
| 660 | .channels = mwifiex_channels_2ghz, |
| 661 | .n_channels = ARRAY_SIZE(mwifiex_channels_2ghz), |
| 662 | .bitrates = mwifiex_rates, |
Amitkumar Karwar | 8763848 | 2012-03-07 19:36:07 -0800 | [diff] [blame] | 663 | .n_bitrates = ARRAY_SIZE(mwifiex_rates), |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 664 | }; |
| 665 | |
| 666 | static struct ieee80211_channel mwifiex_channels_5ghz[] = { |
| 667 | {.center_freq = 5040, .hw_value = 8, }, |
| 668 | {.center_freq = 5060, .hw_value = 12, }, |
| 669 | {.center_freq = 5080, .hw_value = 16, }, |
| 670 | {.center_freq = 5170, .hw_value = 34, }, |
| 671 | {.center_freq = 5190, .hw_value = 38, }, |
| 672 | {.center_freq = 5210, .hw_value = 42, }, |
| 673 | {.center_freq = 5230, .hw_value = 46, }, |
| 674 | {.center_freq = 5180, .hw_value = 36, }, |
| 675 | {.center_freq = 5200, .hw_value = 40, }, |
| 676 | {.center_freq = 5220, .hw_value = 44, }, |
| 677 | {.center_freq = 5240, .hw_value = 48, }, |
| 678 | {.center_freq = 5260, .hw_value = 52, }, |
| 679 | {.center_freq = 5280, .hw_value = 56, }, |
| 680 | {.center_freq = 5300, .hw_value = 60, }, |
| 681 | {.center_freq = 5320, .hw_value = 64, }, |
| 682 | {.center_freq = 5500, .hw_value = 100, }, |
| 683 | {.center_freq = 5520, .hw_value = 104, }, |
| 684 | {.center_freq = 5540, .hw_value = 108, }, |
| 685 | {.center_freq = 5560, .hw_value = 112, }, |
| 686 | {.center_freq = 5580, .hw_value = 116, }, |
| 687 | {.center_freq = 5600, .hw_value = 120, }, |
| 688 | {.center_freq = 5620, .hw_value = 124, }, |
| 689 | {.center_freq = 5640, .hw_value = 128, }, |
| 690 | {.center_freq = 5660, .hw_value = 132, }, |
| 691 | {.center_freq = 5680, .hw_value = 136, }, |
| 692 | {.center_freq = 5700, .hw_value = 140, }, |
| 693 | {.center_freq = 5745, .hw_value = 149, }, |
| 694 | {.center_freq = 5765, .hw_value = 153, }, |
| 695 | {.center_freq = 5785, .hw_value = 157, }, |
| 696 | {.center_freq = 5805, .hw_value = 161, }, |
| 697 | {.center_freq = 5825, .hw_value = 165, }, |
| 698 | }; |
| 699 | |
| 700 | static struct ieee80211_supported_band mwifiex_band_5ghz = { |
| 701 | .channels = mwifiex_channels_5ghz, |
| 702 | .n_channels = ARRAY_SIZE(mwifiex_channels_5ghz), |
Avinash Patil | eb416ad | 2012-02-27 22:04:11 -0800 | [diff] [blame] | 703 | .bitrates = mwifiex_rates + 4, |
| 704 | .n_bitrates = ARRAY_SIZE(mwifiex_rates) - 4, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 705 | }; |
| 706 | |
| 707 | |
| 708 | /* Supported crypto cipher suits to be advertised to cfg80211 */ |
| 709 | |
| 710 | static const u32 mwifiex_cipher_suites[] = { |
| 711 | WLAN_CIPHER_SUITE_WEP40, |
| 712 | WLAN_CIPHER_SUITE_WEP104, |
| 713 | WLAN_CIPHER_SUITE_TKIP, |
| 714 | WLAN_CIPHER_SUITE_CCMP, |
| 715 | }; |
| 716 | |
| 717 | /* |
Yogesh Ashok Powar | 5d82c53 | 2011-07-11 20:04:44 -0700 | [diff] [blame] | 718 | * CFG802.11 operation handler for setting bit rates. |
| 719 | * |
| 720 | * Function selects legacy bang B/G/BG from corresponding bitrates selection. |
| 721 | * Currently only 2.4GHz band is supported. |
| 722 | */ |
| 723 | static int mwifiex_cfg80211_set_bitrate_mask(struct wiphy *wiphy, |
| 724 | struct net_device *dev, |
| 725 | const u8 *peer, |
| 726 | const struct cfg80211_bitrate_mask *mask) |
| 727 | { |
Yogesh Ashok Powar | 5d82c53 | 2011-07-11 20:04:44 -0700 | [diff] [blame] | 728 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
| 729 | int index = 0, mode = 0, i; |
Amitkumar Karwar | 43906cd | 2011-12-20 23:47:20 -0800 | [diff] [blame] | 730 | struct mwifiex_adapter *adapter = priv->adapter; |
Yogesh Ashok Powar | 5d82c53 | 2011-07-11 20:04:44 -0700 | [diff] [blame] | 731 | |
| 732 | /* Currently only 2.4GHz is supported */ |
| 733 | for (i = 0; i < mwifiex_band_2ghz.n_bitrates; i++) { |
| 734 | /* |
| 735 | * Rates below 6 Mbps in the table are CCK rates; 802.11b |
| 736 | * and from 6 they are OFDM; 802.11G |
| 737 | */ |
| 738 | if (mwifiex_rates[i].bitrate == 60) { |
| 739 | index = 1 << i; |
| 740 | break; |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | if (mask->control[IEEE80211_BAND_2GHZ].legacy < index) { |
| 745 | mode = BAND_B; |
| 746 | } else { |
| 747 | mode = BAND_G; |
| 748 | if (mask->control[IEEE80211_BAND_2GHZ].legacy % index) |
| 749 | mode |= BAND_B; |
| 750 | } |
| 751 | |
Amitkumar Karwar | 43906cd | 2011-12-20 23:47:20 -0800 | [diff] [blame] | 752 | if (!((mode | adapter->fw_bands) & ~adapter->fw_bands)) { |
| 753 | adapter->config_bands = mode; |
| 754 | if (priv->bss_mode == NL80211_IFTYPE_ADHOC) { |
| 755 | adapter->adhoc_start_band = mode; |
| 756 | adapter->adhoc_11n_enabled = false; |
| 757 | } |
| 758 | } |
Amitkumar Karwar | 21c3ba3 | 2011-12-20 23:47:21 -0800 | [diff] [blame] | 759 | adapter->sec_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE; |
Amitkumar Karwar | 3aebee0 | 2011-12-20 23:47:22 -0800 | [diff] [blame] | 760 | adapter->channel_type = NL80211_CHAN_NO_HT; |
Yogesh Ashok Powar | 5d82c53 | 2011-07-11 20:04:44 -0700 | [diff] [blame] | 761 | |
| 762 | wiphy_debug(wiphy, "info: device configured in 802.11%s%s mode\n", |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 763 | (mode & BAND_B) ? "b" : "", (mode & BAND_G) ? "g" : ""); |
Yogesh Ashok Powar | 5d82c53 | 2011-07-11 20:04:44 -0700 | [diff] [blame] | 764 | |
| 765 | return 0; |
| 766 | } |
| 767 | |
| 768 | /* |
Amitkumar Karwar | fa444bf | 2012-03-15 20:51:51 -0700 | [diff] [blame^] | 769 | * CFG802.11 operation handler for connection quality monitoring. |
| 770 | * |
| 771 | * This function subscribes/unsubscribes HIGH_RSSI and LOW_RSSI |
| 772 | * events to FW. |
| 773 | */ |
| 774 | static int mwifiex_cfg80211_set_cqm_rssi_config(struct wiphy *wiphy, |
| 775 | struct net_device *dev, |
| 776 | s32 rssi_thold, u32 rssi_hyst) |
| 777 | { |
| 778 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
| 779 | struct mwifiex_ds_misc_subsc_evt subsc_evt; |
| 780 | |
| 781 | priv->cqm_rssi_thold = rssi_thold; |
| 782 | priv->cqm_rssi_hyst = rssi_hyst; |
| 783 | |
| 784 | memset(&subsc_evt, 0x00, sizeof(struct mwifiex_ds_misc_subsc_evt)); |
| 785 | subsc_evt.events = BITMASK_BCN_RSSI_LOW | BITMASK_BCN_RSSI_HIGH; |
| 786 | |
| 787 | /* Subscribe/unsubscribe low and high rssi events */ |
| 788 | if (rssi_thold && rssi_hyst) { |
| 789 | subsc_evt.action = HostCmd_ACT_BITWISE_SET; |
| 790 | subsc_evt.bcn_l_rssi_cfg.abs_value = abs(rssi_thold); |
| 791 | subsc_evt.bcn_h_rssi_cfg.abs_value = abs(rssi_thold); |
| 792 | subsc_evt.bcn_l_rssi_cfg.evt_freq = 1; |
| 793 | subsc_evt.bcn_h_rssi_cfg.evt_freq = 1; |
| 794 | return mwifiex_send_cmd_sync(priv, |
| 795 | HostCmd_CMD_802_11_SUBSCRIBE_EVENT, |
| 796 | 0, 0, &subsc_evt); |
| 797 | } else { |
| 798 | subsc_evt.action = HostCmd_ACT_BITWISE_CLR; |
| 799 | return mwifiex_send_cmd_sync(priv, |
| 800 | HostCmd_CMD_802_11_SUBSCRIBE_EVENT, |
| 801 | 0, 0, &subsc_evt); |
| 802 | } |
| 803 | |
| 804 | return 0; |
| 805 | } |
| 806 | |
| 807 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 808 | * CFG802.11 operation handler for disconnection request. |
| 809 | * |
| 810 | * This function does not work when there is already a disconnection |
| 811 | * procedure going on. |
| 812 | */ |
| 813 | static int |
| 814 | mwifiex_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *dev, |
| 815 | u16 reason_code) |
| 816 | { |
| 817 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
| 818 | |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 819 | if (mwifiex_deauthenticate(priv, NULL)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 820 | return -EFAULT; |
| 821 | |
| 822 | wiphy_dbg(wiphy, "info: successfully disconnected from %pM:" |
| 823 | " reason code %d\n", priv->cfg_bssid, reason_code); |
| 824 | |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 825 | memset(priv->cfg_bssid, 0, ETH_ALEN); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 826 | |
| 827 | return 0; |
| 828 | } |
| 829 | |
| 830 | /* |
| 831 | * This function informs the CFG802.11 subsystem of a new IBSS. |
| 832 | * |
| 833 | * The following information are sent to the CFG802.11 subsystem |
| 834 | * to register the new IBSS. If we do not register the new IBSS, |
| 835 | * a kernel panic will result. |
| 836 | * - SSID |
| 837 | * - SSID length |
| 838 | * - BSSID |
| 839 | * - Channel |
| 840 | */ |
| 841 | static int mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private *priv) |
| 842 | { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 843 | struct ieee80211_channel *chan; |
| 844 | struct mwifiex_bss_info bss_info; |
Amitkumar Karwar | aa95a48 | 2011-11-07 21:41:12 -0800 | [diff] [blame] | 845 | struct cfg80211_bss *bss; |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 846 | int ie_len; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 847 | u8 ie_buf[IEEE80211_MAX_SSID_LEN + sizeof(struct ieee_types_header)]; |
Amitkumar Karwar | 4ed5d52 | 2011-09-21 21:43:24 -0700 | [diff] [blame] | 848 | enum ieee80211_band band; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 849 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 850 | if (mwifiex_get_bss_info(priv, &bss_info)) |
| 851 | return -1; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 852 | |
| 853 | ie_buf[0] = WLAN_EID_SSID; |
| 854 | ie_buf[1] = bss_info.ssid.ssid_len; |
| 855 | |
| 856 | memcpy(&ie_buf[sizeof(struct ieee_types_header)], |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 857 | &bss_info.ssid.ssid, bss_info.ssid.ssid_len); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 858 | ie_len = ie_buf[1] + sizeof(struct ieee_types_header); |
| 859 | |
Amitkumar Karwar | 4ed5d52 | 2011-09-21 21:43:24 -0700 | [diff] [blame] | 860 | band = mwifiex_band_to_radio_type(priv->curr_bss_params.band); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 861 | chan = __ieee80211_get_channel(priv->wdev->wiphy, |
| 862 | ieee80211_channel_to_frequency(bss_info.bss_chan, |
Amitkumar Karwar | 4ed5d52 | 2011-09-21 21:43:24 -0700 | [diff] [blame] | 863 | band)); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 864 | |
Amitkumar Karwar | aa95a48 | 2011-11-07 21:41:12 -0800 | [diff] [blame] | 865 | bss = cfg80211_inform_bss(priv->wdev->wiphy, chan, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 866 | bss_info.bssid, 0, WLAN_CAPABILITY_IBSS, |
| 867 | 0, ie_buf, ie_len, 0, GFP_KERNEL); |
Amitkumar Karwar | aa95a48 | 2011-11-07 21:41:12 -0800 | [diff] [blame] | 868 | cfg80211_put_bss(bss); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 869 | memcpy(priv->cfg_bssid, bss_info.bssid, ETH_ALEN); |
| 870 | |
Yogesh Ashok Powar | 636c459 | 2011-04-15 20:50:40 -0700 | [diff] [blame] | 871 | return 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 872 | } |
| 873 | |
| 874 | /* |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 875 | * This function connects with a BSS. |
| 876 | * |
| 877 | * This function handles both Infra and Ad-Hoc modes. It also performs |
| 878 | * validity checking on the provided parameters, disconnects from the |
| 879 | * current BSS (if any), sets up the association/scan parameters, |
| 880 | * including security settings, and performs specific SSID scan before |
| 881 | * trying to connect. |
| 882 | * |
| 883 | * For Infra mode, the function returns failure if the specified SSID |
| 884 | * is not found in scan table. However, for Ad-Hoc mode, it can create |
| 885 | * the IBSS if it does not exist. On successful completion in either case, |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 886 | * the function notifies the CFG802.11 subsystem of the new BSS connection. |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 887 | */ |
| 888 | static int |
| 889 | mwifiex_cfg80211_assoc(struct mwifiex_private *priv, size_t ssid_len, u8 *ssid, |
| 890 | u8 *bssid, int mode, struct ieee80211_channel *channel, |
| 891 | struct cfg80211_connect_params *sme, bool privacy) |
| 892 | { |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 893 | struct cfg80211_ssid req_ssid; |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 894 | int ret, auth_type = 0; |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 895 | struct cfg80211_bss *bss = NULL; |
| 896 | u8 is_scanning_required = 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 897 | |
Amitkumar Karwar | b9be5f3 | 2012-02-27 22:04:14 -0800 | [diff] [blame] | 898 | memset(&req_ssid, 0, sizeof(struct cfg80211_ssid)); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 899 | |
| 900 | req_ssid.ssid_len = ssid_len; |
| 901 | if (ssid_len > IEEE80211_MAX_SSID_LEN) { |
| 902 | dev_err(priv->adapter->dev, "invalid SSID - aborting\n"); |
| 903 | return -EINVAL; |
| 904 | } |
| 905 | |
| 906 | memcpy(req_ssid.ssid, ssid, ssid_len); |
| 907 | if (!req_ssid.ssid_len || req_ssid.ssid[0] < 0x20) { |
| 908 | dev_err(priv->adapter->dev, "invalid SSID - aborting\n"); |
| 909 | return -EINVAL; |
| 910 | } |
| 911 | |
| 912 | /* disconnect before try to associate */ |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 913 | mwifiex_deauthenticate(priv, NULL); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 914 | |
| 915 | if (channel) |
| 916 | ret = mwifiex_set_rf_channel(priv, channel, |
Amitkumar Karwar | 3aebee0 | 2011-12-20 23:47:22 -0800 | [diff] [blame] | 917 | priv->adapter->channel_type); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 918 | |
Amitkumar Karwar | 6670f15 | 2012-02-09 18:32:22 -0800 | [diff] [blame] | 919 | /* As this is new association, clear locally stored |
| 920 | * keys and security related flags */ |
| 921 | priv->sec_info.wpa_enabled = false; |
| 922 | priv->sec_info.wpa2_enabled = false; |
| 923 | priv->wep_key_curr_index = 0; |
Amitkumar Karwar | 00f157b | 2012-02-24 21:35:35 -0800 | [diff] [blame] | 924 | priv->sec_info.encryption_mode = 0; |
Amitkumar Karwar | a0f6d6c | 2012-02-24 21:36:05 -0800 | [diff] [blame] | 925 | priv->sec_info.is_authtype_auto = 0; |
Amitkumar Karwar | 6670f15 | 2012-02-09 18:32:22 -0800 | [diff] [blame] | 926 | ret = mwifiex_set_encode(priv, NULL, 0, 0, 1); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 927 | |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 928 | if (mode == NL80211_IFTYPE_ADHOC) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 929 | /* "privacy" is set only for ad-hoc mode */ |
| 930 | if (privacy) { |
| 931 | /* |
Yogesh Ashok Powar | 2be50b8 | 2011-04-01 18:36:47 -0700 | [diff] [blame] | 932 | * Keep WLAN_CIPHER_SUITE_WEP104 for now so that |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 933 | * the firmware can find a matching network from the |
| 934 | * scan. The cfg80211 does not give us the encryption |
| 935 | * mode at this stage so just setting it to WEP here. |
| 936 | */ |
Marc Yang | 203afec | 2011-03-24 20:49:39 -0700 | [diff] [blame] | 937 | priv->sec_info.encryption_mode = |
Yogesh Ashok Powar | 2be50b8 | 2011-04-01 18:36:47 -0700 | [diff] [blame] | 938 | WLAN_CIPHER_SUITE_WEP104; |
Marc Yang | 203afec | 2011-03-24 20:49:39 -0700 | [diff] [blame] | 939 | priv->sec_info.authentication_mode = |
Marc Yang | f986b6d | 2011-03-28 17:55:42 -0700 | [diff] [blame] | 940 | NL80211_AUTHTYPE_OPEN_SYSTEM; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | goto done; |
| 944 | } |
| 945 | |
| 946 | /* Now handle infra mode. "sme" is valid for infra mode only */ |
Amitkumar Karwar | a0f6d6c | 2012-02-24 21:36:05 -0800 | [diff] [blame] | 947 | if (sme->auth_type == NL80211_AUTHTYPE_AUTOMATIC) { |
Marc Yang | f986b6d | 2011-03-28 17:55:42 -0700 | [diff] [blame] | 948 | auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM; |
Amitkumar Karwar | a0f6d6c | 2012-02-24 21:36:05 -0800 | [diff] [blame] | 949 | priv->sec_info.is_authtype_auto = 1; |
| 950 | } else { |
| 951 | auth_type = sme->auth_type; |
| 952 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 953 | |
| 954 | if (sme->crypto.n_ciphers_pairwise) { |
Yogesh Ashok Powar | 2be50b8 | 2011-04-01 18:36:47 -0700 | [diff] [blame] | 955 | priv->sec_info.encryption_mode = |
| 956 | sme->crypto.ciphers_pairwise[0]; |
Marc Yang | 203afec | 2011-03-24 20:49:39 -0700 | [diff] [blame] | 957 | priv->sec_info.authentication_mode = auth_type; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | if (sme->crypto.cipher_group) { |
Yogesh Ashok Powar | 2be50b8 | 2011-04-01 18:36:47 -0700 | [diff] [blame] | 961 | priv->sec_info.encryption_mode = sme->crypto.cipher_group; |
Marc Yang | 203afec | 2011-03-24 20:49:39 -0700 | [diff] [blame] | 962 | priv->sec_info.authentication_mode = auth_type; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 963 | } |
| 964 | if (sme->ie) |
| 965 | ret = mwifiex_set_gen_ie(priv, sme->ie, sme->ie_len); |
| 966 | |
| 967 | if (sme->key) { |
Amitkumar Karwar | e6faada | 2011-07-07 17:33:19 -0700 | [diff] [blame] | 968 | if (mwifiex_is_alg_wep(priv->sec_info.encryption_mode)) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 969 | dev_dbg(priv->adapter->dev, |
| 970 | "info: setting wep encryption" |
| 971 | " with key len %d\n", sme->key_len); |
Amitkumar Karwar | 6670f15 | 2012-02-09 18:32:22 -0800 | [diff] [blame] | 972 | priv->wep_key_curr_index = sme->key_idx; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 973 | ret = mwifiex_set_encode(priv, sme->key, sme->key_len, |
| 974 | sme->key_idx, 0); |
| 975 | } |
| 976 | } |
| 977 | done: |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 978 | /* |
| 979 | * Scan entries are valid for some time (15 sec). So we can save one |
| 980 | * active scan time if we just try cfg80211_get_bss first. If it fails |
| 981 | * then request scan and cfg80211_get_bss() again for final output. |
| 982 | */ |
| 983 | while (1) { |
| 984 | if (is_scanning_required) { |
| 985 | /* Do specific SSID scanning */ |
| 986 | if (mwifiex_request_scan(priv, &req_ssid)) { |
| 987 | dev_err(priv->adapter->dev, "scan error\n"); |
| 988 | return -EFAULT; |
| 989 | } |
| 990 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 991 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 992 | /* Find the BSS we want using available scan results */ |
| 993 | if (mode == NL80211_IFTYPE_ADHOC) |
| 994 | bss = cfg80211_get_bss(priv->wdev->wiphy, channel, |
| 995 | bssid, ssid, ssid_len, |
| 996 | WLAN_CAPABILITY_IBSS, |
| 997 | WLAN_CAPABILITY_IBSS); |
| 998 | else |
| 999 | bss = cfg80211_get_bss(priv->wdev->wiphy, channel, |
| 1000 | bssid, ssid, ssid_len, |
| 1001 | WLAN_CAPABILITY_ESS, |
| 1002 | WLAN_CAPABILITY_ESS); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1003 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1004 | if (!bss) { |
| 1005 | if (is_scanning_required) { |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1006 | dev_warn(priv->adapter->dev, |
| 1007 | "assoc: requested bss not found in scan results\n"); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1008 | break; |
| 1009 | } |
| 1010 | is_scanning_required = 1; |
| 1011 | } else { |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1012 | dev_dbg(priv->adapter->dev, |
| 1013 | "info: trying to associate to '%s' bssid %pM\n", |
| 1014 | (char *) req_ssid.ssid, bss->bssid); |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1015 | memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN); |
| 1016 | break; |
| 1017 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1018 | } |
| 1019 | |
Amitkumar Karwar | 7c6fa2a | 2011-08-10 18:53:57 -0700 | [diff] [blame] | 1020 | if (mwifiex_bss_start(priv, bss, &req_ssid)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1021 | return -EFAULT; |
| 1022 | |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 1023 | if (mode == NL80211_IFTYPE_ADHOC) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1024 | /* Inform the BSS information to kernel, otherwise |
| 1025 | * kernel will give a panic after successful assoc */ |
| 1026 | if (mwifiex_cfg80211_inform_ibss_bss(priv)) |
| 1027 | return -EFAULT; |
| 1028 | } |
| 1029 | |
| 1030 | return ret; |
| 1031 | } |
| 1032 | |
| 1033 | /* |
| 1034 | * CFG802.11 operation handler for association request. |
| 1035 | * |
| 1036 | * This function does not work when the current mode is set to Ad-Hoc, or |
| 1037 | * when there is already an association procedure going on. The given BSS |
| 1038 | * information is used to associate. |
| 1039 | */ |
| 1040 | static int |
| 1041 | mwifiex_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev, |
| 1042 | struct cfg80211_connect_params *sme) |
| 1043 | { |
| 1044 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
| 1045 | int ret = 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1046 | |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 1047 | if (priv->bss_mode == NL80211_IFTYPE_ADHOC) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1048 | wiphy_err(wiphy, "received infra assoc request " |
| 1049 | "when station is in ibss mode\n"); |
| 1050 | goto done; |
| 1051 | } |
| 1052 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1053 | wiphy_dbg(wiphy, "info: Trying to associate to %s and bssid %pM\n", |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1054 | (char *) sme->ssid, sme->bssid); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1055 | |
| 1056 | ret = mwifiex_cfg80211_assoc(priv, sme->ssid_len, sme->ssid, sme->bssid, |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 1057 | priv->bss_mode, sme->channel, sme, 0); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1058 | done: |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1059 | if (!ret) { |
| 1060 | cfg80211_connect_result(priv->netdev, priv->cfg_bssid, NULL, 0, |
| 1061 | NULL, 0, WLAN_STATUS_SUCCESS, |
| 1062 | GFP_KERNEL); |
| 1063 | dev_dbg(priv->adapter->dev, |
| 1064 | "info: associated to bssid %pM successfully\n", |
| 1065 | priv->cfg_bssid); |
| 1066 | } else { |
| 1067 | dev_dbg(priv->adapter->dev, |
| 1068 | "info: association to bssid %pM failed\n", |
| 1069 | priv->cfg_bssid); |
| 1070 | memset(priv->cfg_bssid, 0, ETH_ALEN); |
| 1071 | } |
| 1072 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1073 | return ret; |
| 1074 | } |
| 1075 | |
| 1076 | /* |
| 1077 | * CFG802.11 operation handler to join an IBSS. |
| 1078 | * |
| 1079 | * This function does not work in any mode other than Ad-Hoc, or if |
| 1080 | * a join operation is already in progress. |
| 1081 | */ |
| 1082 | static int |
| 1083 | mwifiex_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev, |
| 1084 | struct cfg80211_ibss_params *params) |
| 1085 | { |
Yogesh Ashok Powar | f540f9f | 2012-01-11 20:06:12 -0800 | [diff] [blame] | 1086 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1087 | int ret = 0; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1088 | |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 1089 | if (priv->bss_mode != NL80211_IFTYPE_ADHOC) { |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1090 | wiphy_err(wiphy, "request to join ibss received " |
| 1091 | "when station is not in ibss mode\n"); |
| 1092 | goto done; |
| 1093 | } |
| 1094 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1095 | wiphy_dbg(wiphy, "info: trying to join to %s and bssid %pM\n", |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1096 | (char *) params->ssid, params->bssid); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1097 | |
| 1098 | ret = mwifiex_cfg80211_assoc(priv, params->ssid_len, params->ssid, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1099 | params->bssid, priv->bss_mode, |
| 1100 | params->channel, NULL, params->privacy); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1101 | done: |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1102 | if (!ret) { |
| 1103 | cfg80211_ibss_joined(priv->netdev, priv->cfg_bssid, GFP_KERNEL); |
| 1104 | dev_dbg(priv->adapter->dev, |
| 1105 | "info: joined/created adhoc network with bssid" |
| 1106 | " %pM successfully\n", priv->cfg_bssid); |
| 1107 | } else { |
| 1108 | dev_dbg(priv->adapter->dev, |
| 1109 | "info: failed creating/joining adhoc network\n"); |
| 1110 | } |
| 1111 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1112 | return ret; |
| 1113 | } |
| 1114 | |
| 1115 | /* |
| 1116 | * CFG802.11 operation handler to leave an IBSS. |
| 1117 | * |
| 1118 | * This function does not work if a leave operation is |
| 1119 | * already in progress. |
| 1120 | */ |
| 1121 | static int |
| 1122 | mwifiex_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev) |
| 1123 | { |
Yogesh Ashok Powar | f540f9f | 2012-01-11 20:06:12 -0800 | [diff] [blame] | 1124 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1125 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1126 | wiphy_dbg(wiphy, "info: disconnecting from essid %pM\n", |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1127 | priv->cfg_bssid); |
Amitkumar Karwar | 600f5d9 | 2011-04-13 17:27:06 -0700 | [diff] [blame] | 1128 | if (mwifiex_deauthenticate(priv, NULL)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1129 | return -EFAULT; |
| 1130 | |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1131 | memset(priv->cfg_bssid, 0, ETH_ALEN); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1132 | |
| 1133 | return 0; |
| 1134 | } |
| 1135 | |
| 1136 | /* |
| 1137 | * CFG802.11 operation handler for scan request. |
| 1138 | * |
| 1139 | * This function issues a scan request to the firmware based upon |
| 1140 | * the user specified scan configuration. On successfull completion, |
| 1141 | * it also informs the results. |
| 1142 | */ |
| 1143 | static int |
| 1144 | mwifiex_cfg80211_scan(struct wiphy *wiphy, struct net_device *dev, |
| 1145 | struct cfg80211_scan_request *request) |
| 1146 | { |
| 1147 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1148 | int i; |
| 1149 | struct ieee80211_channel *chan; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1150 | |
| 1151 | wiphy_dbg(wiphy, "info: received scan request on %s\n", dev->name); |
| 1152 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1153 | priv->scan_request = request; |
| 1154 | |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1155 | priv->user_scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg), |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1156 | GFP_KERNEL); |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1157 | if (!priv->user_scan_cfg) { |
| 1158 | dev_err(priv->adapter->dev, "failed to alloc scan_req\n"); |
| 1159 | return -ENOMEM; |
| 1160 | } |
Amitkumar Karwar | be0b281 | 2012-02-27 22:04:15 -0800 | [diff] [blame] | 1161 | |
| 1162 | priv->user_scan_cfg->num_ssids = request->n_ssids; |
| 1163 | priv->user_scan_cfg->ssid_list = request->ssids; |
| 1164 | |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1165 | for (i = 0; i < request->n_channels; i++) { |
| 1166 | chan = request->channels[i]; |
| 1167 | priv->user_scan_cfg->chan_list[i].chan_number = chan->hw_value; |
| 1168 | priv->user_scan_cfg->chan_list[i].radio_type = chan->band; |
| 1169 | |
| 1170 | if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 1171 | priv->user_scan_cfg->chan_list[i].scan_type = |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1172 | MWIFIEX_SCAN_TYPE_PASSIVE; |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1173 | else |
| 1174 | priv->user_scan_cfg->chan_list[i].scan_type = |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1175 | MWIFIEX_SCAN_TYPE_ACTIVE; |
Amitkumar Karwar | 38c9d66 | 2011-12-13 20:43:17 -0800 | [diff] [blame] | 1176 | |
| 1177 | priv->user_scan_cfg->chan_list[i].scan_time = 0; |
| 1178 | } |
| 1179 | if (mwifiex_set_user_scan_ioctl(priv, priv->user_scan_cfg)) |
| 1180 | return -EFAULT; |
| 1181 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1182 | return 0; |
| 1183 | } |
| 1184 | |
| 1185 | /* |
| 1186 | * This function sets up the CFG802.11 specific HT capability fields |
| 1187 | * with default values. |
| 1188 | * |
| 1189 | * The following default values are set - |
| 1190 | * - HT Supported = True |
Amitkumar Karwar | a46b7b5 | 2011-04-27 19:13:12 -0700 | [diff] [blame] | 1191 | * - Maximum AMPDU length factor = IEEE80211_HT_MAX_AMPDU_64K |
| 1192 | * - Minimum AMPDU spacing = IEEE80211_HT_MPDU_DENSITY_NONE |
| 1193 | * - HT Capabilities supported by firmware |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1194 | * - MCS information, Rx mask = 0xff |
| 1195 | * - MCD information, Tx parameters = IEEE80211_HT_MCS_TX_DEFINED (0x01) |
| 1196 | */ |
| 1197 | static void |
| 1198 | mwifiex_setup_ht_caps(struct ieee80211_sta_ht_cap *ht_info, |
| 1199 | struct mwifiex_private *priv) |
| 1200 | { |
| 1201 | int rx_mcs_supp; |
| 1202 | struct ieee80211_mcs_info mcs_set; |
| 1203 | u8 *mcs = (u8 *)&mcs_set; |
| 1204 | struct mwifiex_adapter *adapter = priv->adapter; |
| 1205 | |
| 1206 | ht_info->ht_supported = true; |
Amitkumar Karwar | a46b7b5 | 2011-04-27 19:13:12 -0700 | [diff] [blame] | 1207 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
| 1208 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1209 | |
| 1210 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1211 | |
Amitkumar Karwar | a46b7b5 | 2011-04-27 19:13:12 -0700 | [diff] [blame] | 1212 | /* Fill HT capability information */ |
| 1213 | if (ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap)) |
| 1214 | ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
| 1215 | else |
| 1216 | ht_info->cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
| 1217 | |
| 1218 | if (ISSUPP_SHORTGI20(adapter->hw_dot_11n_dev_cap)) |
| 1219 | ht_info->cap |= IEEE80211_HT_CAP_SGI_20; |
| 1220 | else |
| 1221 | ht_info->cap &= ~IEEE80211_HT_CAP_SGI_20; |
| 1222 | |
| 1223 | if (ISSUPP_SHORTGI40(adapter->hw_dot_11n_dev_cap)) |
| 1224 | ht_info->cap |= IEEE80211_HT_CAP_SGI_40; |
| 1225 | else |
| 1226 | ht_info->cap &= ~IEEE80211_HT_CAP_SGI_40; |
| 1227 | |
| 1228 | if (ISSUPP_RXSTBC(adapter->hw_dot_11n_dev_cap)) |
| 1229 | ht_info->cap |= 1 << IEEE80211_HT_CAP_RX_STBC_SHIFT; |
| 1230 | else |
| 1231 | ht_info->cap &= ~(3 << IEEE80211_HT_CAP_RX_STBC_SHIFT); |
| 1232 | |
| 1233 | if (ISSUPP_TXSTBC(adapter->hw_dot_11n_dev_cap)) |
| 1234 | ht_info->cap |= IEEE80211_HT_CAP_TX_STBC; |
| 1235 | else |
| 1236 | ht_info->cap &= ~IEEE80211_HT_CAP_TX_STBC; |
| 1237 | |
| 1238 | ht_info->cap &= ~IEEE80211_HT_CAP_MAX_AMSDU; |
| 1239 | ht_info->cap |= IEEE80211_HT_CAP_SM_PS; |
| 1240 | |
| 1241 | rx_mcs_supp = GET_RXMCSSUPP(adapter->hw_dev_mcs_support); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1242 | /* Set MCS for 1x1 */ |
| 1243 | memset(mcs, 0xff, rx_mcs_supp); |
| 1244 | /* Clear all the other values */ |
| 1245 | memset(&mcs[rx_mcs_supp], 0, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1246 | sizeof(struct ieee80211_mcs_info) - rx_mcs_supp); |
Bing Zhao | eecd825 | 2011-03-28 17:55:41 -0700 | [diff] [blame] | 1247 | if (priv->bss_mode == NL80211_IFTYPE_STATION || |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1248 | ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap)) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1249 | /* Set MCS32 for infra mode or ad-hoc mode with 40MHz support */ |
| 1250 | SETHT_MCS32(mcs_set.rx_mask); |
| 1251 | |
| 1252 | memcpy((u8 *) &ht_info->mcs, mcs, sizeof(struct ieee80211_mcs_info)); |
| 1253 | |
| 1254 | ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED; |
| 1255 | } |
| 1256 | |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1257 | /* |
| 1258 | * create a new virtual interface with the given name |
| 1259 | */ |
| 1260 | struct net_device *mwifiex_add_virtual_intf(struct wiphy *wiphy, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1261 | char *name, |
| 1262 | enum nl80211_iftype type, |
| 1263 | u32 *flags, |
| 1264 | struct vif_params *params) |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1265 | { |
| 1266 | struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy); |
| 1267 | struct mwifiex_adapter *adapter; |
| 1268 | struct net_device *dev; |
| 1269 | void *mdev_priv; |
| 1270 | |
| 1271 | if (!priv) |
| 1272 | return NULL; |
| 1273 | |
| 1274 | adapter = priv->adapter; |
| 1275 | if (!adapter) |
| 1276 | return NULL; |
| 1277 | |
| 1278 | switch (type) { |
| 1279 | case NL80211_IFTYPE_UNSPECIFIED: |
| 1280 | case NL80211_IFTYPE_STATION: |
| 1281 | case NL80211_IFTYPE_ADHOC: |
| 1282 | if (priv->bss_mode) { |
| 1283 | wiphy_err(wiphy, "cannot create multiple" |
| 1284 | " station/adhoc interfaces\n"); |
| 1285 | return NULL; |
| 1286 | } |
| 1287 | |
| 1288 | if (type == NL80211_IFTYPE_UNSPECIFIED) |
| 1289 | priv->bss_mode = NL80211_IFTYPE_STATION; |
| 1290 | else |
| 1291 | priv->bss_mode = type; |
| 1292 | |
| 1293 | priv->bss_type = MWIFIEX_BSS_TYPE_STA; |
| 1294 | priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II; |
| 1295 | priv->bss_priority = 0; |
| 1296 | priv->bss_role = MWIFIEX_BSS_ROLE_STA; |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1297 | priv->bss_num = 0; |
| 1298 | |
| 1299 | break; |
| 1300 | default: |
| 1301 | wiphy_err(wiphy, "type not supported\n"); |
| 1302 | return NULL; |
| 1303 | } |
| 1304 | |
| 1305 | dev = alloc_netdev_mq(sizeof(struct mwifiex_private *), name, |
| 1306 | ether_setup, 1); |
| 1307 | if (!dev) { |
| 1308 | wiphy_err(wiphy, "no memory available for netdevice\n"); |
| 1309 | goto error; |
| 1310 | } |
| 1311 | |
| 1312 | dev_net_set(dev, wiphy_net(wiphy)); |
| 1313 | dev->ieee80211_ptr = priv->wdev; |
| 1314 | dev->ieee80211_ptr->iftype = priv->bss_mode; |
| 1315 | memcpy(dev->dev_addr, wiphy->perm_addr, ETH_ALEN); |
| 1316 | memcpy(dev->perm_addr, wiphy->perm_addr, ETH_ALEN); |
| 1317 | SET_NETDEV_DEV(dev, wiphy_dev(wiphy)); |
| 1318 | |
| 1319 | dev->flags |= IFF_BROADCAST | IFF_MULTICAST; |
| 1320 | dev->watchdog_timeo = MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT; |
| 1321 | dev->hard_header_len += MWIFIEX_MIN_DATA_HEADER_LEN; |
| 1322 | |
| 1323 | mdev_priv = netdev_priv(dev); |
| 1324 | *((unsigned long *) mdev_priv) = (unsigned long) priv; |
| 1325 | |
| 1326 | priv->netdev = dev; |
| 1327 | mwifiex_init_priv_params(priv, dev); |
| 1328 | |
| 1329 | SET_NETDEV_DEV(dev, adapter->dev); |
| 1330 | |
| 1331 | /* Register network device */ |
| 1332 | if (register_netdevice(dev)) { |
| 1333 | wiphy_err(wiphy, "cannot register virtual network device\n"); |
| 1334 | goto error; |
| 1335 | } |
| 1336 | |
| 1337 | sema_init(&priv->async_sem, 1); |
| 1338 | priv->scan_pending_on_block = false; |
| 1339 | |
| 1340 | dev_dbg(adapter->dev, "info: %s: Marvell 802.11 Adapter\n", dev->name); |
| 1341 | |
| 1342 | #ifdef CONFIG_DEBUG_FS |
| 1343 | mwifiex_dev_debugfs_init(priv); |
| 1344 | #endif |
| 1345 | return dev; |
| 1346 | error: |
| 1347 | if (dev && (dev->reg_state == NETREG_UNREGISTERED)) |
| 1348 | free_netdev(dev); |
| 1349 | priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED; |
| 1350 | |
| 1351 | return NULL; |
| 1352 | } |
| 1353 | EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf); |
| 1354 | |
| 1355 | /* |
| 1356 | * del_virtual_intf: remove the virtual interface determined by dev |
| 1357 | */ |
| 1358 | int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct net_device *dev) |
| 1359 | { |
Yogesh Ashok Powar | f540f9f | 2012-01-11 20:06:12 -0800 | [diff] [blame] | 1360 | struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev); |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1361 | |
| 1362 | #ifdef CONFIG_DEBUG_FS |
| 1363 | mwifiex_dev_debugfs_remove(priv); |
| 1364 | #endif |
| 1365 | |
| 1366 | if (!netif_queue_stopped(priv->netdev)) |
| 1367 | netif_stop_queue(priv->netdev); |
| 1368 | |
| 1369 | if (netif_carrier_ok(priv->netdev)) |
| 1370 | netif_carrier_off(priv->netdev); |
| 1371 | |
| 1372 | if (dev->reg_state == NETREG_REGISTERED) |
| 1373 | unregister_netdevice(dev); |
| 1374 | |
| 1375 | if (dev->reg_state == NETREG_UNREGISTERED) |
| 1376 | free_netdev(dev); |
| 1377 | |
| 1378 | /* Clear the priv in adapter */ |
| 1379 | priv->netdev = NULL; |
| 1380 | |
| 1381 | priv->media_connected = false; |
| 1382 | |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1383 | priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED; |
| 1384 | |
| 1385 | return 0; |
| 1386 | } |
| 1387 | EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf); |
| 1388 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1389 | /* station cfg80211 operations */ |
| 1390 | static struct cfg80211_ops mwifiex_cfg80211_ops = { |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1391 | .add_virtual_intf = mwifiex_add_virtual_intf, |
| 1392 | .del_virtual_intf = mwifiex_del_virtual_intf, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1393 | .change_virtual_intf = mwifiex_cfg80211_change_virtual_intf, |
| 1394 | .scan = mwifiex_cfg80211_scan, |
| 1395 | .connect = mwifiex_cfg80211_connect, |
| 1396 | .disconnect = mwifiex_cfg80211_disconnect, |
| 1397 | .get_station = mwifiex_cfg80211_get_station, |
Amitkumar Karwar | f85aae6 | 2012-03-15 20:51:48 -0700 | [diff] [blame] | 1398 | .dump_station = mwifiex_cfg80211_dump_station, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1399 | .set_wiphy_params = mwifiex_cfg80211_set_wiphy_params, |
| 1400 | .set_channel = mwifiex_cfg80211_set_channel, |
| 1401 | .join_ibss = mwifiex_cfg80211_join_ibss, |
| 1402 | .leave_ibss = mwifiex_cfg80211_leave_ibss, |
| 1403 | .add_key = mwifiex_cfg80211_add_key, |
| 1404 | .del_key = mwifiex_cfg80211_del_key, |
| 1405 | .set_default_key = mwifiex_cfg80211_set_default_key, |
| 1406 | .set_power_mgmt = mwifiex_cfg80211_set_power_mgmt, |
| 1407 | .set_tx_power = mwifiex_cfg80211_set_tx_power, |
Yogesh Ashok Powar | 5d82c53 | 2011-07-11 20:04:44 -0700 | [diff] [blame] | 1408 | .set_bitrate_mask = mwifiex_cfg80211_set_bitrate_mask, |
Amitkumar Karwar | fa444bf | 2012-03-15 20:51:51 -0700 | [diff] [blame^] | 1409 | .set_cqm_rssi_config = mwifiex_cfg80211_set_cqm_rssi_config, |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1410 | }; |
| 1411 | |
| 1412 | /* |
| 1413 | * This function registers the device with CFG802.11 subsystem. |
| 1414 | * |
| 1415 | * The function creates the wireless device/wiphy, populates it with |
| 1416 | * default parameters and handler function pointers, and finally |
| 1417 | * registers the device. |
| 1418 | */ |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1419 | int mwifiex_register_cfg80211(struct mwifiex_private *priv) |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1420 | { |
Yogesh Ashok Powar | 270e58e | 2011-05-03 20:11:46 -0700 | [diff] [blame] | 1421 | int ret; |
| 1422 | void *wdev_priv; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1423 | struct wireless_dev *wdev; |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1424 | struct ieee80211_sta_ht_cap *ht_info; |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1425 | |
| 1426 | wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL); |
| 1427 | if (!wdev) { |
| 1428 | dev_err(priv->adapter->dev, "%s: allocating wireless device\n", |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1429 | __func__); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1430 | return -ENOMEM; |
| 1431 | } |
| 1432 | wdev->wiphy = |
| 1433 | wiphy_new(&mwifiex_cfg80211_ops, |
| 1434 | sizeof(struct mwifiex_private *)); |
Christoph Fritz | b53575e | 2011-05-08 22:50:09 +0200 | [diff] [blame] | 1435 | if (!wdev->wiphy) { |
| 1436 | kfree(wdev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1437 | return -ENOMEM; |
Christoph Fritz | b53575e | 2011-05-08 22:50:09 +0200 | [diff] [blame] | 1438 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1439 | wdev->iftype = NL80211_IFTYPE_STATION; |
| 1440 | wdev->wiphy->max_scan_ssids = 10; |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1441 | wdev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
| 1442 | BIT(NL80211_IFTYPE_ADHOC); |
Amitkumar Karwar | adc8959 | 2011-04-27 19:13:11 -0700 | [diff] [blame] | 1443 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1444 | wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = &mwifiex_band_2ghz; |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1445 | ht_info = &wdev->wiphy->bands[IEEE80211_BAND_2GHZ]->ht_cap; |
| 1446 | mwifiex_setup_ht_caps(ht_info, priv); |
Amitkumar Karwar | adc8959 | 2011-04-27 19:13:11 -0700 | [diff] [blame] | 1447 | |
| 1448 | if (priv->adapter->config_bands & BAND_A) { |
| 1449 | wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = &mwifiex_band_5ghz; |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1450 | ht_info = &wdev->wiphy->bands[IEEE80211_BAND_5GHZ]->ht_cap; |
| 1451 | mwifiex_setup_ht_caps(ht_info, priv); |
Amitkumar Karwar | adc8959 | 2011-04-27 19:13:11 -0700 | [diff] [blame] | 1452 | } else { |
| 1453 | wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL; |
| 1454 | } |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1455 | |
| 1456 | /* Initialize cipher suits */ |
| 1457 | wdev->wiphy->cipher_suites = mwifiex_cipher_suites; |
| 1458 | wdev->wiphy->n_cipher_suites = ARRAY_SIZE(mwifiex_cipher_suites); |
| 1459 | |
Yogesh Ashok Powar | 93a1df4 | 2011-09-26 20:37:26 -0700 | [diff] [blame] | 1460 | memcpy(wdev->wiphy->perm_addr, priv->curr_addr, ETH_ALEN); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1461 | wdev->wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM; |
| 1462 | |
Amitkumar Karwar | 5116f3c | 2011-09-21 21:43:23 -0700 | [diff] [blame] | 1463 | /* Reserve space for bss band information */ |
| 1464 | wdev->wiphy->bss_priv_size = sizeof(u8); |
| 1465 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1466 | wdev->wiphy->reg_notifier = mwifiex_reg_notifier; |
| 1467 | |
| 1468 | /* Set struct mwifiex_private pointer in wiphy_priv */ |
| 1469 | wdev_priv = wiphy_priv(wdev->wiphy); |
| 1470 | |
| 1471 | *(unsigned long *) wdev_priv = (unsigned long) priv; |
| 1472 | |
Yogesh Ashok Powar | a7b2116 | 2011-06-13 09:49:27 +0530 | [diff] [blame] | 1473 | set_wiphy_dev(wdev->wiphy, (struct device *) priv->adapter->dev); |
| 1474 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1475 | ret = wiphy_register(wdev->wiphy); |
| 1476 | if (ret < 0) { |
| 1477 | dev_err(priv->adapter->dev, "%s: registering cfg80211 device\n", |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1478 | __func__); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1479 | wiphy_free(wdev->wiphy); |
Christoph Fritz | b53575e | 2011-05-08 22:50:09 +0200 | [diff] [blame] | 1480 | kfree(wdev); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1481 | return ret; |
| 1482 | } else { |
| 1483 | dev_dbg(priv->adapter->dev, |
Yogesh Ashok Powar | aea0701 | 2012-03-13 19:22:35 -0700 | [diff] [blame] | 1484 | "info: successfully registered wiphy device\n"); |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1485 | } |
| 1486 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1487 | priv->wdev = wdev; |
| 1488 | |
Bing Zhao | 5e6e3a9 | 2011-03-21 18:00:50 -0700 | [diff] [blame] | 1489 | return ret; |
| 1490 | } |