2 * Copyright (c) 2010 Broadcom Corporation
3 * Copyright (c) 2013 Hauke Mehrtens <hauke@hauke-m.de>
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
12 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
14 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
15 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #define __UNDEF_NO_VERSION__
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/etherdevice.h>
22 #include <linux/sched.h>
23 #include <linux/firmware.h>
24 #include <linux/interrupt.h>
25 #include <linux/module.h>
26 #include <linux/bcma/bcma.h>
27 #include <net/mac80211.h>
29 #include "phy/phy_int.h"
34 #include "ucode_loader.h"
35 #include "mac80211_if.h"
40 #define N_TX_QUEUES 4 /* #tx queues on mac80211<->driver interface */
41 #define BRCMS_FLUSH_TIMEOUT 500 /* msec */
43 /* Flags we support */
44 #define MAC_FILTERS (FIF_PROMISC_IN_BSS | \
49 FIF_BCN_PRBRESP_PROMISC | \
52 #define CHAN2GHZ(channel, freqency, chflags) { \
53 .band = IEEE80211_BAND_2GHZ, \
54 .center_freq = (freqency), \
55 .hw_value = (channel), \
57 .max_antenna_gain = 0, \
61 #define CHAN5GHZ(channel, chflags) { \
62 .band = IEEE80211_BAND_5GHZ, \
63 .center_freq = 5000 + 5*(channel), \
64 .hw_value = (channel), \
66 .max_antenna_gain = 0, \
70 #define RATE(rate100m, _flags) { \
71 .bitrate = (rate100m), \
73 .hw_value = (rate100m / 5), \
82 static const char * const brcms_firmwares
[MAX_FW_IMAGES
] = {
87 static int n_adapters_found
;
89 MODULE_AUTHOR("Broadcom Corporation");
90 MODULE_DESCRIPTION("Broadcom 802.11n wireless LAN driver.");
91 MODULE_SUPPORTED_DEVICE("Broadcom 802.11n WLAN cards");
92 MODULE_LICENSE("Dual BSD/GPL");
93 /* This needs to be adjusted when brcms_firmwares changes */
94 MODULE_FIRMWARE("brcm/bcm43xx-0.fw");
95 MODULE_FIRMWARE("brcm/bcm43xx_hdr-0.fw");
97 /* recognized BCMA Core IDs */
98 static struct bcma_device_id brcms_coreid_table
[] = {
99 BCMA_CORE(BCMA_MANUF_BCM
, BCMA_CORE_80211
, 17, BCMA_ANY_CLASS
),
100 BCMA_CORE(BCMA_MANUF_BCM
, BCMA_CORE_80211
, 23, BCMA_ANY_CLASS
),
101 BCMA_CORE(BCMA_MANUF_BCM
, BCMA_CORE_80211
, 24, BCMA_ANY_CLASS
),
104 MODULE_DEVICE_TABLE(bcma
, brcms_coreid_table
);
106 #if defined(CONFIG_BRCMDBG)
108 * Module parameter for setting the debug message level. Available
109 * flags are specified by the BRCM_DL_* macros in
110 * drivers/net/wireless/brcm80211/include/defs.h.
112 module_param_named(debug
, brcm_msg_level
, uint
, S_IRUGO
| S_IWUSR
);
115 static struct ieee80211_channel brcms_2ghz_chantable
[] = {
116 CHAN2GHZ(1, 2412, IEEE80211_CHAN_NO_HT40MINUS
),
117 CHAN2GHZ(2, 2417, IEEE80211_CHAN_NO_HT40MINUS
),
118 CHAN2GHZ(3, 2422, IEEE80211_CHAN_NO_HT40MINUS
),
119 CHAN2GHZ(4, 2427, IEEE80211_CHAN_NO_HT40MINUS
),
120 CHAN2GHZ(5, 2432, 0),
121 CHAN2GHZ(6, 2437, 0),
122 CHAN2GHZ(7, 2442, 0),
123 CHAN2GHZ(8, 2447, IEEE80211_CHAN_NO_HT40PLUS
),
124 CHAN2GHZ(9, 2452, IEEE80211_CHAN_NO_HT40PLUS
),
125 CHAN2GHZ(10, 2457, IEEE80211_CHAN_NO_HT40PLUS
),
126 CHAN2GHZ(11, 2462, IEEE80211_CHAN_NO_HT40PLUS
),
128 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_IBSS
|
129 IEEE80211_CHAN_NO_HT40PLUS
),
131 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_IBSS
|
132 IEEE80211_CHAN_NO_HT40PLUS
),
134 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_IBSS
|
135 IEEE80211_CHAN_NO_HT40PLUS
| IEEE80211_CHAN_NO_HT40MINUS
|
136 IEEE80211_CHAN_NO_OFDM
)
139 static struct ieee80211_channel brcms_5ghz_nphy_chantable
[] = {
141 CHAN5GHZ(36, IEEE80211_CHAN_NO_HT40MINUS
),
142 CHAN5GHZ(40, IEEE80211_CHAN_NO_HT40PLUS
),
143 CHAN5GHZ(44, IEEE80211_CHAN_NO_HT40MINUS
),
144 CHAN5GHZ(48, IEEE80211_CHAN_NO_HT40PLUS
),
147 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
148 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40MINUS
),
150 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
151 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
),
153 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
154 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40MINUS
),
156 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
157 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
),
160 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
161 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40MINUS
),
163 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
164 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
),
166 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
167 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40MINUS
),
169 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
170 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
),
172 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
173 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40MINUS
),
175 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
176 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
),
178 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
179 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40MINUS
),
181 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
182 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
),
184 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
185 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40MINUS
),
187 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
188 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
),
190 IEEE80211_CHAN_RADAR
| IEEE80211_CHAN_NO_IBSS
|
191 IEEE80211_CHAN_PASSIVE_SCAN
| IEEE80211_CHAN_NO_HT40PLUS
|
192 IEEE80211_CHAN_NO_HT40MINUS
),
194 CHAN5GHZ(149, IEEE80211_CHAN_NO_HT40MINUS
),
195 CHAN5GHZ(153, IEEE80211_CHAN_NO_HT40PLUS
),
196 CHAN5GHZ(157, IEEE80211_CHAN_NO_HT40MINUS
),
197 CHAN5GHZ(161, IEEE80211_CHAN_NO_HT40PLUS
),
198 CHAN5GHZ(165, IEEE80211_CHAN_NO_HT40PLUS
| IEEE80211_CHAN_NO_HT40MINUS
)
202 * The rate table is used for both 2.4G and 5G rates. The
203 * latter being a subset as it does not support CCK rates.
205 static struct ieee80211_rate legacy_ratetable
[] = {
207 RATE(20, IEEE80211_RATE_SHORT_PREAMBLE
),
208 RATE(55, IEEE80211_RATE_SHORT_PREAMBLE
),
209 RATE(110, IEEE80211_RATE_SHORT_PREAMBLE
),
220 static const struct ieee80211_supported_band brcms_band_2GHz_nphy_template
= {
221 .band
= IEEE80211_BAND_2GHZ
,
222 .channels
= brcms_2ghz_chantable
,
223 .n_channels
= ARRAY_SIZE(brcms_2ghz_chantable
),
224 .bitrates
= legacy_ratetable
,
225 .n_bitrates
= ARRAY_SIZE(legacy_ratetable
),
227 /* from include/linux/ieee80211.h */
228 .cap
= IEEE80211_HT_CAP_GRN_FLD
|
229 IEEE80211_HT_CAP_SGI_20
| IEEE80211_HT_CAP_SGI_40
,
230 .ht_supported
= true,
231 .ampdu_factor
= IEEE80211_HT_MAX_AMPDU_64K
,
232 .ampdu_density
= AMPDU_DEF_MPDU_DENSITY
,
234 /* placeholders for now */
235 .rx_mask
= {0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0},
236 .rx_highest
= cpu_to_le16(500),
237 .tx_params
= IEEE80211_HT_MCS_TX_DEFINED
}
241 static const struct ieee80211_supported_band brcms_band_5GHz_nphy_template
= {
242 .band
= IEEE80211_BAND_5GHZ
,
243 .channels
= brcms_5ghz_nphy_chantable
,
244 .n_channels
= ARRAY_SIZE(brcms_5ghz_nphy_chantable
),
245 .bitrates
= legacy_ratetable
+ BRCMS_LEGACY_5G_RATE_OFFSET
,
246 .n_bitrates
= ARRAY_SIZE(legacy_ratetable
) -
247 BRCMS_LEGACY_5G_RATE_OFFSET
,
249 .cap
= IEEE80211_HT_CAP_GRN_FLD
| IEEE80211_HT_CAP_SGI_20
|
250 IEEE80211_HT_CAP_SGI_40
,
251 .ht_supported
= true,
252 .ampdu_factor
= IEEE80211_HT_MAX_AMPDU_64K
,
253 .ampdu_density
= AMPDU_DEF_MPDU_DENSITY
,
255 /* placeholders for now */
256 .rx_mask
= {0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0},
257 .rx_highest
= cpu_to_le16(500),
258 .tx_params
= IEEE80211_HT_MCS_TX_DEFINED
}
262 /* flags the given rate in rateset as requested */
263 static void brcms_set_basic_rate(struct brcm_rateset
*rs
, u16 rate
, bool is_br
)
267 for (i
= 0; i
< rs
->count
; i
++) {
268 if (rate
!= (rs
->rates
[i
] & 0x7f))
272 rs
->rates
[i
] |= BRCMS_RATE_FLAG
;
274 rs
->rates
[i
] &= BRCMS_RATE_MASK
;
280 * This function frees the WL per-device resources.
282 * This function frees resources owned by the WL device pointed to
283 * by the wl parameter.
285 * precondition: can both be called locked and unlocked
288 static void brcms_free(struct brcms_info
*wl
)
290 struct brcms_timer
*t
, *next
;
292 /* free ucode data */
294 brcms_ucode_data_free(&wl
->ucode
);
296 free_irq(wl
->irq
, wl
);
299 tasklet_kill(&wl
->tasklet
);
302 brcms_debugfs_detach(wl
->pub
);
303 brcms_c_module_unregister(wl
->pub
, "linux", wl
);
306 /* free common resources */
308 brcms_c_detach(wl
->wlc
);
313 /* virtual interface deletion is deferred so we cannot spinwait */
315 /* wait for all pending callbacks to complete */
316 while (atomic_read(&wl
->callbacks
) > 0)
320 for (t
= wl
->timers
; t
; t
= next
) {
330 * called from both kernel as from this kernel module (error flow on attach)
331 * precondition: perimeter lock is not acquired.
333 static void brcms_remove(struct bcma_device
*pdev
)
335 struct ieee80211_hw
*hw
= bcma_get_drvdata(pdev
);
336 struct brcms_info
*wl
= hw
->priv
;
339 brcms_led_unregister(wl
);
340 wiphy_rfkill_set_hw_state(wl
->pub
->ieee_hw
->wiphy
, false);
341 wiphy_rfkill_stop_polling(wl
->pub
->ieee_hw
->wiphy
);
342 ieee80211_unregister_hw(hw
);
347 bcma_set_drvdata(pdev
, NULL
);
348 ieee80211_free_hw(hw
);
352 * Precondition: Since this function is called in brcms_pci_probe() context,
353 * no locking is required.
355 static void brcms_release_fw(struct brcms_info
*wl
)
358 for (i
= 0; i
< MAX_FW_IMAGES
; i
++) {
359 release_firmware(wl
->fw
.fw_bin
[i
]);
360 release_firmware(wl
->fw
.fw_hdr
[i
]);
365 * Precondition: Since this function is called in brcms_pci_probe() context,
366 * no locking is required.
368 static int brcms_request_fw(struct brcms_info
*wl
, struct bcma_device
*pdev
)
371 struct device
*device
= &pdev
->dev
;
375 memset(&wl
->fw
, 0, sizeof(struct brcms_firmware
));
376 for (i
= 0; i
< MAX_FW_IMAGES
; i
++) {
377 if (brcms_firmwares
[i
] == NULL
)
379 sprintf(fw_name
, "%s-%d.fw", brcms_firmwares
[i
],
380 UCODE_LOADER_API_VER
);
381 status
= request_firmware(&wl
->fw
.fw_bin
[i
], fw_name
, device
);
383 wiphy_err(wl
->wiphy
, "%s: fail to load firmware %s\n",
384 KBUILD_MODNAME
, fw_name
);
387 sprintf(fw_name
, "%s_hdr-%d.fw", brcms_firmwares
[i
],
388 UCODE_LOADER_API_VER
);
389 status
= request_firmware(&wl
->fw
.fw_hdr
[i
], fw_name
, device
);
391 wiphy_err(wl
->wiphy
, "%s: fail to load firmware %s\n",
392 KBUILD_MODNAME
, fw_name
);
395 wl
->fw
.hdr_num_entries
[i
] =
396 wl
->fw
.fw_hdr
[i
]->size
/ (sizeof(struct firmware_hdr
));
399 status
= brcms_ucode_data_init(wl
, &wl
->ucode
);
400 brcms_release_fw(wl
);
404 static void brcms_ops_tx(struct ieee80211_hw
*hw
,
405 struct ieee80211_tx_control
*control
,
408 struct brcms_info
*wl
= hw
->priv
;
409 struct ieee80211_tx_info
*tx_info
= IEEE80211_SKB_CB(skb
);
411 spin_lock_bh(&wl
->lock
);
413 brcms_err(wl
->wlc
->hw
->d11core
, "ops->tx called while down\n");
417 if (brcms_c_sendpkt_mac80211(wl
->wlc
, skb
, hw
))
418 tx_info
->rate_driver_data
[0] = control
->sta
;
420 spin_unlock_bh(&wl
->lock
);
423 static int brcms_ops_start(struct ieee80211_hw
*hw
)
425 struct brcms_info
*wl
= hw
->priv
;
429 ieee80211_wake_queues(hw
);
430 spin_lock_bh(&wl
->lock
);
431 blocked
= brcms_rfkill_set_hw_state(wl
);
432 spin_unlock_bh(&wl
->lock
);
434 wiphy_rfkill_stop_polling(wl
->pub
->ieee_hw
->wiphy
);
436 if (!wl
->ucode
.bcm43xx_bomminor
) {
437 err
= brcms_request_fw(wl
, wl
->wlc
->hw
->d11core
);
439 brcms_remove(wl
->wlc
->hw
->d11core
);
444 spin_lock_bh(&wl
->lock
);
445 /* avoid acknowledging frames before a non-monitor device is added */
455 spin_unlock_bh(&wl
->lock
);
458 brcms_err(wl
->wlc
->hw
->d11core
, "%s: brcms_up() returned %d\n",
463 static void brcms_ops_stop(struct ieee80211_hw
*hw
)
465 struct brcms_info
*wl
= hw
->priv
;
468 ieee80211_stop_queues(hw
);
473 spin_lock_bh(&wl
->lock
);
474 status
= brcms_c_chipmatch(wl
->wlc
->hw
->d11core
);
475 spin_unlock_bh(&wl
->lock
);
477 brcms_err(wl
->wlc
->hw
->d11core
,
478 "wl: brcms_ops_stop: chipmatch failed\n");
482 /* put driver in down state */
483 spin_lock_bh(&wl
->lock
);
485 spin_unlock_bh(&wl
->lock
);
489 brcms_ops_add_interface(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
)
491 struct brcms_info
*wl
= hw
->priv
;
493 /* Just STA, AP and ADHOC for now */
494 if (vif
->type
!= NL80211_IFTYPE_STATION
&&
495 vif
->type
!= NL80211_IFTYPE_AP
&&
496 vif
->type
!= NL80211_IFTYPE_ADHOC
) {
497 brcms_err(wl
->wlc
->hw
->d11core
,
498 "%s: Attempt to add type %d, only STA, AP and AdHoc for now\n",
499 __func__
, vif
->type
);
503 spin_lock_bh(&wl
->lock
);
505 brcms_c_mute(wl
->wlc
, false);
506 if (vif
->type
== NL80211_IFTYPE_STATION
)
507 brcms_c_start_station(wl
->wlc
, vif
->addr
);
508 else if (vif
->type
== NL80211_IFTYPE_AP
)
509 brcms_c_start_ap(wl
->wlc
, vif
->addr
, vif
->bss_conf
.bssid
,
510 vif
->bss_conf
.ssid
, vif
->bss_conf
.ssid_len
);
511 else if (vif
->type
== NL80211_IFTYPE_ADHOC
)
512 brcms_c_start_adhoc(wl
->wlc
, vif
->addr
);
513 spin_unlock_bh(&wl
->lock
);
519 brcms_ops_remove_interface(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
)
523 static int brcms_ops_config(struct ieee80211_hw
*hw
, u32 changed
)
525 struct ieee80211_conf
*conf
= &hw
->conf
;
526 struct brcms_info
*wl
= hw
->priv
;
527 struct bcma_device
*core
= wl
->wlc
->hw
->d11core
;
531 spin_lock_bh(&wl
->lock
);
532 if (changed
& IEEE80211_CONF_CHANGE_LISTEN_INTERVAL
) {
533 brcms_c_set_beacon_listen_interval(wl
->wlc
,
534 conf
->listen_interval
);
536 if (changed
& IEEE80211_CONF_CHANGE_MONITOR
)
537 brcms_dbg_info(core
, "%s: change monitor mode: %s\n",
538 __func__
, conf
->flags
& IEEE80211_CONF_MONITOR
?
540 if (changed
& IEEE80211_CONF_CHANGE_PS
)
541 brcms_err(core
, "%s: change power-save mode: %s (implement)\n",
542 __func__
, conf
->flags
& IEEE80211_CONF_PS
?
545 if (changed
& IEEE80211_CONF_CHANGE_POWER
) {
546 err
= brcms_c_set_tx_power(wl
->wlc
, conf
->power_level
);
548 brcms_err(core
, "%s: Error setting power_level\n",
552 new_int
= brcms_c_get_tx_power(wl
->wlc
);
553 if (new_int
!= conf
->power_level
)
555 "%s: Power level req != actual, %d %d\n",
556 __func__
, conf
->power_level
,
559 if (changed
& IEEE80211_CONF_CHANGE_CHANNEL
) {
560 if (conf
->chandef
.width
== NL80211_CHAN_WIDTH_20
||
561 conf
->chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
)
562 err
= brcms_c_set_channel(wl
->wlc
,
563 conf
->chandef
.chan
->hw_value
);
567 if (changed
& IEEE80211_CONF_CHANGE_RETRY_LIMITS
)
568 err
= brcms_c_set_rate_limit(wl
->wlc
,
569 conf
->short_frame_max_tx_count
,
570 conf
->long_frame_max_tx_count
);
573 spin_unlock_bh(&wl
->lock
);
578 brcms_ops_bss_info_changed(struct ieee80211_hw
*hw
,
579 struct ieee80211_vif
*vif
,
580 struct ieee80211_bss_conf
*info
, u32 changed
)
582 struct brcms_info
*wl
= hw
->priv
;
583 struct bcma_device
*core
= wl
->wlc
->hw
->d11core
;
585 if (changed
& BSS_CHANGED_ASSOC
) {
586 /* association status changed (associated/disassociated)
587 * also implies a change in the AID.
589 brcms_err(core
, "%s: %s: %sassociated\n", KBUILD_MODNAME
,
590 __func__
, info
->assoc
? "" : "dis");
591 spin_lock_bh(&wl
->lock
);
592 brcms_c_associate_upd(wl
->wlc
, info
->assoc
);
593 spin_unlock_bh(&wl
->lock
);
595 if (changed
& BSS_CHANGED_ERP_SLOT
) {
598 /* slot timing changed */
599 if (info
->use_short_slot
)
603 spin_lock_bh(&wl
->lock
);
604 brcms_c_set_shortslot_override(wl
->wlc
, val
);
605 spin_unlock_bh(&wl
->lock
);
608 if (changed
& BSS_CHANGED_HT
) {
609 /* 802.11n parameters changed */
610 u16 mode
= info
->ht_operation_mode
;
612 spin_lock_bh(&wl
->lock
);
613 brcms_c_protection_upd(wl
->wlc
, BRCMS_PROT_N_CFG
,
614 mode
& IEEE80211_HT_OP_MODE_PROTECTION
);
615 brcms_c_protection_upd(wl
->wlc
, BRCMS_PROT_N_NONGF
,
616 mode
& IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT
);
617 brcms_c_protection_upd(wl
->wlc
, BRCMS_PROT_N_OBSS
,
618 mode
& IEEE80211_HT_OP_MODE_NON_HT_STA_PRSNT
);
619 spin_unlock_bh(&wl
->lock
);
621 if (changed
& BSS_CHANGED_BASIC_RATES
) {
622 struct ieee80211_supported_band
*bi
;
625 struct brcm_rateset rs
;
628 /* retrieve the current rates */
629 spin_lock_bh(&wl
->lock
);
630 brcms_c_get_current_rateset(wl
->wlc
, &rs
);
631 spin_unlock_bh(&wl
->lock
);
633 br_mask
= info
->basic_rates
;
634 bi
= hw
->wiphy
->bands
[brcms_c_get_curband(wl
->wlc
)];
635 for (i
= 0; i
< bi
->n_bitrates
; i
++) {
636 /* convert to internal rate value */
637 rate
= (bi
->bitrates
[i
].bitrate
<< 1) / 10;
639 /* set/clear basic rate flag */
640 brcms_set_basic_rate(&rs
, rate
, br_mask
& 1);
644 /* update the rate set */
645 spin_lock_bh(&wl
->lock
);
646 error
= brcms_c_set_rateset(wl
->wlc
, &rs
);
647 spin_unlock_bh(&wl
->lock
);
649 brcms_err(core
, "changing basic rates failed: %d\n",
652 if (changed
& BSS_CHANGED_BEACON_INT
) {
653 /* Beacon interval changed */
654 spin_lock_bh(&wl
->lock
);
655 brcms_c_set_beacon_period(wl
->wlc
, info
->beacon_int
);
656 spin_unlock_bh(&wl
->lock
);
658 if (changed
& BSS_CHANGED_BSSID
) {
659 /* BSSID changed, for whatever reason (IBSS and managed mode) */
660 spin_lock_bh(&wl
->lock
);
661 brcms_c_set_addrmatch(wl
->wlc
, RCM_BSSID_OFFSET
, info
->bssid
);
662 spin_unlock_bh(&wl
->lock
);
664 if (changed
& BSS_CHANGED_SSID
) {
665 /* BSSID changed, for whatever reason (IBSS and managed mode) */
666 spin_lock_bh(&wl
->lock
);
667 brcms_c_set_ssid(wl
->wlc
, info
->ssid
, info
->ssid_len
);
668 spin_unlock_bh(&wl
->lock
);
670 if (changed
& BSS_CHANGED_BEACON
) {
671 /* Beacon data changed, retrieve new beacon (beaconing modes) */
672 struct sk_buff
*beacon
;
675 spin_lock_bh(&wl
->lock
);
676 beacon
= ieee80211_beacon_get_tim(hw
, vif
, &tim_offset
, NULL
);
677 brcms_c_set_new_beacon(wl
->wlc
, beacon
, tim_offset
,
679 spin_unlock_bh(&wl
->lock
);
682 if (changed
& BSS_CHANGED_AP_PROBE_RESP
) {
683 struct sk_buff
*probe_resp
;
685 spin_lock_bh(&wl
->lock
);
686 probe_resp
= ieee80211_proberesp_get(hw
, vif
);
687 brcms_c_set_new_probe_resp(wl
->wlc
, probe_resp
);
688 spin_unlock_bh(&wl
->lock
);
691 if (changed
& BSS_CHANGED_BEACON_ENABLED
) {
692 /* Beaconing should be enabled/disabled (beaconing modes) */
693 brcms_err(core
, "%s: Beacon enabled: %s\n", __func__
,
694 info
->enable_beacon
? "true" : "false");
695 if (info
->enable_beacon
&&
696 hw
->wiphy
->flags
& WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
) {
697 brcms_c_enable_probe_resp(wl
->wlc
, true);
699 brcms_c_enable_probe_resp(wl
->wlc
, false);
703 if (changed
& BSS_CHANGED_CQM
) {
704 /* Connection quality monitor config changed */
705 brcms_err(core
, "%s: cqm change: threshold %d, hys %d "
706 " (implement)\n", __func__
, info
->cqm_rssi_thold
,
707 info
->cqm_rssi_hyst
);
710 if (changed
& BSS_CHANGED_IBSS
) {
711 /* IBSS join status changed */
712 brcms_err(core
, "%s: IBSS joined: %s (implement)\n",
713 __func__
, info
->ibss_joined
? "true" : "false");
716 if (changed
& BSS_CHANGED_ARP_FILTER
) {
717 /* Hardware ARP filter address list or state changed */
718 brcms_err(core
, "%s: arp filtering: %d addresses"
719 " (implement)\n", __func__
, info
->arp_addr_cnt
);
722 if (changed
& BSS_CHANGED_QOS
) {
724 * QoS for this association was enabled/disabled.
725 * Note that it is only ever disabled for station mode.
727 brcms_err(core
, "%s: qos enabled: %s (implement)\n",
728 __func__
, info
->qos
? "true" : "false");
734 brcms_ops_configure_filter(struct ieee80211_hw
*hw
,
735 unsigned int changed_flags
,
736 unsigned int *total_flags
, u64 multicast
)
738 struct brcms_info
*wl
= hw
->priv
;
739 struct bcma_device
*core
= wl
->wlc
->hw
->d11core
;
741 changed_flags
&= MAC_FILTERS
;
742 *total_flags
&= MAC_FILTERS
;
744 if (changed_flags
& FIF_PROMISC_IN_BSS
)
745 brcms_dbg_info(core
, "FIF_PROMISC_IN_BSS\n");
746 if (changed_flags
& FIF_ALLMULTI
)
747 brcms_dbg_info(core
, "FIF_ALLMULTI\n");
748 if (changed_flags
& FIF_FCSFAIL
)
749 brcms_dbg_info(core
, "FIF_FCSFAIL\n");
750 if (changed_flags
& FIF_CONTROL
)
751 brcms_dbg_info(core
, "FIF_CONTROL\n");
752 if (changed_flags
& FIF_OTHER_BSS
)
753 brcms_dbg_info(core
, "FIF_OTHER_BSS\n");
754 if (changed_flags
& FIF_PSPOLL
)
755 brcms_dbg_info(core
, "FIF_PSPOLL\n");
756 if (changed_flags
& FIF_BCN_PRBRESP_PROMISC
)
757 brcms_dbg_info(core
, "FIF_BCN_PRBRESP_PROMISC\n");
759 spin_lock_bh(&wl
->lock
);
760 brcms_c_mac_promisc(wl
->wlc
, *total_flags
);
761 spin_unlock_bh(&wl
->lock
);
765 static void brcms_ops_sw_scan_start(struct ieee80211_hw
*hw
)
767 struct brcms_info
*wl
= hw
->priv
;
768 spin_lock_bh(&wl
->lock
);
769 brcms_c_scan_start(wl
->wlc
);
770 spin_unlock_bh(&wl
->lock
);
774 static void brcms_ops_sw_scan_complete(struct ieee80211_hw
*hw
)
776 struct brcms_info
*wl
= hw
->priv
;
777 spin_lock_bh(&wl
->lock
);
778 brcms_c_scan_stop(wl
->wlc
);
779 spin_unlock_bh(&wl
->lock
);
784 brcms_ops_conf_tx(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
, u16 queue
,
785 const struct ieee80211_tx_queue_params
*params
)
787 struct brcms_info
*wl
= hw
->priv
;
789 spin_lock_bh(&wl
->lock
);
790 brcms_c_wme_setparams(wl
->wlc
, queue
, params
, true);
791 spin_unlock_bh(&wl
->lock
);
797 brcms_ops_sta_add(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
,
798 struct ieee80211_sta
*sta
)
800 struct brcms_info
*wl
= hw
->priv
;
801 struct scb
*scb
= &wl
->wlc
->pri_scb
;
803 brcms_c_init_scb(scb
);
805 wl
->pub
->global_ampdu
= &(scb
->scb_ampdu
);
806 wl
->pub
->global_ampdu
->scb
= scb
;
807 wl
->pub
->global_ampdu
->max_pdu
= 16;
810 * minstrel_ht initiates addBA on our behalf by calling
811 * ieee80211_start_tx_ba_session()
817 brcms_ops_ampdu_action(struct ieee80211_hw
*hw
,
818 struct ieee80211_vif
*vif
,
819 enum ieee80211_ampdu_mlme_action action
,
820 struct ieee80211_sta
*sta
, u16 tid
, u16
*ssn
,
823 struct brcms_info
*wl
= hw
->priv
;
824 struct scb
*scb
= &wl
->wlc
->pri_scb
;
827 if (WARN_ON(scb
->magic
!= SCB_MAGIC
))
830 case IEEE80211_AMPDU_RX_START
:
832 case IEEE80211_AMPDU_RX_STOP
:
834 case IEEE80211_AMPDU_TX_START
:
835 spin_lock_bh(&wl
->lock
);
836 status
= brcms_c_aggregatable(wl
->wlc
, tid
);
837 spin_unlock_bh(&wl
->lock
);
839 brcms_err(wl
->wlc
->hw
->d11core
,
840 "START: tid %d is not agg\'able\n", tid
);
843 ieee80211_start_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
846 case IEEE80211_AMPDU_TX_STOP_CONT
:
847 case IEEE80211_AMPDU_TX_STOP_FLUSH
:
848 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT
:
849 spin_lock_bh(&wl
->lock
);
850 brcms_c_ampdu_flush(wl
->wlc
, sta
, tid
);
851 spin_unlock_bh(&wl
->lock
);
852 ieee80211_stop_tx_ba_cb_irqsafe(vif
, sta
->addr
, tid
);
854 case IEEE80211_AMPDU_TX_OPERATIONAL
:
856 * BA window size from ADDBA response ('buf_size') defines how
857 * many outstanding MPDUs are allowed for the BA stream by
858 * recipient and traffic class. 'ampdu_factor' gives maximum
861 spin_lock_bh(&wl
->lock
);
862 brcms_c_ampdu_tx_operational(wl
->wlc
, tid
, buf_size
,
863 (1 << (IEEE80211_HT_MAX_AMPDU_FACTOR
+
864 sta
->ht_cap
.ampdu_factor
)) - 1);
865 spin_unlock_bh(&wl
->lock
);
866 /* Power save wakeup */
869 brcms_err(wl
->wlc
->hw
->d11core
,
870 "%s: Invalid command, ignoring\n", __func__
);
876 static void brcms_ops_rfkill_poll(struct ieee80211_hw
*hw
)
878 struct brcms_info
*wl
= hw
->priv
;
881 spin_lock_bh(&wl
->lock
);
882 blocked
= brcms_c_check_radio_disabled(wl
->wlc
);
883 spin_unlock_bh(&wl
->lock
);
885 wiphy_rfkill_set_hw_state(wl
->pub
->ieee_hw
->wiphy
, blocked
);
888 static bool brcms_tx_flush_completed(struct brcms_info
*wl
)
892 spin_lock_bh(&wl
->lock
);
893 result
= brcms_c_tx_flush_completed(wl
->wlc
);
894 spin_unlock_bh(&wl
->lock
);
898 static void brcms_ops_flush(struct ieee80211_hw
*hw
, u32 queues
, bool drop
)
900 struct brcms_info
*wl
= hw
->priv
;
903 no_printk("%s: drop = %s\n", __func__
, drop
? "true" : "false");
905 ret
= wait_event_timeout(wl
->tx_flush_wq
,
906 brcms_tx_flush_completed(wl
),
907 msecs_to_jiffies(BRCMS_FLUSH_TIMEOUT
));
909 brcms_dbg_mac80211(wl
->wlc
->hw
->d11core
,
910 "ret=%d\n", jiffies_to_msecs(ret
));
913 static u64
brcms_ops_get_tsf(struct ieee80211_hw
*hw
, struct ieee80211_vif
*vif
)
915 struct brcms_info
*wl
= hw
->priv
;
918 spin_lock_bh(&wl
->lock
);
919 tsf
= brcms_c_tsf_get(wl
->wlc
);
920 spin_unlock_bh(&wl
->lock
);
925 static void brcms_ops_set_tsf(struct ieee80211_hw
*hw
,
926 struct ieee80211_vif
*vif
, u64 tsf
)
928 struct brcms_info
*wl
= hw
->priv
;
930 spin_lock_bh(&wl
->lock
);
931 brcms_c_tsf_set(wl
->wlc
, tsf
);
932 spin_unlock_bh(&wl
->lock
);
935 static const struct ieee80211_ops brcms_ops
= {
937 .start
= brcms_ops_start
,
938 .stop
= brcms_ops_stop
,
939 .add_interface
= brcms_ops_add_interface
,
940 .remove_interface
= brcms_ops_remove_interface
,
941 .config
= brcms_ops_config
,
942 .bss_info_changed
= brcms_ops_bss_info_changed
,
943 .configure_filter
= brcms_ops_configure_filter
,
944 .sw_scan_start
= brcms_ops_sw_scan_start
,
945 .sw_scan_complete
= brcms_ops_sw_scan_complete
,
946 .conf_tx
= brcms_ops_conf_tx
,
947 .sta_add
= brcms_ops_sta_add
,
948 .ampdu_action
= brcms_ops_ampdu_action
,
949 .rfkill_poll
= brcms_ops_rfkill_poll
,
950 .flush
= brcms_ops_flush
,
951 .get_tsf
= brcms_ops_get_tsf
,
952 .set_tsf
= brcms_ops_set_tsf
,
955 void brcms_dpc(unsigned long data
)
957 struct brcms_info
*wl
;
959 wl
= (struct brcms_info
*) data
;
961 spin_lock_bh(&wl
->lock
);
963 /* call the common second level interrupt handler */
968 spin_lock_irqsave(&wl
->isr_lock
, flags
);
969 brcms_c_intrsupd(wl
->wlc
);
970 spin_unlock_irqrestore(&wl
->isr_lock
, flags
);
973 wl
->resched
= brcms_c_dpc(wl
->wlc
, true);
976 /* brcms_c_dpc() may bring the driver down */
980 /* re-schedule dpc */
982 tasklet_schedule(&wl
->tasklet
);
984 /* re-enable interrupts */
988 spin_unlock_bh(&wl
->lock
);
989 wake_up(&wl
->tx_flush_wq
);
992 static irqreturn_t
brcms_isr(int irq
, void *dev_id
)
994 struct brcms_info
*wl
;
995 irqreturn_t ret
= IRQ_NONE
;
997 wl
= (struct brcms_info
*) dev_id
;
999 spin_lock(&wl
->isr_lock
);
1001 /* call common first level interrupt handler */
1002 if (brcms_c_isr(wl
->wlc
)) {
1003 /* schedule second level handler */
1004 tasklet_schedule(&wl
->tasklet
);
1008 spin_unlock(&wl
->isr_lock
);
1014 * is called in brcms_pci_probe() context, therefore no locking required.
1016 static int ieee_hw_rate_init(struct ieee80211_hw
*hw
)
1018 struct brcms_info
*wl
= hw
->priv
;
1019 struct brcms_c_info
*wlc
= wl
->wlc
;
1020 struct ieee80211_supported_band
*band
;
1024 hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] = NULL
;
1025 hw
->wiphy
->bands
[IEEE80211_BAND_5GHZ
] = NULL
;
1027 phy_type
= brcms_c_get_phy_type(wl
->wlc
, 0);
1028 if (phy_type
== PHY_TYPE_N
|| phy_type
== PHY_TYPE_LCN
) {
1029 band
= &wlc
->bandstate
[BAND_2G_INDEX
]->band
;
1030 *band
= brcms_band_2GHz_nphy_template
;
1031 if (phy_type
== PHY_TYPE_LCN
) {
1033 band
->ht_cap
.mcs
.rx_mask
[1] = 0;
1034 band
->ht_cap
.mcs
.rx_highest
= cpu_to_le16(72);
1036 hw
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] = band
;
1041 /* Assume all bands use the same phy. True for 11n devices. */
1042 if (wl
->pub
->_nbands
> 1) {
1044 if (phy_type
== PHY_TYPE_N
|| phy_type
== PHY_TYPE_LCN
) {
1045 band
= &wlc
->bandstate
[BAND_5G_INDEX
]->band
;
1046 *band
= brcms_band_5GHz_nphy_template
;
1047 hw
->wiphy
->bands
[IEEE80211_BAND_5GHZ
] = band
;
1056 * is called in brcms_pci_probe() context, therefore no locking required.
1058 static int ieee_hw_init(struct ieee80211_hw
*hw
)
1060 hw
->flags
= IEEE80211_HW_SIGNAL_DBM
1061 /* | IEEE80211_HW_CONNECTION_MONITOR What is this? */
1062 | IEEE80211_HW_REPORTS_TX_ACK_STATUS
1063 | IEEE80211_HW_AMPDU_AGGREGATION
;
1065 hw
->extra_tx_headroom
= brcms_c_get_header_len();
1066 hw
->queues
= N_TX_QUEUES
;
1067 hw
->max_rates
= 2; /* Primary rate and 1 fallback rate */
1069 /* channel change time is dependent on chip and band */
1070 hw
->channel_change_time
= 7 * 1000;
1071 hw
->wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
) |
1072 BIT(NL80211_IFTYPE_AP
) |
1073 BIT(NL80211_IFTYPE_ADHOC
);
1076 * deactivate sending probe responses by ucude, because this will
1077 * cause problems when WPS is used.
1079 * hw->wiphy->flags |= WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD;
1082 hw
->rate_control_algorithm
= "minstrel_ht";
1084 hw
->sta_data_size
= 0;
1085 return ieee_hw_rate_init(hw
);
1089 * attach to the WL device.
1091 * Attach to the WL device identified by vendor and device parameters.
1092 * regs is a host accessible memory address pointing to WL device registers.
1094 * brcms_attach is not defined as static because in the case where no bus
1095 * is defined, wl_attach will never be called, and thus, gcc will issue
1096 * a warning that this function is defined but not used if we declare
1100 * is called in brcms_bcma_probe() context, therefore no locking required.
1102 static struct brcms_info
*brcms_attach(struct bcma_device
*pdev
)
1104 struct brcms_info
*wl
= NULL
;
1106 struct ieee80211_hw
*hw
;
1109 unit
= n_adapters_found
;
1115 /* allocate private info */
1116 hw
= bcma_get_drvdata(pdev
);
1119 if (WARN_ON(hw
== NULL
) || WARN_ON(wl
== NULL
))
1121 wl
->wiphy
= hw
->wiphy
;
1123 atomic_set(&wl
->callbacks
, 0);
1125 init_waitqueue_head(&wl
->tx_flush_wq
);
1127 /* setup the bottom half handler */
1128 tasklet_init(&wl
->tasklet
, brcms_dpc
, (unsigned long) wl
);
1130 spin_lock_init(&wl
->lock
);
1131 spin_lock_init(&wl
->isr_lock
);
1133 /* common load-time initialization */
1134 wl
->wlc
= brcms_c_attach((void *)wl
, pdev
, unit
, false, &err
);
1136 wiphy_err(wl
->wiphy
, "%s: attach() failed with code %d\n",
1137 KBUILD_MODNAME
, err
);
1140 wl
->pub
= brcms_c_pub(wl
->wlc
);
1142 wl
->pub
->ieee_hw
= hw
;
1144 /* register our interrupt handler */
1145 if (request_irq(pdev
->irq
, brcms_isr
,
1146 IRQF_SHARED
, KBUILD_MODNAME
, wl
)) {
1147 wiphy_err(wl
->wiphy
, "wl%d: request_irq() failed\n", unit
);
1150 wl
->irq
= pdev
->irq
;
1152 /* register module */
1153 brcms_c_module_register(wl
->pub
, "linux", wl
, NULL
);
1155 if (ieee_hw_init(hw
)) {
1156 wiphy_err(wl
->wiphy
, "wl%d: %s: ieee_hw_init failed!\n", unit
,
1161 brcms_c_regd_init(wl
->wlc
);
1163 memcpy(perm
, &wl
->pub
->cur_etheraddr
, ETH_ALEN
);
1164 if (WARN_ON(!is_valid_ether_addr(perm
)))
1166 SET_IEEE80211_PERM_ADDR(hw
, perm
);
1168 err
= ieee80211_register_hw(hw
);
1170 wiphy_err(wl
->wiphy
, "%s: ieee80211_register_hw failed, status"
1171 "%d\n", __func__
, err
);
1173 if (wl
->pub
->srom_ccode
[0] &&
1174 regulatory_hint(wl
->wiphy
, wl
->pub
->srom_ccode
))
1175 wiphy_err(wl
->wiphy
, "%s: regulatory hint failed\n", __func__
);
1177 brcms_debugfs_attach(wl
->pub
);
1178 brcms_debugfs_create_files(wl
->pub
);
1190 * determines if a device is a WL device, and if so, attaches it.
1192 * This function determines if a device pointed to by pdev is a WL device,
1193 * and if so, performs a brcms_attach() on it.
1195 * Perimeter lock is initialized in the course of this function.
1197 static int brcms_bcma_probe(struct bcma_device
*pdev
)
1199 struct brcms_info
*wl
;
1200 struct ieee80211_hw
*hw
;
1202 dev_info(&pdev
->dev
, "mfg %x core %x rev %d class %d irq %d\n",
1203 pdev
->id
.manuf
, pdev
->id
.id
, pdev
->id
.rev
, pdev
->id
.class,
1206 if ((pdev
->id
.manuf
!= BCMA_MANUF_BCM
) ||
1207 (pdev
->id
.id
!= BCMA_CORE_80211
))
1210 hw
= ieee80211_alloc_hw(sizeof(struct brcms_info
), &brcms_ops
);
1212 pr_err("%s: ieee80211_alloc_hw failed\n", __func__
);
1216 SET_IEEE80211_DEV(hw
, &pdev
->dev
);
1218 bcma_set_drvdata(pdev
, hw
);
1220 memset(hw
->priv
, 0, sizeof(*wl
));
1222 wl
= brcms_attach(pdev
);
1224 pr_err("%s: brcms_attach failed!\n", __func__
);
1227 brcms_led_register(wl
);
1232 static int brcms_suspend(struct bcma_device
*pdev
)
1234 struct brcms_info
*wl
;
1235 struct ieee80211_hw
*hw
;
1237 hw
= bcma_get_drvdata(pdev
);
1240 pr_err("%s: %s: no driver private struct!\n", KBUILD_MODNAME
,
1245 /* only need to flag hw is down for proper resume */
1246 spin_lock_bh(&wl
->lock
);
1247 wl
->pub
->hw_up
= false;
1248 spin_unlock_bh(&wl
->lock
);
1250 brcms_dbg_info(wl
->wlc
->hw
->d11core
, "brcms_suspend ok\n");
1255 static int brcms_resume(struct bcma_device
*pdev
)
1260 static struct bcma_driver brcms_bcma_driver
= {
1261 .name
= KBUILD_MODNAME
,
1262 .probe
= brcms_bcma_probe
,
1263 .suspend
= brcms_suspend
,
1264 .resume
= brcms_resume
,
1265 .remove
= brcms_remove
,
1266 .id_table
= brcms_coreid_table
,
1270 * This is the main entry point for the brcmsmac driver.
1272 * This function is scheduled upon module initialization and
1273 * does the driver registration, which result in brcms_bcma_probe()
1274 * call resulting in the driver bringup.
1276 static void brcms_driver_init(struct work_struct
*work
)
1280 error
= bcma_driver_register(&brcms_bcma_driver
);
1282 pr_err("%s: register returned %d\n", __func__
, error
);
1285 static DECLARE_WORK(brcms_driver_work
, brcms_driver_init
);
1287 static int __init
brcms_module_init(void)
1289 brcms_debugfs_init();
1290 if (!schedule_work(&brcms_driver_work
))
1297 * This function unloads the brcmsmac driver from the system.
1299 * This function unconditionally unloads the brcmsmac driver module from the
1303 static void __exit
brcms_module_exit(void)
1305 cancel_work_sync(&brcms_driver_work
);
1306 bcma_driver_unregister(&brcms_bcma_driver
);
1307 brcms_debugfs_exit();
1310 module_init(brcms_module_init
);
1311 module_exit(brcms_module_exit
);
1314 * precondition: perimeter lock has been acquired
1316 void brcms_txflowcontrol(struct brcms_info
*wl
, struct brcms_if
*wlif
,
1317 bool state
, int prio
)
1319 brcms_err(wl
->wlc
->hw
->d11core
, "Shouldn't be here %s\n", __func__
);
1323 * precondition: perimeter lock has been acquired
1325 void brcms_init(struct brcms_info
*wl
)
1327 brcms_dbg_info(wl
->wlc
->hw
->d11core
, "Initializing wl%d\n",
1330 brcms_c_init(wl
->wlc
, wl
->mute_tx
);
1334 * precondition: perimeter lock has been acquired
1336 uint
brcms_reset(struct brcms_info
*wl
)
1338 brcms_dbg_info(wl
->wlc
->hw
->d11core
, "Resetting wl%d\n", wl
->pub
->unit
);
1339 brcms_c_reset(wl
->wlc
);
1341 /* dpc will not be rescheduled */
1342 wl
->resched
= false;
1344 /* inform publicly that interface is down */
1345 wl
->pub
->up
= false;
1350 void brcms_fatal_error(struct brcms_info
*wl
)
1352 brcms_err(wl
->wlc
->hw
->d11core
, "wl%d: fatal error, reinitializing\n",
1353 wl
->wlc
->pub
->unit
);
1355 ieee80211_restart_hw(wl
->pub
->ieee_hw
);
1359 * These are interrupt on/off entry points. Disable interrupts
1360 * during interrupt state transition.
1362 void brcms_intrson(struct brcms_info
*wl
)
1364 unsigned long flags
;
1366 spin_lock_irqsave(&wl
->isr_lock
, flags
);
1367 brcms_c_intrson(wl
->wlc
);
1368 spin_unlock_irqrestore(&wl
->isr_lock
, flags
);
1371 u32
brcms_intrsoff(struct brcms_info
*wl
)
1373 unsigned long flags
;
1376 spin_lock_irqsave(&wl
->isr_lock
, flags
);
1377 status
= brcms_c_intrsoff(wl
->wlc
);
1378 spin_unlock_irqrestore(&wl
->isr_lock
, flags
);
1382 void brcms_intrsrestore(struct brcms_info
*wl
, u32 macintmask
)
1384 unsigned long flags
;
1386 spin_lock_irqsave(&wl
->isr_lock
, flags
);
1387 brcms_c_intrsrestore(wl
->wlc
, macintmask
);
1388 spin_unlock_irqrestore(&wl
->isr_lock
, flags
);
1392 * precondition: perimeter lock has been acquired
1394 int brcms_up(struct brcms_info
*wl
)
1401 error
= brcms_c_up(wl
->wlc
);
1407 * precondition: perimeter lock has been acquired
1409 void brcms_down(struct brcms_info
*wl
)
1411 uint callbacks
, ret_val
= 0;
1413 /* call common down function */
1414 ret_val
= brcms_c_down(wl
->wlc
);
1415 callbacks
= atomic_read(&wl
->callbacks
) - ret_val
;
1417 /* wait for down callbacks to complete */
1418 spin_unlock_bh(&wl
->lock
);
1420 /* For HIGH_only driver, it's important to actually schedule other work,
1421 * not just spin wait since everything runs at schedule level
1423 SPINWAIT((atomic_read(&wl
->callbacks
) > callbacks
), 100 * 1000);
1425 spin_lock_bh(&wl
->lock
);
1429 * precondition: perimeter lock is not acquired
1431 static void _brcms_timer(struct work_struct
*work
)
1433 struct brcms_timer
*t
= container_of(work
, struct brcms_timer
,
1436 spin_lock_bh(&t
->wl
->lock
);
1440 atomic_inc(&t
->wl
->callbacks
);
1441 ieee80211_queue_delayed_work(t
->wl
->pub
->ieee_hw
,
1443 msecs_to_jiffies(t
->ms
));
1451 atomic_dec(&t
->wl
->callbacks
);
1453 spin_unlock_bh(&t
->wl
->lock
);
1457 * Adds a timer to the list. Caller supplies a timer function.
1458 * Is called from wlc.
1460 * precondition: perimeter lock has been acquired
1462 struct brcms_timer
*brcms_init_timer(struct brcms_info
*wl
,
1463 void (*fn
) (void *arg
),
1464 void *arg
, const char *name
)
1466 struct brcms_timer
*t
;
1468 t
= kzalloc(sizeof(struct brcms_timer
), GFP_ATOMIC
);
1472 INIT_DELAYED_WORK(&t
->dly_wrk
, _brcms_timer
);
1476 t
->next
= wl
->timers
;
1480 t
->name
= kmalloc(strlen(name
) + 1, GFP_ATOMIC
);
1482 strcpy(t
->name
, name
);
1489 * adds only the kernel timer since it's going to be more accurate
1490 * as well as it's easier to make it periodic
1492 * precondition: perimeter lock has been acquired
1494 void brcms_add_timer(struct brcms_timer
*t
, uint ms
, int periodic
)
1496 struct ieee80211_hw
*hw
= t
->wl
->pub
->ieee_hw
;
1500 brcms_dbg_info(t
->wl
->wlc
->hw
->d11core
,
1501 "%s: Already set. Name: %s, per %d\n",
1502 __func__
, t
->name
, periodic
);
1505 t
->periodic
= (bool) periodic
;
1508 atomic_inc(&t
->wl
->callbacks
);
1511 ieee80211_queue_delayed_work(hw
, &t
->dly_wrk
, msecs_to_jiffies(ms
));
1515 * return true if timer successfully deleted, false if still pending
1517 * precondition: perimeter lock has been acquired
1519 bool brcms_del_timer(struct brcms_timer
*t
)
1523 if (!cancel_delayed_work(&t
->dly_wrk
))
1526 atomic_dec(&t
->wl
->callbacks
);
1533 * precondition: perimeter lock has been acquired
1535 void brcms_free_timer(struct brcms_timer
*t
)
1537 struct brcms_info
*wl
= t
->wl
;
1538 struct brcms_timer
*tmp
;
1540 /* delete the timer in case it is active */
1543 if (wl
->timers
== t
) {
1544 wl
->timers
= wl
->timers
->next
;
1555 if (tmp
->next
== t
) {
1556 tmp
->next
= t
->next
;
1569 * precondition: perimeter lock has been acquired
1571 int brcms_ucode_init_buf(struct brcms_info
*wl
, void **pbuf
, u32 idx
)
1575 struct firmware_hdr
*hdr
;
1576 for (i
= 0; i
< wl
->fw
.fw_cnt
; i
++) {
1577 hdr
= (struct firmware_hdr
*)wl
->fw
.fw_hdr
[i
]->data
;
1578 for (entry
= 0; entry
< wl
->fw
.hdr_num_entries
[i
];
1580 u32 len
= le32_to_cpu(hdr
->len
);
1581 if (le32_to_cpu(hdr
->idx
) == idx
) {
1582 pdata
= wl
->fw
.fw_bin
[i
]->data
+
1583 le32_to_cpu(hdr
->offset
);
1584 *pbuf
= kmemdup(pdata
, len
, GFP_ATOMIC
);
1592 brcms_err(wl
->wlc
->hw
->d11core
,
1593 "ERROR: ucode buf tag:%d can not be found!\n", idx
);
1600 * Precondition: Since this function is called in brcms_bcma_probe() context,
1601 * no locking is required.
1603 int brcms_ucode_init_uint(struct brcms_info
*wl
, size_t *n_bytes
, u32 idx
)
1607 struct firmware_hdr
*hdr
;
1608 for (i
= 0; i
< wl
->fw
.fw_cnt
; i
++) {
1609 hdr
= (struct firmware_hdr
*)wl
->fw
.fw_hdr
[i
]->data
;
1610 for (entry
= 0; entry
< wl
->fw
.hdr_num_entries
[i
];
1612 if (le32_to_cpu(hdr
->idx
) == idx
) {
1613 pdata
= wl
->fw
.fw_bin
[i
]->data
+
1614 le32_to_cpu(hdr
->offset
);
1615 if (le32_to_cpu(hdr
->len
) != 4) {
1616 brcms_err(wl
->wlc
->hw
->d11core
,
1617 "ERROR: fw hdr len\n");
1620 *n_bytes
= le32_to_cpu(*((__le32
*) pdata
));
1625 brcms_err(wl
->wlc
->hw
->d11core
,
1626 "ERROR: ucode tag:%d can not be found!\n", idx
);
1631 * precondition: can both be called locked and unlocked
1633 void brcms_ucode_free_buf(void *p
)
1639 * checks validity of all firmware images loaded from user space
1641 * Precondition: Since this function is called in brcms_bcma_probe() context,
1642 * no locking is required.
1644 int brcms_check_firmwares(struct brcms_info
*wl
)
1649 const struct firmware
*fw
;
1650 const struct firmware
*fw_hdr
;
1651 struct firmware_hdr
*ucode_hdr
;
1652 for (i
= 0; i
< MAX_FW_IMAGES
&& rc
== 0; i
++) {
1653 fw
= wl
->fw
.fw_bin
[i
];
1654 fw_hdr
= wl
->fw
.fw_hdr
[i
];
1655 if (fw
== NULL
&& fw_hdr
== NULL
) {
1657 } else if (fw
== NULL
|| fw_hdr
== NULL
) {
1658 wiphy_err(wl
->wiphy
, "%s: invalid bin/hdr fw\n",
1661 } else if (fw_hdr
->size
% sizeof(struct firmware_hdr
)) {
1662 wiphy_err(wl
->wiphy
, "%s: non integral fw hdr file "
1663 "size %zu/%zu\n", __func__
, fw_hdr
->size
,
1664 sizeof(struct firmware_hdr
));
1666 } else if (fw
->size
< MIN_FW_SIZE
|| fw
->size
> MAX_FW_SIZE
) {
1667 wiphy_err(wl
->wiphy
, "%s: out of bounds fw file size %zu\n",
1668 __func__
, fw
->size
);
1671 /* check if ucode section overruns firmware image */
1672 ucode_hdr
= (struct firmware_hdr
*)fw_hdr
->data
;
1673 for (entry
= 0; entry
< wl
->fw
.hdr_num_entries
[i
] &&
1674 !rc
; entry
++, ucode_hdr
++) {
1675 if (le32_to_cpu(ucode_hdr
->offset
) +
1676 le32_to_cpu(ucode_hdr
->len
) >
1678 wiphy_err(wl
->wiphy
,
1679 "%s: conflicting bin/hdr\n",
1686 if (rc
== 0 && wl
->fw
.fw_cnt
!= i
) {
1687 wiphy_err(wl
->wiphy
, "%s: invalid fw_cnt=%d\n", __func__
,
1695 * precondition: perimeter lock has been acquired
1697 bool brcms_rfkill_set_hw_state(struct brcms_info
*wl
)
1699 bool blocked
= brcms_c_check_radio_disabled(wl
->wlc
);
1701 spin_unlock_bh(&wl
->lock
);
1702 wiphy_rfkill_set_hw_state(wl
->pub
->ieee_hw
->wiphy
, blocked
);
1704 wiphy_rfkill_start_polling(wl
->pub
->ieee_hw
->wiphy
);
1705 spin_lock_bh(&wl
->lock
);