Merge git://git.infradead.org/battery-2.6
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-hcmd.c
1 /******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
5 * Copyright(c) 2008 - 2010 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/kernel.h>
30 #include <linux/module.h>
31 #include <linux/sched.h>
32 #include <net/mac80211.h>
33
34 #include "iwl-dev.h" /* FIXME: remove */
35 #include "iwl-debug.h"
36 #include "iwl-eeprom.h"
37 #include "iwl-core.h"
38
39
40 const char *get_cmd_string(u8 cmd)
41 {
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(COEX_MEDIUM_NOTIFICATION);
60 IWL_CMD(COEX_EVENT_CMD);
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);
93 IWL_CMD(CALIBRATION_CFG_CMD);
94 IWL_CMD(CALIBRATION_RES_NOTIFICATION);
95 IWL_CMD(CALIBRATION_COMPLETE_NOTIFICATION);
96 IWL_CMD(REPLY_TX_POWER_DBM_CMD);
97 IWL_CMD(TEMPERATURE_NOTIFICATION);
98 IWL_CMD(TX_ANT_CONFIGURATION_CMD);
99 default:
100 return "UNKNOWN";
101
102 }
103 }
104 EXPORT_SYMBOL(get_cmd_string);
105
106 #define HOST_COMPLETE_TIMEOUT (HZ / 2)
107
108 static void iwl_generic_cmd_callback(struct iwl_priv *priv,
109 struct iwl_device_cmd *cmd,
110 struct iwl_rx_packet *pkt)
111 {
112 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
113 IWL_ERR(priv, "Bad return from %s (0x%08X)\n",
114 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
115 return;
116 }
117
118 #ifdef CONFIG_IWLWIFI_DEBUG
119 switch (cmd->hdr.cmd) {
120 case REPLY_TX_LINK_QUALITY_CMD:
121 case SENSITIVITY_CMD:
122 IWL_DEBUG_HC_DUMP(priv, "back from %s (0x%08X)\n",
123 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
124 break;
125 default:
126 IWL_DEBUG_HC(priv, "back from %s (0x%08X)\n",
127 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
128 }
129 #endif
130 }
131
132 static int iwl_send_cmd_async(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
133 {
134 int ret;
135
136 BUG_ON(!(cmd->flags & CMD_ASYNC));
137
138 /* An asynchronous command can not expect an SKB to be set. */
139 BUG_ON(cmd->flags & CMD_WANT_SKB);
140
141 /* Assign a generic callback if one is not provided */
142 if (!cmd->callback)
143 cmd->callback = iwl_generic_cmd_callback;
144
145 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
146 return -EBUSY;
147
148 ret = iwl_enqueue_hcmd(priv, cmd);
149 if (ret < 0) {
150 IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
151 get_cmd_string(cmd->id), ret);
152 return ret;
153 }
154 return 0;
155 }
156
157 int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
158 {
159 int cmd_idx;
160 int ret;
161
162 BUG_ON(cmd->flags & CMD_ASYNC);
163
164 /* A synchronous command can not have a callback set. */
165 BUG_ON(cmd->callback);
166
167 IWL_DEBUG_INFO(priv, "Attempting to send sync command %s\n",
168 get_cmd_string(cmd->id));
169 mutex_lock(&priv->sync_cmd_mutex);
170
171 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
172 IWL_DEBUG_INFO(priv, "Setting HCMD_ACTIVE for command %s\n",
173 get_cmd_string(cmd->id));
174
175 cmd_idx = iwl_enqueue_hcmd(priv, cmd);
176 if (cmd_idx < 0) {
177 ret = cmd_idx;
178 IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n",
179 get_cmd_string(cmd->id), ret);
180 goto out;
181 }
182
183 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
184 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
185 HOST_COMPLETE_TIMEOUT);
186 if (!ret) {
187 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
188 IWL_ERR(priv,
189 "Error sending %s: time out after %dms.\n",
190 get_cmd_string(cmd->id),
191 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
192
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
201 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
202 IWL_ERR(priv, "Command %s aborted: RF KILL Switch\n",
203 get_cmd_string(cmd->id));
204 ret = -ECANCELED;
205 goto fail;
206 }
207 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
208 IWL_ERR(priv, "Command %s failed: FW Error\n",
209 get_cmd_string(cmd->id));
210 ret = -EIO;
211 goto fail;
212 }
213 if ((cmd->flags & CMD_WANT_SKB) && !cmd->reply_page) {
214 IWL_ERR(priv, "Error: Response NULL in '%s'\n",
215 get_cmd_string(cmd->id));
216 ret = -EIO;
217 goto cancel;
218 }
219
220 ret = 0;
221 goto out;
222
223 cancel:
224 if (cmd->flags & CMD_WANT_SKB) {
225 /*
226 * Cancel the CMD_WANT_SKB flag for the cmd in the
227 * TX cmd queue. Otherwise in case the cmd comes
228 * in later, it will possibly set an invalid
229 * address (cmd->meta.source).
230 */
231 priv->txq[IWL_CMD_QUEUE_NUM].meta[cmd_idx].flags &=
232 ~CMD_WANT_SKB;
233 }
234 fail:
235 if (cmd->reply_page) {
236 iwl_free_pages(priv, cmd->reply_page);
237 cmd->reply_page = 0;
238 }
239 out:
240 mutex_unlock(&priv->sync_cmd_mutex);
241 return ret;
242 }
243 EXPORT_SYMBOL(iwl_send_cmd_sync);
244
245 int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
246 {
247 if (cmd->flags & CMD_ASYNC)
248 return iwl_send_cmd_async(priv, cmd);
249
250 return iwl_send_cmd_sync(priv, cmd);
251 }
252 EXPORT_SYMBOL(iwl_send_cmd);
253
254 int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
255 {
256 struct iwl_host_cmd cmd = {
257 .id = id,
258 .len = len,
259 .data = data,
260 };
261
262 return iwl_send_cmd_sync(priv, &cmd);
263 }
264 EXPORT_SYMBOL(iwl_send_cmd_pdu);
265
266 int iwl_send_cmd_pdu_async(struct iwl_priv *priv,
267 u8 id, u16 len, const void *data,
268 void (*callback)(struct iwl_priv *priv,
269 struct iwl_device_cmd *cmd,
270 struct iwl_rx_packet *pkt))
271 {
272 struct iwl_host_cmd cmd = {
273 .id = id,
274 .len = len,
275 .data = data,
276 };
277
278 cmd.flags |= CMD_ASYNC;
279 cmd.callback = callback;
280
281 return iwl_send_cmd_async(priv, &cmd);
282 }
283 EXPORT_SYMBOL(iwl_send_cmd_pdu_async);
This page took 0.037192 seconds and 6 git commands to generate.