blob: 7e2924f332a7a21cc192c0ff8081bf9a72432e07 [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) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002789 txq->txb =
2790 kzalloc(sizeof(txq->txb[0]) * TFD_QUEUE_SIZE_MAX,
2791 GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002792 if (!txq->txb) {
2793 IL_ERR("kmalloc for auxiliary BD "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002794 "structures failed\n");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002795 goto error;
2796 }
2797 } else {
2798 txq->txb = NULL;
2799 }
2800
2801 /* Circular buffer of transmit frame descriptors (TFDs),
2802 * shared with device */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002803 txq->tfds =
2804 dma_alloc_coherent(dev, tfd_sz, &txq->q.dma_addr, GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002805 if (!txq->tfds) {
2806 IL_ERR("pci_alloc_consistent(%zd) failed\n", tfd_sz);
2807 goto error;
2808 }
2809 txq->q.id = id;
2810
2811 return 0;
2812
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002813error:
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002814 kfree(txq->txb);
2815 txq->txb = NULL;
2816
2817 return -ENOMEM;
2818}
2819
2820/**
2821 * il_tx_queue_init - Allocate and initialize one tx/cmd queue
2822 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002823int
2824il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq, int slots_num,
2825 u32 txq_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002826{
2827 int i, len;
2828 int ret;
2829 int actual_slots = slots_num;
2830
2831 /*
2832 * Alloc buffer array for commands (Tx or other types of commands).
2833 * For the command queue (#4/#9), allocate command space + one big
2834 * command for scan, since scan command is very huge; the system will
2835 * not have two scans at the same time, so only one is needed.
2836 * For normal Tx queues (all other queues), no super-size command
2837 * space is needed.
2838 */
2839 if (txq_id == il->cmd_queue)
2840 actual_slots++;
2841
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002842 txq->meta =
2843 kzalloc(sizeof(struct il_cmd_meta) * actual_slots, GFP_KERNEL);
2844 txq->cmd =
2845 kzalloc(sizeof(struct il_device_cmd *) * actual_slots, GFP_KERNEL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002846
2847 if (!txq->meta || !txq->cmd)
2848 goto out_free_arrays;
2849
2850 len = sizeof(struct il_device_cmd);
2851 for (i = 0; i < actual_slots; i++) {
2852 /* only happens for cmd queue */
2853 if (i == slots_num)
2854 len = IL_MAX_CMD_SIZE;
2855
2856 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
2857 if (!txq->cmd[i])
2858 goto err;
2859 }
2860
2861 /* Alloc driver data array and TFD circular buffer */
2862 ret = il_tx_queue_alloc(il, txq, txq_id);
2863 if (ret)
2864 goto err;
2865
2866 txq->need_update = 0;
2867
2868 /*
2869 * For the default queues 0-3, set up the swq_id
2870 * already -- all others need to get one later
2871 * (if they need one at all).
2872 */
2873 if (txq_id < 4)
2874 il_set_swq_id(txq, txq_id, txq_id);
2875
2876 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
2877 * il_queue_inc_wrap and il_queue_dec_wrap are broken. */
2878 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
2879
2880 /* Initialize queue's high/low-water marks, and head/tail idxes */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002881 il_queue_init(il, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002882
2883 /* Tell device where to find queue */
2884 il->cfg->ops->lib->txq_init(il, txq);
2885
2886 return 0;
2887err:
2888 for (i = 0; i < actual_slots; i++)
2889 kfree(txq->cmd[i]);
2890out_free_arrays:
2891 kfree(txq->meta);
2892 kfree(txq->cmd);
2893
2894 return -ENOMEM;
2895}
2896EXPORT_SYMBOL(il_tx_queue_init);
2897
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002898void
2899il_tx_queue_reset(struct il_priv *il, struct il_tx_queue *txq, int slots_num,
2900 u32 txq_id)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002901{
2902 int actual_slots = slots_num;
2903
2904 if (txq_id == il->cmd_queue)
2905 actual_slots++;
2906
2907 memset(txq->meta, 0, sizeof(struct il_cmd_meta) * actual_slots);
2908
2909 txq->need_update = 0;
2910
2911 /* Initialize queue's high/low-water marks, and head/tail idxes */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002912 il_queue_init(il, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002913
2914 /* Tell device where to find queue */
2915 il->cfg->ops->lib->txq_init(il, txq);
2916}
2917EXPORT_SYMBOL(il_tx_queue_reset);
2918
2919/*************** HOST COMMAND QUEUE FUNCTIONS *****/
2920
2921/**
2922 * il_enqueue_hcmd - enqueue a uCode command
2923 * @il: device ilate data point
2924 * @cmd: a point to the ucode command structure
2925 *
2926 * The function returns < 0 values to indicate the operation is
2927 * failed. On success, it turns the idx (> 0) of command in the
2928 * command queue.
2929 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002930int
2931il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002932{
2933 struct il_tx_queue *txq = &il->txq[il->cmd_queue];
2934 struct il_queue *q = &txq->q;
2935 struct il_device_cmd *out_cmd;
2936 struct il_cmd_meta *out_meta;
2937 dma_addr_t phys_addr;
2938 unsigned long flags;
2939 int len;
2940 u32 idx;
2941 u16 fix_size;
2942
2943 cmd->len = il->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002944 fix_size = (u16) (cmd->len + sizeof(out_cmd->hdr));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002945
2946 /* If any of the command structures end up being larger than
2947 * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
2948 * we will need to increase the size of the TFD entries
2949 * Also, check to see if command buffer should not exceed the size
2950 * of device_cmd and max_cmd_size. */
2951 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
2952 !(cmd->flags & CMD_SIZE_HUGE));
2953 BUG_ON(fix_size > IL_MAX_CMD_SIZE);
2954
2955 if (il_is_rfkill(il) || il_is_ctkill(il)) {
2956 IL_WARN("Not sending command - %s KILL\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002957 il_is_rfkill(il) ? "RF" : "CT");
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002958 return -EIO;
2959 }
2960
2961 spin_lock_irqsave(&il->hcmd_lock, flags);
2962
2963 if (il_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
2964 spin_unlock_irqrestore(&il->hcmd_lock, flags);
2965
2966 IL_ERR("Restarting adapter due to command queue full\n");
2967 queue_work(il->workqueue, &il->restart);
2968 return -ENOSPC;
2969 }
2970
2971 idx = il_get_cmd_idx(q, q->write_ptr, cmd->flags & CMD_SIZE_HUGE);
2972 out_cmd = txq->cmd[idx];
2973 out_meta = &txq->meta[idx];
2974
2975 if (WARN_ON(out_meta->flags & CMD_MAPPED)) {
2976 spin_unlock_irqrestore(&il->hcmd_lock, flags);
2977 return -ENOSPC;
2978 }
2979
2980 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
2981 out_meta->flags = cmd->flags | CMD_MAPPED;
2982 if (cmd->flags & CMD_WANT_SKB)
2983 out_meta->source = cmd;
2984 if (cmd->flags & CMD_ASYNC)
2985 out_meta->callback = cmd->callback;
2986
2987 out_cmd->hdr.cmd = cmd->id;
2988 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
2989
2990 /* At this point, the out_cmd now has all of the incoming cmd
2991 * information */
2992
2993 out_cmd->hdr.flags = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002994 out_cmd->hdr.sequence =
2995 cpu_to_le16(QUEUE_TO_SEQ(il->cmd_queue) | IDX_TO_SEQ(q->write_ptr));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01002996 if (cmd->flags & CMD_SIZE_HUGE)
2997 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
2998 len = sizeof(struct il_device_cmd);
2999 if (idx == TFD_CMD_SLOTS)
3000 len = IL_MAX_CMD_SIZE;
3001
3002#ifdef CONFIG_IWLEGACY_DEBUG
3003 switch (out_cmd->hdr.cmd) {
3004 case C_TX_LINK_QUALITY_CMD:
3005 case C_SENSITIVITY:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003006 D_HC_DUMP("Sending command %s (#%x), seq: 0x%04X, "
3007 "%d bytes at %d[%d]:%d\n",
3008 il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd,
3009 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
3010 q->write_ptr, idx, il->cmd_queue);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003011 break;
3012 default:
3013 D_HC("Sending command %s (#%x), seq: 0x%04X, "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003014 "%d bytes at %d[%d]:%d\n",
3015 il_get_cmd_string(out_cmd->hdr.cmd), out_cmd->hdr.cmd,
3016 le16_to_cpu(out_cmd->hdr.sequence), fix_size, q->write_ptr,
3017 idx, il->cmd_queue);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003018 }
3019#endif
3020 txq->need_update = 1;
3021
3022 if (il->cfg->ops->lib->txq_update_byte_cnt_tbl)
3023 /* Set up entry in queue's byte count circular buffer */
3024 il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq, 0);
3025
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003026 phys_addr =
3027 pci_map_single(il->pci_dev, &out_cmd->hdr, fix_size,
3028 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003029 dma_unmap_addr_set(out_meta, mapping, phys_addr);
3030 dma_unmap_len_set(out_meta, len, fix_size);
3031
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003032 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr, fix_size,
3033 1, U32_PAD(cmd->len));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003034
3035 /* Increment and update queue's write idx */
3036 q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd);
3037 il_txq_update_write_ptr(il, txq);
3038
3039 spin_unlock_irqrestore(&il->hcmd_lock, flags);
3040 return idx;
3041}
3042
3043/**
3044 * il_hcmd_queue_reclaim - Reclaim TX command queue entries already Tx'd
3045 *
3046 * When FW advances 'R' idx, all entries between old and new 'R' idx
3047 * need to be reclaimed. As result, some free space forms. If there is
3048 * enough free space (> low mark), wake the stack that feeds us.
3049 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003050static void
3051il_hcmd_queue_reclaim(struct il_priv *il, int txq_id, int idx, int cmd_idx)
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003052{
3053 struct il_tx_queue *txq = &il->txq[txq_id];
3054 struct il_queue *q = &txq->q;
3055 int nfreed = 0;
3056
3057 if (idx >= q->n_bd || il_queue_used(q, idx) == 0) {
3058 IL_ERR("Read idx for DMA queue txq id (%d), idx %d, "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003059 "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd,
3060 q->write_ptr, q->read_ptr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003061 return;
3062 }
3063
3064 for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
3065 q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) {
3066
3067 if (nfreed++ > 0) {
3068 IL_ERR("HCMD skipped: idx (%d) %d %d\n", idx,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003069 q->write_ptr, q->read_ptr);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003070 queue_work(il->workqueue, &il->restart);
3071 }
3072
3073 }
3074}
3075
3076/**
3077 * il_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
3078 * @rxb: Rx buffer to reclaim
3079 *
3080 * If an Rx buffer has an async callback associated with it the callback
3081 * will be executed. The attached skb (if present) will only be freed
3082 * if the callback returns 1
3083 */
3084void
3085il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb)
3086{
3087 struct il_rx_pkt *pkt = rxb_addr(rxb);
3088 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
3089 int txq_id = SEQ_TO_QUEUE(sequence);
3090 int idx = SEQ_TO_IDX(sequence);
3091 int cmd_idx;
3092 bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
3093 struct il_device_cmd *cmd;
3094 struct il_cmd_meta *meta;
3095 struct il_tx_queue *txq = &il->txq[il->cmd_queue];
3096 unsigned long flags;
3097
3098 /* If a Tx command is being handled and it isn't in the actual
3099 * command queue then there a command routing bug has been introduced
3100 * in the queue management code. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003101 if (WARN
3102 (txq_id != il->cmd_queue,
3103 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
3104 txq_id, il->cmd_queue, sequence, il->txq[il->cmd_queue].q.read_ptr,
3105 il->txq[il->cmd_queue].q.write_ptr)) {
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003106 il_print_hex_error(il, pkt, 32);
3107 return;
3108 }
3109
3110 cmd_idx = il_get_cmd_idx(&txq->q, idx, huge);
3111 cmd = txq->cmd[cmd_idx];
3112 meta = &txq->meta[cmd_idx];
3113
3114 txq->time_stamp = jiffies;
3115
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003116 pci_unmap_single(il->pci_dev, dma_unmap_addr(meta, mapping),
3117 dma_unmap_len(meta, len), PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003118
3119 /* Input error checking is done when commands are added to queue. */
3120 if (meta->flags & CMD_WANT_SKB) {
3121 meta->source->reply_page = (unsigned long)rxb_addr(rxb);
3122 rxb->page = NULL;
3123 } else if (meta->callback)
3124 meta->callback(il, cmd, pkt);
3125
3126 spin_lock_irqsave(&il->hcmd_lock, flags);
3127
3128 il_hcmd_queue_reclaim(il, txq_id, idx, cmd_idx);
3129
3130 if (!(meta->flags & CMD_ASYNC)) {
3131 clear_bit(S_HCMD_ACTIVE, &il->status);
3132 D_INFO("Clearing HCMD_ACTIVE for command %s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003133 il_get_cmd_string(cmd->hdr.cmd));
Stanislaw Gruszka0cdc2132011-11-15 13:40:15 +01003134 wake_up(&il->wait_command_queue);
3135 }
3136
3137 /* Mark as unmapped */
3138 meta->flags = 0;
3139
3140 spin_unlock_irqrestore(&il->hcmd_lock, flags);
3141}
3142EXPORT_SYMBOL(il_tx_cmd_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003143
3144MODULE_DESCRIPTION("iwl-legacy: common functions for 3945 and 4965");
3145MODULE_VERSION(IWLWIFI_VERSION);
3146MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
3147MODULE_LICENSE("GPL");
3148
3149/*
3150 * set bt_coex_active to true, uCode will do kill/defer
3151 * every time the priority line is asserted (BT is sending signals on the
3152 * priority line in the PCIx).
3153 * set bt_coex_active to false, uCode will ignore the BT activity and
3154 * perform the normal operation
3155 *
3156 * User might experience transmit issue on some platform due to WiFi/BT
3157 * co-exist problem. The possible behaviors are:
3158 * Able to scan and finding all the available AP
3159 * Not able to associate with any AP
3160 * On those platforms, WiFi communication can be restored by set
3161 * "bt_coex_active" module parameter to "false"
3162 *
3163 * default: bt_coex_active = true (BT_COEX_ENABLE)
3164 */
John W. Linvilleef334172011-02-25 15:51:01 -05003165static bool bt_coex_active = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003166module_param(bt_coex_active, bool, S_IRUGO);
3167MODULE_PARM_DESC(bt_coex_active, "enable wifi/bluetooth co-exist");
3168
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02003169u32 il_debug_level;
3170EXPORT_SYMBOL(il_debug_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003171
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02003172const u8 il_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
3173EXPORT_SYMBOL(il_bcast_addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003174
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003175/* This function both allocates and initializes hw and il. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003176struct ieee80211_hw *
3177il_alloc_all(struct il_cfg *cfg)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003178{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003179 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003180 /* mac80211 allocates memory for this device instance, including
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003181 * space for this driver's ilate structure */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003182 struct ieee80211_hw *hw;
3183
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003184 hw = ieee80211_alloc_hw(sizeof(struct il_priv),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003185 cfg->ops->ieee80211_ops);
3186 if (hw == NULL) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003187 pr_err("%s: Can not allocate network device\n", cfg->name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003188 goto out;
3189 }
3190
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003191 il = hw->priv;
3192 il->hw = hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003193
3194out:
3195 return hw;
3196}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003197EXPORT_SYMBOL(il_alloc_all);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003198
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003199#define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
3200#define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
3201static void
3202il_init_ht_hw_capab(const struct il_priv *il,
3203 struct ieee80211_sta_ht_cap *ht_info,
3204 enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003205{
3206 u16 max_bit_rate = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003207 u8 rx_chains_num = il->hw_params.rx_chains_num;
3208 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003209
3210 ht_info->cap = 0;
3211 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
3212
3213 ht_info->ht_supported = true;
3214
3215 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
3216 max_bit_rate = MAX_BIT_RATE_20_MHZ;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003217 if (il->hw_params.ht40_channel & BIT(band)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003218 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
3219 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
3220 ht_info->mcs.rx_mask[4] = 0x01;
3221 max_bit_rate = MAX_BIT_RATE_40_MHZ;
3222 }
3223
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003224 if (il->cfg->mod_params->amsdu_size_8K)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003225 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
3226
3227 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
3228 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
3229
3230 ht_info->mcs.rx_mask[0] = 0xFF;
3231 if (rx_chains_num >= 2)
3232 ht_info->mcs.rx_mask[1] = 0xFF;
3233 if (rx_chains_num >= 3)
3234 ht_info->mcs.rx_mask[2] = 0xFF;
3235
3236 /* Highest supported Rx data rate */
3237 max_bit_rate *= rx_chains_num;
3238 WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
3239 ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
3240
3241 /* Tx MCS capabilities */
3242 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
3243 if (tx_chains_num != rx_chains_num) {
3244 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003245 ht_info->mcs.tx_params |=
3246 ((tx_chains_num -
3247 1) << IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003248 }
3249}
3250
3251/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003252 * il_init_geos - Initialize mac80211's geo/channel info based from eeprom
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003253 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003254int
3255il_init_geos(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003256{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003257 struct il_channel_info *ch;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003258 struct ieee80211_supported_band *sband;
3259 struct ieee80211_channel *channels;
3260 struct ieee80211_channel *geo_ch;
3261 struct ieee80211_rate *rates;
3262 int i = 0;
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02003263 s8 max_tx_power = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003264
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003265 if (il->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
3266 il->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003267 D_INFO("Geography modes already initialized.\n");
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003268 set_bit(S_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003269 return 0;
3270 }
3271
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003272 channels =
3273 kzalloc(sizeof(struct ieee80211_channel) * il->channel_count,
3274 GFP_KERNEL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003275 if (!channels)
3276 return -ENOMEM;
3277
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003278 rates =
3279 kzalloc((sizeof(struct ieee80211_rate) * RATE_COUNT_LEGACY),
3280 GFP_KERNEL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003281 if (!rates) {
3282 kfree(channels);
3283 return -ENOMEM;
3284 }
3285
3286 /* 5.2GHz channels start after the 2.4GHz channels */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003287 sband = &il->bands[IEEE80211_BAND_5GHZ];
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02003288 sband->channels = &channels[ARRAY_SIZE(il_eeprom_band_1)];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003289 /* just OFDM */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003290 sband->bitrates = &rates[IL_FIRST_OFDM_RATE];
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003291 sband->n_bitrates = RATE_COUNT_LEGACY - IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003292
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003293 if (il->cfg->sku & IL_SKU_N)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003294 il_init_ht_hw_capab(il, &sband->ht_cap, IEEE80211_BAND_5GHZ);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003295
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003296 sband = &il->bands[IEEE80211_BAND_2GHZ];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003297 sband->channels = channels;
3298 /* OFDM & CCK */
3299 sband->bitrates = rates;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003300 sband->n_bitrates = RATE_COUNT_LEGACY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003301
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003302 if (il->cfg->sku & IL_SKU_N)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003303 il_init_ht_hw_capab(il, &sband->ht_cap, IEEE80211_BAND_2GHZ);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003304
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003305 il->ieee_channels = channels;
3306 il->ieee_rates = rates;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003307
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003308 for (i = 0; i < il->channel_count; i++) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003309 ch = &il->channel_info[i];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003310
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003311 if (!il_is_channel_valid(ch))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003312 continue;
3313
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003314 sband = &il->bands[ch->band];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003315
3316 geo_ch = &sband->channels[sband->n_channels++];
3317
3318 geo_ch->center_freq =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003319 ieee80211_channel_to_frequency(ch->channel, ch->band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003320 geo_ch->max_power = ch->max_power_avg;
3321 geo_ch->max_antenna_gain = 0xff;
3322 geo_ch->hw_value = ch->channel;
3323
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003324 if (il_is_channel_valid(ch)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003325 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
3326 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
3327
3328 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
3329 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
3330
3331 if (ch->flags & EEPROM_CHANNEL_RADAR)
3332 geo_ch->flags |= IEEE80211_CHAN_RADAR;
3333
3334 geo_ch->flags |= ch->ht40_extension_channel;
3335
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02003336 if (ch->max_power_avg > max_tx_power)
3337 max_tx_power = ch->max_power_avg;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003338 } else {
3339 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
3340 }
3341
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003342 D_INFO("Channel %d Freq=%d[%sGHz] %s flag=0x%X\n", ch->channel,
3343 geo_ch->center_freq,
3344 il_is_channel_a_band(ch) ? "5.2" : "2.4",
3345 geo_ch->
3346 flags & IEEE80211_CHAN_DISABLED ? "restricted" : "valid",
3347 geo_ch->flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003348 }
3349
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003350 il->tx_power_device_lmt = max_tx_power;
3351 il->tx_power_user_lmt = max_tx_power;
3352 il->tx_power_next = max_tx_power;
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02003353
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02003354 if (il->bands[IEEE80211_BAND_5GHZ].n_channels == 0 &&
3355 (il->cfg->sku & IL_SKU_A)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003356 IL_INFO("Incorrectly detected BG card as ABG. "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003357 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003358 il->pci_dev->device, il->pci_dev->subsystem_device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003359 il->cfg->sku &= ~IL_SKU_A;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003360 }
3361
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003362 IL_INFO("Tunable channels: %d 802.11bg, %d 802.11a channels\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003363 il->bands[IEEE80211_BAND_2GHZ].n_channels,
3364 il->bands[IEEE80211_BAND_5GHZ].n_channels);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003365
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003366 set_bit(S_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003367
3368 return 0;
3369}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003370EXPORT_SYMBOL(il_init_geos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003371
3372/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003373 * il_free_geos - undo allocations in il_init_geos
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003374 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003375void
3376il_free_geos(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003377{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003378 kfree(il->ieee_channels);
3379 kfree(il->ieee_rates);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003380 clear_bit(S_GEO_CONFIGURED, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003381}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003382EXPORT_SYMBOL(il_free_geos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003383
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003384static bool
3385il_is_channel_extension(struct il_priv *il, enum ieee80211_band band,
3386 u16 channel, u8 extension_chan_offset)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003387{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003388 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003389
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003390 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003391 if (!il_is_channel_valid(ch_info))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003392 return false;
3393
3394 if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003395 return !(ch_info->
3396 ht40_extension_channel & IEEE80211_CHAN_NO_HT40PLUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003397 else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003398 return !(ch_info->
3399 ht40_extension_channel & IEEE80211_CHAN_NO_HT40MINUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003400
3401 return false;
3402}
3403
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003404bool
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003405il_is_ht40_tx_allowed(struct il_priv *il, struct il_rxon_context *ctx,
3406 struct ieee80211_sta_ht_cap *ht_cap)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003407{
3408 if (!ctx->ht.enabled || !ctx->ht.is_40mhz)
3409 return false;
3410
3411 /*
3412 * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
3413 * the bit will not set if it is pure 40MHz case
3414 */
3415 if (ht_cap && !ht_cap->ht_supported)
3416 return false;
3417
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01003418#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003419 if (il->disable_ht40)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003420 return false;
3421#endif
3422
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003423 return il_is_channel_extension(il, il->band,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003424 le16_to_cpu(ctx->staging.channel),
3425 ctx->ht.extension_chan_offset);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003426}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003427EXPORT_SYMBOL(il_is_ht40_tx_allowed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003428
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003429static u16
3430il_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003431{
3432 u16 new_val;
3433 u16 beacon_factor;
3434
3435 /*
3436 * If mac80211 hasn't given us a beacon interval, program
3437 * the default into the device.
3438 */
3439 if (!beacon_val)
3440 return DEFAULT_BEACON_INTERVAL;
3441
3442 /*
3443 * If the beacon interval we obtained from the peer
3444 * is too large, we'll have to wake up more often
3445 * (and in IBSS case, we'll beacon too much)
3446 *
3447 * For example, if max_beacon_val is 4096, and the
3448 * requested beacon interval is 7000, we'll have to
3449 * use 3500 to be able to wake up on the beacons.
3450 *
3451 * This could badly influence beacon detection stats.
3452 */
3453
3454 beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val;
3455 new_val = beacon_val / beacon_factor;
3456
3457 if (!new_val)
3458 new_val = max_beacon_val;
3459
3460 return new_val;
3461}
3462
3463int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003464il_send_rxon_timing(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003465{
3466 u64 tsf;
3467 s32 interval_tm, rem;
3468 struct ieee80211_conf *conf = NULL;
3469 u16 beacon_int;
3470 struct ieee80211_vif *vif = ctx->vif;
3471
Stanislaw Gruszka6278dda2011-08-31 11:13:05 +02003472 conf = &il->hw->conf;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003473
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003474 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003475
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003476 memset(&ctx->timing, 0, sizeof(struct il_rxon_time_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003477
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003478 ctx->timing.timestamp = cpu_to_le64(il->timestamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003479 ctx->timing.listen_interval = cpu_to_le16(conf->listen_interval);
3480
3481 beacon_int = vif ? vif->bss_conf.beacon_int : 0;
3482
3483 /*
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02003484 * TODO: For IBSS we need to get atim_win from mac80211,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003485 * for now just always use 0
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003486 */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02003487 ctx->timing.atim_win = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003488
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003489 beacon_int =
3490 il_adjust_beacon_interval(beacon_int,
3491 il->hw_params.max_beacon_itrvl *
3492 TIME_UNIT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003493 ctx->timing.beacon_interval = cpu_to_le16(beacon_int);
3494
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003495 tsf = il->timestamp; /* tsf is modifed by do_div: copy it */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003496 interval_tm = beacon_int * TIME_UNIT;
3497 rem = do_div(tsf, interval_tm);
3498 ctx->timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
3499
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003500 ctx->timing.dtim_period = vif ? (vif->bss_conf.dtim_period ? : 1) : 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003501
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003502 D_ASSOC("beacon interval %d beacon timer %d beacon tim %d\n",
3503 le16_to_cpu(ctx->timing.beacon_interval),
3504 le32_to_cpu(ctx->timing.beacon_init_val),
3505 le16_to_cpu(ctx->timing.atim_win));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003506
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003507 return il_send_cmd_pdu(il, ctx->rxon_timing_cmd, sizeof(ctx->timing),
3508 &ctx->timing);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003509}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003510EXPORT_SYMBOL(il_send_rxon_timing);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003511
3512void
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003513il_set_rxon_hwcrypto(struct il_priv *il, struct il_rxon_context *ctx,
3514 int hw_decrypt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003515{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003516 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003517
3518 if (hw_decrypt)
3519 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
3520 else
3521 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
3522
3523}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003524EXPORT_SYMBOL(il_set_rxon_hwcrypto);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003525
3526/* validate RXON structure is valid */
3527int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003528il_check_rxon_cmd(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003529{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003530 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003531 bool error = false;
3532
3533 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
3534 if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003535 IL_WARN("check 2.4G: wrong narrow\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003536 error = true;
3537 }
3538 if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003539 IL_WARN("check 2.4G: wrong radar\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003540 error = true;
3541 }
3542 } else {
3543 if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003544 IL_WARN("check 5.2G: not short slot!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003545 error = true;
3546 }
3547 if (rxon->flags & RXON_FLG_CCK_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003548 IL_WARN("check 5.2G: CCK!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003549 error = true;
3550 }
3551 }
3552 if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003553 IL_WARN("mac/bssid mcast!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003554 error = true;
3555 }
3556
3557 /* make sure basic rates 6Mbps and 1Mbps are supported */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003558 if ((rxon->ofdm_basic_rates & RATE_6M_MASK) == 0 &&
3559 (rxon->cck_basic_rates & RATE_1M_MASK) == 0) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003560 IL_WARN("neither 1 nor 6 are basic\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003561 error = true;
3562 }
3563
3564 if (le16_to_cpu(rxon->assoc_id) > 2007) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003565 IL_WARN("aid > 2007\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003566 error = true;
3567 }
3568
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003569 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) ==
3570 (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003571 IL_WARN("CCK and short slot\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003572 error = true;
3573 }
3574
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003575 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) ==
3576 (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003577 IL_WARN("CCK and auto detect");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003578 error = true;
3579 }
3580
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003581 if ((rxon->
3582 flags & (RXON_FLG_AUTO_DETECT_MSK | RXON_FLG_TGG_PROTECT_MSK)) ==
3583 RXON_FLG_TGG_PROTECT_MSK) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003584 IL_WARN("TGg but no auto-detect\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003585 error = true;
3586 }
3587
3588 if (error)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003589 IL_WARN("Tuning to channel %d\n", le16_to_cpu(rxon->channel));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003590
3591 if (error) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003592 IL_ERR("Invalid RXON\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003593 return -EINVAL;
3594 }
3595 return 0;
3596}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003597EXPORT_SYMBOL(il_check_rxon_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003598
3599/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003600 * il_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003601 * @il: staging_rxon is compared to active_rxon
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003602 *
3603 * If the RXON structure is changing enough to require a new tune,
3604 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
3605 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
3606 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003607int
3608il_full_rxon_required(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003609{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003610 const struct il_rxon_cmd *staging = &ctx->staging;
3611 const struct il_rxon_cmd *active = &ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003612
3613#define CHK(cond) \
3614 if ((cond)) { \
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003615 D_INFO("need full RXON - " #cond "\n"); \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003616 return 1; \
3617 }
3618
3619#define CHK_NEQ(c1, c2) \
3620 if ((c1) != (c2)) { \
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003621 D_INFO("need full RXON - " \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003622 #c1 " != " #c2 " - %d != %d\n", \
3623 (c1), (c2)); \
3624 return 1; \
3625 }
3626
3627 /* These items are only settable from the full RXON command */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003628 CHK(!il_is_associated_ctx(ctx));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003629 CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr));
3630 CHK(compare_ether_addr(staging->node_addr, active->node_addr));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003631 CHK(compare_ether_addr
3632 (staging->wlap_bssid_addr, active->wlap_bssid_addr));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003633 CHK_NEQ(staging->dev_type, active->dev_type);
3634 CHK_NEQ(staging->channel, active->channel);
3635 CHK_NEQ(staging->air_propagation, active->air_propagation);
3636 CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates,
3637 active->ofdm_ht_single_stream_basic_rates);
3638 CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates,
3639 active->ofdm_ht_dual_stream_basic_rates);
3640 CHK_NEQ(staging->assoc_id, active->assoc_id);
3641
3642 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
3643 * be updated with the RXON_ASSOC command -- however only some
3644 * flag transitions are allowed using RXON_ASSOC */
3645
3646 /* Check if we are not switching bands */
3647 CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK,
3648 active->flags & RXON_FLG_BAND_24G_MSK);
3649
3650 /* Check if we are switching association toggle */
3651 CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK,
3652 active->filter_flags & RXON_FILTER_ASSOC_MSK);
3653
3654#undef CHK
3655#undef CHK_NEQ
3656
3657 return 0;
3658}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003659EXPORT_SYMBOL(il_full_rxon_required);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003660
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003661u8
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003662il_get_lowest_plcp(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003663{
3664 /*
3665 * Assign the lowest rate -- should really get this from
3666 * the beacon skb from mac80211.
3667 */
3668 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003669 return RATE_1M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003670 else
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003671 return RATE_6M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003672}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003673EXPORT_SYMBOL(il_get_lowest_plcp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003674
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003675static void
3676_il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf,
3677 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003678{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003679 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003680
3681 if (!ctx->ht.enabled) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003682 rxon->flags &=
3683 ~(RXON_FLG_CHANNEL_MODE_MSK |
3684 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK | RXON_FLG_HT40_PROT_MSK
3685 | RXON_FLG_HT_PROT_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003686 return;
3687 }
3688
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003689 rxon->flags |=
3690 cpu_to_le32(ctx->ht.protection << RXON_FLG_HT_OPERATING_MODE_POS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003691
3692 /* Set up channel bandwidth:
3693 * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
3694 /* clear the HT channel mode before set the mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003695 rxon->flags &=
3696 ~(RXON_FLG_CHANNEL_MODE_MSK | RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003697 if (il_is_ht40_tx_allowed(il, ctx, NULL)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003698 /* pure ht40 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003699 if (ctx->ht.protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003700 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
3701 /* Note: control channel is opposite of extension channel */
3702 switch (ctx->ht.extension_chan_offset) {
3703 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
3704 rxon->flags &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003705 ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003706 break;
3707 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003708 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003709 break;
3710 }
3711 } else {
3712 /* Note: control channel is opposite of extension channel */
3713 switch (ctx->ht.extension_chan_offset) {
3714 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
3715 rxon->flags &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003716 ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003717 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
3718 break;
3719 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003720 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003721 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
3722 break;
3723 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
3724 default:
3725 /* channel location only valid if in Mixed mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003726 IL_ERR("invalid extension channel offset\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003727 break;
3728 }
3729 }
3730 } else {
3731 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
3732 }
3733
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003734 if (il->cfg->ops->hcmd->set_rxon_chain)
3735 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003736
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003737 D_ASSOC("rxon flags 0x%X operation mode :0x%X "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003738 "extension channel offset 0x%x\n", le32_to_cpu(rxon->flags),
3739 ctx->ht.protection, ctx->ht.extension_chan_offset);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003740}
3741
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003742void
3743il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003744{
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003745 _il_set_rxon_ht(il, ht_conf, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003746}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003747EXPORT_SYMBOL(il_set_rxon_ht);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003748
3749/* Return valid, unused, channel for a passive scan to reset the RF */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003750u8
3751il_get_single_channel_number(struct il_priv *il, enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003752{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003753 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003754 int i;
3755 u8 channel = 0;
3756 u8 min, max;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003757
3758 if (band == IEEE80211_BAND_5GHZ) {
3759 min = 14;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003760 max = il->channel_count;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003761 } else {
3762 min = 0;
3763 max = 14;
3764 }
3765
3766 for (i = min; i < max; i++) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003767 channel = il->channel_info[i].channel;
3768 if (channel == le16_to_cpu(il->ctx.staging.channel))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003769 continue;
3770
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003771 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003772 if (il_is_channel_valid(ch_info))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003773 break;
3774 }
3775
3776 return channel;
3777}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003778EXPORT_SYMBOL(il_get_single_channel_number);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003779
3780/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003781 * il_set_rxon_channel - Set the band and channel values in staging RXON
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003782 * @ch: requested channel as a pointer to struct ieee80211_channel
3783
3784 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
3785 * in the staging RXON flag structure based on the ch->band
3786 */
3787int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003788il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003789 struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003790{
3791 enum ieee80211_band band = ch->band;
3792 u16 channel = ch->hw_value;
3793
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02003794 if (le16_to_cpu(ctx->staging.channel) == channel && il->band == band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003795 return 0;
3796
3797 ctx->staging.channel = cpu_to_le16(channel);
3798 if (band == IEEE80211_BAND_5GHZ)
3799 ctx->staging.flags &= ~RXON_FLG_BAND_24G_MSK;
3800 else
3801 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
3802
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003803 il->band = band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003804
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003805 D_INFO("Staging channel set to %d [%d]\n", channel, band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003806
3807 return 0;
3808}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003809EXPORT_SYMBOL(il_set_rxon_channel);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003810
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003811void
3812il_set_flags_for_band(struct il_priv *il, struct il_rxon_context *ctx,
3813 enum ieee80211_band band, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003814{
3815 if (band == IEEE80211_BAND_5GHZ) {
3816 ctx->staging.flags &=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003817 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK |
3818 RXON_FLG_CCK_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003819 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
3820 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003821 /* Copied from il_post_associate() */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003822 if (vif && vif->bss_conf.use_short_slot)
3823 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
3824 else
3825 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
3826
3827 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
3828 ctx->staging.flags |= RXON_FLG_AUTO_DETECT_MSK;
3829 ctx->staging.flags &= ~RXON_FLG_CCK_MSK;
3830 }
3831}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003832EXPORT_SYMBOL(il_set_flags_for_band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003833
3834/*
3835 * initialize rxon structure with default values from eeprom
3836 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003837void
3838il_connection_init_rx_config(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003839{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003840 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003841
3842 memset(&ctx->staging, 0, sizeof(ctx->staging));
3843
3844 if (!ctx->vif) {
3845 ctx->staging.dev_type = ctx->unused_devtype;
3846 } else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003847 switch (ctx->vif->type) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003848
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003849 case NL80211_IFTYPE_STATION:
3850 ctx->staging.dev_type = ctx->station_devtype;
3851 ctx->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
3852 break;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003853
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003854 case NL80211_IFTYPE_ADHOC:
3855 ctx->staging.dev_type = ctx->ibss_devtype;
3856 ctx->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
3857 ctx->staging.filter_flags =
3858 RXON_FILTER_BCON_AWARE_MSK |
3859 RXON_FILTER_ACCEPT_GRP_MSK;
3860 break;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003861
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003862 default:
3863 IL_ERR("Unsupported interface type %d\n",
3864 ctx->vif->type);
3865 break;
3866 }
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003867
3868#if 0
3869 /* TODO: Figure out when short_preamble would be set and cache from
3870 * that */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003871 if (!hw_to_local(il->hw)->short_preamble)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003872 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
3873 else
3874 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
3875#endif
3876
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003877 ch_info =
3878 il_get_channel_info(il, il->band, le16_to_cpu(ctx->active.channel));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003879
3880 if (!ch_info)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003881 ch_info = &il->channel_info[0];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003882
3883 ctx->staging.channel = cpu_to_le16(ch_info->channel);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003884 il->band = ch_info->band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003885
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003886 il_set_flags_for_band(il, ctx, il->band, ctx->vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003887
3888 ctx->staging.ofdm_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003889 (IL_OFDM_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003890 ctx->staging.cck_basic_rates =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003891 (IL_CCK_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003892
3893 /* clear both MIX and PURE40 mode flag */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003894 ctx->staging.flags &=
3895 ~(RXON_FLG_CHANNEL_MODE_MIXED | RXON_FLG_CHANNEL_MODE_PURE_40);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003896 if (ctx->vif)
3897 memcpy(ctx->staging.node_addr, ctx->vif->addr, ETH_ALEN);
3898
3899 ctx->staging.ofdm_ht_single_stream_basic_rates = 0xff;
3900 ctx->staging.ofdm_ht_dual_stream_basic_rates = 0xff;
3901}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003902EXPORT_SYMBOL(il_connection_init_rx_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003903
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003904void
3905il_set_rate(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003906{
3907 const struct ieee80211_supported_band *hw = NULL;
3908 struct ieee80211_rate *rate;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003909 int i;
3910
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003911 hw = il_get_hw_mode(il, il->band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003912 if (!hw) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003913 IL_ERR("Failed to set rate: unable to get hw mode\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003914 return;
3915 }
3916
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003917 il->active_rate = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003918
3919 for (i = 0; i < hw->n_bitrates; i++) {
3920 rate = &(hw->bitrates[i]);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02003921 if (rate->hw_value < RATE_COUNT_LEGACY)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003922 il->active_rate |= (1 << rate->hw_value);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003923 }
3924
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003925 D_RATE("Set active_rate = %0x\n", il->active_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003926
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003927 il->ctx.staging.cck_basic_rates =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003928 (IL_CCK_BASIC_RATES_MASK >> IL_FIRST_CCK_RATE) & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003929
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003930 il->ctx.staging.ofdm_basic_rates =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003931 (IL_OFDM_BASIC_RATES_MASK >> IL_FIRST_OFDM_RATE) & 0xFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003932}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003933EXPORT_SYMBOL(il_set_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003934
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003935void
3936il_chswitch_done(struct il_priv *il, bool is_success)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003937{
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01003938 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003939
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003940 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003941 return;
3942
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003943 if (test_and_clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003944 ieee80211_chswitch_done(ctx->vif, is_success);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003945}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003946EXPORT_SYMBOL(il_chswitch_done);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003947
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003948void
3949il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003950{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003951 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003952 struct il_csa_notification *csa = &(pkt->u.csa_notif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003953
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01003954 struct il_rxon_context *ctx = &il->ctx;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003955 struct il_rxon_cmd *rxon = (void *)&ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003956
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003957 if (!test_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Stanislaw Gruszka51e65252011-06-08 15:26:31 +02003958 return;
3959
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003960 if (!le32_to_cpu(csa->status) && csa->channel == il->switch_channel) {
Stanislaw Gruszka51e65252011-06-08 15:26:31 +02003961 rxon->channel = csa->channel;
3962 ctx->staging.channel = csa->channel;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003963 D_11H("CSA notif: channel %d\n", le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003964 il_chswitch_done(il, true);
Stanislaw Gruszka51e65252011-06-08 15:26:31 +02003965 } else {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003966 IL_ERR("CSA notif (fail) : channel %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003967 le16_to_cpu(csa->channel));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003968 il_chswitch_done(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003969 }
3970}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003971EXPORT_SYMBOL(il_hdl_csa);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003972
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01003973#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003974void
3975il_print_rx_config_cmd(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003976{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003977 struct il_rxon_cmd *rxon = &ctx->staging;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003978
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003979 D_RADIO("RX CONFIG:\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003980 il_print_hex_dump(il, IL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003981 D_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003982 D_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003983 D_RADIO("u32 filter_flags: 0x%08x\n", le32_to_cpu(rxon->filter_flags));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003984 D_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003985 D_RADIO("u8 ofdm_basic_rates: 0x%02x\n", rxon->ofdm_basic_rates);
3986 D_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003987 D_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
3988 D_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003989 D_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003990}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003991EXPORT_SYMBOL(il_print_rx_config_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003992#endif
3993/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003994 * il_irq_handle_error - called for HW or SW error interrupt from card
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003995 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003996void
3997il_irq_handle_error(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003998{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003999 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004000 set_bit(S_FW_ERROR, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004001
4002 /* Cancel currently queued command. */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004003 clear_bit(S_HCMD_ACTIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004004
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004005 IL_ERR("Loaded firmware version: %s\n", il->hw->wiphy->fw_version);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004006
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004007 il->cfg->ops->lib->dump_nic_error_log(il);
4008 if (il->cfg->ops->lib->dump_fh)
4009 il->cfg->ops->lib->dump_fh(il, NULL, false);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004010#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004011 if (il_get_debug_level(il) & IL_DL_FW_ERRORS)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004012 il_print_rx_config_cmd(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004013#endif
4014
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004015 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004016
4017 /* Keep the restart process from trying to send host
4018 * commands by clearing the INIT status bit */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004019 clear_bit(S_READY, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004020
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004021 if (!test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004022 IL_DBG(IL_DL_FW_ERRORS,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004023 "Restarting adapter due to uCode error.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004024
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004025 if (il->cfg->mod_params->restart_fw)
4026 queue_work(il->workqueue, &il->restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004027 }
4028}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004029EXPORT_SYMBOL(il_irq_handle_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004030
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004031static int
4032il_apm_stop_master(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004033{
4034 int ret = 0;
4035
4036 /* stop device's busmaster DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004037 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004038
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004039 ret =
4040 _il_poll_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_MASTER_DISABLED,
4041 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004042 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004043 IL_WARN("Master Disable Timed Out, 100 usec\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004044
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004045 D_INFO("stop master\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004046
4047 return ret;
4048}
4049
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004050void
4051il_apm_stop(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004052{
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004053 D_INFO("Stop card, put in low power state\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004054
4055 /* Stop device's DMA activity */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004056 il_apm_stop_master(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004057
4058 /* Reset the entire device */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004059 il_set_bit(il, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004060
4061 udelay(10);
4062
4063 /*
4064 * Clear "initialization complete" bit to move adapter from
4065 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
4066 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004067 il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004068}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004069EXPORT_SYMBOL(il_apm_stop);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004070
4071/*
4072 * Start up NIC's basic functionality after it has been reset
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004073 * (e.g. after platform boot, or shutdown via il_apm_stop())
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004074 * NOTE: This does not load uCode nor start the embedded processor
4075 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004076int
4077il_apm_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004078{
4079 int ret = 0;
4080 u16 lctl;
4081
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004082 D_INFO("Init card's basic functions\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004083
4084 /*
4085 * Use "set_bit" below rather than "write", to preserve any hardware
4086 * bits already set by default after reset.
4087 */
4088
4089 /* Disable L0S exit timer (platform NMI Work/Around) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004090 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004091 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004092
4093 /*
4094 * Disable L0s without affecting L1;
4095 * don't wait for ICH L0s (ICH bug W/A)
4096 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004097 il_set_bit(il, CSR_GIO_CHICKEN_BITS,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004098 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004099
4100 /* Set FH wait threshold to maximum (HW error during stress W/A) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004101 il_set_bit(il, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004102
4103 /*
4104 * Enable HAP INTA (interrupt from management bus) to
4105 * wake device's PCI Express link L1a -> L0s
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004106 * NOTE: This is no-op for 3945 (non-existent bit)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004107 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004108 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004109 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004110
4111 /*
4112 * HW bug W/A for instability in PCIe bus L0->L0S->L1 transition.
4113 * Check if BIOS (or OS) enabled L1-ASPM on this device.
4114 * If so (likely), disable L0S, so device moves directly L0->L1;
4115 * costs negligible amount of power savings.
4116 * If not (unlikely), enable L0S, so there is at least some
4117 * power savings, even without L1.
4118 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004119 if (il->cfg->base_params->set_l0s) {
4120 lctl = il_pcie_link_ctl(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004121 if ((lctl & PCI_CFG_LINK_CTRL_VAL_L1_EN) ==
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004122 PCI_CFG_LINK_CTRL_VAL_L1_EN) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004123 /* L1-ASPM enabled; disable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004124 il_set_bit(il, CSR_GIO_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004125 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004126 D_POWER("L1 Enabled; Disabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004127 } else {
4128 /* L1-ASPM disabled; enable(!) L0S */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004129 il_clear_bit(il, CSR_GIO_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004130 CSR_GIO_REG_VAL_L0S_ENABLED);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004131 D_POWER("L1 Disabled; Enabling L0S\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004132 }
4133 }
4134
4135 /* Configure analog phase-lock-loop before activating to D0A */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004136 if (il->cfg->base_params->pll_cfg_val)
4137 il_set_bit(il, CSR_ANA_PLL_CFG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004138 il->cfg->base_params->pll_cfg_val);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004139
4140 /*
4141 * Set "initialization complete" bit to move adapter from
4142 * D0U* --> D0A* (powered-up active) state.
4143 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004144 il_set_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004145
4146 /*
4147 * Wait for clock stabilization; once stabilized, access to
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02004148 * device-internal resources is supported, e.g. il_wr_prph()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004149 * and accesses to uCode SRAM.
4150 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004151 ret =
4152 _il_poll_bit(il, CSR_GP_CNTRL,
4153 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
4154 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004155 if (ret < 0) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004156 D_INFO("Failed to init the card\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004157 goto out;
4158 }
4159
4160 /*
4161 * Enable DMA and BSM (if used) clocks, wait for them to stabilize.
4162 * BSM (Boostrap State Machine) is only in 3945 and 4965.
4163 *
4164 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits
4165 * do not disable clocks. This preserves any hardware bits already
4166 * set by default in "CLK_CTRL_REG" after reset.
4167 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004168 if (il->cfg->base_params->use_bsm)
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02004169 il_wr_prph(il, APMG_CLK_EN_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004170 APMG_CLK_VAL_DMA_CLK_RQT | APMG_CLK_VAL_BSM_CLK_RQT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004171 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004172 il_wr_prph(il, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004173 udelay(20);
4174
4175 /* Disable L1-Active */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004176 il_set_bits_prph(il, APMG_PCIDEV_STT_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004177 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004178
4179out:
4180 return ret;
4181}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004182EXPORT_SYMBOL(il_apm_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004183
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004184int
4185il_set_tx_power(struct il_priv *il, s8 tx_power, bool force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004186{
4187 int ret;
4188 s8 prev_tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004189 bool defer;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01004190 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004191
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004192 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004193
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004194 if (il->tx_power_user_lmt == tx_power && !force)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004195 return 0;
4196
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004197 if (!il->cfg->ops->lib->send_tx_power)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004198 return -EOPNOTSUPP;
4199
Stanislaw Gruszka332704a2011-04-13 10:56:51 +02004200 /* 0 dBm mean 1 milliwatt */
4201 if (tx_power < 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004202 IL_WARN("Requested user TXPOWER %d below 1 mW.\n", tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004203 return -EINVAL;
4204 }
4205
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004206 if (tx_power > il->tx_power_device_lmt) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004207 IL_WARN("Requested user TXPOWER %d above upper limit %d.\n",
4208 tx_power, il->tx_power_device_lmt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004209 return -EINVAL;
4210 }
4211
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004212 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004213 return -EIO;
4214
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004215 /* scan complete and commit_rxon use tx_power_next value,
4216 * it always need to be updated for newest request */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004217 il->tx_power_next = tx_power;
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004218
4219 /* do not set tx power when scanning or channel changing */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004220 defer = test_bit(S_SCANNING, &il->status) ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004221 memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging));
Stanislaw Gruszka43f12d42011-02-24 14:23:55 +01004222 if (defer && !force) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004223 D_INFO("Deferring tx power set\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004224 return 0;
4225 }
4226
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004227 prev_tx_power = il->tx_power_user_lmt;
4228 il->tx_power_user_lmt = tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004229
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004230 ret = il->cfg->ops->lib->send_tx_power(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004231
4232 /* if fail to set tx_power, restore the orig. tx power */
4233 if (ret) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004234 il->tx_power_user_lmt = prev_tx_power;
4235 il->tx_power_next = prev_tx_power;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004236 }
4237 return ret;
4238}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004239EXPORT_SYMBOL(il_set_tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004240
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004241void
4242il_send_bt_config(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004243{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004244 struct il_bt_cmd bt_cmd = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004245 .lead_time = BT_LEAD_TIME_DEF,
4246 .max_kill = BT_MAX_KILL_DEF,
4247 .kill_ack_mask = 0,
4248 .kill_cts_mask = 0,
4249 };
4250
4251 if (!bt_coex_active)
4252 bt_cmd.flags = BT_COEX_DISABLE;
4253 else
4254 bt_cmd.flags = BT_COEX_ENABLE;
4255
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004256 D_INFO("BT coex %s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004257 (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004258
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004259 if (il_send_cmd_pdu(il, C_BT_CONFIG, sizeof(struct il_bt_cmd), &bt_cmd))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004260 IL_ERR("failed to send BT Coex Config\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004261}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004262EXPORT_SYMBOL(il_send_bt_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004263
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004264int
4265il_send_stats_request(struct il_priv *il, u8 flags, bool clear)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004266{
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02004267 struct il_stats_cmd stats_cmd = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004268 .configuration_flags = clear ? IL_STATS_CONF_CLEAR_STATS : 0,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004269 };
4270
4271 if (flags & CMD_ASYNC)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004272 return il_send_cmd_pdu_async(il, C_STATS, sizeof(struct il_stats_cmd),
4273 &stats_cmd, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004274 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004275 return il_send_cmd_pdu(il, C_STATS, sizeof(struct il_stats_cmd),
4276 &stats_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004277}
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02004278EXPORT_SYMBOL(il_send_stats_request);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004279
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004280void
4281il_hdl_pm_sleep(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004282{
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004283#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02004284 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004285 struct il_sleep_notification *sleep = &(pkt->u.sleep_notif);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004286 D_RX("sleep mode: %d, src: %d\n",
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01004287 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004288#endif
4289}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01004290EXPORT_SYMBOL(il_hdl_pm_sleep);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004291
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004292void
4293il_hdl_pm_debug_stats(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004294{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02004295 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02004296 u32 len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004297 D_RADIO("Dumping %d bytes of unhandled notification for %s:\n", len,
4298 il_get_cmd_string(pkt->hdr.cmd));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004299 il_print_hex_dump(il, IL_DL_RADIO, pkt->u.raw, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004300}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01004301EXPORT_SYMBOL(il_hdl_pm_debug_stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004302
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004303void
4304il_hdl_error(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004305{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02004306 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004307
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004308 IL_ERR("Error Reply type 0x%08X cmd %s (0x%02X) "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004309 "seq 0x%04X ser 0x%08X\n",
4310 le32_to_cpu(pkt->u.err_resp.error_type),
4311 il_get_cmd_string(pkt->u.err_resp.cmd_id),
4312 pkt->u.err_resp.cmd_id,
4313 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
4314 le32_to_cpu(pkt->u.err_resp.error_info));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004315}
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02004316EXPORT_SYMBOL(il_hdl_error);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004317
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004318void
4319il_clear_isr_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004320{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004321 memset(&il->isr_stats, 0, sizeof(il->isr_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004322}
4323
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004324int
4325il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue,
4326 const struct ieee80211_tx_queue_params *params)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004327{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004328 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004329 unsigned long flags;
4330 int q;
4331
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004332 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004333
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004334 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004335 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004336 return -EIO;
4337 }
4338
4339 if (queue >= AC_NUM) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004340 D_MAC80211("leave - queue >= AC_NUM %d\n", queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004341 return 0;
4342 }
4343
4344 q = AC_NUM - 1 - queue;
4345
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004346 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004347
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004348 il->ctx.qos_data.def_qos_parm.ac[q].cw_min =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004349 cpu_to_le16(params->cw_min);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004350 il->ctx.qos_data.def_qos_parm.ac[q].cw_max =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004351 cpu_to_le16(params->cw_max);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004352 il->ctx.qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
4353 il->ctx.qos_data.def_qos_parm.ac[q].edca_txop =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004354 cpu_to_le16((params->txop * 32));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004355
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004356 il->ctx.qos_data.def_qos_parm.ac[q].reserved1 = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004357
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004358 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004359
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004360 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004361 return 0;
4362}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004363EXPORT_SYMBOL(il_mac_conf_tx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004364
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004365int
4366il_mac_tx_last_beacon(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004367{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004368 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004369
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004370 return il->ibss_manager == IL_IBSS_MANAGER;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004371}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004372EXPORT_SYMBOL_GPL(il_mac_tx_last_beacon);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004373
4374static int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004375il_set_mode(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004376{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004377 il_connection_init_rx_config(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004378
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004379 if (il->cfg->ops->hcmd->set_rxon_chain)
4380 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004381
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004382 return il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004383}
4384
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004385static int
4386il_setup_interface(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004387{
4388 struct ieee80211_vif *vif = ctx->vif;
4389 int err;
4390
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004391 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004392
4393 /*
4394 * This variable will be correct only when there's just
4395 * a single context, but all code using it is for hardware
4396 * that supports only one context.
4397 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004398 il->iw_mode = vif->type;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004399
4400 ctx->is_active = true;
4401
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004402 err = il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004403 if (err) {
4404 if (!ctx->always_active)
4405 ctx->is_active = false;
4406 return err;
4407 }
4408
4409 return 0;
4410}
4411
4412int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004413il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004414{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004415 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004416 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004417 int err;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004418 u32 modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004419
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004420 D_MAC80211("enter: type %d, addr %pM\n", vif->type, vif->addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004421
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004422 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004423
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004424 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004425 IL_WARN("Try to add interface when device not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004426 err = -EINVAL;
4427 goto out;
4428 }
4429
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004430 /* check if busy context is exclusive */
4431 if (il->ctx.vif &&
4432 (il->ctx.exclusive_interface_modes & BIT(il->ctx.vif->type))) {
4433 err = -EINVAL;
4434 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004435 }
4436
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004437 modes = il->ctx.interface_modes | il->ctx.exclusive_interface_modes;
4438 if (!(modes & BIT(vif->type))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004439 err = -EOPNOTSUPP;
4440 goto out;
4441 }
4442
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004443 vif_priv->ctx = &il->ctx;
4444 il->ctx.vif = vif;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004445
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004446 err = il_setup_interface(il, &il->ctx);
4447 if (err) {
4448 il->ctx.vif = NULL;
4449 il->iw_mode = NL80211_IFTYPE_STATION;
4450 }
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004451
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004452out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004453 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004454
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004455 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004456 return err;
4457}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004458EXPORT_SYMBOL(il_mac_add_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004459
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004460static void
4461il_teardown_interface(struct il_priv *il, struct ieee80211_vif *vif,
4462 bool mode_change)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004463{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004464 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004465
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004466 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004467
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004468 if (il->scan_vif == vif) {
4469 il_scan_cancel_timeout(il, 200);
4470 il_force_scan_end(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004471 }
4472
4473 if (!mode_change) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004474 il_set_mode(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004475 if (!ctx->always_active)
4476 ctx->is_active = false;
4477 }
4478}
4479
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004480void
4481il_mac_remove_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004482{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004483 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004484 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004485
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004486 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004487
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004488 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004489
4490 WARN_ON(ctx->vif != vif);
4491 ctx->vif = NULL;
4492
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004493 il_teardown_interface(il, vif, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004494
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004495 memset(il->bssid, 0, ETH_ALEN);
4496 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004497
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004498 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004499
4500}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004501EXPORT_SYMBOL(il_mac_remove_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004502
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004503int
4504il_alloc_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004505{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004506 if (!il->txq)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004507 il->txq =
4508 kzalloc(sizeof(struct il_tx_queue) *
4509 il->cfg->base_params->num_of_queues, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004510 if (!il->txq) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004511 IL_ERR("Not enough memory for txq\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004512 return -ENOMEM;
4513 }
4514 return 0;
4515}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004516EXPORT_SYMBOL(il_alloc_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004517
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004518void
4519il_txq_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004520{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004521 kfree(il->txq);
4522 il->txq = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004523}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004524EXPORT_SYMBOL(il_txq_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004525
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004526#ifdef CONFIG_IWLEGACY_DEBUGFS
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004527
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004528#define IL_TRAFFIC_DUMP_SIZE (IL_TRAFFIC_ENTRY_SIZE * IL_TRAFFIC_ENTRIES)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004529
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004530void
4531il_reset_traffic_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004532{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004533 il->tx_traffic_idx = 0;
4534 il->rx_traffic_idx = 0;
4535 if (il->tx_traffic)
4536 memset(il->tx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
4537 if (il->rx_traffic)
4538 memset(il->rx_traffic, 0, IL_TRAFFIC_DUMP_SIZE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004539}
4540
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004541int
4542il_alloc_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004543{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004544 u32 traffic_size = IL_TRAFFIC_DUMP_SIZE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004545
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004546 if (il_debug_level & IL_DL_TX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004547 if (!il->tx_traffic) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004548 il->tx_traffic = kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004549 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004550 return -ENOMEM;
4551 }
4552 }
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004553 if (il_debug_level & IL_DL_RX) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004554 if (!il->rx_traffic) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004555 il->rx_traffic = kzalloc(traffic_size, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004556 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004557 return -ENOMEM;
4558 }
4559 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004560 il_reset_traffic_log(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004561 return 0;
4562}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004563EXPORT_SYMBOL(il_alloc_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004564
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004565void
4566il_free_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004567{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004568 kfree(il->tx_traffic);
4569 il->tx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004570
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004571 kfree(il->rx_traffic);
4572 il->rx_traffic = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004573}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004574EXPORT_SYMBOL(il_free_traffic_mem);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004575
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004576void
4577il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
4578 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004579{
4580 __le16 fc;
4581 u16 len;
4582
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004583 if (likely(!(il_debug_level & IL_DL_TX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004584 return;
4585
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004586 if (!il->tx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004587 return;
4588
4589 fc = header->frame_control;
4590 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004591 len =
4592 (length >
4593 IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004594 memcpy((il->tx_traffic +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004595 (il->tx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header,
4596 len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004597 il->tx_traffic_idx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004598 (il->tx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004599 }
4600}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004601EXPORT_SYMBOL(il_dbg_log_tx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004602
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004603void
4604il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
4605 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004606{
4607 __le16 fc;
4608 u16 len;
4609
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02004610 if (likely(!(il_debug_level & IL_DL_RX)))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004611 return;
4612
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004613 if (!il->rx_traffic)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004614 return;
4615
4616 fc = header->frame_control;
4617 if (ieee80211_is_data(fc)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004618 len =
4619 (length >
4620 IL_TRAFFIC_ENTRY_SIZE) ? IL_TRAFFIC_ENTRY_SIZE : length;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004621 memcpy((il->rx_traffic +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004622 (il->rx_traffic_idx * IL_TRAFFIC_ENTRY_SIZE)), header,
4623 len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004624 il->rx_traffic_idx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004625 (il->rx_traffic_idx + 1) % IL_TRAFFIC_ENTRIES;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004626 }
4627}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004628EXPORT_SYMBOL(il_dbg_log_rx_data_frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004629
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004630const char *
4631il_get_mgmt_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004632{
4633 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004634 IL_CMD(MANAGEMENT_ASSOC_REQ);
4635 IL_CMD(MANAGEMENT_ASSOC_RESP);
4636 IL_CMD(MANAGEMENT_REASSOC_REQ);
4637 IL_CMD(MANAGEMENT_REASSOC_RESP);
4638 IL_CMD(MANAGEMENT_PROBE_REQ);
4639 IL_CMD(MANAGEMENT_PROBE_RESP);
4640 IL_CMD(MANAGEMENT_BEACON);
4641 IL_CMD(MANAGEMENT_ATIM);
4642 IL_CMD(MANAGEMENT_DISASSOC);
4643 IL_CMD(MANAGEMENT_AUTH);
4644 IL_CMD(MANAGEMENT_DEAUTH);
4645 IL_CMD(MANAGEMENT_ACTION);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004646 default:
4647 return "UNKNOWN";
4648
4649 }
4650}
4651
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004652const char *
4653il_get_ctrl_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004654{
4655 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004656 IL_CMD(CONTROL_BACK_REQ);
4657 IL_CMD(CONTROL_BACK);
4658 IL_CMD(CONTROL_PSPOLL);
4659 IL_CMD(CONTROL_RTS);
4660 IL_CMD(CONTROL_CTS);
4661 IL_CMD(CONTROL_ACK);
4662 IL_CMD(CONTROL_CFEND);
4663 IL_CMD(CONTROL_CFENDACK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004664 default:
4665 return "UNKNOWN";
4666
4667 }
4668}
4669
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004670void
4671il_clear_traffic_stats(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004672{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004673 memset(&il->tx_stats, 0, sizeof(struct traffic_stats));
4674 memset(&il->rx_stats, 0, sizeof(struct traffic_stats));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004675}
4676
4677/*
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004678 * if CONFIG_IWLEGACY_DEBUGFS defined,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004679 * il_update_stats function will
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004680 * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02004681 * Use debugFs to display the rx/rx_stats
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004682 * if CONFIG_IWLEGACY_DEBUGFS not being defined, then no MGMT and CTRL
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004683 * information will be recorded, but DATA pkt still will be recorded
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004684 * for the reason of il_led.c need to control the led blinking based on
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004685 * number of tx and rx data.
4686 *
4687 */
4688void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004689il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004690{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004691 struct traffic_stats *stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004692
4693 if (is_tx)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004694 stats = &il->tx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004695 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004696 stats = &il->rx_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004697
4698 if (ieee80211_is_mgmt(fc)) {
4699 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
4700 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
4701 stats->mgmt[MANAGEMENT_ASSOC_REQ]++;
4702 break;
4703 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
4704 stats->mgmt[MANAGEMENT_ASSOC_RESP]++;
4705 break;
4706 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
4707 stats->mgmt[MANAGEMENT_REASSOC_REQ]++;
4708 break;
4709 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
4710 stats->mgmt[MANAGEMENT_REASSOC_RESP]++;
4711 break;
4712 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
4713 stats->mgmt[MANAGEMENT_PROBE_REQ]++;
4714 break;
4715 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
4716 stats->mgmt[MANAGEMENT_PROBE_RESP]++;
4717 break;
4718 case cpu_to_le16(IEEE80211_STYPE_BEACON):
4719 stats->mgmt[MANAGEMENT_BEACON]++;
4720 break;
4721 case cpu_to_le16(IEEE80211_STYPE_ATIM):
4722 stats->mgmt[MANAGEMENT_ATIM]++;
4723 break;
4724 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
4725 stats->mgmt[MANAGEMENT_DISASSOC]++;
4726 break;
4727 case cpu_to_le16(IEEE80211_STYPE_AUTH):
4728 stats->mgmt[MANAGEMENT_AUTH]++;
4729 break;
4730 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
4731 stats->mgmt[MANAGEMENT_DEAUTH]++;
4732 break;
4733 case cpu_to_le16(IEEE80211_STYPE_ACTION):
4734 stats->mgmt[MANAGEMENT_ACTION]++;
4735 break;
4736 }
4737 } else if (ieee80211_is_ctl(fc)) {
4738 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
4739 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ):
4740 stats->ctrl[CONTROL_BACK_REQ]++;
4741 break;
4742 case cpu_to_le16(IEEE80211_STYPE_BACK):
4743 stats->ctrl[CONTROL_BACK]++;
4744 break;
4745 case cpu_to_le16(IEEE80211_STYPE_PSPOLL):
4746 stats->ctrl[CONTROL_PSPOLL]++;
4747 break;
4748 case cpu_to_le16(IEEE80211_STYPE_RTS):
4749 stats->ctrl[CONTROL_RTS]++;
4750 break;
4751 case cpu_to_le16(IEEE80211_STYPE_CTS):
4752 stats->ctrl[CONTROL_CTS]++;
4753 break;
4754 case cpu_to_le16(IEEE80211_STYPE_ACK):
4755 stats->ctrl[CONTROL_ACK]++;
4756 break;
4757 case cpu_to_le16(IEEE80211_STYPE_CFEND):
4758 stats->ctrl[CONTROL_CFEND]++;
4759 break;
4760 case cpu_to_le16(IEEE80211_STYPE_CFENDACK):
4761 stats->ctrl[CONTROL_CFENDACK]++;
4762 break;
4763 }
4764 } else {
4765 /* data */
4766 stats->data_cnt++;
4767 stats->data_bytes += len;
4768 }
4769}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004770EXPORT_SYMBOL(il_update_stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004771#endif
4772
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004773int
4774il_force_reset(struct il_priv *il, bool external)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004775{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004776 struct il_force_reset *force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004777
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004778 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004779 return -EINVAL;
4780
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004781 force_reset = &il->force_reset;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004782 force_reset->reset_request_count++;
4783 if (!external) {
4784 if (force_reset->last_force_reset_jiffies &&
4785 time_after(force_reset->last_force_reset_jiffies +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004786 force_reset->reset_duration, jiffies)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004787 D_INFO("force reset rejected\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004788 force_reset->reset_reject_count++;
4789 return -EAGAIN;
4790 }
4791 }
4792 force_reset->reset_success_count++;
4793 force_reset->last_force_reset_jiffies = jiffies;
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004794
4795 /*
4796 * if the request is from external(ex: debugfs),
4797 * then always perform the request in regardless the module
4798 * parameter setting
4799 * if the request is from internal (uCode error or driver
4800 * detect failure), then fw_restart module parameter
4801 * need to be check before performing firmware reload
4802 */
4803
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004804 if (!external && !il->cfg->mod_params->restart_fw) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004805 D_INFO("Cancel firmware reload based on "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004806 "module parameter setting\n");
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004807 return 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004808 }
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004809
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004810 IL_ERR("On demand firmware reload\n");
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004811
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004812 /* Set the FW error flag -- cleared on il_down */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004813 set_bit(S_FW_ERROR, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004814 wake_up(&il->wait_command_queue);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004815 /*
4816 * Keep the restart process from trying to send host
4817 * commands by clearing the INIT status bit
4818 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004819 clear_bit(S_READY, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004820 queue_work(il->workqueue, &il->restart);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +02004821
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004822 return 0;
4823}
4824
4825int
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004826il_mac_change_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004827 enum nl80211_iftype newtype, bool newp2p)
4828{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004829 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004830 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004831 u32 modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004832 int err;
4833
4834 newtype = ieee80211_iftype_p2p(newtype, newp2p);
4835
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004836 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004837
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004838 if (!ctx->vif || !il_is_ready_rf(il)) {
Johannes Bergffd8c742011-03-29 15:28:11 +02004839 /*
4840 * Huh? But wait ... this can maybe happen when
4841 * we're in the middle of a firmware restart!
4842 */
4843 err = -EBUSY;
4844 goto out;
4845 }
4846
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004847 modes = ctx->interface_modes | ctx->exclusive_interface_modes;
4848 if (!(modes & BIT(newtype))) {
4849 err = -EOPNOTSUPP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004850 goto out;
4851 }
4852
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02004853 if ((il->ctx.exclusive_interface_modes & BIT(il->ctx.vif->type)) ||
4854 (il->ctx.exclusive_interface_modes & BIT(newtype))) {
4855 err = -EINVAL;
4856 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004857 }
4858
4859 /* success */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004860 il_teardown_interface(il, vif, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004861 vif->type = newtype;
Johannes Bergffd8c742011-03-29 15:28:11 +02004862 vif->p2p = newp2p;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004863 err = il_setup_interface(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004864 WARN_ON(err);
4865 /*
4866 * We've switched internally, but submitting to the
4867 * device may have failed for some reason. Mask this
4868 * error, because otherwise mac80211 will not switch
4869 * (and set the interface type back) and we'll be
4870 * out of sync with it.
4871 */
4872 err = 0;
4873
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004874out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004875 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004876 return err;
4877}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004878EXPORT_SYMBOL(il_mac_change_interface);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004879
4880/*
4881 * On every watchdog tick we check (latest) time stamp. If it does not
4882 * change during timeout period and queue is not empty we reset firmware.
4883 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004884static int
4885il_check_stuck_queue(struct il_priv *il, int cnt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004886{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004887 struct il_tx_queue *txq = &il->txq[cnt];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004888 struct il_queue *q = &txq->q;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004889 unsigned long timeout;
4890 int ret;
4891
4892 if (q->read_ptr == q->write_ptr) {
4893 txq->time_stamp = jiffies;
4894 return 0;
4895 }
4896
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004897 timeout =
4898 txq->time_stamp +
4899 msecs_to_jiffies(il->cfg->base_params->wd_timeout);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004900
4901 if (time_after(jiffies, timeout)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004902 IL_ERR("Queue %d stuck for %u ms.\n", q->id,
4903 il->cfg->base_params->wd_timeout);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004904 ret = il_force_reset(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004905 return (ret == -EAGAIN) ? 0 : 1;
4906 }
4907
4908 return 0;
4909}
4910
4911/*
4912 * Making watchdog tick be a quarter of timeout assure we will
4913 * discover the queue hung between timeout and 1.25*timeout
4914 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004915#define IL_WD_TICK(timeout) ((timeout) / 4)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004916
4917/*
4918 * Watchdog timer callback, we check each tx queue for stuck, if if hung
4919 * we reset the firmware. If everything is fine just rearm the timer.
4920 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004921void
4922il_bg_watchdog(unsigned long data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004923{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004924 struct il_priv *il = (struct il_priv *)data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004925 int cnt;
4926 unsigned long timeout;
4927
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004928 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004929 return;
4930
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004931 timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004932 if (timeout == 0)
4933 return;
4934
4935 /* monitor and check for stuck cmd queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004936 if (il_check_stuck_queue(il, il->cmd_queue))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004937 return;
4938
4939 /* monitor and check for other stuck queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004940 if (il_is_any_associated(il)) {
4941 for (cnt = 0; cnt < il->hw_params.max_txq_num; cnt++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004942 /* skip as we already checked the command queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004943 if (cnt == il->cmd_queue)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004944 continue;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004945 if (il_check_stuck_queue(il, cnt))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004946 return;
4947 }
4948 }
4949
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004950 mod_timer(&il->watchdog,
4951 jiffies + msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004952}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004953EXPORT_SYMBOL(il_bg_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004954
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004955void
4956il_setup_watchdog(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004957{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004958 unsigned int timeout = il->cfg->base_params->wd_timeout;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004959
4960 if (timeout)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004961 mod_timer(&il->watchdog,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004962 jiffies + msecs_to_jiffies(IL_WD_TICK(timeout)));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004963 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004964 del_timer(&il->watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004965}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004966EXPORT_SYMBOL(il_setup_watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004967
4968/*
4969 * extended beacon time format
4970 * time in usec will be changed into a 32-bit value in extended:internal format
4971 * the extended part is the beacon counts
4972 * the internal part is the time in usec within one beacon interval
4973 */
4974u32
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004975il_usecs_to_beacons(struct il_priv *il, u32 usec, u32 beacon_interval)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004976{
4977 u32 quot;
4978 u32 rem;
4979 u32 interval = beacon_interval * TIME_UNIT;
4980
4981 if (!interval || !usec)
4982 return 0;
4983
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004984 quot =
4985 (usec /
4986 interval) & (il_beacon_time_mask_high(il,
4987 il->hw_params.
4988 beacon_time_tsf_bits) >> il->
4989 hw_params.beacon_time_tsf_bits);
4990 rem =
4991 (usec % interval) & il_beacon_time_mask_low(il,
4992 il->hw_params.
4993 beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004994
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004995 return (quot << il->hw_params.beacon_time_tsf_bits) + rem;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004996}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004997EXPORT_SYMBOL(il_usecs_to_beacons);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004998
4999/* base is usually what we get from ucode with each received frame,
5000 * the same as HW timer counter counting down
5001 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005002__le32
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01005003il_add_beacon_time(struct il_priv *il, u32 base, u32 addon,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005004 u32 beacon_interval)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005005{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005006 u32 base_low = base & il_beacon_time_mask_low(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005007 il->hw_params.
5008 beacon_time_tsf_bits);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005009 u32 addon_low = addon & il_beacon_time_mask_low(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005010 il->hw_params.
5011 beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005012 u32 interval = beacon_interval * TIME_UNIT;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005013 u32 res = (base & il_beacon_time_mask_high(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005014 il->hw_params.
5015 beacon_time_tsf_bits)) +
5016 (addon & il_beacon_time_mask_high(il,
5017 il->hw_params.
5018 beacon_time_tsf_bits));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005019
5020 if (base_low > addon_low)
5021 res += base_low - addon_low;
5022 else if (base_low < addon_low) {
5023 res += interval + base_low - addon_low;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005024 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005025 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005026 res += (1 << il->hw_params.beacon_time_tsf_bits);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005027
5028 return cpu_to_le32(res);
5029}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005030EXPORT_SYMBOL(il_add_beacon_time);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005031
5032#ifdef CONFIG_PM
5033
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005034int
5035il_pci_suspend(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005036{
5037 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005038 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005039
5040 /*
5041 * This function is called when system goes into suspend state
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005042 * mac80211 will call il_mac_stop() from the mac80211 suspend function
5043 * first but since il_mac_stop() has no knowledge of who the caller is,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005044 * it will not call apm_ops.stop() to stop the DMA operation.
5045 * Calling apm_ops.stop here to make sure we stop the DMA.
5046 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005047 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005048
5049 return 0;
5050}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005051EXPORT_SYMBOL(il_pci_suspend);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005052
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005053int
5054il_pci_resume(struct device *device)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005055{
5056 struct pci_dev *pdev = to_pci_dev(device);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005057 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005058 bool hw_rfkill = false;
5059
5060 /*
5061 * We disable the RETRY_TIMEOUT register (0x41) to keep
5062 * PCI Tx retries from interfering with C3 CPU state.
5063 */
5064 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
5065
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005066 il_enable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005067
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005068 if (!(_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005069 hw_rfkill = true;
5070
5071 if (hw_rfkill)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005072 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005073 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005074 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005075
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005076 wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rfkill);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005077
5078 return 0;
5079}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005080EXPORT_SYMBOL(il_pci_resume);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005081
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005082const struct dev_pm_ops il_pm_ops = {
5083 .suspend = il_pci_suspend,
5084 .resume = il_pci_resume,
5085 .freeze = il_pci_suspend,
5086 .thaw = il_pci_resume,
5087 .poweroff = il_pci_suspend,
5088 .restore = il_pci_resume,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005089};
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005090EXPORT_SYMBOL(il_pm_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005091
5092#endif /* CONFIG_PM */
5093
5094static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005095il_update_qos(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005096{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005097 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005098 return;
5099
5100 if (!ctx->is_active)
5101 return;
5102
5103 ctx->qos_data.def_qos_parm.qos_flags = 0;
5104
5105 if (ctx->qos_data.qos_active)
5106 ctx->qos_data.def_qos_parm.qos_flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005107 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005108
5109 if (ctx->ht.enabled)
5110 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
5111
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005112 D_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005113 ctx->qos_data.qos_active, ctx->qos_data.def_qos_parm.qos_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005114
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005115 il_send_cmd_pdu_async(il, ctx->qos_cmd, sizeof(struct il_qosparam_cmd),
5116 &ctx->qos_data.def_qos_parm, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005117}
5118
5119/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005120 * il_mac_config - mac80211 config callback
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005121 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005122int
5123il_mac_config(struct ieee80211_hw *hw, u32 changed)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005124{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005125 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005126 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005127 struct ieee80211_conf *conf = &hw->conf;
5128 struct ieee80211_channel *channel = conf->channel;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005129 struct il_ht_config *ht_conf = &il->current_ht_config;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005130 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005131 unsigned long flags = 0;
5132 int ret = 0;
5133 u16 ch;
5134 int scan_active = 0;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005135 bool ht_changed = false;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005136
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005137 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005138 return -EOPNOTSUPP;
5139
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005140 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005141
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005142 D_MAC80211("enter to channel %d changed 0x%X\n", channel->hw_value,
5143 changed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005144
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005145 if (unlikely(test_bit(S_SCANNING, &il->status))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005146 scan_active = 1;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005147 D_MAC80211("scan active\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005148 }
5149
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005150 if (changed &
5151 (IEEE80211_CONF_CHANGE_SMPS | IEEE80211_CONF_CHANGE_CHANNEL)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005152 /* mac80211 uses static for non-HT which is what we want */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005153 il->current_ht_config.smps = conf->smps_mode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005154
5155 /*
5156 * Recalculate chain counts.
5157 *
5158 * If monitor mode is enabled then mac80211 will
5159 * set up the SM PS mode to OFF if an HT channel is
5160 * configured.
5161 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005162 if (il->cfg->ops->hcmd->set_rxon_chain)
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005163 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005164 }
5165
5166 /* during scanning mac80211 will delay channel setting until
5167 * scan finish with changed = 0
5168 */
5169 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005170
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005171 if (scan_active)
5172 goto set_ch_out;
5173
5174 ch = channel->hw_value;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005175 ch_info = il_get_channel_info(il, channel->band, ch);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005176 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005177 D_MAC80211("leave - invalid channel\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005178 ret = -EINVAL;
5179 goto set_ch_out;
5180 }
5181
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005182 if (il->iw_mode == NL80211_IFTYPE_ADHOC &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005183 !il_is_channel_ibss(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005184 D_MAC80211("leave - not IBSS channel\n");
Stanislaw Gruszkaeb85de32011-05-07 17:46:21 +02005185 ret = -EINVAL;
5186 goto set_ch_out;
5187 }
5188
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005189 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005190
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005191 /* Configure HT40 channels */
5192 if (ctx->ht.enabled != conf_is_ht(conf)) {
5193 ctx->ht.enabled = conf_is_ht(conf);
5194 ht_changed = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005195 }
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005196 if (ctx->ht.enabled) {
5197 if (conf_is_ht40_minus(conf)) {
5198 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005199 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005200 ctx->ht.is_40mhz = true;
5201 } else if (conf_is_ht40_plus(conf)) {
5202 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005203 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005204 ctx->ht.is_40mhz = true;
5205 } else {
5206 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005207 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005208 ctx->ht.is_40mhz = false;
5209 }
5210 } else
5211 ctx->ht.is_40mhz = false;
5212
5213 /*
5214 * Default to no protection. Protection mode will
5215 * later be set from BSS config in il_ht_conf
5216 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005217 ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005218
5219 /* if we are switching from ht to 2.4 clear flags
5220 * from any ht related info since 2.4 does not
5221 * support ht */
5222 if ((le16_to_cpu(ctx->staging.channel) != ch))
5223 ctx->staging.flags = 0;
5224
5225 il_set_rxon_channel(il, channel, ctx);
5226 il_set_rxon_ht(il, ht_conf);
5227
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005228 il_set_flags_for_band(il, ctx, channel->band, ctx->vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005229
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005230 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005231
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005232 if (il->cfg->ops->legacy->update_bcast_stations)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005233 ret = il->cfg->ops->legacy->update_bcast_stations(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005234
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005235set_ch_out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005236 /* The list of supported rates and rate mask can be different
5237 * for each band; since the band may have changed, reset
5238 * the rate mask to what mac80211 lists */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005239 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005240 }
5241
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005242 if (changed & (IEEE80211_CONF_CHANGE_PS | IEEE80211_CONF_CHANGE_IDLE)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005243 ret = il_power_update_mode(il, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005244 if (ret)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005245 D_MAC80211("Error setting sleep level\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005246 }
5247
5248 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005249 D_MAC80211("TX Power old=%d new=%d\n", il->tx_power_user_lmt,
5250 conf->power_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005251
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005252 il_set_tx_power(il, conf->power_level, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005253 }
5254
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005255 if (!il_is_ready(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005256 D_MAC80211("leave - not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005257 goto out;
5258 }
5259
5260 if (scan_active)
5261 goto out;
5262
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005263 if (memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging)))
5264 il_commit_rxon(il, ctx);
5265 else
5266 D_INFO("Not re-sending same RXON configuration.\n");
5267 if (ht_changed)
5268 il_update_qos(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005269
5270out:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005271 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005272 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005273 return ret;
5274}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005275EXPORT_SYMBOL(il_mac_config);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005276
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005277void
5278il_mac_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005279{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005280 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005281 unsigned long flags;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005282 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005283
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005284 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005285 return;
5286
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005287 mutex_lock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005288 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005289
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005290 spin_lock_irqsave(&il->lock, flags);
5291 memset(&il->current_ht_config, 0, sizeof(struct il_ht_config));
5292 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005293
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005294 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005295
5296 /* new association get rid of ibss beacon skb */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005297 if (il->beacon_skb)
5298 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005299
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005300 il->beacon_skb = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005301
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005302 il->timestamp = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005303
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005304 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005305
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005306 il_scan_cancel_timeout(il, 100);
5307 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005308 D_MAC80211("leave - not ready\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005309 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005310 return;
5311 }
5312
5313 /* we are restarting association process
5314 * clear RXON_FILTER_ASSOC_MSK bit
5315 */
5316 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005317 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005318
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005319 il_set_rate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005320
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005321 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005322
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005323 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005324}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005325EXPORT_SYMBOL(il_mac_reset_tsf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005326
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005327static void
5328il_ht_conf(struct il_priv *il, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005329{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005330 struct il_ht_config *ht_conf = &il->current_ht_config;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005331 struct ieee80211_sta *sta;
5332 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005333 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005334
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005335 D_ASSOC("enter:\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005336
5337 if (!ctx->ht.enabled)
5338 return;
5339
5340 ctx->ht.protection =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005341 bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005342 ctx->ht.non_gf_sta_present =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005343 !!(bss_conf->
5344 ht_operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005345
5346 ht_conf->single_chain_sufficient = false;
5347
5348 switch (vif->type) {
5349 case NL80211_IFTYPE_STATION:
5350 rcu_read_lock();
5351 sta = ieee80211_find_sta(vif, bss_conf->bssid);
5352 if (sta) {
5353 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
5354 int maxstreams;
5355
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005356 maxstreams =
5357 (ht_cap->mcs.
5358 tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
5359 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005360 maxstreams += 1;
5361
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005362 if (ht_cap->mcs.rx_mask[1] == 0 &&
5363 ht_cap->mcs.rx_mask[2] == 0)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005364 ht_conf->single_chain_sufficient = true;
5365 if (maxstreams <= 1)
5366 ht_conf->single_chain_sufficient = true;
5367 } else {
5368 /*
5369 * If at all, this can only happen through a race
5370 * when the AP disconnects us while we're still
5371 * setting up the connection, in that case mac80211
5372 * will soon tell us about that.
5373 */
5374 ht_conf->single_chain_sufficient = true;
5375 }
5376 rcu_read_unlock();
5377 break;
5378 case NL80211_IFTYPE_ADHOC:
5379 ht_conf->single_chain_sufficient = true;
5380 break;
5381 default:
5382 break;
5383 }
5384
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005385 D_ASSOC("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005386}
5387
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005388static inline void
5389il_set_no_assoc(struct il_priv *il, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005390{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005391 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005392
5393 /*
5394 * inform the ucode that there is no longer an
5395 * association and that no more packets should be
5396 * sent
5397 */
5398 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5399 ctx->staging.assoc_id = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005400 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005401}
5402
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005403static void
5404il_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005405{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005406 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005407 unsigned long flags;
5408 __le64 timestamp;
5409 struct sk_buff *skb = ieee80211_beacon_get(hw, vif);
5410
5411 if (!skb)
5412 return;
5413
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005414 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005415
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005416 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005417
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005418 if (!il->beacon_ctx) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005419 IL_ERR("update beacon but no beacon context!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005420 dev_kfree_skb(skb);
5421 return;
5422 }
5423
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005424 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005425
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005426 if (il->beacon_skb)
5427 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005428
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005429 il->beacon_skb = skb;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005430
5431 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005432 il->timestamp = le64_to_cpu(timestamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005433
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005434 D_MAC80211("leave\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005435 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005436
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005437 if (!il_is_ready_rf(il)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005438 D_MAC80211("leave - RF not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005439 return;
5440 }
5441
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005442 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005443}
5444
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005445void
5446il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5447 struct ieee80211_bss_conf *bss_conf, u32 changes)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005448{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005449 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005450 struct il_rxon_context *ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005451 int ret;
5452
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005453 if (WARN_ON(!il->cfg->ops->legacy))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005454 return;
5455
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005456 D_MAC80211("changes = 0x%X\n", changes);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005457
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005458 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005459
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005460 if (!il_is_alive(il)) {
5461 mutex_unlock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005462 return;
5463 }
5464
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005465 if (changes & BSS_CHANGED_QOS) {
5466 unsigned long flags;
5467
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005468 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005469 ctx->qos_data.qos_active = bss_conf->qos;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005470 il_update_qos(il, ctx);
5471 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005472 }
5473
5474 if (changes & BSS_CHANGED_BEACON_ENABLED) {
5475 /*
5476 * the add_interface code must make sure we only ever
5477 * have a single interface that could be beaconing at
5478 * any time.
5479 */
5480 if (vif->bss_conf.enable_beacon)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005481 il->beacon_ctx = ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005482 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005483 il->beacon_ctx = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005484 }
5485
5486 if (changes & BSS_CHANGED_BSSID) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005487 D_MAC80211("BSSID %pM\n", bss_conf->bssid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005488
5489 /*
5490 * If there is currently a HW scan going on in the
5491 * background then we need to cancel it else the RXON
5492 * below/in post_associate will fail.
5493 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005494 if (il_scan_cancel_timeout(il, 100)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005495 IL_WARN("Aborted scan still in progress after 100ms\n");
5496 D_MAC80211("leaving - scan abort failed.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005497 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005498 return;
5499 }
5500
5501 /* mac80211 only sets assoc when in STATION mode */
5502 if (vif->type == NL80211_IFTYPE_ADHOC || bss_conf->assoc) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005503 memcpy(ctx->staging.bssid_addr, bss_conf->bssid,
5504 ETH_ALEN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005505
5506 /* currently needed in a few places */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005507 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005508 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005509 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005510 }
5511
5512 }
5513
5514 /*
5515 * This needs to be after setting the BSSID in case
5516 * mac80211 decides to do both changes at once because
5517 * it will invoke post_associate.
5518 */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005519 if (vif->type == NL80211_IFTYPE_ADHOC && (changes & BSS_CHANGED_BEACON))
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005520 il_beacon_update(hw, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005521
5522 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005523 D_MAC80211("ERP_PREAMBLE %d\n", bss_conf->use_short_preamble);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005524 if (bss_conf->use_short_preamble)
5525 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
5526 else
5527 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
5528 }
5529
5530 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005531 D_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005532 if (bss_conf->use_cts_prot && il->band != IEEE80211_BAND_5GHZ)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005533 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
5534 else
5535 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
5536 if (bss_conf->use_cts_prot)
5537 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
5538 else
5539 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
5540 }
5541
5542 if (changes & BSS_CHANGED_BASIC_RATES) {
5543 /* XXX use this information
5544 *
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005545 * To do that, remove code from il_set_rate() and put something
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005546 * like this here:
5547 *
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005548 if (A-band)
5549 ctx->staging.ofdm_basic_rates =
5550 bss_conf->basic_rates;
5551 else
5552 ctx->staging.ofdm_basic_rates =
5553 bss_conf->basic_rates >> 4;
5554 ctx->staging.cck_basic_rates =
5555 bss_conf->basic_rates & 0xF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005556 */
5557 }
5558
5559 if (changes & BSS_CHANGED_HT) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005560 il_ht_conf(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005561
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005562 if (il->cfg->ops->hcmd->set_rxon_chain)
5563 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005564 }
5565
5566 if (changes & BSS_CHANGED_ASSOC) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005567 D_MAC80211("ASSOC %d\n", bss_conf->assoc);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005568 if (bss_conf->assoc) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005569 il->timestamp = bss_conf->timestamp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005570
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005571 if (!il_is_rfkill(il))
5572 il->cfg->ops->legacy->post_associate(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005573 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005574 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005575 }
5576
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005577 if (changes && il_is_associated_ctx(ctx) && bss_conf->aid) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005578 D_MAC80211("Changes (%#x) while associated\n", changes);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005579 ret = il_send_rxon_assoc(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005580 if (!ret) {
5581 /* Sync active_rxon with latest change. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005582 memcpy((void *)&ctx->active, &ctx->staging,
5583 sizeof(struct il_rxon_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005584 }
5585 }
5586
5587 if (changes & BSS_CHANGED_BEACON_ENABLED) {
5588 if (vif->bss_conf.enable_beacon) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005589 memcpy(ctx->staging.bssid_addr, bss_conf->bssid,
5590 ETH_ALEN);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005591 memcpy(il->bssid, bss_conf->bssid, ETH_ALEN);
5592 il->cfg->ops->legacy->config_ap(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005593 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005594 il_set_no_assoc(il, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005595 }
5596
5597 if (changes & BSS_CHANGED_IBSS) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005598 ret =
5599 il->cfg->ops->legacy->manage_ibss_station(il, vif,
5600 bss_conf->
5601 ibss_joined);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005602 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005603 IL_ERR("failed to %s IBSS station %pM\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005604 bss_conf->ibss_joined ? "add" : "remove",
5605 bss_conf->bssid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005606 }
5607
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005608 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005609
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005610 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005611}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005612EXPORT_SYMBOL(il_mac_bss_info_changed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005613
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005614irqreturn_t
5615il_isr(int irq, void *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005616{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005617 struct il_priv *il = data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005618 u32 inta, inta_mask;
5619 u32 inta_fh;
5620 unsigned long flags;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005621 if (!il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005622 return IRQ_NONE;
5623
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005624 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005625
5626 /* Disable (but don't clear!) interrupts here to avoid
5627 * back-to-back ISRs and sporadic interrupts from our NIC.
5628 * If we have something to service, the tasklet will re-enable ints.
5629 * If we *don't* have something, we'll re-enable before leaving here. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005630 inta_mask = _il_rd(il, CSR_INT_MASK); /* just for debug */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005631 _il_wr(il, CSR_INT_MASK, 0x00000000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005632
5633 /* Discover which interrupts are active/pending */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005634 inta = _il_rd(il, CSR_INT);
5635 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005636
5637 /* Ignore interrupt if there's nothing in NIC to service.
5638 * This may be due to IRQ shared with another device,
5639 * or due to sporadic interrupts thrown from our NIC. */
5640 if (!inta && !inta_fh) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005641 D_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005642 goto none;
5643 }
5644
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02005645 if (inta == 0xFFFFFFFF || (inta & 0xFFFFFFF0) == 0xa5a5a5a0) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005646 /* Hardware disappeared. It might have already raised
5647 * an interrupt */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005648 IL_WARN("HARDWARE GONE?? INTA == 0x%08x\n", inta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005649 goto unplugged;
5650 }
5651
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005652 D_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta, inta_mask,
5653 inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005654
5655 inta &= ~CSR_INT_BIT_SCD;
5656
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005657 /* il_irq_tasklet() will service interrupts and re-enable them */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005658 if (likely(inta || inta_fh))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005659 tasklet_schedule(&il->irq_tasklet);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005660
5661unplugged:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005662 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005663 return IRQ_HANDLED;
5664
5665none:
5666 /* re-enable interrupts here since we don't have anything to service. */
Stanislaw Gruszka93fd74e2011-04-28 11:51:30 +02005667 /* only Re-enable if disabled by irq */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005668 if (test_bit(S_INT_ENABLED, &il->status))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005669 il_enable_interrupts(il);
5670 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005671 return IRQ_NONE;
5672}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005673EXPORT_SYMBOL(il_isr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005674
5675/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005676 * il_tx_cmd_protection: Set rts/cts. 3945 and 4965 only share this
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005677 * function.
5678 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005679void
5680il_tx_cmd_protection(struct il_priv *il, struct ieee80211_tx_info *info,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01005681 __le16 fc, __le32 *tx_flags)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005682{
5683 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) {
5684 *tx_flags |= TX_CMD_FLG_RTS_MSK;
5685 *tx_flags &= ~TX_CMD_FLG_CTS_MSK;
5686 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
5687
5688 if (!ieee80211_is_mgmt(fc))
5689 return;
5690
5691 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
5692 case cpu_to_le16(IEEE80211_STYPE_AUTH):
5693 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
5694 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
5695 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
5696 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
5697 *tx_flags |= TX_CMD_FLG_CTS_MSK;
5698 break;
5699 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005700 } else if (info->control.rates[0].
5701 flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005702 *tx_flags &= ~TX_CMD_FLG_RTS_MSK;
5703 *tx_flags |= TX_CMD_FLG_CTS_MSK;
5704 *tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
5705 }
5706}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005707EXPORT_SYMBOL(il_tx_cmd_protection);