]>
Commit | Line | Data |
---|---|---|
857485c0 TW |
1 | /****************************************************************************** |
2 | * | |
3 | * GPL LICENSE SUMMARY | |
4 | * | |
1f447808 | 5 | * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved. |
857485c0 TW |
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: | |
759ef89f | 25 | * Intel Linux Wireless <ilw@linux.intel.com> |
857485c0 TW |
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> | |
d43c36dc | 31 | #include <linux/sched.h> |
857485c0 TW |
32 | #include <net/mac80211.h> |
33 | ||
3e0d4cb1 | 34 | #include "iwl-dev.h" /* FIXME: remove */ |
857485c0 TW |
35 | #include "iwl-debug.h" |
36 | #include "iwl-eeprom.h" | |
37 | #include "iwl-core.h" | |
38 | ||
39 | ||
857485c0 TW |
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); | |
0a0bed1d | 52 | IWL_CMD(REPLY_WEPKEY); |
d732129b | 53 | IWL_CMD(REPLY_3945_RX); |
857485c0 TW |
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); | |
7c616cba | 58 | IWL_CMD(COEX_PRIORITY_TABLE_CMD); |
fe1bcbfd WYG |
59 | IWL_CMD(COEX_MEDIUM_NOTIFICATION); |
60 | IWL_CMD(COEX_EVENT_CMD); | |
857485c0 TW |
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); | |
7c616cba TW |
93 | IWL_CMD(CALIBRATION_CFG_CMD); |
94 | IWL_CMD(CALIBRATION_RES_NOTIFICATION); | |
95 | IWL_CMD(CALIBRATION_COMPLETE_NOTIFICATION); | |
ebbbdc3f | 96 | IWL_CMD(REPLY_TX_POWER_DBM_CMD); |
1a5c3d61 JS |
97 | IWL_CMD(TEMPERATURE_NOTIFICATION); |
98 | IWL_CMD(TX_ANT_CONFIGURATION_CMD); | |
857485c0 TW |
99 | default: |
100 | return "UNKNOWN"; | |
101 | ||
102 | } | |
103 | } | |
104 | EXPORT_SYMBOL(get_cmd_string); | |
105 | ||
106 | #define HOST_COMPLETE_TIMEOUT (HZ / 2) | |
107 | ||
5696aea6 JB |
108 | static void iwl_generic_cmd_callback(struct iwl_priv *priv, |
109 | struct iwl_device_cmd *cmd, | |
2f301227 | 110 | struct iwl_rx_packet *pkt) |
0472f887 | 111 | { |
0472f887 | 112 | if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) { |
15b1687c | 113 | IWL_ERR(priv, "Bad return from %s (0x%08X)\n", |
0472f887 | 114 | get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags); |
5696aea6 | 115 | return; |
0472f887 EG |
116 | } |
117 | ||
ded2ae7c EK |
118 | #ifdef CONFIG_IWLWIFI_DEBUG |
119 | switch (cmd->hdr.cmd) { | |
120 | case REPLY_TX_LINK_QUALITY_CMD: | |
121 | case SENSITIVITY_CMD: | |
e1623446 | 122 | IWL_DEBUG_HC_DUMP(priv, "back from %s (0x%08X)\n", |
ded2ae7c | 123 | get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags); |
5696aea6 | 124 | break; |
ded2ae7c | 125 | default: |
e1623446 | 126 | IWL_DEBUG_HC(priv, "back from %s (0x%08X)\n", |
ded2ae7c EK |
127 | get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags); |
128 | } | |
129 | #endif | |
0472f887 EG |
130 | } |
131 | ||
857485c0 TW |
132 | static int iwl_send_cmd_async(struct iwl_priv *priv, struct iwl_host_cmd *cmd) |
133 | { | |
134 | int ret; | |
135 | ||
c2acea8e | 136 | BUG_ON(!(cmd->flags & CMD_ASYNC)); |
857485c0 TW |
137 | |
138 | /* An asynchronous command can not expect an SKB to be set. */ | |
c2acea8e | 139 | BUG_ON(cmd->flags & CMD_WANT_SKB); |
857485c0 | 140 | |
0472f887 | 141 | /* Assign a generic callback if one is not provided */ |
c2acea8e JB |
142 | if (!cmd->callback) |
143 | cmd->callback = iwl_generic_cmd_callback; | |
857485c0 TW |
144 | |
145 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) | |
146 | return -EBUSY; | |
147 | ||
fd4abac5 | 148 | ret = iwl_enqueue_hcmd(priv, cmd); |
857485c0 | 149 | if (ret < 0) { |
15b1687c | 150 | IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n", |
857485c0 TW |
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; | |
857485c0 | 161 | |
c2acea8e | 162 | BUG_ON(cmd->flags & CMD_ASYNC); |
857485c0 TW |
163 | |
164 | /* A synchronous command can not have a callback set. */ | |
c2acea8e | 165 | BUG_ON(cmd->callback); |
857485c0 | 166 | |
d2dfe6df | 167 | IWL_DEBUG_INFO(priv, "Attempting to send sync command %s\n", |
15b1687c | 168 | get_cmd_string(cmd->id)); |
d2dfe6df | 169 | mutex_lock(&priv->sync_cmd_mutex); |
857485c0 TW |
170 | |
171 | set_bit(STATUS_HCMD_ACTIVE, &priv->status); | |
91dd6c27 | 172 | IWL_DEBUG_INFO(priv, "Setting HCMD_ACTIVE for command %s\n", |
d2dfe6df | 173 | get_cmd_string(cmd->id)); |
857485c0 | 174 | |
fd4abac5 | 175 | cmd_idx = iwl_enqueue_hcmd(priv, cmd); |
857485c0 TW |
176 | if (cmd_idx < 0) { |
177 | ret = cmd_idx; | |
15b1687c | 178 | IWL_ERR(priv, "Error sending %s: enqueue_hcmd failed: %d\n", |
857485c0 TW |
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)) { | |
15b1687c WT |
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)); | |
857485c0 TW |
192 | |
193 | clear_bit(STATUS_HCMD_ACTIVE, &priv->status); | |
91dd6c27 | 194 | IWL_DEBUG_INFO(priv, "Clearing HCMD_ACTIVE for command %s\n", |
d2dfe6df | 195 | get_cmd_string(cmd->id)); |
857485c0 TW |
196 | ret = -ETIMEDOUT; |
197 | goto cancel; | |
198 | } | |
199 | } | |
200 | ||
201 | if (test_bit(STATUS_RF_KILL_HW, &priv->status)) { | |
cf7ff8df | 202 | IWL_ERR(priv, "Command %s aborted: RF KILL Switch\n", |
857485c0 TW |
203 | get_cmd_string(cmd->id)); |
204 | ret = -ECANCELED; | |
205 | goto fail; | |
206 | } | |
207 | if (test_bit(STATUS_FW_ERROR, &priv->status)) { | |
cf7ff8df | 208 | IWL_ERR(priv, "Command %s failed: FW Error\n", |
857485c0 TW |
209 | get_cmd_string(cmd->id)); |
210 | ret = -EIO; | |
211 | goto fail; | |
212 | } | |
2f301227 | 213 | if ((cmd->flags & CMD_WANT_SKB) && !cmd->reply_page) { |
15b1687c | 214 | IWL_ERR(priv, "Error: Response NULL in '%s'\n", |
857485c0 TW |
215 | get_cmd_string(cmd->id)); |
216 | ret = -EIO; | |
73e1a65d | 217 | goto cancel; |
857485c0 TW |
218 | } |
219 | ||
220 | ret = 0; | |
221 | goto out; | |
222 | ||
223 | cancel: | |
c2acea8e JB |
224 | if (cmd->flags & CMD_WANT_SKB) { |
225 | /* | |
226 | * Cancel the CMD_WANT_SKB flag for the cmd in the | |
857485c0 TW |
227 | * TX cmd queue. Otherwise in case the cmd comes |
228 | * in later, it will possibly set an invalid | |
c2acea8e JB |
229 | * address (cmd->meta.source). |
230 | */ | |
231 | priv->txq[IWL_CMD_QUEUE_NUM].meta[cmd_idx].flags &= | |
232 | ~CMD_WANT_SKB; | |
857485c0 TW |
233 | } |
234 | fail: | |
2f301227 | 235 | if (cmd->reply_page) { |
64a76b50 | 236 | iwl_free_pages(priv, cmd->reply_page); |
2f301227 | 237 | cmd->reply_page = 0; |
857485c0 TW |
238 | } |
239 | out: | |
d2dfe6df | 240 | mutex_unlock(&priv->sync_cmd_mutex); |
857485c0 TW |
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 | { | |
c2acea8e | 247 | if (cmd->flags & CMD_ASYNC) |
857485c0 TW |
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, | |
5696aea6 JB |
268 | void (*callback)(struct iwl_priv *priv, |
269 | struct iwl_device_cmd *cmd, | |
2f301227 | 270 | struct iwl_rx_packet *pkt)) |
857485c0 TW |
271 | { |
272 | struct iwl_host_cmd cmd = { | |
273 | .id = id, | |
274 | .len = len, | |
275 | .data = data, | |
276 | }; | |
277 | ||
c2acea8e JB |
278 | cmd.flags |= CMD_ASYNC; |
279 | cmd.callback = callback; | |
857485c0 TW |
280 | |
281 | return iwl_send_cmd_async(priv, &cmd); | |
282 | } | |
283 | EXPORT_SYMBOL(iwl_send_cmd_pdu_async); |