added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / drivers / net / wireless / iwlwifi / iwl-hcmd.c
blob4b35b30e493e8abc82a90aa393d018683fa2359b
1 /******************************************************************************
3 * GPL LICENSE SUMMARY
5 * Copyright(c) 2008 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 <net/mac80211.h>
33 #include "iwl-dev.h" /* FIXME: remove */
34 #include "iwl-debug.h"
35 #include "iwl-eeprom.h"
36 #include "iwl-core.h"
39 #define IWL_CMD(x) case x: return #x
41 const char *get_cmd_string(u8 cmd)
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);
53 IWL_CMD(REPLY_WEPKEY);
54 IWL_CMD(REPLY_3945_RX);
55 IWL_CMD(REPLY_TX);
56 IWL_CMD(REPLY_RATE_SCALE);
57 IWL_CMD(REPLY_LEDS_CMD);
58 IWL_CMD(REPLY_TX_LINK_QUALITY_CMD);
59 IWL_CMD(COEX_PRIORITY_TABLE_CMD);
60 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);
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 default:
98 return "UNKNOWN";
102 EXPORT_SYMBOL(get_cmd_string);
104 #define HOST_COMPLETE_TIMEOUT (HZ / 2)
106 static int iwl_generic_cmd_callback(struct iwl_priv *priv,
107 struct iwl_cmd *cmd, struct sk_buff *skb)
109 struct iwl_rx_packet *pkt = NULL;
111 if (!skb) {
112 IWL_ERROR("Error: Response NULL in %s.\n",
113 get_cmd_string(cmd->hdr.cmd));
114 return 1;
117 pkt = (struct iwl_rx_packet *)skb->data;
118 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
119 IWL_ERROR("Bad return from %s (0x%08X)\n",
120 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
121 return 1;
124 #ifdef CONFIG_IWLWIFI_DEBUG
125 switch (cmd->hdr.cmd) {
126 case REPLY_TX_LINK_QUALITY_CMD:
127 case SENSITIVITY_CMD:
128 IWL_DEBUG_HC_DUMP("back from %s (0x%08X)\n",
129 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
130 break;
131 default:
132 IWL_DEBUG_HC("back from %s (0x%08X)\n",
133 get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
135 #endif
137 /* Let iwl_tx_complete free the response skb */
138 return 1;
141 static int iwl_send_cmd_async(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
143 int ret;
145 BUG_ON(!(cmd->meta.flags & CMD_ASYNC));
147 /* An asynchronous command can not expect an SKB to be set. */
148 BUG_ON(cmd->meta.flags & CMD_WANT_SKB);
150 /* Assign a generic callback if one is not provided */
151 if (!cmd->meta.u.callback)
152 cmd->meta.u.callback = iwl_generic_cmd_callback;
154 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
155 return -EBUSY;
157 ret = iwl_enqueue_hcmd(priv, cmd);
158 if (ret < 0) {
159 IWL_ERROR("Error sending %s: enqueue_hcmd failed: %d\n",
160 get_cmd_string(cmd->id), ret);
161 return ret;
163 return 0;
166 int iwl_send_cmd_sync(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
168 int cmd_idx;
169 int ret;
171 BUG_ON(cmd->meta.flags & CMD_ASYNC);
173 /* A synchronous command can not have a callback set. */
174 BUG_ON(cmd->meta.u.callback != NULL);
176 if (test_and_set_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status)) {
177 IWL_ERROR("Error sending %s: Already sending a host command\n",
178 get_cmd_string(cmd->id));
179 ret = -EBUSY;
180 goto out;
183 set_bit(STATUS_HCMD_ACTIVE, &priv->status);
185 if (cmd->meta.flags & CMD_WANT_SKB)
186 cmd->meta.source = &cmd->meta;
188 cmd_idx = iwl_enqueue_hcmd(priv, cmd);
189 if (cmd_idx < 0) {
190 ret = cmd_idx;
191 IWL_ERROR("Error sending %s: enqueue_hcmd failed: %d\n",
192 get_cmd_string(cmd->id), ret);
193 goto out;
196 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
197 !test_bit(STATUS_HCMD_ACTIVE, &priv->status),
198 HOST_COMPLETE_TIMEOUT);
199 if (!ret) {
200 if (test_bit(STATUS_HCMD_ACTIVE, &priv->status)) {
201 IWL_ERROR("Error sending %s: time out after %dms.\n",
202 get_cmd_string(cmd->id),
203 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
205 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
206 ret = -ETIMEDOUT;
207 goto cancel;
211 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
212 IWL_DEBUG_INFO("Command %s aborted: RF KILL Switch\n",
213 get_cmd_string(cmd->id));
214 ret = -ECANCELED;
215 goto fail;
217 if (test_bit(STATUS_FW_ERROR, &priv->status)) {
218 IWL_DEBUG_INFO("Command %s failed: FW Error\n",
219 get_cmd_string(cmd->id));
220 ret = -EIO;
221 goto fail;
223 if ((cmd->meta.flags & CMD_WANT_SKB) && !cmd->meta.u.skb) {
224 IWL_ERROR("Error: Response NULL in '%s'\n",
225 get_cmd_string(cmd->id));
226 ret = -EIO;
227 goto cancel;
230 ret = 0;
231 goto out;
233 cancel:
234 if (cmd->meta.flags & CMD_WANT_SKB) {
235 struct iwl_cmd *qcmd;
237 /* Cancel the CMD_WANT_SKB flag for the cmd in the
238 * TX cmd queue. Otherwise in case the cmd comes
239 * in later, it will possibly set an invalid
240 * address (cmd->meta.source). */
241 qcmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_idx];
242 qcmd->meta.flags &= ~CMD_WANT_SKB;
244 fail:
245 if (cmd->meta.u.skb) {
246 dev_kfree_skb_any(cmd->meta.u.skb);
247 cmd->meta.u.skb = NULL;
249 out:
250 clear_bit(STATUS_HCMD_SYNC_ACTIVE, &priv->status);
251 return ret;
253 EXPORT_SYMBOL(iwl_send_cmd_sync);
255 int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
257 if (cmd->meta.flags & CMD_ASYNC)
258 return iwl_send_cmd_async(priv, cmd);
260 return iwl_send_cmd_sync(priv, cmd);
262 EXPORT_SYMBOL(iwl_send_cmd);
264 int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data)
266 struct iwl_host_cmd cmd = {
267 .id = id,
268 .len = len,
269 .data = data,
272 return iwl_send_cmd_sync(priv, &cmd);
274 EXPORT_SYMBOL(iwl_send_cmd_pdu);
276 int iwl_send_cmd_pdu_async(struct iwl_priv *priv,
277 u8 id, u16 len, const void *data,
278 int (*callback)(struct iwl_priv *priv,
279 struct iwl_cmd *cmd,
280 struct sk_buff *skb))
282 struct iwl_host_cmd cmd = {
283 .id = id,
284 .len = len,
285 .data = data,
288 cmd.meta.flags |= CMD_ASYNC;
289 cmd.meta.u.callback = callback;
291 return iwl_send_cmd_async(priv, &cmd);
293 EXPORT_SYMBOL(iwl_send_cmd_pdu_async);