iwl-agn-lib.c 37 KB

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