iwl-hcmd.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /******************************************************************************
  2. *
  3. * GPL LICENSE SUMMARY
  4. *
  5. * Copyright(c) 2008 - 2011 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. #include <linux/kernel.h>
  29. #include <linux/module.h>
  30. #include <linux/sched.h>
  31. #include <net/mac80211.h>
  32. #include "iwl-dev.h" /* FIXME: remove */
  33. #include "iwl-debug.h"
  34. #include "iwl-eeprom.h"
  35. #include "iwl-core.h"
  36. const char *get_cmd_string(u8 cmd)
  37. {
  38. switch (cmd) {
  39. IWL_CMD(REPLY_ALIVE);
  40. IWL_CMD(REPLY_ERROR);
  41. IWL_CMD(REPLY_RXON);
  42. IWL_CMD(REPLY_RXON_ASSOC);
  43. IWL_CMD(REPLY_QOS_PARAM);
  44. IWL_CMD(REPLY_RXON_TIMING);
  45. IWL_CMD(REPLY_ADD_STA);
  46. IWL_CMD(REPLY_REMOVE_STA);
  47. IWL_CMD(REPLY_REMOVE_ALL_STA);
  48. IWL_CMD(REPLY_TXFIFO_FLUSH);
  49. IWL_CMD(REPLY_WEPKEY);
  50. IWL_CMD(REPLY_TX);
  51. IWL_CMD(REPLY_LEDS_CMD);
  52. IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
  53. IWL_CMD(COEX_PRIORITY_TABLE_CMD);
  54. IWL_CMD(COEX_MEDIUM_NOTIFICATION);
  55. IWL_CMD(COEX_EVENT_CMD);
  56. IWL_CMD(REPLY_QUIET_CMD);
  57. IWL_CMD(REPLY_CHANNEL_SWITCH);
  58. IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
  59. IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
  60. IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
  61. IWL_CMD(POWER_TABLE_CMD);
  62. IWL_CMD(PM_SLEEP_NOTIFICATION);
  63. IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
  64. IWL_CMD(REPLY_SCAN_CMD);
  65. IWL_CMD(REPLY_SCAN_ABORT_CMD);
  66. IWL_CMD(SCAN_START_NOTIFICATION);
  67. IWL_CMD(SCAN_RESULTS_NOTIFICATION);
  68. IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
  69. IWL_CMD(BEACON_NOTIFICATION);
  70. IWL_CMD(REPLY_TX_BEACON);
  71. IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
  72. IWL_CMD(QUIET_NOTIFICATION);
  73. IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
  74. IWL_CMD(MEASURE_ABORT_NOTIFICATION);
  75. IWL_CMD(REPLY_BT_CONFIG);
  76. IWL_CMD(REPLY_STATISTICS_CMD);
  77. IWL_CMD(STATISTICS_NOTIFICATION);
  78. IWL_CMD(REPLY_CARD_STATE_CMD);
  79. IWL_CMD(CARD_STATE_NOTIFICATION);
  80. IWL_CMD(MISSED_BEACONS_NOTIFICATION);
  81. IWL_CMD(REPLY_CT_KILL_CONFIG_CMD);
  82. IWL_CMD(SENSITIVITY_CMD);
  83. IWL_CMD(REPLY_PHY_CALIBRATION_CMD);
  84. IWL_CMD(REPLY_RX_PHY_CMD);
  85. IWL_CMD(REPLY_RX_MPDU_CMD);
  86. IWL_CMD(REPLY_RX);
  87. IWL_CMD(REPLY_COMPRESSED_BA);
  88. IWL_CMD(CALIBRATION_CFG_CMD);
  89. IWL_CMD(CALIBRATION_RES_NOTIFICATION);
  90. IWL_CMD(CALIBRATION_COMPLETE_NOTIFICATION);
  91. IWL_CMD(REPLY_TX_POWER_DBM_CMD);
  92. IWL_CMD(TEMPERATURE_NOTIFICATION);
  93. IWL_CMD(TX_ANT_CONFIGURATION_CMD);
  94. IWL_CMD(REPLY_BT_COEX_PROFILE_NOTIF);
  95. IWL_CMD(REPLY_BT_COEX_PRIO_TABLE);
  96. IWL_CMD(REPLY_BT_COEX_PROT_ENV);
  97. IWL_CMD(REPLY_WIPAN_PARAMS);
  98. IWL_CMD(REPLY_WIPAN_RXON);
  99. IWL_CMD(REPLY_WIPAN_RXON_TIMING);
  100. IWL_CMD(REPLY_WIPAN_RXON_ASSOC);
  101. IWL_CMD(REPLY_WIPAN_QOS_PARAM);
  102. IWL_CMD(REPLY_WIPAN_WEPKEY);
  103. IWL_CMD(REPLY_WIPAN_P2P_CHANNEL_SWITCH);
  104. IWL_CMD(REPLY_WIPAN_NOA_NOTIFICATION);
  105. IWL_CMD(REPLY_WIPAN_DEACTIVATION_COMPLETE);
  106. default:
  107. return "UNKNOWN";
  108. }
  109. }
  110. #define HOST_COMPLETE_TIMEOUT (2 * HZ)
  111. static void iwl_generic_cmd_callback(struct iwl_priv *priv,
  112. struct iwl_device_cmd *cmd,
  113. struct iwl_rx_packet *pkt)
  114. {
  115. if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
  116. IWL_ERR(priv, "Bad return from %s (0x%08X)\n",
  117. get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
  118. return;
  119. }
  120. #ifdef CONFIG_IWLWIFI_DEBUG
  121. switch (cmd->hdr.cmd) {
  122. case REPLY_TX_LINK_QUALITY_CMD:
  123. case SENSITIVITY_CMD:
  124. IWL_DEBUG_HC_DUMP(priv, "back from %s (0x%08X)\n",
  125. get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
  126. break;
  127. default:
  128. IWL_DEBUG_HC(priv, "back from %s (0x%08X)\n",
  129. get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
  130. }
  131. #endif
  132. }
  133. static int iwl_send_cmd_async(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
  134. {
  135. int ret;
  136. if (WARN_ON(!(cmd->flags & CMD_ASYNC)))
  137. return -EINVAL;
  138. /* An asynchronous command can not expect an SKB to be set. */
  139. if (WARN_ON(cmd->flags & CMD_WANT_SKB))
  140. return -EINVAL;
  141. /* Assign a generic callback if one is not provided */
  142. if (!cmd->callback)
  143. cmd->callback = iwl_generic_cmd_callback;
  144. if (test_bit(STATUS_EXIT_PENDING, &priv->status))
  145. return -EBUSY;
  146. ret = iwl_enqueue_hcmd(priv, cmd);
  147. if (ret < 0) {
  148. IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
  149. get_cmd_string(cmd->id), ret);
  150. return ret;
  151. }
  152. return 0;
  153. }
  154. int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
  155. {
  156. int cmd_idx;
  157. int ret;
  158. if (WARN_ON(cmd->flags & CMD_ASYNC))
  159. return -EINVAL;
  160. /* A synchronous command can not have a callback set. */
  161. if (WARN_ON(cmd->callback))
  162. return -EINVAL;
  163. IWL_DEBUG_INFO(priv, "Attempting to send sync command %s\n",
  164. get_cmd_string(cmd->id));
  165. if (test_and_set_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
  166. IWL_ERR(priv, "STATUS_HCMD_ACTIVE already set while sending %s"
  167. ". Previous SYNC cmdn is %s\n",
  168. get_cmd_string(cmd->id),
  169. get_cmd_string(priv->last_sync_cmd_id));
  170. WARN_ON(1);
  171. } else {
  172. priv->last_sync_cmd_id = cmd->id;
  173. }
  174. IWL_DEBUG_INFO(priv, "Setting HCMD_ACTIVE for command %s\n",
  175. get_cmd_string(cmd->id));
  176. cmd_idx = iwl_enqueue_hcmd(priv, cmd);
  177. if (cmd_idx < 0) {
  178. ret = cmd_idx;
  179. clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
  180. IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
  181. get_cmd_string(cmd->id), ret);
  182. return ret;
  183. }
  184. ret = wait_event_interruptible_timeout(priv->wait_command_queue,
  185. !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
  186. HOST_COMPLETE_TIMEOUT);
  187. if (!ret) {
  188. if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
  189. IWL_ERR(priv,
  190. "Error sending %s: time out after %dms.\n",
  191. get_cmd_string(cmd->id),
  192. jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
  193. clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
  194. IWL_DEBUG_INFO(priv, "Clearing HCMD_ACTIVE for command %s\n",
  195. get_cmd_string(cmd->id));
  196. ret = -ETIMEDOUT;
  197. goto cancel;
  198. }
  199. }
  200. if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
  201. IWL_ERR(priv, "Command %s aborted: RF KILL Switch\n",
  202. get_cmd_string(cmd->id));
  203. ret = -ECANCELED;
  204. goto fail;
  205. }
  206. if (test_bit(STATUS_FW_ERROR, &priv->status)) {
  207. IWL_ERR(priv, "Command %s failed: FW Error\n",
  208. get_cmd_string(cmd->id));
  209. ret = -EIO;
  210. goto fail;
  211. }
  212. if ((cmd->flags & CMD_WANT_SKB) && !cmd->reply_page) {
  213. IWL_ERR(priv, "Error: Response NULL in '%s'\n",
  214. get_cmd_string(cmd->id));
  215. ret = -EIO;
  216. goto cancel;
  217. }
  218. return 0;
  219. cancel:
  220. if (cmd->flags & CMD_WANT_SKB) {
  221. /*
  222. * Cancel the CMD_WANT_SKB flag for the cmd in the
  223. * TX cmd queue. Otherwise in case the cmd comes
  224. * in later, it will possibly set an invalid
  225. * address (cmd->meta.source).
  226. */
  227. priv->txq[priv->cmd_queue].meta[cmd_idx].flags &=
  228. ~CMD_WANT_SKB;
  229. }
  230. fail:
  231. if (cmd->reply_page) {
  232. iwl_free_pages(priv, cmd->reply_page);
  233. cmd->reply_page = 0;
  234. }
  235. return ret;
  236. }
  237. int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
  238. {
  239. if (cmd->flags & CMD_ASYNC)
  240. return iwl_send_cmd_async(priv, cmd);
  241. return iwl_send_cmd_sync(priv, cmd);
  242. }
  243. int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
  244. {
  245. struct iwl_host_cmd cmd = {
  246. .id = id,
  247. .len = { len, },
  248. .data = { data, },
  249. };
  250. return iwl_send_cmd_sync(priv, &cmd);
  251. }
  252. int iwl_send_cmd_pdu_async(struct iwl_priv *priv,
  253. u8 id, u16 len, const void *data,
  254. void (*callback)(struct iwl_priv *priv,
  255. struct iwl_device_cmd *cmd,
  256. struct iwl_rx_packet *pkt))
  257. {
  258. struct iwl_host_cmd cmd = {
  259. .id = id,
  260. .len = { len, },
  261. .data = { data, },
  262. };
  263. cmd.flags |= CMD_ASYNC;
  264. cmd.callback = callback;
  265. return iwl_send_cmd_async(priv, &cmd);
  266. }