blob: b82ad15d5189a684e61f9eb9ddcdbcdde0268e7e [file] [log] [blame]
Tomas Winkler857485c2008-03-21 13:53:44 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Reinette Chatre01f81622009-01-08 10:20:02 -08005 * Copyright(c) 2008 - 2009 Intel Corporation. All rights reserved.
Tomas Winkler857485c2008-03-21 13:53:44 -07006 *
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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Tomas Winkler857485c2008-03-21 13:53:44 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
28
29#include <linux/kernel.h>
30#include <linux/module.h>
Tomas Winkler857485c2008-03-21 13:53:44 -070031#include <net/mac80211.h>
32
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070033#include "iwl-dev.h" /* FIXME: remove */
Tomas Winkler857485c2008-03-21 13:53:44 -070034#include "iwl-debug.h"
35#include "iwl-eeprom.h"
36#include "iwl-core.h"
37
38
Abhijeet Kolekarc3056062008-11-12 13:14:08 -080039#define IWL_CMD(x) case x: return #x
Tomas Winkler857485c2008-03-21 13:53:44 -070040
41const char *get_cmd_string(u8 cmd)
42{
43 switch (cmd) {
44 IWL_CMD(REPLY_ALIVE);
45 IWL_CMD(REPLY_ERROR);
46 IWL_CMD(REPLY_RXON);
47 IWL_CMD(REPLY_RXON_ASSOC);
48 IWL_CMD(REPLY_QOS_PARAM);
49 IWL_CMD(REPLY_RXON_TIMING);
50 IWL_CMD(REPLY_ADD_STA);
51 IWL_CMD(REPLY_REMOVE_STA);
52 IWL_CMD(REPLY_REMOVE_ALL_STA);
Emmanuel Grumbach0a0bed12008-04-14 21:16:05 -070053 IWL_CMD(REPLY_WEPKEY);
Samuel Ortizd7321292009-01-08 10:20:00 -080054 IWL_CMD(REPLY_3945_RX);
Tomas Winkler857485c2008-03-21 13:53:44 -070055 IWL_CMD(REPLY_TX);
56 IWL_CMD(REPLY_RATE_SCALE);
57 IWL_CMD(REPLY_LEDS_CMD);
58 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
Tomas Winkler7c616cb2008-05-29 16:35:05 +080059 IWL_CMD(COEX_PRIORITY_TABLE_CMD);
Tomas Winkler857485c2008-03-21 13:53:44 -070060 IWL_CMD(RADAR_NOTIFICATION);
61 IWL_CMD(REPLY_QUIET_CMD);
62 IWL_CMD(REPLY_CHANNEL_SWITCH);
63 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
64 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
65 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
66 IWL_CMD(POWER_TABLE_CMD);
67 IWL_CMD(PM_SLEEP_NOTIFICATION);
68 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
69 IWL_CMD(REPLY_SCAN_CMD);
70 IWL_CMD(REPLY_SCAN_ABORT_CMD);
71 IWL_CMD(SCAN_START_NOTIFICATION);
72 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
73 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
74 IWL_CMD(BEACON_NOTIFICATION);
75 IWL_CMD(REPLY_TX_BEACON);
76 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
77 IWL_CMD(QUIET_NOTIFICATION);
78 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
79 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
80 IWL_CMD(REPLY_BT_CONFIG);
81 IWL_CMD(REPLY_STATISTICS_CMD);
82 IWL_CMD(STATISTICS_NOTIFICATION);
83 IWL_CMD(REPLY_CARD_STATE_CMD);
84 IWL_CMD(CARD_STATE_NOTIFICATION);
85 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
86 IWL_CMD(REPLY_CT_KILL_CONFIG_CMD);
87 IWL_CMD(SENSITIVITY_CMD);
88 IWL_CMD(REPLY_PHY_CALIBRATION_CMD);
89 IWL_CMD(REPLY_RX_PHY_CMD);
90 IWL_CMD(REPLY_RX_MPDU_CMD);
91 IWL_CMD(REPLY_RX);
92 IWL_CMD(REPLY_COMPRESSED_BA);
Tomas Winkler7c616cb2008-05-29 16:35:05 +080093 IWL_CMD(CALIBRATION_CFG_CMD);
94 IWL_CMD(CALIBRATION_RES_NOTIFICATION);
95 IWL_CMD(CALIBRATION_COMPLETE_NOTIFICATION);
Emmanuel Grumbachebbbdc32008-06-30 17:23:05 +080096 IWL_CMD(REPLY_TX_POWER_DBM_CMD);
Tomas Winkler857485c2008-03-21 13:53:44 -070097 default:
98 return "UNKNOWN";
99
100 }
101}
102EXPORT_SYMBOL(get_cmd_string);
103
104#define HOST_COMPLETE_TIMEOUT (HZ / 2)
105
Johannes Berg5696aea2009-07-24 11:13:06 -0700106static void iwl_generic_cmd_callback(struct iwl_priv *priv,
107 struct iwl_device_cmd *cmd,
108 struct sk_buff *skb)
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700109{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800110 struct iwl_rx_packet *pkt = NULL;
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700111
112 if (!skb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800113 IWL_ERR(priv, "Error: Response NULL in %s.\n",
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700114 get_cmd_string(cmd->hdr.cmd));
Johannes Berg5696aea2009-07-24 11:13:06 -0700115 return;
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700116 }
117
Tomas Winklerdb11d632008-05-05 10:22:33 +0800118 pkt = (struct iwl_rx_packet *)skb->data;
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700119 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800120 IWL_ERR(priv, "Bad return from %s (0x%08X)\n",
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700121 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
Johannes Berg5696aea2009-07-24 11:13:06 -0700122 return;
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700123 }
124
Esti Kummerded2ae72008-08-04 16:00:45 +0800125#ifdef CONFIG_IWLWIFI_DEBUG
126 switch (cmd->hdr.cmd) {
127 case REPLY_TX_LINK_QUALITY_CMD:
128 case SENSITIVITY_CMD:
Tomas Winklere1623442009-01-27 14:27:56 -0800129 IWL_DEBUG_HC_DUMP(priv, "back from %s (0x%08X)\n",
Esti Kummerded2ae72008-08-04 16:00:45 +0800130 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
Johannes Berg5696aea2009-07-24 11:13:06 -0700131 break;
Esti Kummerded2ae72008-08-04 16:00:45 +0800132 default:
Tomas Winklere1623442009-01-27 14:27:56 -0800133 IWL_DEBUG_HC(priv, "back from %s (0x%08X)\n",
Esti Kummerded2ae72008-08-04 16:00:45 +0800134 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
135 }
136#endif
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700137}
138
Tomas Winkler857485c2008-03-21 13:53:44 -0700139static int iwl_send_cmd_async(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
140{
141 int ret;
142
Johannes Bergc2acea82009-07-24 11:13:05 -0700143 BUG_ON(!(cmd->flags & CMD_ASYNC));
Tomas Winkler857485c2008-03-21 13:53:44 -0700144
145 /* An asynchronous command can not expect an SKB to be set. */
Johannes Bergc2acea82009-07-24 11:13:05 -0700146 BUG_ON(cmd->flags & CMD_WANT_SKB);
Tomas Winkler857485c2008-03-21 13:53:44 -0700147
Emmanuel Grumbach0472f882008-03-25 16:33:40 -0700148 /* Assign a generic callback if one is not provided */
Johannes Bergc2acea82009-07-24 11:13:05 -0700149 if (!cmd->callback)
150 cmd->callback = iwl_generic_cmd_callback;
Tomas Winkler857485c2008-03-21 13:53:44 -0700151
152 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
153 return -EBUSY;
154
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800155 ret = iwl_enqueue_hcmd(priv, cmd);
Tomas Winkler857485c2008-03-21 13:53:44 -0700156 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800157 IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
Tomas Winkler857485c2008-03-21 13:53:44 -0700158 get_cmd_string(cmd->id), ret);
159 return ret;
160 }
161 return 0;
162}
163
164int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
165{
166 int cmd_idx;
167 int ret;
Tomas Winkler857485c2008-03-21 13:53:44 -0700168
Johannes Bergc2acea82009-07-24 11:13:05 -0700169 BUG_ON(cmd->flags & CMD_ASYNC);
Tomas Winkler857485c2008-03-21 13:53:44 -0700170
171 /* A synchronous command can not have a callback set. */
Johannes Bergc2acea82009-07-24 11:13:05 -0700172 BUG_ON(cmd->callback);
Tomas Winkler857485c2008-03-21 13:53:44 -0700173
Tomas Winklere5472972008-03-28 16:21:12 -0700174 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800175 IWL_ERR(priv,
176 "Error sending %s: Already sending a host command\n",
177 get_cmd_string(cmd->id));
Tomas Winklere5472972008-03-28 16:21:12 -0700178 ret = -EBUSY;
179 goto out;
Tomas Winkler857485c2008-03-21 13:53:44 -0700180 }
181
182 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
183
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800184 cmd_idx = iwl_enqueue_hcmd(priv, cmd);
Tomas Winkler857485c2008-03-21 13:53:44 -0700185 if (cmd_idx < 0) {
186 ret = cmd_idx;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800187 IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
Tomas Winkler857485c2008-03-21 13:53:44 -0700188 get_cmd_string(cmd->id), ret);
189 goto out;
190 }
191
192 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
193 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
194 HOST_COMPLETE_TIMEOUT);
195 if (!ret) {
196 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800197 IWL_ERR(priv,
198 "Error sending %s: time out after %dms.\n",
199 get_cmd_string(cmd->id),
200 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
Tomas Winkler857485c2008-03-21 13:53:44 -0700201
202 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
203 ret = -ETIMEDOUT;
204 goto cancel;
205 }
206 }
207
208 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800209 IWL_DEBUG_INFO(priv, "Command %s aborted: RF KILL Switch\n",
Tomas Winkler857485c2008-03-21 13:53:44 -0700210 get_cmd_string(cmd->id));
211 ret = -ECANCELED;
212 goto fail;
213 }
214 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800215 IWL_DEBUG_INFO(priv, "Command %s failed: FW Error\n",
Tomas Winkler857485c2008-03-21 13:53:44 -0700216 get_cmd_string(cmd->id));
217 ret = -EIO;
218 goto fail;
219 }
Johannes Bergc2acea82009-07-24 11:13:05 -0700220 if ((cmd->flags & CMD_WANT_SKB) && !cmd->reply_skb) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800221 IWL_ERR(priv, "Error: Response NULL in '%s'\n",
Tomas Winkler857485c2008-03-21 13:53:44 -0700222 get_cmd_string(cmd->id));
223 ret = -EIO;
Zhu Yi73e1a652009-01-08 10:19:58 -0800224 goto cancel;
Tomas Winkler857485c2008-03-21 13:53:44 -0700225 }
226
227 ret = 0;
228 goto out;
229
230cancel:
Johannes Bergc2acea82009-07-24 11:13:05 -0700231 if (cmd->flags & CMD_WANT_SKB) {
232 /*
233 * Cancel the CMD_WANT_SKB flag for the cmd in the
Tomas Winkler857485c2008-03-21 13:53:44 -0700234 * TX cmd queue. Otherwise in case the cmd comes
235 * in later, it will possibly set an invalid
Johannes Bergc2acea82009-07-24 11:13:05 -0700236 * address (cmd->meta.source).
237 */
238 priv->txq[IWL_CMD_QUEUE_NUM].meta[cmd_idx].flags &=
239 ~CMD_WANT_SKB;
Tomas Winkler857485c2008-03-21 13:53:44 -0700240 }
241fail:
Johannes Bergc2acea82009-07-24 11:13:05 -0700242 if (cmd->reply_skb) {
243 dev_kfree_skb_any(cmd->reply_skb);
244 cmd->reply_skb = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -0700245 }
246out:
Tomas Winklere5472972008-03-28 16:21:12 -0700247 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
Tomas Winkler857485c2008-03-21 13:53:44 -0700248 return ret;
249}
250EXPORT_SYMBOL(iwl_send_cmd_sync);
251
252int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
253{
Johannes Bergc2acea82009-07-24 11:13:05 -0700254 if (cmd->flags & CMD_ASYNC)
Tomas Winkler857485c2008-03-21 13:53:44 -0700255 return iwl_send_cmd_async(priv, cmd);
256
257 return iwl_send_cmd_sync(priv, cmd);
258}
259EXPORT_SYMBOL(iwl_send_cmd);
260
261int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
262{
263 struct iwl_host_cmd cmd = {
264 .id = id,
265 .len = len,
266 .data = data,
267 };
268
269 return iwl_send_cmd_sync(priv, &cmd);
270}
271EXPORT_SYMBOL(iwl_send_cmd_pdu);
272
273int iwl_send_cmd_pdu_async(struct iwl_priv *priv,
274 u8 id, u16 len, const void *data,
Johannes Berg5696aea2009-07-24 11:13:06 -0700275 void (*callback)(struct iwl_priv *priv,
276 struct iwl_device_cmd *cmd,
277 struct sk_buff *skb))
Tomas Winkler857485c2008-03-21 13:53:44 -0700278{
279 struct iwl_host_cmd cmd = {
280 .id = id,
281 .len = len,
282 .data = data,
283 };
284
Johannes Bergc2acea82009-07-24 11:13:05 -0700285 cmd.flags |= CMD_ASYNC;
286 cmd.callback = callback;
Tomas Winkler857485c2008-03-21 13:53:44 -0700287
288 return iwl_send_cmd_async(priv, &cmd);
289}
290EXPORT_SYMBOL(iwl_send_cmd_pdu_async);