Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mac80211_if.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Broadcom Corporation
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 #define __UNDEF_NO_VERSION__
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 
20 #include <linux/etherdevice.h>
21 #include <linux/sched.h>
22 #include <linux/firmware.h>
23 #include <linux/interrupt.h>
24 #include <linux/module.h>
25 #include <linux/bcma/bcma.h>
26 #include <net/mac80211.h>
27 #include <defs.h>
28 #include "phy/phy_int.h"
29 #include "d11.h"
30 #include "channel.h"
31 #include "scb.h"
32 #include "pub.h"
33 #include "ucode_loader.h"
34 #include "mac80211_if.h"
35 #include "main.h"
36 
37 #define N_TX_QUEUES 4 /* #tx queues on mac80211<->driver interface */
38 
39 /* Flags we support */
40 #define MAC_FILTERS (FIF_PROMISC_IN_BSS | \
41  FIF_ALLMULTI | \
42  FIF_FCSFAIL | \
43  FIF_CONTROL | \
44  FIF_OTHER_BSS | \
45  FIF_BCN_PRBRESP_PROMISC | \
46  FIF_PSPOLL)
47 
48 #define CHAN2GHZ(channel, freqency, chflags) { \
49  .band = IEEE80211_BAND_2GHZ, \
50  .center_freq = (freqency), \
51  .hw_value = (channel), \
52  .flags = chflags, \
53  .max_antenna_gain = 0, \
54  .max_power = 19, \
55 }
56 
57 #define CHAN5GHZ(channel, chflags) { \
58  .band = IEEE80211_BAND_5GHZ, \
59  .center_freq = 5000 + 5*(channel), \
60  .hw_value = (channel), \
61  .flags = chflags, \
62  .max_antenna_gain = 0, \
63  .max_power = 21, \
64 }
65 
66 #define RATE(rate100m, _flags) { \
67  .bitrate = (rate100m), \
68  .flags = (_flags), \
69  .hw_value = (rate100m / 5), \
70 }
71 
72 struct firmware_hdr {
76 };
77 
78 static const char * const brcms_firmwares[MAX_FW_IMAGES] = {
79  "brcm/bcm43xx",
80  NULL
81 };
82 
83 static int n_adapters_found;
84 
85 MODULE_AUTHOR("Broadcom Corporation");
86 MODULE_DESCRIPTION("Broadcom 802.11n wireless LAN driver.");
87 MODULE_SUPPORTED_DEVICE("Broadcom 802.11n WLAN cards");
88 MODULE_LICENSE("Dual BSD/GPL");
89 /* This needs to be adjusted when brcms_firmwares changes */
90 MODULE_FIRMWARE("brcm/bcm43xx-0.fw");
91 MODULE_FIRMWARE("brcm/bcm43xx_hdr-0.fw");
92 
93 /* recognized BCMA Core IDs */
94 static struct bcma_device_id brcms_coreid_table[] = {
98 };
99 MODULE_DEVICE_TABLE(bcma, brcms_coreid_table);
100 
101 #ifdef DEBUG
102 static int msglevel = 0xdeadbeef;
103 module_param(msglevel, int, 0);
104 #endif /* DEBUG */
105 
106 static struct ieee80211_channel brcms_2ghz_chantable[] = {
111  CHAN2GHZ(5, 2432, 0),
112  CHAN2GHZ(6, 2437, 0),
113  CHAN2GHZ(7, 2442, 0),
118  CHAN2GHZ(12, 2467,
121  CHAN2GHZ(13, 2472,
124  CHAN2GHZ(14, 2484,
128 };
129 
130 static struct ieee80211_channel brcms_5ghz_nphy_chantable[] = {
131  /* UNII-1 */
136  /* UNII-2 */
137  CHAN5GHZ(52,
140  CHAN5GHZ(56,
143  CHAN5GHZ(60,
146  CHAN5GHZ(64,
149  /* MID */
150  CHAN5GHZ(100,
153  CHAN5GHZ(104,
156  CHAN5GHZ(108,
159  CHAN5GHZ(112,
162  CHAN5GHZ(116,
165  CHAN5GHZ(120,
168  CHAN5GHZ(124,
171  CHAN5GHZ(128,
174  CHAN5GHZ(132,
177  CHAN5GHZ(136,
180  CHAN5GHZ(140,
184  /* UNII-3 */
190 };
191 
192 /*
193  * The rate table is used for both 2.4G and 5G rates. The
194  * latter being a subset as it does not support CCK rates.
195  */
196 static struct ieee80211_rate legacy_ratetable[] = {
197  RATE(10, 0),
201  RATE(60, 0),
202  RATE(90, 0),
203  RATE(120, 0),
204  RATE(180, 0),
205  RATE(240, 0),
206  RATE(360, 0),
207  RATE(480, 0),
208  RATE(540, 0),
209 };
210 
211 static const struct ieee80211_supported_band brcms_band_2GHz_nphy_template = {
212  .band = IEEE80211_BAND_2GHZ,
213  .channels = brcms_2ghz_chantable,
214  .n_channels = ARRAY_SIZE(brcms_2ghz_chantable),
215  .bitrates = legacy_ratetable,
216  .n_bitrates = ARRAY_SIZE(legacy_ratetable),
217  .ht_cap = {
218  /* from include/linux/ieee80211.h */
219  .cap = IEEE80211_HT_CAP_GRN_FLD |
221  .ht_supported = true,
222  .ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
223  .ampdu_density = AMPDU_DEF_MPDU_DENSITY,
224  .mcs = {
225  /* placeholders for now */
226  .rx_mask = {0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0},
227  .rx_highest = cpu_to_le16(500),
228  .tx_params = IEEE80211_HT_MCS_TX_DEFINED}
229  }
230 };
231 
232 static const struct ieee80211_supported_band brcms_band_5GHz_nphy_template = {
233  .band = IEEE80211_BAND_5GHZ,
234  .channels = brcms_5ghz_nphy_chantable,
235  .n_channels = ARRAY_SIZE(brcms_5ghz_nphy_chantable),
236  .bitrates = legacy_ratetable + BRCMS_LEGACY_5G_RATE_OFFSET,
237  .n_bitrates = ARRAY_SIZE(legacy_ratetable) -
239  .ht_cap = {
242  .ht_supported = true,
243  .ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
244  .ampdu_density = AMPDU_DEF_MPDU_DENSITY,
245  .mcs = {
246  /* placeholders for now */
247  .rx_mask = {0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0},
248  .rx_highest = cpu_to_le16(500),
249  .tx_params = IEEE80211_HT_MCS_TX_DEFINED}
250  }
251 };
252 
253 /* flags the given rate in rateset as requested */
254 static void brcms_set_basic_rate(struct brcm_rateset *rs, u16 rate, bool is_br)
255 {
256  u32 i;
257 
258  for (i = 0; i < rs->count; i++) {
259  if (rate != (rs->rates[i] & 0x7f))
260  continue;
261 
262  if (is_br)
263  rs->rates[i] |= BRCMS_RATE_FLAG;
264  else
265  rs->rates[i] &= BRCMS_RATE_MASK;
266  return;
267  }
268 }
269 
270 static void brcms_ops_tx(struct ieee80211_hw *hw,
272  struct sk_buff *skb)
273 {
274  struct brcms_info *wl = hw->priv;
275  struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
276 
277  spin_lock_bh(&wl->lock);
278  if (!wl->pub->up) {
279  wiphy_err(wl->wiphy, "ops->tx called while down\n");
280  kfree_skb(skb);
281  goto done;
282  }
283  brcms_c_sendpkt_mac80211(wl->wlc, skb, hw);
284  tx_info->rate_driver_data[0] = control->sta;
285  done:
286  spin_unlock_bh(&wl->lock);
287 }
288 
289 static int brcms_ops_start(struct ieee80211_hw *hw)
290 {
291  struct brcms_info *wl = hw->priv;
292  bool blocked;
293  int err;
294 
296  spin_lock_bh(&wl->lock);
297  blocked = brcms_rfkill_set_hw_state(wl);
298  spin_unlock_bh(&wl->lock);
299  if (!blocked)
300  wiphy_rfkill_stop_polling(wl->pub->ieee_hw->wiphy);
301 
302  spin_lock_bh(&wl->lock);
303  /* avoid acknowledging frames before a non-monitor device is added */
304  wl->mute_tx = true;
305 
306  if (!wl->pub->up)
307  if (!blocked)
308  err = brcms_up(wl);
309  else
310  err = -ERFKILL;
311  else
312  err = -ENODEV;
313  spin_unlock_bh(&wl->lock);
314 
315  if (err != 0)
316  wiphy_err(hw->wiphy, "%s: brcms_up() returned %d\n", __func__,
317  err);
318  return err;
319 }
320 
321 static void brcms_ops_stop(struct ieee80211_hw *hw)
322 {
323  struct brcms_info *wl = hw->priv;
324  int status;
325 
327 
328  if (wl->wlc == NULL)
329  return;
330 
331  spin_lock_bh(&wl->lock);
332  status = brcms_c_chipmatch(wl->wlc->hw->d11core);
333  spin_unlock_bh(&wl->lock);
334  if (!status) {
335  wiphy_err(wl->wiphy,
336  "wl: brcms_ops_stop: chipmatch failed\n");
337  return;
338  }
339 
340  /* put driver in down state */
341  spin_lock_bh(&wl->lock);
342  brcms_down(wl);
343  spin_unlock_bh(&wl->lock);
344 }
345 
346 static int
347 brcms_ops_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
348 {
349  struct brcms_info *wl = hw->priv;
350 
351  /* Just STA for now */
352  if (vif->type != NL80211_IFTYPE_STATION) {
353  wiphy_err(hw->wiphy, "%s: Attempt to add type %d, only"
354  " STA for now\n", __func__, vif->type);
355  return -EOPNOTSUPP;
356  }
357 
358  wl->mute_tx = false;
359  brcms_c_mute(wl->wlc, false);
360 
361  return 0;
362 }
363 
364 static void
365 brcms_ops_remove_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
366 {
367 }
368 
369 static int brcms_ops_config(struct ieee80211_hw *hw, u32 changed)
370 {
371  struct ieee80211_conf *conf = &hw->conf;
372  struct brcms_info *wl = hw->priv;
373  int err = 0;
374  int new_int;
375  struct wiphy *wiphy = hw->wiphy;
376 
377  spin_lock_bh(&wl->lock);
380  conf->listen_interval);
381  }
382  if (changed & IEEE80211_CONF_CHANGE_MONITOR)
383  wiphy_dbg(wiphy, "%s: change monitor mode: %s\n",
384  __func__, conf->flags & IEEE80211_CONF_MONITOR ?
385  "true" : "false");
386  if (changed & IEEE80211_CONF_CHANGE_PS)
387  wiphy_err(wiphy, "%s: change power-save mode: %s (implement)\n",
388  __func__, conf->flags & IEEE80211_CONF_PS ?
389  "true" : "false");
390 
391  if (changed & IEEE80211_CONF_CHANGE_POWER) {
392  err = brcms_c_set_tx_power(wl->wlc, conf->power_level);
393  if (err < 0) {
394  wiphy_err(wiphy, "%s: Error setting power_level\n",
395  __func__);
396  goto config_out;
397  }
398  new_int = brcms_c_get_tx_power(wl->wlc);
399  if (new_int != conf->power_level)
400  wiphy_err(wiphy, "%s: Power level req != actual, %d %d"
401  "\n", __func__, conf->power_level,
402  new_int);
403  }
404  if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
405  if (conf->channel_type == NL80211_CHAN_HT20 ||
407  err = brcms_c_set_channel(wl->wlc,
408  conf->channel->hw_value);
409  else
410  err = -ENOTSUPP;
411  }
413  err = brcms_c_set_rate_limit(wl->wlc,
416 
417  config_out:
418  spin_unlock_bh(&wl->lock);
419  return err;
420 }
421 
422 static void
423 brcms_ops_bss_info_changed(struct ieee80211_hw *hw,
424  struct ieee80211_vif *vif,
425  struct ieee80211_bss_conf *info, u32 changed)
426 {
427  struct brcms_info *wl = hw->priv;
428  struct wiphy *wiphy = hw->wiphy;
429 
430  if (changed & BSS_CHANGED_ASSOC) {
431  /* association status changed (associated/disassociated)
432  * also implies a change in the AID.
433  */
434  wiphy_err(wiphy, "%s: %s: %sassociated\n", KBUILD_MODNAME,
435  __func__, info->assoc ? "" : "dis");
436  spin_lock_bh(&wl->lock);
437  brcms_c_associate_upd(wl->wlc, info->assoc);
438  spin_unlock_bh(&wl->lock);
439  }
440  if (changed & BSS_CHANGED_ERP_SLOT) {
441  s8 val;
442 
443  /* slot timing changed */
444  if (info->use_short_slot)
445  val = 1;
446  else
447  val = 0;
448  spin_lock_bh(&wl->lock);
450  spin_unlock_bh(&wl->lock);
451  }
452 
453  if (changed & BSS_CHANGED_HT) {
454  /* 802.11n parameters changed */
455  u16 mode = info->ht_operation_mode;
456 
457  spin_lock_bh(&wl->lock);
464  spin_unlock_bh(&wl->lock);
465  }
466  if (changed & BSS_CHANGED_BASIC_RATES) {
468  u32 br_mask, i;
469  u16 rate;
470  struct brcm_rateset rs;
471  int error;
472 
473  /* retrieve the current rates */
474  spin_lock_bh(&wl->lock);
476  spin_unlock_bh(&wl->lock);
477 
478  br_mask = info->basic_rates;
479  bi = hw->wiphy->bands[brcms_c_get_curband(wl->wlc)];
480  for (i = 0; i < bi->n_bitrates; i++) {
481  /* convert to internal rate value */
482  rate = (bi->bitrates[i].bitrate << 1) / 10;
483 
484  /* set/clear basic rate flag */
485  brcms_set_basic_rate(&rs, rate, br_mask & 1);
486  br_mask >>= 1;
487  }
488 
489  /* update the rate set */
490  spin_lock_bh(&wl->lock);
491  error = brcms_c_set_rateset(wl->wlc, &rs);
492  spin_unlock_bh(&wl->lock);
493  if (error)
494  wiphy_err(wiphy, "changing basic rates failed: %d\n",
495  error);
496  }
497  if (changed & BSS_CHANGED_BEACON_INT) {
498  /* Beacon interval changed */
499  spin_lock_bh(&wl->lock);
501  spin_unlock_bh(&wl->lock);
502  }
503  if (changed & BSS_CHANGED_BSSID) {
504  /* BSSID changed, for whatever reason (IBSS and managed mode) */
505  spin_lock_bh(&wl->lock);
507  spin_unlock_bh(&wl->lock);
508  }
509  if (changed & BSS_CHANGED_BEACON)
510  /* Beacon data changed, retrieve new beacon (beaconing modes) */
511  wiphy_err(wiphy, "%s: beacon changed\n", __func__);
512 
513  if (changed & BSS_CHANGED_BEACON_ENABLED) {
514  /* Beaconing should be enabled/disabled (beaconing modes) */
515  wiphy_err(wiphy, "%s: Beacon enabled: %s\n", __func__,
516  info->enable_beacon ? "true" : "false");
517  }
518 
519  if (changed & BSS_CHANGED_CQM) {
520  /* Connection quality monitor config changed */
521  wiphy_err(wiphy, "%s: cqm change: threshold %d, hys %d "
522  " (implement)\n", __func__, info->cqm_rssi_thold,
523  info->cqm_rssi_hyst);
524  }
525 
526  if (changed & BSS_CHANGED_IBSS) {
527  /* IBSS join status changed */
528  wiphy_err(wiphy, "%s: IBSS joined: %s (implement)\n", __func__,
529  info->ibss_joined ? "true" : "false");
530  }
531 
532  if (changed & BSS_CHANGED_ARP_FILTER) {
533  /* Hardware ARP filter address list or state changed */
534  wiphy_err(wiphy, "%s: arp filtering: enabled %s, count %d"
535  " (implement)\n", __func__, info->arp_filter_enabled ?
536  "true" : "false", info->arp_addr_cnt);
537  }
538 
539  if (changed & BSS_CHANGED_QOS) {
540  /*
541  * QoS for this association was enabled/disabled.
542  * Note that it is only ever disabled for station mode.
543  */
544  wiphy_err(wiphy, "%s: qos enabled: %s (implement)\n", __func__,
545  info->qos ? "true" : "false");
546  }
547  return;
548 }
549 
550 static void
551 brcms_ops_configure_filter(struct ieee80211_hw *hw,
552  unsigned int changed_flags,
553  unsigned int *total_flags, u64 multicast)
554 {
555  struct brcms_info *wl = hw->priv;
556  struct wiphy *wiphy = hw->wiphy;
557 
558  changed_flags &= MAC_FILTERS;
559  *total_flags &= MAC_FILTERS;
560 
561  if (changed_flags & FIF_PROMISC_IN_BSS)
562  wiphy_dbg(wiphy, "FIF_PROMISC_IN_BSS\n");
563  if (changed_flags & FIF_ALLMULTI)
564  wiphy_dbg(wiphy, "FIF_ALLMULTI\n");
565  if (changed_flags & FIF_FCSFAIL)
566  wiphy_dbg(wiphy, "FIF_FCSFAIL\n");
567  if (changed_flags & FIF_CONTROL)
568  wiphy_dbg(wiphy, "FIF_CONTROL\n");
569  if (changed_flags & FIF_OTHER_BSS)
570  wiphy_dbg(wiphy, "FIF_OTHER_BSS\n");
571  if (changed_flags & FIF_PSPOLL)
572  wiphy_dbg(wiphy, "FIF_PSPOLL\n");
573  if (changed_flags & FIF_BCN_PRBRESP_PROMISC)
574  wiphy_dbg(wiphy, "FIF_BCN_PRBRESP_PROMISC\n");
575 
576  spin_lock_bh(&wl->lock);
577  brcms_c_mac_promisc(wl->wlc, *total_flags);
578  spin_unlock_bh(&wl->lock);
579  return;
580 }
581 
582 static void brcms_ops_sw_scan_start(struct ieee80211_hw *hw)
583 {
584  struct brcms_info *wl = hw->priv;
585  spin_lock_bh(&wl->lock);
586  brcms_c_scan_start(wl->wlc);
587  spin_unlock_bh(&wl->lock);
588  return;
589 }
590 
591 static void brcms_ops_sw_scan_complete(struct ieee80211_hw *hw)
592 {
593  struct brcms_info *wl = hw->priv;
594  spin_lock_bh(&wl->lock);
595  brcms_c_scan_stop(wl->wlc);
596  spin_unlock_bh(&wl->lock);
597  return;
598 }
599 
600 static int
601 brcms_ops_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue,
602  const struct ieee80211_tx_queue_params *params)
603 {
604  struct brcms_info *wl = hw->priv;
605 
606  spin_lock_bh(&wl->lock);
607  brcms_c_wme_setparams(wl->wlc, queue, params, true);
608  spin_unlock_bh(&wl->lock);
609 
610  return 0;
611 }
612 
613 static int
614 brcms_ops_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
615  struct ieee80211_sta *sta)
616 {
617  struct brcms_info *wl = hw->priv;
618  struct scb *scb = &wl->wlc->pri_scb;
619 
620  brcms_c_init_scb(scb);
621 
622  wl->pub->global_ampdu = &(scb->scb_ampdu);
623  wl->pub->global_ampdu->scb = scb;
624  wl->pub->global_ampdu->max_pdu = 16;
625 
626  /*
627  * minstrel_ht initiates addBA on our behalf by calling
628  * ieee80211_start_tx_ba_session()
629  */
630  return 0;
631 }
632 
633 static int
634 brcms_ops_ampdu_action(struct ieee80211_hw *hw,
635  struct ieee80211_vif *vif,
637  struct ieee80211_sta *sta, u16 tid, u16 *ssn,
638  u8 buf_size)
639 {
640  struct brcms_info *wl = hw->priv;
641  struct scb *scb = &wl->wlc->pri_scb;
642  int status;
643 
644  if (WARN_ON(scb->magic != SCB_MAGIC))
645  return -EIDRM;
646  switch (action) {
648  break;
650  break;
652  spin_lock_bh(&wl->lock);
653  status = brcms_c_aggregatable(wl->wlc, tid);
654  spin_unlock_bh(&wl->lock);
655  if (!status) {
656  wiphy_err(wl->wiphy, "START: tid %d is not agg\'able\n",
657  tid);
658  return -EINVAL;
659  }
660  ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
661  break;
662 
664  spin_lock_bh(&wl->lock);
665  brcms_c_ampdu_flush(wl->wlc, sta, tid);
666  spin_unlock_bh(&wl->lock);
667  ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
668  break;
670  /*
671  * BA window size from ADDBA response ('buf_size') defines how
672  * many outstanding MPDUs are allowed for the BA stream by
673  * recipient and traffic class. 'ampdu_factor' gives maximum
674  * AMPDU size.
675  */
676  spin_lock_bh(&wl->lock);
677  brcms_c_ampdu_tx_operational(wl->wlc, tid, buf_size,
679  sta->ht_cap.ampdu_factor)) - 1);
680  spin_unlock_bh(&wl->lock);
681  /* Power save wakeup */
682  break;
683  default:
684  wiphy_err(wl->wiphy, "%s: Invalid command, ignoring\n",
685  __func__);
686  }
687 
688  return 0;
689 }
690 
691 static void brcms_ops_rfkill_poll(struct ieee80211_hw *hw)
692 {
693  struct brcms_info *wl = hw->priv;
694  bool blocked;
695 
696  spin_lock_bh(&wl->lock);
697  blocked = brcms_c_check_radio_disabled(wl->wlc);
698  spin_unlock_bh(&wl->lock);
699 
700  wiphy_rfkill_set_hw_state(wl->pub->ieee_hw->wiphy, blocked);
701 }
702 
703 static void brcms_ops_flush(struct ieee80211_hw *hw, bool drop)
704 {
705  struct brcms_info *wl = hw->priv;
706 
707  no_printk("%s: drop = %s\n", __func__, drop ? "true" : "false");
708 
709  /* wait for packet queue and dma fifos to run empty */
710  spin_lock_bh(&wl->lock);
712  spin_unlock_bh(&wl->lock);
713 }
714 
715 static const struct ieee80211_ops brcms_ops = {
716  .tx = brcms_ops_tx,
717  .start = brcms_ops_start,
718  .stop = brcms_ops_stop,
719  .add_interface = brcms_ops_add_interface,
720  .remove_interface = brcms_ops_remove_interface,
721  .config = brcms_ops_config,
722  .bss_info_changed = brcms_ops_bss_info_changed,
723  .configure_filter = brcms_ops_configure_filter,
724  .sw_scan_start = brcms_ops_sw_scan_start,
725  .sw_scan_complete = brcms_ops_sw_scan_complete,
726  .conf_tx = brcms_ops_conf_tx,
727  .sta_add = brcms_ops_sta_add,
728  .ampdu_action = brcms_ops_ampdu_action,
729  .rfkill_poll = brcms_ops_rfkill_poll,
730  .flush = brcms_ops_flush,
731 };
732 
733 void brcms_dpc(unsigned long data)
734 {
735  struct brcms_info *wl;
736 
737  wl = (struct brcms_info *) data;
738 
739  spin_lock_bh(&wl->lock);
740 
741  /* call the common second level interrupt handler */
742  if (wl->pub->up) {
743  if (wl->resched) {
744  unsigned long flags;
745 
746  spin_lock_irqsave(&wl->isr_lock, flags);
747  brcms_c_intrsupd(wl->wlc);
748  spin_unlock_irqrestore(&wl->isr_lock, flags);
749  }
750 
751  wl->resched = brcms_c_dpc(wl->wlc, true);
752  }
753 
754  /* brcms_c_dpc() may bring the driver down */
755  if (!wl->pub->up)
756  goto done;
757 
758  /* re-schedule dpc */
759  if (wl->resched)
760  tasklet_schedule(&wl->tasklet);
761  else
762  /* re-enable interrupts */
763  brcms_intrson(wl);
764 
765  done:
766  spin_unlock_bh(&wl->lock);
767 }
768 
769 /*
770  * Precondition: Since this function is called in brcms_pci_probe() context,
771  * no locking is required.
772  */
773 static int brcms_request_fw(struct brcms_info *wl, struct bcma_device *pdev)
774 {
775  int status;
776  struct device *device = &pdev->dev;
777  char fw_name[100];
778  int i;
779 
780  memset(&wl->fw, 0, sizeof(struct brcms_firmware));
781  for (i = 0; i < MAX_FW_IMAGES; i++) {
782  if (brcms_firmwares[i] == NULL)
783  break;
784  sprintf(fw_name, "%s-%d.fw", brcms_firmwares[i],
786  status = request_firmware(&wl->fw.fw_bin[i], fw_name, device);
787  if (status) {
788  wiphy_err(wl->wiphy, "%s: fail to load firmware %s\n",
789  KBUILD_MODNAME, fw_name);
790  return status;
791  }
792  sprintf(fw_name, "%s_hdr-%d.fw", brcms_firmwares[i],
794  status = request_firmware(&wl->fw.fw_hdr[i], fw_name, device);
795  if (status) {
796  wiphy_err(wl->wiphy, "%s: fail to load firmware %s\n",
797  KBUILD_MODNAME, fw_name);
798  return status;
799  }
800  wl->fw.hdr_num_entries[i] =
801  wl->fw.fw_hdr[i]->size / (sizeof(struct firmware_hdr));
802  }
803  wl->fw.fw_cnt = i;
804  return brcms_ucode_data_init(wl, &wl->ucode);
805 }
806 
807 /*
808  * Precondition: Since this function is called in brcms_pci_probe() context,
809  * no locking is required.
810  */
811 static void brcms_release_fw(struct brcms_info *wl)
812 {
813  int i;
814  for (i = 0; i < MAX_FW_IMAGES; i++) {
815  release_firmware(wl->fw.fw_bin[i]);
816  release_firmware(wl->fw.fw_hdr[i]);
817  }
818 }
819 
829 static void brcms_free(struct brcms_info *wl)
830 {
831  struct brcms_timer *t, *next;
832 
833  /* free ucode data */
834  if (wl->fw.fw_cnt)
836  if (wl->irq)
837  free_irq(wl->irq, wl);
838 
839  /* kill dpc */
840  tasklet_kill(&wl->tasklet);
841 
842  if (wl->pub)
843  brcms_c_module_unregister(wl->pub, "linux", wl);
844 
845  /* free common resources */
846  if (wl->wlc) {
847  brcms_c_detach(wl->wlc);
848  wl->wlc = NULL;
849  wl->pub = NULL;
850  }
851 
852  /* virtual interface deletion is deferred so we cannot spinwait */
853 
854  /* wait for all pending callbacks to complete */
855  while (atomic_read(&wl->callbacks) > 0)
856  schedule();
857 
858  /* free timers */
859  for (t = wl->timers; t; t = next) {
860  next = t->next;
861 #ifdef DEBUG
862  kfree(t->name);
863 #endif
864  kfree(t);
865  }
866 }
867 
868 /*
869 * called from both kernel as from this kernel module (error flow on attach)
870 * precondition: perimeter lock is not acquired.
871 */
872 static void brcms_remove(struct bcma_device *pdev)
873 {
874  struct ieee80211_hw *hw = bcma_get_drvdata(pdev);
875  struct brcms_info *wl = hw->priv;
876 
877  if (wl->wlc) {
878  wiphy_rfkill_set_hw_state(wl->pub->ieee_hw->wiphy, false);
879  wiphy_rfkill_stop_polling(wl->pub->ieee_hw->wiphy);
881  }
882 
883  brcms_free(wl);
884 
885  bcma_set_drvdata(pdev, NULL);
886  ieee80211_free_hw(hw);
887 }
888 
889 static irqreturn_t brcms_isr(int irq, void *dev_id)
890 {
891  struct brcms_info *wl;
892  bool ours, wantdpc;
893 
894  wl = (struct brcms_info *) dev_id;
895 
896  spin_lock(&wl->isr_lock);
897 
898  /* call common first level interrupt handler */
899  ours = brcms_c_isr(wl->wlc, &wantdpc);
900  if (ours) {
901  /* if more to do... */
902  if (wantdpc) {
903 
904  /* ...and call the second level interrupt handler */
905  /* schedule dpc */
906  tasklet_schedule(&wl->tasklet);
907  }
908  }
909 
910  spin_unlock(&wl->isr_lock);
911 
912  return IRQ_RETVAL(ours);
913 }
914 
915 /*
916  * is called in brcms_pci_probe() context, therefore no locking required.
917  */
918 static int ieee_hw_rate_init(struct ieee80211_hw *hw)
919 {
920  struct brcms_info *wl = hw->priv;
921  struct brcms_c_info *wlc = wl->wlc;
923  int has_5g = 0;
924  u16 phy_type;
925 
926  hw->wiphy->bands[IEEE80211_BAND_2GHZ] = NULL;
927  hw->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL;
928 
929  phy_type = brcms_c_get_phy_type(wl->wlc, 0);
930  if (phy_type == PHY_TYPE_N || phy_type == PHY_TYPE_LCN) {
931  band = &wlc->bandstate[BAND_2G_INDEX]->band;
932  *band = brcms_band_2GHz_nphy_template;
933  if (phy_type == PHY_TYPE_LCN) {
934  /* Single stream */
935  band->ht_cap.mcs.rx_mask[1] = 0;
936  band->ht_cap.mcs.rx_highest = cpu_to_le16(72);
937  }
938  hw->wiphy->bands[IEEE80211_BAND_2GHZ] = band;
939  } else {
940  return -EPERM;
941  }
942 
943  /* Assume all bands use the same phy. True for 11n devices. */
944  if (wl->pub->_nbands > 1) {
945  has_5g++;
946  if (phy_type == PHY_TYPE_N || phy_type == PHY_TYPE_LCN) {
947  band = &wlc->bandstate[BAND_5G_INDEX]->band;
948  *band = brcms_band_5GHz_nphy_template;
949  hw->wiphy->bands[IEEE80211_BAND_5GHZ] = band;
950  } else {
951  return -EPERM;
952  }
953  }
954  return 0;
955 }
956 
957 /*
958  * is called in brcms_pci_probe() context, therefore no locking required.
959  */
960 static int ieee_hw_init(struct ieee80211_hw *hw)
961 {
963  /* | IEEE80211_HW_CONNECTION_MONITOR What is this? */
966 
968  hw->queues = N_TX_QUEUES;
969  hw->max_rates = 2; /* Primary rate and 1 fallback rate */
970 
971  /* channel change time is dependent on chip and band */
972  hw->channel_change_time = 7 * 1000;
973  hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
974 
975  hw->rate_control_algorithm = "minstrel_ht";
976 
977  hw->sta_data_size = 0;
978  return ieee_hw_rate_init(hw);
979 }
980 
995 static struct brcms_info *brcms_attach(struct bcma_device *pdev)
996 {
997  struct brcms_info *wl = NULL;
998  int unit, err;
999  struct ieee80211_hw *hw;
1000  u8 perm[ETH_ALEN];
1001 
1002  unit = n_adapters_found;
1003  err = 0;
1004 
1005  if (unit < 0)
1006  return NULL;
1007 
1008  /* allocate private info */
1009  hw = bcma_get_drvdata(pdev);
1010  if (hw != NULL)
1011  wl = hw->priv;
1012  if (WARN_ON(hw == NULL) || WARN_ON(wl == NULL))
1013  return NULL;
1014  wl->wiphy = hw->wiphy;
1015 
1016  atomic_set(&wl->callbacks, 0);
1017 
1018  /* setup the bottom half handler */
1019  tasklet_init(&wl->tasklet, brcms_dpc, (unsigned long) wl);
1020 
1021  spin_lock_init(&wl->lock);
1022  spin_lock_init(&wl->isr_lock);
1023 
1024  /* prepare ucode */
1025  if (brcms_request_fw(wl, pdev) < 0) {
1026  wiphy_err(wl->wiphy, "%s: Failed to find firmware usually in "
1027  "%s\n", KBUILD_MODNAME, "/lib/firmware/brcm");
1028  brcms_release_fw(wl);
1029  brcms_remove(pdev);
1030  return NULL;
1031  }
1032 
1033  /* common load-time initialization */
1034  wl->wlc = brcms_c_attach((void *)wl, pdev, unit, false, &err);
1035  brcms_release_fw(wl);
1036  if (!wl->wlc) {
1037  wiphy_err(wl->wiphy, "%s: attach() failed with code %d\n",
1038  KBUILD_MODNAME, err);
1039  goto fail;
1040  }
1041  wl->pub = brcms_c_pub(wl->wlc);
1042 
1043  wl->pub->ieee_hw = hw;
1044 
1045  /* register our interrupt handler */
1046  if (request_irq(pdev->irq, brcms_isr,
1047  IRQF_SHARED, KBUILD_MODNAME, wl)) {
1048  wiphy_err(wl->wiphy, "wl%d: request_irq() failed\n", unit);
1049  goto fail;
1050  }
1051  wl->irq = pdev->irq;
1052 
1053  /* register module */
1054  brcms_c_module_register(wl->pub, "linux", wl, NULL);
1055 
1056  if (ieee_hw_init(hw)) {
1057  wiphy_err(wl->wiphy, "wl%d: %s: ieee_hw_init failed!\n", unit,
1058  __func__);
1059  goto fail;
1060  }
1061 
1062  brcms_c_regd_init(wl->wlc);
1063 
1064  memcpy(perm, &wl->pub->cur_etheraddr, ETH_ALEN);
1065  if (WARN_ON(!is_valid_ether_addr(perm)))
1066  goto fail;
1067  SET_IEEE80211_PERM_ADDR(hw, perm);
1068 
1069  err = ieee80211_register_hw(hw);
1070  if (err)
1071  wiphy_err(wl->wiphy, "%s: ieee80211_register_hw failed, status"
1072  "%d\n", __func__, err);
1073 
1074  if (wl->pub->srom_ccode[0] &&
1075  regulatory_hint(wl->wiphy, wl->pub->srom_ccode))
1076  wiphy_err(wl->wiphy, "%s: regulatory hint failed\n", __func__);
1077 
1078  n_adapters_found++;
1079  return wl;
1080 
1081 fail:
1082  brcms_free(wl);
1083  return NULL;
1084 }
1085 
1086 
1087 
1096 static int __devinit brcms_bcma_probe(struct bcma_device *pdev)
1097 {
1098  struct brcms_info *wl;
1099  struct ieee80211_hw *hw;
1100 
1101  dev_info(&pdev->dev, "mfg %x core %x rev %d class %d irq %d\n",
1102  pdev->id.manuf, pdev->id.id, pdev->id.rev, pdev->id.class,
1103  pdev->irq);
1104 
1105  if ((pdev->id.manuf != BCMA_MANUF_BCM) ||
1106  (pdev->id.id != BCMA_CORE_80211))
1107  return -ENODEV;
1108 
1109  hw = ieee80211_alloc_hw(sizeof(struct brcms_info), &brcms_ops);
1110  if (!hw) {
1111  pr_err("%s: ieee80211_alloc_hw failed\n", __func__);
1112  return -ENOMEM;
1113  }
1114 
1115  SET_IEEE80211_DEV(hw, &pdev->dev);
1116 
1117  bcma_set_drvdata(pdev, hw);
1118 
1119  memset(hw->priv, 0, sizeof(*wl));
1120 
1121  wl = brcms_attach(pdev);
1122  if (!wl) {
1123  pr_err("%s: brcms_attach failed!\n", __func__);
1124  return -ENODEV;
1125  }
1126  return 0;
1127 }
1128 
1129 static int brcms_suspend(struct bcma_device *pdev)
1130 {
1131  struct brcms_info *wl;
1132  struct ieee80211_hw *hw;
1133 
1134  hw = bcma_get_drvdata(pdev);
1135  wl = hw->priv;
1136  if (!wl) {
1137  pr_err("%s: %s: no driver private struct!\n", KBUILD_MODNAME,
1138  __func__);
1139  return -ENODEV;
1140  }
1141 
1142  /* only need to flag hw is down for proper resume */
1143  spin_lock_bh(&wl->lock);
1144  wl->pub->hw_up = false;
1145  spin_unlock_bh(&wl->lock);
1146 
1147  pr_debug("brcms_suspend ok\n");
1148 
1149  return 0;
1150 }
1151 
1152 static int brcms_resume(struct bcma_device *pdev)
1153 {
1154  pr_debug("brcms_resume ok\n");
1155  return 0;
1156 }
1157 
1158 static struct bcma_driver brcms_bcma_driver = {
1159  .name = KBUILD_MODNAME,
1160  .probe = brcms_bcma_probe,
1161  .suspend = brcms_suspend,
1162  .resume = brcms_resume,
1163  .remove = __devexit_p(brcms_remove),
1164  .id_table = brcms_coreid_table,
1165 };
1166 
1174 static void brcms_driver_init(struct work_struct *work)
1175 {
1176  int error;
1177 
1178  error = bcma_driver_register(&brcms_bcma_driver);
1179  if (error)
1180  pr_err("%s: register returned %d\n", __func__, error);
1181 }
1182 
1183 static DECLARE_WORK(brcms_driver_work, brcms_driver_init);
1184 
1185 static int __init brcms_module_init(void)
1186 {
1187 #ifdef DEBUG
1188  if (msglevel != 0xdeadbeef)
1189  brcm_msg_level = msglevel;
1190 #endif
1191  if (!schedule_work(&brcms_driver_work))
1192  return -EBUSY;
1193 
1194  return 0;
1195 }
1196 
1204 static void __exit brcms_module_exit(void)
1205 {
1206  cancel_work_sync(&brcms_driver_work);
1207  bcma_driver_unregister(&brcms_bcma_driver);
1208 }
1209 
1210 module_init(brcms_module_init);
1211 module_exit(brcms_module_exit);
1212 
1213 /*
1214  * precondition: perimeter lock has been acquired
1215  */
1216 void brcms_txflowcontrol(struct brcms_info *wl, struct brcms_if *wlif,
1217  bool state, int prio)
1218 {
1219  wiphy_err(wl->wiphy, "Shouldn't be here %s\n", __func__);
1220 }
1221 
1222 /*
1223  * precondition: perimeter lock has been acquired
1224  */
1225 void brcms_init(struct brcms_info *wl)
1226 {
1227  BCMMSG(wl->pub->ieee_hw->wiphy, "wl%d\n", wl->pub->unit);
1228  brcms_reset(wl);
1229  brcms_c_init(wl->wlc, wl->mute_tx);
1230 }
1231 
1232 /*
1233  * precondition: perimeter lock has been acquired
1234  */
1236 {
1237  BCMMSG(wl->pub->ieee_hw->wiphy, "wl%d\n", wl->pub->unit);
1238  brcms_c_reset(wl->wlc);
1239 
1240  /* dpc will not be rescheduled */
1241  wl->resched = false;
1242 
1243  /* inform publicly that interface is down */
1244  wl->pub->up = false;
1245 
1246  return 0;
1247 }
1248 
1250 {
1251  wiphy_err(wl->wlc->wiphy, "wl%d: fatal error, reinitializing\n",
1252  wl->wlc->pub->unit);
1253  brcms_reset(wl);
1254  ieee80211_restart_hw(wl->pub->ieee_hw);
1255 }
1256 
1257 /*
1258  * These are interrupt on/off entry points. Disable interrupts
1259  * during interrupt state transition.
1260  */
1261 void brcms_intrson(struct brcms_info *wl)
1262 {
1263  unsigned long flags;
1264 
1265  spin_lock_irqsave(&wl->isr_lock, flags);
1266  brcms_c_intrson(wl->wlc);
1267  spin_unlock_irqrestore(&wl->isr_lock, flags);
1268 }
1269 
1271 {
1272  unsigned long flags;
1273  u32 status;
1274 
1275  spin_lock_irqsave(&wl->isr_lock, flags);
1276  status = brcms_c_intrsoff(wl->wlc);
1277  spin_unlock_irqrestore(&wl->isr_lock, flags);
1278  return status;
1279 }
1280 
1281 void brcms_intrsrestore(struct brcms_info *wl, u32 macintmask)
1282 {
1283  unsigned long flags;
1284 
1285  spin_lock_irqsave(&wl->isr_lock, flags);
1286  brcms_c_intrsrestore(wl->wlc, macintmask);
1287  spin_unlock_irqrestore(&wl->isr_lock, flags);
1288 }
1289 
1290 /*
1291  * precondition: perimeter lock has been acquired
1292  */
1293 int brcms_up(struct brcms_info *wl)
1294 {
1295  int error = 0;
1296 
1297  if (wl->pub->up)
1298  return 0;
1299 
1300  error = brcms_c_up(wl->wlc);
1301 
1302  return error;
1303 }
1304 
1305 /*
1306  * precondition: perimeter lock has been acquired
1307  */
1308 void brcms_down(struct brcms_info *wl)
1309 {
1310  uint callbacks, ret_val = 0;
1311 
1312  /* call common down function */
1313  ret_val = brcms_c_down(wl->wlc);
1314  callbacks = atomic_read(&wl->callbacks) - ret_val;
1315 
1316  /* wait for down callbacks to complete */
1317  spin_unlock_bh(&wl->lock);
1318 
1319  /* For HIGH_only driver, it's important to actually schedule other work,
1320  * not just spin wait since everything runs at schedule level
1321  */
1322  SPINWAIT((atomic_read(&wl->callbacks) > callbacks), 100 * 1000);
1323 
1324  spin_lock_bh(&wl->lock);
1325 }
1326 
1327 /*
1328 * precondition: perimeter lock is not acquired
1329  */
1330 static void _brcms_timer(struct work_struct *work)
1331 {
1332  struct brcms_timer *t = container_of(work, struct brcms_timer,
1333  dly_wrk.work);
1334 
1335  spin_lock_bh(&t->wl->lock);
1336 
1337  if (t->set) {
1338  if (t->periodic) {
1339  atomic_inc(&t->wl->callbacks);
1340  ieee80211_queue_delayed_work(t->wl->pub->ieee_hw,
1341  &t->dly_wrk,
1342  msecs_to_jiffies(t->ms));
1343  } else {
1344  t->set = false;
1345  }
1346 
1347  t->fn(t->arg);
1348  }
1349 
1350  atomic_dec(&t->wl->callbacks);
1351 
1352  spin_unlock_bh(&t->wl->lock);
1353 }
1354 
1355 /*
1356  * Adds a timer to the list. Caller supplies a timer function.
1357  * Is called from wlc.
1358  *
1359  * precondition: perimeter lock has been acquired
1360  */
1362  void (*fn) (void *arg),
1363  void *arg, const char *name)
1364 {
1365  struct brcms_timer *t;
1366 
1367  t = kzalloc(sizeof(struct brcms_timer), GFP_ATOMIC);
1368  if (!t)
1369  return NULL;
1370 
1371  INIT_DELAYED_WORK(&t->dly_wrk, _brcms_timer);
1372  t->wl = wl;
1373  t->fn = fn;
1374  t->arg = arg;
1375  t->next = wl->timers;
1376  wl->timers = t;
1377 
1378 #ifdef DEBUG
1379  t->name = kmalloc(strlen(name) + 1, GFP_ATOMIC);
1380  if (t->name)
1381  strcpy(t->name, name);
1382 #endif
1383 
1384  return t;
1385 }
1386 
1387 /*
1388  * adds only the kernel timer since it's going to be more accurate
1389  * as well as it's easier to make it periodic
1390  *
1391  * precondition: perimeter lock has been acquired
1392  */
1394 {
1395  struct ieee80211_hw *hw = t->wl->pub->ieee_hw;
1396 
1397 #ifdef DEBUG
1398  if (t->set)
1399  wiphy_err(hw->wiphy, "%s: Already set. Name: %s, per %d\n",
1400  __func__, t->name, periodic);
1401 #endif
1402  t->ms = ms;
1403  t->periodic = (bool) periodic;
1404  t->set = true;
1405 
1406  atomic_inc(&t->wl->callbacks);
1407 
1409 }
1410 
1411 /*
1412  * return true if timer successfully deleted, false if still pending
1413  *
1414  * precondition: perimeter lock has been acquired
1415  */
1417 {
1418  if (t->set) {
1419  t->set = false;
1420  if (!cancel_delayed_work(&t->dly_wrk))
1421  return false;
1422 
1423  atomic_dec(&t->wl->callbacks);
1424  }
1425 
1426  return true;
1427 }
1428 
1429 /*
1430  * precondition: perimeter lock has been acquired
1431  */
1433 {
1434  struct brcms_info *wl = t->wl;
1435  struct brcms_timer *tmp;
1436 
1437  /* delete the timer in case it is active */
1438  brcms_del_timer(t);
1439 
1440  if (wl->timers == t) {
1441  wl->timers = wl->timers->next;
1442 #ifdef DEBUG
1443  kfree(t->name);
1444 #endif
1445  kfree(t);
1446  return;
1447 
1448  }
1449 
1450  tmp = wl->timers;
1451  while (tmp) {
1452  if (tmp->next == t) {
1453  tmp->next = t->next;
1454 #ifdef DEBUG
1455  kfree(t->name);
1456 #endif
1457  kfree(t);
1458  return;
1459  }
1460  tmp = tmp->next;
1461  }
1462 
1463 }
1464 
1465 /*
1466  * precondition: perimeter lock has been acquired
1467  */
1468 int brcms_ucode_init_buf(struct brcms_info *wl, void **pbuf, u32 idx)
1469 {
1470  int i, entry;
1471  const u8 *pdata;
1472  struct firmware_hdr *hdr;
1473  for (i = 0; i < wl->fw.fw_cnt; i++) {
1474  hdr = (struct firmware_hdr *)wl->fw.fw_hdr[i]->data;
1475  for (entry = 0; entry < wl->fw.hdr_num_entries[i];
1476  entry++, hdr++) {
1477  u32 len = le32_to_cpu(hdr->len);
1478  if (le32_to_cpu(hdr->idx) == idx) {
1479  pdata = wl->fw.fw_bin[i]->data +
1480  le32_to_cpu(hdr->offset);
1481  *pbuf = kmemdup(pdata, len, GFP_ATOMIC);
1482  if (*pbuf == NULL)
1483  goto fail;
1484 
1485  return 0;
1486  }
1487  }
1488  }
1489  wiphy_err(wl->wiphy, "ERROR: ucode buf tag:%d can not be found!\n",
1490  idx);
1491  *pbuf = NULL;
1492 fail:
1493  return -ENODATA;
1494 }
1495 
1496 /*
1497  * Precondition: Since this function is called in brcms_bcma_probe() context,
1498  * no locking is required.
1499  */
1500 int brcms_ucode_init_uint(struct brcms_info *wl, size_t *n_bytes, u32 idx)
1501 {
1502  int i, entry;
1503  const u8 *pdata;
1504  struct firmware_hdr *hdr;
1505  for (i = 0; i < wl->fw.fw_cnt; i++) {
1506  hdr = (struct firmware_hdr *)wl->fw.fw_hdr[i]->data;
1507  for (entry = 0; entry < wl->fw.hdr_num_entries[i];
1508  entry++, hdr++) {
1509  if (le32_to_cpu(hdr->idx) == idx) {
1510  pdata = wl->fw.fw_bin[i]->data +
1511  le32_to_cpu(hdr->offset);
1512  if (le32_to_cpu(hdr->len) != 4) {
1513  wiphy_err(wl->wiphy,
1514  "ERROR: fw hdr len\n");
1515  return -ENOMSG;
1516  }
1517  *n_bytes = le32_to_cpu(*((__le32 *) pdata));
1518  return 0;
1519  }
1520  }
1521  }
1522  wiphy_err(wl->wiphy, "ERROR: ucode tag:%d can not be found!\n", idx);
1523  return -ENOMSG;
1524 }
1525 
1526 /*
1527  * precondition: can both be called locked and unlocked
1528  */
1530 {
1531  kfree(p);
1532 }
1533 
1534 /*
1535  * checks validity of all firmware images loaded from user space
1536  *
1537  * Precondition: Since this function is called in brcms_bcma_probe() context,
1538  * no locking is required.
1539  */
1541 {
1542  int i;
1543  int entry;
1544  int rc = 0;
1545  const struct firmware *fw;
1546  const struct firmware *fw_hdr;
1547  struct firmware_hdr *ucode_hdr;
1548  for (i = 0; i < MAX_FW_IMAGES && rc == 0; i++) {
1549  fw = wl->fw.fw_bin[i];
1550  fw_hdr = wl->fw.fw_hdr[i];
1551  if (fw == NULL && fw_hdr == NULL) {
1552  break;
1553  } else if (fw == NULL || fw_hdr == NULL) {
1554  wiphy_err(wl->wiphy, "%s: invalid bin/hdr fw\n",
1555  __func__);
1556  rc = -EBADF;
1557  } else if (fw_hdr->size % sizeof(struct firmware_hdr)) {
1558  wiphy_err(wl->wiphy, "%s: non integral fw hdr file "
1559  "size %zu/%zu\n", __func__, fw_hdr->size,
1560  sizeof(struct firmware_hdr));
1561  rc = -EBADF;
1562  } else if (fw->size < MIN_FW_SIZE || fw->size > MAX_FW_SIZE) {
1563  wiphy_err(wl->wiphy, "%s: out of bounds fw file size "
1564  "%zu\n", __func__, fw->size);
1565  rc = -EBADF;
1566  } else {
1567  /* check if ucode section overruns firmware image */
1568  ucode_hdr = (struct firmware_hdr *)fw_hdr->data;
1569  for (entry = 0; entry < wl->fw.hdr_num_entries[i] &&
1570  !rc; entry++, ucode_hdr++) {
1571  if (le32_to_cpu(ucode_hdr->offset) +
1572  le32_to_cpu(ucode_hdr->len) >
1573  fw->size) {
1574  wiphy_err(wl->wiphy,
1575  "%s: conflicting bin/hdr\n",
1576  __func__);
1577  rc = -EBADF;
1578  }
1579  }
1580  }
1581  }
1582  if (rc == 0 && wl->fw.fw_cnt != i) {
1583  wiphy_err(wl->wiphy, "%s: invalid fw_cnt=%d\n", __func__,
1584  wl->fw.fw_cnt);
1585  rc = -EBADF;
1586  }
1587  return rc;
1588 }
1589 
1590 /*
1591  * precondition: perimeter lock has been acquired
1592  */
1594 {
1595  bool blocked = brcms_c_check_radio_disabled(wl->wlc);
1596 
1597  spin_unlock_bh(&wl->lock);
1598  wiphy_rfkill_set_hw_state(wl->pub->ieee_hw->wiphy, blocked);
1599  if (blocked)
1600  wiphy_rfkill_start_polling(wl->pub->ieee_hw->wiphy);
1601  spin_lock_bh(&wl->lock);
1602  return blocked;
1603 }
1604 
1605 /*
1606  * precondition: perimeter lock has been acquired
1607  */
1608 void brcms_msleep(struct brcms_info *wl, uint ms)
1609 {
1610  spin_unlock_bh(&wl->lock);
1611  msleep(ms);
1612  spin_lock_bh(&wl->lock);
1613 }