On Tue, Nov 06, 2007 at 02:33:53AM -0800, akpm@linux-foundation.org wrote:
[mmotm.git] / drivers / net / wireless / iwlwifi / iwl-hcmd.c
blob1bf17d21051dc8a52c6b4f5793051e0f2abc898f
1 /******************************************************************************
3 * GPL LICENSE SUMMARY
5 * Copyright(c) 2008 - 2009 Intel Corporation. All rights reserved.
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.
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.
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
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
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 *****************************************************************************/
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/sched.h>
32 #include <net/mac80211.h>
34 #include "iwl-dev.h" /* FIXME: remove */
35 #include "iwl-debug.h"
36 #include "iwl-eeprom.h"
37 #include "iwl-core.h"
40 const char *get_cmd_string(u8 cmd)
42 switch (cmd) {
43 IWL_CMD(REPLY_ALIVE);
44 IWL_CMD(REPLY_ERROR);
45 IWL_CMD(REPLY_RXON);
46 IWL_CMD(REPLY_RXON_ASSOC);
47 IWL_CMD(REPLY_QOS_PARAM);
48 IWL_CMD(REPLY_RXON_TIMING);
49 IWL_CMD(REPLY_ADD_STA);
50 IWL_CMD(REPLY_REMOVE_STA);
51 IWL_CMD(REPLY_REMOVE_ALL_STA);
52 IWL_CMD(REPLY_WEPKEY);
53 IWL_CMD(REPLY_3945_RX);
54 IWL_CMD(REPLY_TX);
55 IWL_CMD(REPLY_RATE_SCALE);
56 IWL_CMD(REPLY_LEDS_CMD);
57 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
58 IWL_CMD(COEX_PRIORITY_TABLE_CMD);
59 IWL_CMD(RADAR_NOTIFICATION);
60 IWL_CMD(REPLY_QUIET_CMD);
61 IWL_CMD(REPLY_CHANNEL_SWITCH);
62 IWL_CMD(CHANNEL_SWITCH_NOTIFICATION);
63 IWL_CMD(REPLY_SPECTRUM_MEASUREMENT_CMD);
64 IWL_CMD(SPECTRUM_MEASURE_NOTIFICATION);
65 IWL_CMD(POWER_TABLE_CMD);
66 IWL_CMD(PM_SLEEP_NOTIFICATION);
67 IWL_CMD(PM_DEBUG_STATISTIC_NOTIFIC);
68 IWL_CMD(REPLY_SCAN_CMD);
69 IWL_CMD(REPLY_SCAN_ABORT_CMD);
70 IWL_CMD(SCAN_START_NOTIFICATION);
71 IWL_CMD(SCAN_RESULTS_NOTIFICATION);
72 IWL_CMD(SCAN_COMPLETE_NOTIFICATION);
73 IWL_CMD(BEACON_NOTIFICATION);
74 IWL_CMD(REPLY_TX_BEACON);
75 IWL_CMD(WHO_IS_AWAKE_NOTIFICATION);
76 IWL_CMD(QUIET_NOTIFICATION);
77 IWL_CMD(REPLY_TX_PWR_TABLE_CMD);
78 IWL_CMD(MEASURE_ABORT_NOTIFICATION);
79 IWL_CMD(REPLY_BT_CONFIG);
80 IWL_CMD(REPLY_STATISTICS_CMD);
81 IWL_CMD(STATISTICS_NOTIFICATION);
82 IWL_CMD(REPLY_CARD_STATE_CMD);
83 IWL_CMD(CARD_STATE_NOTIFICATION);
84 IWL_CMD(MISSED_BEACONS_NOTIFICATION);
85 IWL_CMD(REPLY_CT_KILL_CONFIG_CMD);
86 IWL_CMD(SENSITIVITY_CMD);
87 IWL_CMD(REPLY_PHY_CALIBRATION_CMD);
88 IWL_CMD(REPLY_RX_PHY_CMD);
89 IWL_CMD(REPLY_RX_MPDU_CMD);
90 IWL_CMD(REPLY_RX);
91 IWL_CMD(REPLY_COMPRESSED_BA);
92 IWL_CMD(CALIBRATION_CFG_CMD);
93 IWL_CMD(CALIBRATION_RES_NOTIFICATION);
94 IWL_CMD(CALIBRATION_COMPLETE_NOTIFICATION);
95 IWL_CMD(REPLY_TX_POWER_DBM_CMD);
96 default:
97 return "UNKNOWN";
101 EXPORT_SYMBOL(get_cmd_string);
103 #define HOST_COMPLETE_TIMEOUT (HZ / 2)
105 static void iwl_generic_cmd_callback(struct iwl_priv *priv,
106 struct iwl_device_cmd *cmd,
107 struct iwl_rx_packet *pkt)
109 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
110 IWL_ERR(priv, "Bad return from %s (0x%08X)\n",
111 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
112 return;
115 #ifdef CONFIG_IWLWIFI_DEBUG
116 switch (cmd->hdr.cmd) {
117 case REPLY_TX_LINK_QUALITY_CMD:
118 case SENSITIVITY_CMD:
119 IWL_DEBUG_HC_DUMP(priv, "back from %s (0x%08X)\n",
120 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
121 break;
122 default:
123 IWL_DEBUG_HC(priv, "back from %s (0x%08X)\n",
124 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
126 #endif
129 static int iwl_send_cmd_async(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
131 int ret;
133 BUG_ON(!(cmd->flags & CMD_ASYNC));
135 /* An asynchronous command can not expect an SKB to be set. */
136 BUG_ON(cmd->flags & CMD_WANT_SKB);
138 /* Assign a generic callback if one is not provided */
139 if (!cmd->callback)
140 cmd->callback = iwl_generic_cmd_callback;
142 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
143 return -EBUSY;
145 ret = iwl_enqueue_hcmd(priv, cmd);
146 if (ret < 0) {
147 IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
148 get_cmd_string(cmd->id), ret);
149 return ret;
151 return 0;
154 int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
156 int cmd_idx;
157 int ret;
159 BUG_ON(cmd->flags & CMD_ASYNC);
161 /* A synchronous command can not have a callback set. */
162 BUG_ON(cmd->callback);
164 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
165 IWL_ERR(priv,
166 "Error sending %s: Already sending a host command\n",
167 get_cmd_string(cmd->id));
168 ret = -EBUSY;
169 goto out;
172 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
174 cmd_idx = iwl_enqueue_hcmd(priv, cmd);
175 if (cmd_idx < 0) {
176 ret = cmd_idx;
177 IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
178 get_cmd_string(cmd->id), ret);
179 goto out;
182 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
183 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
184 HOST_COMPLETE_TIMEOUT);
185 if (!ret) {
186 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
187 IWL_ERR(priv,
188 "Error sending %s: time out after %dms.\n",
189 get_cmd_string(cmd->id),
190 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
192 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
193 ret = -ETIMEDOUT;
194 goto cancel;
198 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
199 IWL_DEBUG_INFO(priv, "Command %s aborted: RF KILL Switch\n",
200 get_cmd_string(cmd->id));
201 ret = -ECANCELED;
202 goto fail;
204 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
205 IWL_DEBUG_INFO(priv, "Command %s failed: FW Error\n",
206 get_cmd_string(cmd->id));
207 ret = -EIO;
208 goto fail;
210 if ((cmd->flags & CMD_WANT_SKB) && !cmd->reply_page) {
211 IWL_ERR(priv, "Error: Response NULL in '%s'\n",
212 get_cmd_string(cmd->id));
213 ret = -EIO;
214 goto cancel;
217 ret = 0;
218 goto out;
220 cancel:
221 if (cmd->flags & CMD_WANT_SKB) {
223 * Cancel the CMD_WANT_SKB flag for the cmd in the
224 * TX cmd queue. Otherwise in case the cmd comes
225 * in later, it will possibly set an invalid
226 * address (cmd->meta.source).
228 priv->txq[IWL_CMD_QUEUE_NUM].meta[cmd_idx].flags &=
229 ~CMD_WANT_SKB;
231 fail:
232 if (cmd->reply_page) {
233 free_pages(cmd->reply_page, priv->hw_params.rx_page_order);
234 cmd->reply_page = 0;
236 out:
237 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
238 return ret;
240 EXPORT_SYMBOL(iwl_send_cmd_sync);
242 int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
244 if (cmd->flags & CMD_ASYNC)
245 return iwl_send_cmd_async(priv, cmd);
247 return iwl_send_cmd_sync(priv, cmd);
249 EXPORT_SYMBOL(iwl_send_cmd);
251 int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
253 struct iwl_host_cmd cmd = {
254 .id = id,
255 .len = len,
256 .data = data,
259 return iwl_send_cmd_sync(priv, &cmd);
261 EXPORT_SYMBOL(iwl_send_cmd_pdu);
263 int iwl_send_cmd_pdu_async(struct iwl_priv *priv,
264 u8 id, u16 len, const void *data,
265 void (*callback)(struct iwl_priv *priv,
266 struct iwl_device_cmd *cmd,
267 struct iwl_rx_packet *pkt))
269 struct iwl_host_cmd cmd = {
270 .id = id,
271 .len = len,
272 .data = data,
275 cmd.flags |= CMD_ASYNC;
276 cmd.callback = callback;
278 return iwl_send_cmd_async(priv, &cmd);
280 EXPORT_SYMBOL(iwl_send_cmd_pdu_async);