lib.c 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300
  1. /******************************************************************************
  2. *
  3. * GPL LICENSE SUMMARY
  4. *
  5. * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of version 2 of the GNU General Public License as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  19. * USA
  20. *
  21. * The full GNU General Public License is included in this distribution
  22. * in the file called COPYING.
  23. *
  24. * Contact Information:
  25. * Intel Linux Wireless <ilw@linux.intel.com>
  26. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  27. *
  28. *****************************************************************************/
  29. #include <linux/etherdevice.h>
  30. #include <linux/kernel.h>
  31. #include <linux/module.h>
  32. #include <linux/sched.h>
  33. #include <net/mac80211.h>
  34. #include "iwl-io.h"
  35. #include "iwl-agn-hw.h"
  36. #include "iwl-trans.h"
  37. #include "iwl-modparams.h"
  38. #include "dev.h"
  39. #include "agn.h"
  40. int iwlagn_hw_valid_rtc_data_addr(u32 addr)
  41. {
  42. return (addr >= IWLAGN_RTC_DATA_LOWER_BOUND) &&
  43. (addr < IWLAGN_RTC_DATA_UPPER_BOUND);
  44. }
  45. int iwlagn_send_tx_power(struct iwl_priv *priv)
  46. {
  47. struct iwlagn_tx_power_dbm_cmd tx_power_cmd;
  48. u8 tx_ant_cfg_cmd;
  49. if (WARN_ONCE(test_bit(STATUS_SCAN_HW, &priv->status),
  50. "TX Power requested while scanning!\n"))
  51. return -EAGAIN;
  52. /* half dBm need to multiply */
  53. tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt);
  54. if (tx_power_cmd.global_lmt > priv->nvm_data->max_tx_pwr_half_dbm) {
  55. /*
  56. * For the newer devices which using enhanced/extend tx power
  57. * table in EEPROM, the format is in half dBm. driver need to
  58. * convert to dBm format before report to mac80211.
  59. * By doing so, there is a possibility of 1/2 dBm resolution
  60. * lost. driver will perform "round-up" operation before
  61. * reporting, but it will cause 1/2 dBm tx power over the
  62. * regulatory limit. Perform the checking here, if the
  63. * "tx_power_user_lmt" is higher than EEPROM value (in
  64. * half-dBm format), lower the tx power based on EEPROM
  65. */
  66. tx_power_cmd.global_lmt =
  67. priv->nvm_data->max_tx_pwr_half_dbm;
  68. }
  69. tx_power_cmd.flags = IWLAGN_TX_POWER_NO_CLOSED;
  70. tx_power_cmd.srv_chan_lmt = IWLAGN_TX_POWER_AUTO;
  71. if (IWL_UCODE_API(priv->fw->ucode_ver) == 1)
  72. tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD_V1;
  73. else
  74. tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD;
  75. return iwl_dvm_send_cmd_pdu(priv, tx_ant_cfg_cmd, 0,
  76. sizeof(tx_power_cmd), &tx_power_cmd);
  77. }
  78. void iwlagn_temperature(struct iwl_priv *priv)
  79. {
  80. lockdep_assert_held(&priv->statistics.lock);
  81. /* store temperature from correct statistics (in Celsius) */
  82. priv->temperature = le32_to_cpu(priv->statistics.common.temperature);
  83. iwl_tt_handler(priv);
  84. }
  85. int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
  86. {
  87. int idx = 0;
  88. int band_offset = 0;
  89. /* HT rate format: mac80211 wants an MCS number, which is just LSB */
  90. if (rate_n_flags & RATE_MCS_HT_MSK) {
  91. idx = (rate_n_flags & 0xff);
  92. return idx;
  93. /* Legacy rate format, search for match in table */
  94. } else {
  95. if (band == IEEE80211_BAND_5GHZ)
  96. band_offset = IWL_FIRST_OFDM_RATE;
  97. for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
  98. if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
  99. return idx - band_offset;
  100. }
  101. return -1;
  102. }
  103. int iwlagn_manage_ibss_station(struct iwl_priv *priv,
  104. struct ieee80211_vif *vif, bool add)
  105. {
  106. struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
  107. if (add)
  108. return iwlagn_add_bssid_station(priv, vif_priv->ctx,
  109. vif->bss_conf.bssid,
  110. &vif_priv->ibss_bssid_sta_id);
  111. return iwl_remove_station(priv, vif_priv->ibss_bssid_sta_id,
  112. vif->bss_conf.bssid);
  113. }
  114. /**
  115. * iwlagn_txfifo_flush: send REPLY_TXFIFO_FLUSH command to uCode
  116. *
  117. * pre-requirements:
  118. * 1. acquire mutex before calling
  119. * 2. make sure rf is on and not in exit state
  120. */
  121. int iwlagn_txfifo_flush(struct iwl_priv *priv, u32 scd_q_msk)
  122. {
  123. struct iwl_txfifo_flush_cmd_v3 flush_cmd_v3 = {
  124. .flush_control = cpu_to_le16(IWL_DROP_ALL),
  125. };
  126. struct iwl_txfifo_flush_cmd_v2 flush_cmd_v2 = {
  127. .flush_control = cpu_to_le16(IWL_DROP_ALL),
  128. };
  129. u32 queue_control = IWL_SCD_VO_MSK | IWL_SCD_VI_MSK |
  130. IWL_SCD_BE_MSK | IWL_SCD_BK_MSK | IWL_SCD_MGMT_MSK;
  131. if ((priv->valid_contexts != BIT(IWL_RXON_CTX_BSS)))
  132. queue_control |= IWL_PAN_SCD_VO_MSK | IWL_PAN_SCD_VI_MSK |
  133. IWL_PAN_SCD_BE_MSK | IWL_PAN_SCD_BK_MSK |
  134. IWL_PAN_SCD_MGMT_MSK |
  135. IWL_PAN_SCD_MULTICAST_MSK;
  136. if (priv->nvm_data->sku_cap_11n_enable)
  137. queue_control |= IWL_AGG_TX_QUEUE_MSK;
  138. if (scd_q_msk)
  139. queue_control = scd_q_msk;
  140. IWL_DEBUG_INFO(priv, "queue control: 0x%x\n", queue_control);
  141. flush_cmd_v3.queue_control = cpu_to_le32(queue_control);
  142. flush_cmd_v2.queue_control = cpu_to_le16((u16)queue_control);
  143. if (IWL_UCODE_API(priv->fw->ucode_ver) > 2)
  144. return iwl_dvm_send_cmd_pdu(priv, REPLY_TXFIFO_FLUSH, 0,
  145. sizeof(flush_cmd_v3),
  146. &flush_cmd_v3);
  147. return iwl_dvm_send_cmd_pdu(priv, REPLY_TXFIFO_FLUSH, 0,
  148. sizeof(flush_cmd_v2), &flush_cmd_v2);
  149. }
  150. void iwlagn_dev_txfifo_flush(struct iwl_priv *priv)
  151. {
  152. mutex_lock(&priv->mutex);
  153. ieee80211_stop_queues(priv->hw);
  154. if (iwlagn_txfifo_flush(priv, 0)) {
  155. IWL_ERR(priv, "flush request fail\n");
  156. goto done;
  157. }
  158. IWL_DEBUG_INFO(priv, "wait transmit/flush all frames\n");
  159. iwl_trans_wait_tx_queue_empty(priv->trans, 0xffffffff);
  160. done:
  161. ieee80211_wake_queues(priv->hw);
  162. mutex_unlock(&priv->mutex);
  163. }
  164. /*
  165. * BT coex
  166. */
  167. /* Notmal TDM */
  168. static const __le32 iwlagn_def_3w_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = {
  169. cpu_to_le32(0xaaaaaaaa),
  170. cpu_to_le32(0xaaaaaaaa),
  171. cpu_to_le32(0xaeaaaaaa),
  172. cpu_to_le32(0xaaaaaaaa),
  173. cpu_to_le32(0xcc00ff28),
  174. cpu_to_le32(0x0000aaaa),
  175. cpu_to_le32(0xcc00aaaa),
  176. cpu_to_le32(0x0000aaaa),
  177. cpu_to_le32(0xc0004000),
  178. cpu_to_le32(0x00004000),
  179. cpu_to_le32(0xf0005000),
  180. cpu_to_le32(0xf0005000),
  181. };
  182. /* Loose Coex */
  183. static const __le32 iwlagn_loose_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = {
  184. cpu_to_le32(0xaaaaaaaa),
  185. cpu_to_le32(0xaaaaaaaa),
  186. cpu_to_le32(0xaeaaaaaa),
  187. cpu_to_le32(0xaaaaaaaa),
  188. cpu_to_le32(0xcc00ff28),
  189. cpu_to_le32(0x0000aaaa),
  190. cpu_to_le32(0xcc00aaaa),
  191. cpu_to_le32(0x0000aaaa),
  192. cpu_to_le32(0x00000000),
  193. cpu_to_le32(0x00000000),
  194. cpu_to_le32(0xf0005000),
  195. cpu_to_le32(0xf0005000),
  196. };
  197. /* Full concurrency */
  198. static const __le32 iwlagn_concurrent_lookup[IWLAGN_BT_DECISION_LUT_SIZE] = {
  199. cpu_to_le32(0xaaaaaaaa),
  200. cpu_to_le32(0xaaaaaaaa),
  201. cpu_to_le32(0xaaaaaaaa),
  202. cpu_to_le32(0xaaaaaaaa),
  203. cpu_to_le32(0xaaaaaaaa),
  204. cpu_to_le32(0xaaaaaaaa),
  205. cpu_to_le32(0xaaaaaaaa),
  206. cpu_to_le32(0xaaaaaaaa),
  207. cpu_to_le32(0x00000000),
  208. cpu_to_le32(0x00000000),
  209. cpu_to_le32(0x00000000),
  210. cpu_to_le32(0x00000000),
  211. };
  212. void iwlagn_send_advance_bt_config(struct iwl_priv *priv)
  213. {
  214. struct iwl_basic_bt_cmd basic = {
  215. .max_kill = IWLAGN_BT_MAX_KILL_DEFAULT,
  216. .bt3_timer_t7_value = IWLAGN_BT3_T7_DEFAULT,
  217. .bt3_prio_sample_time = IWLAGN_BT3_PRIO_SAMPLE_DEFAULT,
  218. .bt3_timer_t2_value = IWLAGN_BT3_T2_DEFAULT,
  219. };
  220. struct iwl_bt_cmd_v1 bt_cmd_v1;
  221. struct iwl_bt_cmd_v2 bt_cmd_v2;
  222. int ret;
  223. BUILD_BUG_ON(sizeof(iwlagn_def_3w_lookup) !=
  224. sizeof(basic.bt3_lookup_table));
  225. if (priv->lib->bt_params) {
  226. /*
  227. * newer generation of devices (2000 series and newer)
  228. * use the version 2 of the bt command
  229. * we need to make sure sending the host command
  230. * with correct data structure to avoid uCode assert
  231. */
  232. if (priv->lib->bt_params->bt_session_2) {
  233. bt_cmd_v2.prio_boost = cpu_to_le32(
  234. priv->lib->bt_params->bt_prio_boost);
  235. bt_cmd_v2.tx_prio_boost = 0;
  236. bt_cmd_v2.rx_prio_boost = 0;
  237. } else {
  238. /* older version only has 8 bits */
  239. WARN_ON(priv->lib->bt_params->bt_prio_boost & ~0xFF);
  240. bt_cmd_v1.prio_boost =
  241. priv->lib->bt_params->bt_prio_boost;
  242. bt_cmd_v1.tx_prio_boost = 0;
  243. bt_cmd_v1.rx_prio_boost = 0;
  244. }
  245. } else {
  246. IWL_ERR(priv, "failed to construct BT Coex Config\n");
  247. return;
  248. }
  249. /*
  250. * Possible situations when BT needs to take over for receive,
  251. * at the same time where STA needs to response to AP's frame(s),
  252. * reduce the tx power of the required response frames, by that,
  253. * allow the concurrent BT receive & WiFi transmit
  254. * (BT - ANT A, WiFi -ANT B), without interference to one another
  255. *
  256. * Reduced tx power apply to control frames only (ACK/Back/CTS)
  257. * when indicated by the BT config command
  258. */
  259. basic.kill_ack_mask = priv->kill_ack_mask;
  260. basic.kill_cts_mask = priv->kill_cts_mask;
  261. if (priv->reduced_txpower)
  262. basic.reduce_txpower = IWLAGN_BT_REDUCED_TX_PWR;
  263. basic.valid = priv->bt_valid;
  264. /*
  265. * Configure BT coex mode to "no coexistence" when the
  266. * user disabled BT coexistence, we have no interface
  267. * (might be in monitor mode), or the interface is in
  268. * IBSS mode (no proper uCode support for coex then).
  269. */
  270. if (!iwlwifi_mod_params.bt_coex_active ||
  271. priv->iw_mode == NL80211_IFTYPE_ADHOC) {
  272. basic.flags = IWLAGN_BT_FLAG_COEX_MODE_DISABLED;
  273. } else {
  274. basic.flags = IWLAGN_BT_FLAG_COEX_MODE_3W <<
  275. IWLAGN_BT_FLAG_COEX_MODE_SHIFT;
  276. if (!priv->bt_enable_pspoll)
  277. basic.flags |= IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
  278. else
  279. basic.flags &= ~IWLAGN_BT_FLAG_SYNC_2_BT_DISABLE;
  280. if (priv->bt_ch_announce)
  281. basic.flags |= IWLAGN_BT_FLAG_CHANNEL_INHIBITION;
  282. IWL_DEBUG_COEX(priv, "BT coex flag: 0X%x\n", basic.flags);
  283. }
  284. priv->bt_enable_flag = basic.flags;
  285. if (priv->bt_full_concurrent)
  286. memcpy(basic.bt3_lookup_table, iwlagn_concurrent_lookup,
  287. sizeof(iwlagn_concurrent_lookup));
  288. else
  289. memcpy(basic.bt3_lookup_table, iwlagn_def_3w_lookup,
  290. sizeof(iwlagn_def_3w_lookup));
  291. IWL_DEBUG_COEX(priv, "BT coex %s in %s mode\n",
  292. basic.flags ? "active" : "disabled",
  293. priv->bt_full_concurrent ?
  294. "full concurrency" : "3-wire");
  295. if (priv->lib->bt_params->bt_session_2) {
  296. memcpy(&bt_cmd_v2.basic, &basic,
  297. sizeof(basic));
  298. ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG,
  299. 0, sizeof(bt_cmd_v2), &bt_cmd_v2);
  300. } else {
  301. memcpy(&bt_cmd_v1.basic, &basic,
  302. sizeof(basic));
  303. ret = iwl_dvm_send_cmd_pdu(priv, REPLY_BT_CONFIG,
  304. 0, sizeof(bt_cmd_v1), &bt_cmd_v1);
  305. }
  306. if (ret)
  307. IWL_ERR(priv, "failed to send BT Coex Config\n");
  308. }
  309. void iwlagn_bt_adjust_rssi_monitor(struct iwl_priv *priv, bool rssi_ena)
  310. {
  311. struct iwl_rxon_context *ctx, *found_ctx = NULL;
  312. bool found_ap = false;
  313. lockdep_assert_held(&priv->mutex);
  314. /* Check whether AP or GO mode is active. */
  315. if (rssi_ena) {
  316. for_each_context(priv, ctx) {
  317. if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_AP &&
  318. iwl_is_associated_ctx(ctx)) {
  319. found_ap = true;
  320. break;
  321. }
  322. }
  323. }
  324. /*
  325. * If disable was received or If GO/AP mode, disable RSSI
  326. * measurements.
  327. */
  328. if (!rssi_ena || found_ap) {
  329. if (priv->cur_rssi_ctx) {
  330. ctx = priv->cur_rssi_ctx;
  331. ieee80211_disable_rssi_reports(ctx->vif);
  332. priv->cur_rssi_ctx = NULL;
  333. }
  334. return;
  335. }
  336. /*
  337. * If rssi measurements need to be enabled, consider all cases now.
  338. * Figure out how many contexts are active.
  339. */
  340. for_each_context(priv, ctx) {
  341. if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION &&
  342. iwl_is_associated_ctx(ctx)) {
  343. found_ctx = ctx;
  344. break;
  345. }
  346. }
  347. /*
  348. * rssi monitor already enabled for the correct interface...nothing
  349. * to do.
  350. */
  351. if (found_ctx == priv->cur_rssi_ctx)
  352. return;
  353. /*
  354. * Figure out if rssi monitor is currently enabled, and needs
  355. * to be changed. If rssi monitor is already enabled, disable
  356. * it first else just enable rssi measurements on the
  357. * interface found above.
  358. */
  359. if (priv->cur_rssi_ctx) {
  360. ctx = priv->cur_rssi_ctx;
  361. if (ctx->vif)
  362. ieee80211_disable_rssi_reports(ctx->vif);
  363. }
  364. priv->cur_rssi_ctx = found_ctx;
  365. if (!found_ctx)
  366. return;
  367. ieee80211_enable_rssi_reports(found_ctx->vif,
  368. IWLAGN_BT_PSP_MIN_RSSI_THRESHOLD,
  369. IWLAGN_BT_PSP_MAX_RSSI_THRESHOLD);
  370. }
  371. static bool iwlagn_bt_traffic_is_sco(struct iwl_bt_uart_msg *uart_msg)
  372. {
  373. return (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3) >>
  374. BT_UART_MSG_FRAME3SCOESCO_POS;
  375. }
  376. static void iwlagn_bt_traffic_change_work(struct work_struct *work)
  377. {
  378. struct iwl_priv *priv =
  379. container_of(work, struct iwl_priv, bt_traffic_change_work);
  380. struct iwl_rxon_context *ctx;
  381. int smps_request = -1;
  382. if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
  383. /* bt coex disabled */
  384. return;
  385. }
  386. /*
  387. * Note: bt_traffic_load can be overridden by scan complete and
  388. * coex profile notifications. Ignore that since only bad consequence
  389. * can be not matching debug print with actual state.
  390. */
  391. IWL_DEBUG_COEX(priv, "BT traffic load changes: %d\n",
  392. priv->bt_traffic_load);
  393. switch (priv->bt_traffic_load) {
  394. case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
  395. if (priv->bt_status)
  396. smps_request = IEEE80211_SMPS_DYNAMIC;
  397. else
  398. smps_request = IEEE80211_SMPS_AUTOMATIC;
  399. break;
  400. case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
  401. smps_request = IEEE80211_SMPS_DYNAMIC;
  402. break;
  403. case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
  404. case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
  405. smps_request = IEEE80211_SMPS_STATIC;
  406. break;
  407. default:
  408. IWL_ERR(priv, "Invalid BT traffic load: %d\n",
  409. priv->bt_traffic_load);
  410. break;
  411. }
  412. mutex_lock(&priv->mutex);
  413. /*
  414. * We can not send command to firmware while scanning. When the scan
  415. * complete we will schedule this work again. We do check with mutex
  416. * locked to prevent new scan request to arrive. We do not check
  417. * STATUS_SCANNING to avoid race when queue_work two times from
  418. * different notifications, but quit and not perform any work at all.
  419. */
  420. if (test_bit(STATUS_SCAN_HW, &priv->status))
  421. goto out;
  422. iwl_update_chain_flags(priv);
  423. if (smps_request != -1) {
  424. priv->current_ht_config.smps = smps_request;
  425. for_each_context(priv, ctx) {
  426. if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION)
  427. ieee80211_request_smps(ctx->vif, smps_request);
  428. }
  429. }
  430. /*
  431. * Dynamic PS poll related functionality. Adjust RSSI measurements if
  432. * necessary.
  433. */
  434. iwlagn_bt_coex_rssi_monitor(priv);
  435. out:
  436. mutex_unlock(&priv->mutex);
  437. }
  438. /*
  439. * If BT sco traffic, and RSSI monitor is enabled, move measurements to the
  440. * correct interface or disable it if this is the last interface to be
  441. * removed.
  442. */
  443. void iwlagn_bt_coex_rssi_monitor(struct iwl_priv *priv)
  444. {
  445. if (priv->bt_is_sco &&
  446. priv->bt_traffic_load == IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS)
  447. iwlagn_bt_adjust_rssi_monitor(priv, true);
  448. else
  449. iwlagn_bt_adjust_rssi_monitor(priv, false);
  450. }
  451. static void iwlagn_print_uartmsg(struct iwl_priv *priv,
  452. struct iwl_bt_uart_msg *uart_msg)
  453. {
  454. IWL_DEBUG_COEX(priv, "Message Type = 0x%X, SSN = 0x%X, "
  455. "Update Req = 0x%X\n",
  456. (BT_UART_MSG_FRAME1MSGTYPE_MSK & uart_msg->frame1) >>
  457. BT_UART_MSG_FRAME1MSGTYPE_POS,
  458. (BT_UART_MSG_FRAME1SSN_MSK & uart_msg->frame1) >>
  459. BT_UART_MSG_FRAME1SSN_POS,
  460. (BT_UART_MSG_FRAME1UPDATEREQ_MSK & uart_msg->frame1) >>
  461. BT_UART_MSG_FRAME1UPDATEREQ_POS);
  462. IWL_DEBUG_COEX(priv, "Open connections = 0x%X, Traffic load = 0x%X, "
  463. "Chl_SeqN = 0x%X, In band = 0x%X\n",
  464. (BT_UART_MSG_FRAME2OPENCONNECTIONS_MSK & uart_msg->frame2) >>
  465. BT_UART_MSG_FRAME2OPENCONNECTIONS_POS,
  466. (BT_UART_MSG_FRAME2TRAFFICLOAD_MSK & uart_msg->frame2) >>
  467. BT_UART_MSG_FRAME2TRAFFICLOAD_POS,
  468. (BT_UART_MSG_FRAME2CHLSEQN_MSK & uart_msg->frame2) >>
  469. BT_UART_MSG_FRAME2CHLSEQN_POS,
  470. (BT_UART_MSG_FRAME2INBAND_MSK & uart_msg->frame2) >>
  471. BT_UART_MSG_FRAME2INBAND_POS);
  472. IWL_DEBUG_COEX(priv, "SCO/eSCO = 0x%X, Sniff = 0x%X, A2DP = 0x%X, "
  473. "ACL = 0x%X, Master = 0x%X, OBEX = 0x%X\n",
  474. (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3) >>
  475. BT_UART_MSG_FRAME3SCOESCO_POS,
  476. (BT_UART_MSG_FRAME3SNIFF_MSK & uart_msg->frame3) >>
  477. BT_UART_MSG_FRAME3SNIFF_POS,
  478. (BT_UART_MSG_FRAME3A2DP_MSK & uart_msg->frame3) >>
  479. BT_UART_MSG_FRAME3A2DP_POS,
  480. (BT_UART_MSG_FRAME3ACL_MSK & uart_msg->frame3) >>
  481. BT_UART_MSG_FRAME3ACL_POS,
  482. (BT_UART_MSG_FRAME3MASTER_MSK & uart_msg->frame3) >>
  483. BT_UART_MSG_FRAME3MASTER_POS,
  484. (BT_UART_MSG_FRAME3OBEX_MSK & uart_msg->frame3) >>
  485. BT_UART_MSG_FRAME3OBEX_POS);
  486. IWL_DEBUG_COEX(priv, "Idle duration = 0x%X\n",
  487. (BT_UART_MSG_FRAME4IDLEDURATION_MSK & uart_msg->frame4) >>
  488. BT_UART_MSG_FRAME4IDLEDURATION_POS);
  489. IWL_DEBUG_COEX(priv, "Tx Activity = 0x%X, Rx Activity = 0x%X, "
  490. "eSCO Retransmissions = 0x%X\n",
  491. (BT_UART_MSG_FRAME5TXACTIVITY_MSK & uart_msg->frame5) >>
  492. BT_UART_MSG_FRAME5TXACTIVITY_POS,
  493. (BT_UART_MSG_FRAME5RXACTIVITY_MSK & uart_msg->frame5) >>
  494. BT_UART_MSG_FRAME5RXACTIVITY_POS,
  495. (BT_UART_MSG_FRAME5ESCORETRANSMIT_MSK & uart_msg->frame5) >>
  496. BT_UART_MSG_FRAME5ESCORETRANSMIT_POS);
  497. IWL_DEBUG_COEX(priv, "Sniff Interval = 0x%X, Discoverable = 0x%X\n",
  498. (BT_UART_MSG_FRAME6SNIFFINTERVAL_MSK & uart_msg->frame6) >>
  499. BT_UART_MSG_FRAME6SNIFFINTERVAL_POS,
  500. (BT_UART_MSG_FRAME6DISCOVERABLE_MSK & uart_msg->frame6) >>
  501. BT_UART_MSG_FRAME6DISCOVERABLE_POS);
  502. IWL_DEBUG_COEX(priv, "Sniff Activity = 0x%X, Page = "
  503. "0x%X, Inquiry = 0x%X, Connectable = 0x%X\n",
  504. (BT_UART_MSG_FRAME7SNIFFACTIVITY_MSK & uart_msg->frame7) >>
  505. BT_UART_MSG_FRAME7SNIFFACTIVITY_POS,
  506. (BT_UART_MSG_FRAME7PAGE_MSK & uart_msg->frame7) >>
  507. BT_UART_MSG_FRAME7PAGE_POS,
  508. (BT_UART_MSG_FRAME7INQUIRY_MSK & uart_msg->frame7) >>
  509. BT_UART_MSG_FRAME7INQUIRY_POS,
  510. (BT_UART_MSG_FRAME7CONNECTABLE_MSK & uart_msg->frame7) >>
  511. BT_UART_MSG_FRAME7CONNECTABLE_POS);
  512. }
  513. static bool iwlagn_set_kill_msk(struct iwl_priv *priv,
  514. struct iwl_bt_uart_msg *uart_msg)
  515. {
  516. bool need_update = false;
  517. u8 kill_msk = IWL_BT_KILL_REDUCE;
  518. static const __le32 bt_kill_ack_msg[3] = {
  519. IWLAGN_BT_KILL_ACK_MASK_DEFAULT,
  520. IWLAGN_BT_KILL_ACK_CTS_MASK_SCO,
  521. IWLAGN_BT_KILL_ACK_CTS_MASK_REDUCE};
  522. static const __le32 bt_kill_cts_msg[3] = {
  523. IWLAGN_BT_KILL_CTS_MASK_DEFAULT,
  524. IWLAGN_BT_KILL_ACK_CTS_MASK_SCO,
  525. IWLAGN_BT_KILL_ACK_CTS_MASK_REDUCE};
  526. if (!priv->reduced_txpower)
  527. kill_msk = (BT_UART_MSG_FRAME3SCOESCO_MSK & uart_msg->frame3)
  528. ? IWL_BT_KILL_OVERRIDE : IWL_BT_KILL_DEFAULT;
  529. if (priv->kill_ack_mask != bt_kill_ack_msg[kill_msk] ||
  530. priv->kill_cts_mask != bt_kill_cts_msg[kill_msk]) {
  531. priv->bt_valid |= IWLAGN_BT_VALID_KILL_ACK_MASK;
  532. priv->kill_ack_mask = bt_kill_ack_msg[kill_msk];
  533. priv->bt_valid |= IWLAGN_BT_VALID_KILL_CTS_MASK;
  534. priv->kill_cts_mask = bt_kill_cts_msg[kill_msk];
  535. need_update = true;
  536. }
  537. return need_update;
  538. }
  539. /*
  540. * Upon RSSI changes, sends a bt config command with following changes
  541. * 1. enable/disable "reduced control frames tx power
  542. * 2. update the "kill)ack_mask" and "kill_cts_mask"
  543. *
  544. * If "reduced tx power" is enabled, uCode shall
  545. * 1. ACK/Back/CTS rate shall reduced to 6Mbps
  546. * 2. not use duplciate 20/40MHz mode
  547. */
  548. static bool iwlagn_fill_txpower_mode(struct iwl_priv *priv,
  549. struct iwl_bt_uart_msg *uart_msg)
  550. {
  551. bool need_update = false;
  552. struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
  553. int ave_rssi;
  554. if (!ctx->vif || (ctx->vif->type != NL80211_IFTYPE_STATION)) {
  555. IWL_DEBUG_INFO(priv, "BSS ctx not active or not in sta mode\n");
  556. return false;
  557. }
  558. ave_rssi = ieee80211_ave_rssi(ctx->vif);
  559. if (!ave_rssi) {
  560. /* no rssi data, no changes to reduce tx power */
  561. IWL_DEBUG_COEX(priv, "no rssi data available\n");
  562. return need_update;
  563. }
  564. if (!priv->reduced_txpower &&
  565. !iwl_is_associated(priv, IWL_RXON_CTX_PAN) &&
  566. (ave_rssi > BT_ENABLE_REDUCED_TXPOWER_THRESHOLD) &&
  567. (uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK |
  568. BT_UART_MSG_FRAME3OBEX_MSK)) &&
  569. !(uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK |
  570. BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK))) {
  571. /* enabling reduced tx power */
  572. priv->reduced_txpower = true;
  573. priv->bt_valid |= IWLAGN_BT_VALID_REDUCED_TX_PWR;
  574. need_update = true;
  575. } else if (priv->reduced_txpower &&
  576. (iwl_is_associated(priv, IWL_RXON_CTX_PAN) ||
  577. (ave_rssi < BT_DISABLE_REDUCED_TXPOWER_THRESHOLD) ||
  578. (uart_msg->frame3 & (BT_UART_MSG_FRAME3SCOESCO_MSK |
  579. BT_UART_MSG_FRAME3SNIFF_MSK | BT_UART_MSG_FRAME3A2DP_MSK)) ||
  580. !(uart_msg->frame3 & (BT_UART_MSG_FRAME3ACL_MSK |
  581. BT_UART_MSG_FRAME3OBEX_MSK)))) {
  582. /* disable reduced tx power */
  583. priv->reduced_txpower = false;
  584. priv->bt_valid |= IWLAGN_BT_VALID_REDUCED_TX_PWR;
  585. need_update = true;
  586. }
  587. return need_update;
  588. }
  589. static void iwlagn_bt_coex_profile_notif(struct iwl_priv *priv,
  590. struct iwl_rx_cmd_buffer *rxb)
  591. {
  592. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  593. struct iwl_bt_coex_profile_notif *coex = (void *)pkt->data;
  594. struct iwl_bt_uart_msg *uart_msg = &coex->last_bt_uart_msg;
  595. if (priv->bt_enable_flag == IWLAGN_BT_FLAG_COEX_MODE_DISABLED) {
  596. /* bt coex disabled */
  597. return;
  598. }
  599. IWL_DEBUG_COEX(priv, "BT Coex notification:\n");
  600. IWL_DEBUG_COEX(priv, " status: %d\n", coex->bt_status);
  601. IWL_DEBUG_COEX(priv, " traffic load: %d\n", coex->bt_traffic_load);
  602. IWL_DEBUG_COEX(priv, " CI compliance: %d\n",
  603. coex->bt_ci_compliance);
  604. iwlagn_print_uartmsg(priv, uart_msg);
  605. priv->last_bt_traffic_load = priv->bt_traffic_load;
  606. priv->bt_is_sco = iwlagn_bt_traffic_is_sco(uart_msg);
  607. if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
  608. if (priv->bt_status != coex->bt_status ||
  609. priv->last_bt_traffic_load != coex->bt_traffic_load) {
  610. if (coex->bt_status) {
  611. /* BT on */
  612. if (!priv->bt_ch_announce)
  613. priv->bt_traffic_load =
  614. IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
  615. else
  616. priv->bt_traffic_load =
  617. coex->bt_traffic_load;
  618. } else {
  619. /* BT off */
  620. priv->bt_traffic_load =
  621. IWL_BT_COEX_TRAFFIC_LOAD_NONE;
  622. }
  623. priv->bt_status = coex->bt_status;
  624. queue_work(priv->workqueue,
  625. &priv->bt_traffic_change_work);
  626. }
  627. }
  628. /* schedule to send runtime bt_config */
  629. /* check reduce power before change ack/cts kill mask */
  630. if (iwlagn_fill_txpower_mode(priv, uart_msg) ||
  631. iwlagn_set_kill_msk(priv, uart_msg))
  632. queue_work(priv->workqueue, &priv->bt_runtime_config);
  633. /* FIXME: based on notification, adjust the prio_boost */
  634. priv->bt_ci_compliance = coex->bt_ci_compliance;
  635. }
  636. void iwlagn_bt_rx_handler_setup(struct iwl_priv *priv)
  637. {
  638. priv->rx_handlers[REPLY_BT_COEX_PROFILE_NOTIF] =
  639. iwlagn_bt_coex_profile_notif;
  640. }
  641. void iwlagn_bt_setup_deferred_work(struct iwl_priv *priv)
  642. {
  643. INIT_WORK(&priv->bt_traffic_change_work,
  644. iwlagn_bt_traffic_change_work);
  645. }
  646. void iwlagn_bt_cancel_deferred_work(struct iwl_priv *priv)
  647. {
  648. cancel_work_sync(&priv->bt_traffic_change_work);
  649. }
  650. static bool is_single_rx_stream(struct iwl_priv *priv)
  651. {
  652. return priv->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
  653. priv->current_ht_config.single_chain_sufficient;
  654. }
  655. #define IWL_NUM_RX_CHAINS_MULTIPLE 3
  656. #define IWL_NUM_RX_CHAINS_SINGLE 2
  657. #define IWL_NUM_IDLE_CHAINS_DUAL 2
  658. #define IWL_NUM_IDLE_CHAINS_SINGLE 1
  659. /*
  660. * Determine how many receiver/antenna chains to use.
  661. *
  662. * More provides better reception via diversity. Fewer saves power
  663. * at the expense of throughput, but only when not in powersave to
  664. * start with.
  665. *
  666. * MIMO (dual stream) requires at least 2, but works better with 3.
  667. * This does not determine *which* chains to use, just how many.
  668. */
  669. static int iwl_get_active_rx_chain_count(struct iwl_priv *priv)
  670. {
  671. if (priv->lib->bt_params &&
  672. priv->lib->bt_params->advanced_bt_coexist &&
  673. (priv->bt_full_concurrent ||
  674. priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
  675. /*
  676. * only use chain 'A' in bt high traffic load or
  677. * full concurrency mode
  678. */
  679. return IWL_NUM_RX_CHAINS_SINGLE;
  680. }
  681. /* # of Rx chains to use when expecting MIMO. */
  682. if (is_single_rx_stream(priv))
  683. return IWL_NUM_RX_CHAINS_SINGLE;
  684. else
  685. return IWL_NUM_RX_CHAINS_MULTIPLE;
  686. }
  687. /*
  688. * When we are in power saving mode, unless device support spatial
  689. * multiplexing power save, use the active count for rx chain count.
  690. */
  691. static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt)
  692. {
  693. /* # Rx chains when idling, depending on SMPS mode */
  694. switch (priv->current_ht_config.smps) {
  695. case IEEE80211_SMPS_STATIC:
  696. case IEEE80211_SMPS_DYNAMIC:
  697. return IWL_NUM_IDLE_CHAINS_SINGLE;
  698. case IEEE80211_SMPS_AUTOMATIC:
  699. case IEEE80211_SMPS_OFF:
  700. return active_cnt;
  701. default:
  702. WARN(1, "invalid SMPS mode %d",
  703. priv->current_ht_config.smps);
  704. return active_cnt;
  705. }
  706. }
  707. /* up to 4 chains */
  708. static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
  709. {
  710. u8 res;
  711. res = (chain_bitmap & BIT(0)) >> 0;
  712. res += (chain_bitmap & BIT(1)) >> 1;
  713. res += (chain_bitmap & BIT(2)) >> 2;
  714. res += (chain_bitmap & BIT(3)) >> 3;
  715. return res;
  716. }
  717. /**
  718. * iwlagn_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
  719. *
  720. * Selects how many and which Rx receivers/antennas/chains to use.
  721. * This should not be used for scan command ... it puts data in wrong place.
  722. */
  723. void iwlagn_set_rxon_chain(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
  724. {
  725. bool is_single = is_single_rx_stream(priv);
  726. bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
  727. u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
  728. u32 active_chains;
  729. u16 rx_chain;
  730. /* Tell uCode which antennas are actually connected.
  731. * Before first association, we assume all antennas are connected.
  732. * Just after first association, iwl_chain_noise_calibration()
  733. * checks which antennas actually *are* connected. */
  734. if (priv->chain_noise_data.active_chains)
  735. active_chains = priv->chain_noise_data.active_chains;
  736. else
  737. active_chains = priv->nvm_data->valid_rx_ant;
  738. if (priv->lib->bt_params &&
  739. priv->lib->bt_params->advanced_bt_coexist &&
  740. (priv->bt_full_concurrent ||
  741. priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)) {
  742. /*
  743. * only use chain 'A' in bt high traffic load or
  744. * full concurrency mode
  745. */
  746. active_chains = first_antenna(active_chains);
  747. }
  748. rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
  749. /* How many receivers should we use? */
  750. active_rx_cnt = iwl_get_active_rx_chain_count(priv);
  751. idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt);
  752. /* correct rx chain count according hw settings
  753. * and chain noise calibration
  754. */
  755. valid_rx_cnt = iwl_count_chain_bitmap(active_chains);
  756. if (valid_rx_cnt < active_rx_cnt)
  757. active_rx_cnt = valid_rx_cnt;
  758. if (valid_rx_cnt < idle_rx_cnt)
  759. idle_rx_cnt = valid_rx_cnt;
  760. rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
  761. rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
  762. ctx->staging.rx_chain = cpu_to_le16(rx_chain);
  763. if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam)
  764. ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
  765. else
  766. ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
  767. IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n",
  768. ctx->staging.rx_chain,
  769. active_rx_cnt, idle_rx_cnt);
  770. WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
  771. active_rx_cnt < idle_rx_cnt);
  772. }
  773. u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant, u8 valid)
  774. {
  775. int i;
  776. u8 ind = ant;
  777. if (priv->band == IEEE80211_BAND_2GHZ &&
  778. priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH)
  779. return 0;
  780. for (i = 0; i < RATE_ANT_NUM - 1; i++) {
  781. ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
  782. if (valid & BIT(ind))
  783. return ind;
  784. }
  785. return ant;
  786. }
  787. #ifdef CONFIG_PM_SLEEP
  788. static void iwlagn_convert_p1k(u16 *p1k, __le16 *out)
  789. {
  790. int i;
  791. for (i = 0; i < IWLAGN_P1K_SIZE; i++)
  792. out[i] = cpu_to_le16(p1k[i]);
  793. }
  794. struct wowlan_key_data {
  795. struct iwl_rxon_context *ctx;
  796. struct iwlagn_wowlan_rsc_tsc_params_cmd *rsc_tsc;
  797. struct iwlagn_wowlan_tkip_params_cmd *tkip;
  798. const u8 *bssid;
  799. bool error, use_rsc_tsc, use_tkip;
  800. };
  801. static void iwlagn_wowlan_program_keys(struct ieee80211_hw *hw,
  802. struct ieee80211_vif *vif,
  803. struct ieee80211_sta *sta,
  804. struct ieee80211_key_conf *key,
  805. void *_data)
  806. {
  807. struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
  808. struct wowlan_key_data *data = _data;
  809. struct iwl_rxon_context *ctx = data->ctx;
  810. struct aes_sc *aes_sc, *aes_tx_sc = NULL;
  811. struct tkip_sc *tkip_sc, *tkip_tx_sc = NULL;
  812. struct iwlagn_p1k_cache *rx_p1ks;
  813. u8 *rx_mic_key;
  814. struct ieee80211_key_seq seq;
  815. u32 cur_rx_iv32 = 0;
  816. u16 p1k[IWLAGN_P1K_SIZE];
  817. int ret, i;
  818. mutex_lock(&priv->mutex);
  819. if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
  820. key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
  821. !sta && !ctx->key_mapping_keys)
  822. ret = iwl_set_default_wep_key(priv, ctx, key);
  823. else
  824. ret = iwl_set_dynamic_key(priv, ctx, key, sta);
  825. if (ret) {
  826. IWL_ERR(priv, "Error setting key during suspend!\n");
  827. data->error = true;
  828. }
  829. switch (key->cipher) {
  830. case WLAN_CIPHER_SUITE_TKIP:
  831. if (sta) {
  832. tkip_sc = data->rsc_tsc->all_tsc_rsc.tkip.unicast_rsc;
  833. tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc;
  834. rx_p1ks = data->tkip->rx_uni;
  835. ieee80211_get_key_tx_seq(key, &seq);
  836. tkip_tx_sc->iv16 = cpu_to_le16(seq.tkip.iv16);
  837. tkip_tx_sc->iv32 = cpu_to_le32(seq.tkip.iv32);
  838. ieee80211_get_tkip_p1k_iv(key, seq.tkip.iv32, p1k);
  839. iwlagn_convert_p1k(p1k, data->tkip->tx.p1k);
  840. memcpy(data->tkip->mic_keys.tx,
  841. &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY],
  842. IWLAGN_MIC_KEY_SIZE);
  843. rx_mic_key = data->tkip->mic_keys.rx_unicast;
  844. } else {
  845. tkip_sc =
  846. data->rsc_tsc->all_tsc_rsc.tkip.multicast_rsc;
  847. rx_p1ks = data->tkip->rx_multi;
  848. rx_mic_key = data->tkip->mic_keys.rx_mcast;
  849. }
  850. /*
  851. * For non-QoS this relies on the fact that both the uCode and
  852. * mac80211 use TID 0 (as they need to to avoid replay attacks)
  853. * for checking the IV in the frames.
  854. */
  855. for (i = 0; i < IWLAGN_NUM_RSC; i++) {
  856. ieee80211_get_key_rx_seq(key, i, &seq);
  857. tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16);
  858. tkip_sc[i].iv32 = cpu_to_le32(seq.tkip.iv32);
  859. /* wrapping isn't allowed, AP must rekey */
  860. if (seq.tkip.iv32 > cur_rx_iv32)
  861. cur_rx_iv32 = seq.tkip.iv32;
  862. }
  863. ieee80211_get_tkip_rx_p1k(key, data->bssid, cur_rx_iv32, p1k);
  864. iwlagn_convert_p1k(p1k, rx_p1ks[0].p1k);
  865. ieee80211_get_tkip_rx_p1k(key, data->bssid,
  866. cur_rx_iv32 + 1, p1k);
  867. iwlagn_convert_p1k(p1k, rx_p1ks[1].p1k);
  868. memcpy(rx_mic_key,
  869. &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY],
  870. IWLAGN_MIC_KEY_SIZE);
  871. data->use_tkip = true;
  872. data->use_rsc_tsc = true;
  873. break;
  874. case WLAN_CIPHER_SUITE_CCMP:
  875. if (sta) {
  876. u8 *pn = seq.ccmp.pn;
  877. aes_sc = data->rsc_tsc->all_tsc_rsc.aes.unicast_rsc;
  878. aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc;
  879. ieee80211_get_key_tx_seq(key, &seq);
  880. aes_tx_sc->pn = cpu_to_le64(
  881. (u64)pn[5] |
  882. ((u64)pn[4] << 8) |
  883. ((u64)pn[3] << 16) |
  884. ((u64)pn[2] << 24) |
  885. ((u64)pn[1] << 32) |
  886. ((u64)pn[0] << 40));
  887. } else
  888. aes_sc = data->rsc_tsc->all_tsc_rsc.aes.multicast_rsc;
  889. /*
  890. * For non-QoS this relies on the fact that both the uCode and
  891. * mac80211 use TID 0 for checking the IV in the frames.
  892. */
  893. for (i = 0; i < IWLAGN_NUM_RSC; i++) {
  894. u8 *pn = seq.ccmp.pn;
  895. ieee80211_get_key_rx_seq(key, i, &seq);
  896. aes_sc[i].pn = cpu_to_le64(
  897. (u64)pn[5] |
  898. ((u64)pn[4] << 8) |
  899. ((u64)pn[3] << 16) |
  900. ((u64)pn[2] << 24) |
  901. ((u64)pn[1] << 32) |
  902. ((u64)pn[0] << 40));
  903. }
  904. data->use_rsc_tsc = true;
  905. break;
  906. }
  907. mutex_unlock(&priv->mutex);
  908. }
  909. int iwlagn_send_patterns(struct iwl_priv *priv,
  910. struct cfg80211_wowlan *wowlan)
  911. {
  912. struct iwlagn_wowlan_patterns_cmd *pattern_cmd;
  913. struct iwl_host_cmd cmd = {
  914. .id = REPLY_WOWLAN_PATTERNS,
  915. .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
  916. };
  917. int i, err;
  918. if (!wowlan->n_patterns)
  919. return 0;
  920. cmd.len[0] = sizeof(*pattern_cmd) +
  921. wowlan->n_patterns * sizeof(struct iwlagn_wowlan_pattern);
  922. pattern_cmd = kmalloc(cmd.len[0], GFP_KERNEL);
  923. if (!pattern_cmd)
  924. return -ENOMEM;
  925. pattern_cmd->n_patterns = cpu_to_le32(wowlan->n_patterns);
  926. for (i = 0; i < wowlan->n_patterns; i++) {
  927. int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8);
  928. memcpy(&pattern_cmd->patterns[i].mask,
  929. wowlan->patterns[i].mask, mask_len);
  930. memcpy(&pattern_cmd->patterns[i].pattern,
  931. wowlan->patterns[i].pattern,
  932. wowlan->patterns[i].pattern_len);
  933. pattern_cmd->patterns[i].mask_size = mask_len;
  934. pattern_cmd->patterns[i].pattern_size =
  935. wowlan->patterns[i].pattern_len;
  936. }
  937. cmd.data[0] = pattern_cmd;
  938. err = iwl_dvm_send_cmd(priv, &cmd);
  939. kfree(pattern_cmd);
  940. return err;
  941. }
  942. int iwlagn_suspend(struct iwl_priv *priv, struct cfg80211_wowlan *wowlan)
  943. {
  944. struct iwlagn_wowlan_wakeup_filter_cmd wakeup_filter_cmd;
  945. struct iwl_rxon_cmd rxon;
  946. struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
  947. struct iwlagn_wowlan_kek_kck_material_cmd kek_kck_cmd;
  948. struct iwlagn_wowlan_tkip_params_cmd tkip_cmd = {};
  949. struct iwlagn_d3_config_cmd d3_cfg_cmd = {
  950. /*
  951. * Program the minimum sleep time to 10 seconds, as many
  952. * platforms have issues processing a wakeup signal while
  953. * still being in the process of suspending.
  954. */
  955. .min_sleep_time = cpu_to_le32(10 * 1000 * 1000),
  956. };
  957. struct wowlan_key_data key_data = {
  958. .ctx = ctx,
  959. .bssid = ctx->active.bssid_addr,
  960. .use_rsc_tsc = false,
  961. .tkip = &tkip_cmd,
  962. .use_tkip = false,
  963. };
  964. int ret, i;
  965. u16 seq;
  966. key_data.rsc_tsc = kzalloc(sizeof(*key_data.rsc_tsc), GFP_KERNEL);
  967. if (!key_data.rsc_tsc)
  968. return -ENOMEM;
  969. memset(&wakeup_filter_cmd, 0, sizeof(wakeup_filter_cmd));
  970. /*
  971. * We know the last used seqno, and the uCode expects to know that
  972. * one, it will increment before TX.
  973. */
  974. seq = le16_to_cpu(priv->last_seq_ctl) & IEEE80211_SCTL_SEQ;
  975. wakeup_filter_cmd.non_qos_seq = cpu_to_le16(seq);
  976. /*
  977. * For QoS counters, we store the one to use next, so subtract 0x10
  978. * since the uCode will add 0x10 before using the value.
  979. */
  980. for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
  981. seq = priv->tid_data[IWL_AP_ID][i].seq_number;
  982. seq -= 0x10;
  983. wakeup_filter_cmd.qos_seq[i] = cpu_to_le16(seq);
  984. }
  985. if (wowlan->disconnect)
  986. wakeup_filter_cmd.enabled |=
  987. cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_BEACON_MISS |
  988. IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE);
  989. if (wowlan->magic_pkt)
  990. wakeup_filter_cmd.enabled |=
  991. cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET);
  992. if (wowlan->gtk_rekey_failure)
  993. wakeup_filter_cmd.enabled |=
  994. cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL);
  995. if (wowlan->eap_identity_req)
  996. wakeup_filter_cmd.enabled |=
  997. cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ);
  998. if (wowlan->four_way_handshake)
  999. wakeup_filter_cmd.enabled |=
  1000. cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE);
  1001. if (wowlan->n_patterns)
  1002. wakeup_filter_cmd.enabled |=
  1003. cpu_to_le32(IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH);
  1004. if (wowlan->rfkill_release)
  1005. d3_cfg_cmd.wakeup_flags |=
  1006. cpu_to_le32(IWLAGN_D3_WAKEUP_RFKILL);
  1007. iwl_scan_cancel_timeout(priv, 200);
  1008. memcpy(&rxon, &ctx->active, sizeof(rxon));
  1009. priv->ucode_loaded = false;
  1010. iwl_trans_stop_device(priv->trans);
  1011. priv->wowlan = true;
  1012. ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_WOWLAN);
  1013. if (ret)
  1014. goto out;
  1015. /* now configure WoWLAN ucode */
  1016. ret = iwl_alive_start(priv);
  1017. if (ret)
  1018. goto out;
  1019. memcpy(&ctx->staging, &rxon, sizeof(rxon));
  1020. ret = iwlagn_commit_rxon(priv, ctx);
  1021. if (ret)
  1022. goto out;
  1023. ret = iwl_power_update_mode(priv, true);
  1024. if (ret)
  1025. goto out;
  1026. if (!iwlwifi_mod_params.sw_crypto) {
  1027. /* mark all keys clear */
  1028. priv->ucode_key_table = 0;
  1029. ctx->key_mapping_keys = 0;
  1030. /*
  1031. * This needs to be unlocked due to lock ordering
  1032. * constraints. Since we're in the suspend path
  1033. * that isn't really a problem though.
  1034. */
  1035. mutex_unlock(&priv->mutex);
  1036. ieee80211_iter_keys(priv->hw, ctx->vif,
  1037. iwlagn_wowlan_program_keys,
  1038. &key_data);
  1039. mutex_lock(&priv->mutex);
  1040. if (key_data.error) {
  1041. ret = -EIO;
  1042. goto out;
  1043. }
  1044. if (key_data.use_rsc_tsc) {
  1045. struct iwl_host_cmd rsc_tsc_cmd = {
  1046. .id = REPLY_WOWLAN_TSC_RSC_PARAMS,
  1047. .data[0] = key_data.rsc_tsc,
  1048. .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
  1049. .len[0] = sizeof(*key_data.rsc_tsc),
  1050. };
  1051. ret = iwl_dvm_send_cmd(priv, &rsc_tsc_cmd);
  1052. if (ret)
  1053. goto out;
  1054. }
  1055. if (key_data.use_tkip) {
  1056. ret = iwl_dvm_send_cmd_pdu(priv,
  1057. REPLY_WOWLAN_TKIP_PARAMS,
  1058. 0, sizeof(tkip_cmd),
  1059. &tkip_cmd);
  1060. if (ret)
  1061. goto out;
  1062. }
  1063. if (priv->have_rekey_data) {
  1064. memset(&kek_kck_cmd, 0, sizeof(kek_kck_cmd));
  1065. memcpy(kek_kck_cmd.kck, priv->kck, NL80211_KCK_LEN);
  1066. kek_kck_cmd.kck_len = cpu_to_le16(NL80211_KCK_LEN);
  1067. memcpy(kek_kck_cmd.kek, priv->kek, NL80211_KEK_LEN);
  1068. kek_kck_cmd.kek_len = cpu_to_le16(NL80211_KEK_LEN);
  1069. kek_kck_cmd.replay_ctr = priv->replay_ctr;
  1070. ret = iwl_dvm_send_cmd_pdu(priv,
  1071. REPLY_WOWLAN_KEK_KCK_MATERIAL,
  1072. 0, sizeof(kek_kck_cmd),
  1073. &kek_kck_cmd);
  1074. if (ret)
  1075. goto out;
  1076. }
  1077. }
  1078. ret = iwl_dvm_send_cmd_pdu(priv, REPLY_D3_CONFIG, 0,
  1079. sizeof(d3_cfg_cmd), &d3_cfg_cmd);
  1080. if (ret)
  1081. goto out;
  1082. ret = iwl_dvm_send_cmd_pdu(priv, REPLY_WOWLAN_WAKEUP_FILTER,
  1083. 0, sizeof(wakeup_filter_cmd),
  1084. &wakeup_filter_cmd);
  1085. if (ret)
  1086. goto out;
  1087. ret = iwlagn_send_patterns(priv, wowlan);
  1088. out:
  1089. kfree(key_data.rsc_tsc);
  1090. return ret;
  1091. }
  1092. #endif
  1093. int iwl_dvm_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
  1094. {
  1095. if (iwl_is_rfkill(priv) || iwl_is_ctkill(priv)) {
  1096. IWL_WARN(priv, "Not sending command - %s KILL\n",
  1097. iwl_is_rfkill(priv) ? "RF" : "CT");
  1098. return -EIO;
  1099. }
  1100. if (test_bit(STATUS_FW_ERROR, &priv->status)) {
  1101. IWL_ERR(priv, "Command %s failed: FW Error\n",
  1102. iwl_dvm_get_cmd_string(cmd->id));
  1103. return -EIO;
  1104. }
  1105. /*
  1106. * This can happen upon FW ASSERT: we clear the STATUS_FW_ERROR flag
  1107. * in iwl_down but cancel the workers only later.
  1108. */
  1109. if (!priv->ucode_loaded) {
  1110. IWL_ERR(priv, "Fw not loaded - dropping CMD: %x\n", cmd->id);
  1111. return -EIO;
  1112. }
  1113. /*
  1114. * Synchronous commands from this op-mode must hold
  1115. * the mutex, this ensures we don't try to send two
  1116. * (or more) synchronous commands at a time.
  1117. */
  1118. if (!(cmd->flags & CMD_ASYNC))
  1119. lockdep_assert_held(&priv->mutex);
  1120. return iwl_trans_send_cmd(priv->trans, cmd);
  1121. }
  1122. int iwl_dvm_send_cmd_pdu(struct iwl_priv *priv, u8 id,
  1123. u32 flags, u16 len, const void *data)
  1124. {
  1125. struct iwl_host_cmd cmd = {
  1126. .id = id,
  1127. .len = { len, },
  1128. .data = { data, },
  1129. .flags = flags,
  1130. };
  1131. return iwl_dvm_send_cmd(priv, &cmd);
  1132. }