cfg80211.c 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426
  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. #include "cfg80211.h"
  20. #include "main.h"
  21. /*
  22. * This function maps the nl802.11 channel type into driver channel type.
  23. *
  24. * The mapping is as follows -
  25. * NL80211_CHAN_NO_HT -> NO_SEC_CHANNEL
  26. * NL80211_CHAN_HT20 -> NO_SEC_CHANNEL
  27. * NL80211_CHAN_HT40PLUS -> SEC_CHANNEL_ABOVE
  28. * NL80211_CHAN_HT40MINUS -> SEC_CHANNEL_BELOW
  29. * Others -> NO_SEC_CHANNEL
  30. */
  31. static int
  32. mwifiex_cfg80211_channel_type_to_mwifiex_channels(enum nl80211_channel_type
  33. channel_type)
  34. {
  35. switch (channel_type) {
  36. case NL80211_CHAN_NO_HT:
  37. case NL80211_CHAN_HT20:
  38. return NO_SEC_CHANNEL;
  39. case NL80211_CHAN_HT40PLUS:
  40. return SEC_CHANNEL_ABOVE;
  41. case NL80211_CHAN_HT40MINUS:
  42. return SEC_CHANNEL_BELOW;
  43. default:
  44. return NO_SEC_CHANNEL;
  45. }
  46. }
  47. /*
  48. * This function maps the driver channel type into nl802.11 channel type.
  49. *
  50. * The mapping is as follows -
  51. * NO_SEC_CHANNEL -> NL80211_CHAN_HT20
  52. * SEC_CHANNEL_ABOVE -> NL80211_CHAN_HT40PLUS
  53. * SEC_CHANNEL_BELOW -> NL80211_CHAN_HT40MINUS
  54. * Others -> NL80211_CHAN_HT20
  55. */
  56. static enum nl80211_channel_type
  57. mwifiex_channels_to_cfg80211_channel_type(int channel_type)
  58. {
  59. switch (channel_type) {
  60. case NO_SEC_CHANNEL:
  61. return NL80211_CHAN_HT20;
  62. case SEC_CHANNEL_ABOVE:
  63. return NL80211_CHAN_HT40PLUS;
  64. case SEC_CHANNEL_BELOW:
  65. return NL80211_CHAN_HT40MINUS;
  66. default:
  67. return NL80211_CHAN_HT20;
  68. }
  69. }
  70. /*
  71. * This function checks whether WEP is set.
  72. */
  73. static int
  74. mwifiex_is_alg_wep(u32 cipher)
  75. {
  76. switch (cipher) {
  77. case WLAN_CIPHER_SUITE_WEP40:
  78. case WLAN_CIPHER_SUITE_WEP104:
  79. return 1;
  80. default:
  81. break;
  82. }
  83. return 0;
  84. }
  85. /*
  86. * This function retrieves the private structure from kernel wiphy structure.
  87. */
  88. static void *mwifiex_cfg80211_get_priv(struct wiphy *wiphy)
  89. {
  90. return (void *) (*(unsigned long *) wiphy_priv(wiphy));
  91. }
  92. /*
  93. * CFG802.11 operation handler to delete a network key.
  94. */
  95. static int
  96. mwifiex_cfg80211_del_key(struct wiphy *wiphy, struct net_device *netdev,
  97. u8 key_index, bool pairwise, const u8 *mac_addr)
  98. {
  99. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  100. if (mwifiex_set_encode(priv, NULL, 0, key_index, 1)) {
  101. wiphy_err(wiphy, "deleting the crypto keys\n");
  102. return -EFAULT;
  103. }
  104. wiphy_dbg(wiphy, "info: crypto keys deleted\n");
  105. return 0;
  106. }
  107. /*
  108. * CFG802.11 operation handler to set Tx power.
  109. */
  110. static int
  111. mwifiex_cfg80211_set_tx_power(struct wiphy *wiphy,
  112. enum nl80211_tx_power_setting type,
  113. int mbm)
  114. {
  115. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  116. struct mwifiex_power_cfg power_cfg;
  117. int dbm = MBM_TO_DBM(mbm);
  118. if (type == NL80211_TX_POWER_FIXED) {
  119. power_cfg.is_power_auto = 0;
  120. power_cfg.power_level = dbm;
  121. } else {
  122. power_cfg.is_power_auto = 1;
  123. }
  124. return mwifiex_set_tx_power(priv, &power_cfg);
  125. }
  126. /*
  127. * CFG802.11 operation handler to set Power Save option.
  128. *
  129. * The timeout value, if provided, is currently ignored.
  130. */
  131. static int
  132. mwifiex_cfg80211_set_power_mgmt(struct wiphy *wiphy,
  133. struct net_device *dev,
  134. bool enabled, int timeout)
  135. {
  136. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  137. u32 ps_mode;
  138. if (timeout)
  139. wiphy_dbg(wiphy,
  140. "info: ignoring the timeout value"
  141. " for IEEE power save\n");
  142. ps_mode = enabled;
  143. return mwifiex_drv_set_power(priv, &ps_mode);
  144. }
  145. /*
  146. * CFG802.11 operation handler to set the default network key.
  147. */
  148. static int
  149. mwifiex_cfg80211_set_default_key(struct wiphy *wiphy, struct net_device *netdev,
  150. u8 key_index, bool unicast,
  151. bool multicast)
  152. {
  153. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  154. /* Return if WEP key not configured */
  155. if (priv->sec_info.wep_status == MWIFIEX_802_11_WEP_DISABLED)
  156. return 0;
  157. if (mwifiex_set_encode(priv, NULL, 0, key_index, 0)) {
  158. wiphy_err(wiphy, "set default Tx key index\n");
  159. return -EFAULT;
  160. }
  161. return 0;
  162. }
  163. /*
  164. * CFG802.11 operation handler to add a network key.
  165. */
  166. static int
  167. mwifiex_cfg80211_add_key(struct wiphy *wiphy, struct net_device *netdev,
  168. u8 key_index, bool pairwise, const u8 *mac_addr,
  169. struct key_params *params)
  170. {
  171. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  172. if (mwifiex_set_encode(priv, params->key, params->key_len,
  173. key_index, 0)) {
  174. wiphy_err(wiphy, "crypto keys added\n");
  175. return -EFAULT;
  176. }
  177. return 0;
  178. }
  179. /*
  180. * This function sends domain information to the firmware.
  181. *
  182. * The following information are passed to the firmware -
  183. * - Country codes
  184. * - Sub bands (first channel, number of channels, maximum Tx power)
  185. */
  186. static int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy)
  187. {
  188. u8 no_of_triplet = 0;
  189. struct ieee80211_country_ie_triplet *t;
  190. u8 no_of_parsed_chan = 0;
  191. u8 first_chan = 0, next_chan = 0, max_pwr = 0;
  192. u8 i, flag = 0;
  193. enum ieee80211_band band;
  194. struct ieee80211_supported_band *sband;
  195. struct ieee80211_channel *ch;
  196. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  197. struct mwifiex_adapter *adapter = priv->adapter;
  198. struct mwifiex_802_11d_domain_reg *domain_info = &adapter->domain_reg;
  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. band = mwifiex_band_to_radio_type(adapter->config_bands);
  204. if (!wiphy->bands[band]) {
  205. wiphy_err(wiphy, "11D: setting domain info in FW\n");
  206. return -1;
  207. }
  208. sband = wiphy->bands[band];
  209. for (i = 0; i < sband->n_channels ; i++) {
  210. ch = &sband->channels[i];
  211. if (ch->flags & IEEE80211_CHAN_DISABLED)
  212. continue;
  213. if (!flag) {
  214. flag = 1;
  215. first_chan = (u32) ch->hw_value;
  216. next_chan = first_chan;
  217. max_pwr = ch->max_power;
  218. no_of_parsed_chan = 1;
  219. continue;
  220. }
  221. if (ch->hw_value == next_chan + 1 &&
  222. ch->max_power == max_pwr) {
  223. next_chan++;
  224. no_of_parsed_chan++;
  225. } else {
  226. t = &domain_info->triplet[no_of_triplet];
  227. t->chans.first_channel = first_chan;
  228. t->chans.num_channels = no_of_parsed_chan;
  229. t->chans.max_power = max_pwr;
  230. no_of_triplet++;
  231. first_chan = (u32) ch->hw_value;
  232. next_chan = first_chan;
  233. max_pwr = ch->max_power;
  234. no_of_parsed_chan = 1;
  235. }
  236. }
  237. if (flag) {
  238. t = &domain_info->triplet[no_of_triplet];
  239. t->chans.first_channel = first_chan;
  240. t->chans.num_channels = no_of_parsed_chan;
  241. t->chans.max_power = max_pwr;
  242. no_of_triplet++;
  243. }
  244. domain_info->no_of_triplet = no_of_triplet;
  245. if (mwifiex_send_cmd_async(priv, HostCmd_CMD_802_11D_DOMAIN_INFO,
  246. HostCmd_ACT_GEN_SET, 0, NULL)) {
  247. wiphy_err(wiphy, "11D: setting domain info in FW\n");
  248. return -1;
  249. }
  250. return 0;
  251. }
  252. /*
  253. * CFG802.11 regulatory domain callback function.
  254. *
  255. * This function is called when the regulatory domain is changed due to the
  256. * following reasons -
  257. * - Set by driver
  258. * - Set by system core
  259. * - Set by user
  260. * - Set bt Country IE
  261. */
  262. static int mwifiex_reg_notifier(struct wiphy *wiphy,
  263. struct regulatory_request *request)
  264. {
  265. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  266. wiphy_dbg(wiphy, "info: cfg80211 regulatory domain callback for domain"
  267. " %c%c\n", request->alpha2[0], request->alpha2[1]);
  268. memcpy(priv->country_code, request->alpha2, sizeof(request->alpha2));
  269. switch (request->initiator) {
  270. case NL80211_REGDOM_SET_BY_DRIVER:
  271. case NL80211_REGDOM_SET_BY_CORE:
  272. case NL80211_REGDOM_SET_BY_USER:
  273. break;
  274. /* Todo: apply driver specific changes in channel flags based
  275. on the request initiator if necessary. */
  276. case NL80211_REGDOM_SET_BY_COUNTRY_IE:
  277. break;
  278. }
  279. mwifiex_send_domain_info_cmd_fw(wiphy);
  280. return 0;
  281. }
  282. /*
  283. * This function sets the RF channel.
  284. *
  285. * This function creates multiple IOCTL requests, populates them accordingly
  286. * and issues them to set the band/channel and frequency.
  287. */
  288. static int
  289. mwifiex_set_rf_channel(struct mwifiex_private *priv,
  290. struct ieee80211_channel *chan,
  291. enum nl80211_channel_type channel_type)
  292. {
  293. struct mwifiex_chan_freq_power cfp;
  294. struct mwifiex_ds_band_cfg band_cfg;
  295. u32 config_bands = 0;
  296. struct wiphy *wiphy = priv->wdev->wiphy;
  297. if (chan) {
  298. memset(&band_cfg, 0, sizeof(band_cfg));
  299. /* Set appropriate bands */
  300. if (chan->band == IEEE80211_BAND_2GHZ)
  301. config_bands = BAND_B | BAND_G | BAND_GN;
  302. else
  303. config_bands = BAND_AN | BAND_A;
  304. if (priv->bss_mode == NL80211_IFTYPE_STATION
  305. || priv->bss_mode == NL80211_IFTYPE_UNSPECIFIED) {
  306. band_cfg.config_bands = config_bands;
  307. } else if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
  308. band_cfg.config_bands = config_bands;
  309. band_cfg.adhoc_start_band = config_bands;
  310. }
  311. band_cfg.sec_chan_offset =
  312. mwifiex_cfg80211_channel_type_to_mwifiex_channels
  313. (channel_type);
  314. if (mwifiex_set_radio_band_cfg(priv, &band_cfg))
  315. return -EFAULT;
  316. mwifiex_send_domain_info_cmd_fw(wiphy);
  317. }
  318. wiphy_dbg(wiphy, "info: setting band %d, channel offset %d and "
  319. "mode %d\n", config_bands, band_cfg.sec_chan_offset,
  320. priv->bss_mode);
  321. if (!chan)
  322. return 0;
  323. memset(&cfp, 0, sizeof(cfp));
  324. cfp.freq = chan->center_freq;
  325. cfp.channel = ieee80211_frequency_to_channel(chan->center_freq);
  326. if (mwifiex_bss_set_channel(priv, &cfp))
  327. return -EFAULT;
  328. return mwifiex_drv_change_adhoc_chan(priv, cfp.channel);
  329. }
  330. /*
  331. * CFG802.11 operation handler to set channel.
  332. *
  333. * This function can only be used when station is not connected.
  334. */
  335. static int
  336. mwifiex_cfg80211_set_channel(struct wiphy *wiphy, struct net_device *dev,
  337. struct ieee80211_channel *chan,
  338. enum nl80211_channel_type channel_type)
  339. {
  340. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  341. if (priv->media_connected) {
  342. wiphy_err(wiphy, "This setting is valid only when station "
  343. "is not connected\n");
  344. return -EINVAL;
  345. }
  346. return mwifiex_set_rf_channel(priv, chan, channel_type);
  347. }
  348. /*
  349. * This function sets the fragmentation threshold.
  350. *
  351. * The fragmentation threshold value must lie between MWIFIEX_FRAG_MIN_VALUE
  352. * and MWIFIEX_FRAG_MAX_VALUE.
  353. */
  354. static int
  355. mwifiex_set_frag(struct mwifiex_private *priv, u32 frag_thr)
  356. {
  357. int ret;
  358. if (frag_thr < MWIFIEX_FRAG_MIN_VALUE
  359. || frag_thr > MWIFIEX_FRAG_MAX_VALUE)
  360. return -EINVAL;
  361. /* Send request to firmware */
  362. ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB,
  363. HostCmd_ACT_GEN_SET, FRAG_THRESH_I,
  364. &frag_thr);
  365. return ret;
  366. }
  367. /*
  368. * This function sets the RTS threshold.
  369. * The rts value must lie between MWIFIEX_RTS_MIN_VALUE
  370. * and MWIFIEX_RTS_MAX_VALUE.
  371. */
  372. static int
  373. mwifiex_set_rts(struct mwifiex_private *priv, u32 rts_thr)
  374. {
  375. if (rts_thr < MWIFIEX_RTS_MIN_VALUE || rts_thr > MWIFIEX_RTS_MAX_VALUE)
  376. rts_thr = MWIFIEX_RTS_MAX_VALUE;
  377. return mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_SNMP_MIB,
  378. HostCmd_ACT_GEN_SET, RTS_THRESH_I,
  379. &rts_thr);
  380. }
  381. /*
  382. * CFG802.11 operation handler to set wiphy parameters.
  383. *
  384. * This function can be used to set the RTS threshold and the
  385. * Fragmentation threshold of the driver.
  386. */
  387. static int
  388. mwifiex_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
  389. {
  390. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  391. int ret = 0;
  392. if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
  393. ret = mwifiex_set_rts(priv, wiphy->rts_threshold);
  394. if (ret)
  395. return ret;
  396. }
  397. if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
  398. ret = mwifiex_set_frag(priv, wiphy->frag_threshold);
  399. return ret;
  400. }
  401. /*
  402. * CFG802.11 operation handler to change interface type.
  403. */
  404. static int
  405. mwifiex_cfg80211_change_virtual_intf(struct wiphy *wiphy,
  406. struct net_device *dev,
  407. enum nl80211_iftype type, u32 *flags,
  408. struct vif_params *params)
  409. {
  410. int ret;
  411. struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
  412. if (priv->bss_mode == type) {
  413. wiphy_warn(wiphy, "already set to required type\n");
  414. return 0;
  415. }
  416. priv->bss_mode = type;
  417. switch (type) {
  418. case NL80211_IFTYPE_ADHOC:
  419. dev->ieee80211_ptr->iftype = NL80211_IFTYPE_ADHOC;
  420. wiphy_dbg(wiphy, "info: setting interface type to adhoc\n");
  421. break;
  422. case NL80211_IFTYPE_STATION:
  423. dev->ieee80211_ptr->iftype = NL80211_IFTYPE_STATION;
  424. wiphy_dbg(wiphy, "info: setting interface type to managed\n");
  425. break;
  426. case NL80211_IFTYPE_UNSPECIFIED:
  427. dev->ieee80211_ptr->iftype = NL80211_IFTYPE_STATION;
  428. wiphy_dbg(wiphy, "info: setting interface type to auto\n");
  429. return 0;
  430. default:
  431. wiphy_err(wiphy, "unknown interface type: %d\n", type);
  432. return -EINVAL;
  433. }
  434. mwifiex_deauthenticate(priv, NULL);
  435. priv->sec_info.authentication_mode = NL80211_AUTHTYPE_OPEN_SYSTEM;
  436. ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_SET_BSS_MODE,
  437. HostCmd_ACT_GEN_SET, 0, NULL);
  438. return ret;
  439. }
  440. /*
  441. * This function dumps the station information on a buffer.
  442. *
  443. * The following information are shown -
  444. * - Total bytes transmitted
  445. * - Total bytes received
  446. * - Total packets transmitted
  447. * - Total packets received
  448. * - Signal quality level
  449. * - Transmission rate
  450. */
  451. static int
  452. mwifiex_dump_station_info(struct mwifiex_private *priv,
  453. struct station_info *sinfo)
  454. {
  455. struct mwifiex_ds_get_signal signal;
  456. struct mwifiex_rate_cfg rate;
  457. int ret = 0;
  458. sinfo->filled = STATION_INFO_RX_BYTES | STATION_INFO_TX_BYTES |
  459. STATION_INFO_RX_PACKETS |
  460. STATION_INFO_TX_PACKETS
  461. | STATION_INFO_SIGNAL | STATION_INFO_TX_BITRATE;
  462. /* Get signal information from the firmware */
  463. memset(&signal, 0, sizeof(struct mwifiex_ds_get_signal));
  464. if (mwifiex_get_signal_info(priv, &signal)) {
  465. dev_err(priv->adapter->dev, "getting signal information\n");
  466. ret = -EFAULT;
  467. }
  468. if (mwifiex_drv_get_data_rate(priv, &rate)) {
  469. dev_err(priv->adapter->dev, "getting data rate\n");
  470. ret = -EFAULT;
  471. }
  472. /*
  473. * Bit 0 in tx_htinfo indicates that current Tx rate is 11n rate. Valid
  474. * MCS index values for us are 0 to 7.
  475. */
  476. if ((priv->tx_htinfo & BIT(0)) && (priv->tx_rate < 8)) {
  477. sinfo->txrate.mcs = priv->tx_rate;
  478. sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
  479. /* 40MHz rate */
  480. if (priv->tx_htinfo & BIT(1))
  481. sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
  482. /* SGI enabled */
  483. if (priv->tx_htinfo & BIT(2))
  484. sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
  485. }
  486. sinfo->rx_bytes = priv->stats.rx_bytes;
  487. sinfo->tx_bytes = priv->stats.tx_bytes;
  488. sinfo->rx_packets = priv->stats.rx_packets;
  489. sinfo->tx_packets = priv->stats.tx_packets;
  490. sinfo->signal = priv->qual_level;
  491. /* bit rate is in 500 kb/s units. Convert it to 100kb/s units */
  492. sinfo->txrate.legacy = rate.rate * 5;
  493. return ret;
  494. }
  495. /*
  496. * CFG802.11 operation handler to get station information.
  497. *
  498. * This function only works in connected mode, and dumps the
  499. * requested station information, if available.
  500. */
  501. static int
  502. mwifiex_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
  503. u8 *mac, struct station_info *sinfo)
  504. {
  505. struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
  506. if (!priv->media_connected)
  507. return -ENOENT;
  508. if (memcmp(mac, priv->cfg_bssid, ETH_ALEN))
  509. return -ENOENT;
  510. return mwifiex_dump_station_info(priv, sinfo);
  511. }
  512. /* Supported rates to be advertised to the cfg80211 */
  513. static struct ieee80211_rate mwifiex_rates[] = {
  514. {.bitrate = 10, .hw_value = 2, },
  515. {.bitrate = 20, .hw_value = 4, },
  516. {.bitrate = 55, .hw_value = 11, },
  517. {.bitrate = 110, .hw_value = 22, },
  518. {.bitrate = 220, .hw_value = 44, },
  519. {.bitrate = 60, .hw_value = 12, },
  520. {.bitrate = 90, .hw_value = 18, },
  521. {.bitrate = 120, .hw_value = 24, },
  522. {.bitrate = 180, .hw_value = 36, },
  523. {.bitrate = 240, .hw_value = 48, },
  524. {.bitrate = 360, .hw_value = 72, },
  525. {.bitrate = 480, .hw_value = 96, },
  526. {.bitrate = 540, .hw_value = 108, },
  527. {.bitrate = 720, .hw_value = 144, },
  528. };
  529. /* Channel definitions to be advertised to cfg80211 */
  530. static struct ieee80211_channel mwifiex_channels_2ghz[] = {
  531. {.center_freq = 2412, .hw_value = 1, },
  532. {.center_freq = 2417, .hw_value = 2, },
  533. {.center_freq = 2422, .hw_value = 3, },
  534. {.center_freq = 2427, .hw_value = 4, },
  535. {.center_freq = 2432, .hw_value = 5, },
  536. {.center_freq = 2437, .hw_value = 6, },
  537. {.center_freq = 2442, .hw_value = 7, },
  538. {.center_freq = 2447, .hw_value = 8, },
  539. {.center_freq = 2452, .hw_value = 9, },
  540. {.center_freq = 2457, .hw_value = 10, },
  541. {.center_freq = 2462, .hw_value = 11, },
  542. {.center_freq = 2467, .hw_value = 12, },
  543. {.center_freq = 2472, .hw_value = 13, },
  544. {.center_freq = 2484, .hw_value = 14, },
  545. };
  546. static struct ieee80211_supported_band mwifiex_band_2ghz = {
  547. .channels = mwifiex_channels_2ghz,
  548. .n_channels = ARRAY_SIZE(mwifiex_channels_2ghz),
  549. .bitrates = mwifiex_rates,
  550. .n_bitrates = 14,
  551. };
  552. static struct ieee80211_channel mwifiex_channels_5ghz[] = {
  553. {.center_freq = 5040, .hw_value = 8, },
  554. {.center_freq = 5060, .hw_value = 12, },
  555. {.center_freq = 5080, .hw_value = 16, },
  556. {.center_freq = 5170, .hw_value = 34, },
  557. {.center_freq = 5190, .hw_value = 38, },
  558. {.center_freq = 5210, .hw_value = 42, },
  559. {.center_freq = 5230, .hw_value = 46, },
  560. {.center_freq = 5180, .hw_value = 36, },
  561. {.center_freq = 5200, .hw_value = 40, },
  562. {.center_freq = 5220, .hw_value = 44, },
  563. {.center_freq = 5240, .hw_value = 48, },
  564. {.center_freq = 5260, .hw_value = 52, },
  565. {.center_freq = 5280, .hw_value = 56, },
  566. {.center_freq = 5300, .hw_value = 60, },
  567. {.center_freq = 5320, .hw_value = 64, },
  568. {.center_freq = 5500, .hw_value = 100, },
  569. {.center_freq = 5520, .hw_value = 104, },
  570. {.center_freq = 5540, .hw_value = 108, },
  571. {.center_freq = 5560, .hw_value = 112, },
  572. {.center_freq = 5580, .hw_value = 116, },
  573. {.center_freq = 5600, .hw_value = 120, },
  574. {.center_freq = 5620, .hw_value = 124, },
  575. {.center_freq = 5640, .hw_value = 128, },
  576. {.center_freq = 5660, .hw_value = 132, },
  577. {.center_freq = 5680, .hw_value = 136, },
  578. {.center_freq = 5700, .hw_value = 140, },
  579. {.center_freq = 5745, .hw_value = 149, },
  580. {.center_freq = 5765, .hw_value = 153, },
  581. {.center_freq = 5785, .hw_value = 157, },
  582. {.center_freq = 5805, .hw_value = 161, },
  583. {.center_freq = 5825, .hw_value = 165, },
  584. };
  585. static struct ieee80211_supported_band mwifiex_band_5ghz = {
  586. .channels = mwifiex_channels_5ghz,
  587. .n_channels = ARRAY_SIZE(mwifiex_channels_5ghz),
  588. .bitrates = mwifiex_rates - 4,
  589. .n_bitrates = ARRAY_SIZE(mwifiex_rates) + 4,
  590. };
  591. /* Supported crypto cipher suits to be advertised to cfg80211 */
  592. static const u32 mwifiex_cipher_suites[] = {
  593. WLAN_CIPHER_SUITE_WEP40,
  594. WLAN_CIPHER_SUITE_WEP104,
  595. WLAN_CIPHER_SUITE_TKIP,
  596. WLAN_CIPHER_SUITE_CCMP,
  597. };
  598. /*
  599. * CFG802.11 operation handler for setting bit rates.
  600. *
  601. * Function selects legacy bang B/G/BG from corresponding bitrates selection.
  602. * Currently only 2.4GHz band is supported.
  603. */
  604. static int mwifiex_cfg80211_set_bitrate_mask(struct wiphy *wiphy,
  605. struct net_device *dev,
  606. const u8 *peer,
  607. const struct cfg80211_bitrate_mask *mask)
  608. {
  609. struct mwifiex_ds_band_cfg band_cfg;
  610. struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
  611. int index = 0, mode = 0, i;
  612. /* Currently only 2.4GHz is supported */
  613. for (i = 0; i < mwifiex_band_2ghz.n_bitrates; i++) {
  614. /*
  615. * Rates below 6 Mbps in the table are CCK rates; 802.11b
  616. * and from 6 they are OFDM; 802.11G
  617. */
  618. if (mwifiex_rates[i].bitrate == 60) {
  619. index = 1 << i;
  620. break;
  621. }
  622. }
  623. if (mask->control[IEEE80211_BAND_2GHZ].legacy < index) {
  624. mode = BAND_B;
  625. } else {
  626. mode = BAND_G;
  627. if (mask->control[IEEE80211_BAND_2GHZ].legacy % index)
  628. mode |= BAND_B;
  629. }
  630. memset(&band_cfg, 0, sizeof(band_cfg));
  631. band_cfg.config_bands = mode;
  632. if (priv->bss_mode == NL80211_IFTYPE_ADHOC)
  633. band_cfg.adhoc_start_band = mode;
  634. band_cfg.sec_chan_offset = NO_SEC_CHANNEL;
  635. if (mwifiex_set_radio_band_cfg(priv, &band_cfg))
  636. return -EFAULT;
  637. wiphy_debug(wiphy, "info: device configured in 802.11%s%s mode\n",
  638. (mode & BAND_B) ? "b" : "",
  639. (mode & BAND_G) ? "g" : "");
  640. return 0;
  641. }
  642. /*
  643. * CFG802.11 operation handler for disconnection request.
  644. *
  645. * This function does not work when there is already a disconnection
  646. * procedure going on.
  647. */
  648. static int
  649. mwifiex_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *dev,
  650. u16 reason_code)
  651. {
  652. struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
  653. if (mwifiex_deauthenticate(priv, NULL))
  654. return -EFAULT;
  655. wiphy_dbg(wiphy, "info: successfully disconnected from %pM:"
  656. " reason code %d\n", priv->cfg_bssid, reason_code);
  657. memset(priv->cfg_bssid, 0, ETH_ALEN);
  658. return 0;
  659. }
  660. /*
  661. * This function informs the CFG802.11 subsystem of a new IBSS.
  662. *
  663. * The following information are sent to the CFG802.11 subsystem
  664. * to register the new IBSS. If we do not register the new IBSS,
  665. * a kernel panic will result.
  666. * - SSID
  667. * - SSID length
  668. * - BSSID
  669. * - Channel
  670. */
  671. static int mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private *priv)
  672. {
  673. struct ieee80211_channel *chan;
  674. struct mwifiex_bss_info bss_info;
  675. struct cfg80211_bss *bss;
  676. int ie_len;
  677. u8 ie_buf[IEEE80211_MAX_SSID_LEN + sizeof(struct ieee_types_header)];
  678. enum ieee80211_band band;
  679. if (mwifiex_get_bss_info(priv, &bss_info))
  680. return -1;
  681. ie_buf[0] = WLAN_EID_SSID;
  682. ie_buf[1] = bss_info.ssid.ssid_len;
  683. memcpy(&ie_buf[sizeof(struct ieee_types_header)],
  684. &bss_info.ssid.ssid,
  685. bss_info.ssid.ssid_len);
  686. ie_len = ie_buf[1] + sizeof(struct ieee_types_header);
  687. band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
  688. chan = __ieee80211_get_channel(priv->wdev->wiphy,
  689. ieee80211_channel_to_frequency(bss_info.bss_chan,
  690. band));
  691. bss = cfg80211_inform_bss(priv->wdev->wiphy, chan,
  692. bss_info.bssid, 0, WLAN_CAPABILITY_IBSS,
  693. 0, ie_buf, ie_len, 0, GFP_KERNEL);
  694. cfg80211_put_bss(bss);
  695. memcpy(priv->cfg_bssid, bss_info.bssid, ETH_ALEN);
  696. return 0;
  697. }
  698. /*
  699. * This function connects with a BSS.
  700. *
  701. * This function handles both Infra and Ad-Hoc modes. It also performs
  702. * validity checking on the provided parameters, disconnects from the
  703. * current BSS (if any), sets up the association/scan parameters,
  704. * including security settings, and performs specific SSID scan before
  705. * trying to connect.
  706. *
  707. * For Infra mode, the function returns failure if the specified SSID
  708. * is not found in scan table. However, for Ad-Hoc mode, it can create
  709. * the IBSS if it does not exist. On successful completion in either case,
  710. * the function notifies the CFG802.11 subsystem of the new BSS connection.
  711. */
  712. static int
  713. mwifiex_cfg80211_assoc(struct mwifiex_private *priv, size_t ssid_len, u8 *ssid,
  714. u8 *bssid, int mode, struct ieee80211_channel *channel,
  715. struct cfg80211_connect_params *sme, bool privacy)
  716. {
  717. struct mwifiex_802_11_ssid req_ssid;
  718. int ret, auth_type = 0;
  719. struct cfg80211_bss *bss = NULL;
  720. u8 is_scanning_required = 0;
  721. memset(&req_ssid, 0, sizeof(struct mwifiex_802_11_ssid));
  722. req_ssid.ssid_len = ssid_len;
  723. if (ssid_len > IEEE80211_MAX_SSID_LEN) {
  724. dev_err(priv->adapter->dev, "invalid SSID - aborting\n");
  725. return -EINVAL;
  726. }
  727. memcpy(req_ssid.ssid, ssid, ssid_len);
  728. if (!req_ssid.ssid_len || req_ssid.ssid[0] < 0x20) {
  729. dev_err(priv->adapter->dev, "invalid SSID - aborting\n");
  730. return -EINVAL;
  731. }
  732. /* disconnect before try to associate */
  733. mwifiex_deauthenticate(priv, NULL);
  734. if (channel)
  735. ret = mwifiex_set_rf_channel(priv, channel,
  736. mwifiex_channels_to_cfg80211_channel_type
  737. (priv->adapter->chan_offset));
  738. ret = mwifiex_set_encode(priv, NULL, 0, 0, 1); /* Disable keys */
  739. if (mode == NL80211_IFTYPE_ADHOC) {
  740. /* "privacy" is set only for ad-hoc mode */
  741. if (privacy) {
  742. /*
  743. * Keep WLAN_CIPHER_SUITE_WEP104 for now so that
  744. * the firmware can find a matching network from the
  745. * scan. The cfg80211 does not give us the encryption
  746. * mode at this stage so just setting it to WEP here.
  747. */
  748. priv->sec_info.encryption_mode =
  749. WLAN_CIPHER_SUITE_WEP104;
  750. priv->sec_info.authentication_mode =
  751. NL80211_AUTHTYPE_OPEN_SYSTEM;
  752. }
  753. goto done;
  754. }
  755. /* Now handle infra mode. "sme" is valid for infra mode only */
  756. if (sme->auth_type == NL80211_AUTHTYPE_AUTOMATIC
  757. || sme->auth_type == NL80211_AUTHTYPE_OPEN_SYSTEM)
  758. auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM;
  759. else if (sme->auth_type == NL80211_AUTHTYPE_SHARED_KEY)
  760. auth_type = NL80211_AUTHTYPE_SHARED_KEY;
  761. if (sme->crypto.n_ciphers_pairwise) {
  762. priv->sec_info.encryption_mode =
  763. sme->crypto.ciphers_pairwise[0];
  764. priv->sec_info.authentication_mode = auth_type;
  765. }
  766. if (sme->crypto.cipher_group) {
  767. priv->sec_info.encryption_mode = sme->crypto.cipher_group;
  768. priv->sec_info.authentication_mode = auth_type;
  769. }
  770. if (sme->ie)
  771. ret = mwifiex_set_gen_ie(priv, sme->ie, sme->ie_len);
  772. if (sme->key) {
  773. if (mwifiex_is_alg_wep(priv->sec_info.encryption_mode)) {
  774. dev_dbg(priv->adapter->dev,
  775. "info: setting wep encryption"
  776. " with key len %d\n", sme->key_len);
  777. ret = mwifiex_set_encode(priv, sme->key, sme->key_len,
  778. sme->key_idx, 0);
  779. }
  780. }
  781. done:
  782. /* Do specific SSID scanning */
  783. if (mwifiex_request_scan(priv, &req_ssid)) {
  784. dev_err(priv->adapter->dev, "scan error\n");
  785. return -EFAULT;
  786. }
  787. /*
  788. * Scan entries are valid for some time (15 sec). So we can save one
  789. * active scan time if we just try cfg80211_get_bss first. If it fails
  790. * then request scan and cfg80211_get_bss() again for final output.
  791. */
  792. while (1) {
  793. if (is_scanning_required) {
  794. /* Do specific SSID scanning */
  795. if (mwifiex_request_scan(priv, &req_ssid)) {
  796. dev_err(priv->adapter->dev, "scan error\n");
  797. return -EFAULT;
  798. }
  799. }
  800. /* Find the BSS we want using available scan results */
  801. if (mode == NL80211_IFTYPE_ADHOC)
  802. bss = cfg80211_get_bss(priv->wdev->wiphy, channel,
  803. bssid, ssid, ssid_len,
  804. WLAN_CAPABILITY_IBSS,
  805. WLAN_CAPABILITY_IBSS);
  806. else
  807. bss = cfg80211_get_bss(priv->wdev->wiphy, channel,
  808. bssid, ssid, ssid_len,
  809. WLAN_CAPABILITY_ESS,
  810. WLAN_CAPABILITY_ESS);
  811. if (!bss) {
  812. if (is_scanning_required) {
  813. dev_warn(priv->adapter->dev, "assoc: requested "
  814. "bss not found in scan results\n");
  815. break;
  816. }
  817. is_scanning_required = 1;
  818. } else {
  819. dev_dbg(priv->adapter->dev, "info: trying to associate to %s and bssid %pM\n",
  820. (char *) req_ssid.ssid, bss->bssid);
  821. memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN);
  822. break;
  823. }
  824. }
  825. if (mwifiex_bss_start(priv, bss, &req_ssid))
  826. return -EFAULT;
  827. if (mode == NL80211_IFTYPE_ADHOC) {
  828. /* Inform the BSS information to kernel, otherwise
  829. * kernel will give a panic after successful assoc */
  830. if (mwifiex_cfg80211_inform_ibss_bss(priv))
  831. return -EFAULT;
  832. }
  833. return ret;
  834. }
  835. /*
  836. * CFG802.11 operation handler for association request.
  837. *
  838. * This function does not work when the current mode is set to Ad-Hoc, or
  839. * when there is already an association procedure going on. The given BSS
  840. * information is used to associate.
  841. */
  842. static int
  843. mwifiex_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
  844. struct cfg80211_connect_params *sme)
  845. {
  846. struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
  847. int ret = 0;
  848. if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
  849. wiphy_err(wiphy, "received infra assoc request "
  850. "when station is in ibss mode\n");
  851. goto done;
  852. }
  853. wiphy_dbg(wiphy, "info: Trying to associate to %s and bssid %pM\n",
  854. (char *) sme->ssid, sme->bssid);
  855. ret = mwifiex_cfg80211_assoc(priv, sme->ssid_len, sme->ssid, sme->bssid,
  856. priv->bss_mode, sme->channel, sme, 0);
  857. done:
  858. if (!ret) {
  859. cfg80211_connect_result(priv->netdev, priv->cfg_bssid, NULL, 0,
  860. NULL, 0, WLAN_STATUS_SUCCESS,
  861. GFP_KERNEL);
  862. dev_dbg(priv->adapter->dev,
  863. "info: associated to bssid %pM successfully\n",
  864. priv->cfg_bssid);
  865. } else {
  866. dev_dbg(priv->adapter->dev,
  867. "info: association to bssid %pM failed\n",
  868. priv->cfg_bssid);
  869. memset(priv->cfg_bssid, 0, ETH_ALEN);
  870. }
  871. return ret;
  872. }
  873. /*
  874. * CFG802.11 operation handler to join an IBSS.
  875. *
  876. * This function does not work in any mode other than Ad-Hoc, or if
  877. * a join operation is already in progress.
  878. */
  879. static int
  880. mwifiex_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
  881. struct cfg80211_ibss_params *params)
  882. {
  883. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  884. int ret = 0;
  885. if (priv->bss_mode != NL80211_IFTYPE_ADHOC) {
  886. wiphy_err(wiphy, "request to join ibss received "
  887. "when station is not in ibss mode\n");
  888. goto done;
  889. }
  890. wiphy_dbg(wiphy, "info: trying to join to %s and bssid %pM\n",
  891. (char *) params->ssid, params->bssid);
  892. ret = mwifiex_cfg80211_assoc(priv, params->ssid_len, params->ssid,
  893. params->bssid, priv->bss_mode,
  894. params->channel, NULL, params->privacy);
  895. done:
  896. if (!ret) {
  897. cfg80211_ibss_joined(priv->netdev, priv->cfg_bssid, GFP_KERNEL);
  898. dev_dbg(priv->adapter->dev,
  899. "info: joined/created adhoc network with bssid"
  900. " %pM successfully\n", priv->cfg_bssid);
  901. } else {
  902. dev_dbg(priv->adapter->dev,
  903. "info: failed creating/joining adhoc network\n");
  904. }
  905. return ret;
  906. }
  907. /*
  908. * CFG802.11 operation handler to leave an IBSS.
  909. *
  910. * This function does not work if a leave operation is
  911. * already in progress.
  912. */
  913. static int
  914. mwifiex_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
  915. {
  916. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  917. wiphy_dbg(wiphy, "info: disconnecting from essid %pM\n",
  918. priv->cfg_bssid);
  919. if (mwifiex_deauthenticate(priv, NULL))
  920. return -EFAULT;
  921. memset(priv->cfg_bssid, 0, ETH_ALEN);
  922. return 0;
  923. }
  924. /*
  925. * CFG802.11 operation handler for scan request.
  926. *
  927. * This function issues a scan request to the firmware based upon
  928. * the user specified scan configuration. On successfull completion,
  929. * it also informs the results.
  930. */
  931. static int
  932. mwifiex_cfg80211_scan(struct wiphy *wiphy, struct net_device *dev,
  933. struct cfg80211_scan_request *request)
  934. {
  935. struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
  936. int i;
  937. struct ieee80211_channel *chan;
  938. wiphy_dbg(wiphy, "info: received scan request on %s\n", dev->name);
  939. priv->scan_request = request;
  940. priv->user_scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg),
  941. GFP_KERNEL);
  942. if (!priv->user_scan_cfg) {
  943. dev_err(priv->adapter->dev, "failed to alloc scan_req\n");
  944. return -ENOMEM;
  945. }
  946. for (i = 0; i < request->n_ssids; i++) {
  947. memcpy(priv->user_scan_cfg->ssid_list[i].ssid,
  948. request->ssids[i].ssid, request->ssids[i].ssid_len);
  949. priv->user_scan_cfg->ssid_list[i].max_len =
  950. request->ssids[i].ssid_len;
  951. }
  952. for (i = 0; i < request->n_channels; i++) {
  953. chan = request->channels[i];
  954. priv->user_scan_cfg->chan_list[i].chan_number = chan->hw_value;
  955. priv->user_scan_cfg->chan_list[i].radio_type = chan->band;
  956. if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)
  957. priv->user_scan_cfg->chan_list[i].scan_type =
  958. MWIFIEX_SCAN_TYPE_PASSIVE;
  959. else
  960. priv->user_scan_cfg->chan_list[i].scan_type =
  961. MWIFIEX_SCAN_TYPE_ACTIVE;
  962. priv->user_scan_cfg->chan_list[i].scan_time = 0;
  963. }
  964. if (mwifiex_set_user_scan_ioctl(priv, priv->user_scan_cfg))
  965. return -EFAULT;
  966. return 0;
  967. }
  968. /*
  969. * This function sets up the CFG802.11 specific HT capability fields
  970. * with default values.
  971. *
  972. * The following default values are set -
  973. * - HT Supported = True
  974. * - Maximum AMPDU length factor = IEEE80211_HT_MAX_AMPDU_64K
  975. * - Minimum AMPDU spacing = IEEE80211_HT_MPDU_DENSITY_NONE
  976. * - HT Capabilities supported by firmware
  977. * - MCS information, Rx mask = 0xff
  978. * - MCD information, Tx parameters = IEEE80211_HT_MCS_TX_DEFINED (0x01)
  979. */
  980. static void
  981. mwifiex_setup_ht_caps(struct ieee80211_sta_ht_cap *ht_info,
  982. struct mwifiex_private *priv)
  983. {
  984. int rx_mcs_supp;
  985. struct ieee80211_mcs_info mcs_set;
  986. u8 *mcs = (u8 *)&mcs_set;
  987. struct mwifiex_adapter *adapter = priv->adapter;
  988. ht_info->ht_supported = true;
  989. ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
  990. ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
  991. memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
  992. /* Fill HT capability information */
  993. if (ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
  994. ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  995. else
  996. ht_info->cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  997. if (ISSUPP_SHORTGI20(adapter->hw_dot_11n_dev_cap))
  998. ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
  999. else
  1000. ht_info->cap &= ~IEEE80211_HT_CAP_SGI_20;
  1001. if (ISSUPP_SHORTGI40(adapter->hw_dot_11n_dev_cap))
  1002. ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
  1003. else
  1004. ht_info->cap &= ~IEEE80211_HT_CAP_SGI_40;
  1005. if (ISSUPP_RXSTBC(adapter->hw_dot_11n_dev_cap))
  1006. ht_info->cap |= 1 << IEEE80211_HT_CAP_RX_STBC_SHIFT;
  1007. else
  1008. ht_info->cap &= ~(3 << IEEE80211_HT_CAP_RX_STBC_SHIFT);
  1009. if (ISSUPP_TXSTBC(adapter->hw_dot_11n_dev_cap))
  1010. ht_info->cap |= IEEE80211_HT_CAP_TX_STBC;
  1011. else
  1012. ht_info->cap &= ~IEEE80211_HT_CAP_TX_STBC;
  1013. ht_info->cap &= ~IEEE80211_HT_CAP_MAX_AMSDU;
  1014. ht_info->cap |= IEEE80211_HT_CAP_SM_PS;
  1015. rx_mcs_supp = GET_RXMCSSUPP(adapter->hw_dev_mcs_support);
  1016. /* Set MCS for 1x1 */
  1017. memset(mcs, 0xff, rx_mcs_supp);
  1018. /* Clear all the other values */
  1019. memset(&mcs[rx_mcs_supp], 0,
  1020. sizeof(struct ieee80211_mcs_info) - rx_mcs_supp);
  1021. if (priv->bss_mode == NL80211_IFTYPE_STATION ||
  1022. ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
  1023. /* Set MCS32 for infra mode or ad-hoc mode with 40MHz support */
  1024. SETHT_MCS32(mcs_set.rx_mask);
  1025. memcpy((u8 *) &ht_info->mcs, mcs, sizeof(struct ieee80211_mcs_info));
  1026. ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
  1027. }
  1028. /*
  1029. * create a new virtual interface with the given name
  1030. */
  1031. struct net_device *mwifiex_add_virtual_intf(struct wiphy *wiphy,
  1032. char *name,
  1033. enum nl80211_iftype type,
  1034. u32 *flags,
  1035. struct vif_params *params)
  1036. {
  1037. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  1038. struct mwifiex_adapter *adapter;
  1039. struct net_device *dev;
  1040. void *mdev_priv;
  1041. if (!priv)
  1042. return NULL;
  1043. adapter = priv->adapter;
  1044. if (!adapter)
  1045. return NULL;
  1046. switch (type) {
  1047. case NL80211_IFTYPE_UNSPECIFIED:
  1048. case NL80211_IFTYPE_STATION:
  1049. case NL80211_IFTYPE_ADHOC:
  1050. if (priv->bss_mode) {
  1051. wiphy_err(wiphy, "cannot create multiple"
  1052. " station/adhoc interfaces\n");
  1053. return NULL;
  1054. }
  1055. if (type == NL80211_IFTYPE_UNSPECIFIED)
  1056. priv->bss_mode = NL80211_IFTYPE_STATION;
  1057. else
  1058. priv->bss_mode = type;
  1059. priv->bss_type = MWIFIEX_BSS_TYPE_STA;
  1060. priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
  1061. priv->bss_priority = 0;
  1062. priv->bss_role = MWIFIEX_BSS_ROLE_STA;
  1063. priv->bss_index = 0;
  1064. priv->bss_num = 0;
  1065. break;
  1066. default:
  1067. wiphy_err(wiphy, "type not supported\n");
  1068. return NULL;
  1069. }
  1070. dev = alloc_netdev_mq(sizeof(struct mwifiex_private *), name,
  1071. ether_setup, 1);
  1072. if (!dev) {
  1073. wiphy_err(wiphy, "no memory available for netdevice\n");
  1074. goto error;
  1075. }
  1076. dev_net_set(dev, wiphy_net(wiphy));
  1077. dev->ieee80211_ptr = priv->wdev;
  1078. dev->ieee80211_ptr->iftype = priv->bss_mode;
  1079. memcpy(dev->dev_addr, wiphy->perm_addr, ETH_ALEN);
  1080. memcpy(dev->perm_addr, wiphy->perm_addr, ETH_ALEN);
  1081. SET_NETDEV_DEV(dev, wiphy_dev(wiphy));
  1082. dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
  1083. dev->watchdog_timeo = MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT;
  1084. dev->hard_header_len += MWIFIEX_MIN_DATA_HEADER_LEN;
  1085. mdev_priv = netdev_priv(dev);
  1086. *((unsigned long *) mdev_priv) = (unsigned long) priv;
  1087. priv->netdev = dev;
  1088. mwifiex_init_priv_params(priv, dev);
  1089. SET_NETDEV_DEV(dev, adapter->dev);
  1090. /* Register network device */
  1091. if (register_netdevice(dev)) {
  1092. wiphy_err(wiphy, "cannot register virtual network device\n");
  1093. goto error;
  1094. }
  1095. sema_init(&priv->async_sem, 1);
  1096. priv->scan_pending_on_block = false;
  1097. dev_dbg(adapter->dev, "info: %s: Marvell 802.11 Adapter\n", dev->name);
  1098. #ifdef CONFIG_DEBUG_FS
  1099. mwifiex_dev_debugfs_init(priv);
  1100. #endif
  1101. return dev;
  1102. error:
  1103. if (dev && (dev->reg_state == NETREG_UNREGISTERED))
  1104. free_netdev(dev);
  1105. priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
  1106. return NULL;
  1107. }
  1108. EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf);
  1109. /*
  1110. * del_virtual_intf: remove the virtual interface determined by dev
  1111. */
  1112. int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct net_device *dev)
  1113. {
  1114. struct mwifiex_private *priv = mwifiex_cfg80211_get_priv(wiphy);
  1115. if (!priv || !dev)
  1116. return 0;
  1117. #ifdef CONFIG_DEBUG_FS
  1118. mwifiex_dev_debugfs_remove(priv);
  1119. #endif
  1120. if (!netif_queue_stopped(priv->netdev))
  1121. netif_stop_queue(priv->netdev);
  1122. if (netif_carrier_ok(priv->netdev))
  1123. netif_carrier_off(priv->netdev);
  1124. if (dev->reg_state == NETREG_REGISTERED)
  1125. unregister_netdevice(dev);
  1126. if (dev->reg_state == NETREG_UNREGISTERED)
  1127. free_netdev(dev);
  1128. /* Clear the priv in adapter */
  1129. priv->netdev = NULL;
  1130. priv->media_connected = false;
  1131. priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
  1132. return 0;
  1133. }
  1134. EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf);
  1135. /* station cfg80211 operations */
  1136. static struct cfg80211_ops mwifiex_cfg80211_ops = {
  1137. .add_virtual_intf = mwifiex_add_virtual_intf,
  1138. .del_virtual_intf = mwifiex_del_virtual_intf,
  1139. .change_virtual_intf = mwifiex_cfg80211_change_virtual_intf,
  1140. .scan = mwifiex_cfg80211_scan,
  1141. .connect = mwifiex_cfg80211_connect,
  1142. .disconnect = mwifiex_cfg80211_disconnect,
  1143. .get_station = mwifiex_cfg80211_get_station,
  1144. .set_wiphy_params = mwifiex_cfg80211_set_wiphy_params,
  1145. .set_channel = mwifiex_cfg80211_set_channel,
  1146. .join_ibss = mwifiex_cfg80211_join_ibss,
  1147. .leave_ibss = mwifiex_cfg80211_leave_ibss,
  1148. .add_key = mwifiex_cfg80211_add_key,
  1149. .del_key = mwifiex_cfg80211_del_key,
  1150. .set_default_key = mwifiex_cfg80211_set_default_key,
  1151. .set_power_mgmt = mwifiex_cfg80211_set_power_mgmt,
  1152. .set_tx_power = mwifiex_cfg80211_set_tx_power,
  1153. .set_bitrate_mask = mwifiex_cfg80211_set_bitrate_mask,
  1154. };
  1155. /*
  1156. * This function registers the device with CFG802.11 subsystem.
  1157. *
  1158. * The function creates the wireless device/wiphy, populates it with
  1159. * default parameters and handler function pointers, and finally
  1160. * registers the device.
  1161. */
  1162. int mwifiex_register_cfg80211(struct mwifiex_private *priv)
  1163. {
  1164. int ret;
  1165. void *wdev_priv;
  1166. struct wireless_dev *wdev;
  1167. wdev = kzalloc(sizeof(struct wireless_dev), GFP_KERNEL);
  1168. if (!wdev) {
  1169. dev_err(priv->adapter->dev, "%s: allocating wireless device\n",
  1170. __func__);
  1171. return -ENOMEM;
  1172. }
  1173. wdev->wiphy =
  1174. wiphy_new(&mwifiex_cfg80211_ops,
  1175. sizeof(struct mwifiex_private *));
  1176. if (!wdev->wiphy) {
  1177. kfree(wdev);
  1178. return -ENOMEM;
  1179. }
  1180. wdev->iftype = NL80211_IFTYPE_STATION;
  1181. wdev->wiphy->max_scan_ssids = 10;
  1182. wdev->wiphy->interface_modes =
  1183. BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC);
  1184. wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = &mwifiex_band_2ghz;
  1185. mwifiex_setup_ht_caps(
  1186. &wdev->wiphy->bands[IEEE80211_BAND_2GHZ]->ht_cap, priv);
  1187. if (priv->adapter->config_bands & BAND_A) {
  1188. wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = &mwifiex_band_5ghz;
  1189. mwifiex_setup_ht_caps(
  1190. &wdev->wiphy->bands[IEEE80211_BAND_5GHZ]->ht_cap, priv);
  1191. } else {
  1192. wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL;
  1193. }
  1194. /* Initialize cipher suits */
  1195. wdev->wiphy->cipher_suites = mwifiex_cipher_suites;
  1196. wdev->wiphy->n_cipher_suites = ARRAY_SIZE(mwifiex_cipher_suites);
  1197. memcpy(wdev->wiphy->perm_addr, priv->curr_addr, ETH_ALEN);
  1198. wdev->wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
  1199. /* Reserve space for bss band information */
  1200. wdev->wiphy->bss_priv_size = sizeof(u8);
  1201. wdev->wiphy->reg_notifier = mwifiex_reg_notifier;
  1202. /* Set struct mwifiex_private pointer in wiphy_priv */
  1203. wdev_priv = wiphy_priv(wdev->wiphy);
  1204. *(unsigned long *) wdev_priv = (unsigned long) priv;
  1205. set_wiphy_dev(wdev->wiphy, (struct device *) priv->adapter->dev);
  1206. ret = wiphy_register(wdev->wiphy);
  1207. if (ret < 0) {
  1208. dev_err(priv->adapter->dev, "%s: registering cfg80211 device\n",
  1209. __func__);
  1210. wiphy_free(wdev->wiphy);
  1211. kfree(wdev);
  1212. return ret;
  1213. } else {
  1214. dev_dbg(priv->adapter->dev,
  1215. "info: successfully registered wiphy device\n");
  1216. }
  1217. priv->wdev = wdev;
  1218. return ret;
  1219. }