aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl3945-base.c
diff options
context:
space:
mode:
authorCahill, Ben M <ben.m.cahill@intel.com>2007-11-28 22:09:55 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:05:23 -0500
commit6440adb5760a897497c2b1ebdccc32c7944fd57f (patch)
treef7ab0b2eef45f35b79f6f4e60bccdf67514b5889 /drivers/net/wireless/iwlwifi/iwl3945-base.c
parent8b6eaea8ec79b111a18a1c60333deb16ba27e6b3 (diff)
iwlwifi: add comments to iwl*-base.c
Add comments to iwlXXXX-base.c Signed-off-by: Cahill, Ben M <ben.m.cahill@intel.com> Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl3945-base.c')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl3945-base.c215
1 files changed, 177 insertions, 38 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c
index ba5146ffdf4d..71e9b7c52d57 100644
--- a/drivers/net/wireless/iwlwifi/iwl3945-base.c
+++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c
@@ -63,13 +63,13 @@ static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
63 ******************************************************************************/ 63 ******************************************************************************/
64 64
65/* module parameters */ 65/* module parameters */
66static int iwl3945_param_disable_hw_scan; 66static int iwl3945_param_disable_hw_scan; /* def: 0 = use 3945's h/w scan */
67static int iwl3945_param_debug; 67static int iwl3945_param_debug; /* def: 0 = minimal debug log messages */
68static int iwl3945_param_disable; /* def: enable radio */ 68static int iwl3945_param_disable; /* def: 0 = enable radio */
69static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */ 69static int iwl3945_param_antenna; /* def: 0 = both antennas (use diversity) */
70int iwl3945_param_hwcrypto; /* def: using software encryption */ 70int iwl3945_param_hwcrypto; /* def: 0 = use software encryption */
71static int iwl3945_param_qos_enable = 1; 71static int iwl3945_param_qos_enable = 1; /* def: 1 = use quality of service */
72int iwl3945_param_queues_num = IWL_MAX_NUM_QUEUES; 72int iwl3945_param_queues_num = IWL_MAX_NUM_QUEUES; /* def: 8 Tx queues */
73 73
74/* 74/*
75 * module name, copyright, version, etc. 75 * module name, copyright, version, etc.
@@ -184,17 +184,24 @@ static void iwl3945_print_hex_dump(int level, void *p, u32 len)
184 * 184 *
185 * Theory of operation 185 * Theory of operation
186 * 186 *
187 * A queue is a circular buffers with 'Read' and 'Write' pointers. 187 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
188 * 2 empty entries always kept in the buffer to protect from overflow. 188 * of buffer descriptors, each of which points to one or more data buffers for
189 * the device to read from or fill. Driver and device exchange status of each
190 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
191 * entries in each circular buffer, to protect against confusing empty and full
192 * queue states.
193 *
194 * The device reads or writes the data in the queues via the device's several
195 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
189 * 196 *
190 * For Tx queue, there are low mark and high mark limits. If, after queuing 197 * For Tx queue, there are low mark and high mark limits. If, after queuing
191 * the packet for Tx, free space become < low mark, Tx queue stopped. When 198 * the packet for Tx, free space become < low mark, Tx queue stopped. When
192 * reclaiming packets (on 'tx done IRQ), if free space become > high mark, 199 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
193 * Tx queue resumed. 200 * Tx queue resumed.
194 * 201 *
195 * The IWL operates with six queues, one receive queue in the device's 202 * The 3945 operates with six queues: One receive queue, one transmit queue
196 * sram, one transmit queue for sending commands to the device firmware, 203 * (#4) for sending commands to the device firmware, and four transmit queues
197 * and four transmit queues for data. 204 * (#0-3) for data tx via EDCA. An additional 2 HCCA queues are unused.
198 ***************************************************/ 205 ***************************************************/
199 206
200static int iwl3945_queue_space(const struct iwl3945_queue *q) 207static int iwl3945_queue_space(const struct iwl3945_queue *q)
@@ -213,13 +220,21 @@ static int iwl3945_queue_space(const struct iwl3945_queue *q)
213 return s; 220 return s;
214} 221}
215 222
216/* XXX: n_bd must be power-of-two size */ 223/**
224 * iwl3945_queue_inc_wrap - increment queue index, wrap back to beginning
225 * @index -- current index
226 * @n_bd -- total number of entries in queue (must be power of 2)
227 */
217static inline int iwl3945_queue_inc_wrap(int index, int n_bd) 228static inline int iwl3945_queue_inc_wrap(int index, int n_bd)
218{ 229{
219 return ++index & (n_bd - 1); 230 return ++index & (n_bd - 1);
220} 231}
221 232
222/* XXX: n_bd must be power-of-two size */ 233/**
234 * iwl3945_queue_dec_wrap - increment queue index, wrap back to end
235 * @index -- current index
236 * @n_bd -- total number of entries in queue (must be power of 2)
237 */
223static inline int iwl3945_queue_dec_wrap(int index, int n_bd) 238static inline int iwl3945_queue_dec_wrap(int index, int n_bd)
224{ 239{
225 return --index & (n_bd - 1); 240 return --index & (n_bd - 1);
@@ -234,12 +249,17 @@ static inline int x2_queue_used(const struct iwl3945_queue *q, int i)
234 249
235static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge) 250static inline u8 get_cmd_index(struct iwl3945_queue *q, u32 index, int is_huge)
236{ 251{
252 /* This is for scan command, the big buffer at end of command array */
237 if (is_huge) 253 if (is_huge)
238 return q->n_window; 254 return q->n_window; /* must be power of 2 */
239 255
256 /* Otherwise, use normal size buffers */
240 return index & (q->n_window - 1); 257 return index & (q->n_window - 1);
241} 258}
242 259
260/**
261 * iwl3945_queue_init - Initialize queue's high/low-water and read/write indexes
262 */
243static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q, 263static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q,
244 int count, int slots_num, u32 id) 264 int count, int slots_num, u32 id)
245{ 265{
@@ -268,11 +288,16 @@ static int iwl3945_queue_init(struct iwl3945_priv *priv, struct iwl3945_queue *q
268 return 0; 288 return 0;
269} 289}
270 290
291/**
292 * iwl3945_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
293 */
271static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv, 294static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
272 struct iwl3945_tx_queue *txq, u32 id) 295 struct iwl3945_tx_queue *txq, u32 id)
273{ 296{
274 struct pci_dev *dev = priv->pci_dev; 297 struct pci_dev *dev = priv->pci_dev;
275 298
299 /* Driver private data, only for Tx (not command) queues,
300 * not shared with device. */
276 if (id != IWL_CMD_QUEUE_NUM) { 301 if (id != IWL_CMD_QUEUE_NUM) {
277 txq->txb = kmalloc(sizeof(txq->txb[0]) * 302 txq->txb = kmalloc(sizeof(txq->txb[0]) *
278 TFD_QUEUE_SIZE_MAX, GFP_KERNEL); 303 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
@@ -284,6 +309,8 @@ static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
284 } else 309 } else
285 txq->txb = NULL; 310 txq->txb = NULL;
286 311
312 /* Circular buffer of transmit frame descriptors (TFDs),
313 * shared with device */
287 txq->bd = pci_alloc_consistent(dev, 314 txq->bd = pci_alloc_consistent(dev,
288 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX, 315 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
289 &txq->q.dma_addr); 316 &txq->q.dma_addr);
@@ -306,6 +333,9 @@ static int iwl3945_tx_queue_alloc(struct iwl3945_priv *priv,
306 return -ENOMEM; 333 return -ENOMEM;
307} 334}
308 335
336/**
337 * iwl3945_tx_queue_init - Allocate and initialize one tx/cmd queue
338 */
309int iwl3945_tx_queue_init(struct iwl3945_priv *priv, 339int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
310 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id) 340 struct iwl3945_tx_queue *txq, int slots_num, u32 txq_id)
311{ 341{
@@ -313,9 +343,14 @@ int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
313 int len; 343 int len;
314 int rc = 0; 344 int rc = 0;
315 345
316 /* allocate command space + one big command for scan since scan 346 /*
317 * command is very huge the system will not have two scan at the 347 * Alloc buffer array for commands (Tx or other types of commands).
318 * same time */ 348 * For the command queue (#4), allocate command space + one big
349 * command for scan, since scan command is very huge; the system will
350 * not have two scans at the same time, so only one is needed.
351 * For data Tx queues (all other queues), no super-size command
352 * space is needed.
353 */
319 len = sizeof(struct iwl3945_cmd) * slots_num; 354 len = sizeof(struct iwl3945_cmd) * slots_num;
320 if (txq_id == IWL_CMD_QUEUE_NUM) 355 if (txq_id == IWL_CMD_QUEUE_NUM)
321 len += IWL_MAX_SCAN_SIZE; 356 len += IWL_MAX_SCAN_SIZE;
@@ -323,6 +358,7 @@ int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
323 if (!txq->cmd) 358 if (!txq->cmd)
324 return -ENOMEM; 359 return -ENOMEM;
325 360
361 /* Alloc driver data array and TFD circular buffer */
326 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id); 362 rc = iwl3945_tx_queue_alloc(priv, txq, txq_id);
327 if (rc) { 363 if (rc) {
328 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd); 364 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
@@ -334,8 +370,11 @@ int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
334 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise 370 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
335 * iwl3945_queue_inc_wrap and iwl3945_queue_dec_wrap are broken. */ 371 * iwl3945_queue_inc_wrap and iwl3945_queue_dec_wrap are broken. */
336 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1)); 372 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
373
374 /* Initialize queue high/low-water, head/tail indexes */
337 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id); 375 iwl3945_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
338 376
377 /* Tell device where to find queue, enable DMA channel. */
339 iwl3945_hw_tx_queue_init(priv, txq); 378 iwl3945_hw_tx_queue_init(priv, txq);
340 379
341 return 0; 380 return 0;
@@ -346,8 +385,8 @@ int iwl3945_tx_queue_init(struct iwl3945_priv *priv,
346 * @txq: Transmit queue to deallocate. 385 * @txq: Transmit queue to deallocate.
347 * 386 *
348 * Empty queue by removing and destroying all BD's. 387 * Empty queue by removing and destroying all BD's.
349 * Free all buffers. txq itself is not freed. 388 * Free all buffers.
350 * 389 * 0-fill, but do not free "txq" descriptor structure.
351 */ 390 */
352void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq) 391void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq)
353{ 392{
@@ -367,19 +406,21 @@ void iwl3945_tx_queue_free(struct iwl3945_priv *priv, struct iwl3945_tx_queue *t
367 if (q->id == IWL_CMD_QUEUE_NUM) 406 if (q->id == IWL_CMD_QUEUE_NUM)
368 len += IWL_MAX_SCAN_SIZE; 407 len += IWL_MAX_SCAN_SIZE;
369 408
409 /* De-alloc array of command/tx buffers */
370 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd); 410 pci_free_consistent(dev, len, txq->cmd, txq->dma_addr_cmd);
371 411
372 /* free buffers belonging to queue itself */ 412 /* De-alloc circular buffer of TFDs */
373 if (txq->q.n_bd) 413 if (txq->q.n_bd)
374 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) * 414 pci_free_consistent(dev, sizeof(struct iwl3945_tfd_frame) *
375 txq->q.n_bd, txq->bd, txq->q.dma_addr); 415 txq->q.n_bd, txq->bd, txq->q.dma_addr);
376 416
417 /* De-alloc array of per-TFD driver data */
377 if (txq->txb) { 418 if (txq->txb) {
378 kfree(txq->txb); 419 kfree(txq->txb);
379 txq->txb = NULL; 420 txq->txb = NULL;
380 } 421 }
381 422
382 /* 0 fill whole structure */ 423 /* 0-fill queue descriptor structure */
383 memset(txq, 0, sizeof(*txq)); 424 memset(txq, 0, sizeof(*txq));
384} 425}
385 426
@@ -392,6 +433,11 @@ const u8 iwl3945_broadcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
392 433
393/**************************************************************/ 434/**************************************************************/
394#if 0 /* temporary disable till we add real remove station */ 435#if 0 /* temporary disable till we add real remove station */
436/**
437 * iwl3945_remove_station - Remove driver's knowledge of station.
438 *
439 * NOTE: This does not remove station from device's station table.
440 */
395static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap) 441static u8 iwl3945_remove_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap)
396{ 442{
397 int index = IWL_INVALID_STATION; 443 int index = IWL_INVALID_STATION;
@@ -428,6 +474,12 @@ out:
428 return 0; 474 return 0;
429} 475}
430#endif 476#endif
477
478/**
479 * iwl3945_clear_stations_table - Clear the driver's station table
480 *
481 * NOTE: This does not clear or otherwise alter the device's station table.
482 */
431static void iwl3945_clear_stations_table(struct iwl3945_priv *priv) 483static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
432{ 484{
433 unsigned long flags; 485 unsigned long flags;
@@ -440,7 +492,9 @@ static void iwl3945_clear_stations_table(struct iwl3945_priv *priv)
440 spin_unlock_irqrestore(&priv->sta_lock, flags); 492 spin_unlock_irqrestore(&priv->sta_lock, flags);
441} 493}
442 494
443 495/**
496 * iwl3945_add_station - Add station to station tables in driver and device
497 */
444u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags) 498u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8 flags)
445{ 499{
446 int i; 500 int i;
@@ -486,6 +540,7 @@ u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8
486 station->used = 1; 540 station->used = 1;
487 priv->num_stations++; 541 priv->num_stations++;
488 542
543 /* Set up the REPLY_ADD_STA command to send to device */
489 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd)); 544 memset(&station->sta, 0, sizeof(struct iwl3945_addsta_cmd));
490 memcpy(station->sta.sta.addr, addr, ETH_ALEN); 545 memcpy(station->sta.sta.addr, addr, ETH_ALEN);
491 station->sta.mode = 0; 546 station->sta.mode = 0;
@@ -504,6 +559,8 @@ u8 iwl3945_add_station(struct iwl3945_priv *priv, const u8 *addr, int is_ap, u8
504 le16_to_cpu(station->sta.rate_n_flags); 559 le16_to_cpu(station->sta.rate_n_flags);
505 560
506 spin_unlock_irqrestore(&priv->sta_lock, flags_spin); 561 spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
562
563 /* Add station to device's station table */
507 iwl3945_send_add_station(priv, &station->sta, flags); 564 iwl3945_send_add_station(priv, &station->sta, flags);
508 return index; 565 return index;
509 566
@@ -673,6 +730,8 @@ static int iwl3945_enqueue_hcmd(struct iwl3945_priv *priv, struct iwl3945_host_c
673 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM); 730 fix_size, q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
674 731
675 txq->need_update = 1; 732 txq->need_update = 1;
733
734 /* Increment and update queue's write index */
676 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd); 735 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd);
677 ret = iwl3945_tx_queue_update_write_ptr(priv, txq); 736 ret = iwl3945_tx_queue_update_write_ptr(priv, txq);
678 737
@@ -1511,7 +1570,7 @@ static void get_eeprom_mac(struct iwl3945_priv *priv, u8 *mac)
1511/** 1570/**
1512 * iwl3945_eeprom_init - read EEPROM contents 1571 * iwl3945_eeprom_init - read EEPROM contents
1513 * 1572 *
1514 * Load the EEPROM from adapter into priv->eeprom 1573 * Load the EEPROM contents from adapter into priv->eeprom
1515 * 1574 *
1516 * NOTE: This routine uses the non-debug IO access functions. 1575 * NOTE: This routine uses the non-debug IO access functions.
1517 */ 1576 */
@@ -1536,6 +1595,7 @@ int iwl3945_eeprom_init(struct iwl3945_priv *priv)
1536 return -ENOENT; 1595 return -ENOENT;
1537 } 1596 }
1538 1597
1598 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
1539 rc = iwl3945_eeprom_acquire_semaphore(priv); 1599 rc = iwl3945_eeprom_acquire_semaphore(priv);
1540 if (rc < 0) { 1600 if (rc < 0) {
1541 IWL_ERROR("Failed to acquire EEPROM semaphore.\n"); 1601 IWL_ERROR("Failed to acquire EEPROM semaphore.\n");
@@ -2631,21 +2691,23 @@ static void iwl3945_build_tx_cmd_basic(struct iwl3945_priv *priv,
2631 cmd->cmd.tx.next_frame_len = 0; 2691 cmd->cmd.tx.next_frame_len = 0;
2632} 2692}
2633 2693
2694/**
2695 * iwl3945_get_sta_id - Find station's index within station table
2696 */
2634static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr) 2697static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *hdr)
2635{ 2698{
2636 int sta_id; 2699 int sta_id;
2637 u16 fc = le16_to_cpu(hdr->frame_control); 2700 u16 fc = le16_to_cpu(hdr->frame_control);
2638 2701
2639 /* If this frame is broadcast or not data then use the broadcast 2702 /* If this frame is broadcast or management, use broadcast station id */
2640 * station id */
2641 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) || 2703 if (((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA) ||
2642 is_multicast_ether_addr(hdr->addr1)) 2704 is_multicast_ether_addr(hdr->addr1))
2643 return priv->hw_setting.bcast_sta_id; 2705 return priv->hw_setting.bcast_sta_id;
2644 2706
2645 switch (priv->iw_mode) { 2707 switch (priv->iw_mode) {
2646 2708
2647 /* If this frame is part of a BSS network (we're a station), then 2709 /* If we are a client station in a BSS network, use the special
2648 * we use the AP's station id */ 2710 * AP station entry (that's the only station we communicate with) */
2649 case IEEE80211_IF_TYPE_STA: 2711 case IEEE80211_IF_TYPE_STA:
2650 return IWL_AP_ID; 2712 return IWL_AP_ID;
2651 2713
@@ -2656,11 +2718,12 @@ static int iwl3945_get_sta_id(struct iwl3945_priv *priv, struct ieee80211_hdr *h
2656 return sta_id; 2718 return sta_id;
2657 return priv->hw_setting.bcast_sta_id; 2719 return priv->hw_setting.bcast_sta_id;
2658 2720
2659 /* If this frame is part of a IBSS network, then we use the 2721 /* If this frame is going out to an IBSS network, find the station,
2660 * target specific station id */ 2722 * or create a new station table entry */
2661 case IEEE80211_IF_TYPE_IBSS: { 2723 case IEEE80211_IF_TYPE_IBSS: {
2662 DECLARE_MAC_BUF(mac); 2724 DECLARE_MAC_BUF(mac);
2663 2725
2726 /* Create new station table entry */
2664 sta_id = iwl3945_hw_find_station(priv, hdr->addr1); 2727 sta_id = iwl3945_hw_find_station(priv, hdr->addr1);
2665 if (sta_id != IWL_INVALID_STATION) 2728 if (sta_id != IWL_INVALID_STATION)
2666 return sta_id; 2729 return sta_id;
@@ -2746,6 +2809,8 @@ static int iwl3945_tx_skb(struct iwl3945_priv *priv,
2746 spin_unlock_irqrestore(&priv->lock, flags); 2809 spin_unlock_irqrestore(&priv->lock, flags);
2747 2810
2748 hdr_len = ieee80211_get_hdrlen(fc); 2811 hdr_len = ieee80211_get_hdrlen(fc);
2812
2813 /* Find (or create) index into station table for destination station */
2749 sta_id = iwl3945_get_sta_id(priv, hdr); 2814 sta_id = iwl3945_get_sta_id(priv, hdr);
2750 if (sta_id == IWL_INVALID_STATION) { 2815 if (sta_id == IWL_INVALID_STATION) {
2751 DECLARE_MAC_BUF(mac); 2816 DECLARE_MAC_BUF(mac);
@@ -2767,30 +2832,52 @@ static int iwl3945_tx_skb(struct iwl3945_priv *priv,
2767 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG)); 2832 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG));
2768 seq_number += 0x10; 2833 seq_number += 0x10;
2769 } 2834 }
2835
2836 /* Descriptor for chosen Tx queue */
2770 txq = &priv->txq[txq_id]; 2837 txq = &priv->txq[txq_id];
2771 q = &txq->q; 2838 q = &txq->q;
2772 2839
2773 spin_lock_irqsave(&priv->lock, flags); 2840 spin_lock_irqsave(&priv->lock, flags);
2774 2841
2842 /* Set up first empty TFD within this queue's circular TFD buffer */
2775 tfd = &txq->bd[q->write_ptr]; 2843 tfd = &txq->bd[q->write_ptr];
2776 memset(tfd, 0, sizeof(*tfd)); 2844 memset(tfd, 0, sizeof(*tfd));
2777 control_flags = (u32 *) tfd; 2845 control_flags = (u32 *) tfd;
2778 idx = get_cmd_index(q, q->write_ptr, 0); 2846 idx = get_cmd_index(q, q->write_ptr, 0);
2779 2847
2848 /* Set up driver data for this TFD */
2780 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info)); 2849 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl3945_tx_info));
2781 txq->txb[q->write_ptr].skb[0] = skb; 2850 txq->txb[q->write_ptr].skb[0] = skb;
2782 memcpy(&(txq->txb[q->write_ptr].status.control), 2851 memcpy(&(txq->txb[q->write_ptr].status.control),
2783 ctl, sizeof(struct ieee80211_tx_control)); 2852 ctl, sizeof(struct ieee80211_tx_control));
2853
2854 /* Init first empty entry in queue's array of Tx/cmd buffers */
2784 out_cmd = &txq->cmd[idx]; 2855 out_cmd = &txq->cmd[idx];
2785 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr)); 2856 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
2786 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx)); 2857 memset(&out_cmd->cmd.tx, 0, sizeof(out_cmd->cmd.tx));
2858
2859 /*
2860 * Set up the Tx-command (not MAC!) header.
2861 * Store the chosen Tx queue and TFD index within the sequence field;
2862 * after Tx, uCode's Tx response will return this value so driver can
2863 * locate the frame within the tx queue and do post-tx processing.
2864 */
2787 out_cmd->hdr.cmd = REPLY_TX; 2865 out_cmd->hdr.cmd = REPLY_TX;
2788 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) | 2866 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
2789 INDEX_TO_SEQ(q->write_ptr))); 2867 INDEX_TO_SEQ(q->write_ptr)));
2790 /* copy frags header */ 2868
2869 /* Copy MAC header from skb into command buffer */
2791 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len); 2870 memcpy(out_cmd->cmd.tx.hdr, hdr, hdr_len);
2792 2871
2793 /* hdr = (struct ieee80211_hdr *)out_cmd->cmd.tx.hdr; */ 2872 /*
2873 * Use the first empty entry in this queue's command buffer array
2874 * to contain the Tx command and MAC header concatenated together
2875 * (payload data will be in another buffer).
2876 * Size of this varies, due to varying MAC header length.
2877 * If end is not dword aligned, we'll have 2 extra bytes at the end
2878 * of the MAC header (device reads on dword boundaries).
2879 * We'll tell device about this padding later.
2880 */
2794 len = priv->hw_setting.tx_cmd_len + 2881 len = priv->hw_setting.tx_cmd_len +
2795 sizeof(struct iwl3945_cmd_header) + hdr_len; 2882 sizeof(struct iwl3945_cmd_header) + hdr_len;
2796 2883
@@ -2802,15 +2889,20 @@ static int iwl3945_tx_skb(struct iwl3945_priv *priv,
2802 else 2889 else
2803 len_org = 0; 2890 len_org = 0;
2804 2891
2892 /* Physical address of this Tx command's header (not MAC header!),
2893 * within command buffer array. */
2805 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx + 2894 txcmd_phys = txq->dma_addr_cmd + sizeof(struct iwl3945_cmd) * idx +
2806 offsetof(struct iwl3945_cmd, hdr); 2895 offsetof(struct iwl3945_cmd, hdr);
2807 2896
2897 /* Add buffer containing Tx command and MAC(!) header to TFD's
2898 * first entry */
2808 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len); 2899 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
2809 2900
2810 if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT)) 2901 if (!(ctl->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
2811 iwl3945_build_tx_cmd_hwcrypto(priv, ctl, out_cmd, skb, 0); 2902 iwl3945_build_tx_cmd_hwcrypto(priv, ctl, out_cmd, skb, 0);
2812 2903
2813 /* 802.11 null functions have no payload... */ 2904 /* Set up TFD's 2nd entry to point directly to remainder of skb,
2905 * if any (802.11 null frames have no payload). */
2814 len = skb->len - hdr_len; 2906 len = skb->len - hdr_len;
2815 if (len) { 2907 if (len) {
2816 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len, 2908 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
@@ -2818,13 +2910,16 @@ static int iwl3945_tx_skb(struct iwl3945_priv *priv,
2818 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len); 2910 iwl3945_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
2819 } 2911 }
2820 2912
2821 /* If there is no payload, then only one TFD is used */
2822 if (!len) 2913 if (!len)
2914 /* If there is no payload, then we use only one Tx buffer */
2823 *control_flags = TFD_CTL_COUNT_SET(1); 2915 *control_flags = TFD_CTL_COUNT_SET(1);
2824 else 2916 else
2917 /* Else use 2 buffers.
2918 * Tell 3945 about any padding after MAC header */
2825 *control_flags = TFD_CTL_COUNT_SET(2) | 2919 *control_flags = TFD_CTL_COUNT_SET(2) |
2826 TFD_CTL_PAD_SET(U32_PAD(len)); 2920 TFD_CTL_PAD_SET(U32_PAD(len));
2827 2921
2922 /* Total # bytes to be transmitted */
2828 len = (u16)skb->len; 2923 len = (u16)skb->len;
2829 out_cmd->cmd.tx.len = cpu_to_le16(len); 2924 out_cmd->cmd.tx.len = cpu_to_le16(len);
2830 2925
@@ -2854,6 +2949,7 @@ static int iwl3945_tx_skb(struct iwl3945_priv *priv,
2854 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr, 2949 iwl3945_print_hex_dump(IWL_DL_TX, (u8 *)out_cmd->cmd.tx.hdr,
2855 ieee80211_get_hdrlen(fc)); 2950 ieee80211_get_hdrlen(fc));
2856 2951
2952 /* Tell device the write index *just past* this latest filled TFD */
2857 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd); 2953 q->write_ptr = iwl3945_queue_inc_wrap(q->write_ptr, q->n_bd);
2858 rc = iwl3945_tx_queue_update_write_ptr(priv, txq); 2954 rc = iwl3945_tx_queue_update_write_ptr(priv, txq);
2859 spin_unlock_irqrestore(&priv->lock, flags); 2955 spin_unlock_irqrestore(&priv->lock, flags);
@@ -3329,11 +3425,11 @@ static void iwl3945_txstatus_to_ieee(struct iwl3945_priv *priv,
3329} 3425}
3330 3426
3331/** 3427/**
3332 * iwl3945_tx_queue_reclaim - Reclaim Tx queue entries no more used by NIC. 3428 * iwl3945_tx_queue_reclaim - Reclaim Tx queue entries already Tx'd
3333 * 3429 *
3334 * When FW advances 'R' index, all entries between old and 3430 * When FW advances 'R' index, all entries between old and new 'R' index
3335 * new 'R' index need to be reclaimed. As result, some free space 3431 * need to be reclaimed. As result, some free space forms. If there is
3336 * forms. If there is enough free space (> low mark), wake Tx queue. 3432 * enough free space (> low mark), wake the stack that feeds us.
3337 */ 3433 */
3338static int iwl3945_tx_queue_reclaim(struct iwl3945_priv *priv, int txq_id, int index) 3434static int iwl3945_tx_queue_reclaim(struct iwl3945_priv *priv, int txq_id, int index)
3339{ 3435{
@@ -3382,6 +3478,9 @@ static int iwl3945_is_tx_success(u32 status)
3382 * Generic RX handler implementations 3478 * Generic RX handler implementations
3383 * 3479 *
3384 ******************************************************************************/ 3480 ******************************************************************************/
3481/**
3482 * iwl3945_rx_reply_tx - Handle Tx response
3483 */
3385static void iwl3945_rx_reply_tx(struct iwl3945_priv *priv, 3484static void iwl3945_rx_reply_tx(struct iwl3945_priv *priv,
3386 struct iwl3945_rx_mem_buffer *rxb) 3485 struct iwl3945_rx_mem_buffer *rxb)
3387{ 3486{
@@ -3917,6 +4016,7 @@ int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_
3917 if (q->need_update == 0) 4016 if (q->need_update == 0)
3918 goto exit_unlock; 4017 goto exit_unlock;
3919 4018
4019 /* If power-saving is in use, make sure device is awake */
3920 if (test_bit(STATUS_POWER_PMI, &priv->status)) { 4020 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
3921 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1); 4021 reg = iwl3945_read32(priv, CSR_UCODE_DRV_GP1);
3922 4022
@@ -3930,10 +4030,14 @@ int iwl3945_rx_queue_update_write_ptr(struct iwl3945_priv *priv, struct iwl3945_
3930 if (rc) 4030 if (rc)
3931 goto exit_unlock; 4031 goto exit_unlock;
3932 4032
4033 /* Device expects a multiple of 8 */
3933 iwl3945_write_direct32(priv, FH_RSCSR_CHNL0_WPTR, 4034 iwl3945_write_direct32(priv, FH_RSCSR_CHNL0_WPTR,
3934 q->write & ~0x7); 4035 q->write & ~0x7);
3935 iwl3945_release_nic_access(priv); 4036 iwl3945_release_nic_access(priv);
4037
4038 /* Else device is assumed to be awake */
3936 } else 4039 } else
4040 /* Device expects a multiple of 8 */
3937 iwl3945_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7); 4041 iwl3945_write32(priv, FH_RSCSR_CHNL0_WPTR, q->write & ~0x7);
3938 4042
3939 4043
@@ -3975,9 +4079,12 @@ static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
3975 spin_lock_irqsave(&rxq->lock, flags); 4079 spin_lock_irqsave(&rxq->lock, flags);
3976 write = rxq->write & ~0x7; 4080 write = rxq->write & ~0x7;
3977 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) { 4081 while ((iwl3945_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
4082 /* Get next free Rx buffer, remove from free list */
3978 element = rxq->rx_free.next; 4083 element = rxq->rx_free.next;
3979 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list); 4084 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
3980 list_del(element); 4085 list_del(element);
4086
4087 /* Point to Rx buffer via next RBD in circular buffer */
3981 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr); 4088 rxq->bd[rxq->write] = iwl3945_dma_addr2rbd_ptr(priv, rxb->dma_addr);
3982 rxq->queue[rxq->write] = rxb; 4089 rxq->queue[rxq->write] = rxb;
3983 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK; 4090 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
@@ -3990,7 +4097,8 @@ static int iwl3945_rx_queue_restock(struct iwl3945_priv *priv)
3990 queue_work(priv->workqueue, &priv->rx_replenish); 4097 queue_work(priv->workqueue, &priv->rx_replenish);
3991 4098
3992 4099
3993 /* If we've added more space for the firmware to place data, tell it */ 4100 /* If we've added more space for the firmware to place data, tell it.
4101 * Increment device's write pointer in multiples of 8. */
3994 if ((write != (rxq->write & ~0x7)) 4102 if ((write != (rxq->write & ~0x7))
3995 || (abs(rxq->write - rxq->read) > 7)) { 4103 || (abs(rxq->write - rxq->read) > 7)) {
3996 spin_lock_irqsave(&rxq->lock, flags); 4104 spin_lock_irqsave(&rxq->lock, flags);
@@ -4023,6 +4131,8 @@ void iwl3945_rx_replenish(void *data)
4023 while (!list_empty(&rxq->rx_used)) { 4131 while (!list_empty(&rxq->rx_used)) {
4024 element = rxq->rx_used.next; 4132 element = rxq->rx_used.next;
4025 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list); 4133 rxb = list_entry(element, struct iwl3945_rx_mem_buffer, list);
4134
4135 /* Alloc a new receive buffer */
4026 rxb->skb = 4136 rxb->skb =
4027 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC); 4137 alloc_skb(IWL_RX_BUF_SIZE, __GFP_NOWARN | GFP_ATOMIC);
4028 if (!rxb->skb) { 4138 if (!rxb->skb) {
@@ -4036,6 +4146,8 @@ void iwl3945_rx_replenish(void *data)
4036 } 4146 }
4037 priv->alloc_rxb_skb++; 4147 priv->alloc_rxb_skb++;
4038 list_del(element); 4148 list_del(element);
4149
4150 /* Get physical address of RB/SKB */
4039 rxb->dma_addr = 4151 rxb->dma_addr =
4040 pci_map_single(priv->pci_dev, rxb->skb->data, 4152 pci_map_single(priv->pci_dev, rxb->skb->data,
4041 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE); 4153 IWL_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
@@ -4080,12 +4192,16 @@ int iwl3945_rx_queue_alloc(struct iwl3945_priv *priv)
4080 spin_lock_init(&rxq->lock); 4192 spin_lock_init(&rxq->lock);
4081 INIT_LIST_HEAD(&rxq->rx_free); 4193 INIT_LIST_HEAD(&rxq->rx_free);
4082 INIT_LIST_HEAD(&rxq->rx_used); 4194 INIT_LIST_HEAD(&rxq->rx_used);
4195
4196 /* Alloc the circular buffer of Read Buffer Descriptors (RBDs) */
4083 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr); 4197 rxq->bd = pci_alloc_consistent(dev, 4 * RX_QUEUE_SIZE, &rxq->dma_addr);
4084 if (!rxq->bd) 4198 if (!rxq->bd)
4085 return -ENOMEM; 4199 return -ENOMEM;
4200
4086 /* Fill the rx_used queue with _all_ of the Rx buffers */ 4201 /* Fill the rx_used queue with _all_ of the Rx buffers */
4087 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) 4202 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
4088 list_add_tail(&rxq->pool[i].list, &rxq->rx_used); 4203 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
4204
4089 /* Set us so that we have processed and used all buffers, but have 4205 /* Set us so that we have processed and used all buffers, but have
4090 * not restocked the Rx queue with fresh buffers */ 4206 * not restocked the Rx queue with fresh buffers */
4091 rxq->read = rxq->write = 0; 4207 rxq->read = rxq->write = 0;
@@ -4217,6 +4333,8 @@ static void iwl3945_rx_handle(struct iwl3945_priv *priv)
4217 int reclaim; 4333 int reclaim;
4218 unsigned long flags; 4334 unsigned long flags;
4219 4335
4336 /* uCode's read index (stored in shared DRAM) indicates the last Rx
4337 * buffer that the driver may process (last buffer filled by ucode). */
4220 r = iwl3945_hw_get_rx_read(priv); 4338 r = iwl3945_hw_get_rx_read(priv);
4221 i = rxq->read; 4339 i = rxq->read;
4222 4340
@@ -4297,6 +4415,9 @@ static void iwl3945_rx_handle(struct iwl3945_priv *priv)
4297 iwl3945_rx_queue_restock(priv); 4415 iwl3945_rx_queue_restock(priv);
4298} 4416}
4299 4417
4418/**
4419 * iwl3945_tx_queue_update_write_ptr - Send new write index to hardware
4420 */
4300static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv, 4421static int iwl3945_tx_queue_update_write_ptr(struct iwl3945_priv *priv,
4301 struct iwl3945_tx_queue *txq) 4422 struct iwl3945_tx_queue *txq)
4302{ 4423{
@@ -4926,6 +5047,11 @@ static void iwl3945_init_band_reference(const struct iwl3945_priv *priv, int ban
4926 } 5047 }
4927} 5048}
4928 5049
5050/**
5051 * iwl3945_get_channel_info - Find driver's private channel info
5052 *
5053 * Based on band and channel number.
5054 */
4929const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv, 5055const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945_priv *priv,
4930 int phymode, u16 channel) 5056 int phymode, u16 channel)
4931{ 5057{
@@ -4953,6 +5079,9 @@ const struct iwl3945_channel_info *iwl3945_get_channel_info(const struct iwl3945
4953#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \ 5079#define CHECK_AND_PRINT(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
4954 ? # x " " : "") 5080 ? # x " " : "")
4955 5081
5082/**
5083 * iwl3945_init_channel_map - Set up driver's info for all possible channels
5084 */
4956static int iwl3945_init_channel_map(struct iwl3945_priv *priv) 5085static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
4957{ 5086{
4958 int eeprom_ch_count = 0; 5087 int eeprom_ch_count = 0;
@@ -5062,6 +5191,7 @@ static int iwl3945_init_channel_map(struct iwl3945_priv *priv)
5062 } 5191 }
5063 } 5192 }
5064 5193
5194 /* Set up txpower settings in driver for all channels */
5065 if (iwl3945_txpower_set_from_eeprom(priv)) 5195 if (iwl3945_txpower_set_from_eeprom(priv))
5066 return -EIO; 5196 return -EIO;
5067 5197
@@ -8289,6 +8419,8 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
8289 struct ieee80211_hw *hw; 8419 struct ieee80211_hw *hw;
8290 int i; 8420 int i;
8291 8421
8422 /* Disabling hardware scan means that mac80211 will perform scans
8423 * "the hard way", rather than using device's scan. */
8292 if (iwl3945_param_disable_hw_scan) { 8424 if (iwl3945_param_disable_hw_scan) {
8293 IWL_DEBUG_INFO("Disabling hw_scan\n"); 8425 IWL_DEBUG_INFO("Disabling hw_scan\n");
8294 iwl3945_hw_ops.hw_scan = NULL; 8426 iwl3945_hw_ops.hw_scan = NULL;
@@ -8319,6 +8451,8 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
8319 priv->hw = hw; 8451 priv->hw = hw;
8320 8452
8321 priv->pci_dev = pdev; 8453 priv->pci_dev = pdev;
8454
8455 /* Select antenna (may be helpful if only one antenna is connected) */
8322 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna; 8456 priv->antenna = (enum iwl3945_antenna)iwl3945_param_antenna;
8323#ifdef CONFIG_IWL3945_DEBUG 8457#ifdef CONFIG_IWL3945_DEBUG
8324 iwl3945_debug_level = iwl3945_param_debug; 8458 iwl3945_debug_level = iwl3945_param_debug;
@@ -8340,6 +8474,7 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
8340 /* Tell mac80211 our Tx characteristics */ 8474 /* Tell mac80211 our Tx characteristics */
8341 hw->flags = IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE; 8475 hw->flags = IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE;
8342 8476
8477 /* 4 EDCA QOS priorities */
8343 hw->queues = 4; 8478 hw->queues = 4;
8344 8479
8345 spin_lock_init(&priv->lock); 8480 spin_lock_init(&priv->lock);
@@ -8360,6 +8495,7 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
8360 8495
8361 pci_set_master(pdev); 8496 pci_set_master(pdev);
8362 8497
8498 /* Clear the driver's (not device's) station table */
8363 iwl3945_clear_stations_table(priv); 8499 iwl3945_clear_stations_table(priv);
8364 8500
8365 priv->data_retry_limit = -1; 8501 priv->data_retry_limit = -1;
@@ -8379,9 +8515,11 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
8379 err = pci_request_regions(pdev, DRV_NAME); 8515 err = pci_request_regions(pdev, DRV_NAME);
8380 if (err) 8516 if (err)
8381 goto out_pci_disable_device; 8517 goto out_pci_disable_device;
8518
8382 /* We disable the RETRY_TIMEOUT register (0x41) to keep 8519 /* We disable the RETRY_TIMEOUT register (0x41) to keep
8383 * PCI Tx retries from interfering with C3 CPU state */ 8520 * PCI Tx retries from interfering with C3 CPU state */
8384 pci_write_config_byte(pdev, 0x41, 0x00); 8521 pci_write_config_byte(pdev, 0x41, 0x00);
8522
8385 priv->hw_base = pci_iomap(pdev, 0, 0); 8523 priv->hw_base = pci_iomap(pdev, 0, 0);
8386 if (!priv->hw_base) { 8524 if (!priv->hw_base) {
8387 err = -ENODEV; 8525 err = -ENODEV;
@@ -8394,6 +8532,7 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
8394 8532
8395 /* Initialize module parameter values here */ 8533 /* Initialize module parameter values here */
8396 8534
8535 /* Disable radio (SW RF KILL) via parameter when loading driver */
8397 if (iwl3945_param_disable) { 8536 if (iwl3945_param_disable) {
8398 set_bit(STATUS_RF_KILL_SW, &priv->status); 8537 set_bit(STATUS_RF_KILL_SW, &priv->status);
8399 IWL_DEBUG_INFO("Radio disabled.\n"); 8538 IWL_DEBUG_INFO("Radio disabled.\n");