lib.c 37 KB

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