blob: 881ba043770aacd54bcb2580167e7c4ba09a626f [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
5 * Copyright(c) 2008 - 2011 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/etherdevice.h>
32#include <linux/sched.h>
33#include <linux/slab.h>
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +010034#include <linux/types.h>
35#include <linux/lockdep.h>
36#include <linux/init.h>
37#include <linux/pci.h>
38#include <linux/dma-mapping.h>
39#include <linux/delay.h>
40#include <linux/skbuff.h>
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080041#include <net/mac80211.h>
42
Stanislaw Gruszka98613be2011-11-15 14:19:34 +010043#include "common.h"
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080044
Stanislaw Gruszkae7392362011-11-15 14:45:59 +010045const char *
46il_get_cmd_string(u8 cmd)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +010047{
48 switch (cmd) {
49 IL_CMD(N_ALIVE);
50 IL_CMD(N_ERROR);
51 IL_CMD(C_RXON);
52 IL_CMD(C_RXON_ASSOC);
53 IL_CMD(C_QOS_PARAM);
54 IL_CMD(C_RXON_TIMING);
55 IL_CMD(C_ADD_STA);
56 IL_CMD(C_REM_STA);
57 IL_CMD(C_WEPKEY);
58 IL_CMD(N_3945_RX);
59 IL_CMD(C_TX);
60 IL_CMD(C_RATE_SCALE);
61 IL_CMD(C_LEDS);
62 IL_CMD(C_TX_LINK_QUALITY_CMD);
63 IL_CMD(C_CHANNEL_SWITCH);
64 IL_CMD(N_CHANNEL_SWITCH);
65 IL_CMD(C_SPECTRUM_MEASUREMENT);
66 IL_CMD(N_SPECTRUM_MEASUREMENT);
67 IL_CMD(C_POWER_TBL);
68 IL_CMD(N_PM_SLEEP);
69 IL_CMD(N_PM_DEBUG_STATS);
70 IL_CMD(C_SCAN);
71 IL_CMD(C_SCAN_ABORT);
72 IL_CMD(N_SCAN_START);
73 IL_CMD(N_SCAN_RESULTS);
74 IL_CMD(N_SCAN_COMPLETE);
75 IL_CMD(N_BEACON);
76 IL_CMD(C_TX_BEACON);
77 IL_CMD(C_TX_PWR_TBL);
78 IL_CMD(C_BT_CONFIG);
79 IL_CMD(C_STATS);
80 IL_CMD(N_STATS);
81 IL_CMD(N_CARD_STATE);
82 IL_CMD(N_MISSED_BEACONS);
83 IL_CMD(C_CT_KILL_CONFIG);
84 IL_CMD(C_SENSITIVITY);
85 IL_CMD(C_PHY_CALIBRATION);
86 IL_CMD(N_RX_PHY);
87 IL_CMD(N_RX_MPDU);
88 IL_CMD(N_RX);
89 IL_CMD(N_COMPRESSED_BA);
90 default:
91 return "UNKNOWN";
92
93 }
94}
95EXPORT_SYMBOL(il_get_cmd_string);
96
97#define HOST_COMPLETE_TIMEOUT (HZ / 2)
98
Stanislaw Gruszkae7392362011-11-15 14:45:59 +010099static void
100il_generic_cmd_callback(struct il_priv *il, struct il_device_cmd *cmd,
101 struct il_rx_pkt *pkt)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100102{
103 if (pkt->hdr.flags & IL_CMD_FAILED_MSK) {
104 IL_ERR("Bad return from %s (0x%08X)\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100105 il_get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100106 return;
107 }
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100108#ifdef CONFIG_IWLEGACY_DEBUG
109 switch (cmd->hdr.cmd) {
110 case C_TX_LINK_QUALITY_CMD:
111 case C_SENSITIVITY:
112 D_HC_DUMP("back from %s (0x%08X)\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100113 il_get_cmd_string(cmd->hdr.cmd), pkt->hdr.flags);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100114 break;
115 default:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100116 D_HC("back from %s (0x%08X)\n", il_get_cmd_string(cmd->hdr.cmd),
117 pkt->hdr.flags);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100118 }
119#endif
120}
121
122static int
123il_send_cmd_async(struct il_priv *il, struct il_host_cmd *cmd)
124{
125 int ret;
126
127 BUG_ON(!(cmd->flags & CMD_ASYNC));
128
129 /* An asynchronous command can not expect an SKB to be set. */
130 BUG_ON(cmd->flags & CMD_WANT_SKB);
131
132 /* Assign a generic callback if one is not provided */
133 if (!cmd->callback)
134 cmd->callback = il_generic_cmd_callback;
135
136 if (test_bit(S_EXIT_PENDING, &il->status))
137 return -EBUSY;
138
139 ret = il_enqueue_hcmd(il, cmd);
140 if (ret < 0) {
141 IL_ERR("Error sending %s: enqueue_hcmd failed: %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100142 il_get_cmd_string(cmd->id), ret);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100143 return ret;
144 }
145 return 0;
146}
147
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100148int
149il_send_cmd_sync(struct il_priv *il, struct il_host_cmd *cmd)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100150{
151 int cmd_idx;
152 int ret;
153
154 lockdep_assert_held(&il->mutex);
155
156 BUG_ON(cmd->flags & CMD_ASYNC);
157
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100158 /* A synchronous command can not have a callback set. */
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100159 BUG_ON(cmd->callback);
160
161 D_INFO("Attempting to send sync command %s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100162 il_get_cmd_string(cmd->id));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100163
164 set_bit(S_HCMD_ACTIVE, &il->status);
165 D_INFO("Setting HCMD_ACTIVE for command %s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100166 il_get_cmd_string(cmd->id));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100167
168 cmd_idx = il_enqueue_hcmd(il, cmd);
169 if (cmd_idx < 0) {
170 ret = cmd_idx;
171 IL_ERR("Error sending %s: enqueue_hcmd failed: %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100172 il_get_cmd_string(cmd->id), ret);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100173 goto out;
174 }
175
176 ret = wait_event_timeout(il->wait_command_queue,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100177 !test_bit(S_HCMD_ACTIVE, &il->status),
178 HOST_COMPLETE_TIMEOUT);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100179 if (!ret) {
180 if (test_bit(S_HCMD_ACTIVE, &il->status)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100181 IL_ERR("Error sending %s: time out after %dms.\n",
182 il_get_cmd_string(cmd->id),
183 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100184
185 clear_bit(S_HCMD_ACTIVE, &il->status);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100186 D_INFO("Clearing HCMD_ACTIVE for command %s\n",
187 il_get_cmd_string(cmd->id));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100188 ret = -ETIMEDOUT;
189 goto cancel;
190 }
191 }
192
193 if (test_bit(S_RF_KILL_HW, &il->status)) {
194 IL_ERR("Command %s aborted: RF KILL Switch\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100195 il_get_cmd_string(cmd->id));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100196 ret = -ECANCELED;
197 goto fail;
198 }
199 if (test_bit(S_FW_ERROR, &il->status)) {
200 IL_ERR("Command %s failed: FW Error\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100201 il_get_cmd_string(cmd->id));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100202 ret = -EIO;
203 goto fail;
204 }
205 if ((cmd->flags & CMD_WANT_SKB) && !cmd->reply_page) {
206 IL_ERR("Error: Response NULL in '%s'\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100207 il_get_cmd_string(cmd->id));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100208 ret = -EIO;
209 goto cancel;
210 }
211
212 ret = 0;
213 goto out;
214
215cancel:
216 if (cmd->flags & CMD_WANT_SKB) {
217 /*
218 * Cancel the CMD_WANT_SKB flag for the cmd in the
219 * TX cmd queue. Otherwise in case the cmd comes
220 * in later, it will possibly set an invalid
221 * address (cmd->meta.source).
222 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100223 il->txq[il->cmd_queue].meta[cmd_idx].flags &= ~CMD_WANT_SKB;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100224 }
225fail:
226 if (cmd->reply_page) {
227 il_free_pages(il, cmd->reply_page);
228 cmd->reply_page = 0;
229 }
230out:
231 return ret;
232}
233EXPORT_SYMBOL(il_send_cmd_sync);
234
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100235int
236il_send_cmd(struct il_priv *il, struct il_host_cmd *cmd)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100237{
238 if (cmd->flags & CMD_ASYNC)
239 return il_send_cmd_async(il, cmd);
240
241 return il_send_cmd_sync(il, cmd);
242}
243EXPORT_SYMBOL(il_send_cmd);
244
245int
246il_send_cmd_pdu(struct il_priv *il, u8 id, u16 len, const void *data)
247{
248 struct il_host_cmd cmd = {
249 .id = id,
250 .len = len,
251 .data = data,
252 };
253
254 return il_send_cmd_sync(il, &cmd);
255}
256EXPORT_SYMBOL(il_send_cmd_pdu);
257
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100258int
259il_send_cmd_pdu_async(struct il_priv *il, u8 id, u16 len, const void *data,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100260 void (*callback) (struct il_priv *il,
261 struct il_device_cmd *cmd,
262 struct il_rx_pkt *pkt))
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100263{
264 struct il_host_cmd cmd = {
265 .id = id,
266 .len = len,
267 .data = data,
268 };
269
270 cmd.flags |= CMD_ASYNC;
271 cmd.callback = callback;
272
273 return il_send_cmd_async(il, &cmd);
274}
275EXPORT_SYMBOL(il_send_cmd_pdu_async);
276
277/* default: IL_LED_BLINK(0) using blinking idx table */
278static int led_mode;
279module_param(led_mode, int, S_IRUGO);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100280MODULE_PARM_DESC(led_mode,
281 "0=system default, " "1=On(RF On)/Off(RF Off), 2=blinking");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100282
283/* Throughput OFF time(ms) ON time (ms)
284 * >300 25 25
285 * >200 to 300 40 40
286 * >100 to 200 55 55
287 * >70 to 100 65 65
288 * >50 to 70 75 75
289 * >20 to 50 85 85
290 * >10 to 20 95 95
291 * >5 to 10 110 110
292 * >1 to 5 130 130
293 * >0 to 1 167 167
294 * <=0 SOLID ON
295 */
296static const struct ieee80211_tpt_blink il_blink[] = {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100297 {.throughput = 0, .blink_time = 334},
298 {.throughput = 1 * 1024 - 1, .blink_time = 260},
299 {.throughput = 5 * 1024 - 1, .blink_time = 220},
300 {.throughput = 10 * 1024 - 1, .blink_time = 190},
301 {.throughput = 20 * 1024 - 1, .blink_time = 170},
302 {.throughput = 50 * 1024 - 1, .blink_time = 150},
303 {.throughput = 70 * 1024 - 1, .blink_time = 130},
304 {.throughput = 100 * 1024 - 1, .blink_time = 110},
305 {.throughput = 200 * 1024 - 1, .blink_time = 80},
306 {.throughput = 300 * 1024 - 1, .blink_time = 50},
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100307};
308
309/*
310 * Adjust led blink rate to compensate on a MAC Clock difference on every HW
311 * Led blink rate analysis showed an average deviation of 0% on 3945,
312 * 5% on 4965 HW.
313 * Need to compensate on the led on/off time per HW according to the deviation
314 * to achieve the desired led frequency
315 * The calculation is: (100-averageDeviation)/100 * blinkTime
316 * For code efficiency the calculation will be:
317 * compensation = (100 - averageDeviation) * 64 / 100
318 * NewBlinkTime = (compensation * BlinkTime) / 64
319 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100320static inline u8
321il_blink_compensation(struct il_priv *il, u8 time, u16 compensation)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100322{
323 if (!compensation) {
324 IL_ERR("undefined blink compensation: "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100325 "use pre-defined blinking time\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100326 return time;
327 }
328
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100329 return (u8) ((time * compensation) >> 6);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100330}
331
332/* Set led pattern command */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100333static int
334il_led_cmd(struct il_priv *il, unsigned long on, unsigned long off)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100335{
336 struct il_led_cmd led_cmd = {
337 .id = IL_LED_LINK,
338 .interval = IL_DEF_LED_INTRVL
339 };
340 int ret;
341
342 if (!test_bit(S_READY, &il->status))
343 return -EBUSY;
344
345 if (il->blink_on == on && il->blink_off == off)
346 return 0;
347
348 if (off == 0) {
349 /* led is SOLID_ON */
350 on = IL_LED_SOLID;
351 }
352
353 D_LED("Led blink time compensation=%u\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100354 il->cfg->base_params->led_compensation);
355 led_cmd.on =
356 il_blink_compensation(il, on,
357 il->cfg->base_params->led_compensation);
358 led_cmd.off =
359 il_blink_compensation(il, off,
360 il->cfg->base_params->led_compensation);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100361
362 ret = il->cfg->ops->led->cmd(il, &led_cmd);
363 if (!ret) {
364 il->blink_on = on;
365 il->blink_off = off;
366 }
367 return ret;
368}
369
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100370static void
371il_led_brightness_set(struct led_classdev *led_cdev,
372 enum led_brightness brightness)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100373{
374 struct il_priv *il = container_of(led_cdev, struct il_priv, led);
375 unsigned long on = 0;
376
377 if (brightness > 0)
378 on = IL_LED_SOLID;
379
380 il_led_cmd(il, on, 0);
381}
382
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100383static int
384il_led_blink_set(struct led_classdev *led_cdev, unsigned long *delay_on,
385 unsigned long *delay_off)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100386{
387 struct il_priv *il = container_of(led_cdev, struct il_priv, led);
388
389 return il_led_cmd(il, *delay_on, *delay_off);
390}
391
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100392void
393il_leds_init(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100394{
395 int mode = led_mode;
396 int ret;
397
398 if (mode == IL_LED_DEFAULT)
399 mode = il->cfg->led_mode;
400
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100401 il->led.name =
402 kasprintf(GFP_KERNEL, "%s-led", wiphy_name(il->hw->wiphy));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100403 il->led.brightness_set = il_led_brightness_set;
404 il->led.blink_set = il_led_blink_set;
405 il->led.max_brightness = 1;
406
407 switch (mode) {
408 case IL_LED_DEFAULT:
409 WARN_ON(1);
410 break;
411 case IL_LED_BLINK:
412 il->led.default_trigger =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100413 ieee80211_create_tpt_led_trigger(il->hw,
414 IEEE80211_TPT_LEDTRIG_FL_CONNECTED,
415 il_blink,
416 ARRAY_SIZE(il_blink));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100417 break;
418 case IL_LED_RF_STATE:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100419 il->led.default_trigger = ieee80211_get_radio_led_name(il->hw);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100420 break;
421 }
422
423 ret = led_classdev_register(&il->pci_dev->dev, &il->led);
424 if (ret) {
425 kfree(il->led.name);
426 return;
427 }
428
429 il->led_registered = true;
430}
431EXPORT_SYMBOL(il_leds_init);
432
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100433void
434il_leds_exit(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100435{
436 if (!il->led_registered)
437 return;
438
439 led_classdev_unregister(&il->led);
440 kfree(il->led.name);
441}
442EXPORT_SYMBOL(il_leds_exit);
443
444/************************** EEPROM BANDS ****************************
445 *
446 * The il_eeprom_band definitions below provide the mapping from the
447 * EEPROM contents to the specific channel number supported for each
448 * band.
449 *
450 * For example, il_priv->eeprom.band_3_channels[4] from the band_3
451 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
452 * The specific geography and calibration information for that channel
453 * is contained in the eeprom map itself.
454 *
455 * During init, we copy the eeprom information and channel map
456 * information into il->channel_info_24/52 and il->channel_map_24/52
457 *
458 * channel_map_24/52 provides the idx in the channel_info array for a
459 * given channel. We have to have two separate maps as there is channel
460 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
461 * band_2
462 *
463 * A value of 0xff stored in the channel_map indicates that the channel
464 * is not supported by the hardware at all.
465 *
466 * A value of 0xfe in the channel_map indicates that the channel is not
467 * valid for Tx with the current hardware. This means that
468 * while the system can tune and receive on a given channel, it may not
469 * be able to associate or transmit any frames on that
470 * channel. There is no corresponding channel information for that
471 * entry.
472 *
473 *********************************************************************/
474
475/* 2.4 GHz */
476const u8 il_eeprom_band_1[14] = {
477 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
478};
479
480/* 5.2 GHz bands */
481static const u8 il_eeprom_band_2[] = { /* 4915-5080MHz */
482 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
483};
484
485static const u8 il_eeprom_band_3[] = { /* 5170-5320MHz */
486 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
487};
488
489static const u8 il_eeprom_band_4[] = { /* 5500-5700MHz */
490 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
491};
492
493static const u8 il_eeprom_band_5[] = { /* 5725-5825MHz */
494 145, 149, 153, 157, 161, 165
495};
496
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100497static const u8 il_eeprom_band_6[] = { /* 2.4 ht40 channel */
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100498 1, 2, 3, 4, 5, 6, 7
499};
500
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100501static const u8 il_eeprom_band_7[] = { /* 5.2 ht40 channel */
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100502 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157
503};
504
505/******************************************************************************
506 *
507 * EEPROM related functions
508 *
509******************************************************************************/
510
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100511static int
512il_eeprom_verify_signature(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100513{
514 u32 gp = _il_rd(il, CSR_EEPROM_GP) & CSR_EEPROM_GP_VALID_MSK;
515 int ret = 0;
516
517 D_EEPROM("EEPROM signature=0x%08x\n", gp);
518 switch (gp) {
519 case CSR_EEPROM_GP_GOOD_SIG_EEP_LESS_THAN_4K:
520 case CSR_EEPROM_GP_GOOD_SIG_EEP_MORE_THAN_4K:
521 break;
522 default:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100523 IL_ERR("bad EEPROM signature," "EEPROM_GP=0x%08x\n", gp);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100524 ret = -ENOENT;
525 break;
526 }
527 return ret;
528}
529
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100530const u8 *
531il_eeprom_query_addr(const struct il_priv *il, size_t offset)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100532{
533 BUG_ON(offset >= il->cfg->base_params->eeprom_size);
534 return &il->eeprom[offset];
535}
536EXPORT_SYMBOL(il_eeprom_query_addr);
537
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100538u16
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100539il_eeprom_query16(const struct il_priv *il, size_t offset)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100540{
541 if (!il->eeprom)
542 return 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100543 return (u16) il->eeprom[offset] | ((u16) il->eeprom[offset + 1] << 8);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100544}
545EXPORT_SYMBOL(il_eeprom_query16);
546
547/**
548 * il_eeprom_init - read EEPROM contents
549 *
550 * Load the EEPROM contents from adapter into il->eeprom
551 *
552 * NOTE: This routine uses the non-debug IO access functions.
553 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100554int
555il_eeprom_init(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100556{
557 __le16 *e;
558 u32 gp = _il_rd(il, CSR_EEPROM_GP);
559 int sz;
560 int ret;
561 u16 addr;
562
563 /* allocate eeprom */
564 sz = il->cfg->base_params->eeprom_size;
565 D_EEPROM("NVM size = %d\n", sz);
566 il->eeprom = kzalloc(sz, GFP_KERNEL);
567 if (!il->eeprom) {
568 ret = -ENOMEM;
569 goto alloc_err;
570 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100571 e = (__le16 *) il->eeprom;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100572
573 il->cfg->ops->lib->apm_ops.init(il);
574
575 ret = il_eeprom_verify_signature(il);
576 if (ret < 0) {
577 IL_ERR("EEPROM not found, EEPROM_GP=0x%08x\n", gp);
578 ret = -ENOENT;
579 goto err;
580 }
581
582 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
583 ret = il->cfg->ops->lib->eeprom_ops.acquire_semaphore(il);
584 if (ret < 0) {
585 IL_ERR("Failed to acquire EEPROM semaphore.\n");
586 ret = -ENOENT;
587 goto err;
588 }
589
590 /* eeprom is an array of 16bit values */
591 for (addr = 0; addr < sz; addr += sizeof(u16)) {
592 u32 r;
593
594 _il_wr(il, CSR_EEPROM_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100595 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100596
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100597 ret =
598 _il_poll_bit(il, CSR_EEPROM_REG,
599 CSR_EEPROM_REG_READ_VALID_MSK,
600 CSR_EEPROM_REG_READ_VALID_MSK,
601 IL_EEPROM_ACCESS_TIMEOUT);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100602 if (ret < 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100603 IL_ERR("Time out reading EEPROM[%d]\n", addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100604 goto done;
605 }
606 r = _il_rd(il, CSR_EEPROM_REG);
607 e[addr / 2] = cpu_to_le16(r >> 16);
608 }
609
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100610 D_EEPROM("NVM Type: %s, version: 0x%x\n", "EEPROM",
611 il_eeprom_query16(il, EEPROM_VERSION));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100612
613 ret = 0;
614done:
615 il->cfg->ops->lib->eeprom_ops.release_semaphore(il);
616
617err:
618 if (ret)
619 il_eeprom_free(il);
620 /* Reset chip to save power until we load uCode during "up". */
621 il_apm_stop(il);
622alloc_err:
623 return ret;
624}
625EXPORT_SYMBOL(il_eeprom_init);
626
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100627void
628il_eeprom_free(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100629{
630 kfree(il->eeprom);
631 il->eeprom = NULL;
632}
633EXPORT_SYMBOL(il_eeprom_free);
634
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100635static void
636il_init_band_reference(const struct il_priv *il, int eep_band,
637 int *eeprom_ch_count,
638 const struct il_eeprom_channel **eeprom_ch_info,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100639 const u8 **eeprom_ch_idx)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100640{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100641 u32 offset =
642 il->cfg->ops->lib->eeprom_ops.regulatory_bands[eep_band - 1];
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100643 switch (eep_band) {
644 case 1: /* 2.4GHz band */
645 *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_1);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100646 *eeprom_ch_info =
647 (struct il_eeprom_channel *)il_eeprom_query_addr(il,
648 offset);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100649 *eeprom_ch_idx = il_eeprom_band_1;
650 break;
651 case 2: /* 4.9GHz band */
652 *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_2);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100653 *eeprom_ch_info =
654 (struct il_eeprom_channel *)il_eeprom_query_addr(il,
655 offset);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100656 *eeprom_ch_idx = il_eeprom_band_2;
657 break;
658 case 3: /* 5.2GHz band */
659 *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_3);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100660 *eeprom_ch_info =
661 (struct il_eeprom_channel *)il_eeprom_query_addr(il,
662 offset);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100663 *eeprom_ch_idx = il_eeprom_band_3;
664 break;
665 case 4: /* 5.5GHz band */
666 *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_4);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100667 *eeprom_ch_info =
668 (struct il_eeprom_channel *)il_eeprom_query_addr(il,
669 offset);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100670 *eeprom_ch_idx = il_eeprom_band_4;
671 break;
672 case 5: /* 5.7GHz band */
673 *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_5);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100674 *eeprom_ch_info =
675 (struct il_eeprom_channel *)il_eeprom_query_addr(il,
676 offset);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100677 *eeprom_ch_idx = il_eeprom_band_5;
678 break;
679 case 6: /* 2.4GHz ht40 channels */
680 *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_6);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100681 *eeprom_ch_info =
682 (struct il_eeprom_channel *)il_eeprom_query_addr(il,
683 offset);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100684 *eeprom_ch_idx = il_eeprom_band_6;
685 break;
686 case 7: /* 5 GHz ht40 channels */
687 *eeprom_ch_count = ARRAY_SIZE(il_eeprom_band_7);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100688 *eeprom_ch_info =
689 (struct il_eeprom_channel *)il_eeprom_query_addr(il,
690 offset);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100691 *eeprom_ch_idx = il_eeprom_band_7;
692 break;
693 default:
694 BUG();
695 }
696}
697
698#define CHECK_AND_PRINT(x) ((eeprom_ch->flags & EEPROM_CHANNEL_##x) \
699 ? # x " " : "")
700/**
701 * il_mod_ht40_chan_info - Copy ht40 channel info into driver's il.
702 *
703 * Does not set up a command, or touch hardware.
704 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100705static int
706il_mod_ht40_chan_info(struct il_priv *il, enum ieee80211_band band, u16 channel,
707 const struct il_eeprom_channel *eeprom_ch,
708 u8 clear_ht40_extension_channel)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100709{
710 struct il_channel_info *ch_info;
711
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100712 ch_info =
713 (struct il_channel_info *)il_get_channel_info(il, band, channel);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100714
715 if (!il_is_channel_valid(ch_info))
716 return -1;
717
718 D_EEPROM("HT40 Ch. %d [%sGHz] %s%s%s%s%s(0x%02x %ddBm):"
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100719 " Ad-Hoc %ssupported\n", ch_info->channel,
720 il_is_channel_a_band(ch_info) ? "5.2" : "2.4",
721 CHECK_AND_PRINT(IBSS), CHECK_AND_PRINT(ACTIVE),
722 CHECK_AND_PRINT(RADAR), CHECK_AND_PRINT(WIDE),
723 CHECK_AND_PRINT(DFS), eeprom_ch->flags,
724 eeprom_ch->max_power_avg,
725 ((eeprom_ch->flags & EEPROM_CHANNEL_IBSS) &&
726 !(eeprom_ch->flags & EEPROM_CHANNEL_RADAR)) ? "" : "not ");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100727
728 ch_info->ht40_eeprom = *eeprom_ch;
729 ch_info->ht40_max_power_avg = eeprom_ch->max_power_avg;
730 ch_info->ht40_flags = eeprom_ch->flags;
731 if (eeprom_ch->flags & EEPROM_CHANNEL_VALID)
732 ch_info->ht40_extension_channel &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100733 ~clear_ht40_extension_channel;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100734
735 return 0;
736}
737
738#define CHECK_AND_PRINT_I(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
739 ? # x " " : "")
740
741/**
742 * il_init_channel_map - Set up driver's info for all possible channels
743 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100744int
745il_init_channel_map(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100746{
747 int eeprom_ch_count = 0;
748 const u8 *eeprom_ch_idx = NULL;
749 const struct il_eeprom_channel *eeprom_ch_info = NULL;
750 int band, ch;
751 struct il_channel_info *ch_info;
752
753 if (il->channel_count) {
754 D_EEPROM("Channel map already initialized.\n");
755 return 0;
756 }
757
758 D_EEPROM("Initializing regulatory info from EEPROM\n");
759
760 il->channel_count =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100761 ARRAY_SIZE(il_eeprom_band_1) + ARRAY_SIZE(il_eeprom_band_2) +
762 ARRAY_SIZE(il_eeprom_band_3) + ARRAY_SIZE(il_eeprom_band_4) +
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100763 ARRAY_SIZE(il_eeprom_band_5);
764
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100765 D_EEPROM("Parsing data for %d channels.\n", il->channel_count);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100766
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100767 il->channel_info =
768 kzalloc(sizeof(struct il_channel_info) * il->channel_count,
769 GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100770 if (!il->channel_info) {
771 IL_ERR("Could not allocate channel_info\n");
772 il->channel_count = 0;
773 return -ENOMEM;
774 }
775
776 ch_info = il->channel_info;
777
778 /* Loop through the 5 EEPROM bands adding them in order to the
779 * channel map we maintain (that contains additional information than
780 * what just in the EEPROM) */
781 for (band = 1; band <= 5; band++) {
782
783 il_init_band_reference(il, band, &eeprom_ch_count,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100784 &eeprom_ch_info, &eeprom_ch_idx);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100785
786 /* Loop through each band adding each of the channels */
787 for (ch = 0; ch < eeprom_ch_count; ch++) {
788 ch_info->channel = eeprom_ch_idx[ch];
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100789 ch_info->band =
790 (band ==
791 1) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100792
793 /* permanently store EEPROM's channel regulatory flags
794 * and max power in channel info database. */
795 ch_info->eeprom = eeprom_ch_info[ch];
796
797 /* Copy the run-time flags so they are there even on
798 * invalid channels */
799 ch_info->flags = eeprom_ch_info[ch].flags;
800 /* First write that ht40 is not enabled, and then enable
801 * one by one */
802 ch_info->ht40_extension_channel =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100803 IEEE80211_CHAN_NO_HT40;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100804
805 if (!(il_is_channel_valid(ch_info))) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100806 D_EEPROM("Ch. %d Flags %x [%sGHz] - "
807 "No traffic\n", ch_info->channel,
808 ch_info->flags,
809 il_is_channel_a_band(ch_info) ? "5.2" :
810 "2.4");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100811 ch_info++;
812 continue;
813 }
814
815 /* Initialize regulatory-based run-time data */
816 ch_info->max_power_avg = ch_info->curr_txpow =
817 eeprom_ch_info[ch].max_power_avg;
818 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
819 ch_info->min_power = 0;
820
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100821 D_EEPROM("Ch. %d [%sGHz] " "%s%s%s%s%s%s(0x%02x %ddBm):"
822 " Ad-Hoc %ssupported\n", ch_info->channel,
823 il_is_channel_a_band(ch_info) ? "5.2" : "2.4",
824 CHECK_AND_PRINT_I(VALID),
825 CHECK_AND_PRINT_I(IBSS),
826 CHECK_AND_PRINT_I(ACTIVE),
827 CHECK_AND_PRINT_I(RADAR),
828 CHECK_AND_PRINT_I(WIDE),
829 CHECK_AND_PRINT_I(DFS),
830 eeprom_ch_info[ch].flags,
831 eeprom_ch_info[ch].max_power_avg,
832 ((eeprom_ch_info[ch].
833 flags & EEPROM_CHANNEL_IBSS) &&
834 !(eeprom_ch_info[ch].
835 flags & EEPROM_CHANNEL_RADAR)) ? "" :
836 "not ");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100837
838 ch_info++;
839 }
840 }
841
842 /* Check if we do have HT40 channels */
843 if (il->cfg->ops->lib->eeprom_ops.regulatory_bands[5] ==
844 EEPROM_REGULATORY_BAND_NO_HT40 &&
845 il->cfg->ops->lib->eeprom_ops.regulatory_bands[6] ==
846 EEPROM_REGULATORY_BAND_NO_HT40)
847 return 0;
848
849 /* Two additional EEPROM bands for 2.4 and 5 GHz HT40 channels */
850 for (band = 6; band <= 7; band++) {
851 enum ieee80211_band ieeeband;
852
853 il_init_band_reference(il, band, &eeprom_ch_count,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100854 &eeprom_ch_info, &eeprom_ch_idx);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100855
856 /* EEPROM band 6 is 2.4, band 7 is 5 GHz */
857 ieeeband =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100858 (band == 6) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100859
860 /* Loop through each band adding each of the channels */
861 for (ch = 0; ch < eeprom_ch_count; ch++) {
862 /* Set up driver's info for lower half */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100863 il_mod_ht40_chan_info(il, ieeeband, eeprom_ch_idx[ch],
864 &eeprom_ch_info[ch],
865 IEEE80211_CHAN_NO_HT40PLUS);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100866
867 /* Set up driver's info for upper half */
868 il_mod_ht40_chan_info(il, ieeeband,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100869 eeprom_ch_idx[ch] + 4,
870 &eeprom_ch_info[ch],
871 IEEE80211_CHAN_NO_HT40MINUS);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100872 }
873 }
874
875 return 0;
876}
877EXPORT_SYMBOL(il_init_channel_map);
878
879/*
880 * il_free_channel_map - undo allocations in il_init_channel_map
881 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100882void
883il_free_channel_map(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100884{
885 kfree(il->channel_info);
886 il->channel_count = 0;
887}
888EXPORT_SYMBOL(il_free_channel_map);
889
890/**
891 * il_get_channel_info - Find driver's ilate channel info
892 *
893 * Based on band and channel number.
894 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100895const struct il_channel_info *
896il_get_channel_info(const struct il_priv *il, enum ieee80211_band band,
897 u16 channel)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100898{
899 int i;
900
901 switch (band) {
902 case IEEE80211_BAND_5GHZ:
903 for (i = 14; i < il->channel_count; i++) {
904 if (il->channel_info[i].channel == channel)
905 return &il->channel_info[i];
906 }
907 break;
908 case IEEE80211_BAND_2GHZ:
909 if (channel >= 1 && channel <= 14)
910 return &il->channel_info[channel - 1];
911 break;
912 default:
913 BUG();
914 }
915
916 return NULL;
917}
918EXPORT_SYMBOL(il_get_channel_info);
919
920/*
921 * Setting power level allows the card to go to sleep when not busy.
922 *
923 * We calculate a sleep command based on the required latency, which
924 * we get from mac80211. In order to handle thermal throttling, we can
925 * also use pre-defined power levels.
926 */
927
928/*
929 * This defines the old power levels. They are still used by default
930 * (level 1) and for thermal throttle (levels 3 through 5)
931 */
932
933struct il_power_vec_entry {
934 struct il_powertable_cmd cmd;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100935 u8 no_dtim; /* number of skip dtim */
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100936};
937
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100938static void
939il_power_sleep_cam_cmd(struct il_priv *il, struct il_powertable_cmd *cmd)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100940{
941 memset(cmd, 0, sizeof(*cmd));
942
943 if (il->power_data.pci_pm)
944 cmd->flags |= IL_POWER_PCI_PM_MSK;
945
946 D_POWER("Sleep command for CAM\n");
947}
948
949static int
950il_set_power(struct il_priv *il, struct il_powertable_cmd *cmd)
951{
952 D_POWER("Sending power/sleep command\n");
953 D_POWER("Flags value = 0x%08X\n", cmd->flags);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100954 D_POWER("Tx timeout = %u\n", le32_to_cpu(cmd->tx_data_timeout));
955 D_POWER("Rx timeout = %u\n", le32_to_cpu(cmd->rx_data_timeout));
956 D_POWER("Sleep interval vector = { %d , %d , %d , %d , %d }\n",
957 le32_to_cpu(cmd->sleep_interval[0]),
958 le32_to_cpu(cmd->sleep_interval[1]),
959 le32_to_cpu(cmd->sleep_interval[2]),
960 le32_to_cpu(cmd->sleep_interval[3]),
961 le32_to_cpu(cmd->sleep_interval[4]));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100962
963 return il_send_cmd_pdu(il, C_POWER_TBL,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100964 sizeof(struct il_powertable_cmd), cmd);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100965}
966
967int
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100968il_power_set_mode(struct il_priv *il, struct il_powertable_cmd *cmd, bool force)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100969{
970 int ret;
971 bool update_chains;
972
973 lockdep_assert_held(&il->mutex);
974
975 /* Don't update the RX chain when chain noise calibration is running */
976 update_chains = il->chain_noise_data.state == IL_CHAIN_NOISE_DONE ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100977 il->chain_noise_data.state == IL_CHAIN_NOISE_ALIVE;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +0100978
979 if (!memcmp(&il->power_data.sleep_cmd, cmd, sizeof(*cmd)) && !force)
980 return 0;
981
982 if (!il_is_ready_rf(il))
983 return -EIO;
984
985 /* scan complete use sleep_power_next, need to be updated */
986 memcpy(&il->power_data.sleep_cmd_next, cmd, sizeof(*cmd));
987 if (test_bit(S_SCANNING, &il->status) && !force) {
988 D_INFO("Defer power set mode while scanning\n");
989 return 0;
990 }
991
992 if (cmd->flags & IL_POWER_DRIVER_ALLOW_SLEEP_MSK)
993 set_bit(S_POWER_PMI, &il->status);
994
995 ret = il_set_power(il, cmd);
996 if (!ret) {
997 if (!(cmd->flags & IL_POWER_DRIVER_ALLOW_SLEEP_MSK))
998 clear_bit(S_POWER_PMI, &il->status);
999
1000 if (il->cfg->ops->lib->update_chain_flags && update_chains)
1001 il->cfg->ops->lib->update_chain_flags(il);
1002 else if (il->cfg->ops->lib->update_chain_flags)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001003 D_POWER("Cannot update the power, chain noise "
1004 "calibration running: %d\n",
1005 il->chain_noise_data.state);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001006
1007 memcpy(&il->power_data.sleep_cmd, cmd, sizeof(*cmd));
1008 } else
1009 IL_ERR("set power fail, ret = %d", ret);
1010
1011 return ret;
1012}
1013
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001014int
1015il_power_update_mode(struct il_priv *il, bool force)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001016{
1017 struct il_powertable_cmd cmd;
1018
1019 il_power_sleep_cam_cmd(il, &cmd);
1020 return il_power_set_mode(il, &cmd, force);
1021}
1022EXPORT_SYMBOL(il_power_update_mode);
1023
1024/* initialize to default */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001025void
1026il_power_initialize(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001027{
1028 u16 lctl = il_pcie_link_ctl(il);
1029
1030 il->power_data.pci_pm = !(lctl & PCI_CFG_LINK_CTRL_VAL_L0S_EN);
1031
1032 il->power_data.debug_sleep_level_override = -1;
1033
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001034 memset(&il->power_data.sleep_cmd, 0, sizeof(il->power_data.sleep_cmd));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001035}
1036EXPORT_SYMBOL(il_power_initialize);
1037
1038/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
1039 * sending probe req. This should be set long enough to hear probe responses
1040 * from more than one AP. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001041#define IL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001042#define IL_ACTIVE_DWELL_TIME_52 (20)
1043
1044#define IL_ACTIVE_DWELL_FACTOR_24GHZ (3)
1045#define IL_ACTIVE_DWELL_FACTOR_52GHZ (2)
1046
1047/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
1048 * Must be set longer than active dwell time.
1049 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001050#define IL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001051#define IL_PASSIVE_DWELL_TIME_52 (10)
1052#define IL_PASSIVE_DWELL_BASE (100)
1053#define IL_CHANNEL_TUNE_TIME 5
1054
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001055static int
1056il_send_scan_abort(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001057{
1058 int ret;
1059 struct il_rx_pkt *pkt;
1060 struct il_host_cmd cmd = {
1061 .id = C_SCAN_ABORT,
1062 .flags = CMD_WANT_SKB,
1063 };
1064
1065 /* Exit instantly with error when device is not ready
1066 * to receive scan abort command or it does not perform
1067 * hardware scan currently */
1068 if (!test_bit(S_READY, &il->status) ||
1069 !test_bit(S_GEO_CONFIGURED, &il->status) ||
1070 !test_bit(S_SCAN_HW, &il->status) ||
1071 test_bit(S_FW_ERROR, &il->status) ||
1072 test_bit(S_EXIT_PENDING, &il->status))
1073 return -EIO;
1074
1075 ret = il_send_cmd_sync(il, &cmd);
1076 if (ret)
1077 return ret;
1078
1079 pkt = (struct il_rx_pkt *)cmd.reply_page;
1080 if (pkt->u.status != CAN_ABORT_STATUS) {
1081 /* The scan abort will return 1 for success or
1082 * 2 for "failure". A failure condition can be
1083 * due to simply not being in an active scan which
1084 * can occur if we send the scan abort before we
1085 * the microcode has notified us that a scan is
1086 * completed. */
1087 D_SCAN("SCAN_ABORT ret %d.\n", pkt->u.status);
1088 ret = -EIO;
1089 }
1090
1091 il_free_pages(il, cmd.reply_page);
1092 return ret;
1093}
1094
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001095static void
1096il_complete_scan(struct il_priv *il, bool aborted)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001097{
1098 /* check if scan was requested from mac80211 */
1099 if (il->scan_request) {
1100 D_SCAN("Complete scan in mac80211\n");
1101 ieee80211_scan_completed(il->hw, aborted);
1102 }
1103
1104 il->scan_vif = NULL;
1105 il->scan_request = NULL;
1106}
1107
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001108void
1109il_force_scan_end(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001110{
1111 lockdep_assert_held(&il->mutex);
1112
1113 if (!test_bit(S_SCANNING, &il->status)) {
1114 D_SCAN("Forcing scan end while not scanning\n");
1115 return;
1116 }
1117
1118 D_SCAN("Forcing scan end\n");
1119 clear_bit(S_SCANNING, &il->status);
1120 clear_bit(S_SCAN_HW, &il->status);
1121 clear_bit(S_SCAN_ABORTING, &il->status);
1122 il_complete_scan(il, true);
1123}
1124
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001125static void
1126il_do_scan_abort(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001127{
1128 int ret;
1129
1130 lockdep_assert_held(&il->mutex);
1131
1132 if (!test_bit(S_SCANNING, &il->status)) {
1133 D_SCAN("Not performing scan to abort\n");
1134 return;
1135 }
1136
1137 if (test_and_set_bit(S_SCAN_ABORTING, &il->status)) {
1138 D_SCAN("Scan abort in progress\n");
1139 return;
1140 }
1141
1142 ret = il_send_scan_abort(il);
1143 if (ret) {
1144 D_SCAN("Send scan abort failed %d\n", ret);
1145 il_force_scan_end(il);
1146 } else
1147 D_SCAN("Successfully send scan abort\n");
1148}
1149
1150/**
1151 * il_scan_cancel - Cancel any currently executing HW scan
1152 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001153int
1154il_scan_cancel(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001155{
1156 D_SCAN("Queuing abort scan\n");
1157 queue_work(il->workqueue, &il->abort_scan);
1158 return 0;
1159}
1160EXPORT_SYMBOL(il_scan_cancel);
1161
1162/**
1163 * il_scan_cancel_timeout - Cancel any currently executing HW scan
1164 * @ms: amount of time to wait (in milliseconds) for scan to abort
1165 *
1166 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001167int
1168il_scan_cancel_timeout(struct il_priv *il, unsigned long ms)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001169{
1170 unsigned long timeout = jiffies + msecs_to_jiffies(ms);
1171
1172 lockdep_assert_held(&il->mutex);
1173
1174 D_SCAN("Scan cancel timeout\n");
1175
1176 il_do_scan_abort(il);
1177
1178 while (time_before_eq(jiffies, timeout)) {
1179 if (!test_bit(S_SCAN_HW, &il->status))
1180 break;
1181 msleep(20);
1182 }
1183
1184 return test_bit(S_SCAN_HW, &il->status);
1185}
1186EXPORT_SYMBOL(il_scan_cancel_timeout);
1187
1188/* Service response to C_SCAN (0x80) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001189static void
1190il_hdl_scan(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001191{
1192#ifdef CONFIG_IWLEGACY_DEBUG
1193 struct il_rx_pkt *pkt = rxb_addr(rxb);
1194 struct il_scanreq_notification *notif =
1195 (struct il_scanreq_notification *)pkt->u.raw;
1196
1197 D_SCAN("Scan request status = 0x%x\n", notif->status);
1198#endif
1199}
1200
1201/* Service N_SCAN_START (0x82) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001202static void
1203il_hdl_scan_start(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001204{
1205 struct il_rx_pkt *pkt = rxb_addr(rxb);
1206 struct il_scanstart_notification *notif =
1207 (struct il_scanstart_notification *)pkt->u.raw;
1208 il->scan_start_tsf = le32_to_cpu(notif->tsf_low);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001209 D_SCAN("Scan start: " "%d [802.11%s] "
1210 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n", notif->channel,
1211 notif->band ? "bg" : "a", le32_to_cpu(notif->tsf_high),
1212 le32_to_cpu(notif->tsf_low), notif->status, notif->beacon_timer);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001213}
1214
1215/* Service N_SCAN_RESULTS (0x83) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001216static void
1217il_hdl_scan_results(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001218{
1219#ifdef CONFIG_IWLEGACY_DEBUG
1220 struct il_rx_pkt *pkt = rxb_addr(rxb);
1221 struct il_scanresults_notification *notif =
1222 (struct il_scanresults_notification *)pkt->u.raw;
1223
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001224 D_SCAN("Scan ch.res: " "%d [802.11%s] " "(TSF: 0x%08X:%08X) - %d "
1225 "elapsed=%lu usec\n", notif->channel, notif->band ? "bg" : "a",
1226 le32_to_cpu(notif->tsf_high), le32_to_cpu(notif->tsf_low),
1227 le32_to_cpu(notif->stats[0]),
1228 le32_to_cpu(notif->tsf_low) - il->scan_start_tsf);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001229#endif
1230}
1231
1232/* Service N_SCAN_COMPLETE (0x84) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001233static void
1234il_hdl_scan_complete(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001235{
1236
1237#ifdef CONFIG_IWLEGACY_DEBUG
1238 struct il_rx_pkt *pkt = rxb_addr(rxb);
1239 struct il_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
1240#endif
1241
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001242 D_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
1243 scan_notif->scanned_channels, scan_notif->tsf_low,
1244 scan_notif->tsf_high, scan_notif->status);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001245
1246 /* The HW is no longer scanning */
1247 clear_bit(S_SCAN_HW, &il->status);
1248
1249 D_SCAN("Scan on %sGHz took %dms\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001250 (il->scan_band == IEEE80211_BAND_2GHZ) ? "2.4" : "5.2",
1251 jiffies_to_msecs(jiffies - il->scan_start));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001252
1253 queue_work(il->workqueue, &il->scan_completed);
1254}
1255
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001256void
1257il_setup_rx_scan_handlers(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001258{
1259 /* scan handlers */
1260 il->handlers[C_SCAN] = il_hdl_scan;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001261 il->handlers[N_SCAN_START] = il_hdl_scan_start;
1262 il->handlers[N_SCAN_RESULTS] = il_hdl_scan_results;
1263 il->handlers[N_SCAN_COMPLETE] = il_hdl_scan_complete;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001264}
1265EXPORT_SYMBOL(il_setup_rx_scan_handlers);
1266
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001267inline u16
1268il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band,
1269 u8 n_probes)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001270{
1271 if (band == IEEE80211_BAND_5GHZ)
1272 return IL_ACTIVE_DWELL_TIME_52 +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001273 IL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001274 else
1275 return IL_ACTIVE_DWELL_TIME_24 +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001276 IL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001277}
1278EXPORT_SYMBOL(il_get_active_dwell_time);
1279
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001280u16
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001281il_get_passive_dwell_time(struct il_priv *il, enum ieee80211_band band,
1282 struct ieee80211_vif *vif)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001283{
1284 struct il_rxon_context *ctx = &il->ctx;
1285 u16 value;
1286
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001287 u16 passive =
1288 (band ==
1289 IEEE80211_BAND_2GHZ) ? IL_PASSIVE_DWELL_BASE +
1290 IL_PASSIVE_DWELL_TIME_24 : IL_PASSIVE_DWELL_BASE +
1291 IL_PASSIVE_DWELL_TIME_52;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001292
1293 if (il_is_any_associated(il)) {
1294 /*
1295 * If we're associated, we clamp the maximum passive
1296 * dwell time to be 98% of the smallest beacon interval
1297 * (minus 2 * channel tune time)
1298 */
1299 value = ctx->vif ? ctx->vif->bss_conf.beacon_int : 0;
1300 if (value > IL_PASSIVE_DWELL_BASE || !value)
1301 value = IL_PASSIVE_DWELL_BASE;
1302 value = (value * 98) / 100 - IL_CHANNEL_TUNE_TIME * 2;
1303 passive = min(value, passive);
1304 }
1305
1306 return passive;
1307}
1308EXPORT_SYMBOL(il_get_passive_dwell_time);
1309
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001310void
1311il_init_scan_params(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001312{
1313 u8 ant_idx = fls(il->hw_params.valid_tx_ant) - 1;
1314 if (!il->scan_tx_ant[IEEE80211_BAND_5GHZ])
1315 il->scan_tx_ant[IEEE80211_BAND_5GHZ] = ant_idx;
1316 if (!il->scan_tx_ant[IEEE80211_BAND_2GHZ])
1317 il->scan_tx_ant[IEEE80211_BAND_2GHZ] = ant_idx;
1318}
1319EXPORT_SYMBOL(il_init_scan_params);
1320
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001321static int
1322il_scan_initiate(struct il_priv *il, struct ieee80211_vif *vif)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001323{
1324 int ret;
1325
1326 lockdep_assert_held(&il->mutex);
1327
1328 if (WARN_ON(!il->cfg->ops->utils->request_scan))
1329 return -EOPNOTSUPP;
1330
1331 cancel_delayed_work(&il->scan_check);
1332
1333 if (!il_is_ready_rf(il)) {
1334 IL_WARN("Request scan called when driver not ready.\n");
1335 return -EIO;
1336 }
1337
1338 if (test_bit(S_SCAN_HW, &il->status)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001339 D_SCAN("Multiple concurrent scan requests in parallel.\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001340 return -EBUSY;
1341 }
1342
1343 if (test_bit(S_SCAN_ABORTING, &il->status)) {
1344 D_SCAN("Scan request while abort pending.\n");
1345 return -EBUSY;
1346 }
1347
1348 D_SCAN("Starting scan...\n");
1349
1350 set_bit(S_SCANNING, &il->status);
1351 il->scan_start = jiffies;
1352
1353 ret = il->cfg->ops->utils->request_scan(il, vif);
1354 if (ret) {
1355 clear_bit(S_SCANNING, &il->status);
1356 return ret;
1357 }
1358
1359 queue_delayed_work(il->workqueue, &il->scan_check,
1360 IL_SCAN_CHECK_WATCHDOG);
1361
1362 return 0;
1363}
1364
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001365int
1366il_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1367 struct cfg80211_scan_request *req)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001368{
1369 struct il_priv *il = hw->priv;
1370 int ret;
1371
1372 D_MAC80211("enter\n");
1373
1374 if (req->n_channels == 0)
1375 return -EINVAL;
1376
1377 mutex_lock(&il->mutex);
1378
1379 if (test_bit(S_SCANNING, &il->status)) {
1380 D_SCAN("Scan already in progress.\n");
1381 ret = -EAGAIN;
1382 goto out_unlock;
1383 }
1384
1385 /* mac80211 will only ask for one band at a time */
1386 il->scan_request = req;
1387 il->scan_vif = vif;
1388 il->scan_band = req->channels[0]->band;
1389
1390 ret = il_scan_initiate(il, vif);
1391
1392 D_MAC80211("leave\n");
1393
1394out_unlock:
1395 mutex_unlock(&il->mutex);
1396
1397 return ret;
1398}
1399EXPORT_SYMBOL(il_mac_hw_scan);
1400
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001401static void
1402il_bg_scan_check(struct work_struct *data)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001403{
1404 struct il_priv *il =
1405 container_of(data, struct il_priv, scan_check.work);
1406
1407 D_SCAN("Scan check work\n");
1408
1409 /* Since we are here firmware does not finish scan and
1410 * most likely is in bad shape, so we don't bother to
1411 * send abort command, just force scan complete to mac80211 */
1412 mutex_lock(&il->mutex);
1413 il_force_scan_end(il);
1414 mutex_unlock(&il->mutex);
1415}
1416
1417/**
1418 * il_fill_probe_req - fill in all required fields and IE for probe request
1419 */
1420
1421u16
1422il_fill_probe_req(struct il_priv *il, struct ieee80211_mgmt *frame,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001423 const u8 *ta, const u8 *ies, int ie_len, int left)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001424{
1425 int len = 0;
1426 u8 *pos = NULL;
1427
1428 /* Make sure there is enough space for the probe request,
1429 * two mandatory IEs and the data */
1430 left -= 24;
1431 if (left < 0)
1432 return 0;
1433
1434 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
1435 memcpy(frame->da, il_bcast_addr, ETH_ALEN);
1436 memcpy(frame->sa, ta, ETH_ALEN);
1437 memcpy(frame->bssid, il_bcast_addr, ETH_ALEN);
1438 frame->seq_ctrl = 0;
1439
1440 len += 24;
1441
1442 /* ...next IE... */
1443 pos = &frame->u.probe_req.variable[0];
1444
1445 /* fill in our indirect SSID IE */
1446 left -= 2;
1447 if (left < 0)
1448 return 0;
1449 *pos++ = WLAN_EID_SSID;
1450 *pos++ = 0;
1451
1452 len += 2;
1453
1454 if (WARN_ON(left < ie_len))
1455 return len;
1456
1457 if (ies && ie_len) {
1458 memcpy(pos, ies, ie_len);
1459 len += ie_len;
1460 }
1461
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001462 return (u16) len;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001463}
1464EXPORT_SYMBOL(il_fill_probe_req);
1465
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001466static void
1467il_bg_abort_scan(struct work_struct *work)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001468{
1469 struct il_priv *il = container_of(work, struct il_priv, abort_scan);
1470
1471 D_SCAN("Abort scan work\n");
1472
1473 /* We keep scan_check work queued in case when firmware will not
1474 * report back scan completed notification */
1475 mutex_lock(&il->mutex);
1476 il_scan_cancel_timeout(il, 200);
1477 mutex_unlock(&il->mutex);
1478}
1479
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001480static void
1481il_bg_scan_completed(struct work_struct *work)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001482{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001483 struct il_priv *il = container_of(work, struct il_priv, scan_completed);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001484 bool aborted;
1485
1486 D_SCAN("Completed scan.\n");
1487
1488 cancel_delayed_work(&il->scan_check);
1489
1490 mutex_lock(&il->mutex);
1491
1492 aborted = test_and_clear_bit(S_SCAN_ABORTING, &il->status);
1493 if (aborted)
1494 D_SCAN("Aborted scan completed.\n");
1495
1496 if (!test_and_clear_bit(S_SCANNING, &il->status)) {
1497 D_SCAN("Scan already completed.\n");
1498 goto out_settings;
1499 }
1500
1501 il_complete_scan(il, aborted);
1502
1503out_settings:
1504 /* Can we still talk to firmware ? */
1505 if (!il_is_ready_rf(il))
1506 goto out;
1507
1508 /*
1509 * We do not commit power settings while scan is pending,
1510 * do it now if the settings changed.
1511 */
1512 il_power_set_mode(il, &il->power_data.sleep_cmd_next, false);
1513 il_set_tx_power(il, il->tx_power_next, false);
1514
1515 il->cfg->ops->utils->post_scan(il);
1516
1517out:
1518 mutex_unlock(&il->mutex);
1519}
1520
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001521void
1522il_setup_scan_deferred_work(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001523{
1524 INIT_WORK(&il->scan_completed, il_bg_scan_completed);
1525 INIT_WORK(&il->abort_scan, il_bg_abort_scan);
1526 INIT_DELAYED_WORK(&il->scan_check, il_bg_scan_check);
1527}
1528EXPORT_SYMBOL(il_setup_scan_deferred_work);
1529
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001530void
1531il_cancel_scan_deferred_work(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001532{
1533 cancel_work_sync(&il->abort_scan);
1534 cancel_work_sync(&il->scan_completed);
1535
1536 if (cancel_delayed_work_sync(&il->scan_check)) {
1537 mutex_lock(&il->mutex);
1538 il_force_scan_end(il);
1539 mutex_unlock(&il->mutex);
1540 }
1541}
1542EXPORT_SYMBOL(il_cancel_scan_deferred_work);
1543
1544/* il->sta_lock must be held */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001545static void
1546il_sta_ucode_activate(struct il_priv *il, u8 sta_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001547{
1548
1549 if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001550 IL_ERR("ACTIVATE a non DRIVER active station id %u addr %pM\n",
1551 sta_id, il->stations[sta_id].sta.sta.addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001552
1553 if (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001554 D_ASSOC("STA id %u addr %pM already present"
1555 " in uCode (according to driver)\n", sta_id,
1556 il->stations[sta_id].sta.sta.addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001557 } else {
1558 il->stations[sta_id].used |= IL_STA_UCODE_ACTIVE;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001559 D_ASSOC("Added STA id %u addr %pM to uCode\n", sta_id,
1560 il->stations[sta_id].sta.sta.addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001561 }
1562}
1563
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001564static int
1565il_process_add_sta_resp(struct il_priv *il, struct il_addsta_cmd *addsta,
1566 struct il_rx_pkt *pkt, bool sync)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001567{
1568 u8 sta_id = addsta->sta.sta_id;
1569 unsigned long flags;
1570 int ret = -EIO;
1571
1572 if (pkt->hdr.flags & IL_CMD_FAILED_MSK) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001573 IL_ERR("Bad return from C_ADD_STA (0x%08X)\n", pkt->hdr.flags);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001574 return ret;
1575 }
1576
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001577 D_INFO("Processing response for adding station %u\n", sta_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001578
1579 spin_lock_irqsave(&il->sta_lock, flags);
1580
1581 switch (pkt->u.add_sta.status) {
1582 case ADD_STA_SUCCESS_MSK:
1583 D_INFO("C_ADD_STA PASSED\n");
1584 il_sta_ucode_activate(il, sta_id);
1585 ret = 0;
1586 break;
1587 case ADD_STA_NO_ROOM_IN_TBL:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001588 IL_ERR("Adding station %d failed, no room in table.\n", sta_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001589 break;
1590 case ADD_STA_NO_BLOCK_ACK_RESOURCE:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001591 IL_ERR("Adding station %d failed, no block ack resource.\n",
1592 sta_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001593 break;
1594 case ADD_STA_MODIFY_NON_EXIST_STA:
1595 IL_ERR("Attempting to modify non-existing station %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001596 sta_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001597 break;
1598 default:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001599 D_ASSOC("Received C_ADD_STA:(0x%08X)\n", pkt->u.add_sta.status);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001600 break;
1601 }
1602
1603 D_INFO("%s station id %u addr %pM\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001604 il->stations[sta_id].sta.mode ==
1605 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", sta_id,
1606 il->stations[sta_id].sta.sta.addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001607
1608 /*
1609 * XXX: The MAC address in the command buffer is often changed from
1610 * the original sent to the device. That is, the MAC address
1611 * written to the command buffer often is not the same MAC address
1612 * read from the command buffer when the command returns. This
1613 * issue has not yet been resolved and this debugging is left to
1614 * observe the problem.
1615 */
1616 D_INFO("%s station according to cmd buffer %pM\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001617 il->stations[sta_id].sta.mode ==
1618 STA_CONTROL_MODIFY_MSK ? "Modified" : "Added", addsta->sta.addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001619 spin_unlock_irqrestore(&il->sta_lock, flags);
1620
1621 return ret;
1622}
1623
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001624static void
1625il_add_sta_callback(struct il_priv *il, struct il_device_cmd *cmd,
1626 struct il_rx_pkt *pkt)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001627{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001628 struct il_addsta_cmd *addsta = (struct il_addsta_cmd *)cmd->cmd.payload;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001629
1630 il_process_add_sta_resp(il, addsta, pkt, false);
1631
1632}
1633
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001634int
1635il_send_add_sta(struct il_priv *il, struct il_addsta_cmd *sta, u8 flags)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001636{
1637 struct il_rx_pkt *pkt = NULL;
1638 int ret = 0;
1639 u8 data[sizeof(*sta)];
1640 struct il_host_cmd cmd = {
1641 .id = C_ADD_STA,
1642 .flags = flags,
1643 .data = data,
1644 };
1645 u8 sta_id __maybe_unused = sta->sta.sta_id;
1646
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001647 D_INFO("Adding sta %u (%pM) %ssynchronously\n", sta_id, sta->sta.addr,
1648 flags & CMD_ASYNC ? "a" : "");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001649
1650 if (flags & CMD_ASYNC)
1651 cmd.callback = il_add_sta_callback;
1652 else {
1653 cmd.flags |= CMD_WANT_SKB;
1654 might_sleep();
1655 }
1656
1657 cmd.len = il->cfg->ops->utils->build_addsta_hcmd(sta, data);
1658 ret = il_send_cmd(il, &cmd);
1659
1660 if (ret || (flags & CMD_ASYNC))
1661 return ret;
1662
1663 if (ret == 0) {
1664 pkt = (struct il_rx_pkt *)cmd.reply_page;
1665 ret = il_process_add_sta_resp(il, sta, pkt, true);
1666 }
1667 il_free_pages(il, cmd.reply_page);
1668
1669 return ret;
1670}
1671EXPORT_SYMBOL(il_send_add_sta);
1672
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001673static void
1674il_set_ht_add_station(struct il_priv *il, u8 idx, struct ieee80211_sta *sta,
1675 struct il_rxon_context *ctx)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001676{
1677 struct ieee80211_sta_ht_cap *sta_ht_inf = &sta->ht_cap;
1678 __le32 sta_flags;
1679 u8 mimo_ps_mode;
1680
1681 if (!sta || !sta_ht_inf->ht_supported)
1682 goto done;
1683
1684 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
1685 D_ASSOC("spatial multiplexing power save mode: %s\n",
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001686 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ? "static" :
1687 (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ? "dynamic" :
1688 "disabled");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001689
1690 sta_flags = il->stations[idx].sta.station_flags;
1691
1692 sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
1693
1694 switch (mimo_ps_mode) {
1695 case WLAN_HT_CAP_SM_PS_STATIC:
1696 sta_flags |= STA_FLG_MIMO_DIS_MSK;
1697 break;
1698 case WLAN_HT_CAP_SM_PS_DYNAMIC:
1699 sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
1700 break;
1701 case WLAN_HT_CAP_SM_PS_DISABLED:
1702 break;
1703 default:
1704 IL_WARN("Invalid MIMO PS mode %d\n", mimo_ps_mode);
1705 break;
1706 }
1707
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001708 sta_flags |=
1709 cpu_to_le32((u32) sta_ht_inf->
1710 ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001711
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001712 sta_flags |=
1713 cpu_to_le32((u32) sta_ht_inf->
1714 ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001715
1716 if (il_is_ht40_tx_allowed(il, ctx, &sta->ht_cap))
1717 sta_flags |= STA_FLG_HT40_EN_MSK;
1718 else
1719 sta_flags &= ~STA_FLG_HT40_EN_MSK;
1720
1721 il->stations[idx].sta.station_flags = sta_flags;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001722done:
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001723 return;
1724}
1725
1726/**
1727 * il_prep_station - Prepare station information for addition
1728 *
1729 * should be called with sta_lock held
1730 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001731u8
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001732il_prep_station(struct il_priv *il, struct il_rxon_context *ctx,
1733 const u8 *addr, bool is_ap, struct ieee80211_sta *sta)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001734{
1735 struct il_station_entry *station;
1736 int i;
1737 u8 sta_id = IL_INVALID_STATION;
1738 u16 rate;
1739
1740 if (is_ap)
1741 sta_id = ctx->ap_sta_id;
1742 else if (is_broadcast_ether_addr(addr))
1743 sta_id = ctx->bcast_sta_id;
1744 else
1745 for (i = IL_STA_ID; i < il->hw_params.max_stations; i++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001746 if (!compare_ether_addr
1747 (il->stations[i].sta.sta.addr, addr)) {
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001748 sta_id = i;
1749 break;
1750 }
1751
1752 if (!il->stations[i].used &&
1753 sta_id == IL_INVALID_STATION)
1754 sta_id = i;
1755 }
1756
1757 /*
1758 * These two conditions have the same outcome, but keep them
1759 * separate
1760 */
1761 if (unlikely(sta_id == IL_INVALID_STATION))
1762 return sta_id;
1763
1764 /*
1765 * uCode is not able to deal with multiple requests to add a
1766 * station. Keep track if one is in progress so that we do not send
1767 * another.
1768 */
1769 if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001770 D_INFO("STA %d already in process of being added.\n", sta_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001771 return sta_id;
1772 }
1773
1774 if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) &&
1775 (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE) &&
1776 !compare_ether_addr(il->stations[sta_id].sta.sta.addr, addr)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001777 D_ASSOC("STA %d (%pM) already added, not adding again.\n",
1778 sta_id, addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001779 return sta_id;
1780 }
1781
1782 station = &il->stations[sta_id];
1783 station->used = IL_STA_DRIVER_ACTIVE;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001784 D_ASSOC("Add STA to driver ID %d: %pM\n", sta_id, addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001785 il->num_stations++;
1786
1787 /* Set up the C_ADD_STA command to send to device */
1788 memset(&station->sta, 0, sizeof(struct il_addsta_cmd));
1789 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
1790 station->sta.mode = 0;
1791 station->sta.sta.sta_id = sta_id;
1792 station->sta.station_flags = ctx->station_flags;
1793 station->ctxid = ctx->ctxid;
1794
1795 if (sta) {
1796 struct il_station_priv_common *sta_priv;
1797
1798 sta_priv = (void *)sta->drv_priv;
1799 sta_priv->ctx = ctx;
1800 }
1801
1802 /*
1803 * OK to call unconditionally, since local stations (IBSS BSSID
1804 * STA and broadcast STA) pass in a NULL sta, and mac80211
1805 * doesn't allow HT IBSS.
1806 */
1807 il_set_ht_add_station(il, sta_id, sta, ctx);
1808
1809 /* 3945 only */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001810 rate = (il->band == IEEE80211_BAND_5GHZ) ? RATE_6M_PLCP : RATE_1M_PLCP;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001811 /* Turn on both antennas for the station... */
1812 station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK);
1813
1814 return sta_id;
1815
1816}
1817EXPORT_SYMBOL_GPL(il_prep_station);
1818
1819#define STA_WAIT_TIMEOUT (HZ/2)
1820
1821/**
1822 * il_add_station_common -
1823 */
1824int
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001825il_add_station_common(struct il_priv *il, struct il_rxon_context *ctx,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001826 const u8 *addr, bool is_ap, struct ieee80211_sta *sta,
1827 u8 *sta_id_r)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001828{
1829 unsigned long flags_spin;
1830 int ret = 0;
1831 u8 sta_id;
1832 struct il_addsta_cmd sta_cmd;
1833
1834 *sta_id_r = 0;
1835 spin_lock_irqsave(&il->sta_lock, flags_spin);
1836 sta_id = il_prep_station(il, ctx, addr, is_ap, sta);
1837 if (sta_id == IL_INVALID_STATION) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001838 IL_ERR("Unable to prepare station %pM for addition\n", addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001839 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
1840 return -EINVAL;
1841 }
1842
1843 /*
1844 * uCode is not able to deal with multiple requests to add a
1845 * station. Keep track if one is in progress so that we do not send
1846 * another.
1847 */
1848 if (il->stations[sta_id].used & IL_STA_UCODE_INPROGRESS) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001849 D_INFO("STA %d already in process of being added.\n", sta_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001850 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
1851 return -EEXIST;
1852 }
1853
1854 if ((il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE) &&
1855 (il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001856 D_ASSOC("STA %d (%pM) already added, not adding again.\n",
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001857 sta_id, addr);
1858 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
1859 return -EEXIST;
1860 }
1861
1862 il->stations[sta_id].used |= IL_STA_UCODE_INPROGRESS;
1863 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001864 sizeof(struct il_addsta_cmd));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001865 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
1866
1867 /* Add station to device's station table */
1868 ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC);
1869 if (ret) {
1870 spin_lock_irqsave(&il->sta_lock, flags_spin);
1871 IL_ERR("Adding station %pM failed.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001872 il->stations[sta_id].sta.sta.addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001873 il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE;
1874 il->stations[sta_id].used &= ~IL_STA_UCODE_INPROGRESS;
1875 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
1876 }
1877 *sta_id_r = sta_id;
1878 return ret;
1879}
1880EXPORT_SYMBOL(il_add_station_common);
1881
1882/**
1883 * il_sta_ucode_deactivate - deactivate ucode status for a station
1884 *
1885 * il->sta_lock must be held
1886 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001887static void
1888il_sta_ucode_deactivate(struct il_priv *il, u8 sta_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001889{
1890 /* Ucode must be active and driver must be non active */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001891 if ((il->stations[sta_id].
1892 used & (IL_STA_UCODE_ACTIVE | IL_STA_DRIVER_ACTIVE)) !=
1893 IL_STA_UCODE_ACTIVE)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001894 IL_ERR("removed non active STA %u\n", sta_id);
1895
1896 il->stations[sta_id].used &= ~IL_STA_UCODE_ACTIVE;
1897
1898 memset(&il->stations[sta_id], 0, sizeof(struct il_station_entry));
1899 D_ASSOC("Removed STA %u\n", sta_id);
1900}
1901
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001902static int
1903il_send_remove_station(struct il_priv *il, const u8 * addr, int sta_id,
1904 bool temporary)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001905{
1906 struct il_rx_pkt *pkt;
1907 int ret;
1908
1909 unsigned long flags_spin;
1910 struct il_rem_sta_cmd rm_sta_cmd;
1911
1912 struct il_host_cmd cmd = {
1913 .id = C_REM_STA,
1914 .len = sizeof(struct il_rem_sta_cmd),
1915 .flags = CMD_SYNC,
1916 .data = &rm_sta_cmd,
1917 };
1918
1919 memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
1920 rm_sta_cmd.num_sta = 1;
1921 memcpy(&rm_sta_cmd.addr, addr, ETH_ALEN);
1922
1923 cmd.flags |= CMD_WANT_SKB;
1924
1925 ret = il_send_cmd(il, &cmd);
1926
1927 if (ret)
1928 return ret;
1929
1930 pkt = (struct il_rx_pkt *)cmd.reply_page;
1931 if (pkt->hdr.flags & IL_CMD_FAILED_MSK) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001932 IL_ERR("Bad return from C_REM_STA (0x%08X)\n", pkt->hdr.flags);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001933 ret = -EIO;
1934 }
1935
1936 if (!ret) {
1937 switch (pkt->u.rem_sta.status) {
1938 case REM_STA_SUCCESS_MSK:
1939 if (!temporary) {
1940 spin_lock_irqsave(&il->sta_lock, flags_spin);
1941 il_sta_ucode_deactivate(il, sta_id);
1942 spin_unlock_irqrestore(&il->sta_lock,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001943 flags_spin);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001944 }
1945 D_ASSOC("C_REM_STA PASSED\n");
1946 break;
1947 default:
1948 ret = -EIO;
1949 IL_ERR("C_REM_STA failed\n");
1950 break;
1951 }
1952 }
1953 il_free_pages(il, cmd.reply_page);
1954
1955 return ret;
1956}
1957
1958/**
1959 * il_remove_station - Remove driver's knowledge of station.
1960 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001961int
1962il_remove_station(struct il_priv *il, const u8 sta_id, const u8 * addr)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001963{
1964 unsigned long flags;
1965
1966 if (!il_is_ready(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001967 D_INFO("Unable to remove station %pM, device not ready.\n",
1968 addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001969 /*
1970 * It is typical for stations to be removed when we are
1971 * going down. Return success since device will be down
1972 * soon anyway
1973 */
1974 return 0;
1975 }
1976
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001977 D_ASSOC("Removing STA from driver:%d %pM\n", sta_id, addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001978
1979 if (WARN_ON(sta_id == IL_INVALID_STATION))
1980 return -EINVAL;
1981
1982 spin_lock_irqsave(&il->sta_lock, flags);
1983
1984 if (!(il->stations[sta_id].used & IL_STA_DRIVER_ACTIVE)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001985 D_INFO("Removing %pM but non DRIVER active\n", addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001986 goto out_err;
1987 }
1988
1989 if (!(il->stations[sta_id].used & IL_STA_UCODE_ACTIVE)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001990 D_INFO("Removing %pM but non UCODE active\n", addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01001991 goto out_err;
1992 }
1993
1994 if (il->stations[sta_id].used & IL_STA_LOCAL) {
1995 kfree(il->stations[sta_id].lq);
1996 il->stations[sta_id].lq = NULL;
1997 }
1998
1999 il->stations[sta_id].used &= ~IL_STA_DRIVER_ACTIVE;
2000
2001 il->num_stations--;
2002
2003 BUG_ON(il->num_stations < 0);
2004
2005 spin_unlock_irqrestore(&il->sta_lock, flags);
2006
2007 return il_send_remove_station(il, addr, sta_id, false);
2008out_err:
2009 spin_unlock_irqrestore(&il->sta_lock, flags);
2010 return -EINVAL;
2011}
2012EXPORT_SYMBOL_GPL(il_remove_station);
2013
2014/**
2015 * il_clear_ucode_stations - clear ucode station table bits
2016 *
2017 * This function clears all the bits in the driver indicating
2018 * which stations are active in the ucode. Call when something
2019 * other than explicit station management would cause this in
2020 * the ucode, e.g. unassociated RXON.
2021 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002022void
2023il_clear_ucode_stations(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002024{
2025 int i;
2026 unsigned long flags_spin;
2027 bool cleared = false;
2028
2029 D_INFO("Clearing ucode stations in driver\n");
2030
2031 spin_lock_irqsave(&il->sta_lock, flags_spin);
2032 for (i = 0; i < il->hw_params.max_stations; i++) {
2033 if (ctx && ctx->ctxid != il->stations[i].ctxid)
2034 continue;
2035
2036 if (il->stations[i].used & IL_STA_UCODE_ACTIVE) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002037 D_INFO("Clearing ucode active for station %d\n", i);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002038 il->stations[i].used &= ~IL_STA_UCODE_ACTIVE;
2039 cleared = true;
2040 }
2041 }
2042 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
2043
2044 if (!cleared)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002045 D_INFO("No active stations found to be cleared\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002046}
2047EXPORT_SYMBOL(il_clear_ucode_stations);
2048
2049/**
2050 * il_restore_stations() - Restore driver known stations to device
2051 *
2052 * All stations considered active by driver, but not present in ucode, is
2053 * restored.
2054 *
2055 * Function sleeps.
2056 */
2057void
2058il_restore_stations(struct il_priv *il, struct il_rxon_context *ctx)
2059{
2060 struct il_addsta_cmd sta_cmd;
2061 struct il_link_quality_cmd lq;
2062 unsigned long flags_spin;
2063 int i;
2064 bool found = false;
2065 int ret;
2066 bool send_lq;
2067
2068 if (!il_is_ready(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002069 D_INFO("Not ready yet, not restoring any stations.\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002070 return;
2071 }
2072
2073 D_ASSOC("Restoring all known stations ... start.\n");
2074 spin_lock_irqsave(&il->sta_lock, flags_spin);
2075 for (i = 0; i < il->hw_params.max_stations; i++) {
2076 if (ctx->ctxid != il->stations[i].ctxid)
2077 continue;
2078 if ((il->stations[i].used & IL_STA_DRIVER_ACTIVE) &&
2079 !(il->stations[i].used & IL_STA_UCODE_ACTIVE)) {
2080 D_ASSOC("Restoring sta %pM\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002081 il->stations[i].sta.sta.addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002082 il->stations[i].sta.mode = 0;
2083 il->stations[i].used |= IL_STA_UCODE_INPROGRESS;
2084 found = true;
2085 }
2086 }
2087
2088 for (i = 0; i < il->hw_params.max_stations; i++) {
2089 if ((il->stations[i].used & IL_STA_UCODE_INPROGRESS)) {
2090 memcpy(&sta_cmd, &il->stations[i].sta,
2091 sizeof(struct il_addsta_cmd));
2092 send_lq = false;
2093 if (il->stations[i].lq) {
2094 memcpy(&lq, il->stations[i].lq,
2095 sizeof(struct il_link_quality_cmd));
2096 send_lq = true;
2097 }
2098 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
2099 ret = il_send_add_sta(il, &sta_cmd, CMD_SYNC);
2100 if (ret) {
2101 spin_lock_irqsave(&il->sta_lock, flags_spin);
2102 IL_ERR("Adding station %pM failed.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002103 il->stations[i].sta.sta.addr);
2104 il->stations[i].used &= ~IL_STA_DRIVER_ACTIVE;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002105 il->stations[i].used &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002106 ~IL_STA_UCODE_INPROGRESS;
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002107 spin_unlock_irqrestore(&il->sta_lock,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002108 flags_spin);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002109 }
2110 /*
2111 * Rate scaling has already been initialized, send
2112 * current LQ command
2113 */
2114 if (send_lq)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002115 il_send_lq_cmd(il, ctx, &lq, CMD_SYNC, true);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002116 spin_lock_irqsave(&il->sta_lock, flags_spin);
2117 il->stations[i].used &= ~IL_STA_UCODE_INPROGRESS;
2118 }
2119 }
2120
2121 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
2122 if (!found)
2123 D_INFO("Restoring all known stations"
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002124 " .... no stations to be restored.\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002125 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002126 D_INFO("Restoring all known stations" " .... complete.\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002127}
2128EXPORT_SYMBOL(il_restore_stations);
2129
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002130int
2131il_get_free_ucode_key_idx(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002132{
2133 int i;
2134
2135 for (i = 0; i < il->sta_key_max_num; i++)
2136 if (!test_and_set_bit(i, &il->ucode_key_table))
2137 return i;
2138
2139 return WEP_INVALID_OFFSET;
2140}
2141EXPORT_SYMBOL(il_get_free_ucode_key_idx);
2142
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002143void
2144il_dealloc_bcast_stations(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002145{
2146 unsigned long flags;
2147 int i;
2148
2149 spin_lock_irqsave(&il->sta_lock, flags);
2150 for (i = 0; i < il->hw_params.max_stations; i++) {
2151 if (!(il->stations[i].used & IL_STA_BCAST))
2152 continue;
2153
2154 il->stations[i].used &= ~IL_STA_UCODE_ACTIVE;
2155 il->num_stations--;
2156 BUG_ON(il->num_stations < 0);
2157 kfree(il->stations[i].lq);
2158 il->stations[i].lq = NULL;
2159 }
2160 spin_unlock_irqrestore(&il->sta_lock, flags);
2161}
2162EXPORT_SYMBOL_GPL(il_dealloc_bcast_stations);
2163
2164#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002165static void
2166il_dump_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002167{
2168 int i;
2169 D_RATE("lq station id 0x%x\n", lq->sta_id);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002170 D_RATE("lq ant 0x%X 0x%X\n", lq->general_params.single_stream_ant_msk,
2171 lq->general_params.dual_stream_ant_msk);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002172
2173 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002174 D_RATE("lq idx %d 0x%X\n", i, lq->rs_table[i].rate_n_flags);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002175}
2176#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002177static inline void
2178il_dump_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002179{
2180}
2181#endif
2182
2183/**
2184 * il_is_lq_table_valid() - Test one aspect of LQ cmd for validity
2185 *
2186 * It sometimes happens when a HT rate has been in use and we
2187 * loose connectivity with AP then mac80211 will first tell us that the
2188 * current channel is not HT anymore before removing the station. In such a
2189 * scenario the RXON flags will be updated to indicate we are not
2190 * communicating HT anymore, but the LQ command may still contain HT rates.
2191 * Test for this to prevent driver from sending LQ command between the time
2192 * RXON flags are updated and when LQ command is updated.
2193 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002194static bool
2195il_is_lq_table_valid(struct il_priv *il, struct il_rxon_context *ctx,
2196 struct il_link_quality_cmd *lq)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002197{
2198 int i;
2199
2200 if (ctx->ht.enabled)
2201 return true;
2202
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002203 D_INFO("Channel %u is not an HT channel\n", ctx->active.channel);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002204 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002205 if (le32_to_cpu(lq->rs_table[i].rate_n_flags) & RATE_MCS_HT_MSK) {
2206 D_INFO("idx %d of LQ expects HT channel\n", i);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002207 return false;
2208 }
2209 }
2210 return true;
2211}
2212
2213/**
2214 * il_send_lq_cmd() - Send link quality command
2215 * @init: This command is sent as part of station initialization right
2216 * after station has been added.
2217 *
2218 * The link quality command is sent as the last step of station creation.
2219 * This is the special case in which init is set and we call a callback in
2220 * this case to clear the state indicating that station creation is in
2221 * progress.
2222 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002223int
2224il_send_lq_cmd(struct il_priv *il, struct il_rxon_context *ctx,
2225 struct il_link_quality_cmd *lq, u8 flags, bool init)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002226{
2227 int ret = 0;
2228 unsigned long flags_spin;
2229
2230 struct il_host_cmd cmd = {
2231 .id = C_TX_LINK_QUALITY_CMD,
2232 .len = sizeof(struct il_link_quality_cmd),
2233 .flags = flags,
2234 .data = lq,
2235 };
2236
2237 if (WARN_ON(lq->sta_id == IL_INVALID_STATION))
2238 return -EINVAL;
2239
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002240 spin_lock_irqsave(&il->sta_lock, flags_spin);
2241 if (!(il->stations[lq->sta_id].used & IL_STA_DRIVER_ACTIVE)) {
2242 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
2243 return -EINVAL;
2244 }
2245 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
2246
2247 il_dump_lq_cmd(il, lq);
2248 BUG_ON(init && (cmd.flags & CMD_ASYNC));
2249
2250 if (il_is_lq_table_valid(il, ctx, lq))
2251 ret = il_send_cmd(il, &cmd);
2252 else
2253 ret = -EINVAL;
2254
2255 if (cmd.flags & CMD_ASYNC)
2256 return ret;
2257
2258 if (init) {
2259 D_INFO("init LQ command complete,"
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002260 " clearing sta addition status for sta %d\n",
2261 lq->sta_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002262 spin_lock_irqsave(&il->sta_lock, flags_spin);
2263 il->stations[lq->sta_id].used &= ~IL_STA_UCODE_INPROGRESS;
2264 spin_unlock_irqrestore(&il->sta_lock, flags_spin);
2265 }
2266 return ret;
2267}
2268EXPORT_SYMBOL(il_send_lq_cmd);
2269
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002270int
2271il_mac_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2272 struct ieee80211_sta *sta)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002273{
2274 struct il_priv *il = hw->priv;
2275 struct il_station_priv_common *sta_common = (void *)sta->drv_priv;
2276 int ret;
2277
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002278 D_INFO("received request to remove station %pM\n", sta->addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002279 mutex_lock(&il->mutex);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002280 D_INFO("proceeding to remove station %pM\n", sta->addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002281 ret = il_remove_station(il, sta_common->sta_id, sta->addr);
2282 if (ret)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002283 IL_ERR("Error removing station %pM\n", sta->addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002284 mutex_unlock(&il->mutex);
2285 return ret;
2286}
2287EXPORT_SYMBOL(il_mac_sta_remove);
2288
2289/************************** RX-FUNCTIONS ****************************/
2290/*
2291 * Rx theory of operation
2292 *
2293 * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs),
2294 * each of which point to Receive Buffers to be filled by the NIC. These get
2295 * used not only for Rx frames, but for any command response or notification
2296 * from the NIC. The driver and NIC manage the Rx buffers by means
2297 * of idxes into the circular buffer.
2298 *
2299 * Rx Queue Indexes
2300 * The host/firmware share two idx registers for managing the Rx buffers.
2301 *
2302 * The READ idx maps to the first position that the firmware may be writing
2303 * to -- the driver can read up to (but not including) this position and get
2304 * good data.
2305 * The READ idx is managed by the firmware once the card is enabled.
2306 *
2307 * The WRITE idx maps to the last position the driver has read from -- the
2308 * position preceding WRITE is the last slot the firmware can place a packet.
2309 *
2310 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
2311 * WRITE = READ.
2312 *
2313 * During initialization, the host sets up the READ queue position to the first
2314 * IDX position, and WRITE to the last (READ - 1 wrapped)
2315 *
2316 * When the firmware places a packet in a buffer, it will advance the READ idx
2317 * and fire the RX interrupt. The driver can then query the READ idx and
2318 * process as many packets as possible, moving the WRITE idx forward as it
2319 * resets the Rx queue buffers with new memory.
2320 *
2321 * The management in the driver is as follows:
2322 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
2323 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
2324 * to replenish the iwl->rxq->rx_free.
2325 * + In il_rx_replenish (scheduled) if 'processed' != 'read' then the
2326 * iwl->rxq is replenished and the READ IDX is updated (updating the
2327 * 'processed' and 'read' driver idxes as well)
2328 * + A received packet is processed and handed to the kernel network stack,
2329 * detached from the iwl->rxq. The driver 'processed' idx is updated.
2330 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
2331 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
2332 * IDX is not incremented and iwl->status(RX_STALLED) is set. If there
2333 * were enough free buffers and RX_STALLED is set it is cleared.
2334 *
2335 *
2336 * Driver sequence:
2337 *
2338 * il_rx_queue_alloc() Allocates rx_free
2339 * il_rx_replenish() Replenishes rx_free list from rx_used, and calls
2340 * il_rx_queue_restock
2341 * il_rx_queue_restock() Moves available buffers from rx_free into Rx
2342 * queue, updates firmware pointers, and updates
2343 * the WRITE idx. If insufficient rx_free buffers
2344 * are available, schedules il_rx_replenish
2345 *
2346 * -- enable interrupts --
2347 * ISR - il_rx() Detach il_rx_bufs from pool up to the
2348 * READ IDX, detaching the SKB from the pool.
2349 * Moves the packet buffer from queue to rx_used.
2350 * Calls il_rx_queue_restock to refill any empty
2351 * slots.
2352 * ...
2353 *
2354 */
2355
2356/**
2357 * il_rx_queue_space - Return number of free slots available in queue.
2358 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002359int
2360il_rx_queue_space(const struct il_rx_queue *q)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002361{
2362 int s = q->read - q->write;
2363 if (s <= 0)
2364 s += RX_QUEUE_SIZE;
2365 /* keep some buffer to not confuse full and empty queue */
2366 s -= 2;
2367 if (s < 0)
2368 s = 0;
2369 return s;
2370}
2371EXPORT_SYMBOL(il_rx_queue_space);
2372
2373/**
2374 * il_rx_queue_update_write_ptr - Update the write pointer for the RX queue
2375 */
2376void
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002377il_rx_queue_update_write_ptr(struct il_priv *il, struct il_rx_queue *q)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002378{
2379 unsigned long flags;
2380 u32 rx_wrt_ptr_reg = il->hw_params.rx_wrt_ptr_reg;
2381 u32 reg;
2382
2383 spin_lock_irqsave(&q->lock, flags);
2384
2385 if (q->need_update == 0)
2386 goto exit_unlock;
2387
2388 /* If power-saving is in use, make sure device is awake */
2389 if (test_bit(S_POWER_PMI, &il->status)) {
2390 reg = _il_rd(il, CSR_UCODE_DRV_GP1);
2391
2392 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002393 D_INFO("Rx queue requesting wakeup," " GP1 = 0x%x\n",
2394 reg);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002395 il_set_bit(il, CSR_GP_CNTRL,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002396 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002397 goto exit_unlock;
2398 }
2399
2400 q->write_actual = (q->write & ~0x7);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002401 il_wr(il, rx_wrt_ptr_reg, q->write_actual);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002402
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002403 /* Else device is assumed to be awake */
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002404 } else {
2405 /* Device expects a multiple of 8 */
2406 q->write_actual = (q->write & ~0x7);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002407 il_wr(il, rx_wrt_ptr_reg, q->write_actual);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002408 }
2409
2410 q->need_update = 0;
2411
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002412exit_unlock:
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002413 spin_unlock_irqrestore(&q->lock, flags);
2414}
2415EXPORT_SYMBOL(il_rx_queue_update_write_ptr);
2416
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002417int
2418il_rx_queue_alloc(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002419{
2420 struct il_rx_queue *rxq = &il->rxq;
2421 struct device *dev = &il->pci_dev->dev;
2422 int i;
2423
2424 spin_lock_init(&rxq->lock);
2425 INIT_LIST_HEAD(&rxq->rx_free);
2426 INIT_LIST_HEAD(&rxq->rx_used);
2427
2428 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002429 rxq->bd =
2430 dma_alloc_coherent(dev, 4 * RX_QUEUE_SIZE, &rxq->bd_dma,
2431 GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002432 if (!rxq->bd)
2433 goto err_bd;
2434
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002435 rxq->rb_stts =
2436 dma_alloc_coherent(dev, sizeof(struct il_rb_status),
2437 &rxq->rb_stts_dma, GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002438 if (!rxq->rb_stts)
2439 goto err_rb;
2440
2441 /* Fill the rx_used queue with _all_ of the Rx buffers */
2442 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
2443 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
2444
2445 /* Set us so that we have processed and used all buffers, but have
2446 * not restocked the Rx queue with fresh buffers */
2447 rxq->read = rxq->write = 0;
2448 rxq->write_actual = 0;
2449 rxq->free_count = 0;
2450 rxq->need_update = 0;
2451 return 0;
2452
2453err_rb:
2454 dma_free_coherent(&il->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
2455 rxq->bd_dma);
2456err_bd:
2457 return -ENOMEM;
2458}
2459EXPORT_SYMBOL(il_rx_queue_alloc);
2460
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002461void
2462il_hdl_spectrum_measurement(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002463{
2464 struct il_rx_pkt *pkt = rxb_addr(rxb);
2465 struct il_spectrum_notification *report = &(pkt->u.spectrum_notif);
2466
2467 if (!report->state) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002468 D_11H("Spectrum Measure Notification: Start\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002469 return;
2470 }
2471
2472 memcpy(&il->measure_report, report, sizeof(*report));
2473 il->measurement_status |= MEASUREMENT_READY;
2474}
2475EXPORT_SYMBOL(il_hdl_spectrum_measurement);
2476
2477/*
2478 * returns non-zero if packet should be dropped
2479 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002480int
2481il_set_decrypted_flag(struct il_priv *il, struct ieee80211_hdr *hdr,
2482 u32 decrypt_res, struct ieee80211_rx_status *stats)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002483{
2484 u16 fc = le16_to_cpu(hdr->frame_control);
2485
2486 /*
2487 * All contexts have the same setting here due to it being
2488 * a module parameter, so OK to check any context.
2489 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002490 if (il->ctx.active.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002491 return 0;
2492
2493 if (!(fc & IEEE80211_FCTL_PROTECTED))
2494 return 0;
2495
2496 D_RX("decrypt_res:0x%x\n", decrypt_res);
2497 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2498 case RX_RES_STATUS_SEC_TYPE_TKIP:
2499 /* The uCode has got a bad phase 1 Key, pushes the packet.
2500 * Decryption will be done in SW. */
2501 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2502 RX_RES_STATUS_BAD_KEY_TTAK)
2503 break;
2504
2505 case RX_RES_STATUS_SEC_TYPE_WEP:
2506 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2507 RX_RES_STATUS_BAD_ICV_MIC) {
2508 /* bad ICV, the packet is destroyed since the
2509 * decryption is inplace, drop it */
2510 D_RX("Packet destroyed\n");
2511 return -1;
2512 }
2513 case RX_RES_STATUS_SEC_TYPE_CCMP:
2514 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2515 RX_RES_STATUS_DECRYPT_OK) {
2516 D_RX("hw decrypt successfully!!!\n");
2517 stats->flag |= RX_FLAG_DECRYPTED;
2518 }
2519 break;
2520
2521 default:
2522 break;
2523 }
2524 return 0;
2525}
2526EXPORT_SYMBOL(il_set_decrypted_flag);
2527
2528/**
2529 * il_txq_update_write_ptr - Send new write idx to hardware
2530 */
2531void
2532il_txq_update_write_ptr(struct il_priv *il, struct il_tx_queue *txq)
2533{
2534 u32 reg = 0;
2535 int txq_id = txq->q.id;
2536
2537 if (txq->need_update == 0)
2538 return;
2539
2540 /* if we're trying to save power */
2541 if (test_bit(S_POWER_PMI, &il->status)) {
2542 /* wake up nic if it's powered down ...
2543 * uCode will wake up, and interrupt us again, so next
2544 * time we'll skip this part. */
2545 reg = _il_rd(il, CSR_UCODE_DRV_GP1);
2546
2547 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002548 D_INFO("Tx queue %d requesting wakeup," " GP1 = 0x%x\n",
2549 txq_id, reg);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002550 il_set_bit(il, CSR_GP_CNTRL,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002551 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002552 return;
2553 }
2554
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002555 il_wr(il, HBUS_TARG_WRPTR, txq->q.write_ptr | (txq_id << 8));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002556
2557 /*
2558 * else not in power-save mode,
2559 * uCode will never sleep when we're
2560 * trying to tx (during RFKILL, we're not trying to tx).
2561 */
2562 } else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002563 _il_wr(il, HBUS_TARG_WRPTR, txq->q.write_ptr | (txq_id << 8));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002564 txq->need_update = 0;
2565}
2566EXPORT_SYMBOL(il_txq_update_write_ptr);
2567
2568/**
2569 * il_tx_queue_unmap - Unmap any remaining DMA mappings and free skb's
2570 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002571void
2572il_tx_queue_unmap(struct il_priv *il, int txq_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002573{
2574 struct il_tx_queue *txq = &il->txq[txq_id];
2575 struct il_queue *q = &txq->q;
2576
2577 if (q->n_bd == 0)
2578 return;
2579
2580 while (q->write_ptr != q->read_ptr) {
2581 il->cfg->ops->lib->txq_free_tfd(il, txq);
2582 q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd);
2583 }
2584}
2585EXPORT_SYMBOL(il_tx_queue_unmap);
2586
2587/**
2588 * il_tx_queue_free - Deallocate DMA queue.
2589 * @txq: Transmit queue to deallocate.
2590 *
2591 * Empty queue by removing and destroying all BD's.
2592 * Free all buffers.
2593 * 0-fill, but do not free "txq" descriptor structure.
2594 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002595void
2596il_tx_queue_free(struct il_priv *il, int txq_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002597{
2598 struct il_tx_queue *txq = &il->txq[txq_id];
2599 struct device *dev = &il->pci_dev->dev;
2600 int i;
2601
2602 il_tx_queue_unmap(il, txq_id);
2603
2604 /* De-alloc array of command/tx buffers */
2605 for (i = 0; i < TFD_TX_CMD_SLOTS; i++)
2606 kfree(txq->cmd[i]);
2607
2608 /* De-alloc circular buffer of TFDs */
2609 if (txq->q.n_bd)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002610 dma_free_coherent(dev, il->hw_params.tfd_size * txq->q.n_bd,
2611 txq->tfds, txq->q.dma_addr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002612
2613 /* De-alloc array of per-TFD driver data */
2614 kfree(txq->txb);
2615 txq->txb = NULL;
2616
2617 /* deallocate arrays */
2618 kfree(txq->cmd);
2619 kfree(txq->meta);
2620 txq->cmd = NULL;
2621 txq->meta = NULL;
2622
2623 /* 0-fill queue descriptor structure */
2624 memset(txq, 0, sizeof(*txq));
2625}
2626EXPORT_SYMBOL(il_tx_queue_free);
2627
2628/**
2629 * il_cmd_queue_unmap - Unmap any remaining DMA mappings from command queue
2630 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002631void
2632il_cmd_queue_unmap(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002633{
2634 struct il_tx_queue *txq = &il->txq[il->cmd_queue];
2635 struct il_queue *q = &txq->q;
2636 int i;
2637
2638 if (q->n_bd == 0)
2639 return;
2640
2641 while (q->read_ptr != q->write_ptr) {
2642 i = il_get_cmd_idx(q, q->read_ptr, 0);
2643
2644 if (txq->meta[i].flags & CMD_MAPPED) {
2645 pci_unmap_single(il->pci_dev,
2646 dma_unmap_addr(&txq->meta[i], mapping),
2647 dma_unmap_len(&txq->meta[i], len),
2648 PCI_DMA_BIDIRECTIONAL);
2649 txq->meta[i].flags = 0;
2650 }
2651
2652 q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd);
2653 }
2654
2655 i = q->n_win;
2656 if (txq->meta[i].flags & CMD_MAPPED) {
2657 pci_unmap_single(il->pci_dev,
2658 dma_unmap_addr(&txq->meta[i], mapping),
2659 dma_unmap_len(&txq->meta[i], len),
2660 PCI_DMA_BIDIRECTIONAL);
2661 txq->meta[i].flags = 0;
2662 }
2663}
2664EXPORT_SYMBOL(il_cmd_queue_unmap);
2665
2666/**
2667 * il_cmd_queue_free - Deallocate DMA queue.
2668 * @txq: Transmit queue to deallocate.
2669 *
2670 * Empty queue by removing and destroying all BD's.
2671 * Free all buffers.
2672 * 0-fill, but do not free "txq" descriptor structure.
2673 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002674void
2675il_cmd_queue_free(struct il_priv *il)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002676{
2677 struct il_tx_queue *txq = &il->txq[il->cmd_queue];
2678 struct device *dev = &il->pci_dev->dev;
2679 int i;
2680
2681 il_cmd_queue_unmap(il);
2682
2683 /* De-alloc array of command/tx buffers */
2684 for (i = 0; i <= TFD_CMD_SLOTS; i++)
2685 kfree(txq->cmd[i]);
2686
2687 /* De-alloc circular buffer of TFDs */
2688 if (txq->q.n_bd)
2689 dma_free_coherent(dev, il->hw_params.tfd_size * txq->q.n_bd,
2690 txq->tfds, txq->q.dma_addr);
2691
2692 /* deallocate arrays */
2693 kfree(txq->cmd);
2694 kfree(txq->meta);
2695 txq->cmd = NULL;
2696 txq->meta = NULL;
2697
2698 /* 0-fill queue descriptor structure */
2699 memset(txq, 0, sizeof(*txq));
2700}
2701EXPORT_SYMBOL(il_cmd_queue_free);
2702
2703/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
2704 * DMA services
2705 *
2706 * Theory of operation
2707 *
2708 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
2709 * of buffer descriptors, each of which points to one or more data buffers for
2710 * the device to read from or fill. Driver and device exchange status of each
2711 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
2712 * entries in each circular buffer, to protect against confusing empty and full
2713 * queue states.
2714 *
2715 * The device reads or writes the data in the queues via the device's several
2716 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
2717 *
2718 * For Tx queue, there are low mark and high mark limits. If, after queuing
2719 * the packet for Tx, free space become < low mark, Tx queue stopped. When
2720 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
2721 * Tx queue resumed.
2722 *
2723 * See more detailed info in 4965.h.
2724 ***************************************************/
2725
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002726int
2727il_queue_space(const struct il_queue *q)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002728{
2729 int s = q->read_ptr - q->write_ptr;
2730
2731 if (q->read_ptr > q->write_ptr)
2732 s -= q->n_bd;
2733
2734 if (s <= 0)
2735 s += q->n_win;
2736 /* keep some reserve to not confuse empty and full situations */
2737 s -= 2;
2738 if (s < 0)
2739 s = 0;
2740 return s;
2741}
2742EXPORT_SYMBOL(il_queue_space);
2743
2744
2745/**
2746 * il_queue_init - Initialize queue's high/low-water and read/write idxes
2747 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002748static int
2749il_queue_init(struct il_priv *il, struct il_queue *q, int count, int slots_num,
2750 u32 id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002751{
2752 q->n_bd = count;
2753 q->n_win = slots_num;
2754 q->id = id;
2755
2756 /* count must be power-of-two size, otherwise il_queue_inc_wrap
2757 * and il_queue_dec_wrap are broken. */
2758 BUG_ON(!is_power_of_2(count));
2759
2760 /* slots_num must be power-of-two size, otherwise
2761 * il_get_cmd_idx is broken. */
2762 BUG_ON(!is_power_of_2(slots_num));
2763
2764 q->low_mark = q->n_win / 4;
2765 if (q->low_mark < 4)
2766 q->low_mark = 4;
2767
2768 q->high_mark = q->n_win / 8;
2769 if (q->high_mark < 2)
2770 q->high_mark = 2;
2771
2772 q->write_ptr = q->read_ptr = 0;
2773
2774 return 0;
2775}
2776
2777/**
2778 * il_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
2779 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002780static int
2781il_tx_queue_alloc(struct il_priv *il, struct il_tx_queue *txq, u32 id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002782{
2783 struct device *dev = &il->pci_dev->dev;
2784 size_t tfd_sz = il->hw_params.tfd_size * TFD_QUEUE_SIZE_MAX;
2785
2786 /* Driver ilate data, only for Tx (not command) queues,
2787 * not shared with device. */
2788 if (id != il->cmd_queue) {
Thomas Meyer2b50b8f2011-11-29 22:08:00 +01002789 txq->txb = kcalloc(TFD_QUEUE_SIZE_MAX, sizeof(txq->txb[0]),
2790 GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002791 if (!txq->txb) {
2792 IL_ERR("kmalloc for auxiliary BD "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002793 "structures failed\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002794 goto error;
2795 }
2796 } else {
2797 txq->txb = NULL;
2798 }
2799
2800 /* Circular buffer of transmit frame descriptors (TFDs),
2801 * shared with device */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002802 txq->tfds =
2803 dma_alloc_coherent(dev, tfd_sz, &txq->q.dma_addr, GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002804 if (!txq->tfds) {
2805 IL_ERR("pci_alloc_consistent(%zd) failed\n", tfd_sz);
2806 goto error;
2807 }
2808 txq->q.id = id;
2809
2810 return 0;
2811
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002812error:
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002813 kfree(txq->txb);
2814 txq->txb = NULL;
2815
2816 return -ENOMEM;
2817}
2818
2819/**
2820 * il_tx_queue_init - Allocate and initialize one tx/cmd queue
2821 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002822int
2823il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq, int slots_num,
2824 u32 txq_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002825{
2826 int i, len;
2827 int ret;
2828 int actual_slots = slots_num;
2829
2830 /*
2831 * Alloc buffer array for commands (Tx or other types of commands).
2832 * For the command queue (#4/#9), allocate command space + one big
2833 * command for scan, since scan command is very huge; the system will
2834 * not have two scans at the same time, so only one is needed.
2835 * For normal Tx queues (all other queues), no super-size command
2836 * space is needed.
2837 */
2838 if (txq_id == il->cmd_queue)
2839 actual_slots++;
2840
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002841 txq->meta =
2842 kzalloc(sizeof(struct il_cmd_meta) * actual_slots, GFP_KERNEL);
2843 txq->cmd =
2844 kzalloc(sizeof(struct il_device_cmd *) * actual_slots, GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002845
2846 if (!txq->meta || !txq->cmd)
2847 goto out_free_arrays;
2848
2849 len = sizeof(struct il_device_cmd);
2850 for (i = 0; i < actual_slots; i++) {
2851 /* only happens for cmd queue */
2852 if (i == slots_num)
2853 len = IL_MAX_CMD_SIZE;
2854
2855 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
2856 if (!txq->cmd[i])
2857 goto err;
2858 }
2859
2860 /* Alloc driver data array and TFD circular buffer */
2861 ret = il_tx_queue_alloc(il, txq, txq_id);
2862 if (ret)
2863 goto err;
2864
2865 txq->need_update = 0;
2866
2867 /*
2868 * For the default queues 0-3, set up the swq_id
2869 * already -- all others need to get one later
2870 * (if they need one at all).
2871 */
2872 if (txq_id < 4)
2873 il_set_swq_id(txq, txq_id, txq_id);
2874
2875 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
2876 * il_queue_inc_wrap and il_queue_dec_wrap are broken. */
2877 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
2878
2879 /* Initialize queue's high/low-water marks, and head/tail idxes */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002880 il_queue_init(il, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002881
2882 /* Tell device where to find queue */
2883 il->cfg->ops->lib->txq_init(il, txq);
2884
2885 return 0;
2886err:
2887 for (i = 0; i < actual_slots; i++)
2888 kfree(txq->cmd[i]);
2889out_free_arrays:
2890 kfree(txq->meta);
2891 kfree(txq->cmd);
2892
2893 return -ENOMEM;
2894}
2895EXPORT_SYMBOL(il_tx_queue_init);
2896
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002897void
2898il_tx_queue_reset(struct il_priv *il, struct il_tx_queue *txq, int slots_num,
2899 u32 txq_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002900{
2901 int actual_slots = slots_num;
2902
2903 if (txq_id == il->cmd_queue)
2904 actual_slots++;
2905
2906 memset(txq->meta, 0, sizeof(struct il_cmd_meta) * actual_slots);
2907
2908 txq->need_update = 0;
2909
2910 /* Initialize queue's high/low-water marks, and head/tail idxes */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002911 il_queue_init(il, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002912
2913 /* Tell device where to find queue */
2914 il->cfg->ops->lib->txq_init(il, txq);
2915}
2916EXPORT_SYMBOL(il_tx_queue_reset);
2917
2918/*************** HOST COMMAND QUEUE FUNCTIONS *****/
2919
2920/**
2921 * il_enqueue_hcmd - enqueue a uCode command
2922 * @il: device ilate data point
2923 * @cmd: a point to the ucode command structure
2924 *
2925 * The function returns < 0 values to indicate the operation is
2926 * failed. On success, it turns the idx (> 0) of command in the
2927 * command queue.
2928 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002929int
2930il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002931{
2932 struct il_tx_queue *txq = &il->txq[il->cmd_queue];
2933 struct il_queue *q = &txq->q;
2934 struct il_device_cmd *out_cmd;
2935 struct il_cmd_meta *out_meta;
2936 dma_addr_t phys_addr;
2937 unsigned long flags;
2938 int len;
2939 u32 idx;
2940 u16 fix_size;
2941
2942 cmd->len = il->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002943 fix_size = (u16) (cmd->len + sizeof(out_cmd->hdr));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002944
2945 /* If any of the command structures end up being larger than
2946 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
2947 * we will need to increase the size of the TFD entries
2948 * Also, check to see if command buffer should not exceed the size
2949 * of device_cmd and max_cmd_size. */
2950 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
2951 !(cmd->flags & CMD_SIZE_HUGE));
2952 BUG_ON(fix_size > IL_MAX_CMD_SIZE);
2953
2954 if (il_is_rfkill(il) || il_is_ctkill(il)) {
2955 IL_WARN("Not sending command - %s KILL\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002956 il_is_rfkill(il) ? "RF" : "CT");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002957 return -EIO;
2958 }
2959
2960 spin_lock_irqsave(&il->hcmd_lock, flags);
2961
2962 if (il_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
2963 spin_unlock_irqrestore(&il->hcmd_lock, flags);
2964
2965 IL_ERR("Restarting adapter due to command queue full\n");
2966 queue_work(il->workqueue, &il->restart);
2967 return -ENOSPC;
2968 }
2969
2970 idx = il_get_cmd_idx(q, q->write_ptr, cmd->flags & CMD_SIZE_HUGE);
2971 out_cmd = txq->cmd[idx];
2972 out_meta = &txq->meta[idx];
2973
2974 if (WARN_ON(out_meta->flags & CMD_MAPPED)) {
2975 spin_unlock_irqrestore(&il->hcmd_lock, flags);
2976 return -ENOSPC;
2977 }
2978
2979 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
2980 out_meta->flags = cmd->flags | CMD_MAPPED;
2981 if (cmd->flags & CMD_WANT_SKB)
2982 out_meta->source = cmd;
2983 if (cmd->flags & CMD_ASYNC)
2984 out_meta->callback = cmd->callback;
2985
2986 out_cmd->hdr.cmd = cmd->id;
2987 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
2988
2989 /* At this point, the out_cmd now has all of the incoming cmd
2990 * information */
2991
2992 out_cmd->hdr.flags = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002993 out_cmd->hdr.sequence =
2994 cpu_to_le16(QUEUE_TO_SEQ(il->cmd_queue) | IDX_TO_SEQ(q->write_ptr));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002995 if (cmd->flags & CMD_SIZE_HUGE)
2996 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
2997 len = sizeof(struct il_device_cmd);
2998 if (idx == TFD_CMD_SLOTS)
2999 len = IL_MAX_CMD_SIZE;
3000
3001#ifdef CONFIG_IWLEGACY_DEBUG
3002 switch (out_cmd->hdr.cmd) {
3003 case C_TX_LINK_QUALITY_CMD:
3004 case C_SENSITIVITY:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003005 D_HC_DUMP("Sending command %s (#%x), seq: 0x%04X, "
3006 "%d bytes at %d[%d]:%d\n",
3007 il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd,
3008 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
3009 q->write_ptr, idx, il->cmd_queue);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003010 break;
3011 default:
3012 D_HC("Sending command %s (#%x), seq: 0x%04X, "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003013 "%d bytes at %d[%d]:%d\n",
3014 il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd,
3015 le16_to_cpu(out_cmd->hdr.sequence), fix_size, q->write_ptr,
3016 idx, il->cmd_queue);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003017 }
3018#endif
3019 txq->need_update = 1;
3020
3021 if (il->cfg->ops->lib->txq_update_byte_cnt_tbl)
3022 /* Set up entry in queue's byte count circular buffer */
3023 il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq, 0);
3024
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003025 phys_addr =
3026 pci_map_single(il->pci_dev, &out_cmd->hdr, fix_size,
3027 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003028 dma_unmap_addr_set(out_meta, mapping, phys_addr);
3029 dma_unmap_len_set(out_meta, len, fix_size);
3030
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003031 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr, fix_size,
3032 1, U32_PAD(cmd->len));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003033
3034 /* Increment and update queue's write idx */
3035 q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd);
3036 il_txq_update_write_ptr(il, txq);
3037
3038 spin_unlock_irqrestore(&il->hcmd_lock, flags);
3039 return idx;
3040}
3041
3042/**
3043 * il_hcmd_queue_reclaim - Reclaim TX command queue entries already Tx'd
3044 *
3045 * When FW advances 'R' idx, all entries between old and new 'R' idx
3046 * need to be reclaimed. As result, some free space forms. If there is
3047 * enough free space (> low mark), wake the stack that feeds us.
3048 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003049static void
3050il_hcmd_queue_reclaim(struct il_priv *il, int txq_id, int idx, int cmd_idx)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003051{
3052 struct il_tx_queue *txq = &il->txq[txq_id];
3053 struct il_queue *q = &txq->q;
3054 int nfreed = 0;
3055
3056 if (idx >= q->n_bd || il_queue_used(q, idx) == 0) {
3057 IL_ERR("Read idx for DMA queue txq id (%d), idx %d, "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003058 "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd,
3059 q->write_ptr, q->read_ptr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003060 return;
3061 }
3062
3063 for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
3064 q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3065
3066 if (nfreed++ > 0) {
3067 IL_ERR("HCMD skipped: idx (%d) %d %d\n", idx,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003068 q->write_ptr, q->read_ptr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003069 queue_work(il->workqueue, &il->restart);
3070 }
3071
3072 }
3073}
3074
3075/**
3076 * il_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
3077 * @rxb: Rx buffer to reclaim
3078 *
3079 * If an Rx buffer has an async callback associated with it the callback
3080 * will be executed. The attached skb (if present) will only be freed
3081 * if the callback returns 1
3082 */
3083void
3084il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb)
3085{
3086 struct il_rx_pkt *pkt = rxb_addr(rxb);
3087 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3088 int txq_id = SEQ_TO_QUEUE(sequence);
3089 int idx = SEQ_TO_IDX(sequence);
3090 int cmd_idx;
3091 bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
3092 struct il_device_cmd *cmd;
3093 struct il_cmd_meta *meta;
3094 struct il_tx_queue *txq = &il->txq[il->cmd_queue];
3095 unsigned long flags;
3096
3097 /* If a Tx command is being handled and it isn't in the actual
3098 * command queue then there a command routing bug has been introduced
3099 * in the queue management code. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003100 if (WARN
3101 (txq_id != il->cmd_queue,
3102 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
3103 txq_id, il->cmd_queue, sequence, il->txq[il->cmd_queue].q.read_ptr,
3104 il->txq[il->cmd_queue].q.write_ptr)) {
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003105 il_print_hex_error(il, pkt, 32);
3106 return;
3107 }
3108
3109 cmd_idx = il_get_cmd_idx(&txq->q, idx, huge);
3110 cmd = txq->cmd[cmd_idx];
3111 meta = &txq->meta[cmd_idx];
3112
3113 txq->time_stamp = jiffies;
3114
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003115 pci_unmap_single(il->pci_dev, dma_unmap_addr(meta, mapping),
3116 dma_unmap_len(meta, len), PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003117
3118 /* Input error checking is done when commands are added to queue. */
3119 if (meta->flags & CMD_WANT_SKB) {
3120 meta->source->reply_page = (unsigned long)rxb_addr(rxb);
3121 rxb->page = NULL;
3122 } else if (meta->callback)
3123 meta->callback(il, cmd, pkt);
3124
3125 spin_lock_irqsave(&il->hcmd_lock, flags);
3126
3127 il_hcmd_queue_reclaim(il, txq_id, idx, cmd_idx);
3128
3129 if (!(meta->flags & CMD_ASYNC)) {
3130 clear_bit(S_HCMD_ACTIVE, &il->status);
3131 D_INFO("Clearing HCMD_ACTIVE for command %s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003132 il_get_cmd_string(cmd->hdr.cmd));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003133 wake_up(&il->wait_command_queue);
3134 }
3135
3136 /* Mark as unmapped */
3137 meta->flags = 0;
3138
3139 spin_unlock_irqrestore(&il->hcmd_lock, flags);
3140}
3141EXPORT_SYMBOL(il_tx_cmd_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003142
3143MODULE_DESCRIPTION("iwl-legacy: common functions for 3945 and 4965");
3144MODULE_VERSION(IWLWIFI_VERSION);
3145MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
3146MODULE_LICENSE("GPL");
3147
3148/*
3149 * set bt_coex_active to true, uCode will do kill/defer
3150 * every time the priority line is asserted (BT is sending signals on the
3151 * priority line in the PCIx).
3152 * set bt_coex_active to false, uCode will ignore the BT activity and
3153 * perform the normal operation
3154 *
3155 * User might experience transmit issue on some platform due to WiFi/BT
3156 * co-exist problem. The possible behaviors are:
3157 * Able to scan and finding all the available AP
3158 * Not able to associate with any AP
3159 * On those platforms, WiFi communication can be restored by set
3160 * "bt_coex_active" module parameter to "false"
3161 *
3162 * default: bt_coex_active = true (BT_COEX_ENABLE)
3163 */
John W. Linvilleef334172011-02-25 15:51:01 -05003164static bool bt_coex_active = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003165module_param(bt_coex_active, bool, S_IRUGO);
3166MODULE_PARM_DESC(bt_coex_active, "enable wifi/bluetooth co-exist");
3167
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02003168u32 il_debug_level;
3169EXPORT_SYMBOL(il_debug_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003170
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02003171const u8 il_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
3172EXPORT_SYMBOL(il_bcast_addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003173
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003174/* This function both allocates and initializes hw and il. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003175struct ieee80211_hw *
3176il_alloc_all(struct il_cfg *cfg)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003177{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003178 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003179 /* mac80211 allocates memory for this device instance, including
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003180 * space for this driver's ilate structure */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003181 struct ieee80211_hw *hw;
3182
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003183 hw = ieee80211_alloc_hw(sizeof(struct il_priv),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003184 cfg->ops->ieee80211_ops);
3185 if (hw == NULL) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003186 pr_err("%s: Can not allocate network device\n", cfg->name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003187 goto out;
3188 }
3189
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003190 il = hw->priv;
3191 il->hw = hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003192
3193out:
3194 return hw;
3195}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003196EXPORT_SYMBOL(il_alloc_all);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003197
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003198#define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
3199#define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
3200static void
3201il_init_ht_hw_capab(const struct il_priv *il,
3202 struct ieee80211_sta_ht_cap *ht_info,
3203 enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003204{
3205 u16 max_bit_rate = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003206 u8 rx_chains_num = il->hw_params.rx_chains_num;
3207 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003208
3209 ht_info->cap = 0;
3210 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
3211
3212 ht_info->ht_supported = true;
3213
3214 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
3215 max_bit_rate = MAX_BIT_RATE_20_MHZ;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003216 if (il->hw_params.ht40_channel & BIT(band)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003217 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
3218 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
3219 ht_info->mcs.rx_mask[4] = 0x01;
3220 max_bit_rate = MAX_BIT_RATE_40_MHZ;
3221 }
3222
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003223 if (il->cfg->mod_params->amsdu_size_8K)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003224 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
3225
3226 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
3227 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
3228
3229 ht_info->mcs.rx_mask[0] = 0xFF;
3230 if (rx_chains_num >= 2)
3231 ht_info->mcs.rx_mask[1] = 0xFF;
3232 if (rx_chains_num >= 3)
3233 ht_info->mcs.rx_mask[2] = 0xFF;
3234
3235 /* Highest supported Rx data rate */
3236 max_bit_rate *= rx_chains_num;
3237 WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
3238 ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
3239
3240 /* Tx MCS capabilities */
3241 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
3242 if (tx_chains_num != rx_chains_num) {
3243 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003244 ht_info->mcs.tx_params |=
3245 ((tx_chains_num -
3246 1) << IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003247 }
3248}
3249
3250/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003251 * il_init_geos - Initialize mac80211's geo/channel info based from eeprom
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003252 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003253int
3254il_init_geos(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003255{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003256 struct il_channel_info *ch;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003257 struct ieee80211_supported_band *sband;
3258 struct ieee80211_channel *channels;
3259 struct ieee80211_channel *geo_ch;
3260 struct ieee80211_rate *rates;
3261 int i = 0;
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02003262 s8 max_tx_power = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003263
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003264 if (il->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
3265 il->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003266 D_INFO("Geography modes already initialized.\n");
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003267 set_bit(S_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003268 return 0;
3269 }
3270
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003271 channels =
3272 kzalloc(sizeof(struct ieee80211_channel) * il->channel_count,
3273 GFP_KERNEL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003274 if (!channels)
3275 return -ENOMEM;
3276
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003277 rates =
3278 kzalloc((sizeof(struct ieee80211_rate) * RATE_COUNT_LEGACY),
3279 GFP_KERNEL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003280 if (!rates) {
3281 kfree(channels);
3282 return -ENOMEM;
3283 }
3284
3285 /* 5.2GHz channels start after the 2.4GHz channels */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003286 sband = &il->bands[IEEE80211_BAND_5GHZ];
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02003287 sband->channels = &channels[ARRAY_SIZE(il_eeprom_band_1)];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003288 /* just OFDM */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003289 sband->bitrates = &rates[IL_FIRST_OFDM_RATE];
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003290 sband->n_bitrates = RATE_COUNT_LEGACY - IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003291
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003292 if (il->cfg->sku & IL_SKU_N)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003293 il_init_ht_hw_capab(il, &sband->ht_cap, IEEE80211_BAND_5GHZ);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003294
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003295 sband = &il->bands[IEEE80211_BAND_2GHZ];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003296 sband->channels = channels;
3297 /* OFDM & CCK */
3298 sband->bitrates = rates;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003299 sband->n_bitrates = RATE_COUNT_LEGACY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003300
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003301 if (il->cfg->sku & IL_SKU_N)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003302 il_init_ht_hw_capab(il, &sband->ht_cap, IEEE80211_BAND_2GHZ);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003303
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003304 il->ieee_channels = channels;
3305 il->ieee_rates = rates;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003306
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003307 for (i = 0; i < il->channel_count; i++) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003308 ch = &il->channel_info[i];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003309
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003310 if (!il_is_channel_valid(ch))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003311 continue;
3312
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003313 sband = &il->bands[ch->band];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003314
3315 geo_ch = &sband->channels[sband->n_channels++];
3316
3317 geo_ch->center_freq =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003318 ieee80211_channel_to_frequency(ch->channel, ch->band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003319 geo_ch->max_power = ch->max_power_avg;
3320 geo_ch->max_antenna_gain = 0xff;
3321 geo_ch->hw_value = ch->channel;
3322
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003323 if (il_is_channel_valid(ch)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003324 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
3325 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
3326
3327 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
3328 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
3329
3330 if (ch->flags & EEPROM_CHANNEL_RADAR)
3331 geo_ch->flags |= IEEE80211_CHAN_RADAR;
3332
3333 geo_ch->flags |= ch->ht40_extension_channel;
3334
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02003335 if (ch->max_power_avg > max_tx_power)
3336 max_tx_power = ch->max_power_avg;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003337 } else {
3338 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
3339 }
3340
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003341 D_INFO("Channel %d Freq=%d[%sGHz] %s flag=0x%X\n", ch->channel,
3342 geo_ch->center_freq,
3343 il_is_channel_a_band(ch) ? "5.2" : "2.4",
3344 geo_ch->
3345 flags & IEEE80211_CHAN_DISABLED ? "restricted" : "valid",
3346 geo_ch->flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003347 }
3348
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003349 il->tx_power_device_lmt = max_tx_power;
3350 il->tx_power_user_lmt = max_tx_power;
3351 il->tx_power_next = max_tx_power;
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02003352
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02003353 if (il->bands[IEEE80211_BAND_5GHZ].n_channels == 0 &&
3354 (il->cfg->sku & IL_SKU_A)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003355 IL_INFO("Incorrectly detected BG card as ABG. "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003356 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003357 il->pci_dev->device, il->pci_dev->subsystem_device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003358 il->cfg->sku &= ~IL_SKU_A;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003359 }
3360
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003361 IL_INFO("Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003362 il->bands[IEEE80211_BAND_2GHZ].n_channels,
3363 il->bands[IEEE80211_BAND_5GHZ].n_channels);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003364
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003365 set_bit(S_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003366
3367 return 0;
3368}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003369EXPORT_SYMBOL(il_init_geos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003370
3371/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003372 * il_free_geos - undo allocations in il_init_geos
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003373 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003374void
3375il_free_geos(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003376{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003377 kfree(il->ieee_channels);
3378 kfree(il->ieee_rates);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003379 clear_bit(S_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003380}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003381EXPORT_SYMBOL(il_free_geos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003382
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003383static bool
3384il_is_channel_extension(struct il_priv *il, enum ieee80211_band band,
3385 u16 channel, u8 extension_chan_offset)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003386{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003387 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003388
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003389 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003390 if (!il_is_channel_valid(ch_info))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003391 return false;
3392
3393 if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003394 return !(ch_info->
3395 ht40_extension_channel & IEEE80211_CHAN_NO_HT40PLUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003396 else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003397 return !(ch_info->
3398 ht40_extension_channel & IEEE80211_CHAN_NO_HT40MINUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003399
3400 return false;
3401}
3402
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003403bool
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003404il_is_ht40_tx_allowed(struct il_priv *il, struct il_rxon_context *ctx,
3405 struct ieee80211_sta_ht_cap *ht_cap)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003406{
3407 if (!ctx->ht.enabled || !ctx->ht.is_40mhz)
3408 return false;
3409
3410 /*
3411 * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
3412 * the bit will not set if it is pure 40MHz case
3413 */
3414 if (ht_cap && !ht_cap->ht_supported)
3415 return false;
3416
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01003417#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003418 if (il->disable_ht40)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003419 return false;
3420#endif
3421
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003422 return il_is_channel_extension(il, il->band,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003423 le16_to_cpu(ctx->staging.channel),
3424 ctx->ht.extension_chan_offset);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003425}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003426EXPORT_SYMBOL(il_is_ht40_tx_allowed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003427
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003428static u16
3429il_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003430{
3431 u16 new_val;
3432 u16 beacon_factor;
3433
3434 /*
3435 * If mac80211 hasn't given us a beacon interval, program
3436 * the default into the device.
3437 */
3438 if (!beacon_val)
3439 return DEFAULT_BEACON_INTERVAL;
3440
3441 /*
3442 * If the beacon interval we obtained from the peer
3443 * is too large, we'll have to wake up more often
3444 * (and in IBSS case, we'll beacon too much)
3445 *
3446 * For example, if max_beacon_val is 4096, and the
3447 * requested beacon interval is 7000, we'll have to
3448 * use 3500 to be able to wake up on the beacons.
3449 *
3450 * This could badly influence beacon detection stats.
3451 */
3452
3453 beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val;
3454 new_val = beacon_val / beacon_factor;
3455
3456 if (!new_val)
3457 new_val = max_beacon_val;
3458
3459 return new_val;
3460}
3461
3462int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003463il_send_rxon_timing(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003464{
3465 u64 tsf;
3466 s32 interval_tm, rem;
3467 struct ieee80211_conf *conf = NULL;
3468 u16 beacon_int;
3469 struct ieee80211_vif *vif = ctx->vif;
3470
Stanislaw Gruszka6278dda2011-08-31 11:13:05 +02003471 conf = &il->hw->conf;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003472
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003473 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003474
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003475 memset(&ctx->timing, 0, sizeof(struct il_rxon_time_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003476
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003477 ctx->timing.timestamp = cpu_to_le64(il->timestamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003478 ctx->timing.listen_interval = cpu_to_le16(conf->listen_interval);
3479
3480 beacon_int = vif ? vif->bss_conf.beacon_int : 0;
3481
3482 /*
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02003483 * TODO: For IBSS we need to get atim_win from mac80211,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003484 * for now just always use 0
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003485 */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02003486 ctx->timing.atim_win = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003487
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003488 beacon_int =
3489 il_adjust_beacon_interval(beacon_int,
3490 il->hw_params.max_beacon_itrvl *
3491 TIME_UNIT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003492 ctx->timing.beacon_interval = cpu_to_le16(beacon_int);
3493
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003494 tsf = il->timestamp; /* tsf is modifed by do_div: copy it */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003495 interval_tm = beacon_int * TIME_UNIT;
3496 rem = do_div(tsf, interval_tm);
3497 ctx->timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
3498
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003499 ctx->timing.dtim_period = vif ? (vif->bss_conf.dtim_period ? : 1) : 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003500
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003501 D_ASSOC("beacon interval %d beacon timer %d beacon tim %d\n",
3502 le16_to_cpu(ctx->timing.beacon_interval),
3503 le32_to_cpu(ctx->timing.beacon_init_val),
3504 le16_to_cpu(ctx->timing.atim_win));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003505
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003506 return il_send_cmd_pdu(il, ctx->rxon_timing_cmd, sizeof(ctx->timing),
3507 &ctx->timing);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003508}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003509EXPORT_SYMBOL(il_send_rxon_timing);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003510
3511void
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003512il_set_rxon_hwcrypto(struct il_priv *il, struct il_rxon_context *ctx,
3513 int hw_decrypt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003514{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003515 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003516
3517 if (hw_decrypt)
3518 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
3519 else
3520 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
3521
3522}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003523EXPORT_SYMBOL(il_set_rxon_hwcrypto);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003524
3525/* validate RXON structure is valid */
3526int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003527il_check_rxon_cmd(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003528{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003529 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003530 bool error = false;
3531
3532 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
3533 if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003534 IL_WARN("check 2.4G: wrong narrow\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003535 error = true;
3536 }
3537 if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003538 IL_WARN("check 2.4G: wrong radar\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003539 error = true;
3540 }
3541 } else {
3542 if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003543 IL_WARN("check 5.2G: not short slot!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003544 error = true;
3545 }
3546 if (rxon->flags & RXON_FLG_CCK_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003547 IL_WARN("check 5.2G: CCK!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003548 error = true;
3549 }
3550 }
3551 if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003552 IL_WARN("mac/bssid mcast!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003553 error = true;
3554 }
3555
3556 /* make sure basic rates 6Mbps and 1Mbps are supported */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003557 if ((rxon->ofdm_basic_rates & RATE_6M_MASK) == 0 &&
3558 (rxon->cck_basic_rates & RATE_1M_MASK) == 0) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003559 IL_WARN("neither 1 nor 6 are basic\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003560 error = true;
3561 }
3562
3563 if (le16_to_cpu(rxon->assoc_id) > 2007) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003564 IL_WARN("aid > 2007\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003565 error = true;
3566 }
3567
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003568 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) ==
3569 (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003570 IL_WARN("CCK and short slot\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003571 error = true;
3572 }
3573
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003574 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) ==
3575 (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003576 IL_WARN("CCK and auto detect");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003577 error = true;
3578 }
3579
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003580 if ((rxon->
3581 flags & (RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK)) ==
3582 RXON_FLG_TGG_PROTECT_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003583 IL_WARN("TGg but no auto-detect\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003584 error = true;
3585 }
3586
3587 if (error)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003588 IL_WARN("Tuning to channel %d\n", le16_to_cpu(rxon->channel));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003589
3590 if (error) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003591 IL_ERR("Invalid RXON\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003592 return -EINVAL;
3593 }
3594 return 0;
3595}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003596EXPORT_SYMBOL(il_check_rxon_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003597
3598/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003599 * il_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003600 * @il: staging_rxon is compared to active_rxon
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003601 *
3602 * If the RXON structure is changing enough to require a new tune,
3603 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
3604 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
3605 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003606int
3607il_full_rxon_required(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003608{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003609 const struct il_rxon_cmd *staging = &ctx->staging;
3610 const struct il_rxon_cmd *active = &ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003611
3612#define CHK(cond) \
3613 if ((cond)) { \
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003614 D_INFO("need full RXON - " #cond "\n"); \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003615 return 1; \
3616 }
3617
3618#define CHK_NEQ(c1, c2) \
3619 if ((c1) != (c2)) { \
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003620 D_INFO("need full RXON - " \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003621 #c1 " != " #c2 " - %d != %d\n", \
3622 (c1), (c2)); \
3623 return 1; \
3624 }
3625
3626 /* These items are only settable from the full RXON command */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003627 CHK(!il_is_associated_ctx(ctx));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003628 CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr));
3629 CHK(compare_ether_addr(staging->node_addr, active->node_addr));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003630 CHK(compare_ether_addr
3631 (staging->wlap_bssid_addr, active->wlap_bssid_addr));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003632 CHK_NEQ(staging->dev_type, active->dev_type);
3633 CHK_NEQ(staging->channel, active->channel);
3634 CHK_NEQ(staging->air_propagation, active->air_propagation);
3635 CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates,
3636 active->ofdm_ht_single_stream_basic_rates);
3637 CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates,
3638 active->ofdm_ht_dual_stream_basic_rates);
3639 CHK_NEQ(staging->assoc_id, active->assoc_id);
3640
3641 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
3642 * be updated with the RXON_ASSOC command -- however only some
3643 * flag transitions are allowed using RXON_ASSOC */
3644
3645 /* Check if we are not switching bands */
3646 CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK,
3647 active->flags & RXON_FLG_BAND_24G_MSK);
3648
3649 /* Check if we are switching association toggle */
3650 CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK,
3651 active->filter_flags & RXON_FILTER_ASSOC_MSK);
3652
3653#undef CHK
3654#undef CHK_NEQ
3655
3656 return 0;
3657}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003658EXPORT_SYMBOL(il_full_rxon_required);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003659
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003660u8
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003661il_get_lowest_plcp(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003662{
3663 /*
3664 * Assign the lowest rate -- should really get this from
3665 * the beacon skb from mac80211.
3666 */
3667 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003668 return RATE_1M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003669 else
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003670 return RATE_6M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003671}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003672EXPORT_SYMBOL(il_get_lowest_plcp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003673
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003674static void
3675_il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf,
3676 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003677{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003678 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003679
3680 if (!ctx->ht.enabled) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003681 rxon->flags &=
3682 ~(RXON_FLG_CHANNEL_MODE_MSK |
3683 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK | RXON_FLG_HT40_PROT_MSK
3684 | RXON_FLG_HT_PROT_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003685 return;
3686 }
3687
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003688 rxon->flags |=
3689 cpu_to_le32(ctx->ht.protection << RXON_FLG_HT_OPERATING_MODE_POS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003690
3691 /* Set up channel bandwidth:
3692 * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
3693 /* clear the HT channel mode before set the mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003694 rxon->flags &=
3695 ~(RXON_FLG_CHANNEL_MODE_MSK | RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003696 if (il_is_ht40_tx_allowed(il, ctx, NULL)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003697 /* pure ht40 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003698 if (ctx->ht.protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003699 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
3700 /* Note: control channel is opposite of extension channel */
3701 switch (ctx->ht.extension_chan_offset) {
3702 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
3703 rxon->flags &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003704 ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003705 break;
3706 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003707 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003708 break;
3709 }
3710 } else {
3711 /* Note: control channel is opposite of extension channel */
3712 switch (ctx->ht.extension_chan_offset) {
3713 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
3714 rxon->flags &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003715 ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003716 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
3717 break;
3718 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003719 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003720 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
3721 break;
3722 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
3723 default:
3724 /* channel location only valid if in Mixed mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003725 IL_ERR("invalid extension channel offset\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003726 break;
3727 }
3728 }
3729 } else {
3730 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
3731 }
3732
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003733 if (il->cfg->ops->hcmd->set_rxon_chain)
3734 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003735
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003736 D_ASSOC("rxon flags 0x%X operation mode :0x%X "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003737 "extension channel offset 0x%x\n", le32_to_cpu(rxon->flags),
3738 ctx->ht.protection, ctx->ht.extension_chan_offset);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003739}
3740
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003741void
3742il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003743{
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003744 _il_set_rxon_ht(il, ht_conf, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003745}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003746EXPORT_SYMBOL(il_set_rxon_ht);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003747
3748/* Return valid, unused, channel for a passive scan to reset the RF */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003749u8
3750il_get_single_channel_number(struct il_priv *il, enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003751{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003752 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003753 int i;
3754 u8 channel = 0;
3755 u8 min, max;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003756
3757 if (band == IEEE80211_BAND_5GHZ) {
3758 min = 14;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003759 max = il->channel_count;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003760 } else {
3761 min = 0;
3762 max = 14;
3763 }
3764
3765 for (i = min; i < max; i++) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003766 channel = il->channel_info[i].channel;
3767 if (channel == le16_to_cpu(il->ctx.staging.channel))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003768 continue;
3769
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003770 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003771 if (il_is_channel_valid(ch_info))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003772 break;
3773 }
3774
3775 return channel;
3776}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003777EXPORT_SYMBOL(il_get_single_channel_number);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003778
3779/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003780 * il_set_rxon_channel - Set the band and channel values in staging RXON
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003781 * @ch: requested channel as a pointer to struct ieee80211_channel
3782
3783 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
3784 * in the staging RXON flag structure based on the ch->band
3785 */
3786int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003787il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003788 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003789{
3790 enum ieee80211_band band = ch->band;
3791 u16 channel = ch->hw_value;
3792
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02003793 if (le16_to_cpu(ctx->staging.channel) == channel && il->band == band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003794 return 0;
3795
3796 ctx->staging.channel = cpu_to_le16(channel);
3797 if (band == IEEE80211_BAND_5GHZ)
3798 ctx->staging.flags &= ~RXON_FLG_BAND_24G_MSK;
3799 else
3800 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
3801
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003802 il->band = band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003803
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003804 D_INFO("Staging channel set to %d [%d]\n", channel, band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003805
3806 return 0;
3807}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003808EXPORT_SYMBOL(il_set_rxon_channel);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003809
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003810void
3811il_set_flags_for_band(struct il_priv *il, struct il_rxon_context *ctx,
3812 enum ieee80211_band band, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003813{
3814 if (band == IEEE80211_BAND_5GHZ) {
3815 ctx->staging.flags &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003816 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK |
3817 RXON_FLG_CCK_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003818 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
3819 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003820 /* Copied from il_post_associate() */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003821 if (vif && vif->bss_conf.use_short_slot)
3822 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
3823 else
3824 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
3825
3826 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
3827 ctx->staging.flags |= RXON_FLG_AUTO_DETECT_MSK;
3828 ctx->staging.flags &= ~RXON_FLG_CCK_MSK;
3829 }
3830}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003831EXPORT_SYMBOL(il_set_flags_for_band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003832
3833/*
3834 * initialize rxon structure with default values from eeprom
3835 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003836void
3837il_connection_init_rx_config(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003838{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003839 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003840
3841 memset(&ctx->staging, 0, sizeof(ctx->staging));
3842
3843 if (!ctx->vif) {
3844 ctx->staging.dev_type = ctx->unused_devtype;
3845 } else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003846 switch (ctx->vif->type) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003847
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003848 case NL80211_IFTYPE_STATION:
3849 ctx->staging.dev_type = ctx->station_devtype;
3850 ctx->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
3851 break;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003852
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003853 case NL80211_IFTYPE_ADHOC:
3854 ctx->staging.dev_type = ctx->ibss_devtype;
3855 ctx->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
3856 ctx->staging.filter_flags =
3857 RXON_FILTER_BCON_AWARE_MSK |
3858 RXON_FILTER_ACCEPT_GRP_MSK;
3859 break;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003860
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003861 default:
3862 IL_ERR("Unsupported interface type %d\n",
3863 ctx->vif->type);
3864 break;
3865 }
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003866
3867#if 0
3868 /* TODO: Figure out when short_preamble would be set and cache from
3869 * that */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003870 if (!hw_to_local(il->hw)->short_preamble)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003871 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
3872 else
3873 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
3874#endif
3875
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003876 ch_info =
3877 il_get_channel_info(il, il->band, le16_to_cpu(ctx->active.channel));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003878
3879 if (!ch_info)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003880 ch_info = &il->channel_info[0];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003881
3882 ctx->staging.channel = cpu_to_le16(ch_info->channel);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003883 il->band = ch_info->band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003884
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003885 il_set_flags_for_band(il, ctx, il->band, ctx->vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003886
3887 ctx->staging.ofdm_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003888 (IL_OFDM_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003889 ctx->staging.cck_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003890 (IL_CCK_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003891
3892 /* clear both MIX and PURE40 mode flag */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003893 ctx->staging.flags &=
3894 ~(RXON_FLG_CHANNEL_MODE_MIXED | RXON_FLG_CHANNEL_MODE_PURE_40);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003895 if (ctx->vif)
3896 memcpy(ctx->staging.node_addr, ctx->vif->addr, ETH_ALEN);
3897
3898 ctx->staging.ofdm_ht_single_stream_basic_rates = 0xff;
3899 ctx->staging.ofdm_ht_dual_stream_basic_rates = 0xff;
3900}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003901EXPORT_SYMBOL(il_connection_init_rx_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003902
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003903void
3904il_set_rate(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003905{
3906 const struct ieee80211_supported_band *hw = NULL;
3907 struct ieee80211_rate *rate;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003908 int i;
3909
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003910 hw = il_get_hw_mode(il, il->band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003911 if (!hw) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003912 IL_ERR("Failed to set rate: unable to get hw mode\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003913 return;
3914 }
3915
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003916 il->active_rate = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003917
3918 for (i = 0; i < hw->n_bitrates; i++) {
3919 rate = &(hw->bitrates[i]);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003920 if (rate->hw_value < RATE_COUNT_LEGACY)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003921 il->active_rate |= (1 << rate->hw_value);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003922 }
3923
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003924 D_RATE("Set active_rate = %0x\n", il->active_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003925
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003926 il->ctx.staging.cck_basic_rates =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003927 (IL_CCK_BASIC_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003928
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003929 il->ctx.staging.ofdm_basic_rates =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003930 (IL_OFDM_BASIC_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003931}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003932EXPORT_SYMBOL(il_set_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003933
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003934void
3935il_chswitch_done(struct il_priv *il, bool is_success)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003936{
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01003937 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003938
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003939 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003940 return;
3941
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003942 if (test_and_clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003943 ieee80211_chswitch_done(ctx->vif, is_success);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003944}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003945EXPORT_SYMBOL(il_chswitch_done);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003946
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003947void
3948il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003949{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003950 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003951 struct il_csa_notification *csa = &(pkt->u.csa_notif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003952
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01003953 struct il_rxon_context *ctx = &il->ctx;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003954 struct il_rxon_cmd *rxon = (void *)&ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003955
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003956 if (!test_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Stanislaw Gruszka51e65252011-06-08 15:26:31 +02003957 return;
3958
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003959 if (!le32_to_cpu(csa->status) && csa->channel == il->switch_channel) {
Stanislaw Gruszka51e65252011-06-08 15:26:31 +02003960 rxon->channel = csa->channel;
3961 ctx->staging.channel = csa->channel;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003962 D_11H("CSA notif: channel %d\n", le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003963 il_chswitch_done(il, true);
Stanislaw Gruszka51e65252011-06-08 15:26:31 +02003964 } else {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003965 IL_ERR("CSA notif (fail) : channel %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003966 le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003967 il_chswitch_done(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003968 }
3969}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003970EXPORT_SYMBOL(il_hdl_csa);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003971
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01003972#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003973void
3974il_print_rx_config_cmd(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003975{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003976 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003977
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003978 D_RADIO("RX CONFIG:\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003979 il_print_hex_dump(il, IL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003980 D_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003981 D_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003982 D_RADIO("u32 filter_flags: 0x%08x\n", le32_to_cpu(rxon->filter_flags));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003983 D_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003984 D_RADIO("u8 ofdm_basic_rates: 0x%02x\n", rxon->ofdm_basic_rates);
3985 D_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003986 D_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3987 D_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003988 D_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003989}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003990EXPORT_SYMBOL(il_print_rx_config_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003991#endif
3992/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003993 * il_irq_handle_error - called for HW or SW error interrupt from card
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003994 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003995void
3996il_irq_handle_error(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003997{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003998 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003999 set_bit(S_FW_ERROR, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004000
4001 /* Cancel currently queued command. */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004002 clear_bit(S_HCMD_ACTIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004003
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004004 IL_ERR("Loaded firmware version: %s\n", il->hw->wiphy->fw_version);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004005
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004006 il->cfg->ops->lib->dump_nic_error_log(il);
4007 if (il->cfg->ops->lib->dump_fh)
4008 il->cfg->ops->lib->dump_fh(il, NULL, false);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004009#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004010 if (il_get_debug_level(il) & IL_DL_FW_ERRORS)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004011 il_print_rx_config_cmd(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004012#endif
4013
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004014 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004015
4016 /* Keep the restart process from trying to send host
4017 * commands by clearing the INIT status bit */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004018 clear_bit(S_READY, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004019
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004020 if (!test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004021 IL_DBG(IL_DL_FW_ERRORS,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004022 "Restarting adapter due to uCode error.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004023
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004024 if (il->cfg->mod_params->restart_fw)
4025 queue_work(il->workqueue, &il->restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004026 }
4027}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004028EXPORT_SYMBOL(il_irq_handle_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004029
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004030static int
4031il_apm_stop_master(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004032{
4033 int ret = 0;
4034
4035 /* stop device's busmaster DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004036 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004037
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004038 ret =
4039 _il_poll_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_MASTER_DISABLED,
4040 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004041 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004042 IL_WARN("Master Disable Timed Out, 100 usec\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004043
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004044 D_INFO("stop master\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004045
4046 return ret;
4047}
4048
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004049void
4050il_apm_stop(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004051{
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004052 D_INFO("Stop card, put in low power state\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004053
4054 /* Stop device's DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004055 il_apm_stop_master(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004056
4057 /* Reset the entire device */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004058 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004059
4060 udelay(10);
4061
4062 /*
4063 * Clear "initialization complete" bit to move adapter from
4064 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
4065 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004066 il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004067}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004068EXPORT_SYMBOL(il_apm_stop);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004069
4070/*
4071 * Start up NIC's basic functionality after it has been reset
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004072 * (e.g. after platform boot, or shutdown via il_apm_stop())
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004073 * NOTE: This does not load uCode nor start the embedded processor
4074 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004075int
4076il_apm_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004077{
4078 int ret = 0;
4079 u16 lctl;
4080
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004081 D_INFO("Init card's basic functions\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004082
4083 /*
4084 * Use "set_bit" below rather than "write", to preserve any hardware
4085 * bits already set by default after reset.
4086 */
4087
4088 /* Disable L0S exit timer (platform NMI Work/Around) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004089 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004090 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004091
4092 /*
4093 * Disable L0s without affecting L1;
4094 * don't wait for ICH L0s (ICH bug W/A)
4095 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004096 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004097 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004098
4099 /* Set FH wait threshold to maximum (HW error during stress W/A) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004100 il_set_bit(il, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004101
4102 /*
4103 * Enable HAP INTA (interrupt from management bus) to
4104 * wake device's PCI Express link L1a -> L0s
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004105 * NOTE: This is no-op for 3945 (non-existent bit)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004106 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004107 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004108 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004109
4110 /*
4111 * HW bug W/A for instability in PCIe bus L0->L0S->L1 transition.
4112 * Check if BIOS (or OS) enabled L1-ASPM on this device.
4113 * If so (likely), disable L0S, so device moves directly L0->L1;
4114 * costs negligible amount of power savings.
4115 * If not (unlikely), enable L0S, so there is at least some
4116 * power savings, even without L1.
4117 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004118 if (il->cfg->base_params->set_l0s) {
4119 lctl = il_pcie_link_ctl(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004120 if ((lctl & PCI_CFG_LINK_CTRL_VAL_L1_EN) ==
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004121 PCI_CFG_LINK_CTRL_VAL_L1_EN) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004122 /* L1-ASPM enabled; disable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004123 il_set_bit(il, CSR_GIO_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004124 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004125 D_POWER("L1 Enabled; Disabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004126 } else {
4127 /* L1-ASPM disabled; enable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004128 il_clear_bit(il, CSR_GIO_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004129 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004130 D_POWER("L1 Disabled; Enabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004131 }
4132 }
4133
4134 /* Configure analog phase-lock-loop before activating to D0A */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004135 if (il->cfg->base_params->pll_cfg_val)
4136 il_set_bit(il, CSR_ANA_PLL_CFG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004137 il->cfg->base_params->pll_cfg_val);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004138
4139 /*
4140 * Set "initialization complete" bit to move adapter from
4141 * D0U* --> D0A* (powered-up active) state.
4142 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004143 il_set_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004144
4145 /*
4146 * Wait for clock stabilization; once stabilized, access to
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02004147 * device-internal resources is supported, e.g. il_wr_prph()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004148 * and accesses to uCode SRAM.
4149 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004150 ret =
4151 _il_poll_bit(il, CSR_GP_CNTRL,
4152 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
4153 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004154 if (ret < 0) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004155 D_INFO("Failed to init the card\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004156 goto out;
4157 }
4158
4159 /*
4160 * Enable DMA and BSM (if used) clocks, wait for them to stabilize.
4161 * BSM (Boostrap State Machine) is only in 3945 and 4965.
4162 *
4163 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits
4164 * do not disable clocks. This preserves any hardware bits already
4165 * set by default in "CLK_CTRL_REG" after reset.
4166 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004167 if (il->cfg->base_params->use_bsm)
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02004168 il_wr_prph(il, APMG_CLK_EN_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004169 APMG_CLK_VAL_DMA_CLK_RQT | APMG_CLK_VAL_BSM_CLK_RQT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004170 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004171 il_wr_prph(il, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004172 udelay(20);
4173
4174 /* Disable L1-Active */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004175 il_set_bits_prph(il, APMG_PCIDEV_STT_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004176 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004177
4178out:
4179 return ret;
4180}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004181EXPORT_SYMBOL(il_apm_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004182
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004183int
4184il_set_tx_power(struct il_priv *il, s8 tx_power, bool force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004185{
4186 int ret;
4187 s8 prev_tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004188 bool defer;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01004189 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004190
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004191 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004192
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004193 if (il->tx_power_user_lmt == tx_power && !force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004194 return 0;
4195
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004196 if (!il->cfg->ops->lib->send_tx_power)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004197 return -EOPNOTSUPP;
4198
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02004199 /* 0 dBm mean 1 milliwatt */
4200 if (tx_power < 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004201 IL_WARN("Requested user TXPOWER %d below 1 mW.\n", tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004202 return -EINVAL;
4203 }
4204
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004205 if (tx_power > il->tx_power_device_lmt) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004206 IL_WARN("Requested user TXPOWER %d above upper limit %d.\n",
4207 tx_power, il->tx_power_device_lmt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004208 return -EINVAL;
4209 }
4210
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004211 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004212 return -EIO;
4213
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004214 /* scan complete and commit_rxon use tx_power_next value,
4215 * it always need to be updated for newest request */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004216 il->tx_power_next = tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004217
4218 /* do not set tx power when scanning or channel changing */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004219 defer = test_bit(S_SCANNING, &il->status) ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004220 memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging));
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004221 if (defer && !force) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004222 D_INFO("Deferring tx power set\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004223 return 0;
4224 }
4225
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004226 prev_tx_power = il->tx_power_user_lmt;
4227 il->tx_power_user_lmt = tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004228
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004229 ret = il->cfg->ops->lib->send_tx_power(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004230
4231 /* if fail to set tx_power, restore the orig. tx power */
4232 if (ret) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004233 il->tx_power_user_lmt = prev_tx_power;
4234 il->tx_power_next = prev_tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004235 }
4236 return ret;
4237}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004238EXPORT_SYMBOL(il_set_tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004239
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004240void
4241il_send_bt_config(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004242{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004243 struct il_bt_cmd bt_cmd = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004244 .lead_time = BT_LEAD_TIME_DEF,
4245 .max_kill = BT_MAX_KILL_DEF,
4246 .kill_ack_mask = 0,
4247 .kill_cts_mask = 0,
4248 };
4249
4250 if (!bt_coex_active)
4251 bt_cmd.flags = BT_COEX_DISABLE;
4252 else
4253 bt_cmd.flags = BT_COEX_ENABLE;
4254
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004255 D_INFO("BT coex %s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004256 (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004257
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004258 if (il_send_cmd_pdu(il, C_BT_CONFIG, sizeof(struct il_bt_cmd), &bt_cmd))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004259 IL_ERR("failed to send BT Coex Config\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004260}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004261EXPORT_SYMBOL(il_send_bt_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004262
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004263int
4264il_send_stats_request(struct il_priv *il, u8 flags, bool clear)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004265{
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02004266 struct il_stats_cmd stats_cmd = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004267 .configuration_flags = clear ? IL_STATS_CONF_CLEAR_STATS : 0,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004268 };
4269
4270 if (flags & CMD_ASYNC)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004271 return il_send_cmd_pdu_async(il, C_STATS, sizeof(struct il_stats_cmd),
4272 &stats_cmd, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004273 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004274 return il_send_cmd_pdu(il, C_STATS, sizeof(struct il_stats_cmd),
4275 &stats_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004276}
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02004277EXPORT_SYMBOL(il_send_stats_request);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004278
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004279void
4280il_hdl_pm_sleep(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004281{
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004282#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02004283 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004284 struct il_sleep_notification *sleep = &(pkt->u.sleep_notif);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004285 D_RX("sleep mode: %d, src: %d\n",
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01004286 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004287#endif
4288}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01004289EXPORT_SYMBOL(il_hdl_pm_sleep);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004290
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004291void
4292il_hdl_pm_debug_stats(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004293{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02004294 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02004295 u32 len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004296 D_RADIO("Dumping %d bytes of unhandled notification for %s:\n", len,
4297 il_get_cmd_string(pkt->hdr.cmd));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004298 il_print_hex_dump(il, IL_DL_RADIO, pkt->u.raw, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004299}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01004300EXPORT_SYMBOL(il_hdl_pm_debug_stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004301
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004302void
4303il_hdl_error(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004304{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02004305 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004306
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004307 IL_ERR("Error Reply type 0x%08X cmd %s (0x%02X) "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004308 "seq 0x%04X ser 0x%08X\n",
4309 le32_to_cpu(pkt->u.err_resp.error_type),
4310 il_get_cmd_string(pkt->u.err_resp.cmd_id),
4311 pkt->u.err_resp.cmd_id,
4312 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
4313 le32_to_cpu(pkt->u.err_resp.error_info));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004314}
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02004315EXPORT_SYMBOL(il_hdl_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004316
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004317void
4318il_clear_isr_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004319{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004320 memset(&il->isr_stats, 0, sizeof(il->isr_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004321}
4322
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004323int
4324il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue,
4325 const struct ieee80211_tx_queue_params *params)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004326{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004327 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004328 unsigned long flags;
4329 int q;
4330
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004331 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004332
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004333 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004334 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004335 return -EIO;
4336 }
4337
4338 if (queue >= AC_NUM) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004339 D_MAC80211("leave - queue >= AC_NUM %d\n", queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004340 return 0;
4341 }
4342
4343 q = AC_NUM - 1 - queue;
4344
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004345 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004346
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004347 il->ctx.qos_data.def_qos_parm.ac[q].cw_min =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004348 cpu_to_le16(params->cw_min);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004349 il->ctx.qos_data.def_qos_parm.ac[q].cw_max =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004350 cpu_to_le16(params->cw_max);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004351 il->ctx.qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
4352 il->ctx.qos_data.def_qos_parm.ac[q].edca_txop =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004353 cpu_to_le16((params->txop * 32));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004354
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004355 il->ctx.qos_data.def_qos_parm.ac[q].reserved1 = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004356
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004357 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004358
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004359 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004360 return 0;
4361}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004362EXPORT_SYMBOL(il_mac_conf_tx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004363
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004364int
4365il_mac_tx_last_beacon(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004366{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004367 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004368
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004369 return il->ibss_manager == IL_IBSS_MANAGER;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004370}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004371EXPORT_SYMBOL_GPL(il_mac_tx_last_beacon);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004372
4373static int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004374il_set_mode(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004375{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004376 il_connection_init_rx_config(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004377
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004378 if (il->cfg->ops->hcmd->set_rxon_chain)
4379 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004380
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004381 return il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004382}
4383
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004384static int
4385il_setup_interface(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004386{
4387 struct ieee80211_vif *vif = ctx->vif;
4388 int err;
4389
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004390 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004391
4392 /*
4393 * This variable will be correct only when there's just
4394 * a single context, but all code using it is for hardware
4395 * that supports only one context.
4396 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004397 il->iw_mode = vif->type;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004398
4399 ctx->is_active = true;
4400
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004401 err = il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004402 if (err) {
4403 if (!ctx->always_active)
4404 ctx->is_active = false;
4405 return err;
4406 }
4407
4408 return 0;
4409}
4410
4411int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004412il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004413{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004414 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004415 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004416 int err;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004417 u32 modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004418
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004419 D_MAC80211("enter: type %d, addr %pM\n", vif->type, vif->addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004420
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004421 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004422
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004423 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004424 IL_WARN("Try to add interface when device not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004425 err = -EINVAL;
4426 goto out;
4427 }
4428
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004429 /* check if busy context is exclusive */
4430 if (il->ctx.vif &&
4431 (il->ctx.exclusive_interface_modes & BIT(il->ctx.vif->type))) {
4432 err = -EINVAL;
4433 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004434 }
4435
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004436 modes = il->ctx.interface_modes | il->ctx.exclusive_interface_modes;
4437 if (!(modes & BIT(vif->type))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004438 err = -EOPNOTSUPP;
4439 goto out;
4440 }
4441
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004442 vif_priv->ctx = &il->ctx;
4443 il->ctx.vif = vif;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004444
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004445 err = il_setup_interface(il, &il->ctx);
4446 if (err) {
4447 il->ctx.vif = NULL;
4448 il->iw_mode = NL80211_IFTYPE_STATION;
4449 }
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004450
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004451out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004452 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004453
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004454 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004455 return err;
4456}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004457EXPORT_SYMBOL(il_mac_add_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004458
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004459static void
4460il_teardown_interface(struct il_priv *il, struct ieee80211_vif *vif,
4461 bool mode_change)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004462{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004463 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004464
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004465 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004466
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004467 if (il->scan_vif == vif) {
4468 il_scan_cancel_timeout(il, 200);
4469 il_force_scan_end(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004470 }
4471
4472 if (!mode_change) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004473 il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004474 if (!ctx->always_active)
4475 ctx->is_active = false;
4476 }
4477}
4478
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004479void
4480il_mac_remove_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004481{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004482 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004483 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004484
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004485 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004486
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004487 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004488
4489 WARN_ON(ctx->vif != vif);
4490 ctx->vif = NULL;
4491
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004492 il_teardown_interface(il, vif, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004493
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004494 memset(il->bssid, 0, ETH_ALEN);
4495 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004496
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004497 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004498
4499}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004500EXPORT_SYMBOL(il_mac_remove_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004501
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004502int
4503il_alloc_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004504{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004505 if (!il->txq)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004506 il->txq =
4507 kzalloc(sizeof(struct il_tx_queue) *
4508 il->cfg->base_params->num_of_queues, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004509 if (!il->txq) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004510 IL_ERR("Not enough memory for txq\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004511 return -ENOMEM;
4512 }
4513 return 0;
4514}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004515EXPORT_SYMBOL(il_alloc_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004516
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004517void
4518il_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004519{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004520 kfree(il->txq);
4521 il->txq = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004522}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004523EXPORT_SYMBOL(il_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004524
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004525#ifdef CONFIG_IWLEGACY_DEBUGFS
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004526
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004527#define IL_TRAFFIC_DUMP_SIZE (IL_TRAFFIC_ENTRY_SIZE * IL_TRAFFIC_ENTRIES)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004528
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004529void
4530il_reset_traffic_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004531{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004532 il->tx_traffic_idx = 0;
4533 il->rx_traffic_idx = 0;
4534 if (il->tx_traffic)
4535 memset(il->tx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
4536 if (il->rx_traffic)
4537 memset(il->rx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004538}
4539
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004540int
4541il_alloc_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004542{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004543 u32 traffic_size = IL_TRAFFIC_DUMP_SIZE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004544
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004545 if (il_debug_level & IL_DL_TX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004546 if (!il->tx_traffic) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004547 il->tx_traffic = kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004548 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004549 return -ENOMEM;
4550 }
4551 }
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004552 if (il_debug_level & IL_DL_RX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004553 if (!il->rx_traffic) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004554 il->rx_traffic = kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004555 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004556 return -ENOMEM;
4557 }
4558 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004559 il_reset_traffic_log(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004560 return 0;
4561}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004562EXPORT_SYMBOL(il_alloc_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004563
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004564void
4565il_free_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004566{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004567 kfree(il->tx_traffic);
4568 il->tx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004569
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004570 kfree(il->rx_traffic);
4571 il->rx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004572}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004573EXPORT_SYMBOL(il_free_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004574
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004575void
4576il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
4577 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004578{
4579 __le16 fc;
4580 u16 len;
4581
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004582 if (likely(!(il_debug_level & IL_DL_TX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004583 return;
4584
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004585 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004586 return;
4587
4588 fc = header->frame_control;
4589 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004590 len =
4591 (length >
4592 IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004593 memcpy((il->tx_traffic +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004594 (il->tx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header,
4595 len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004596 il->tx_traffic_idx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004597 (il->tx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004598 }
4599}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004600EXPORT_SYMBOL(il_dbg_log_tx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004601
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004602void
4603il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
4604 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004605{
4606 __le16 fc;
4607 u16 len;
4608
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004609 if (likely(!(il_debug_level & IL_DL_RX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004610 return;
4611
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004612 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004613 return;
4614
4615 fc = header->frame_control;
4616 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004617 len =
4618 (length >
4619 IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004620 memcpy((il->rx_traffic +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004621 (il->rx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header,
4622 len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004623 il->rx_traffic_idx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004624 (il->rx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004625 }
4626}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004627EXPORT_SYMBOL(il_dbg_log_rx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004628
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004629const char *
4630il_get_mgmt_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004631{
4632 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004633 IL_CMD(MANAGEMENT_ASSOC_REQ);
4634 IL_CMD(MANAGEMENT_ASSOC_RESP);
4635 IL_CMD(MANAGEMENT_REASSOC_REQ);
4636 IL_CMD(MANAGEMENT_REASSOC_RESP);
4637 IL_CMD(MANAGEMENT_PROBE_REQ);
4638 IL_CMD(MANAGEMENT_PROBE_RESP);
4639 IL_CMD(MANAGEMENT_BEACON);
4640 IL_CMD(MANAGEMENT_ATIM);
4641 IL_CMD(MANAGEMENT_DISASSOC);
4642 IL_CMD(MANAGEMENT_AUTH);
4643 IL_CMD(MANAGEMENT_DEAUTH);
4644 IL_CMD(MANAGEMENT_ACTION);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004645 default:
4646 return "UNKNOWN";
4647
4648 }
4649}
4650
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004651const char *
4652il_get_ctrl_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004653{
4654 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004655 IL_CMD(CONTROL_BACK_REQ);
4656 IL_CMD(CONTROL_BACK);
4657 IL_CMD(CONTROL_PSPOLL);
4658 IL_CMD(CONTROL_RTS);
4659 IL_CMD(CONTROL_CTS);
4660 IL_CMD(CONTROL_ACK);
4661 IL_CMD(CONTROL_CFEND);
4662 IL_CMD(CONTROL_CFENDACK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004663 default:
4664 return "UNKNOWN";
4665
4666 }
4667}
4668
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004669void
4670il_clear_traffic_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004671{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004672 memset(&il->tx_stats, 0, sizeof(struct traffic_stats));
4673 memset(&il->rx_stats, 0, sizeof(struct traffic_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004674}
4675
4676/*
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004677 * if CONFIG_IWLEGACY_DEBUGFS defined,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004678 * il_update_stats function will
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004679 * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02004680 * Use debugFs to display the rx/rx_stats
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004681 * if CONFIG_IWLEGACY_DEBUGFS not being defined, then no MGMT and CTRL
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004682 * information will be recorded, but DATA pkt still will be recorded
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004683 * for the reason of il_led.c need to control the led blinking based on
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004684 * number of tx and rx data.
4685 *
4686 */
4687void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004688il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004689{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004690 struct traffic_stats *stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004691
4692 if (is_tx)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004693 stats = &il->tx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004694 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004695 stats = &il->rx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004696
4697 if (ieee80211_is_mgmt(fc)) {
4698 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
4699 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
4700 stats->mgmt[MANAGEMENT_ASSOC_REQ]++;
4701 break;
4702 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
4703 stats->mgmt[MANAGEMENT_ASSOC_RESP]++;
4704 break;
4705 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
4706 stats->mgmt[MANAGEMENT_REASSOC_REQ]++;
4707 break;
4708 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
4709 stats->mgmt[MANAGEMENT_REASSOC_RESP]++;
4710 break;
4711 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
4712 stats->mgmt[MANAGEMENT_PROBE_REQ]++;
4713 break;
4714 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
4715 stats->mgmt[MANAGEMENT_PROBE_RESP]++;
4716 break;
4717 case cpu_to_le16(IEEE80211_STYPE_BEACON):
4718 stats->mgmt[MANAGEMENT_BEACON]++;
4719 break;
4720 case cpu_to_le16(IEEE80211_STYPE_ATIM):
4721 stats->mgmt[MANAGEMENT_ATIM]++;
4722 break;
4723 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
4724 stats->mgmt[MANAGEMENT_DISASSOC]++;
4725 break;
4726 case cpu_to_le16(IEEE80211_STYPE_AUTH):
4727 stats->mgmt[MANAGEMENT_AUTH]++;
4728 break;
4729 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
4730 stats->mgmt[MANAGEMENT_DEAUTH]++;
4731 break;
4732 case cpu_to_le16(IEEE80211_STYPE_ACTION):
4733 stats->mgmt[MANAGEMENT_ACTION]++;
4734 break;
4735 }
4736 } else if (ieee80211_is_ctl(fc)) {
4737 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
4738 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ):
4739 stats->ctrl[CONTROL_BACK_REQ]++;
4740 break;
4741 case cpu_to_le16(IEEE80211_STYPE_BACK):
4742 stats->ctrl[CONTROL_BACK]++;
4743 break;
4744 case cpu_to_le16(IEEE80211_STYPE_PSPOLL):
4745 stats->ctrl[CONTROL_PSPOLL]++;
4746 break;
4747 case cpu_to_le16(IEEE80211_STYPE_RTS):
4748 stats->ctrl[CONTROL_RTS]++;
4749 break;
4750 case cpu_to_le16(IEEE80211_STYPE_CTS):
4751 stats->ctrl[CONTROL_CTS]++;
4752 break;
4753 case cpu_to_le16(IEEE80211_STYPE_ACK):
4754 stats->ctrl[CONTROL_ACK]++;
4755 break;
4756 case cpu_to_le16(IEEE80211_STYPE_CFEND):
4757 stats->ctrl[CONTROL_CFEND]++;
4758 break;
4759 case cpu_to_le16(IEEE80211_STYPE_CFENDACK):
4760 stats->ctrl[CONTROL_CFENDACK]++;
4761 break;
4762 }
4763 } else {
4764 /* data */
4765 stats->data_cnt++;
4766 stats->data_bytes += len;
4767 }
4768}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004769EXPORT_SYMBOL(il_update_stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004770#endif
4771
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004772int
4773il_force_reset(struct il_priv *il, bool external)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004774{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004775 struct il_force_reset *force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004776
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004777 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004778 return -EINVAL;
4779
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004780 force_reset = &il->force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004781 force_reset->reset_request_count++;
4782 if (!external) {
4783 if (force_reset->last_force_reset_jiffies &&
4784 time_after(force_reset->last_force_reset_jiffies +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004785 force_reset->reset_duration, jiffies)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004786 D_INFO("force reset rejected\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004787 force_reset->reset_reject_count++;
4788 return -EAGAIN;
4789 }
4790 }
4791 force_reset->reset_success_count++;
4792 force_reset->last_force_reset_jiffies = jiffies;
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004793
4794 /*
4795 * if the request is from external(ex: debugfs),
4796 * then always perform the request in regardless the module
4797 * parameter setting
4798 * if the request is from internal (uCode error or driver
4799 * detect failure), then fw_restart module parameter
4800 * need to be check before performing firmware reload
4801 */
4802
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004803 if (!external && !il->cfg->mod_params->restart_fw) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004804 D_INFO("Cancel firmware reload based on "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004805 "module parameter setting\n");
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004806 return 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004807 }
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004808
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004809 IL_ERR("On demand firmware reload\n");
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004810
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004811 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004812 set_bit(S_FW_ERROR, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004813 wake_up(&il->wait_command_queue);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004814 /*
4815 * Keep the restart process from trying to send host
4816 * commands by clearing the INIT status bit
4817 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004818 clear_bit(S_READY, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004819 queue_work(il->workqueue, &il->restart);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004820
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004821 return 0;
4822}
4823
4824int
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004825il_mac_change_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004826 enum nl80211_iftype newtype, bool newp2p)
4827{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004828 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004829 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004830 u32 modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004831 int err;
4832
4833 newtype = ieee80211_iftype_p2p(newtype, newp2p);
4834
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004835 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004836
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004837 if (!ctx->vif || !il_is_ready_rf(il)) {
Johannes Bergffd8c742011-03-29 15:28:11 +02004838 /*
4839 * Huh? But wait ... this can maybe happen when
4840 * we're in the middle of a firmware restart!
4841 */
4842 err = -EBUSY;
4843 goto out;
4844 }
4845
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004846 modes = ctx->interface_modes | ctx->exclusive_interface_modes;
4847 if (!(modes & BIT(newtype))) {
4848 err = -EOPNOTSUPP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004849 goto out;
4850 }
4851
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004852 if ((il->ctx.exclusive_interface_modes & BIT(il->ctx.vif->type)) ||
4853 (il->ctx.exclusive_interface_modes & BIT(newtype))) {
4854 err = -EINVAL;
4855 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004856 }
4857
4858 /* success */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004859 il_teardown_interface(il, vif, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004860 vif->type = newtype;
Johannes Bergffd8c742011-03-29 15:28:11 +02004861 vif->p2p = newp2p;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004862 err = il_setup_interface(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004863 WARN_ON(err);
4864 /*
4865 * We've switched internally, but submitting to the
4866 * device may have failed for some reason. Mask this
4867 * error, because otherwise mac80211 will not switch
4868 * (and set the interface type back) and we'll be
4869 * out of sync with it.
4870 */
4871 err = 0;
4872
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004873out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004874 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004875 return err;
4876}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004877EXPORT_SYMBOL(il_mac_change_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004878
4879/*
4880 * On every watchdog tick we check (latest) time stamp. If it does not
4881 * change during timeout period and queue is not empty we reset firmware.
4882 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004883static int
4884il_check_stuck_queue(struct il_priv *il, int cnt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004885{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004886 struct il_tx_queue *txq = &il->txq[cnt];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004887 struct il_queue *q = &txq->q;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004888 unsigned long timeout;
4889 int ret;
4890
4891 if (q->read_ptr == q->write_ptr) {
4892 txq->time_stamp = jiffies;
4893 return 0;
4894 }
4895
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004896 timeout =
4897 txq->time_stamp +
4898 msecs_to_jiffies(il->cfg->base_params->wd_timeout);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004899
4900 if (time_after(jiffies, timeout)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004901 IL_ERR("Queue %d stuck for %u ms.\n", q->id,
4902 il->cfg->base_params->wd_timeout);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004903 ret = il_force_reset(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004904 return (ret == -EAGAIN) ? 0 : 1;
4905 }
4906
4907 return 0;
4908}
4909
4910/*
4911 * Making watchdog tick be a quarter of timeout assure we will
4912 * discover the queue hung between timeout and 1.25*timeout
4913 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004914#define IL_WD_TICK(timeout) ((timeout) / 4)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004915
4916/*
4917 * Watchdog timer callback, we check each tx queue for stuck, if if hung
4918 * we reset the firmware. If everything is fine just rearm the timer.
4919 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004920void
4921il_bg_watchdog(unsigned long data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004922{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004923 struct il_priv *il = (struct il_priv *)data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004924 int cnt;
4925 unsigned long timeout;
4926
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004927 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004928 return;
4929
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004930 timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004931 if (timeout == 0)
4932 return;
4933
4934 /* monitor and check for stuck cmd queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004935 if (il_check_stuck_queue(il, il->cmd_queue))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004936 return;
4937
4938 /* monitor and check for other stuck queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004939 if (il_is_any_associated(il)) {
4940 for (cnt = 0; cnt < il->hw_params.max_txq_num; cnt++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004941 /* skip as we already checked the command queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004942 if (cnt == il->cmd_queue)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004943 continue;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004944 if (il_check_stuck_queue(il, cnt))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004945 return;
4946 }
4947 }
4948
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004949 mod_timer(&il->watchdog,
4950 jiffies + msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004951}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004952EXPORT_SYMBOL(il_bg_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004953
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004954void
4955il_setup_watchdog(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004956{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004957 unsigned int timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004958
4959 if (timeout)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004960 mod_timer(&il->watchdog,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004961 jiffies + msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004962 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004963 del_timer(&il->watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004964}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004965EXPORT_SYMBOL(il_setup_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004966
4967/*
4968 * extended beacon time format
4969 * time in usec will be changed into a 32-bit value in extended:internal format
4970 * the extended part is the beacon counts
4971 * the internal part is the time in usec within one beacon interval
4972 */
4973u32
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004974il_usecs_to_beacons(struct il_priv *il, u32 usec, u32 beacon_interval)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004975{
4976 u32 quot;
4977 u32 rem;
4978 u32 interval = beacon_interval * TIME_UNIT;
4979
4980 if (!interval || !usec)
4981 return 0;
4982
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004983 quot =
4984 (usec /
4985 interval) & (il_beacon_time_mask_high(il,
4986 il->hw_params.
4987 beacon_time_tsf_bits) >> il->
4988 hw_params.beacon_time_tsf_bits);
4989 rem =
4990 (usec % interval) & il_beacon_time_mask_low(il,
4991 il->hw_params.
4992 beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004993
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004994 return (quot << il->hw_params.beacon_time_tsf_bits) + rem;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004995}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004996EXPORT_SYMBOL(il_usecs_to_beacons);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004997
4998/* base is usually what we get from ucode with each received frame,
4999 * the same as HW timer counter counting down
5000 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005001__le32
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01005002il_add_beacon_time(struct il_priv *il, u32 base, u32 addon,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005003 u32 beacon_interval)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005004{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005005 u32 base_low = base & il_beacon_time_mask_low(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005006 il->hw_params.
5007 beacon_time_tsf_bits);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005008 u32 addon_low = addon & il_beacon_time_mask_low(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005009 il->hw_params.
5010 beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005011 u32 interval = beacon_interval * TIME_UNIT;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005012 u32 res = (base & il_beacon_time_mask_high(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005013 il->hw_params.
5014 beacon_time_tsf_bits)) +
5015 (addon & il_beacon_time_mask_high(il,
5016 il->hw_params.
5017 beacon_time_tsf_bits));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005018
5019 if (base_low > addon_low)
5020 res += base_low - addon_low;
5021 else if (base_low < addon_low) {
5022 res += interval + base_low - addon_low;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005023 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005024 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005025 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005026
5027 return cpu_to_le32(res);
5028}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005029EXPORT_SYMBOL(il_add_beacon_time);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005030
5031#ifdef CONFIG_PM
5032
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005033int
5034il_pci_suspend(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005035{
5036 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005037 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005038
5039 /*
5040 * This function is called when system goes into suspend state
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005041 * mac80211 will call il_mac_stop() from the mac80211 suspend function
5042 * first but since il_mac_stop() has no knowledge of who the caller is,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005043 * it will not call apm_ops.stop() to stop the DMA operation.
5044 * Calling apm_ops.stop here to make sure we stop the DMA.
5045 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005046 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005047
5048 return 0;
5049}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005050EXPORT_SYMBOL(il_pci_suspend);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005051
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005052int
5053il_pci_resume(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005054{
5055 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005056 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005057 bool hw_rfkill = false;
5058
5059 /*
5060 * We disable the RETRY_TIMEOUT register (0x41) to keep
5061 * PCI Tx retries from interfering with C3 CPU state.
5062 */
5063 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
5064
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005065 il_enable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005066
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005067 if (!(_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005068 hw_rfkill = true;
5069
5070 if (hw_rfkill)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005071 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005072 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005073 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005074
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005075 wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rfkill);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005076
5077 return 0;
5078}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005079EXPORT_SYMBOL(il_pci_resume);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005080
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005081const struct dev_pm_ops il_pm_ops = {
5082 .suspend = il_pci_suspend,
5083 .resume = il_pci_resume,
5084 .freeze = il_pci_suspend,
5085 .thaw = il_pci_resume,
5086 .poweroff = il_pci_suspend,
5087 .restore = il_pci_resume,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005088};
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005089EXPORT_SYMBOL(il_pm_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005090
5091#endif /* CONFIG_PM */
5092
5093static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005094il_update_qos(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005095{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005096 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005097 return;
5098
5099 if (!ctx->is_active)
5100 return;
5101
5102 ctx->qos_data.def_qos_parm.qos_flags = 0;
5103
5104 if (ctx->qos_data.qos_active)
5105 ctx->qos_data.def_qos_parm.qos_flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005106 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005107
5108 if (ctx->ht.enabled)
5109 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
5110
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005111 D_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005112 ctx->qos_data.qos_active, ctx->qos_data.def_qos_parm.qos_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005113
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005114 il_send_cmd_pdu_async(il, ctx->qos_cmd, sizeof(struct il_qosparam_cmd),
5115 &ctx->qos_data.def_qos_parm, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005116}
5117
5118/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005119 * il_mac_config - mac80211 config callback
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005120 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005121int
5122il_mac_config(struct ieee80211_hw *hw, u32 changed)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005123{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005124 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005125 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005126 struct ieee80211_conf *conf = &hw->conf;
5127 struct ieee80211_channel *channel = conf->channel;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005128 struct il_ht_config *ht_conf = &il->current_ht_config;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005129 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005130 unsigned long flags = 0;
5131 int ret = 0;
5132 u16 ch;
5133 int scan_active = 0;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005134 bool ht_changed = false;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005135
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005136 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005137 return -EOPNOTSUPP;
5138
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005139 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005140
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005141 D_MAC80211("enter to channel %d changed 0x%X\n", channel->hw_value,
5142 changed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005143
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005144 if (unlikely(test_bit(S_SCANNING, &il->status))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005145 scan_active = 1;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005146 D_MAC80211("scan active\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005147 }
5148
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005149 if (changed &
5150 (IEEE80211_CONF_CHANGE_SMPS | IEEE80211_CONF_CHANGE_CHANNEL)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005151 /* mac80211 uses static for non-HT which is what we want */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005152 il->current_ht_config.smps = conf->smps_mode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005153
5154 /*
5155 * Recalculate chain counts.
5156 *
5157 * If monitor mode is enabled then mac80211 will
5158 * set up the SM PS mode to OFF if an HT channel is
5159 * configured.
5160 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005161 if (il->cfg->ops->hcmd->set_rxon_chain)
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005162 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005163 }
5164
5165 /* during scanning mac80211 will delay channel setting until
5166 * scan finish with changed = 0
5167 */
5168 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005169
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005170 if (scan_active)
5171 goto set_ch_out;
5172
5173 ch = channel->hw_value;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005174 ch_info = il_get_channel_info(il, channel->band, ch);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005175 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005176 D_MAC80211("leave - invalid channel\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005177 ret = -EINVAL;
5178 goto set_ch_out;
5179 }
5180
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005181 if (il->iw_mode == NL80211_IFTYPE_ADHOC &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005182 !il_is_channel_ibss(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005183 D_MAC80211("leave - not IBSS channel\n");
Stanislaw Gruszkaeb85de32011-05-07 17:46:21 +02005184 ret = -EINVAL;
5185 goto set_ch_out;
5186 }
5187
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005188 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005189
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005190 /* Configure HT40 channels */
5191 if (ctx->ht.enabled != conf_is_ht(conf)) {
5192 ctx->ht.enabled = conf_is_ht(conf);
5193 ht_changed = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005194 }
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005195 if (ctx->ht.enabled) {
5196 if (conf_is_ht40_minus(conf)) {
5197 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005198 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005199 ctx->ht.is_40mhz = true;
5200 } else if (conf_is_ht40_plus(conf)) {
5201 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005202 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005203 ctx->ht.is_40mhz = true;
5204 } else {
5205 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005206 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005207 ctx->ht.is_40mhz = false;
5208 }
5209 } else
5210 ctx->ht.is_40mhz = false;
5211
5212 /*
5213 * Default to no protection. Protection mode will
5214 * later be set from BSS config in il_ht_conf
5215 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005216 ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005217
5218 /* if we are switching from ht to 2.4 clear flags
5219 * from any ht related info since 2.4 does not
5220 * support ht */
5221 if ((le16_to_cpu(ctx->staging.channel) != ch))
5222 ctx->staging.flags = 0;
5223
5224 il_set_rxon_channel(il, channel, ctx);
5225 il_set_rxon_ht(il, ht_conf);
5226
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005227 il_set_flags_for_band(il, ctx, channel->band, ctx->vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005228
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005229 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005230
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005231 if (il->cfg->ops->legacy->update_bcast_stations)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005232 ret = il->cfg->ops->legacy->update_bcast_stations(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005233
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005234set_ch_out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005235 /* The list of supported rates and rate mask can be different
5236 * for each band; since the band may have changed, reset
5237 * the rate mask to what mac80211 lists */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005238 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005239 }
5240
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005241 if (changed & (IEEE80211_CONF_CHANGE_PS | IEEE80211_CONF_CHANGE_IDLE)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005242 ret = il_power_update_mode(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005243 if (ret)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005244 D_MAC80211("Error setting sleep level\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005245 }
5246
5247 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005248 D_MAC80211("TX Power old=%d new=%d\n", il->tx_power_user_lmt,
5249 conf->power_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005250
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005251 il_set_tx_power(il, conf->power_level, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005252 }
5253
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005254 if (!il_is_ready(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005255 D_MAC80211("leave - not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005256 goto out;
5257 }
5258
5259 if (scan_active)
5260 goto out;
5261
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005262 if (memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging)))
5263 il_commit_rxon(il, ctx);
5264 else
5265 D_INFO("Not re-sending same RXON configuration.\n");
5266 if (ht_changed)
5267 il_update_qos(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005268
5269out:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005270 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005271 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005272 return ret;
5273}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005274EXPORT_SYMBOL(il_mac_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005275
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005276void
5277il_mac_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005278{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005279 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005280 unsigned long flags;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005281 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005282
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005283 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005284 return;
5285
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005286 mutex_lock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005287 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005288
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005289 spin_lock_irqsave(&il->lock, flags);
5290 memset(&il->current_ht_config, 0, sizeof(struct il_ht_config));
5291 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005292
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005293 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005294
5295 /* new association get rid of ibss beacon skb */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005296 if (il->beacon_skb)
5297 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005298
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005299 il->beacon_skb = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005300
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005301 il->timestamp = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005302
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005303 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005304
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005305 il_scan_cancel_timeout(il, 100);
5306 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005307 D_MAC80211("leave - not ready\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005308 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005309 return;
5310 }
5311
5312 /* we are restarting association process
5313 * clear RXON_FILTER_ASSOC_MSK bit
5314 */
5315 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005316 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005317
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005318 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005319
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005320 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005321
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005322 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005323}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005324EXPORT_SYMBOL(il_mac_reset_tsf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005325
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005326static void
5327il_ht_conf(struct il_priv *il, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005328{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005329 struct il_ht_config *ht_conf = &il->current_ht_config;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005330 struct ieee80211_sta *sta;
5331 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005332 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005333
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005334 D_ASSOC("enter:\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005335
5336 if (!ctx->ht.enabled)
5337 return;
5338
5339 ctx->ht.protection =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005340 bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005341 ctx->ht.non_gf_sta_present =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005342 !!(bss_conf->
5343 ht_operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005344
5345 ht_conf->single_chain_sufficient = false;
5346
5347 switch (vif->type) {
5348 case NL80211_IFTYPE_STATION:
5349 rcu_read_lock();
5350 sta = ieee80211_find_sta(vif, bss_conf->bssid);
5351 if (sta) {
5352 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
5353 int maxstreams;
5354
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005355 maxstreams =
5356 (ht_cap->mcs.
5357 tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
5358 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005359 maxstreams += 1;
5360
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005361 if (ht_cap->mcs.rx_mask[1] == 0 &&
5362 ht_cap->mcs.rx_mask[2] == 0)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005363 ht_conf->single_chain_sufficient = true;
5364 if (maxstreams <= 1)
5365 ht_conf->single_chain_sufficient = true;
5366 } else {
5367 /*
5368 * If at all, this can only happen through a race
5369 * when the AP disconnects us while we're still
5370 * setting up the connection, in that case mac80211
5371 * will soon tell us about that.
5372 */
5373 ht_conf->single_chain_sufficient = true;
5374 }
5375 rcu_read_unlock();
5376 break;
5377 case NL80211_IFTYPE_ADHOC:
5378 ht_conf->single_chain_sufficient = true;
5379 break;
5380 default:
5381 break;
5382 }
5383
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005384 D_ASSOC("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005385}
5386
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005387static inline void
5388il_set_no_assoc(struct il_priv *il, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005389{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005390 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005391
5392 /*
5393 * inform the ucode that there is no longer an
5394 * association and that no more packets should be
5395 * sent
5396 */
5397 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5398 ctx->staging.assoc_id = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005399 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005400}
5401
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005402static void
5403il_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005404{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005405 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005406 unsigned long flags;
5407 __le64 timestamp;
5408 struct sk_buff *skb = ieee80211_beacon_get(hw, vif);
5409
5410 if (!skb)
5411 return;
5412
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005413 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005414
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005415 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005416
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005417 if (!il->beacon_ctx) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005418 IL_ERR("update beacon but no beacon context!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005419 dev_kfree_skb(skb);
5420 return;
5421 }
5422
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005423 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005424
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005425 if (il->beacon_skb)
5426 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005427
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005428 il->beacon_skb = skb;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005429
5430 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005431 il->timestamp = le64_to_cpu(timestamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005432
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005433 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005434 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005435
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005436 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005437 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005438 return;
5439 }
5440
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005441 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005442}
5443
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005444void
5445il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5446 struct ieee80211_bss_conf *bss_conf, u32 changes)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005447{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005448 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005449 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005450 int ret;
5451
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005452 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005453 return;
5454
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005455 D_MAC80211("changes = 0x%X\n", changes);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005456
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005457 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005458
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005459 if (!il_is_alive(il)) {
5460 mutex_unlock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005461 return;
5462 }
5463
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005464 if (changes & BSS_CHANGED_QOS) {
5465 unsigned long flags;
5466
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005467 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005468 ctx->qos_data.qos_active = bss_conf->qos;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005469 il_update_qos(il, ctx);
5470 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005471 }
5472
5473 if (changes & BSS_CHANGED_BEACON_ENABLED) {
5474 /*
5475 * the add_interface code must make sure we only ever
5476 * have a single interface that could be beaconing at
5477 * any time.
5478 */
5479 if (vif->bss_conf.enable_beacon)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005480 il->beacon_ctx = ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005481 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005482 il->beacon_ctx = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005483 }
5484
5485 if (changes & BSS_CHANGED_BSSID) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005486 D_MAC80211("BSSID %pM\n", bss_conf->bssid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005487
5488 /*
5489 * If there is currently a HW scan going on in the
5490 * background then we need to cancel it else the RXON
5491 * below/in post_associate will fail.
5492 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005493 if (il_scan_cancel_timeout(il, 100)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005494 IL_WARN("Aborted scan still in progress after 100ms\n");
5495 D_MAC80211("leaving - scan abort failed.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005496 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005497 return;
5498 }
5499
5500 /* mac80211 only sets assoc when in STATION mode */
5501 if (vif->type == NL80211_IFTYPE_ADHOC || bss_conf->assoc) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005502 memcpy(ctx->staging.bssid_addr, bss_conf->bssid,
5503 ETH_ALEN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005504
5505 /* currently needed in a few places */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005506 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005507 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005508 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005509 }
5510
5511 }
5512
5513 /*
5514 * This needs to be after setting the BSSID in case
5515 * mac80211 decides to do both changes at once because
5516 * it will invoke post_associate.
5517 */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005518 if (vif->type == NL80211_IFTYPE_ADHOC && (changes & BSS_CHANGED_BEACON))
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005519 il_beacon_update(hw, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005520
5521 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005522 D_MAC80211("ERP_PREAMBLE %d\n", bss_conf->use_short_preamble);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005523 if (bss_conf->use_short_preamble)
5524 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
5525 else
5526 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
5527 }
5528
5529 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005530 D_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005531 if (bss_conf->use_cts_prot && il->band != IEEE80211_BAND_5GHZ)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005532 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
5533 else
5534 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
5535 if (bss_conf->use_cts_prot)
5536 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
5537 else
5538 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
5539 }
5540
5541 if (changes & BSS_CHANGED_BASIC_RATES) {
5542 /* XXX use this information
5543 *
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005544 * To do that, remove code from il_set_rate() and put something
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005545 * like this here:
5546 *
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005547 if (A-band)
5548 ctx->staging.ofdm_basic_rates =
5549 bss_conf->basic_rates;
5550 else
5551 ctx->staging.ofdm_basic_rates =
5552 bss_conf->basic_rates >> 4;
5553 ctx->staging.cck_basic_rates =
5554 bss_conf->basic_rates & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005555 */
5556 }
5557
5558 if (changes & BSS_CHANGED_HT) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005559 il_ht_conf(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005560
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005561 if (il->cfg->ops->hcmd->set_rxon_chain)
5562 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005563 }
5564
5565 if (changes & BSS_CHANGED_ASSOC) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005566 D_MAC80211("ASSOC %d\n", bss_conf->assoc);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005567 if (bss_conf->assoc) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005568 il->timestamp = bss_conf->timestamp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005569
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005570 if (!il_is_rfkill(il))
5571 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005572 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005573 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005574 }
5575
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005576 if (changes && il_is_associated_ctx(ctx) && bss_conf->aid) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005577 D_MAC80211("Changes (%#x) while associated\n", changes);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005578 ret = il_send_rxon_assoc(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005579 if (!ret) {
5580 /* Sync active_rxon with latest change. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005581 memcpy((void *)&ctx->active, &ctx->staging,
5582 sizeof(struct il_rxon_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005583 }
5584 }
5585
5586 if (changes & BSS_CHANGED_BEACON_ENABLED) {
5587 if (vif->bss_conf.enable_beacon) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005588 memcpy(ctx->staging.bssid_addr, bss_conf->bssid,
5589 ETH_ALEN);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005590 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
5591 il->cfg->ops->legacy->config_ap(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005592 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005593 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005594 }
5595
5596 if (changes & BSS_CHANGED_IBSS) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005597 ret =
5598 il->cfg->ops->legacy->manage_ibss_station(il, vif,
5599 bss_conf->
5600 ibss_joined);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005601 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005602 IL_ERR("failed to %s IBSS station %pM\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005603 bss_conf->ibss_joined ? "add" : "remove",
5604 bss_conf->bssid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005605 }
5606
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005607 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005608
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005609 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005610}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005611EXPORT_SYMBOL(il_mac_bss_info_changed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005612
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005613irqreturn_t
5614il_isr(int irq, void *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005615{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005616 struct il_priv *il = data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005617 u32 inta, inta_mask;
5618 u32 inta_fh;
5619 unsigned long flags;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005620 if (!il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005621 return IRQ_NONE;
5622
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005623 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005624
5625 /* Disable (but don't clear!) interrupts here to avoid
5626 * back-to-back ISRs and sporadic interrupts from our NIC.
5627 * If we have something to service, the tasklet will re-enable ints.
5628 * If we *don't* have something, we'll re-enable before leaving here. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005629 inta_mask = _il_rd(il, CSR_INT_MASK); /* just for debug */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005630 _il_wr(il, CSR_INT_MASK, 0x00000000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005631
5632 /* Discover which interrupts are active/pending */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005633 inta = _il_rd(il, CSR_INT);
5634 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005635
5636 /* Ignore interrupt if there's nothing in NIC to service.
5637 * This may be due to IRQ shared with another device,
5638 * or due to sporadic interrupts thrown from our NIC. */
5639 if (!inta && !inta_fh) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005640 D_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005641 goto none;
5642 }
5643
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005644 if (inta == 0xFFFFFFFF || (inta & 0xFFFFFFF0) == 0xa5a5a5a0) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005645 /* Hardware disappeared. It might have already raised
5646 * an interrupt */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005647 IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005648 goto unplugged;
5649 }
5650
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005651 D_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta, inta_mask,
5652 inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005653
5654 inta &= ~CSR_INT_BIT_SCD;
5655
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005656 /* il_irq_tasklet() will service interrupts and re-enable them */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005657 if (likely(inta || inta_fh))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005658 tasklet_schedule(&il->irq_tasklet);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005659
5660unplugged:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005661 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005662 return IRQ_HANDLED;
5663
5664none:
5665 /* re-enable interrupts here since we don't have anything to service. */
Stanislaw Gruszka93fd74e2011-04-28 11:51:30 +02005666 /* only Re-enable if disabled by irq */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005667 if (test_bit(S_INT_ENABLED, &il->status))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005668 il_enable_interrupts(il);
5669 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005670 return IRQ_NONE;
5671}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005672EXPORT_SYMBOL(il_isr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005673
5674/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005675 * il_tx_cmd_protection: Set rts/cts. 3945 and 4965 only share this
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005676 * function.
5677 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005678void
5679il_tx_cmd_protection(struct il_priv *il, struct ieee80211_tx_info *info,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01005680 __le16 fc, __le32 *tx_flags)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005681{
5682 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) {
5683 *tx_flags |= TX_CMD_FLG_RTS_MSK;
5684 *tx_flags &= ~TX_CMD_FLG_CTS_MSK;
5685 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
5686
5687 if (!ieee80211_is_mgmt(fc))
5688 return;
5689
5690 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
5691 case cpu_to_le16(IEEE80211_STYPE_AUTH):
5692 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
5693 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
5694 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
5695 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
5696 *tx_flags |= TX_CMD_FLG_CTS_MSK;
5697 break;
5698 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005699 } else if (info->control.rates[0].
5700 flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005701 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
5702 *tx_flags |= TX_CMD_FLG_CTS_MSK;
5703 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
5704 }
5705}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005706EXPORT_SYMBOL(il_tx_cmd_protection);