blob: 9cd7c05443eb9d0c3e0c41c1f26aea378f0a7541 [file] [log] [blame]
Arend van Spriel5b435de2011-10-05 13:19:03 +02001/*
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
Joe Perches02f77192012-01-15 00:38:44 -080017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Arend van Spriel5b435de2011-10-05 13:19:03 +020019#include <linux/pci_ids.h>
20#include <linux/if_ether.h>
21#include <net/mac80211.h>
22#include <brcm_hw_ids.h>
23#include <aiutils.h>
24#include <chipcommon.h>
25#include "rate.h"
26#include "scb.h"
27#include "phy/phy_hal.h"
28#include "channel.h"
29#include "antsel.h"
30#include "stf.h"
31#include "ampdu.h"
32#include "mac80211_if.h"
33#include "ucode_loader.h"
34#include "main.h"
Alwin Beukers23038212011-10-18 14:02:58 +020035#include "soc.h"
Arend van Spriel5b435de2011-10-05 13:19:03 +020036
37/*
38 * Indication for txflowcontrol that all priority bits in
39 * TXQ_STOP_FOR_PRIOFC_MASK are to be considered.
40 */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020041#define ALLPRIO -1
Arend van Spriel5b435de2011-10-05 13:19:03 +020042
43/* watchdog timer, in unit of ms */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020044#define TIMER_INTERVAL_WATCHDOG 1000
Arend van Spriel5b435de2011-10-05 13:19:03 +020045/* radio monitor timer, in unit of ms */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020046#define TIMER_INTERVAL_RADIOCHK 800
Arend van Spriel5b435de2011-10-05 13:19:03 +020047
Arend van Spriel5b435de2011-10-05 13:19:03 +020048/* beacon interval, in unit of 1024TU */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020049#define BEACON_INTERVAL_DEFAULT 100
Arend van Spriel5b435de2011-10-05 13:19:03 +020050
51/* n-mode support capability */
52/* 2x2 includes both 1x1 & 2x2 devices
53 * reserved #define 2 for future when we want to separate 1x1 & 2x2 and
54 * control it independently
55 */
56#define WL_11N_2x2 1
57#define WL_11N_3x3 3
58#define WL_11N_4x4 4
59
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020060#define EDCF_ACI_MASK 0x60
61#define EDCF_ACI_SHIFT 5
62#define EDCF_ECWMIN_MASK 0x0f
63#define EDCF_ECWMAX_SHIFT 4
64#define EDCF_AIFSN_MASK 0x0f
65#define EDCF_AIFSN_MAX 15
66#define EDCF_ECWMAX_MASK 0xf0
Arend van Spriel5b435de2011-10-05 13:19:03 +020067
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020068#define EDCF_AC_BE_TXOP_STA 0x0000
69#define EDCF_AC_BK_TXOP_STA 0x0000
70#define EDCF_AC_VO_ACI_STA 0x62
71#define EDCF_AC_VO_ECW_STA 0x32
72#define EDCF_AC_VI_ACI_STA 0x42
73#define EDCF_AC_VI_ECW_STA 0x43
74#define EDCF_AC_BK_ECW_STA 0xA4
75#define EDCF_AC_VI_TXOP_STA 0x005e
76#define EDCF_AC_VO_TXOP_STA 0x002f
77#define EDCF_AC_BE_ACI_STA 0x03
78#define EDCF_AC_BE_ECW_STA 0xA4
79#define EDCF_AC_BK_ACI_STA 0x27
80#define EDCF_AC_VO_TXOP_AP 0x002f
Arend van Spriel5b435de2011-10-05 13:19:03 +020081
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020082#define EDCF_TXOP2USEC(txop) ((txop) << 5)
83#define EDCF_ECW2CW(exp) ((1 << (exp)) - 1)
Arend van Spriel5b435de2011-10-05 13:19:03 +020084
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020085#define APHY_SYMBOL_TIME 4
86#define APHY_PREAMBLE_TIME 16
87#define APHY_SIGNAL_TIME 4
88#define APHY_SIFS_TIME 16
89#define APHY_SERVICE_NBITS 16
90#define APHY_TAIL_NBITS 6
91#define BPHY_SIFS_TIME 10
92#define BPHY_PLCP_SHORT_TIME 96
Arend van Spriel5b435de2011-10-05 13:19:03 +020093
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020094#define PREN_PREAMBLE 24
95#define PREN_MM_EXT 12
96#define PREN_PREAMBLE_EXT 4
Arend van Spriel5b435de2011-10-05 13:19:03 +020097
98#define DOT11_MAC_HDR_LEN 24
Alwin Beukers73ffc2f2011-10-18 14:02:57 +020099#define DOT11_ACK_LEN 10
100#define DOT11_BA_LEN 4
Arend van Spriel5b435de2011-10-05 13:19:03 +0200101#define DOT11_OFDM_SIGNAL_EXTENSION 6
102#define DOT11_MIN_FRAG_LEN 256
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200103#define DOT11_RTS_LEN 16
104#define DOT11_CTS_LEN 10
Arend van Spriel5b435de2011-10-05 13:19:03 +0200105#define DOT11_BA_BITMAP_LEN 128
106#define DOT11_MIN_BEACON_PERIOD 1
107#define DOT11_MAX_BEACON_PERIOD 0xFFFF
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200108#define DOT11_MAXNUMFRAGS 16
Arend van Spriel5b435de2011-10-05 13:19:03 +0200109#define DOT11_MAX_FRAG_LEN 2346
110
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200111#define BPHY_PLCP_TIME 192
112#define RIFS_11N_TIME 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200113
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200114/* length of the BCN template area */
115#define BCN_TMPL_LEN 512
Arend van Spriel5b435de2011-10-05 13:19:03 +0200116
117/* brcms_bss_info flag bit values */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200118#define BRCMS_BSS_HT 0x0020 /* BSS is HT (MIMO) capable */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200119
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200120/* chip rx buffer offset */
121#define BRCMS_HWRXOFF 38
Arend van Spriel5b435de2011-10-05 13:19:03 +0200122
123/* rfdisable delay timer 500 ms, runs of ALP clock */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200124#define RFDISABLE_DEFAULT 10000000
Arend van Spriel5b435de2011-10-05 13:19:03 +0200125
126#define BRCMS_TEMPSENSE_PERIOD 10 /* 10 second timeout */
127
128/* precedences numbers for wlc queues. These are twice as may levels as
129 * 802.1D priorities.
130 * Odd numbers are used for HI priority traffic at same precedence levels
131 * These constants are used ONLY by wlc_prio2prec_map. Do not use them
132 * elsewhere.
133 */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200134#define _BRCMS_PREC_NONE 0 /* None = - */
135#define _BRCMS_PREC_BK 2 /* BK - Background */
136#define _BRCMS_PREC_BE 4 /* BE - Best-effort */
137#define _BRCMS_PREC_EE 6 /* EE - Excellent-effort */
138#define _BRCMS_PREC_CL 8 /* CL - Controlled Load */
139#define _BRCMS_PREC_VI 10 /* Vi - Video */
140#define _BRCMS_PREC_VO 12 /* Vo - Voice */
141#define _BRCMS_PREC_NC 14 /* NC - Network Control */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200142
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200143/* synthpu_dly times in us */
144#define SYNTHPU_DLY_APHY_US 3700
145#define SYNTHPU_DLY_BPHY_US 1050
146#define SYNTHPU_DLY_NPHY_US 2048
147#define SYNTHPU_DLY_LPPHY_US 300
Arend van Spriel5b435de2011-10-05 13:19:03 +0200148
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200149#define ANTCNT 10 /* vanilla M_MAX_ANTCNT val */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200150
151/* Per-AC retry limit register definitions; uses defs.h bitfield macros */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200152#define EDCF_SHORT_S 0
153#define EDCF_SFB_S 4
154#define EDCF_LONG_S 8
155#define EDCF_LFB_S 12
156#define EDCF_SHORT_M BITFIELD_MASK(4)
157#define EDCF_SFB_M BITFIELD_MASK(4)
158#define EDCF_LONG_M BITFIELD_MASK(4)
159#define EDCF_LFB_M BITFIELD_MASK(4)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200160
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200161#define RETRY_SHORT_DEF 7 /* Default Short retry Limit */
162#define RETRY_SHORT_MAX 255 /* Maximum Short retry Limit */
163#define RETRY_LONG_DEF 4 /* Default Long retry count */
164#define RETRY_SHORT_FB 3 /* Short count for fb rate */
165#define RETRY_LONG_FB 2 /* Long count for fb rate */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200166
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200167#define APHY_CWMIN 15
168#define PHY_CWMAX 1023
Arend van Spriel5b435de2011-10-05 13:19:03 +0200169
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200170#define EDCF_AIFSN_MIN 1
Arend van Spriel5b435de2011-10-05 13:19:03 +0200171
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200172#define FRAGNUM_MASK 0xF
Arend van Spriel5b435de2011-10-05 13:19:03 +0200173
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200174#define APHY_SLOT_TIME 9
175#define BPHY_SLOT_TIME 20
Arend van Spriel5b435de2011-10-05 13:19:03 +0200176
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200177#define WL_SPURAVOID_OFF 0
178#define WL_SPURAVOID_ON1 1
179#define WL_SPURAVOID_ON2 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200180
181/* invalid core flags, use the saved coreflags */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200182#define BRCMS_USE_COREFLAGS 0xffffffff
Arend van Spriel5b435de2011-10-05 13:19:03 +0200183
184/* values for PLCPHdr_override */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200185#define BRCMS_PLCP_AUTO -1
186#define BRCMS_PLCP_SHORT 0
187#define BRCMS_PLCP_LONG 1
Arend van Spriel5b435de2011-10-05 13:19:03 +0200188
189/* values for g_protection_override and n_protection_override */
190#define BRCMS_PROTECTION_AUTO -1
191#define BRCMS_PROTECTION_OFF 0
192#define BRCMS_PROTECTION_ON 1
193#define BRCMS_PROTECTION_MMHDR_ONLY 2
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200194#define BRCMS_PROTECTION_CTS_ONLY 3
Arend van Spriel5b435de2011-10-05 13:19:03 +0200195
196/* values for g_protection_control and n_protection_control */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200197#define BRCMS_PROTECTION_CTL_OFF 0
Arend van Spriel5b435de2011-10-05 13:19:03 +0200198#define BRCMS_PROTECTION_CTL_LOCAL 1
199#define BRCMS_PROTECTION_CTL_OVERLAP 2
200
201/* values for n_protection */
202#define BRCMS_N_PROTECTION_OFF 0
203#define BRCMS_N_PROTECTION_OPTIONAL 1
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200204#define BRCMS_N_PROTECTION_20IN40 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200205#define BRCMS_N_PROTECTION_MIXEDMODE 3
206
207/* values for band specific 40MHz capabilities */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200208#define BRCMS_N_BW_20ALL 0
209#define BRCMS_N_BW_40ALL 1
210#define BRCMS_N_BW_20IN2G_40IN5G 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200211
212/* bitflags for SGI support (sgi_rx iovar) */
213#define BRCMS_N_SGI_20 0x01
214#define BRCMS_N_SGI_40 0x02
215
216/* defines used by the nrate iovar */
217/* MSC in use,indicates b0-6 holds an mcs */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200218#define NRATE_MCS_INUSE 0x00000080
Arend van Spriel5b435de2011-10-05 13:19:03 +0200219/* rate/mcs value */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200220#define NRATE_RATE_MASK 0x0000007f
Arend van Spriel5b435de2011-10-05 13:19:03 +0200221/* stf mode mask: siso, cdd, stbc, sdm */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200222#define NRATE_STF_MASK 0x0000ff00
Arend van Spriel5b435de2011-10-05 13:19:03 +0200223/* stf mode shift */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200224#define NRATE_STF_SHIFT 8
Arend van Spriel5b435de2011-10-05 13:19:03 +0200225/* bit indicate to override mcs only */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200226#define NRATE_OVERRIDE_MCS_ONLY 0x40000000
227#define NRATE_SGI_MASK 0x00800000 /* sgi mode */
228#define NRATE_SGI_SHIFT 23 /* sgi mode */
229#define NRATE_LDPC_CODING 0x00400000 /* adv coding in use */
230#define NRATE_LDPC_SHIFT 22 /* ldpc shift */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200231
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200232#define NRATE_STF_SISO 0 /* stf mode SISO */
233#define NRATE_STF_CDD 1 /* stf mode CDD */
234#define NRATE_STF_STBC 2 /* stf mode STBC */
235#define NRATE_STF_SDM 3 /* stf mode SDM */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200236
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200237#define MAX_DMA_SEGS 4
Arend van Spriel5b435de2011-10-05 13:19:03 +0200238
239/* Max # of entries in Tx FIFO based on 4kb page size */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200240#define NTXD 256
Arend van Spriel5b435de2011-10-05 13:19:03 +0200241/* Max # of entries in Rx FIFO based on 4kb page size */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200242#define NRXD 256
Arend van Spriel5b435de2011-10-05 13:19:03 +0200243
244/* try to keep this # rbufs posted to the chip */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200245#define NRXBUFPOST 32
Arend van Spriel5b435de2011-10-05 13:19:03 +0200246
247/* data msg txq hiwat mark */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200248#define BRCMS_DATAHIWAT 50
Arend van Spriel5b435de2011-10-05 13:19:03 +0200249
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200250/* max # frames to process in brcms_c_recv() */
251#define RXBND 8
252/* max # tx status to process in wlc_txstatus() */
253#define TXSBND 8
Arend van Spriel5b435de2011-10-05 13:19:03 +0200254
Alwin Beukers44760652011-10-12 20:51:31 +0200255/* brcmu_format_flags() bit description structure */
256struct brcms_c_bit_desc {
257 u32 bit;
258 const char *name;
259};
260
Arend van Spriel5b435de2011-10-05 13:19:03 +0200261/*
262 * The following table lists the buffer memory allocated to xmt fifos in HW.
263 * the size is in units of 256bytes(one block), total size is HW dependent
264 * ucode has default fifo partition, sw can overwrite if necessary
265 *
266 * This is documented in twiki under the topic UcodeTxFifo. Please ensure
267 * the twiki is updated before making changes.
268 */
269
270/* Starting corerev for the fifo size table */
271#define XMTFIFOTBL_STARTREV 20
272
273struct d11init {
274 __le16 addr;
275 __le16 size;
276 __le32 value;
277};
278
Arend van Spriel5b435de2011-10-05 13:19:03 +0200279struct edcf_acparam {
280 u8 ACI;
281 u8 ECW;
282 u16 TXOP;
283} __packed;
284
285const u8 prio2fifo[NUMPRIO] = {
286 TX_AC_BE_FIFO, /* 0 BE AC_BE Best Effort */
287 TX_AC_BK_FIFO, /* 1 BK AC_BK Background */
288 TX_AC_BK_FIFO, /* 2 -- AC_BK Background */
289 TX_AC_BE_FIFO, /* 3 EE AC_BE Best Effort */
290 TX_AC_VI_FIFO, /* 4 CL AC_VI Video */
291 TX_AC_VI_FIFO, /* 5 VI AC_VI Video */
292 TX_AC_VO_FIFO, /* 6 VO AC_VO Voice */
293 TX_AC_VO_FIFO /* 7 NC AC_VO Voice */
294};
295
296/* debug/trace */
297uint brcm_msg_level =
Joe Perches8ae74652012-01-15 00:38:38 -0800298#if defined(DEBUG)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200299 LOG_ERROR_VAL;
300#else
301 0;
Joe Perches8ae74652012-01-15 00:38:38 -0800302#endif /* DEBUG */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200303
304/* TX FIFO number to WME/802.1E Access Category */
Arend van Sprielb7eec422011-11-10 20:30:18 +0100305static const u8 wme_fifo2ac[] = {
306 IEEE80211_AC_BK,
307 IEEE80211_AC_BE,
308 IEEE80211_AC_VI,
309 IEEE80211_AC_VO,
310 IEEE80211_AC_BE,
311 IEEE80211_AC_BE
312};
Arend van Spriel5b435de2011-10-05 13:19:03 +0200313
Arend van Sprielb7eec422011-11-10 20:30:18 +0100314/* ieee80211 Access Category to TX FIFO number */
315static const u8 wme_ac2fifo[] = {
316 TX_AC_VO_FIFO,
317 TX_AC_VI_FIFO,
318 TX_AC_BE_FIFO,
319 TX_AC_BK_FIFO
320};
Arend van Spriel5b435de2011-10-05 13:19:03 +0200321
322/* 802.1D Priority to precedence queue mapping */
323const u8 wlc_prio2prec_map[] = {
324 _BRCMS_PREC_BE, /* 0 BE - Best-effort */
325 _BRCMS_PREC_BK, /* 1 BK - Background */
326 _BRCMS_PREC_NONE, /* 2 None = - */
327 _BRCMS_PREC_EE, /* 3 EE - Excellent-effort */
328 _BRCMS_PREC_CL, /* 4 CL - Controlled Load */
329 _BRCMS_PREC_VI, /* 5 Vi - Video */
330 _BRCMS_PREC_VO, /* 6 Vo - Voice */
331 _BRCMS_PREC_NC, /* 7 NC - Network Control */
332};
333
334static const u16 xmtfifo_sz[][NFIFO] = {
335 /* corerev 20: 5120, 49152, 49152, 5376, 4352, 1280 */
336 {20, 192, 192, 21, 17, 5},
337 /* corerev 21: 2304, 14848, 5632, 3584, 3584, 1280 */
338 {9, 58, 22, 14, 14, 5},
339 /* corerev 22: 5120, 49152, 49152, 5376, 4352, 1280 */
340 {20, 192, 192, 21, 17, 5},
341 /* corerev 23: 5120, 49152, 49152, 5376, 4352, 1280 */
342 {20, 192, 192, 21, 17, 5},
343 /* corerev 24: 2304, 14848, 5632, 3584, 3584, 1280 */
344 {9, 58, 22, 14, 14, 5},
345};
346
Joe Perches8ae74652012-01-15 00:38:38 -0800347#ifdef DEBUG
Arend van Spriel5b435de2011-10-05 13:19:03 +0200348static const char * const fifo_names[] = {
349 "AC_BK", "AC_BE", "AC_VI", "AC_VO", "BCMC", "ATIM" };
350#else
351static const char fifo_names[6][0];
352#endif
353
Joe Perches8ae74652012-01-15 00:38:38 -0800354#ifdef DEBUG
Arend van Spriel5b435de2011-10-05 13:19:03 +0200355/* pointer to most recently allocated wl/wlc */
356static struct brcms_c_info *wlc_info_dbg = (struct brcms_c_info *) (NULL);
357#endif
358
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200359/* Find basic rate for a given rate */
360static u8 brcms_basic_rate(struct brcms_c_info *wlc, u32 rspec)
361{
362 if (is_mcs_rate(rspec))
363 return wlc->band->basic_rate[mcs_table[rspec & RSPEC_RATE_MASK]
364 .leg_ofdm];
365 return wlc->band->basic_rate[rspec & RSPEC_RATE_MASK];
366}
367
368static u16 frametype(u32 rspec, u8 mimoframe)
369{
370 if (is_mcs_rate(rspec))
371 return mimoframe;
372 return is_cck_rate(rspec) ? FT_CCK : FT_OFDM;
373}
374
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200375/* currently the best mechanism for determining SIFS is the band in use */
376static u16 get_sifs(struct brcms_band *band)
377{
378 return band->bandtype == BRCM_BAND_5G ? APHY_SIFS_TIME :
379 BPHY_SIFS_TIME;
380}
381
382/*
383 * Detect Card removed.
384 * Even checking an sbconfig register read will not false trigger when the core
385 * is in reset it breaks CF address mechanism. Accessing gphy phyversion will
386 * cause SB error if aphy is in reset on 4306B0-DB. Need a simple accessible
387 * reg with fixed 0/1 pattern (some platforms return all 0).
388 * If clocks are present, call the sb routine which will figure out if the
389 * device is removed.
390 */
391static bool brcms_deviceremoved(struct brcms_c_info *wlc)
392{
Arend van Spriel16d28122011-12-08 15:06:51 -0800393 u32 macctrl;
394
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200395 if (!wlc->hw->clk)
396 return ai_deviceremoved(wlc->hw->sih);
Arend van Spriel16d28122011-12-08 15:06:51 -0800397 macctrl = bcma_read32(wlc->hw->d11core,
398 D11REGOFFS(maccontrol));
399 return (macctrl & (MCTL_PSM_JMP_0 | MCTL_IHR_EN)) != MCTL_IHR_EN;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200400}
401
402/* sum the individual fifo tx pending packet counts */
403static s16 brcms_txpktpendtot(struct brcms_c_info *wlc)
404{
405 return wlc->core->txpktpend[0] + wlc->core->txpktpend[1] +
406 wlc->core->txpktpend[2] + wlc->core->txpktpend[3];
407}
408
409static bool brcms_is_mband_unlocked(struct brcms_c_info *wlc)
410{
411 return wlc->pub->_nbands > 1 && !wlc->bandlocked;
412}
413
414static int brcms_chspec_bw(u16 chanspec)
415{
416 if (CHSPEC_IS40(chanspec))
417 return BRCMS_40_MHZ;
418 if (CHSPEC_IS20(chanspec))
419 return BRCMS_20_MHZ;
420
421 return BRCMS_10_MHZ;
422}
423
Arend van Spriel5b435de2011-10-05 13:19:03 +0200424static void brcms_c_bsscfg_mfree(struct brcms_bss_cfg *cfg)
425{
426 if (cfg == NULL)
427 return;
428
429 kfree(cfg->current_bss);
430 kfree(cfg);
431}
432
433static void brcms_c_detach_mfree(struct brcms_c_info *wlc)
434{
435 if (wlc == NULL)
436 return;
437
438 brcms_c_bsscfg_mfree(wlc->bsscfg);
439 kfree(wlc->pub);
440 kfree(wlc->modulecb);
441 kfree(wlc->default_bss);
442 kfree(wlc->protection);
443 kfree(wlc->stf);
444 kfree(wlc->bandstate[0]);
445 kfree(wlc->corestate->macstat_snapshot);
446 kfree(wlc->corestate);
447 kfree(wlc->hw->bandstate[0]);
448 kfree(wlc->hw);
449
450 /* free the wlc */
451 kfree(wlc);
452 wlc = NULL;
453}
454
455static struct brcms_bss_cfg *brcms_c_bsscfg_malloc(uint unit)
456{
457 struct brcms_bss_cfg *cfg;
458
459 cfg = kzalloc(sizeof(struct brcms_bss_cfg), GFP_ATOMIC);
460 if (cfg == NULL)
461 goto fail;
462
463 cfg->current_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC);
464 if (cfg->current_bss == NULL)
465 goto fail;
466
467 return cfg;
468
469 fail:
470 brcms_c_bsscfg_mfree(cfg);
471 return NULL;
472}
473
474static struct brcms_c_info *
475brcms_c_attach_malloc(uint unit, uint *err, uint devid)
476{
477 struct brcms_c_info *wlc;
478
479 wlc = kzalloc(sizeof(struct brcms_c_info), GFP_ATOMIC);
480 if (wlc == NULL) {
481 *err = 1002;
482 goto fail;
483 }
484
485 /* allocate struct brcms_c_pub state structure */
486 wlc->pub = kzalloc(sizeof(struct brcms_pub), GFP_ATOMIC);
487 if (wlc->pub == NULL) {
488 *err = 1003;
489 goto fail;
490 }
491 wlc->pub->wlc = wlc;
492
493 /* allocate struct brcms_hardware state structure */
494
495 wlc->hw = kzalloc(sizeof(struct brcms_hardware), GFP_ATOMIC);
496 if (wlc->hw == NULL) {
497 *err = 1005;
498 goto fail;
499 }
500 wlc->hw->wlc = wlc;
501
502 wlc->hw->bandstate[0] =
503 kzalloc(sizeof(struct brcms_hw_band) * MAXBANDS, GFP_ATOMIC);
504 if (wlc->hw->bandstate[0] == NULL) {
505 *err = 1006;
506 goto fail;
507 } else {
508 int i;
509
510 for (i = 1; i < MAXBANDS; i++)
511 wlc->hw->bandstate[i] = (struct brcms_hw_band *)
512 ((unsigned long)wlc->hw->bandstate[0] +
513 (sizeof(struct brcms_hw_band) * i));
514 }
515
516 wlc->modulecb =
517 kzalloc(sizeof(struct modulecb) * BRCMS_MAXMODULES, GFP_ATOMIC);
518 if (wlc->modulecb == NULL) {
519 *err = 1009;
520 goto fail;
521 }
522
523 wlc->default_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC);
524 if (wlc->default_bss == NULL) {
525 *err = 1010;
526 goto fail;
527 }
528
529 wlc->bsscfg = brcms_c_bsscfg_malloc(unit);
530 if (wlc->bsscfg == NULL) {
531 *err = 1011;
532 goto fail;
533 }
534
535 wlc->protection = kzalloc(sizeof(struct brcms_protection),
536 GFP_ATOMIC);
537 if (wlc->protection == NULL) {
538 *err = 1016;
539 goto fail;
540 }
541
542 wlc->stf = kzalloc(sizeof(struct brcms_stf), GFP_ATOMIC);
543 if (wlc->stf == NULL) {
544 *err = 1017;
545 goto fail;
546 }
547
548 wlc->bandstate[0] =
549 kzalloc(sizeof(struct brcms_band)*MAXBANDS, GFP_ATOMIC);
550 if (wlc->bandstate[0] == NULL) {
551 *err = 1025;
552 goto fail;
553 } else {
554 int i;
555
556 for (i = 1; i < MAXBANDS; i++)
557 wlc->bandstate[i] = (struct brcms_band *)
558 ((unsigned long)wlc->bandstate[0]
559 + (sizeof(struct brcms_band)*i));
560 }
561
562 wlc->corestate = kzalloc(sizeof(struct brcms_core), GFP_ATOMIC);
563 if (wlc->corestate == NULL) {
564 *err = 1026;
565 goto fail;
566 }
567
568 wlc->corestate->macstat_snapshot =
569 kzalloc(sizeof(struct macstat), GFP_ATOMIC);
570 if (wlc->corestate->macstat_snapshot == NULL) {
571 *err = 1027;
572 goto fail;
573 }
574
575 return wlc;
576
577 fail:
578 brcms_c_detach_mfree(wlc);
579 return NULL;
580}
581
582/*
583 * Update the slot timing for standard 11b/g (20us slots)
584 * or shortslot 11g (9us slots)
585 * The PSM needs to be suspended for this call.
586 */
587static void brcms_b_update_slot_timing(struct brcms_hardware *wlc_hw,
588 bool shortslot)
589{
Arend van Spriel16d28122011-12-08 15:06:51 -0800590 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200591
592 if (shortslot) {
593 /* 11g short slot: 11a timing */
Arend van Spriel16d28122011-12-08 15:06:51 -0800594 bcma_write16(core, D11REGOFFS(ifs_slot), 0x0207);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200595 brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, APHY_SLOT_TIME);
596 } else {
597 /* 11g long slot: 11b timing */
Arend van Spriel16d28122011-12-08 15:06:51 -0800598 bcma_write16(core, D11REGOFFS(ifs_slot), 0x0212);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200599 brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, BPHY_SLOT_TIME);
600 }
601}
602
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200603/*
604 * calculate frame duration of a given rate and length, return
605 * time in usec unit
606 */
Arend van Spriel094b1992011-10-18 14:03:07 +0200607static uint brcms_c_calc_frame_time(struct brcms_c_info *wlc, u32 ratespec,
608 u8 preamble_type, uint mac_len)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200609{
610 uint nsyms, dur = 0, Ndps, kNdps;
611 uint rate = rspec2rate(ratespec);
612
613 if (rate == 0) {
614 wiphy_err(wlc->wiphy, "wl%d: WAR: using rate of 1 mbps\n",
615 wlc->pub->unit);
616 rate = BRCM_RATE_1M;
617 }
618
619 BCMMSG(wlc->wiphy, "wl%d: rspec 0x%x, preamble_type %d, len%d\n",
620 wlc->pub->unit, ratespec, preamble_type, mac_len);
621
622 if (is_mcs_rate(ratespec)) {
623 uint mcs = ratespec & RSPEC_RATE_MASK;
624 int tot_streams = mcs_2_txstreams(mcs) + rspec_stc(ratespec);
625
626 dur = PREN_PREAMBLE + (tot_streams * PREN_PREAMBLE_EXT);
627 if (preamble_type == BRCMS_MM_PREAMBLE)
628 dur += PREN_MM_EXT;
629 /* 1000Ndbps = kbps * 4 */
630 kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec),
631 rspec_issgi(ratespec)) * 4;
632
633 if (rspec_stc(ratespec) == 0)
634 nsyms =
635 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
636 APHY_TAIL_NBITS) * 1000, kNdps);
637 else
638 /* STBC needs to have even number of symbols */
639 nsyms =
640 2 *
641 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
642 APHY_TAIL_NBITS) * 1000, 2 * kNdps);
643
644 dur += APHY_SYMBOL_TIME * nsyms;
645 if (wlc->band->bandtype == BRCM_BAND_2G)
646 dur += DOT11_OFDM_SIGNAL_EXTENSION;
647 } else if (is_ofdm_rate(rate)) {
648 dur = APHY_PREAMBLE_TIME;
649 dur += APHY_SIGNAL_TIME;
650 /* Ndbps = Mbps * 4 = rate(500Kbps) * 2 */
651 Ndps = rate * 2;
652 /* NSyms = CEILING((SERVICE + 8*NBytes + TAIL) / Ndbps) */
653 nsyms =
654 CEIL((APHY_SERVICE_NBITS + 8 * mac_len + APHY_TAIL_NBITS),
655 Ndps);
656 dur += APHY_SYMBOL_TIME * nsyms;
657 if (wlc->band->bandtype == BRCM_BAND_2G)
658 dur += DOT11_OFDM_SIGNAL_EXTENSION;
659 } else {
660 /*
661 * calc # bits * 2 so factor of 2 in rate (1/2 mbps)
662 * will divide out
663 */
664 mac_len = mac_len * 8 * 2;
665 /* calc ceiling of bits/rate = microseconds of air time */
666 dur = (mac_len + rate - 1) / rate;
667 if (preamble_type & BRCMS_SHORT_PREAMBLE)
668 dur += BPHY_PLCP_SHORT_TIME;
669 else
670 dur += BPHY_PLCP_TIME;
671 }
672 return dur;
673}
674
Arend van Spriel5b435de2011-10-05 13:19:03 +0200675static void brcms_c_write_inits(struct brcms_hardware *wlc_hw,
676 const struct d11init *inits)
677{
Arend van Spriel16d28122011-12-08 15:06:51 -0800678 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200679 int i;
Arend van Spriel16d28122011-12-08 15:06:51 -0800680 uint offset;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200681 u16 size;
682 u32 value;
683
684 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
685
Arend van Spriel5b435de2011-10-05 13:19:03 +0200686 for (i = 0; inits[i].addr != cpu_to_le16(0xffff); i++) {
687 size = le16_to_cpu(inits[i].size);
Arend van Spriel16d28122011-12-08 15:06:51 -0800688 offset = le16_to_cpu(inits[i].addr);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200689 value = le32_to_cpu(inits[i].value);
690 if (size == 2)
Arend van Spriel16d28122011-12-08 15:06:51 -0800691 bcma_write16(core, offset, value);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200692 else if (size == 4)
Arend van Spriel16d28122011-12-08 15:06:51 -0800693 bcma_write32(core, offset, value);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200694 else
695 break;
696 }
697}
698
699static void brcms_c_write_mhf(struct brcms_hardware *wlc_hw, u16 *mhfs)
700{
701 u8 idx;
702 u16 addr[] = {
703 M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4,
704 M_HOST_FLAGS5
705 };
706
707 for (idx = 0; idx < MHFMAX; idx++)
708 brcms_b_write_shm(wlc_hw, addr[idx], mhfs[idx]);
709}
710
711static void brcms_c_ucode_bsinit(struct brcms_hardware *wlc_hw)
712{
713 struct wiphy *wiphy = wlc_hw->wlc->wiphy;
714 struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
715
716 /* init microcode host flags */
717 brcms_c_write_mhf(wlc_hw, wlc_hw->band->mhfs);
718
719 /* do band-specific ucode IHR, SHM, and SCR inits */
720 if (D11REV_IS(wlc_hw->corerev, 23)) {
721 if (BRCMS_ISNPHY(wlc_hw->band))
722 brcms_c_write_inits(wlc_hw, ucode->d11n0bsinitvals16);
723 else
724 wiphy_err(wiphy, "%s: wl%d: unsupported phy in corerev"
725 " %d\n", __func__, wlc_hw->unit,
726 wlc_hw->corerev);
727 } else {
728 if (D11REV_IS(wlc_hw->corerev, 24)) {
729 if (BRCMS_ISLCNPHY(wlc_hw->band))
730 brcms_c_write_inits(wlc_hw,
731 ucode->d11lcn0bsinitvals24);
732 else
733 wiphy_err(wiphy, "%s: wl%d: unsupported phy in"
734 " core rev %d\n", __func__,
735 wlc_hw->unit, wlc_hw->corerev);
736 } else {
737 wiphy_err(wiphy, "%s: wl%d: unsupported corerev %d\n",
738 __func__, wlc_hw->unit, wlc_hw->corerev);
739 }
740 }
741}
742
Arend van Spriela8779e42011-12-08 15:06:58 -0800743static void brcms_b_core_ioctl(struct brcms_hardware *wlc_hw, u32 m, u32 v)
744{
745 struct bcma_device *core = wlc_hw->d11core;
746 u32 ioctl = bcma_aread32(core, BCMA_IOCTL) & ~m;
747
748 bcma_awrite32(core, BCMA_IOCTL, ioctl | v);
749}
750
Arend van Spriel5b435de2011-10-05 13:19:03 +0200751static void brcms_b_core_phy_clk(struct brcms_hardware *wlc_hw, bool clk)
752{
753 BCMMSG(wlc_hw->wlc->wiphy, "wl%d: clk %d\n", wlc_hw->unit, clk);
754
755 wlc_hw->phyclk = clk;
756
757 if (OFF == clk) { /* clear gmode bit, put phy into reset */
758
Arend van Spriela8779e42011-12-08 15:06:58 -0800759 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC | SICF_GMODE),
760 (SICF_PRST | SICF_FGC));
Arend van Spriel5b435de2011-10-05 13:19:03 +0200761 udelay(1);
Arend van Spriela8779e42011-12-08 15:06:58 -0800762 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_PRST);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200763 udelay(1);
764
765 } else { /* take phy out of reset */
766
Arend van Spriela8779e42011-12-08 15:06:58 -0800767 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_FGC);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200768 udelay(1);
Arend van Spriela8779e42011-12-08 15:06:58 -0800769 brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200770 udelay(1);
771
772 }
773}
774
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200775/* low-level band switch utility routine */
776static void brcms_c_setxband(struct brcms_hardware *wlc_hw, uint bandunit)
777{
778 BCMMSG(wlc_hw->wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
779 bandunit);
780
781 wlc_hw->band = wlc_hw->bandstate[bandunit];
782
783 /*
784 * BMAC_NOTE:
785 * until we eliminate need for wlc->band refs in low level code
786 */
787 wlc_hw->wlc->band = wlc_hw->wlc->bandstate[bandunit];
788
789 /* set gmode core flag */
Arend van Spriela8779e42011-12-08 15:06:58 -0800790 if (wlc_hw->sbclk && !wlc_hw->noreset) {
791 u32 gmode = 0;
792
793 if (bandunit == 0)
794 gmode = SICF_GMODE;
795
796 brcms_b_core_ioctl(wlc_hw, SICF_GMODE, gmode);
797 }
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200798}
799
Arend van Spriel5b435de2011-10-05 13:19:03 +0200800/* switch to new band but leave it inactive */
801static u32 brcms_c_setband_inact(struct brcms_c_info *wlc, uint bandunit)
802{
803 struct brcms_hardware *wlc_hw = wlc->hw;
804 u32 macintmask;
Arend van Spriel16d28122011-12-08 15:06:51 -0800805 u32 macctrl;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200806
807 BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
Arend van Spriel16d28122011-12-08 15:06:51 -0800808 macctrl = bcma_read32(wlc_hw->d11core,
809 D11REGOFFS(maccontrol));
810 WARN_ON((macctrl & MCTL_EN_MAC) != 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200811
812 /* disable interrupts */
813 macintmask = brcms_intrsoff(wlc->wl);
814
815 /* radio off */
816 wlc_phy_switch_radio(wlc_hw->band->pi, OFF);
817
818 brcms_b_core_phy_clk(wlc_hw, OFF);
819
820 brcms_c_setxband(wlc_hw, bandunit);
821
822 return macintmask;
823}
824
Arend van Spriel5b435de2011-10-05 13:19:03 +0200825/* process an individual struct tx_status */
826static bool
827brcms_c_dotxstatus(struct brcms_c_info *wlc, struct tx_status *txs)
828{
829 struct sk_buff *p;
830 uint queue;
831 struct d11txh *txh;
832 struct scb *scb = NULL;
833 bool free_pdu;
834 int tx_rts, tx_frame_count, tx_rts_count;
835 uint totlen, supr_status;
836 bool lastframe;
837 struct ieee80211_hdr *h;
838 u16 mcl;
839 struct ieee80211_tx_info *tx_info;
840 struct ieee80211_tx_rate *txrate;
841 int i;
842
843 /* discard intermediate indications for ucode with one legitimate case:
844 * e.g. if "useRTS" is set. ucode did a successful rts/cts exchange,
845 * but the subsequent tx of DATA failed. so it will start rts/cts
846 * from the beginning (resetting the rts transmission count)
847 */
848 if (!(txs->status & TX_STATUS_AMPDU)
849 && (txs->status & TX_STATUS_INTERMEDIATE)) {
Eldad Zack6ead6292012-04-22 00:48:04 +0200850 BCMMSG(wlc->wiphy, "INTERMEDIATE but not AMPDU\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200851 return false;
852 }
853
854 queue = txs->frameid & TXFID_QUEUE_MASK;
855 if (queue >= NFIFO) {
856 p = NULL;
857 goto fatal;
858 }
859
860 p = dma_getnexttxp(wlc->hw->di[queue], DMA_RANGE_TRANSMITTED);
861 if (p == NULL)
862 goto fatal;
863
864 txh = (struct d11txh *) (p->data);
865 mcl = le16_to_cpu(txh->MacTxControlLow);
866
867 if (txs->phyerr) {
868 if (brcm_msg_level & LOG_ERROR_VAL) {
869 wiphy_err(wlc->wiphy, "phyerr 0x%x, rate 0x%x\n",
870 txs->phyerr, txh->MainRates);
871 brcms_c_print_txdesc(txh);
872 }
873 brcms_c_print_txstatus(txs);
874 }
875
876 if (txs->frameid != le16_to_cpu(txh->TxFrameID))
877 goto fatal;
878 tx_info = IEEE80211_SKB_CB(p);
879 h = (struct ieee80211_hdr *)((u8 *) (txh + 1) + D11_PHY_HDR_LEN);
880
881 if (tx_info->control.sta)
882 scb = &wlc->pri_scb;
883
884 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
885 brcms_c_ampdu_dotxstatus(wlc->ampdu, scb, p, txs);
886 return false;
887 }
888
889 supr_status = txs->status & TX_STATUS_SUPR_MASK;
890 if (supr_status == TX_STATUS_SUPR_BADCH)
891 BCMMSG(wlc->wiphy,
892 "%s: Pkt tx suppressed, possibly channel %d\n",
893 __func__, CHSPEC_CHANNEL(wlc->default_bss->chanspec));
894
895 tx_rts = le16_to_cpu(txh->MacTxControlLow) & TXC_SENDRTS;
896 tx_frame_count =
897 (txs->status & TX_STATUS_FRM_RTX_MASK) >> TX_STATUS_FRM_RTX_SHIFT;
898 tx_rts_count =
899 (txs->status & TX_STATUS_RTS_RTX_MASK) >> TX_STATUS_RTS_RTX_SHIFT;
900
901 lastframe = !ieee80211_has_morefrags(h->frame_control);
902
903 if (!lastframe) {
904 wiphy_err(wlc->wiphy, "Not last frame!\n");
905 } else {
906 /*
907 * Set information to be consumed by Minstrel ht.
908 *
909 * The "fallback limit" is the number of tx attempts a given
910 * MPDU is sent at the "primary" rate. Tx attempts beyond that
911 * limit are sent at the "secondary" rate.
912 * A 'short frame' does not exceed RTS treshold.
913 */
914 u16 sfbl, /* Short Frame Rate Fallback Limit */
915 lfbl, /* Long Frame Rate Fallback Limit */
916 fbl;
917
Arend van Sprielb7eec422011-11-10 20:30:18 +0100918 if (queue < IEEE80211_NUM_ACS) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200919 sfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]],
920 EDCF_SFB);
921 lfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]],
922 EDCF_LFB);
923 } else {
924 sfbl = wlc->SFBL;
925 lfbl = wlc->LFBL;
926 }
927
928 txrate = tx_info->status.rates;
929 if (txrate[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
930 fbl = lfbl;
931 else
932 fbl = sfbl;
933
934 ieee80211_tx_info_clear_status(tx_info);
935
936 if ((tx_frame_count > fbl) && (txrate[1].idx >= 0)) {
937 /*
938 * rate selection requested a fallback rate
939 * and we used it
940 */
941 txrate[0].count = fbl;
942 txrate[1].count = tx_frame_count - fbl;
943 } else {
944 /*
945 * rate selection did not request fallback rate, or
946 * we didn't need it
947 */
948 txrate[0].count = tx_frame_count;
949 /*
950 * rc80211_minstrel.c:minstrel_tx_status() expects
951 * unused rates to be marked with idx = -1
952 */
953 txrate[1].idx = -1;
954 txrate[1].count = 0;
955 }
956
957 /* clear the rest of the rates */
958 for (i = 2; i < IEEE80211_TX_MAX_RATES; i++) {
959 txrate[i].idx = -1;
960 txrate[i].count = 0;
961 }
962
963 if (txs->status & TX_STATUS_ACK_RCV)
964 tx_info->flags |= IEEE80211_TX_STAT_ACK;
965 }
966
Arend van Sprielad4d71f2011-11-10 20:30:26 +0100967 totlen = p->len;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200968 free_pdu = true;
969
970 brcms_c_txfifo_complete(wlc, queue, 1);
971
972 if (lastframe) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200973 /* remove PLCP & Broadcom tx descriptor header */
974 skb_pull(p, D11_PHY_HDR_LEN);
975 skb_pull(p, D11_TXH_LEN);
976 ieee80211_tx_status_irqsafe(wlc->pub->ieee_hw, p);
977 } else {
978 wiphy_err(wlc->wiphy, "%s: Not last frame => not calling "
979 "tx_status\n", __func__);
980 }
981
982 return false;
983
984 fatal:
985 if (p)
986 brcmu_pkt_buf_free_skb(p);
987
988 return true;
989
990}
991
992/* process tx completion events in BMAC
993 * Return true if more tx status need to be processed. false otherwise.
994 */
995static bool
996brcms_b_txstatus(struct brcms_hardware *wlc_hw, bool bound, bool *fatal)
997{
998 bool morepending = false;
999 struct brcms_c_info *wlc = wlc_hw->wlc;
Arend van Spriel16d28122011-12-08 15:06:51 -08001000 struct bcma_device *core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001001 struct tx_status txstatus, *txs;
1002 u32 s1, s2;
1003 uint n = 0;
1004 /*
1005 * Param 'max_tx_num' indicates max. # tx status to process before
1006 * break out.
1007 */
1008 uint max_tx_num = bound ? TXSBND : -1;
1009
1010 BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
1011
1012 txs = &txstatus;
Arend van Spriel16d28122011-12-08 15:06:51 -08001013 core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001014 *fatal = false;
Arend van Spriel16d28122011-12-08 15:06:51 -08001015 s1 = bcma_read32(core, D11REGOFFS(frmtxstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001016 while (!(*fatal)
Arend van Spriel16d28122011-12-08 15:06:51 -08001017 && (s1 & TXS_V)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001018
1019 if (s1 == 0xffffffff) {
1020 wiphy_err(wlc->wiphy, "wl%d: %s: dead chip\n",
1021 wlc_hw->unit, __func__);
1022 return morepending;
1023 }
Arend van Spriel16d28122011-12-08 15:06:51 -08001024 s2 = bcma_read32(core, D11REGOFFS(frmtxstatus2));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001025
1026 txs->status = s1 & TXS_STATUS_MASK;
1027 txs->frameid = (s1 & TXS_FID_MASK) >> TXS_FID_SHIFT;
1028 txs->sequence = s2 & TXS_SEQ_MASK;
1029 txs->phyerr = (s2 & TXS_PTX_MASK) >> TXS_PTX_SHIFT;
1030 txs->lasttxtime = 0;
1031
1032 *fatal = brcms_c_dotxstatus(wlc_hw->wlc, txs);
1033
1034 /* !give others some time to run! */
1035 if (++n >= max_tx_num)
1036 break;
Arend van Spriel16d28122011-12-08 15:06:51 -08001037 s1 = bcma_read32(core, D11REGOFFS(frmtxstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001038 }
1039
1040 if (*fatal)
1041 return 0;
1042
1043 if (n >= max_tx_num)
1044 morepending = true;
1045
1046 if (!pktq_empty(&wlc->pkt_queue->q))
1047 brcms_c_send_q(wlc);
1048
1049 return morepending;
1050}
1051
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02001052static void brcms_c_tbtt(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001053{
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02001054 if (!wlc->bsscfg->BSS)
1055 /*
1056 * DirFrmQ is now valid...defer setting until end
1057 * of ATIM window
1058 */
1059 wlc->qvalid |= MCMD_DIRFRMQVAL;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001060}
1061
1062/* set initial host flags value */
1063static void
1064brcms_c_mhfdef(struct brcms_c_info *wlc, u16 *mhfs, u16 mhf2_init)
1065{
1066 struct brcms_hardware *wlc_hw = wlc->hw;
1067
1068 memset(mhfs, 0, MHFMAX * sizeof(u16));
1069
1070 mhfs[MHF2] |= mhf2_init;
1071
1072 /* prohibit use of slowclock on multifunction boards */
1073 if (wlc_hw->boardflags & BFL_NOPLLDOWN)
1074 mhfs[MHF1] |= MHF1_FORCEFASTCLK;
1075
1076 if (BRCMS_ISNPHY(wlc_hw->band) && NREV_LT(wlc_hw->band->phyrev, 2)) {
1077 mhfs[MHF2] |= MHF2_NPHY40MHZ_WAR;
1078 mhfs[MHF1] |= MHF1_IQSWAP_WAR;
1079 }
1080}
1081
Arend van Spriele81da652011-12-08 15:06:53 -08001082static uint
1083dmareg(uint direction, uint fifonum)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001084{
1085 if (direction == DMA_TX)
Arend van Spriele81da652011-12-08 15:06:53 -08001086 return offsetof(struct d11regs, fifo64regs[fifonum].dmaxmt);
1087 return offsetof(struct d11regs, fifo64regs[fifonum].dmarcv);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001088}
1089
1090static bool brcms_b_attach_dmapio(struct brcms_c_info *wlc, uint j, bool wme)
1091{
1092 uint i;
1093 char name[8];
1094 /*
1095 * ucode host flag 2 needed for pio mode, independent of band and fifo
1096 */
1097 u16 pio_mhf2 = 0;
1098 struct brcms_hardware *wlc_hw = wlc->hw;
1099 uint unit = wlc_hw->unit;
1100 struct wiphy *wiphy = wlc->wiphy;
1101
1102 /* name and offsets for dma_attach */
1103 snprintf(name, sizeof(name), "wl%d", unit);
1104
1105 if (wlc_hw->di[0] == NULL) { /* Init FIFOs */
1106 int dma_attach_err = 0;
1107
1108 /*
1109 * FIFO 0
1110 * TX: TX_AC_BK_FIFO (TX AC Background data packets)
1111 * RX: RX_FIFO (RX data packets)
1112 */
Arend van Spriel2e81b9b2011-12-08 15:06:52 -08001113 wlc_hw->di[0] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
Arend van Spriele81da652011-12-08 15:06:53 -08001114 (wme ? dmareg(DMA_TX, 0) : 0),
1115 dmareg(DMA_RX, 0),
Arend van Spriel5b435de2011-10-05 13:19:03 +02001116 (wme ? NTXD : 0), NRXD,
1117 RXBUFSZ, -1, NRXBUFPOST,
1118 BRCMS_HWRXOFF, &brcm_msg_level);
1119 dma_attach_err |= (NULL == wlc_hw->di[0]);
1120
1121 /*
1122 * FIFO 1
1123 * TX: TX_AC_BE_FIFO (TX AC Best-Effort data packets)
1124 * (legacy) TX_DATA_FIFO (TX data packets)
1125 * RX: UNUSED
1126 */
Arend van Spriel2e81b9b2011-12-08 15:06:52 -08001127 wlc_hw->di[1] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
Arend van Spriele81da652011-12-08 15:06:53 -08001128 dmareg(DMA_TX, 1), 0,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001129 NTXD, 0, 0, -1, 0, 0,
1130 &brcm_msg_level);
1131 dma_attach_err |= (NULL == wlc_hw->di[1]);
1132
1133 /*
1134 * FIFO 2
1135 * TX: TX_AC_VI_FIFO (TX AC Video data packets)
1136 * RX: UNUSED
1137 */
Arend van Spriel2e81b9b2011-12-08 15:06:52 -08001138 wlc_hw->di[2] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
Arend van Spriele81da652011-12-08 15:06:53 -08001139 dmareg(DMA_TX, 2), 0,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001140 NTXD, 0, 0, -1, 0, 0,
1141 &brcm_msg_level);
1142 dma_attach_err |= (NULL == wlc_hw->di[2]);
1143 /*
1144 * FIFO 3
1145 * TX: TX_AC_VO_FIFO (TX AC Voice data packets)
1146 * (legacy) TX_CTL_FIFO (TX control & mgmt packets)
1147 */
Arend van Spriel2e81b9b2011-12-08 15:06:52 -08001148 wlc_hw->di[3] = dma_attach(name, wlc_hw->sih, wlc_hw->d11core,
Arend van Spriele81da652011-12-08 15:06:53 -08001149 dmareg(DMA_TX, 3),
1150 0, NTXD, 0, 0, -1,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001151 0, 0, &brcm_msg_level);
1152 dma_attach_err |= (NULL == wlc_hw->di[3]);
1153/* Cleaner to leave this as if with AP defined */
1154
1155 if (dma_attach_err) {
1156 wiphy_err(wiphy, "wl%d: wlc_attach: dma_attach failed"
1157 "\n", unit);
1158 return false;
1159 }
1160
1161 /* get pointer to dma engine tx flow control variable */
1162 for (i = 0; i < NFIFO; i++)
1163 if (wlc_hw->di[i])
1164 wlc_hw->txavail[i] =
1165 (uint *) dma_getvar(wlc_hw->di[i],
1166 "&txavail");
1167 }
1168
1169 /* initial ucode host flags */
1170 brcms_c_mhfdef(wlc, wlc_hw->band->mhfs, pio_mhf2);
1171
1172 return true;
1173}
1174
1175static void brcms_b_detach_dmapio(struct brcms_hardware *wlc_hw)
1176{
1177 uint j;
1178
1179 for (j = 0; j < NFIFO; j++) {
1180 if (wlc_hw->di[j]) {
1181 dma_detach(wlc_hw->di[j]);
1182 wlc_hw->di[j] = NULL;
1183 }
1184 }
1185}
1186
1187/*
1188 * Initialize brcms_c_info default values ...
1189 * may get overrides later in this function
1190 * BMAC_NOTES, move low out and resolve the dangling ones
1191 */
1192static void brcms_b_info_init(struct brcms_hardware *wlc_hw)
1193{
1194 struct brcms_c_info *wlc = wlc_hw->wlc;
1195
1196 /* set default sw macintmask value */
1197 wlc->defmacintmask = DEF_MACINTMASK;
1198
1199 /* various 802.11g modes */
1200 wlc_hw->shortslot = false;
1201
1202 wlc_hw->SFBL = RETRY_SHORT_FB;
1203 wlc_hw->LFBL = RETRY_LONG_FB;
1204
1205 /* default mac retry limits */
1206 wlc_hw->SRL = RETRY_SHORT_DEF;
1207 wlc_hw->LRL = RETRY_LONG_DEF;
1208 wlc_hw->chanspec = ch20mhz_chspec(1);
1209}
1210
1211static void brcms_b_wait_for_wake(struct brcms_hardware *wlc_hw)
1212{
1213 /* delay before first read of ucode state */
1214 udelay(40);
1215
1216 /* wait until ucode is no longer asleep */
1217 SPINWAIT((brcms_b_read_shm(wlc_hw, M_UCODE_DBGST) ==
1218 DBGST_ASLEEP), wlc_hw->wlc->fastpwrup_dly);
1219}
1220
1221/* control chip clock to save power, enable dynamic clock or force fast clock */
1222static void brcms_b_clkctl_clk(struct brcms_hardware *wlc_hw, uint mode)
1223{
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001224 if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001225 /* new chips with PMU, CCS_FORCEHT will distribute the HT clock
1226 * on backplane, but mac core will still run on ALP(not HT) when
1227 * it enters powersave mode, which means the FCA bit may not be
1228 * set. Should wakeup mac if driver wants it to run on HT.
1229 */
1230
1231 if (wlc_hw->clk) {
1232 if (mode == CLK_FAST) {
Arend van Spriel16d28122011-12-08 15:06:51 -08001233 bcma_set32(wlc_hw->d11core,
1234 D11REGOFFS(clk_ctl_st),
1235 CCS_FORCEHT);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001236
1237 udelay(64);
1238
Arend van Spriel16d28122011-12-08 15:06:51 -08001239 SPINWAIT(
1240 ((bcma_read32(wlc_hw->d11core,
1241 D11REGOFFS(clk_ctl_st)) &
1242 CCS_HTAVAIL) == 0),
1243 PMU_MAX_TRANSITION_DLY);
1244 WARN_ON(!(bcma_read32(wlc_hw->d11core,
1245 D11REGOFFS(clk_ctl_st)) &
1246 CCS_HTAVAIL));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001247 } else {
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001248 if ((ai_get_pmurev(wlc_hw->sih) == 0) &&
Arend van Spriel16d28122011-12-08 15:06:51 -08001249 (bcma_read32(wlc_hw->d11core,
1250 D11REGOFFS(clk_ctl_st)) &
1251 (CCS_FORCEHT | CCS_HTAREQ)))
1252 SPINWAIT(
1253 ((bcma_read32(wlc_hw->d11core,
1254 offsetof(struct d11regs,
1255 clk_ctl_st)) &
1256 CCS_HTAVAIL) == 0),
1257 PMU_MAX_TRANSITION_DLY);
1258 bcma_mask32(wlc_hw->d11core,
1259 D11REGOFFS(clk_ctl_st),
Arend van Spriel5b435de2011-10-05 13:19:03 +02001260 ~CCS_FORCEHT);
1261 }
1262 }
1263 wlc_hw->forcefastclk = (mode == CLK_FAST);
1264 } else {
1265
1266 /* old chips w/o PMU, force HT through cc,
1267 * then use FCA to verify mac is running fast clock
1268 */
1269
1270 wlc_hw->forcefastclk = ai_clkctl_cc(wlc_hw->sih, mode);
1271
1272 /* check fast clock is available (if core is not in reset) */
1273 if (wlc_hw->forcefastclk && wlc_hw->clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001274 WARN_ON(!(bcma_aread32(wlc_hw->d11core, BCMA_IOST) &
Arend van Spriel5b435de2011-10-05 13:19:03 +02001275 SISF_FCLKA));
1276
1277 /*
1278 * keep the ucode wake bit on if forcefastclk is on since we
1279 * do not want ucode to put us back to slow clock when it dozes
1280 * for PM mode. Code below matches the wake override bit with
1281 * current forcefastclk state. Only setting bit in wake_override
1282 * instead of waking ucode immediately since old code had this
1283 * behavior. Older code set wlc->forcefastclk but only had the
1284 * wake happen if the wakup_ucode work (protected by an up
1285 * check) was executed just below.
1286 */
1287 if (wlc_hw->forcefastclk)
1288 mboolset(wlc_hw->wake_override,
1289 BRCMS_WAKE_OVERRIDE_FORCEFAST);
1290 else
1291 mboolclr(wlc_hw->wake_override,
1292 BRCMS_WAKE_OVERRIDE_FORCEFAST);
1293 }
1294}
1295
1296/* set or clear ucode host flag bits
1297 * it has an optimization for no-change write
1298 * it only writes through shared memory when the core has clock;
1299 * pre-CLK changes should use wlc_write_mhf to get around the optimization
1300 *
1301 *
1302 * bands values are: BRCM_BAND_AUTO <--- Current band only
1303 * BRCM_BAND_5G <--- 5G band only
1304 * BRCM_BAND_2G <--- 2G band only
1305 * BRCM_BAND_ALL <--- All bands
1306 */
1307void
1308brcms_b_mhf(struct brcms_hardware *wlc_hw, u8 idx, u16 mask, u16 val,
1309 int bands)
1310{
1311 u16 save;
1312 u16 addr[MHFMAX] = {
1313 M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4,
1314 M_HOST_FLAGS5
1315 };
1316 struct brcms_hw_band *band;
1317
1318 if ((val & ~mask) || idx >= MHFMAX)
1319 return; /* error condition */
1320
1321 switch (bands) {
1322 /* Current band only or all bands,
1323 * then set the band to current band
1324 */
1325 case BRCM_BAND_AUTO:
1326 case BRCM_BAND_ALL:
1327 band = wlc_hw->band;
1328 break;
1329 case BRCM_BAND_5G:
1330 band = wlc_hw->bandstate[BAND_5G_INDEX];
1331 break;
1332 case BRCM_BAND_2G:
1333 band = wlc_hw->bandstate[BAND_2G_INDEX];
1334 break;
1335 default:
1336 band = NULL; /* error condition */
1337 }
1338
1339 if (band) {
1340 save = band->mhfs[idx];
1341 band->mhfs[idx] = (band->mhfs[idx] & ~mask) | val;
1342
1343 /* optimization: only write through if changed, and
1344 * changed band is the current band
1345 */
1346 if (wlc_hw->clk && (band->mhfs[idx] != save)
1347 && (band == wlc_hw->band))
1348 brcms_b_write_shm(wlc_hw, addr[idx],
1349 (u16) band->mhfs[idx]);
1350 }
1351
1352 if (bands == BRCM_BAND_ALL) {
1353 wlc_hw->bandstate[0]->mhfs[idx] =
1354 (wlc_hw->bandstate[0]->mhfs[idx] & ~mask) | val;
1355 wlc_hw->bandstate[1]->mhfs[idx] =
1356 (wlc_hw->bandstate[1]->mhfs[idx] & ~mask) | val;
1357 }
1358}
1359
1360/* set the maccontrol register to desired reset state and
1361 * initialize the sw cache of the register
1362 */
1363static void brcms_c_mctrl_reset(struct brcms_hardware *wlc_hw)
1364{
1365 /* IHR accesses are always enabled, PSM disabled, HPS off and WAKE on */
1366 wlc_hw->maccontrol = 0;
1367 wlc_hw->suspended_fifos = 0;
1368 wlc_hw->wake_override = 0;
1369 wlc_hw->mute_override = 0;
1370 brcms_b_mctrl(wlc_hw, ~0, MCTL_IHR_EN | MCTL_WAKE);
1371}
1372
1373/*
1374 * write the software state of maccontrol and
1375 * overrides to the maccontrol register
1376 */
1377static void brcms_c_mctrl_write(struct brcms_hardware *wlc_hw)
1378{
1379 u32 maccontrol = wlc_hw->maccontrol;
1380
1381 /* OR in the wake bit if overridden */
1382 if (wlc_hw->wake_override)
1383 maccontrol |= MCTL_WAKE;
1384
1385 /* set AP and INFRA bits for mute if needed */
1386 if (wlc_hw->mute_override) {
1387 maccontrol &= ~(MCTL_AP);
1388 maccontrol |= MCTL_INFRA;
1389 }
1390
Arend van Spriel16d28122011-12-08 15:06:51 -08001391 bcma_write32(wlc_hw->d11core, D11REGOFFS(maccontrol),
1392 maccontrol);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001393}
1394
1395/* set or clear maccontrol bits */
1396void brcms_b_mctrl(struct brcms_hardware *wlc_hw, u32 mask, u32 val)
1397{
1398 u32 maccontrol;
1399 u32 new_maccontrol;
1400
1401 if (val & ~mask)
1402 return; /* error condition */
1403 maccontrol = wlc_hw->maccontrol;
1404 new_maccontrol = (maccontrol & ~mask) | val;
1405
1406 /* if the new maccontrol value is the same as the old, nothing to do */
1407 if (new_maccontrol == maccontrol)
1408 return;
1409
1410 /* something changed, cache the new value */
1411 wlc_hw->maccontrol = new_maccontrol;
1412
1413 /* write the new values with overrides applied */
1414 brcms_c_mctrl_write(wlc_hw);
1415}
1416
1417void brcms_c_ucode_wake_override_set(struct brcms_hardware *wlc_hw,
1418 u32 override_bit)
1419{
1420 if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE)) {
1421 mboolset(wlc_hw->wake_override, override_bit);
1422 return;
1423 }
1424
1425 mboolset(wlc_hw->wake_override, override_bit);
1426
1427 brcms_c_mctrl_write(wlc_hw);
1428 brcms_b_wait_for_wake(wlc_hw);
1429}
1430
1431void brcms_c_ucode_wake_override_clear(struct brcms_hardware *wlc_hw,
1432 u32 override_bit)
1433{
1434 mboolclr(wlc_hw->wake_override, override_bit);
1435
1436 if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE))
1437 return;
1438
1439 brcms_c_mctrl_write(wlc_hw);
1440}
1441
1442/* When driver needs ucode to stop beaconing, it has to make sure that
1443 * MCTL_AP is clear and MCTL_INFRA is set
1444 * Mode MCTL_AP MCTL_INFRA
1445 * AP 1 1
1446 * STA 0 1 <--- This will ensure no beacons
1447 * IBSS 0 0
1448 */
1449static void brcms_c_ucode_mute_override_set(struct brcms_hardware *wlc_hw)
1450{
1451 wlc_hw->mute_override = 1;
1452
1453 /* if maccontrol already has AP == 0 and INFRA == 1 without this
1454 * override, then there is no change to write
1455 */
1456 if ((wlc_hw->maccontrol & (MCTL_AP | MCTL_INFRA)) == MCTL_INFRA)
1457 return;
1458
1459 brcms_c_mctrl_write(wlc_hw);
1460}
1461
1462/* Clear the override on AP and INFRA bits */
1463static void brcms_c_ucode_mute_override_clear(struct brcms_hardware *wlc_hw)
1464{
1465 if (wlc_hw->mute_override == 0)
1466 return;
1467
1468 wlc_hw->mute_override = 0;
1469
1470 /* if maccontrol already has AP == 0 and INFRA == 1 without this
1471 * override, then there is no change to write
1472 */
1473 if ((wlc_hw->maccontrol & (MCTL_AP | MCTL_INFRA)) == MCTL_INFRA)
1474 return;
1475
1476 brcms_c_mctrl_write(wlc_hw);
1477}
1478
1479/*
1480 * Write a MAC address to the given match reg offset in the RXE match engine.
1481 */
1482static void
1483brcms_b_set_addrmatch(struct brcms_hardware *wlc_hw, int match_reg_offset,
1484 const u8 *addr)
1485{
Arend van Spriel16d28122011-12-08 15:06:51 -08001486 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001487 u16 mac_l;
1488 u16 mac_m;
1489 u16 mac_h;
1490
1491 BCMMSG(wlc_hw->wlc->wiphy, "wl%d: brcms_b_set_addrmatch\n",
1492 wlc_hw->unit);
1493
Arend van Spriel5b435de2011-10-05 13:19:03 +02001494 mac_l = addr[0] | (addr[1] << 8);
1495 mac_m = addr[2] | (addr[3] << 8);
1496 mac_h = addr[4] | (addr[5] << 8);
1497
1498 /* enter the MAC addr into the RXE match registers */
Arend van Spriel16d28122011-12-08 15:06:51 -08001499 bcma_write16(core, D11REGOFFS(rcm_ctl),
1500 RCM_INC_DATA | match_reg_offset);
1501 bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_l);
1502 bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_m);
1503 bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_h);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001504}
1505
1506void
1507brcms_b_write_template_ram(struct brcms_hardware *wlc_hw, int offset, int len,
1508 void *buf)
1509{
Arend van Spriel16d28122011-12-08 15:06:51 -08001510 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001511 u32 word;
1512 __le32 word_le;
1513 __be32 word_be;
1514 bool be_bit;
1515 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
1516
Arend van Spriel16d28122011-12-08 15:06:51 -08001517 bcma_write32(core, D11REGOFFS(tplatewrptr), offset);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001518
1519 /* if MCTL_BIGEND bit set in mac control register,
1520 * the chip swaps data in fifo, as well as data in
1521 * template ram
1522 */
Arend van Spriel16d28122011-12-08 15:06:51 -08001523 be_bit = (bcma_read32(core, D11REGOFFS(maccontrol)) & MCTL_BIGEND) != 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001524
1525 while (len > 0) {
1526 memcpy(&word, buf, sizeof(u32));
1527
1528 if (be_bit) {
1529 word_be = cpu_to_be32(word);
1530 word = *(u32 *)&word_be;
1531 } else {
1532 word_le = cpu_to_le32(word);
1533 word = *(u32 *)&word_le;
1534 }
1535
Arend van Spriel16d28122011-12-08 15:06:51 -08001536 bcma_write32(core, D11REGOFFS(tplatewrdata), word);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001537
1538 buf = (u8 *) buf + sizeof(u32);
1539 len -= sizeof(u32);
1540 }
1541}
1542
1543static void brcms_b_set_cwmin(struct brcms_hardware *wlc_hw, u16 newmin)
1544{
1545 wlc_hw->band->CWmin = newmin;
1546
Arend van Spriel16d28122011-12-08 15:06:51 -08001547 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
1548 OBJADDR_SCR_SEL | S_DOT11_CWMIN);
1549 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
1550 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmin);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001551}
1552
1553static void brcms_b_set_cwmax(struct brcms_hardware *wlc_hw, u16 newmax)
1554{
1555 wlc_hw->band->CWmax = newmax;
1556
Arend van Spriel16d28122011-12-08 15:06:51 -08001557 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
1558 OBJADDR_SCR_SEL | S_DOT11_CWMAX);
1559 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
1560 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmax);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001561}
1562
1563void brcms_b_bw_set(struct brcms_hardware *wlc_hw, u16 bw)
1564{
1565 bool fastclk;
1566
1567 /* request FAST clock if not on */
1568 fastclk = wlc_hw->forcefastclk;
1569 if (!fastclk)
1570 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
1571
1572 wlc_phy_bw_state_set(wlc_hw->band->pi, bw);
1573
1574 brcms_b_phy_reset(wlc_hw);
1575 wlc_phy_init(wlc_hw->band->pi, wlc_phy_chanspec_get(wlc_hw->band->pi));
1576
1577 /* restore the clk */
1578 if (!fastclk)
1579 brcms_b_clkctl_clk(wlc_hw, CLK_DYNAMIC);
1580}
1581
1582static void brcms_b_upd_synthpu(struct brcms_hardware *wlc_hw)
1583{
1584 u16 v;
1585 struct brcms_c_info *wlc = wlc_hw->wlc;
1586 /* update SYNTHPU_DLY */
1587
1588 if (BRCMS_ISLCNPHY(wlc->band))
1589 v = SYNTHPU_DLY_LPPHY_US;
1590 else if (BRCMS_ISNPHY(wlc->band) && (NREV_GE(wlc->band->phyrev, 3)))
1591 v = SYNTHPU_DLY_NPHY_US;
1592 else
1593 v = SYNTHPU_DLY_BPHY_US;
1594
1595 brcms_b_write_shm(wlc_hw, M_SYNTHPU_DLY, v);
1596}
1597
1598static void brcms_c_ucode_txant_set(struct brcms_hardware *wlc_hw)
1599{
1600 u16 phyctl;
1601 u16 phytxant = wlc_hw->bmac_phytxant;
1602 u16 mask = PHY_TXC_ANT_MASK;
1603
1604 /* set the Probe Response frame phy control word */
1605 phyctl = brcms_b_read_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS);
1606 phyctl = (phyctl & ~mask) | phytxant;
1607 brcms_b_write_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS, phyctl);
1608
1609 /* set the Response (ACK/CTS) frame phy control word */
1610 phyctl = brcms_b_read_shm(wlc_hw, M_RSP_PCTLWD);
1611 phyctl = (phyctl & ~mask) | phytxant;
1612 brcms_b_write_shm(wlc_hw, M_RSP_PCTLWD, phyctl);
1613}
1614
1615static u16 brcms_b_ofdm_ratetable_offset(struct brcms_hardware *wlc_hw,
1616 u8 rate)
1617{
1618 uint i;
1619 u8 plcp_rate = 0;
1620 struct plcp_signal_rate_lookup {
1621 u8 rate;
1622 u8 signal_rate;
1623 };
1624 /* OFDM RATE sub-field of PLCP SIGNAL field, per 802.11 sec 17.3.4.1 */
1625 const struct plcp_signal_rate_lookup rate_lookup[] = {
1626 {BRCM_RATE_6M, 0xB},
1627 {BRCM_RATE_9M, 0xF},
1628 {BRCM_RATE_12M, 0xA},
1629 {BRCM_RATE_18M, 0xE},
1630 {BRCM_RATE_24M, 0x9},
1631 {BRCM_RATE_36M, 0xD},
1632 {BRCM_RATE_48M, 0x8},
1633 {BRCM_RATE_54M, 0xC}
1634 };
1635
1636 for (i = 0; i < ARRAY_SIZE(rate_lookup); i++) {
1637 if (rate == rate_lookup[i].rate) {
1638 plcp_rate = rate_lookup[i].signal_rate;
1639 break;
1640 }
1641 }
1642
1643 /* Find the SHM pointer to the rate table entry by looking in the
1644 * Direct-map Table
1645 */
1646 return 2 * brcms_b_read_shm(wlc_hw, M_RT_DIRMAP_A + (plcp_rate * 2));
1647}
1648
1649static void brcms_upd_ofdm_pctl1_table(struct brcms_hardware *wlc_hw)
1650{
1651 u8 rate;
1652 u8 rates[8] = {
1653 BRCM_RATE_6M, BRCM_RATE_9M, BRCM_RATE_12M, BRCM_RATE_18M,
1654 BRCM_RATE_24M, BRCM_RATE_36M, BRCM_RATE_48M, BRCM_RATE_54M
1655 };
1656 u16 entry_ptr;
1657 u16 pctl1;
1658 uint i;
1659
1660 if (!BRCMS_PHY_11N_CAP(wlc_hw->band))
1661 return;
1662
1663 /* walk the phy rate table and update the entries */
1664 for (i = 0; i < ARRAY_SIZE(rates); i++) {
1665 rate = rates[i];
1666
1667 entry_ptr = brcms_b_ofdm_ratetable_offset(wlc_hw, rate);
1668
1669 /* read the SHM Rate Table entry OFDM PCTL1 values */
1670 pctl1 =
1671 brcms_b_read_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS);
1672
1673 /* modify the value */
1674 pctl1 &= ~PHY_TXC1_MODE_MASK;
1675 pctl1 |= (wlc_hw->hw_stf_ss_opmode << PHY_TXC1_MODE_SHIFT);
1676
1677 /* Update the SHM Rate Table entry OFDM PCTL1 values */
1678 brcms_b_write_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS,
1679 pctl1);
1680 }
1681}
1682
1683/* band-specific init */
1684static void brcms_b_bsinit(struct brcms_c_info *wlc, u16 chanspec)
1685{
1686 struct brcms_hardware *wlc_hw = wlc->hw;
1687
1688 BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
1689 wlc_hw->band->bandunit);
1690
1691 brcms_c_ucode_bsinit(wlc_hw);
1692
1693 wlc_phy_init(wlc_hw->band->pi, chanspec);
1694
1695 brcms_c_ucode_txant_set(wlc_hw);
1696
1697 /*
1698 * cwmin is band-specific, update hardware
1699 * with value for current band
1700 */
1701 brcms_b_set_cwmin(wlc_hw, wlc_hw->band->CWmin);
1702 brcms_b_set_cwmax(wlc_hw, wlc_hw->band->CWmax);
1703
1704 brcms_b_update_slot_timing(wlc_hw,
1705 wlc_hw->band->bandtype == BRCM_BAND_5G ?
1706 true : wlc_hw->shortslot);
1707
1708 /* write phytype and phyvers */
1709 brcms_b_write_shm(wlc_hw, M_PHYTYPE, (u16) wlc_hw->band->phytype);
1710 brcms_b_write_shm(wlc_hw, M_PHYVER, (u16) wlc_hw->band->phyrev);
1711
1712 /*
1713 * initialize the txphyctl1 rate table since
1714 * shmem is shared between bands
1715 */
1716 brcms_upd_ofdm_pctl1_table(wlc_hw);
1717
1718 brcms_b_upd_synthpu(wlc_hw);
1719}
1720
1721/* Perform a soft reset of the PHY PLL */
1722void brcms_b_core_phypll_reset(struct brcms_hardware *wlc_hw)
1723{
1724 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
1725
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001726 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_addr),
1727 ~0, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001728 udelay(1);
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001729 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1730 0x4, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001731 udelay(1);
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001732 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1733 0x4, 4);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001734 udelay(1);
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001735 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1736 0x4, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001737 udelay(1);
1738}
1739
1740/* light way to turn on phy clock without reset for NPHY only
1741 * refer to brcms_b_core_phy_clk for full version
1742 */
1743void brcms_b_phyclk_fgc(struct brcms_hardware *wlc_hw, bool clk)
1744{
1745 /* support(necessary for NPHY and HYPHY) only */
1746 if (!BRCMS_ISNPHY(wlc_hw->band))
1747 return;
1748
1749 if (ON == clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001750 brcms_b_core_ioctl(wlc_hw, SICF_FGC, SICF_FGC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001751 else
Arend van Spriela8779e42011-12-08 15:06:58 -08001752 brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001753
1754}
1755
1756void brcms_b_macphyclk_set(struct brcms_hardware *wlc_hw, bool clk)
1757{
1758 if (ON == clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001759 brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, SICF_MPCLKE);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001760 else
Arend van Spriela8779e42011-12-08 15:06:58 -08001761 brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001762}
1763
1764void brcms_b_phy_reset(struct brcms_hardware *wlc_hw)
1765{
1766 struct brcms_phy_pub *pih = wlc_hw->band->pi;
1767 u32 phy_bw_clkbits;
1768 bool phy_in_reset = false;
1769
1770 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
1771
1772 if (pih == NULL)
1773 return;
1774
1775 phy_bw_clkbits = wlc_phy_clk_bwbits(wlc_hw->band->pi);
1776
1777 /* Specific reset sequence required for NPHY rev 3 and 4 */
1778 if (BRCMS_ISNPHY(wlc_hw->band) && NREV_GE(wlc_hw->band->phyrev, 3) &&
1779 NREV_LE(wlc_hw->band->phyrev, 4)) {
1780 /* Set the PHY bandwidth */
Arend van Spriela8779e42011-12-08 15:06:58 -08001781 brcms_b_core_ioctl(wlc_hw, SICF_BWMASK, phy_bw_clkbits);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001782
1783 udelay(1);
1784
1785 /* Perform a soft reset of the PHY PLL */
1786 brcms_b_core_phypll_reset(wlc_hw);
1787
1788 /* reset the PHY */
Arend van Spriela8779e42011-12-08 15:06:58 -08001789 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_PCLKE),
1790 (SICF_PRST | SICF_PCLKE));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001791 phy_in_reset = true;
1792 } else {
Arend van Spriela8779e42011-12-08 15:06:58 -08001793 brcms_b_core_ioctl(wlc_hw,
1794 (SICF_PRST | SICF_PCLKE | SICF_BWMASK),
1795 (SICF_PRST | SICF_PCLKE | phy_bw_clkbits));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001796 }
1797
1798 udelay(2);
1799 brcms_b_core_phy_clk(wlc_hw, ON);
1800
1801 if (pih)
1802 wlc_phy_anacore(pih, ON);
1803}
1804
1805/* switch to and initialize new band */
1806static void brcms_b_setband(struct brcms_hardware *wlc_hw, uint bandunit,
1807 u16 chanspec) {
1808 struct brcms_c_info *wlc = wlc_hw->wlc;
1809 u32 macintmask;
1810
1811 /* Enable the d11 core before accessing it */
Arend van Spriela8779e42011-12-08 15:06:58 -08001812 if (!bcma_core_is_enabled(wlc_hw->d11core)) {
1813 bcma_core_enable(wlc_hw->d11core, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001814 brcms_c_mctrl_reset(wlc_hw);
1815 }
1816
1817 macintmask = brcms_c_setband_inact(wlc, bandunit);
1818
1819 if (!wlc_hw->up)
1820 return;
1821
1822 brcms_b_core_phy_clk(wlc_hw, ON);
1823
1824 /* band-specific initializations */
1825 brcms_b_bsinit(wlc, chanspec);
1826
1827 /*
1828 * If there are any pending software interrupt bits,
1829 * then replace these with a harmless nonzero value
1830 * so brcms_c_dpc() will re-enable interrupts when done.
1831 */
1832 if (wlc->macintstatus)
1833 wlc->macintstatus = MI_DMAINT;
1834
1835 /* restore macintmask */
1836 brcms_intrsrestore(wlc->wl, macintmask);
1837
1838 /* ucode should still be suspended.. */
Arend van Spriel16d28122011-12-08 15:06:51 -08001839 WARN_ON((bcma_read32(wlc_hw->d11core, D11REGOFFS(maccontrol)) &
1840 MCTL_EN_MAC) != 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001841}
1842
Arend van Spriel5b435de2011-10-05 13:19:03 +02001843static bool brcms_c_isgoodchip(struct brcms_hardware *wlc_hw)
1844{
1845
1846 /* reject unsupported corerev */
1847 if (!CONF_HAS(D11CONF, wlc_hw->corerev)) {
1848 wiphy_err(wlc_hw->wlc->wiphy, "unsupported core rev %d\n",
1849 wlc_hw->corerev);
1850 return false;
1851 }
1852
1853 return true;
1854}
1855
1856/* Validate some board info parameters */
1857static bool brcms_c_validboardtype(struct brcms_hardware *wlc_hw)
1858{
1859 uint boardrev = wlc_hw->boardrev;
1860
1861 /* 4 bits each for board type, major, minor, and tiny version */
1862 uint brt = (boardrev & 0xf000) >> 12;
1863 uint b0 = (boardrev & 0xf00) >> 8;
1864 uint b1 = (boardrev & 0xf0) >> 4;
1865 uint b2 = boardrev & 0xf;
1866
1867 /* voards from other vendors are always considered valid */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001868 if (ai_get_boardvendor(wlc_hw->sih) != PCI_VENDOR_ID_BROADCOM)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001869 return true;
1870
1871 /* do some boardrev sanity checks when boardvendor is Broadcom */
1872 if (boardrev == 0)
1873 return false;
1874
1875 if (boardrev <= 0xff)
1876 return true;
1877
1878 if ((brt > 2) || (brt == 0) || (b0 > 9) || (b0 == 0) || (b1 > 9)
1879 || (b2 > 9))
1880 return false;
1881
1882 return true;
1883}
1884
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001885static void brcms_c_get_macaddr(struct brcms_hardware *wlc_hw, u8 etheraddr[ETH_ALEN])
Arend van Spriel5b435de2011-10-05 13:19:03 +02001886{
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001887 struct ssb_sprom *sprom = &wlc_hw->d11core->bus->sprom;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001888
1889 /* If macaddr exists, use it (Sromrev4, CIS, ...). */
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001890 if (!is_zero_ether_addr(sprom->il0mac)) {
1891 memcpy(etheraddr, sprom->il0mac, 6);
1892 return;
1893 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02001894
1895 if (wlc_hw->_nbands > 1)
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001896 memcpy(etheraddr, sprom->et1mac, 6);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001897 else
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001898 memcpy(etheraddr, sprom->il0mac, 6);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001899}
1900
1901/* power both the pll and external oscillator on/off */
1902static void brcms_b_xtal(struct brcms_hardware *wlc_hw, bool want)
1903{
1904 BCMMSG(wlc_hw->wlc->wiphy, "wl%d: want %d\n", wlc_hw->unit, want);
1905
1906 /*
1907 * dont power down if plldown is false or
1908 * we must poll hw radio disable
1909 */
1910 if (!want && wlc_hw->pllreq)
1911 return;
1912
Arend van Spriel5b435de2011-10-05 13:19:03 +02001913 wlc_hw->sbclk = want;
1914 if (!wlc_hw->sbclk) {
1915 wlc_hw->clk = false;
1916 if (wlc_hw->band && wlc_hw->band->pi)
1917 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
1918 }
1919}
1920
1921/*
1922 * Return true if radio is disabled, otherwise false.
1923 * hw radio disable signal is an external pin, users activate it asynchronously
1924 * this function could be called when driver is down and w/o clock
1925 * it operates on different registers depending on corerev and boardflag.
1926 */
1927static bool brcms_b_radio_read_hwdisabled(struct brcms_hardware *wlc_hw)
1928{
1929 bool v, clk, xtal;
Arend van Spriela8779e42011-12-08 15:06:58 -08001930 u32 flags = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001931
1932 xtal = wlc_hw->sbclk;
1933 if (!xtal)
1934 brcms_b_xtal(wlc_hw, ON);
1935
1936 /* may need to take core out of reset first */
1937 clk = wlc_hw->clk;
1938 if (!clk) {
1939 /*
1940 * mac no longer enables phyclk automatically when driver
1941 * accesses phyreg throughput mac. This can be skipped since
1942 * only mac reg is accessed below
1943 */
1944 flags |= SICF_PCLKE;
1945
1946 /*
Arend van Spriel3b758a62011-12-12 15:15:09 -08001947 * TODO: test suspend/resume
1948 *
Arend van Spriel5b435de2011-10-05 13:19:03 +02001949 * AI chip doesn't restore bar0win2 on
1950 * hibernation/resume, need sw fixup
1951 */
Arend van Spriel16d28122011-12-08 15:06:51 -08001952
Arend van Spriela8779e42011-12-08 15:06:58 -08001953 bcma_core_enable(wlc_hw->d11core, flags);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001954 brcms_c_mctrl_reset(wlc_hw);
1955 }
1956
Arend van Spriel16d28122011-12-08 15:06:51 -08001957 v = ((bcma_read32(wlc_hw->d11core,
1958 D11REGOFFS(phydebug)) & PDBG_RFD) != 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001959
1960 /* put core back into reset */
1961 if (!clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001962 bcma_core_disable(wlc_hw->d11core, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001963
1964 if (!xtal)
1965 brcms_b_xtal(wlc_hw, OFF);
1966
1967 return v;
1968}
1969
1970static bool wlc_dma_rxreset(struct brcms_hardware *wlc_hw, uint fifo)
1971{
1972 struct dma_pub *di = wlc_hw->di[fifo];
1973 return dma_rxreset(di);
1974}
1975
1976/* d11 core reset
1977 * ensure fask clock during reset
1978 * reset dma
1979 * reset d11(out of reset)
1980 * reset phy(out of reset)
1981 * clear software macintstatus for fresh new start
1982 * one testing hack wlc_hw->noreset will bypass the d11/phy reset
1983 */
1984void brcms_b_corereset(struct brcms_hardware *wlc_hw, u32 flags)
1985{
Arend van Spriel5b435de2011-10-05 13:19:03 +02001986 uint i;
1987 bool fastclk;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001988
1989 if (flags == BRCMS_USE_COREFLAGS)
1990 flags = (wlc_hw->band->pi ? wlc_hw->band->core_flags : 0);
1991
1992 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
1993
Arend van Spriel5b435de2011-10-05 13:19:03 +02001994 /* request FAST clock if not on */
1995 fastclk = wlc_hw->forcefastclk;
1996 if (!fastclk)
1997 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
1998
1999 /* reset the dma engines except first time thru */
Arend van Spriela8779e42011-12-08 15:06:58 -08002000 if (bcma_core_is_enabled(wlc_hw->d11core)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002001 for (i = 0; i < NFIFO; i++)
2002 if ((wlc_hw->di[i]) && (!dma_txreset(wlc_hw->di[i])))
2003 wiphy_err(wlc_hw->wlc->wiphy, "wl%d: %s: "
2004 "dma_txreset[%d]: cannot stop dma\n",
2005 wlc_hw->unit, __func__, i);
2006
2007 if ((wlc_hw->di[RX_FIFO])
2008 && (!wlc_dma_rxreset(wlc_hw, RX_FIFO)))
2009 wiphy_err(wlc_hw->wlc->wiphy, "wl%d: %s: dma_rxreset"
2010 "[%d]: cannot stop dma\n",
2011 wlc_hw->unit, __func__, RX_FIFO);
2012 }
2013 /* if noreset, just stop the psm and return */
2014 if (wlc_hw->noreset) {
2015 wlc_hw->wlc->macintstatus = 0; /* skip wl_dpc after down */
2016 brcms_b_mctrl(wlc_hw, MCTL_PSM_RUN | MCTL_EN_MAC, 0);
2017 return;
2018 }
2019
2020 /*
2021 * mac no longer enables phyclk automatically when driver accesses
2022 * phyreg throughput mac, AND phy_reset is skipped at early stage when
2023 * band->pi is invalid. need to enable PHY CLK
2024 */
2025 flags |= SICF_PCLKE;
2026
2027 /*
2028 * reset the core
2029 * In chips with PMU, the fastclk request goes through d11 core
2030 * reg 0x1e0, which is cleared by the core_reset. have to re-request it.
2031 *
2032 * This adds some delay and we can optimize it by also requesting
2033 * fastclk through chipcommon during this period if necessary. But
2034 * that has to work coordinate with other driver like mips/arm since
2035 * they may touch chipcommon as well.
2036 */
2037 wlc_hw->clk = false;
Arend van Spriela8779e42011-12-08 15:06:58 -08002038 bcma_core_enable(wlc_hw->d11core, flags);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002039 wlc_hw->clk = true;
2040 if (wlc_hw->band && wlc_hw->band->pi)
2041 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, true);
2042
2043 brcms_c_mctrl_reset(wlc_hw);
2044
Arend van Sprielb2ffec42011-12-08 15:06:45 -08002045 if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002046 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
2047
2048 brcms_b_phy_reset(wlc_hw);
2049
2050 /* turn on PHY_PLL */
2051 brcms_b_core_phypll_ctl(wlc_hw, true);
2052
2053 /* clear sw intstatus */
2054 wlc_hw->wlc->macintstatus = 0;
2055
2056 /* restore the clk setting */
2057 if (!fastclk)
2058 brcms_b_clkctl_clk(wlc_hw, CLK_DYNAMIC);
2059}
2060
2061/* txfifo sizes needs to be modified(increased) since the newer cores
2062 * have more memory.
2063 */
2064static void brcms_b_corerev_fifofixup(struct brcms_hardware *wlc_hw)
2065{
Arend van Spriel16d28122011-12-08 15:06:51 -08002066 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002067 u16 fifo_nu;
2068 u16 txfifo_startblk = TXFIFO_START_BLK, txfifo_endblk;
2069 u16 txfifo_def, txfifo_def1;
2070 u16 txfifo_cmd;
2071
2072 /* tx fifos start at TXFIFO_START_BLK from the Base address */
2073 txfifo_startblk = TXFIFO_START_BLK;
2074
2075 /* sequence of operations: reset fifo, set fifo size, reset fifo */
2076 for (fifo_nu = 0; fifo_nu < NFIFO; fifo_nu++) {
2077
2078 txfifo_endblk = txfifo_startblk + wlc_hw->xmtfifo_sz[fifo_nu];
2079 txfifo_def = (txfifo_startblk & 0xff) |
2080 (((txfifo_endblk - 1) & 0xff) << TXFIFO_FIFOTOP_SHIFT);
2081 txfifo_def1 = ((txfifo_startblk >> 8) & 0x1) |
2082 ((((txfifo_endblk -
2083 1) >> 8) & 0x1) << TXFIFO_FIFOTOP_SHIFT);
2084 txfifo_cmd =
2085 TXFIFOCMD_RESET_MASK | (fifo_nu << TXFIFOCMD_FIFOSEL_SHIFT);
2086
Arend van Spriel16d28122011-12-08 15:06:51 -08002087 bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd);
2088 bcma_write16(core, D11REGOFFS(xmtfifodef), txfifo_def);
2089 bcma_write16(core, D11REGOFFS(xmtfifodef1), txfifo_def1);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002090
Arend van Spriel16d28122011-12-08 15:06:51 -08002091 bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002092
2093 txfifo_startblk += wlc_hw->xmtfifo_sz[fifo_nu];
2094 }
2095 /*
2096 * need to propagate to shm location to be in sync since ucode/hw won't
2097 * do this
2098 */
2099 brcms_b_write_shm(wlc_hw, M_FIFOSIZE0,
2100 wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]);
2101 brcms_b_write_shm(wlc_hw, M_FIFOSIZE1,
2102 wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]);
2103 brcms_b_write_shm(wlc_hw, M_FIFOSIZE2,
2104 ((wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO] << 8) | wlc_hw->
2105 xmtfifo_sz[TX_AC_BK_FIFO]));
2106 brcms_b_write_shm(wlc_hw, M_FIFOSIZE3,
2107 ((wlc_hw->xmtfifo_sz[TX_ATIM_FIFO] << 8) | wlc_hw->
2108 xmtfifo_sz[TX_BCMC_FIFO]));
2109}
2110
2111/* This function is used for changing the tsf frac register
2112 * If spur avoidance mode is off, the mac freq will be 80/120/160Mhz
2113 * If spur avoidance mode is on1, the mac freq will be 82/123/164Mhz
2114 * If spur avoidance mode is on2, the mac freq will be 84/126/168Mhz
2115 * HTPHY Formula is 2^26/freq(MHz) e.g.
2116 * For spuron2 - 126MHz -> 2^26/126 = 532610.0
2117 * - 532610 = 0x82082 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x2082
2118 * For spuron: 123MHz -> 2^26/123 = 545600.5
2119 * - 545601 = 0x85341 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x5341
2120 * For spur off: 120MHz -> 2^26/120 = 559240.5
2121 * - 559241 = 0x88889 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x8889
2122 */
2123
2124void brcms_b_switch_macfreq(struct brcms_hardware *wlc_hw, u8 spurmode)
2125{
Arend van Spriel16d28122011-12-08 15:06:51 -08002126 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002127
Arend van Sprielb2ffec42011-12-08 15:06:45 -08002128 if ((ai_get_chip_id(wlc_hw->sih) == BCM43224_CHIP_ID) ||
2129 (ai_get_chip_id(wlc_hw->sih) == BCM43225_CHIP_ID)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002130 if (spurmode == WL_SPURAVOID_ON2) { /* 126Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002131 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x2082);
2132 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002133 } else if (spurmode == WL_SPURAVOID_ON1) { /* 123Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002134 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x5341);
2135 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002136 } else { /* 120Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002137 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x8889);
2138 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002139 }
2140 } else if (BRCMS_ISLCNPHY(wlc_hw->band)) {
2141 if (spurmode == WL_SPURAVOID_ON1) { /* 82Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002142 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x7CE0);
2143 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002144 } else { /* 80Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002145 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0xCCCD);
2146 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002147 }
2148 }
2149}
2150
2151/* Initialize GPIOs that are controlled by D11 core */
2152static void brcms_c_gpio_init(struct brcms_c_info *wlc)
2153{
2154 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002155 u32 gc, gm;
2156
Arend van Spriel5b435de2011-10-05 13:19:03 +02002157 /* use GPIO select 0 to get all gpio signals from the gpio out reg */
2158 brcms_b_mctrl(wlc_hw, MCTL_GPOUT_SEL_MASK, 0);
2159
2160 /*
2161 * Common GPIO setup:
2162 * G0 = LED 0 = WLAN Activity
2163 * G1 = LED 1 = WLAN 2.4 GHz Radio State
2164 * G2 = LED 2 = WLAN 5 GHz Radio State
2165 * G4 = radio disable input (HI enabled, LO disabled)
2166 */
2167
2168 gc = gm = 0;
2169
2170 /* Allocate GPIOs for mimo antenna diversity feature */
2171 if (wlc_hw->antsel_type == ANTSEL_2x3) {
2172 /* Enable antenna diversity, use 2x3 mode */
2173 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN,
2174 MHF3_ANTSEL_EN, BRCM_BAND_ALL);
2175 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE,
2176 MHF3_ANTSEL_MODE, BRCM_BAND_ALL);
2177
2178 /* init superswitch control */
2179 wlc_phy_antsel_init(wlc_hw->band->pi, false);
2180
2181 } else if (wlc_hw->antsel_type == ANTSEL_2x4) {
2182 gm |= gc |= (BOARD_GPIO_12 | BOARD_GPIO_13);
2183 /*
2184 * The board itself is powered by these GPIOs
2185 * (when not sending pattern) so set them high
2186 */
Arend van Spriel16d28122011-12-08 15:06:51 -08002187 bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_oe),
2188 (BOARD_GPIO_12 | BOARD_GPIO_13));
2189 bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_out),
2190 (BOARD_GPIO_12 | BOARD_GPIO_13));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002191
2192 /* Enable antenna diversity, use 2x4 mode */
2193 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN,
2194 MHF3_ANTSEL_EN, BRCM_BAND_ALL);
2195 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE, 0,
2196 BRCM_BAND_ALL);
2197
2198 /* Configure the desired clock to be 4Mhz */
2199 brcms_b_write_shm(wlc_hw, M_ANTSEL_CLKDIV,
2200 ANTSEL_CLKDIV_4MHZ);
2201 }
2202
2203 /*
2204 * gpio 9 controls the PA. ucode is responsible
2205 * for wiggling out and oe
2206 */
2207 if (wlc_hw->boardflags & BFL_PACTRL)
2208 gm |= gc |= BOARD_GPIO_PACTRL;
2209
2210 /* apply to gpiocontrol register */
2211 ai_gpiocontrol(wlc_hw->sih, gm, gc, GPIO_DRV_PRIORITY);
2212}
2213
2214static void brcms_ucode_write(struct brcms_hardware *wlc_hw,
2215 const __le32 ucode[], const size_t nbytes)
2216{
Arend van Spriel16d28122011-12-08 15:06:51 -08002217 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002218 uint i;
2219 uint count;
2220
2221 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
2222
2223 count = (nbytes / sizeof(u32));
2224
Arend van Spriel16d28122011-12-08 15:06:51 -08002225 bcma_write32(core, D11REGOFFS(objaddr),
2226 OBJADDR_AUTO_INC | OBJADDR_UCM_SEL);
2227 (void)bcma_read32(core, D11REGOFFS(objaddr));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002228 for (i = 0; i < count; i++)
Arend van Spriel16d28122011-12-08 15:06:51 -08002229 bcma_write32(core, D11REGOFFS(objdata), le32_to_cpu(ucode[i]));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002230
2231}
2232
2233static void brcms_ucode_download(struct brcms_hardware *wlc_hw)
2234{
2235 struct brcms_c_info *wlc;
2236 struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
2237
2238 wlc = wlc_hw->wlc;
2239
2240 if (wlc_hw->ucode_loaded)
2241 return;
2242
2243 if (D11REV_IS(wlc_hw->corerev, 23)) {
2244 if (BRCMS_ISNPHY(wlc_hw->band)) {
2245 brcms_ucode_write(wlc_hw, ucode->bcm43xx_16_mimo,
2246 ucode->bcm43xx_16_mimosz);
2247 wlc_hw->ucode_loaded = true;
2248 } else
2249 wiphy_err(wlc->wiphy, "%s: wl%d: unsupported phy in "
2250 "corerev %d\n",
2251 __func__, wlc_hw->unit, wlc_hw->corerev);
2252 } else if (D11REV_IS(wlc_hw->corerev, 24)) {
2253 if (BRCMS_ISLCNPHY(wlc_hw->band)) {
2254 brcms_ucode_write(wlc_hw, ucode->bcm43xx_24_lcn,
2255 ucode->bcm43xx_24_lcnsz);
2256 wlc_hw->ucode_loaded = true;
2257 } else {
2258 wiphy_err(wlc->wiphy, "%s: wl%d: unsupported phy in "
2259 "corerev %d\n",
2260 __func__, wlc_hw->unit, wlc_hw->corerev);
2261 }
2262 }
2263}
2264
2265void brcms_b_txant_set(struct brcms_hardware *wlc_hw, u16 phytxant)
2266{
2267 /* update sw state */
2268 wlc_hw->bmac_phytxant = phytxant;
2269
2270 /* push to ucode if up */
2271 if (!wlc_hw->up)
2272 return;
2273 brcms_c_ucode_txant_set(wlc_hw);
2274
2275}
2276
2277u16 brcms_b_get_txant(struct brcms_hardware *wlc_hw)
2278{
2279 return (u16) wlc_hw->wlc->stf->txant;
2280}
2281
2282void brcms_b_antsel_type_set(struct brcms_hardware *wlc_hw, u8 antsel_type)
2283{
2284 wlc_hw->antsel_type = antsel_type;
2285
2286 /* Update the antsel type for phy module to use */
2287 wlc_phy_antsel_type_set(wlc_hw->band->pi, antsel_type);
2288}
2289
2290static void brcms_b_fifoerrors(struct brcms_hardware *wlc_hw)
2291{
2292 bool fatal = false;
2293 uint unit;
2294 uint intstatus, idx;
Arend van Spriel16d28122011-12-08 15:06:51 -08002295 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002296 struct wiphy *wiphy = wlc_hw->wlc->wiphy;
2297
2298 unit = wlc_hw->unit;
2299
2300 for (idx = 0; idx < NFIFO; idx++) {
2301 /* read intstatus register and ignore any non-error bits */
2302 intstatus =
Arend van Spriel16d28122011-12-08 15:06:51 -08002303 bcma_read32(core,
2304 D11REGOFFS(intctrlregs[idx].intstatus)) &
2305 I_ERRORS;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002306 if (!intstatus)
2307 continue;
2308
2309 BCMMSG(wlc_hw->wlc->wiphy, "wl%d: intstatus%d 0x%x\n",
2310 unit, idx, intstatus);
2311
2312 if (intstatus & I_RO) {
2313 wiphy_err(wiphy, "wl%d: fifo %d: receive fifo "
2314 "overflow\n", unit, idx);
2315 fatal = true;
2316 }
2317
2318 if (intstatus & I_PC) {
2319 wiphy_err(wiphy, "wl%d: fifo %d: descriptor error\n",
2320 unit, idx);
2321 fatal = true;
2322 }
2323
2324 if (intstatus & I_PD) {
2325 wiphy_err(wiphy, "wl%d: fifo %d: data error\n", unit,
2326 idx);
2327 fatal = true;
2328 }
2329
2330 if (intstatus & I_DE) {
2331 wiphy_err(wiphy, "wl%d: fifo %d: descriptor protocol "
2332 "error\n", unit, idx);
2333 fatal = true;
2334 }
2335
2336 if (intstatus & I_RU)
2337 wiphy_err(wiphy, "wl%d: fifo %d: receive descriptor "
2338 "underflow\n", idx, unit);
2339
2340 if (intstatus & I_XU) {
2341 wiphy_err(wiphy, "wl%d: fifo %d: transmit fifo "
2342 "underflow\n", idx, unit);
2343 fatal = true;
2344 }
2345
2346 if (fatal) {
Roland Vossenc261bdf2011-10-18 14:03:04 +02002347 brcms_fatal_error(wlc_hw->wlc->wl); /* big hammer */
Arend van Spriel5b435de2011-10-05 13:19:03 +02002348 break;
2349 } else
Arend van Spriel16d28122011-12-08 15:06:51 -08002350 bcma_write32(core,
2351 D11REGOFFS(intctrlregs[idx].intstatus),
2352 intstatus);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002353 }
2354}
2355
2356void brcms_c_intrson(struct brcms_c_info *wlc)
2357{
2358 struct brcms_hardware *wlc_hw = wlc->hw;
2359 wlc->macintmask = wlc->defmacintmask;
Arend van Spriel16d28122011-12-08 15:06:51 -08002360 bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002361}
2362
Arend van Spriel5b435de2011-10-05 13:19:03 +02002363u32 brcms_c_intrsoff(struct brcms_c_info *wlc)
2364{
2365 struct brcms_hardware *wlc_hw = wlc->hw;
2366 u32 macintmask;
2367
2368 if (!wlc_hw->clk)
2369 return 0;
2370
2371 macintmask = wlc->macintmask; /* isr can still happen */
2372
Arend van Spriel16d28122011-12-08 15:06:51 -08002373 bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), 0);
2374 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(macintmask));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002375 udelay(1); /* ensure int line is no longer driven */
2376 wlc->macintmask = 0;
2377
2378 /* return previous macintmask; resolve race between us and our isr */
2379 return wlc->macintstatus ? 0 : macintmask;
2380}
2381
2382void brcms_c_intrsrestore(struct brcms_c_info *wlc, u32 macintmask)
2383{
2384 struct brcms_hardware *wlc_hw = wlc->hw;
2385 if (!wlc_hw->clk)
2386 return;
2387
2388 wlc->macintmask = macintmask;
Arend van Spriel16d28122011-12-08 15:06:51 -08002389 bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002390}
2391
Roland Vossendc460122011-10-21 16:16:28 +02002392/* assumes that the d11 MAC is enabled */
Arend van Spriel5b435de2011-10-05 13:19:03 +02002393static void brcms_b_tx_fifo_suspend(struct brcms_hardware *wlc_hw,
2394 uint tx_fifo)
2395{
2396 u8 fifo = 1 << tx_fifo;
2397
2398 /* Two clients of this code, 11h Quiet period and scanning. */
2399
2400 /* only suspend if not already suspended */
2401 if ((wlc_hw->suspended_fifos & fifo) == fifo)
2402 return;
2403
2404 /* force the core awake only if not already */
2405 if (wlc_hw->suspended_fifos == 0)
2406 brcms_c_ucode_wake_override_set(wlc_hw,
2407 BRCMS_WAKE_OVERRIDE_TXFIFO);
2408
2409 wlc_hw->suspended_fifos |= fifo;
2410
2411 if (wlc_hw->di[tx_fifo]) {
2412 /*
2413 * Suspending AMPDU transmissions in the middle can cause
2414 * underflow which may result in mismatch between ucode and
2415 * driver so suspend the mac before suspending the FIFO
2416 */
2417 if (BRCMS_PHY_11N_CAP(wlc_hw->band))
2418 brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
2419
2420 dma_txsuspend(wlc_hw->di[tx_fifo]);
2421
2422 if (BRCMS_PHY_11N_CAP(wlc_hw->band))
2423 brcms_c_enable_mac(wlc_hw->wlc);
2424 }
2425}
2426
2427static void brcms_b_tx_fifo_resume(struct brcms_hardware *wlc_hw,
2428 uint tx_fifo)
2429{
2430 /* BMAC_NOTE: BRCMS_TX_FIFO_ENAB is done in brcms_c_dpc() for DMA case
2431 * but need to be done here for PIO otherwise the watchdog will catch
2432 * the inconsistency and fire
2433 */
2434 /* Two clients of this code, 11h Quiet period and scanning. */
2435 if (wlc_hw->di[tx_fifo])
2436 dma_txresume(wlc_hw->di[tx_fifo]);
2437
2438 /* allow core to sleep again */
2439 if (wlc_hw->suspended_fifos == 0)
2440 return;
2441 else {
2442 wlc_hw->suspended_fifos &= ~(1 << tx_fifo);
2443 if (wlc_hw->suspended_fifos == 0)
2444 brcms_c_ucode_wake_override_clear(wlc_hw,
2445 BRCMS_WAKE_OVERRIDE_TXFIFO);
2446 }
2447}
2448
Roland Vossena8bc4912011-10-21 16:16:25 +02002449/* precondition: requires the mac core to be enabled */
Roland Vossenc6c44892011-10-21 16:16:26 +02002450static void brcms_b_mute(struct brcms_hardware *wlc_hw, bool mute_tx)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002451{
2452 static const u8 null_ether_addr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
2453
Roland Vossenc6c44892011-10-21 16:16:26 +02002454 if (mute_tx) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002455 /* suspend tx fifos */
2456 brcms_b_tx_fifo_suspend(wlc_hw, TX_DATA_FIFO);
2457 brcms_b_tx_fifo_suspend(wlc_hw, TX_CTL_FIFO);
2458 brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_BK_FIFO);
2459 brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_VI_FIFO);
2460
2461 /* zero the address match register so we do not send ACKs */
2462 brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET,
2463 null_ether_addr);
2464 } else {
2465 /* resume tx fifos */
2466 brcms_b_tx_fifo_resume(wlc_hw, TX_DATA_FIFO);
2467 brcms_b_tx_fifo_resume(wlc_hw, TX_CTL_FIFO);
2468 brcms_b_tx_fifo_resume(wlc_hw, TX_AC_BK_FIFO);
2469 brcms_b_tx_fifo_resume(wlc_hw, TX_AC_VI_FIFO);
2470
2471 /* Restore address */
2472 brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET,
2473 wlc_hw->etheraddr);
2474 }
2475
Roland Vossenc6c44892011-10-21 16:16:26 +02002476 wlc_phy_mute_upd(wlc_hw->band->pi, mute_tx, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002477
Roland Vossenc6c44892011-10-21 16:16:26 +02002478 if (mute_tx)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002479 brcms_c_ucode_mute_override_set(wlc_hw);
2480 else
2481 brcms_c_ucode_mute_override_clear(wlc_hw);
2482}
2483
Roland Vossendc460122011-10-21 16:16:28 +02002484void
2485brcms_c_mute(struct brcms_c_info *wlc, bool mute_tx)
2486{
2487 brcms_b_mute(wlc->hw, mute_tx);
2488}
2489
Arend van Spriel5b435de2011-10-05 13:19:03 +02002490/*
2491 * Read and clear macintmask and macintstatus and intstatus registers.
2492 * This routine should be called with interrupts off
2493 * Return:
2494 * -1 if brcms_deviceremoved(wlc) evaluates to true;
2495 * 0 if the interrupt is not for us, or we are in some special cases;
2496 * device interrupt status bits otherwise.
2497 */
2498static inline u32 wlc_intstatus(struct brcms_c_info *wlc, bool in_isr)
2499{
2500 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08002501 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002502 u32 macintstatus;
2503
2504 /* macintstatus includes a DMA interrupt summary bit */
Arend van Spriel16d28122011-12-08 15:06:51 -08002505 macintstatus = bcma_read32(core, D11REGOFFS(macintstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002506
2507 BCMMSG(wlc->wiphy, "wl%d: macintstatus: 0x%x\n", wlc_hw->unit,
2508 macintstatus);
2509
2510 /* detect cardbus removed, in power down(suspend) and in reset */
2511 if (brcms_deviceremoved(wlc))
2512 return -1;
2513
2514 /* brcms_deviceremoved() succeeds even when the core is still resetting,
2515 * handle that case here.
2516 */
2517 if (macintstatus == 0xffffffff)
2518 return 0;
2519
2520 /* defer unsolicited interrupts */
2521 macintstatus &= (in_isr ? wlc->macintmask : wlc->defmacintmask);
2522
2523 /* if not for us */
2524 if (macintstatus == 0)
2525 return 0;
2526
2527 /* interrupts are already turned off for CFE build
2528 * Caution: For CFE Turning off the interrupts again has some undesired
2529 * consequences
2530 */
2531 /* turn off the interrupts */
Arend van Spriel16d28122011-12-08 15:06:51 -08002532 bcma_write32(core, D11REGOFFS(macintmask), 0);
2533 (void)bcma_read32(core, D11REGOFFS(macintmask));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002534 wlc->macintmask = 0;
2535
2536 /* clear device interrupts */
Arend van Spriel16d28122011-12-08 15:06:51 -08002537 bcma_write32(core, D11REGOFFS(macintstatus), macintstatus);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002538
2539 /* MI_DMAINT is indication of non-zero intstatus */
2540 if (macintstatus & MI_DMAINT)
2541 /*
2542 * only fifo interrupt enabled is I_RI in
2543 * RX_FIFO. If MI_DMAINT is set, assume it
2544 * is set and clear the interrupt.
2545 */
Arend van Spriel16d28122011-12-08 15:06:51 -08002546 bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intstatus),
2547 DEF_RXINTMASK);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002548
2549 return macintstatus;
2550}
2551
2552/* Update wlc->macintstatus and wlc->intstatus[]. */
2553/* Return true if they are updated successfully. false otherwise */
2554bool brcms_c_intrsupd(struct brcms_c_info *wlc)
2555{
2556 u32 macintstatus;
2557
2558 /* read and clear macintstatus and intstatus registers */
2559 macintstatus = wlc_intstatus(wlc, false);
2560
2561 /* device is removed */
2562 if (macintstatus == 0xffffffff)
2563 return false;
2564
2565 /* update interrupt status in software */
2566 wlc->macintstatus |= macintstatus;
2567
2568 return true;
2569}
2570
2571/*
2572 * First-level interrupt processing.
2573 * Return true if this was our interrupt, false otherwise.
2574 * *wantdpc will be set to true if further brcms_c_dpc() processing is required,
2575 * false otherwise.
2576 */
2577bool brcms_c_isr(struct brcms_c_info *wlc, bool *wantdpc)
2578{
2579 struct brcms_hardware *wlc_hw = wlc->hw;
2580 u32 macintstatus;
2581
2582 *wantdpc = false;
2583
2584 if (!wlc_hw->up || !wlc->macintmask)
2585 return false;
2586
2587 /* read and clear macintstatus and intstatus registers */
2588 macintstatus = wlc_intstatus(wlc, true);
2589
2590 if (macintstatus == 0xffffffff)
2591 wiphy_err(wlc->wiphy, "DEVICEREMOVED detected in the ISR code"
2592 " path\n");
2593
2594 /* it is not for us */
2595 if (macintstatus == 0)
2596 return false;
2597
2598 *wantdpc = true;
2599
2600 /* save interrupt status bits */
2601 wlc->macintstatus = macintstatus;
2602
2603 return true;
2604
2605}
2606
2607void brcms_c_suspend_mac_and_wait(struct brcms_c_info *wlc)
2608{
2609 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08002610 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002611 u32 mc, mi;
2612 struct wiphy *wiphy = wlc->wiphy;
2613
2614 BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
2615 wlc_hw->band->bandunit);
2616
2617 /*
2618 * Track overlapping suspend requests
2619 */
2620 wlc_hw->mac_suspend_depth++;
2621 if (wlc_hw->mac_suspend_depth > 1)
2622 return;
2623
2624 /* force the core awake */
2625 brcms_c_ucode_wake_override_set(wlc_hw, BRCMS_WAKE_OVERRIDE_MACSUSPEND);
2626
Arend van Spriel16d28122011-12-08 15:06:51 -08002627 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002628
2629 if (mc == 0xffffffff) {
2630 wiphy_err(wiphy, "wl%d: %s: dead chip\n", wlc_hw->unit,
2631 __func__);
2632 brcms_down(wlc->wl);
2633 return;
2634 }
2635 WARN_ON(mc & MCTL_PSM_JMP_0);
2636 WARN_ON(!(mc & MCTL_PSM_RUN));
2637 WARN_ON(!(mc & MCTL_EN_MAC));
2638
Arend van Spriel16d28122011-12-08 15:06:51 -08002639 mi = bcma_read32(core, D11REGOFFS(macintstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002640 if (mi == 0xffffffff) {
2641 wiphy_err(wiphy, "wl%d: %s: dead chip\n", wlc_hw->unit,
2642 __func__);
2643 brcms_down(wlc->wl);
2644 return;
2645 }
2646 WARN_ON(mi & MI_MACSSPNDD);
2647
2648 brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, 0);
2649
Arend van Spriel16d28122011-12-08 15:06:51 -08002650 SPINWAIT(!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD),
Arend van Spriel5b435de2011-10-05 13:19:03 +02002651 BRCMS_MAX_MAC_SUSPEND);
2652
Arend van Spriel16d28122011-12-08 15:06:51 -08002653 if (!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002654 wiphy_err(wiphy, "wl%d: wlc_suspend_mac_and_wait: waited %d uS"
2655 " and MI_MACSSPNDD is still not on.\n",
2656 wlc_hw->unit, BRCMS_MAX_MAC_SUSPEND);
2657 wiphy_err(wiphy, "wl%d: psmdebug 0x%08x, phydebug 0x%08x, "
2658 "psm_brc 0x%04x\n", wlc_hw->unit,
Arend van Spriel16d28122011-12-08 15:06:51 -08002659 bcma_read32(core, D11REGOFFS(psmdebug)),
2660 bcma_read32(core, D11REGOFFS(phydebug)),
2661 bcma_read16(core, D11REGOFFS(psm_brc)));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002662 }
2663
Arend van Spriel16d28122011-12-08 15:06:51 -08002664 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002665 if (mc == 0xffffffff) {
2666 wiphy_err(wiphy, "wl%d: %s: dead chip\n", wlc_hw->unit,
2667 __func__);
2668 brcms_down(wlc->wl);
2669 return;
2670 }
2671 WARN_ON(mc & MCTL_PSM_JMP_0);
2672 WARN_ON(!(mc & MCTL_PSM_RUN));
2673 WARN_ON(mc & MCTL_EN_MAC);
2674}
2675
2676void brcms_c_enable_mac(struct brcms_c_info *wlc)
2677{
2678 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08002679 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002680 u32 mc, mi;
2681
2682 BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n", wlc_hw->unit,
2683 wlc->band->bandunit);
2684
2685 /*
2686 * Track overlapping suspend requests
2687 */
2688 wlc_hw->mac_suspend_depth--;
2689 if (wlc_hw->mac_suspend_depth > 0)
2690 return;
2691
Arend van Spriel16d28122011-12-08 15:06:51 -08002692 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002693 WARN_ON(mc & MCTL_PSM_JMP_0);
2694 WARN_ON(mc & MCTL_EN_MAC);
2695 WARN_ON(!(mc & MCTL_PSM_RUN));
2696
2697 brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, MCTL_EN_MAC);
Arend van Spriel16d28122011-12-08 15:06:51 -08002698 bcma_write32(core, D11REGOFFS(macintstatus), MI_MACSSPNDD);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002699
Arend van Spriel16d28122011-12-08 15:06:51 -08002700 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002701 WARN_ON(mc & MCTL_PSM_JMP_0);
2702 WARN_ON(!(mc & MCTL_EN_MAC));
2703 WARN_ON(!(mc & MCTL_PSM_RUN));
2704
Arend van Spriel16d28122011-12-08 15:06:51 -08002705 mi = bcma_read32(core, D11REGOFFS(macintstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002706 WARN_ON(mi & MI_MACSSPNDD);
2707
2708 brcms_c_ucode_wake_override_clear(wlc_hw,
2709 BRCMS_WAKE_OVERRIDE_MACSUSPEND);
2710}
2711
2712void brcms_b_band_stf_ss_set(struct brcms_hardware *wlc_hw, u8 stf_mode)
2713{
2714 wlc_hw->hw_stf_ss_opmode = stf_mode;
2715
2716 if (wlc_hw->clk)
2717 brcms_upd_ofdm_pctl1_table(wlc_hw);
2718}
2719
2720static bool brcms_b_validate_chip_access(struct brcms_hardware *wlc_hw)
2721{
Arend van Spriel16d28122011-12-08 15:06:51 -08002722 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002723 u32 w, val;
2724 struct wiphy *wiphy = wlc_hw->wlc->wiphy;
2725
2726 BCMMSG(wiphy, "wl%d\n", wlc_hw->unit);
2727
Arend van Spriel5b435de2011-10-05 13:19:03 +02002728 /* Validate dchip register access */
2729
Arend van Spriel16d28122011-12-08 15:06:51 -08002730 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2731 (void)bcma_read32(core, D11REGOFFS(objaddr));
2732 w = bcma_read32(core, D11REGOFFS(objdata));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002733
2734 /* Can we write and read back a 32bit register? */
Arend van Spriel16d28122011-12-08 15:06:51 -08002735 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2736 (void)bcma_read32(core, D11REGOFFS(objaddr));
2737 bcma_write32(core, D11REGOFFS(objdata), (u32) 0xaa5555aa);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002738
Arend van Spriel16d28122011-12-08 15:06:51 -08002739 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2740 (void)bcma_read32(core, D11REGOFFS(objaddr));
2741 val = bcma_read32(core, D11REGOFFS(objdata));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002742 if (val != (u32) 0xaa5555aa) {
2743 wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, "
2744 "expected 0xaa5555aa\n", wlc_hw->unit, val);
2745 return false;
2746 }
2747
Arend van Spriel16d28122011-12-08 15:06:51 -08002748 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2749 (void)bcma_read32(core, D11REGOFFS(objaddr));
2750 bcma_write32(core, D11REGOFFS(objdata), (u32) 0x55aaaa55);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002751
Arend van Spriel16d28122011-12-08 15:06:51 -08002752 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2753 (void)bcma_read32(core, D11REGOFFS(objaddr));
2754 val = bcma_read32(core, D11REGOFFS(objdata));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002755 if (val != (u32) 0x55aaaa55) {
2756 wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, "
2757 "expected 0x55aaaa55\n", wlc_hw->unit, val);
2758 return false;
2759 }
2760
Arend van Spriel16d28122011-12-08 15:06:51 -08002761 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2762 (void)bcma_read32(core, D11REGOFFS(objaddr));
2763 bcma_write32(core, D11REGOFFS(objdata), w);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002764
2765 /* clear CFPStart */
Arend van Spriel16d28122011-12-08 15:06:51 -08002766 bcma_write32(core, D11REGOFFS(tsf_cfpstart), 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002767
Arend van Spriel16d28122011-12-08 15:06:51 -08002768 w = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002769 if ((w != (MCTL_IHR_EN | MCTL_WAKE)) &&
2770 (w != (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE))) {
2771 wiphy_err(wiphy, "wl%d: validate_chip_access: maccontrol = "
2772 "0x%x, expected 0x%x or 0x%x\n", wlc_hw->unit, w,
2773 (MCTL_IHR_EN | MCTL_WAKE),
2774 (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE));
2775 return false;
2776 }
2777
2778 return true;
2779}
2780
2781#define PHYPLL_WAIT_US 100000
2782
2783void brcms_b_core_phypll_ctl(struct brcms_hardware *wlc_hw, bool on)
2784{
Arend van Spriel16d28122011-12-08 15:06:51 -08002785 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002786 u32 tmp;
2787
2788 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
2789
2790 tmp = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002791
2792 if (on) {
Arend van Sprielb2ffec42011-12-08 15:06:45 -08002793 if ((ai_get_chip_id(wlc_hw->sih) == BCM4313_CHIP_ID)) {
Arend van Spriel16d28122011-12-08 15:06:51 -08002794 bcma_set32(core, D11REGOFFS(clk_ctl_st),
2795 CCS_ERSRC_REQ_HT |
2796 CCS_ERSRC_REQ_D11PLL |
2797 CCS_ERSRC_REQ_PHYPLL);
2798 SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) &
2799 CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT,
Arend van Spriel5b435de2011-10-05 13:19:03 +02002800 PHYPLL_WAIT_US);
2801
Arend van Spriel16d28122011-12-08 15:06:51 -08002802 tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st));
2803 if ((tmp & CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002804 wiphy_err(wlc_hw->wlc->wiphy, "%s: turn on PHY"
2805 " PLL failed\n", __func__);
2806 } else {
Arend van Spriel16d28122011-12-08 15:06:51 -08002807 bcma_set32(core, D11REGOFFS(clk_ctl_st),
2808 tmp | CCS_ERSRC_REQ_D11PLL |
2809 CCS_ERSRC_REQ_PHYPLL);
2810 SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) &
Arend van Spriel5b435de2011-10-05 13:19:03 +02002811 (CCS_ERSRC_AVAIL_D11PLL |
2812 CCS_ERSRC_AVAIL_PHYPLL)) !=
2813 (CCS_ERSRC_AVAIL_D11PLL |
2814 CCS_ERSRC_AVAIL_PHYPLL), PHYPLL_WAIT_US);
2815
Arend van Spriel16d28122011-12-08 15:06:51 -08002816 tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002817 if ((tmp &
2818 (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL))
2819 !=
2820 (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL))
2821 wiphy_err(wlc_hw->wlc->wiphy, "%s: turn on "
2822 "PHY PLL failed\n", __func__);
2823 }
2824 } else {
2825 /*
2826 * Since the PLL may be shared, other cores can still
2827 * be requesting it; so we'll deassert the request but
2828 * not wait for status to comply.
2829 */
Arend van Spriel16d28122011-12-08 15:06:51 -08002830 bcma_mask32(core, D11REGOFFS(clk_ctl_st),
2831 ~CCS_ERSRC_REQ_PHYPLL);
2832 (void)bcma_read32(core, D11REGOFFS(clk_ctl_st));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002833 }
2834}
2835
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02002836static void brcms_c_coredisable(struct brcms_hardware *wlc_hw)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002837{
2838 bool dev_gone;
2839
2840 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
2841
2842 dev_gone = brcms_deviceremoved(wlc_hw->wlc);
2843
2844 if (dev_gone)
2845 return;
2846
2847 if (wlc_hw->noreset)
2848 return;
2849
2850 /* radio off */
2851 wlc_phy_switch_radio(wlc_hw->band->pi, OFF);
2852
2853 /* turn off analog core */
2854 wlc_phy_anacore(wlc_hw->band->pi, OFF);
2855
2856 /* turn off PHYPLL to save power */
2857 brcms_b_core_phypll_ctl(wlc_hw, false);
2858
2859 wlc_hw->clk = false;
Arend van Spriela8779e42011-12-08 15:06:58 -08002860 bcma_core_disable(wlc_hw->d11core, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002861 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
2862}
2863
2864static void brcms_c_flushqueues(struct brcms_c_info *wlc)
2865{
2866 struct brcms_hardware *wlc_hw = wlc->hw;
2867 uint i;
2868
2869 /* free any posted tx packets */
2870 for (i = 0; i < NFIFO; i++)
2871 if (wlc_hw->di[i]) {
2872 dma_txreclaim(wlc_hw->di[i], DMA_RANGE_ALL);
2873 wlc->core->txpktpend[i] = 0;
2874 BCMMSG(wlc->wiphy, "pktpend fifo %d clrd\n", i);
2875 }
2876
2877 /* free any posted rx packets */
2878 dma_rxreclaim(wlc_hw->di[RX_FIFO]);
2879}
2880
2881static u16
2882brcms_b_read_objmem(struct brcms_hardware *wlc_hw, uint offset, u32 sel)
2883{
Arend van Spriel16d28122011-12-08 15:06:51 -08002884 struct bcma_device *core = wlc_hw->d11core;
2885 u16 objoff = D11REGOFFS(objdata);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002886
Arend van Spriel16d28122011-12-08 15:06:51 -08002887 bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2));
2888 (void)bcma_read32(core, D11REGOFFS(objaddr));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002889 if (offset & 2)
Arend van Spriel16d28122011-12-08 15:06:51 -08002890 objoff += 2;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002891
Arend van Spriel16d28122011-12-08 15:06:51 -08002892 return bcma_read16(core, objoff);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002893}
2894
2895static void
2896brcms_b_write_objmem(struct brcms_hardware *wlc_hw, uint offset, u16 v,
2897 u32 sel)
2898{
Arend van Spriel16d28122011-12-08 15:06:51 -08002899 struct bcma_device *core = wlc_hw->d11core;
2900 u16 objoff = D11REGOFFS(objdata);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002901
Arend van Spriel16d28122011-12-08 15:06:51 -08002902 bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2));
2903 (void)bcma_read32(core, D11REGOFFS(objaddr));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002904 if (offset & 2)
Arend van Spriel16d28122011-12-08 15:06:51 -08002905 objoff += 2;
2906
2907 bcma_write16(core, objoff, v);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002908}
2909
2910/*
2911 * Read a single u16 from shared memory.
2912 * SHM 'offset' needs to be an even address
2913 */
2914u16 brcms_b_read_shm(struct brcms_hardware *wlc_hw, uint offset)
2915{
2916 return brcms_b_read_objmem(wlc_hw, offset, OBJADDR_SHM_SEL);
2917}
2918
2919/*
2920 * Write a single u16 to shared memory.
2921 * SHM 'offset' needs to be an even address
2922 */
2923void brcms_b_write_shm(struct brcms_hardware *wlc_hw, uint offset, u16 v)
2924{
2925 brcms_b_write_objmem(wlc_hw, offset, v, OBJADDR_SHM_SEL);
2926}
2927
2928/*
2929 * Copy a buffer to shared memory of specified type .
2930 * SHM 'offset' needs to be an even address and
2931 * Buffer length 'len' must be an even number of bytes
2932 * 'sel' selects the type of memory
2933 */
2934void
2935brcms_b_copyto_objmem(struct brcms_hardware *wlc_hw, uint offset,
2936 const void *buf, int len, u32 sel)
2937{
2938 u16 v;
2939 const u8 *p = (const u8 *)buf;
2940 int i;
2941
2942 if (len <= 0 || (offset & 1) || (len & 1))
2943 return;
2944
2945 for (i = 0; i < len; i += 2) {
2946 v = p[i] | (p[i + 1] << 8);
2947 brcms_b_write_objmem(wlc_hw, offset + i, v, sel);
2948 }
2949}
2950
2951/*
2952 * Copy a piece of shared memory of specified type to a buffer .
2953 * SHM 'offset' needs to be an even address and
2954 * Buffer length 'len' must be an even number of bytes
2955 * 'sel' selects the type of memory
2956 */
2957void
2958brcms_b_copyfrom_objmem(struct brcms_hardware *wlc_hw, uint offset, void *buf,
2959 int len, u32 sel)
2960{
2961 u16 v;
2962 u8 *p = (u8 *) buf;
2963 int i;
2964
2965 if (len <= 0 || (offset & 1) || (len & 1))
2966 return;
2967
2968 for (i = 0; i < len; i += 2) {
2969 v = brcms_b_read_objmem(wlc_hw, offset + i, sel);
2970 p[i] = v & 0xFF;
2971 p[i + 1] = (v >> 8) & 0xFF;
2972 }
2973}
2974
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02002975/* Copy a buffer to shared memory.
2976 * SHM 'offset' needs to be an even address and
2977 * Buffer length 'len' must be an even number of bytes
2978 */
2979static void brcms_c_copyto_shm(struct brcms_c_info *wlc, uint offset,
2980 const void *buf, int len)
2981{
2982 brcms_b_copyto_objmem(wlc->hw, offset, buf, len, OBJADDR_SHM_SEL);
2983}
2984
Arend van Spriel5b435de2011-10-05 13:19:03 +02002985static void brcms_b_retrylimit_upd(struct brcms_hardware *wlc_hw,
2986 u16 SRL, u16 LRL)
2987{
2988 wlc_hw->SRL = SRL;
2989 wlc_hw->LRL = LRL;
2990
2991 /* write retry limit to SCR, shouldn't need to suspend */
2992 if (wlc_hw->up) {
Arend van Spriel16d28122011-12-08 15:06:51 -08002993 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
2994 OBJADDR_SCR_SEL | S_DOT11_SRC_LMT);
2995 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
2996 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->SRL);
2997 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
2998 OBJADDR_SCR_SEL | S_DOT11_LRC_LMT);
2999 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
3000 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->LRL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003001 }
3002}
3003
3004static void brcms_b_pllreq(struct brcms_hardware *wlc_hw, bool set, u32 req_bit)
3005{
3006 if (set) {
3007 if (mboolisset(wlc_hw->pllreq, req_bit))
3008 return;
3009
3010 mboolset(wlc_hw->pllreq, req_bit);
3011
3012 if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) {
3013 if (!wlc_hw->sbclk)
3014 brcms_b_xtal(wlc_hw, ON);
3015 }
3016 } else {
3017 if (!mboolisset(wlc_hw->pllreq, req_bit))
3018 return;
3019
3020 mboolclr(wlc_hw->pllreq, req_bit);
3021
3022 if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) {
3023 if (wlc_hw->sbclk)
3024 brcms_b_xtal(wlc_hw, OFF);
3025 }
3026 }
3027}
3028
3029static void brcms_b_antsel_set(struct brcms_hardware *wlc_hw, u32 antsel_avail)
3030{
3031 wlc_hw->antsel_avail = antsel_avail;
3032}
3033
3034/*
3035 * conditions under which the PM bit should be set in outgoing frames
3036 * and STAY_AWAKE is meaningful
3037 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003038static bool brcms_c_ps_allowed(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003039{
3040 struct brcms_bss_cfg *cfg = wlc->bsscfg;
3041
3042 /* disallow PS when one of the following global conditions meets */
3043 if (!wlc->pub->associated)
3044 return false;
3045
3046 /* disallow PS when one of these meets when not scanning */
Alwin Beukersbe667662011-11-22 17:21:43 -08003047 if (wlc->filter_flags & FIF_PROMISC_IN_BSS)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003048 return false;
3049
3050 if (cfg->associated) {
3051 /*
3052 * disallow PS when one of the following
3053 * bsscfg specific conditions meets
3054 */
3055 if (!cfg->BSS)
3056 return false;
3057
3058 return false;
3059 }
3060
3061 return true;
3062}
3063
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003064static void brcms_c_statsupd(struct brcms_c_info *wlc)
3065{
3066 int i;
3067 struct macstat macstats;
Joe Perches8ae74652012-01-15 00:38:38 -08003068#ifdef DEBUG
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003069 u16 delta;
3070 u16 rxf0ovfl;
3071 u16 txfunfl[NFIFO];
Joe Perches8ae74652012-01-15 00:38:38 -08003072#endif /* DEBUG */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003073
3074 /* if driver down, make no sense to update stats */
3075 if (!wlc->pub->up)
3076 return;
3077
Joe Perches8ae74652012-01-15 00:38:38 -08003078#ifdef DEBUG
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003079 /* save last rx fifo 0 overflow count */
3080 rxf0ovfl = wlc->core->macstat_snapshot->rxf0ovfl;
3081
3082 /* save last tx fifo underflow count */
3083 for (i = 0; i < NFIFO; i++)
3084 txfunfl[i] = wlc->core->macstat_snapshot->txfunfl[i];
Joe Perches8ae74652012-01-15 00:38:38 -08003085#endif /* DEBUG */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003086
3087 /* Read mac stats from contiguous shared memory */
3088 brcms_b_copyfrom_objmem(wlc->hw, M_UCODE_MACSTAT, &macstats,
3089 sizeof(struct macstat), OBJADDR_SHM_SEL);
3090
Joe Perches8ae74652012-01-15 00:38:38 -08003091#ifdef DEBUG
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003092 /* check for rx fifo 0 overflow */
3093 delta = (u16) (wlc->core->macstat_snapshot->rxf0ovfl - rxf0ovfl);
3094 if (delta)
3095 wiphy_err(wlc->wiphy, "wl%d: %u rx fifo 0 overflows!\n",
3096 wlc->pub->unit, delta);
3097
3098 /* check for tx fifo underflows */
3099 for (i = 0; i < NFIFO; i++) {
3100 delta =
3101 (u16) (wlc->core->macstat_snapshot->txfunfl[i] -
3102 txfunfl[i]);
3103 if (delta)
3104 wiphy_err(wlc->wiphy, "wl%d: %u tx fifo %d underflows!"
3105 "\n", wlc->pub->unit, delta, i);
3106 }
Joe Perches8ae74652012-01-15 00:38:38 -08003107#endif /* DEBUG */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003108
3109 /* merge counters from dma module */
3110 for (i = 0; i < NFIFO; i++) {
3111 if (wlc->hw->di[i])
3112 dma_counterreset(wlc->hw->di[i]);
3113 }
3114}
3115
Arend van Spriel5b435de2011-10-05 13:19:03 +02003116static void brcms_b_reset(struct brcms_hardware *wlc_hw)
3117{
3118 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
3119
3120 /* reset the core */
3121 if (!brcms_deviceremoved(wlc_hw->wlc))
3122 brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
3123
3124 /* purge the dma rings */
3125 brcms_c_flushqueues(wlc_hw->wlc);
3126}
3127
3128void brcms_c_reset(struct brcms_c_info *wlc)
3129{
3130 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
3131
3132 /* slurp up hw mac counters before core reset */
3133 brcms_c_statsupd(wlc);
3134
3135 /* reset our snapshot of macstat counters */
3136 memset((char *)wlc->core->macstat_snapshot, 0,
3137 sizeof(struct macstat));
3138
3139 brcms_b_reset(wlc->hw);
3140}
3141
Arend van Spriel5b435de2011-10-05 13:19:03 +02003142/* Return the channel the driver should initialize during brcms_c_init.
3143 * the channel may have to be changed from the currently configured channel
3144 * if other configurations are in conflict (bandlocked, 11n mode disabled,
3145 * invalid channel for current country, etc.)
3146 */
3147static u16 brcms_c_init_chanspec(struct brcms_c_info *wlc)
3148{
3149 u16 chanspec =
3150 1 | WL_CHANSPEC_BW_20 | WL_CHANSPEC_CTL_SB_NONE |
3151 WL_CHANSPEC_BAND_2G;
3152
3153 return chanspec;
3154}
3155
3156void brcms_c_init_scb(struct scb *scb)
3157{
3158 int i;
3159
3160 memset(scb, 0, sizeof(struct scb));
3161 scb->flags = SCB_WMECAP | SCB_HTCAP;
3162 for (i = 0; i < NUMPRIO; i++) {
3163 scb->seqnum[i] = 0;
3164 scb->seqctl[i] = 0xFFFF;
3165 }
3166
3167 scb->seqctl_nonqos = 0xFFFF;
3168 scb->magic = SCB_MAGIC;
3169}
3170
3171/* d11 core init
3172 * reset PSM
3173 * download ucode/PCM
3174 * let ucode run to suspended
3175 * download ucode inits
3176 * config other core registers
3177 * init dma
3178 */
3179static void brcms_b_coreinit(struct brcms_c_info *wlc)
3180{
3181 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08003182 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003183 u32 sflags;
Arend van Spriel16d28122011-12-08 15:06:51 -08003184 u32 bcnint_us;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003185 uint i = 0;
3186 bool fifosz_fixup = false;
3187 int err = 0;
3188 u16 buf[NFIFO];
3189 struct wiphy *wiphy = wlc->wiphy;
3190 struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
3191
Arend van Spriel5b435de2011-10-05 13:19:03 +02003192 BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
3193
3194 /* reset PSM */
3195 brcms_b_mctrl(wlc_hw, ~0, (MCTL_IHR_EN | MCTL_PSM_JMP_0 | MCTL_WAKE));
3196
3197 brcms_ucode_download(wlc_hw);
3198 /*
3199 * FIFOSZ fixup. driver wants to controls the fifo allocation.
3200 */
3201 fifosz_fixup = true;
3202
3203 /* let the PSM run to the suspended state, set mode to BSS STA */
Arend van Spriel16d28122011-12-08 15:06:51 -08003204 bcma_write32(core, D11REGOFFS(macintstatus), -1);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003205 brcms_b_mctrl(wlc_hw, ~0,
3206 (MCTL_IHR_EN | MCTL_INFRA | MCTL_PSM_RUN | MCTL_WAKE));
3207
3208 /* wait for ucode to self-suspend after auto-init */
Arend van Spriel16d28122011-12-08 15:06:51 -08003209 SPINWAIT(((bcma_read32(core, D11REGOFFS(macintstatus)) &
3210 MI_MACSSPNDD) == 0), 1000 * 1000);
3211 if ((bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD) == 0)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003212 wiphy_err(wiphy, "wl%d: wlc_coreinit: ucode did not self-"
3213 "suspend!\n", wlc_hw->unit);
3214
3215 brcms_c_gpio_init(wlc);
3216
Arend van Spriela8779e42011-12-08 15:06:58 -08003217 sflags = bcma_aread32(core, BCMA_IOST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003218
3219 if (D11REV_IS(wlc_hw->corerev, 23)) {
3220 if (BRCMS_ISNPHY(wlc_hw->band))
3221 brcms_c_write_inits(wlc_hw, ucode->d11n0initvals16);
3222 else
3223 wiphy_err(wiphy, "%s: wl%d: unsupported phy in corerev"
3224 " %d\n", __func__, wlc_hw->unit,
3225 wlc_hw->corerev);
3226 } else if (D11REV_IS(wlc_hw->corerev, 24)) {
3227 if (BRCMS_ISLCNPHY(wlc_hw->band))
3228 brcms_c_write_inits(wlc_hw, ucode->d11lcn0initvals24);
3229 else
3230 wiphy_err(wiphy, "%s: wl%d: unsupported phy in corerev"
3231 " %d\n", __func__, wlc_hw->unit,
3232 wlc_hw->corerev);
3233 } else {
3234 wiphy_err(wiphy, "%s: wl%d: unsupported corerev %d\n",
3235 __func__, wlc_hw->unit, wlc_hw->corerev);
3236 }
3237
3238 /* For old ucode, txfifo sizes needs to be modified(increased) */
Joe Perches23677ce2012-02-09 11:17:23 +00003239 if (fifosz_fixup)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003240 brcms_b_corerev_fifofixup(wlc_hw);
3241
3242 /* check txfifo allocations match between ucode and driver */
3243 buf[TX_AC_BE_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE0);
3244 if (buf[TX_AC_BE_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]) {
3245 i = TX_AC_BE_FIFO;
3246 err = -1;
3247 }
3248 buf[TX_AC_VI_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE1);
3249 if (buf[TX_AC_VI_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]) {
3250 i = TX_AC_VI_FIFO;
3251 err = -1;
3252 }
3253 buf[TX_AC_BK_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE2);
3254 buf[TX_AC_VO_FIFO] = (buf[TX_AC_BK_FIFO] >> 8) & 0xff;
3255 buf[TX_AC_BK_FIFO] &= 0xff;
3256 if (buf[TX_AC_BK_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BK_FIFO]) {
3257 i = TX_AC_BK_FIFO;
3258 err = -1;
3259 }
3260 if (buf[TX_AC_VO_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO]) {
3261 i = TX_AC_VO_FIFO;
3262 err = -1;
3263 }
3264 buf[TX_BCMC_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE3);
3265 buf[TX_ATIM_FIFO] = (buf[TX_BCMC_FIFO] >> 8) & 0xff;
3266 buf[TX_BCMC_FIFO] &= 0xff;
3267 if (buf[TX_BCMC_FIFO] != wlc_hw->xmtfifo_sz[TX_BCMC_FIFO]) {
3268 i = TX_BCMC_FIFO;
3269 err = -1;
3270 }
3271 if (buf[TX_ATIM_FIFO] != wlc_hw->xmtfifo_sz[TX_ATIM_FIFO]) {
3272 i = TX_ATIM_FIFO;
3273 err = -1;
3274 }
3275 if (err != 0)
3276 wiphy_err(wiphy, "wlc_coreinit: txfifo mismatch: ucode size %d"
3277 " driver size %d index %d\n", buf[i],
3278 wlc_hw->xmtfifo_sz[i], i);
3279
3280 /* make sure we can still talk to the mac */
Arend van Spriel16d28122011-12-08 15:06:51 -08003281 WARN_ON(bcma_read32(core, D11REGOFFS(maccontrol)) == 0xffffffff);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003282
3283 /* band-specific inits done by wlc_bsinit() */
3284
3285 /* Set up frame burst size and antenna swap threshold init values */
3286 brcms_b_write_shm(wlc_hw, M_MBURST_SIZE, MAXTXFRAMEBURST);
3287 brcms_b_write_shm(wlc_hw, M_MAX_ANTCNT, ANTCNT);
3288
3289 /* enable one rx interrupt per received frame */
Arend van Spriel16d28122011-12-08 15:06:51 -08003290 bcma_write32(core, D11REGOFFS(intrcvlazy[0]), (1 << IRL_FC_SHIFT));
Arend van Spriel5b435de2011-10-05 13:19:03 +02003291
3292 /* set the station mode (BSS STA) */
3293 brcms_b_mctrl(wlc_hw,
3294 (MCTL_INFRA | MCTL_DISCARD_PMQ | MCTL_AP),
3295 (MCTL_INFRA | MCTL_DISCARD_PMQ));
3296
3297 /* set up Beacon interval */
3298 bcnint_us = 0x8000 << 10;
Arend van Spriel16d28122011-12-08 15:06:51 -08003299 bcma_write32(core, D11REGOFFS(tsf_cfprep),
3300 (bcnint_us << CFPREP_CBI_SHIFT));
3301 bcma_write32(core, D11REGOFFS(tsf_cfpstart), bcnint_us);
3302 bcma_write32(core, D11REGOFFS(macintstatus), MI_GP1);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003303
3304 /* write interrupt mask */
Arend van Spriel16d28122011-12-08 15:06:51 -08003305 bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intmask),
3306 DEF_RXINTMASK);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003307
3308 /* allow the MAC to control the PHY clock (dynamic on/off) */
3309 brcms_b_macphyclk_set(wlc_hw, ON);
3310
3311 /* program dynamic clock control fast powerup delay register */
3312 wlc->fastpwrup_dly = ai_clkctl_fast_pwrup_delay(wlc_hw->sih);
Arend van Spriel16d28122011-12-08 15:06:51 -08003313 bcma_write16(core, D11REGOFFS(scc_fastpwrup_dly), wlc->fastpwrup_dly);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003314
3315 /* tell the ucode the corerev */
3316 brcms_b_write_shm(wlc_hw, M_MACHW_VER, (u16) wlc_hw->corerev);
3317
3318 /* tell the ucode MAC capabilities */
3319 brcms_b_write_shm(wlc_hw, M_MACHW_CAP_L,
3320 (u16) (wlc_hw->machwcap & 0xffff));
3321 brcms_b_write_shm(wlc_hw, M_MACHW_CAP_H,
3322 (u16) ((wlc_hw->
3323 machwcap >> 16) & 0xffff));
3324
3325 /* write retry limits to SCR, this done after PSM init */
Arend van Spriel16d28122011-12-08 15:06:51 -08003326 bcma_write32(core, D11REGOFFS(objaddr),
3327 OBJADDR_SCR_SEL | S_DOT11_SRC_LMT);
3328 (void)bcma_read32(core, D11REGOFFS(objaddr));
3329 bcma_write32(core, D11REGOFFS(objdata), wlc_hw->SRL);
3330 bcma_write32(core, D11REGOFFS(objaddr),
3331 OBJADDR_SCR_SEL | S_DOT11_LRC_LMT);
3332 (void)bcma_read32(core, D11REGOFFS(objaddr));
3333 bcma_write32(core, D11REGOFFS(objdata), wlc_hw->LRL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003334
3335 /* write rate fallback retry limits */
3336 brcms_b_write_shm(wlc_hw, M_SFRMTXCNTFBRTHSD, wlc_hw->SFBL);
3337 brcms_b_write_shm(wlc_hw, M_LFRMTXCNTFBRTHSD, wlc_hw->LFBL);
3338
Arend van Spriel16d28122011-12-08 15:06:51 -08003339 bcma_mask16(core, D11REGOFFS(ifs_ctl), 0x0FFF);
3340 bcma_write16(core, D11REGOFFS(ifs_aifsn), EDCF_AIFSN_MIN);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003341
3342 /* init the tx dma engines */
3343 for (i = 0; i < NFIFO; i++) {
3344 if (wlc_hw->di[i])
3345 dma_txinit(wlc_hw->di[i]);
3346 }
3347
3348 /* init the rx dma engine(s) and post receive buffers */
3349 dma_rxinit(wlc_hw->di[RX_FIFO]);
3350 dma_rxfill(wlc_hw->di[RX_FIFO]);
3351}
3352
3353void
Roland Vossena8bc4912011-10-21 16:16:25 +02003354static brcms_b_init(struct brcms_hardware *wlc_hw, u16 chanspec) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02003355 u32 macintmask;
3356 bool fastclk;
3357 struct brcms_c_info *wlc = wlc_hw->wlc;
3358
3359 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
3360
3361 /* request FAST clock if not on */
3362 fastclk = wlc_hw->forcefastclk;
3363 if (!fastclk)
3364 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
3365
3366 /* disable interrupts */
3367 macintmask = brcms_intrsoff(wlc->wl);
3368
3369 /* set up the specified band and chanspec */
3370 brcms_c_setxband(wlc_hw, chspec_bandunit(chanspec));
3371 wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec);
3372
3373 /* do one-time phy inits and calibration */
3374 wlc_phy_cal_init(wlc_hw->band->pi);
3375
3376 /* core-specific initialization */
3377 brcms_b_coreinit(wlc);
3378
Arend van Spriel5b435de2011-10-05 13:19:03 +02003379 /* band-specific inits */
3380 brcms_b_bsinit(wlc, chanspec);
3381
3382 /* restore macintmask */
3383 brcms_intrsrestore(wlc->wl, macintmask);
3384
3385 /* seed wake_override with BRCMS_WAKE_OVERRIDE_MACSUSPEND since the mac
3386 * is suspended and brcms_c_enable_mac() will clear this override bit.
3387 */
3388 mboolset(wlc_hw->wake_override, BRCMS_WAKE_OVERRIDE_MACSUSPEND);
3389
3390 /*
3391 * initialize mac_suspend_depth to 1 to match ucode
3392 * initial suspended state
3393 */
3394 wlc_hw->mac_suspend_depth = 1;
3395
3396 /* restore the clk */
3397 if (!fastclk)
3398 brcms_b_clkctl_clk(wlc_hw, CLK_DYNAMIC);
3399}
3400
3401static void brcms_c_set_phy_chanspec(struct brcms_c_info *wlc,
3402 u16 chanspec)
3403{
3404 /* Save our copy of the chanspec */
3405 wlc->chanspec = chanspec;
3406
3407 /* Set the chanspec and power limits for this locale */
3408 brcms_c_channel_set_chanspec(wlc->cmi, chanspec, BRCMS_TXPWR_MAX);
3409
3410 if (wlc->stf->ss_algosel_auto)
3411 brcms_c_stf_ss_algo_channel_get(wlc, &wlc->stf->ss_algo_channel,
3412 chanspec);
3413
3414 brcms_c_stf_ss_update(wlc, wlc->band);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003415}
Arend van Spriel5b435de2011-10-05 13:19:03 +02003416
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003417static void
3418brcms_default_rateset(struct brcms_c_info *wlc, struct brcms_c_rateset *rs)
3419{
3420 brcms_c_rateset_default(rs, NULL, wlc->band->phytype,
3421 wlc->band->bandtype, false, BRCMS_RATE_MASK_FULL,
3422 (bool) (wlc->pub->_n_enab & SUPPORT_11N),
3423 brcms_chspec_bw(wlc->default_bss->chanspec),
3424 wlc->stf->txstreams);
3425}
3426
3427/* derive wlc->band->basic_rate[] table from 'rateset' */
3428static void brcms_c_rate_lookup_init(struct brcms_c_info *wlc,
3429 struct brcms_c_rateset *rateset)
3430{
3431 u8 rate;
3432 u8 mandatory;
3433 u8 cck_basic = 0;
3434 u8 ofdm_basic = 0;
3435 u8 *br = wlc->band->basic_rate;
3436 uint i;
3437
3438 /* incoming rates are in 500kbps units as in 802.11 Supported Rates */
3439 memset(br, 0, BRCM_MAXRATE + 1);
3440
3441 /* For each basic rate in the rates list, make an entry in the
3442 * best basic lookup.
3443 */
3444 for (i = 0; i < rateset->count; i++) {
3445 /* only make an entry for a basic rate */
3446 if (!(rateset->rates[i] & BRCMS_RATE_FLAG))
3447 continue;
3448
3449 /* mask off basic bit */
3450 rate = (rateset->rates[i] & BRCMS_RATE_MASK);
3451
3452 if (rate > BRCM_MAXRATE) {
3453 wiphy_err(wlc->wiphy, "brcms_c_rate_lookup_init: "
3454 "invalid rate 0x%X in rate set\n",
3455 rateset->rates[i]);
3456 continue;
3457 }
3458
3459 br[rate] = rate;
3460 }
3461
3462 /* The rate lookup table now has non-zero entries for each
3463 * basic rate, equal to the basic rate: br[basicN] = basicN
3464 *
3465 * To look up the best basic rate corresponding to any
3466 * particular rate, code can use the basic_rate table
3467 * like this
3468 *
3469 * basic_rate = wlc->band->basic_rate[tx_rate]
3470 *
3471 * Make sure there is a best basic rate entry for
3472 * every rate by walking up the table from low rates
3473 * to high, filling in holes in the lookup table
3474 */
3475
3476 for (i = 0; i < wlc->band->hw_rateset.count; i++) {
3477 rate = wlc->band->hw_rateset.rates[i];
3478
3479 if (br[rate] != 0) {
3480 /* This rate is a basic rate.
3481 * Keep track of the best basic rate so far by
3482 * modulation type.
3483 */
3484 if (is_ofdm_rate(rate))
3485 ofdm_basic = rate;
3486 else
3487 cck_basic = rate;
3488
3489 continue;
3490 }
3491
3492 /* This rate is not a basic rate so figure out the
3493 * best basic rate less than this rate and fill in
3494 * the hole in the table
3495 */
3496
3497 br[rate] = is_ofdm_rate(rate) ? ofdm_basic : cck_basic;
3498
3499 if (br[rate] != 0)
3500 continue;
3501
3502 if (is_ofdm_rate(rate)) {
3503 /*
3504 * In 11g and 11a, the OFDM mandatory rates
3505 * are 6, 12, and 24 Mbps
3506 */
3507 if (rate >= BRCM_RATE_24M)
3508 mandatory = BRCM_RATE_24M;
3509 else if (rate >= BRCM_RATE_12M)
3510 mandatory = BRCM_RATE_12M;
3511 else
3512 mandatory = BRCM_RATE_6M;
3513 } else {
3514 /* In 11b, all CCK rates are mandatory 1 - 11 Mbps */
3515 mandatory = rate;
3516 }
3517
3518 br[rate] = mandatory;
3519 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003520}
3521
3522static void brcms_c_bandinit_ordered(struct brcms_c_info *wlc,
3523 u16 chanspec)
3524{
3525 struct brcms_c_rateset default_rateset;
3526 uint parkband;
3527 uint i, band_order[2];
3528
3529 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
3530 /*
3531 * We might have been bandlocked during down and the chip
3532 * power-cycled (hibernate). Figure out the right band to park on
3533 */
3534 if (wlc->bandlocked || wlc->pub->_nbands == 1) {
3535 /* updated in brcms_c_bandlock() */
3536 parkband = wlc->band->bandunit;
3537 band_order[0] = band_order[1] = parkband;
3538 } else {
3539 /* park on the band of the specified chanspec */
3540 parkband = chspec_bandunit(chanspec);
3541
3542 /* order so that parkband initialize last */
3543 band_order[0] = parkband ^ 1;
3544 band_order[1] = parkband;
3545 }
3546
3547 /* make each band operational, software state init */
3548 for (i = 0; i < wlc->pub->_nbands; i++) {
3549 uint j = band_order[i];
3550
3551 wlc->band = wlc->bandstate[j];
3552
3553 brcms_default_rateset(wlc, &default_rateset);
3554
3555 /* fill in hw_rate */
3556 brcms_c_rateset_filter(&default_rateset, &wlc->band->hw_rateset,
3557 false, BRCMS_RATES_CCK_OFDM, BRCMS_RATE_MASK,
3558 (bool) (wlc->pub->_n_enab & SUPPORT_11N));
3559
3560 /* init basic rate lookup */
3561 brcms_c_rate_lookup_init(wlc, &default_rateset);
3562 }
3563
3564 /* sync up phy/radio chanspec */
3565 brcms_c_set_phy_chanspec(wlc, chanspec);
3566}
3567
Alwin Beukers02a588a2011-11-10 20:30:28 +01003568/*
Alwin Beukersbe667662011-11-22 17:21:43 -08003569 * Set or clear filtering related maccontrol bits based on
3570 * specified filter flags
Alwin Beukers02a588a2011-11-10 20:30:28 +01003571 */
Alwin Beukersbe667662011-11-22 17:21:43 -08003572void brcms_c_mac_promisc(struct brcms_c_info *wlc, uint filter_flags)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003573{
Alwin Beukers02a588a2011-11-10 20:30:28 +01003574 u32 promisc_bits = 0;
3575
Alwin Beukersbe667662011-11-22 17:21:43 -08003576 wlc->filter_flags = filter_flags;
3577
3578 if (filter_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS))
3579 promisc_bits |= MCTL_PROMISC;
3580
3581 if (filter_flags & FIF_BCN_PRBRESP_PROMISC)
Alwin Beukers02a588a2011-11-10 20:30:28 +01003582 promisc_bits |= MCTL_BCNS_PROMISC;
3583
Alwin Beukersbe667662011-11-22 17:21:43 -08003584 if (filter_flags & FIF_FCSFAIL)
3585 promisc_bits |= MCTL_KEEPBADFCS;
3586
3587 if (filter_flags & (FIF_CONTROL | FIF_PSPOLL))
3588 promisc_bits |= MCTL_KEEPCONTROL;
Alwin Beukers02a588a2011-11-10 20:30:28 +01003589
3590 brcms_b_mctrl(wlc->hw,
Alwin Beukersbe667662011-11-22 17:21:43 -08003591 MCTL_PROMISC | MCTL_BCNS_PROMISC |
3592 MCTL_KEEPCONTROL | MCTL_KEEPBADFCS,
3593 promisc_bits);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003594}
3595
Arend van Spriel5b435de2011-10-05 13:19:03 +02003596/*
3597 * ucode, hwmac update
3598 * Channel dependent updates for ucode and hw
3599 */
3600static void brcms_c_ucode_mac_upd(struct brcms_c_info *wlc)
3601{
3602 /* enable or disable any active IBSSs depending on whether or not
3603 * we are on the home channel
3604 */
3605 if (wlc->home_chanspec == wlc_phy_chanspec_get(wlc->band->pi)) {
3606 if (wlc->pub->associated) {
3607 /*
3608 * BMAC_NOTE: This is something that should be fixed
3609 * in ucode inits. I think that the ucode inits set
3610 * up the bcn templates and shm values with a bogus
3611 * beacon. This should not be done in the inits. If
3612 * ucode needs to set up a beacon for testing, the
3613 * test routines should write it down, not expect the
3614 * inits to populate a bogus beacon.
3615 */
3616 if (BRCMS_PHY_11N_CAP(wlc->band))
3617 brcms_b_write_shm(wlc->hw,
3618 M_BCN_TXTSF_OFFSET, 0);
3619 }
3620 } else {
3621 /* disable an active IBSS if we are not on the home channel */
3622 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003623}
3624
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003625static void brcms_c_write_rate_shm(struct brcms_c_info *wlc, u8 rate,
3626 u8 basic_rate)
3627{
3628 u8 phy_rate, index;
3629 u8 basic_phy_rate, basic_index;
3630 u16 dir_table, basic_table;
3631 u16 basic_ptr;
3632
3633 /* Shared memory address for the table we are reading */
3634 dir_table = is_ofdm_rate(basic_rate) ? M_RT_DIRMAP_A : M_RT_DIRMAP_B;
3635
3636 /* Shared memory address for the table we are writing */
3637 basic_table = is_ofdm_rate(rate) ? M_RT_BBRSMAP_A : M_RT_BBRSMAP_B;
3638
3639 /*
3640 * for a given rate, the LS-nibble of the PLCP SIGNAL field is
3641 * the index into the rate table.
3642 */
3643 phy_rate = rate_info[rate] & BRCMS_RATE_MASK;
3644 basic_phy_rate = rate_info[basic_rate] & BRCMS_RATE_MASK;
3645 index = phy_rate & 0xf;
3646 basic_index = basic_phy_rate & 0xf;
3647
3648 /* Find the SHM pointer to the ACK rate entry by looking in the
3649 * Direct-map Table
3650 */
3651 basic_ptr = brcms_b_read_shm(wlc->hw, (dir_table + basic_index * 2));
3652
3653 /* Update the SHM BSS-basic-rate-set mapping table with the pointer
3654 * to the correct basic rate for the given incoming rate
3655 */
3656 brcms_b_write_shm(wlc->hw, (basic_table + index * 2), basic_ptr);
3657}
3658
3659static const struct brcms_c_rateset *
3660brcms_c_rateset_get_hwrs(struct brcms_c_info *wlc)
3661{
3662 const struct brcms_c_rateset *rs_dflt;
3663
3664 if (BRCMS_PHY_11N_CAP(wlc->band)) {
3665 if (wlc->band->bandtype == BRCM_BAND_5G)
3666 rs_dflt = &ofdm_mimo_rates;
3667 else
3668 rs_dflt = &cck_ofdm_mimo_rates;
3669 } else if (wlc->band->gmode)
3670 rs_dflt = &cck_ofdm_rates;
3671 else
3672 rs_dflt = &cck_rates;
3673
3674 return rs_dflt;
3675}
3676
3677static void brcms_c_set_ratetable(struct brcms_c_info *wlc)
3678{
3679 const struct brcms_c_rateset *rs_dflt;
3680 struct brcms_c_rateset rs;
3681 u8 rate, basic_rate;
3682 uint i;
3683
3684 rs_dflt = brcms_c_rateset_get_hwrs(wlc);
3685
3686 brcms_c_rateset_copy(rs_dflt, &rs);
3687 brcms_c_rateset_mcs_upd(&rs, wlc->stf->txstreams);
3688
3689 /* walk the phy rate table and update SHM basic rate lookup table */
3690 for (i = 0; i < rs.count; i++) {
3691 rate = rs.rates[i] & BRCMS_RATE_MASK;
3692
3693 /* for a given rate brcms_basic_rate returns the rate at
3694 * which a response ACK/CTS should be sent.
3695 */
3696 basic_rate = brcms_basic_rate(wlc, rate);
3697 if (basic_rate == 0)
3698 /* This should only happen if we are using a
3699 * restricted rateset.
3700 */
3701 basic_rate = rs.rates[0] & BRCMS_RATE_MASK;
3702
3703 brcms_c_write_rate_shm(wlc, rate, basic_rate);
3704 }
3705}
3706
Arend van Spriel5b435de2011-10-05 13:19:03 +02003707/* band-specific init */
3708static void brcms_c_bsinit(struct brcms_c_info *wlc)
3709{
3710 BCMMSG(wlc->wiphy, "wl%d: bandunit %d\n",
3711 wlc->pub->unit, wlc->band->bandunit);
3712
3713 /* write ucode ACK/CTS rate table */
3714 brcms_c_set_ratetable(wlc);
3715
3716 /* update some band specific mac configuration */
3717 brcms_c_ucode_mac_upd(wlc);
3718
3719 /* init antenna selection */
3720 brcms_c_antsel_init(wlc->asi);
3721
3722}
3723
3724/* formula: IDLE_BUSY_RATIO_X_16 = (100-duty_cycle)/duty_cycle*16 */
3725static int
3726brcms_c_duty_cycle_set(struct brcms_c_info *wlc, int duty_cycle, bool isOFDM,
3727 bool writeToShm)
3728{
3729 int idle_busy_ratio_x_16 = 0;
3730 uint offset =
3731 isOFDM ? M_TX_IDLE_BUSY_RATIO_X_16_OFDM :
3732 M_TX_IDLE_BUSY_RATIO_X_16_CCK;
3733 if (duty_cycle > 100 || duty_cycle < 0) {
3734 wiphy_err(wlc->wiphy, "wl%d: duty cycle value off limit\n",
3735 wlc->pub->unit);
3736 return -EINVAL;
3737 }
3738 if (duty_cycle)
3739 idle_busy_ratio_x_16 = (100 - duty_cycle) * 16 / duty_cycle;
3740 /* Only write to shared memory when wl is up */
3741 if (writeToShm)
3742 brcms_b_write_shm(wlc->hw, offset, (u16) idle_busy_ratio_x_16);
3743
3744 if (isOFDM)
3745 wlc->tx_duty_cycle_ofdm = (u16) duty_cycle;
3746 else
3747 wlc->tx_duty_cycle_cck = (u16) duty_cycle;
3748
3749 return 0;
3750}
3751
3752/*
3753 * Initialize the base precedence map for dequeueing
3754 * from txq based on WME settings
3755 */
3756static void brcms_c_tx_prec_map_init(struct brcms_c_info *wlc)
3757{
3758 wlc->tx_prec_map = BRCMS_PREC_BMP_ALL;
3759 memset(wlc->fifo2prec_map, 0, NFIFO * sizeof(u16));
3760
3761 wlc->fifo2prec_map[TX_AC_BK_FIFO] = BRCMS_PREC_BMP_AC_BK;
3762 wlc->fifo2prec_map[TX_AC_BE_FIFO] = BRCMS_PREC_BMP_AC_BE;
3763 wlc->fifo2prec_map[TX_AC_VI_FIFO] = BRCMS_PREC_BMP_AC_VI;
3764 wlc->fifo2prec_map[TX_AC_VO_FIFO] = BRCMS_PREC_BMP_AC_VO;
3765}
3766
3767static void
3768brcms_c_txflowcontrol_signal(struct brcms_c_info *wlc,
3769 struct brcms_txq_info *qi, bool on, int prio)
3770{
3771 /* transmit flowcontrol is not yet implemented */
3772}
3773
3774static void brcms_c_txflowcontrol_reset(struct brcms_c_info *wlc)
3775{
3776 struct brcms_txq_info *qi;
3777
3778 for (qi = wlc->tx_queues; qi != NULL; qi = qi->next) {
3779 if (qi->stopped) {
3780 brcms_c_txflowcontrol_signal(wlc, qi, OFF, ALLPRIO);
3781 qi->stopped = 0;
3782 }
3783 }
3784}
3785
Arend van Spriel5b435de2011-10-05 13:19:03 +02003786/* push sw hps and wake state through hardware */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003787static void brcms_c_set_ps_ctrl(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003788{
3789 u32 v1, v2;
3790 bool hps;
3791 bool awake_before;
3792
3793 hps = brcms_c_ps_allowed(wlc);
3794
3795 BCMMSG(wlc->wiphy, "wl%d: hps %d\n", wlc->pub->unit, hps);
3796
Arend van Spriel16d28122011-12-08 15:06:51 -08003797 v1 = bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02003798 v2 = MCTL_WAKE;
3799 if (hps)
3800 v2 |= MCTL_HPS;
3801
3802 brcms_b_mctrl(wlc->hw, MCTL_WAKE | MCTL_HPS, v2);
3803
3804 awake_before = ((v1 & MCTL_WAKE) || ((v1 & MCTL_HPS) == 0));
3805
3806 if (!awake_before)
3807 brcms_b_wait_for_wake(wlc->hw);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003808}
3809
3810/*
3811 * Write this BSS config's MAC address to core.
3812 * Updates RXE match engine.
3813 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003814static int brcms_c_set_mac(struct brcms_bss_cfg *bsscfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003815{
3816 int err = 0;
3817 struct brcms_c_info *wlc = bsscfg->wlc;
3818
3819 /* enter the MAC addr into the RXE match registers */
3820 brcms_c_set_addrmatch(wlc, RCM_MAC_OFFSET, bsscfg->cur_etheraddr);
3821
3822 brcms_c_ampdu_macaddr_upd(wlc);
3823
3824 return err;
3825}
3826
3827/* Write the BSS config's BSSID address to core (set_bssid in d11procs.tcl).
3828 * Updates RXE match engine.
3829 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003830static void brcms_c_set_bssid(struct brcms_bss_cfg *bsscfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003831{
3832 /* we need to update BSSID in RXE match registers */
3833 brcms_c_set_addrmatch(bsscfg->wlc, RCM_BSSID_OFFSET, bsscfg->BSSID);
3834}
3835
3836static void brcms_b_set_shortslot(struct brcms_hardware *wlc_hw, bool shortslot)
3837{
3838 wlc_hw->shortslot = shortslot;
3839
3840 if (wlc_hw->band->bandtype == BRCM_BAND_2G && wlc_hw->up) {
3841 brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
3842 brcms_b_update_slot_timing(wlc_hw, shortslot);
3843 brcms_c_enable_mac(wlc_hw->wlc);
3844 }
3845}
3846
3847/*
3848 * Suspend the the MAC and update the slot timing
3849 * for standard 11b/g (20us slots) or shortslot 11g (9us slots).
3850 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003851static void brcms_c_switch_shortslot(struct brcms_c_info *wlc, bool shortslot)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003852{
3853 /* use the override if it is set */
3854 if (wlc->shortslot_override != BRCMS_SHORTSLOT_AUTO)
3855 shortslot = (wlc->shortslot_override == BRCMS_SHORTSLOT_ON);
3856
3857 if (wlc->shortslot == shortslot)
3858 return;
3859
3860 wlc->shortslot = shortslot;
3861
3862 brcms_b_set_shortslot(wlc->hw, shortslot);
3863}
3864
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003865static void brcms_c_set_home_chanspec(struct brcms_c_info *wlc, u16 chanspec)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003866{
3867 if (wlc->home_chanspec != chanspec) {
3868 wlc->home_chanspec = chanspec;
3869
3870 if (wlc->bsscfg->associated)
3871 wlc->bsscfg->current_bss->chanspec = chanspec;
3872 }
3873}
3874
3875void
3876brcms_b_set_chanspec(struct brcms_hardware *wlc_hw, u16 chanspec,
Roland Vossenc6c44892011-10-21 16:16:26 +02003877 bool mute_tx, struct txpwr_limits *txpwr)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003878{
3879 uint bandunit;
3880
3881 BCMMSG(wlc_hw->wlc->wiphy, "wl%d: 0x%x\n", wlc_hw->unit, chanspec);
3882
3883 wlc_hw->chanspec = chanspec;
3884
3885 /* Switch bands if necessary */
3886 if (wlc_hw->_nbands > 1) {
3887 bandunit = chspec_bandunit(chanspec);
3888 if (wlc_hw->band->bandunit != bandunit) {
3889 /* brcms_b_setband disables other bandunit,
3890 * use light band switch if not up yet
3891 */
3892 if (wlc_hw->up) {
3893 wlc_phy_chanspec_radio_set(wlc_hw->
3894 bandstate[bandunit]->
3895 pi, chanspec);
3896 brcms_b_setband(wlc_hw, bandunit, chanspec);
3897 } else {
3898 brcms_c_setxband(wlc_hw, bandunit);
3899 }
3900 }
3901 }
3902
Roland Vossenc6c44892011-10-21 16:16:26 +02003903 wlc_phy_initcal_enable(wlc_hw->band->pi, !mute_tx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003904
3905 if (!wlc_hw->up) {
3906 if (wlc_hw->clk)
3907 wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr,
3908 chanspec);
3909 wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec);
3910 } else {
3911 wlc_phy_chanspec_set(wlc_hw->band->pi, chanspec);
3912 wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr, chanspec);
3913
3914 /* Update muting of the channel */
Roland Vossenc6c44892011-10-21 16:16:26 +02003915 brcms_b_mute(wlc_hw, mute_tx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003916 }
3917}
3918
3919/* switch to and initialize new band */
3920static void brcms_c_setband(struct brcms_c_info *wlc,
3921 uint bandunit)
3922{
3923 wlc->band = wlc->bandstate[bandunit];
3924
3925 if (!wlc->pub->up)
3926 return;
3927
3928 /* wait for at least one beacon before entering sleeping state */
3929 brcms_c_set_ps_ctrl(wlc);
3930
3931 /* band-specific initializations */
3932 brcms_c_bsinit(wlc);
3933}
3934
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003935static void brcms_c_set_chanspec(struct brcms_c_info *wlc, u16 chanspec)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003936{
3937 uint bandunit;
3938 bool switchband = false;
3939 u16 old_chanspec = wlc->chanspec;
3940
3941 if (!brcms_c_valid_chanspec_db(wlc->cmi, chanspec)) {
3942 wiphy_err(wlc->wiphy, "wl%d: %s: Bad channel %d\n",
3943 wlc->pub->unit, __func__, CHSPEC_CHANNEL(chanspec));
3944 return;
3945 }
3946
3947 /* Switch bands if necessary */
3948 if (wlc->pub->_nbands > 1) {
3949 bandunit = chspec_bandunit(chanspec);
3950 if (wlc->band->bandunit != bandunit || wlc->bandinit_pending) {
3951 switchband = true;
3952 if (wlc->bandlocked) {
3953 wiphy_err(wlc->wiphy, "wl%d: %s: chspec %d "
3954 "band is locked!\n",
3955 wlc->pub->unit, __func__,
3956 CHSPEC_CHANNEL(chanspec));
3957 return;
3958 }
3959 /*
3960 * should the setband call come after the
3961 * brcms_b_chanspec() ? if the setband updates
3962 * (brcms_c_bsinit) use low level calls to inspect and
3963 * set state, the state inspected may be from the wrong
3964 * band, or the following brcms_b_set_chanspec() may
3965 * undo the work.
3966 */
3967 brcms_c_setband(wlc, bandunit);
3968 }
3969 }
3970
3971 /* sync up phy/radio chanspec */
3972 brcms_c_set_phy_chanspec(wlc, chanspec);
3973
3974 /* init antenna selection */
3975 if (brcms_chspec_bw(old_chanspec) != brcms_chspec_bw(chanspec)) {
3976 brcms_c_antsel_init(wlc->asi);
3977
3978 /* Fix the hardware rateset based on bw.
3979 * Mainly add MCS32 for 40Mhz, remove MCS 32 for 20Mhz
3980 */
3981 brcms_c_rateset_bw_mcs_filter(&wlc->band->hw_rateset,
3982 wlc->band->mimo_cap_40 ? brcms_chspec_bw(chanspec) : 0);
3983 }
3984
3985 /* update some mac configuration since chanspec changed */
3986 brcms_c_ucode_mac_upd(wlc);
3987}
3988
Arend van Spriel5b435de2011-10-05 13:19:03 +02003989/*
3990 * This function changes the phytxctl for beacon based on current
3991 * beacon ratespec AND txant setting as per this table:
3992 * ratespec CCK ant = wlc->stf->txant
3993 * OFDM ant = 3
3994 */
3995void brcms_c_beacon_phytxctl_txant_upd(struct brcms_c_info *wlc,
3996 u32 bcn_rspec)
3997{
3998 u16 phyctl;
3999 u16 phytxant = wlc->stf->phytxant;
4000 u16 mask = PHY_TXC_ANT_MASK;
4001
4002 /* for non-siso rates or default setting, use the available chains */
4003 if (BRCMS_PHY_11N_CAP(wlc->band))
4004 phytxant = brcms_c_stf_phytxchain_sel(wlc, bcn_rspec);
4005
4006 phyctl = brcms_b_read_shm(wlc->hw, M_BCN_PCTLWD);
4007 phyctl = (phyctl & ~mask) | phytxant;
4008 brcms_b_write_shm(wlc->hw, M_BCN_PCTLWD, phyctl);
4009}
4010
4011/*
4012 * centralized protection config change function to simplify debugging, no
4013 * consistency checking this should be called only on changes to avoid overhead
4014 * in periodic function
4015 */
4016void brcms_c_protection_upd(struct brcms_c_info *wlc, uint idx, int val)
4017{
4018 BCMMSG(wlc->wiphy, "idx %d, val %d\n", idx, val);
4019
4020 switch (idx) {
4021 case BRCMS_PROT_G_SPEC:
4022 wlc->protection->_g = (bool) val;
4023 break;
4024 case BRCMS_PROT_G_OVR:
4025 wlc->protection->g_override = (s8) val;
4026 break;
4027 case BRCMS_PROT_G_USER:
4028 wlc->protection->gmode_user = (u8) val;
4029 break;
4030 case BRCMS_PROT_OVERLAP:
4031 wlc->protection->overlap = (s8) val;
4032 break;
4033 case BRCMS_PROT_N_USER:
4034 wlc->protection->nmode_user = (s8) val;
4035 break;
4036 case BRCMS_PROT_N_CFG:
4037 wlc->protection->n_cfg = (s8) val;
4038 break;
4039 case BRCMS_PROT_N_CFG_OVR:
4040 wlc->protection->n_cfg_override = (s8) val;
4041 break;
4042 case BRCMS_PROT_N_NONGF:
4043 wlc->protection->nongf = (bool) val;
4044 break;
4045 case BRCMS_PROT_N_NONGF_OVR:
4046 wlc->protection->nongf_override = (s8) val;
4047 break;
4048 case BRCMS_PROT_N_PAM_OVR:
4049 wlc->protection->n_pam_override = (s8) val;
4050 break;
4051 case BRCMS_PROT_N_OBSS:
4052 wlc->protection->n_obss = (bool) val;
4053 break;
4054
4055 default:
4056 break;
4057 }
4058
4059}
4060
4061static void brcms_c_ht_update_sgi_rx(struct brcms_c_info *wlc, int val)
4062{
4063 if (wlc->pub->up) {
4064 brcms_c_update_beacon(wlc);
4065 brcms_c_update_probe_resp(wlc, true);
4066 }
4067}
4068
4069static void brcms_c_ht_update_ldpc(struct brcms_c_info *wlc, s8 val)
4070{
4071 wlc->stf->ldpc = val;
4072
4073 if (wlc->pub->up) {
4074 brcms_c_update_beacon(wlc);
4075 brcms_c_update_probe_resp(wlc, true);
4076 wlc_phy_ldpc_override_set(wlc->band->pi, (val ? true : false));
4077 }
4078}
4079
4080void brcms_c_wme_setparams(struct brcms_c_info *wlc, u16 aci,
4081 const struct ieee80211_tx_queue_params *params,
4082 bool suspend)
4083{
4084 int i;
4085 struct shm_acparams acp_shm;
4086 u16 *shm_entry;
4087
4088 /* Only apply params if the core is out of reset and has clocks */
4089 if (!wlc->clk) {
4090 wiphy_err(wlc->wiphy, "wl%d: %s : no-clock\n", wlc->pub->unit,
4091 __func__);
4092 return;
4093 }
4094
4095 memset((char *)&acp_shm, 0, sizeof(struct shm_acparams));
4096 /* fill in shm ac params struct */
4097 acp_shm.txop = params->txop;
4098 /* convert from units of 32us to us for ucode */
4099 wlc->edcf_txop[aci & 0x3] = acp_shm.txop =
4100 EDCF_TXOP2USEC(acp_shm.txop);
4101 acp_shm.aifs = (params->aifs & EDCF_AIFSN_MASK);
4102
Arend van Sprielb7eec422011-11-10 20:30:18 +01004103 if (aci == IEEE80211_AC_VI && acp_shm.txop == 0
Arend van Spriel5b435de2011-10-05 13:19:03 +02004104 && acp_shm.aifs < EDCF_AIFSN_MAX)
4105 acp_shm.aifs++;
4106
4107 if (acp_shm.aifs < EDCF_AIFSN_MIN
4108 || acp_shm.aifs > EDCF_AIFSN_MAX) {
4109 wiphy_err(wlc->wiphy, "wl%d: edcf_setparams: bad "
4110 "aifs %d\n", wlc->pub->unit, acp_shm.aifs);
4111 } else {
4112 acp_shm.cwmin = params->cw_min;
4113 acp_shm.cwmax = params->cw_max;
4114 acp_shm.cwcur = acp_shm.cwmin;
4115 acp_shm.bslots =
Arend van Spriel16d28122011-12-08 15:06:51 -08004116 bcma_read16(wlc->hw->d11core, D11REGOFFS(tsf_random)) &
4117 acp_shm.cwcur;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004118 acp_shm.reggap = acp_shm.bslots + acp_shm.aifs;
4119 /* Indicate the new params to the ucode */
4120 acp_shm.status = brcms_b_read_shm(wlc->hw, (M_EDCF_QINFO +
4121 wme_ac2fifo[aci] *
4122 M_EDCF_QLEN +
4123 M_EDCF_STATUS_OFF));
4124 acp_shm.status |= WME_STATUS_NEWAC;
4125
4126 /* Fill in shm acparam table */
4127 shm_entry = (u16 *) &acp_shm;
4128 for (i = 0; i < (int)sizeof(struct shm_acparams); i += 2)
4129 brcms_b_write_shm(wlc->hw,
4130 M_EDCF_QINFO +
4131 wme_ac2fifo[aci] * M_EDCF_QLEN + i,
4132 *shm_entry++);
4133 }
4134
4135 if (suspend) {
4136 brcms_c_suspend_mac_and_wait(wlc);
4137 brcms_c_enable_mac(wlc);
4138 }
4139}
4140
Arend van Spriel094b1992011-10-18 14:03:07 +02004141static void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004142{
4143 u16 aci;
4144 int i_ac;
4145 struct ieee80211_tx_queue_params txq_pars;
4146 static const struct edcf_acparam default_edcf_acparams[] = {
4147 {EDCF_AC_BE_ACI_STA, EDCF_AC_BE_ECW_STA, EDCF_AC_BE_TXOP_STA},
4148 {EDCF_AC_BK_ACI_STA, EDCF_AC_BK_ECW_STA, EDCF_AC_BK_TXOP_STA},
4149 {EDCF_AC_VI_ACI_STA, EDCF_AC_VI_ECW_STA, EDCF_AC_VI_TXOP_STA},
4150 {EDCF_AC_VO_ACI_STA, EDCF_AC_VO_ECW_STA, EDCF_AC_VO_TXOP_STA}
4151 }; /* ucode needs these parameters during its initialization */
4152 const struct edcf_acparam *edcf_acp = &default_edcf_acparams[0];
4153
Arend van Sprielb7eec422011-11-10 20:30:18 +01004154 for (i_ac = 0; i_ac < IEEE80211_NUM_ACS; i_ac++, edcf_acp++) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02004155 /* find out which ac this set of params applies to */
4156 aci = (edcf_acp->ACI & EDCF_ACI_MASK) >> EDCF_ACI_SHIFT;
4157
4158 /* fill in shm ac params struct */
4159 txq_pars.txop = edcf_acp->TXOP;
4160 txq_pars.aifs = edcf_acp->ACI;
4161
4162 /* CWmin = 2^(ECWmin) - 1 */
4163 txq_pars.cw_min = EDCF_ECW2CW(edcf_acp->ECW & EDCF_ECWMIN_MASK);
4164 /* CWmax = 2^(ECWmax) - 1 */
4165 txq_pars.cw_max = EDCF_ECW2CW((edcf_acp->ECW & EDCF_ECWMAX_MASK)
4166 >> EDCF_ECWMAX_SHIFT);
4167 brcms_c_wme_setparams(wlc, aci, &txq_pars, suspend);
4168 }
4169
4170 if (suspend) {
4171 brcms_c_suspend_mac_and_wait(wlc);
4172 brcms_c_enable_mac(wlc);
4173 }
4174}
4175
Arend van Spriel5b435de2011-10-05 13:19:03 +02004176static void brcms_c_radio_monitor_start(struct brcms_c_info *wlc)
4177{
4178 /* Don't start the timer if HWRADIO feature is disabled */
4179 if (wlc->radio_monitor)
4180 return;
4181
4182 wlc->radio_monitor = true;
4183 brcms_b_pllreq(wlc->hw, true, BRCMS_PLLREQ_RADIO_MON);
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004184 brcms_add_timer(wlc->radio_timer, TIMER_INTERVAL_RADIOCHK, true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004185}
4186
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02004187static bool brcms_c_radio_monitor_stop(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004188{
4189 if (!wlc->radio_monitor)
4190 return true;
4191
4192 wlc->radio_monitor = false;
4193 brcms_b_pllreq(wlc->hw, false, BRCMS_PLLREQ_RADIO_MON);
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004194 return brcms_del_timer(wlc->radio_timer);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004195}
4196
4197/* read hwdisable state and propagate to wlc flag */
4198static void brcms_c_radio_hwdisable_upd(struct brcms_c_info *wlc)
4199{
4200 if (wlc->pub->hw_off)
4201 return;
4202
4203 if (brcms_b_radio_read_hwdisabled(wlc->hw))
4204 mboolset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE);
4205 else
4206 mboolclr(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE);
4207}
4208
Arend van Spriel5b435de2011-10-05 13:19:03 +02004209/* update hwradio status and return it */
4210bool brcms_c_check_radio_disabled(struct brcms_c_info *wlc)
4211{
4212 brcms_c_radio_hwdisable_upd(wlc);
4213
4214 return mboolisset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE) ?
4215 true : false;
4216}
4217
4218/* periodical query hw radio button while driver is "down" */
4219static void brcms_c_radio_timer(void *arg)
4220{
4221 struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4222
4223 if (brcms_deviceremoved(wlc)) {
4224 wiphy_err(wlc->wiphy, "wl%d: %s: dead chip\n", wlc->pub->unit,
4225 __func__);
4226 brcms_down(wlc->wl);
4227 return;
4228 }
4229
Arend van Spriel5b435de2011-10-05 13:19:03 +02004230 brcms_c_radio_hwdisable_upd(wlc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004231}
4232
4233/* common low-level watchdog code */
4234static void brcms_b_watchdog(void *arg)
4235{
4236 struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4237 struct brcms_hardware *wlc_hw = wlc->hw;
4238
4239 BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
4240
4241 if (!wlc_hw->up)
4242 return;
4243
4244 /* increment second count */
4245 wlc_hw->now++;
4246
4247 /* Check for FIFO error interrupts */
4248 brcms_b_fifoerrors(wlc_hw);
4249
4250 /* make sure RX dma has buffers */
4251 dma_rxfill(wlc->hw->di[RX_FIFO]);
4252
4253 wlc_phy_watchdog(wlc_hw->band->pi);
4254}
4255
4256/* common watchdog code */
4257static void brcms_c_watchdog(void *arg)
4258{
4259 struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4260
4261 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
4262
4263 if (!wlc->pub->up)
4264 return;
4265
4266 if (brcms_deviceremoved(wlc)) {
4267 wiphy_err(wlc->wiphy, "wl%d: %s: dead chip\n", wlc->pub->unit,
4268 __func__);
4269 brcms_down(wlc->wl);
4270 return;
4271 }
4272
4273 /* increment second count */
4274 wlc->pub->now++;
4275
Arend van Spriel5b435de2011-10-05 13:19:03 +02004276 brcms_c_radio_hwdisable_upd(wlc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004277 /* if radio is disable, driver may be down, quit here */
4278 if (wlc->pub->radio_disabled)
4279 return;
4280
4281 brcms_b_watchdog(wlc);
4282
4283 /*
4284 * occasionally sample mac stat counters to
4285 * detect 16-bit counter wrap
4286 */
4287 if ((wlc->pub->now % SW_TIMER_MAC_STAT_UPD) == 0)
4288 brcms_c_statsupd(wlc);
4289
4290 if (BRCMS_ISNPHY(wlc->band) &&
4291 ((wlc->pub->now - wlc->tempsense_lasttime) >=
4292 BRCMS_TEMPSENSE_PERIOD)) {
4293 wlc->tempsense_lasttime = wlc->pub->now;
4294 brcms_c_tempsense_upd(wlc);
4295 }
4296}
4297
4298static void brcms_c_watchdog_by_timer(void *arg)
4299{
4300 brcms_c_watchdog(arg);
4301}
4302
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02004303static bool brcms_c_timers_init(struct brcms_c_info *wlc, int unit)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004304{
4305 wlc->wdtimer = brcms_init_timer(wlc->wl, brcms_c_watchdog_by_timer,
4306 wlc, "watchdog");
4307 if (!wlc->wdtimer) {
4308 wiphy_err(wlc->wiphy, "wl%d: wl_init_timer for wdtimer "
4309 "failed\n", unit);
4310 goto fail;
4311 }
4312
4313 wlc->radio_timer = brcms_init_timer(wlc->wl, brcms_c_radio_timer,
4314 wlc, "radio");
4315 if (!wlc->radio_timer) {
4316 wiphy_err(wlc->wiphy, "wl%d: wl_init_timer for radio_timer "
4317 "failed\n", unit);
4318 goto fail;
4319 }
4320
4321 return true;
4322
4323 fail:
4324 return false;
4325}
4326
4327/*
4328 * Initialize brcms_c_info default values ...
4329 * may get overrides later in this function
4330 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02004331static void brcms_c_info_init(struct brcms_c_info *wlc, int unit)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004332{
4333 int i;
4334
4335 /* Save our copy of the chanspec */
4336 wlc->chanspec = ch20mhz_chspec(1);
4337
4338 /* various 802.11g modes */
4339 wlc->shortslot = false;
4340 wlc->shortslot_override = BRCMS_SHORTSLOT_AUTO;
4341
4342 brcms_c_protection_upd(wlc, BRCMS_PROT_G_OVR, BRCMS_PROTECTION_AUTO);
4343 brcms_c_protection_upd(wlc, BRCMS_PROT_G_SPEC, false);
4344
4345 brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG_OVR,
4346 BRCMS_PROTECTION_AUTO);
4347 brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG, BRCMS_N_PROTECTION_OFF);
4348 brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF_OVR,
4349 BRCMS_PROTECTION_AUTO);
4350 brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF, false);
4351 brcms_c_protection_upd(wlc, BRCMS_PROT_N_PAM_OVR, AUTO);
4352
4353 brcms_c_protection_upd(wlc, BRCMS_PROT_OVERLAP,
4354 BRCMS_PROTECTION_CTL_OVERLAP);
4355
4356 /* 802.11g draft 4.0 NonERP elt advertisement */
4357 wlc->include_legacy_erp = true;
4358
4359 wlc->stf->ant_rx_ovr = ANT_RX_DIV_DEF;
4360 wlc->stf->txant = ANT_TX_DEF;
4361
4362 wlc->prb_resp_timeout = BRCMS_PRB_RESP_TIMEOUT;
4363
4364 wlc->usr_fragthresh = DOT11_DEFAULT_FRAG_LEN;
4365 for (i = 0; i < NFIFO; i++)
4366 wlc->fragthresh[i] = DOT11_DEFAULT_FRAG_LEN;
4367 wlc->RTSThresh = DOT11_DEFAULT_RTS_LEN;
4368
4369 /* default rate fallback retry limits */
4370 wlc->SFBL = RETRY_SHORT_FB;
4371 wlc->LFBL = RETRY_LONG_FB;
4372
4373 /* default mac retry limits */
4374 wlc->SRL = RETRY_SHORT_DEF;
4375 wlc->LRL = RETRY_LONG_DEF;
4376
4377 /* WME QoS mode is Auto by default */
4378 wlc->pub->_ampdu = AMPDU_AGG_HOST;
4379 wlc->pub->bcmerror = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004380}
4381
4382static uint brcms_c_attach_module(struct brcms_c_info *wlc)
4383{
4384 uint err = 0;
4385 uint unit;
4386 unit = wlc->pub->unit;
4387
4388 wlc->asi = brcms_c_antsel_attach(wlc);
4389 if (wlc->asi == NULL) {
4390 wiphy_err(wlc->wiphy, "wl%d: attach: antsel_attach "
4391 "failed\n", unit);
4392 err = 44;
4393 goto fail;
4394 }
4395
4396 wlc->ampdu = brcms_c_ampdu_attach(wlc);
4397 if (wlc->ampdu == NULL) {
4398 wiphy_err(wlc->wiphy, "wl%d: attach: ampdu_attach "
4399 "failed\n", unit);
4400 err = 50;
4401 goto fail;
4402 }
4403
4404 if ((brcms_c_stf_attach(wlc) != 0)) {
4405 wiphy_err(wlc->wiphy, "wl%d: attach: stf_attach "
4406 "failed\n", unit);
4407 err = 68;
4408 goto fail;
4409 }
4410 fail:
4411 return err;
4412}
4413
4414struct brcms_pub *brcms_c_pub(struct brcms_c_info *wlc)
4415{
4416 return wlc->pub;
4417}
4418
4419/* low level attach
4420 * run backplane attach, init nvram
4421 * run phy attach
4422 * initialize software state for each core and band
4423 * put the whole chip in reset(driver down state), no clock
4424 */
Arend van Sprielb63337a2011-12-08 15:06:47 -08004425static int brcms_b_attach(struct brcms_c_info *wlc, struct bcma_device *core,
4426 uint unit, bool piomode)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004427{
4428 struct brcms_hardware *wlc_hw;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004429 uint err = 0;
4430 uint j;
4431 bool wme = false;
4432 struct shared_phy_params sha_params;
4433 struct wiphy *wiphy = wlc->wiphy;
Arend van Sprielb63337a2011-12-08 15:06:47 -08004434 struct pci_dev *pcidev = core->bus->host_pci;
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004435 struct ssb_sprom *sprom = &core->bus->sprom;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004436
Arend van Sprielb63337a2011-12-08 15:06:47 -08004437 BCMMSG(wlc->wiphy, "wl%d: vendor 0x%x device 0x%x\n", unit,
4438 pcidev->vendor,
4439 pcidev->device);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004440
4441 wme = true;
4442
4443 wlc_hw = wlc->hw;
4444 wlc_hw->wlc = wlc;
4445 wlc_hw->unit = unit;
4446 wlc_hw->band = wlc_hw->bandstate[0];
4447 wlc_hw->_piomode = piomode;
4448
4449 /* populate struct brcms_hardware with default values */
4450 brcms_b_info_init(wlc_hw);
4451
4452 /*
4453 * Do the hardware portion of the attach. Also initialize software
4454 * state that depends on the particular hardware we are running.
4455 */
Arend van Spriel28a53442011-12-08 15:06:49 -08004456 wlc_hw->sih = ai_attach(core->bus);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004457 if (wlc_hw->sih == NULL) {
4458 wiphy_err(wiphy, "wl%d: brcms_b_attach: si_attach failed\n",
4459 unit);
4460 err = 11;
4461 goto fail;
4462 }
4463
4464 /* verify again the device is supported */
Arend van Sprielb63337a2011-12-08 15:06:47 -08004465 if (!brcms_c_chipmatch(pcidev->vendor, pcidev->device)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02004466 wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported "
4467 "vendor/device (0x%x/0x%x)\n",
Arend van Sprielb63337a2011-12-08 15:06:47 -08004468 unit, pcidev->vendor, pcidev->device);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004469 err = 12;
4470 goto fail;
4471 }
4472
Arend van Sprielb63337a2011-12-08 15:06:47 -08004473 wlc_hw->vendorid = pcidev->vendor;
4474 wlc_hw->deviceid = pcidev->device;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004475
Arend van Spriel16d28122011-12-08 15:06:51 -08004476 wlc_hw->d11core = core;
4477 wlc_hw->corerev = core->id.rev;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004478
4479 /* validate chip, chiprev and corerev */
4480 if (!brcms_c_isgoodchip(wlc_hw)) {
4481 err = 13;
4482 goto fail;
4483 }
4484
4485 /* initialize power control registers */
4486 ai_clkctl_init(wlc_hw->sih);
4487
4488 /* request fastclock and force fastclock for the rest of attach
4489 * bring the d11 core out of reset.
4490 * For PMU chips, the first wlc_clkctl_clk is no-op since core-clk
4491 * is still false; But it will be called again inside wlc_corereset,
4492 * after d11 is out of reset.
4493 */
4494 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
4495 brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
4496
4497 if (!brcms_b_validate_chip_access(wlc_hw)) {
4498 wiphy_err(wiphy, "wl%d: brcms_b_attach: validate_chip_access "
4499 "failed\n", unit);
4500 err = 14;
4501 goto fail;
4502 }
4503
4504 /* get the board rev, used just below */
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004505 j = sprom->board_rev;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004506 /* promote srom boardrev of 0xFF to 1 */
4507 if (j == BOARDREV_PROMOTABLE)
4508 j = BOARDREV_PROMOTED;
4509 wlc_hw->boardrev = (u16) j;
4510 if (!brcms_c_validboardtype(wlc_hw)) {
4511 wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported Broadcom "
Arend van Sprielb2ffec42011-12-08 15:06:45 -08004512 "board type (0x%x)" " or revision level (0x%x)\n",
4513 unit, ai_get_boardtype(wlc_hw->sih),
4514 wlc_hw->boardrev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004515 err = 15;
4516 goto fail;
4517 }
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004518 wlc_hw->sromrev = sprom->revision;
4519 wlc_hw->boardflags = sprom->boardflags_lo + (sprom->boardflags_hi << 16);
4520 wlc_hw->boardflags2 = sprom->boardflags2_lo + (sprom->boardflags2_hi << 16);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004521
4522 if (wlc_hw->boardflags & BFL_NOPLLDOWN)
4523 brcms_b_pllreq(wlc_hw, true, BRCMS_PLLREQ_SHARED);
4524
4525 /* check device id(srom, nvram etc.) to set bands */
4526 if (wlc_hw->deviceid == BCM43224_D11N_ID ||
4527 wlc_hw->deviceid == BCM43224_D11N_ID_VEN1)
4528 /* Dualband boards */
4529 wlc_hw->_nbands = 2;
4530 else
4531 wlc_hw->_nbands = 1;
4532
Arend van Sprielb2ffec42011-12-08 15:06:45 -08004533 if ((ai_get_chip_id(wlc_hw->sih) == BCM43225_CHIP_ID))
Arend van Spriel5b435de2011-10-05 13:19:03 +02004534 wlc_hw->_nbands = 1;
4535
4536 /* BMAC_NOTE: remove init of pub values when brcms_c_attach()
4537 * unconditionally does the init of these values
4538 */
4539 wlc->vendorid = wlc_hw->vendorid;
4540 wlc->deviceid = wlc_hw->deviceid;
4541 wlc->pub->sih = wlc_hw->sih;
4542 wlc->pub->corerev = wlc_hw->corerev;
4543 wlc->pub->sromrev = wlc_hw->sromrev;
4544 wlc->pub->boardrev = wlc_hw->boardrev;
4545 wlc->pub->boardflags = wlc_hw->boardflags;
4546 wlc->pub->boardflags2 = wlc_hw->boardflags2;
4547 wlc->pub->_nbands = wlc_hw->_nbands;
4548
4549 wlc_hw->physhim = wlc_phy_shim_attach(wlc_hw, wlc->wl, wlc);
4550
4551 if (wlc_hw->physhim == NULL) {
4552 wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_shim_attach "
4553 "failed\n", unit);
4554 err = 25;
4555 goto fail;
4556 }
4557
4558 /* pass all the parameters to wlc_phy_shared_attach in one struct */
4559 sha_params.sih = wlc_hw->sih;
4560 sha_params.physhim = wlc_hw->physhim;
4561 sha_params.unit = unit;
4562 sha_params.corerev = wlc_hw->corerev;
4563 sha_params.vid = wlc_hw->vendorid;
4564 sha_params.did = wlc_hw->deviceid;
Arend van Sprielb2ffec42011-12-08 15:06:45 -08004565 sha_params.chip = ai_get_chip_id(wlc_hw->sih);
4566 sha_params.chiprev = ai_get_chiprev(wlc_hw->sih);
4567 sha_params.chippkg = ai_get_chippkg(wlc_hw->sih);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004568 sha_params.sromrev = wlc_hw->sromrev;
Arend van Sprielb2ffec42011-12-08 15:06:45 -08004569 sha_params.boardtype = ai_get_boardtype(wlc_hw->sih);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004570 sha_params.boardrev = wlc_hw->boardrev;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004571 sha_params.boardflags = wlc_hw->boardflags;
4572 sha_params.boardflags2 = wlc_hw->boardflags2;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004573
4574 /* alloc and save pointer to shared phy state area */
4575 wlc_hw->phy_sh = wlc_phy_shared_attach(&sha_params);
4576 if (!wlc_hw->phy_sh) {
4577 err = 16;
4578 goto fail;
4579 }
4580
4581 /* initialize software state for each core and band */
4582 for (j = 0; j < wlc_hw->_nbands; j++) {
4583 /*
4584 * band0 is always 2.4Ghz
4585 * band1, if present, is 5Ghz
4586 */
4587
4588 brcms_c_setxband(wlc_hw, j);
4589
4590 wlc_hw->band->bandunit = j;
4591 wlc_hw->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G;
4592 wlc->band->bandunit = j;
4593 wlc->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G;
Arend van Spriel3b758a62011-12-12 15:15:09 -08004594 wlc->core->coreidx = core->core_index;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004595
Arend van Spriel16d28122011-12-08 15:06:51 -08004596 wlc_hw->machwcap = bcma_read32(core, D11REGOFFS(machwcap));
Arend van Spriel5b435de2011-10-05 13:19:03 +02004597 wlc_hw->machwcap_backup = wlc_hw->machwcap;
4598
4599 /* init tx fifo size */
4600 wlc_hw->xmtfifo_sz =
4601 xmtfifo_sz[(wlc_hw->corerev - XMTFIFOTBL_STARTREV)];
4602
4603 /* Get a phy for this band */
4604 wlc_hw->band->pi =
Arend van Spriel4b006b12011-12-08 15:06:54 -08004605 wlc_phy_attach(wlc_hw->phy_sh, core,
Arend van Spriel5b435de2011-10-05 13:19:03 +02004606 wlc_hw->band->bandtype,
4607 wlc->wiphy);
4608 if (wlc_hw->band->pi == NULL) {
4609 wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_"
4610 "attach failed\n", unit);
4611 err = 17;
4612 goto fail;
4613 }
4614
4615 wlc_phy_machwcap_set(wlc_hw->band->pi, wlc_hw->machwcap);
4616
4617 wlc_phy_get_phyversion(wlc_hw->band->pi, &wlc_hw->band->phytype,
4618 &wlc_hw->band->phyrev,
4619 &wlc_hw->band->radioid,
4620 &wlc_hw->band->radiorev);
4621 wlc_hw->band->abgphy_encore =
4622 wlc_phy_get_encore(wlc_hw->band->pi);
4623 wlc->band->abgphy_encore = wlc_phy_get_encore(wlc_hw->band->pi);
4624 wlc_hw->band->core_flags =
4625 wlc_phy_get_coreflags(wlc_hw->band->pi);
4626
4627 /* verify good phy_type & supported phy revision */
4628 if (BRCMS_ISNPHY(wlc_hw->band)) {
4629 if (NCONF_HAS(wlc_hw->band->phyrev))
4630 goto good_phy;
4631 else
4632 goto bad_phy;
4633 } else if (BRCMS_ISLCNPHY(wlc_hw->band)) {
4634 if (LCNCONF_HAS(wlc_hw->band->phyrev))
4635 goto good_phy;
4636 else
4637 goto bad_phy;
4638 } else {
4639 bad_phy:
4640 wiphy_err(wiphy, "wl%d: brcms_b_attach: unsupported "
4641 "phy type/rev (%d/%d)\n", unit,
4642 wlc_hw->band->phytype, wlc_hw->band->phyrev);
4643 err = 18;
4644 goto fail;
4645 }
4646
4647 good_phy:
4648 /*
4649 * BMAC_NOTE: wlc->band->pi should not be set below and should
4650 * be done in the high level attach. However we can not make
4651 * that change until all low level access is changed to
4652 * wlc_hw->band->pi. Instead do the wlc->band->pi init below,
4653 * keeping wlc_hw->band->pi as well for incremental update of
4654 * low level fns, and cut over low only init when all fns
4655 * updated.
4656 */
4657 wlc->band->pi = wlc_hw->band->pi;
4658 wlc->band->phytype = wlc_hw->band->phytype;
4659 wlc->band->phyrev = wlc_hw->band->phyrev;
4660 wlc->band->radioid = wlc_hw->band->radioid;
4661 wlc->band->radiorev = wlc_hw->band->radiorev;
4662
4663 /* default contention windows size limits */
4664 wlc_hw->band->CWmin = APHY_CWMIN;
4665 wlc_hw->band->CWmax = PHY_CWMAX;
4666
4667 if (!brcms_b_attach_dmapio(wlc, j, wme)) {
4668 err = 19;
4669 goto fail;
4670 }
4671 }
4672
4673 /* disable core to match driver "down" state */
4674 brcms_c_coredisable(wlc_hw);
4675
4676 /* Match driver "down" state */
4677 ai_pci_down(wlc_hw->sih);
4678
Arend van Spriel5b435de2011-10-05 13:19:03 +02004679 /* turn off pll and xtal to match driver "down" state */
4680 brcms_b_xtal(wlc_hw, OFF);
4681
4682 /* *******************************************************************
4683 * The hardware is in the DOWN state at this point. D11 core
4684 * or cores are in reset with clocks off, and the board PLLs
4685 * are off if possible.
4686 *
4687 * Beyond this point, wlc->sbclk == false and chip registers
4688 * should not be touched.
4689 *********************************************************************
4690 */
4691
4692 /* init etheraddr state variables */
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004693 brcms_c_get_macaddr(wlc_hw, wlc_hw->etheraddr);
4694
4695 if (is_broadcast_ether_addr(wlc_hw->etheraddr) ||
Arend van Spriel5b435de2011-10-05 13:19:03 +02004696 is_zero_ether_addr(wlc_hw->etheraddr)) {
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004697 wiphy_err(wiphy, "wl%d: brcms_b_attach: bad macaddr\n",
4698 unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004699 err = 22;
4700 goto fail;
4701 }
4702
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004703 BCMMSG(wlc->wiphy, "deviceid 0x%x nbands %d board 0x%x\n",
4704 wlc_hw->deviceid, wlc_hw->_nbands, ai_get_boardtype(wlc_hw->sih));
Arend van Spriel5b435de2011-10-05 13:19:03 +02004705
4706 return err;
4707
4708 fail:
4709 wiphy_err(wiphy, "wl%d: brcms_b_attach: failed with err %d\n", unit,
4710 err);
4711 return err;
4712}
4713
4714static void brcms_c_attach_antgain_init(struct brcms_c_info *wlc)
4715{
4716 uint unit;
4717 unit = wlc->pub->unit;
4718
4719 if ((wlc->band->antgain == -1) && (wlc->pub->sromrev == 1)) {
4720 /* default antenna gain for srom rev 1 is 2 dBm (8 qdbm) */
4721 wlc->band->antgain = 8;
4722 } else if (wlc->band->antgain == -1) {
4723 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid antennas available in"
4724 " srom, using 2dB\n", unit, __func__);
4725 wlc->band->antgain = 8;
4726 } else {
4727 s8 gain, fract;
4728 /* Older sroms specified gain in whole dbm only. In order
4729 * be able to specify qdbm granularity and remain backward
4730 * compatible the whole dbms are now encoded in only
4731 * low 6 bits and remaining qdbms are encoded in the hi 2 bits.
4732 * 6 bit signed number ranges from -32 - 31.
4733 *
4734 * Examples:
4735 * 0x1 = 1 db,
4736 * 0xc1 = 1.75 db (1 + 3 quarters),
4737 * 0x3f = -1 (-1 + 0 quarters),
4738 * 0x7f = -.75 (-1 + 1 quarters) = -3 qdbm.
4739 * 0xbf = -.50 (-1 + 2 quarters) = -2 qdbm.
4740 */
4741 gain = wlc->band->antgain & 0x3f;
4742 gain <<= 2; /* Sign extend */
4743 gain >>= 2;
4744 fract = (wlc->band->antgain & 0xc0) >> 6;
4745 wlc->band->antgain = 4 * gain + fract;
4746 }
4747}
4748
4749static bool brcms_c_attach_stf_ant_init(struct brcms_c_info *wlc)
4750{
4751 int aa;
4752 uint unit;
4753 int bandtype;
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004754 struct ssb_sprom *sprom = &wlc->hw->d11core->bus->sprom;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004755
4756 unit = wlc->pub->unit;
4757 bandtype = wlc->band->bandtype;
4758
4759 /* get antennas available */
4760 if (bandtype == BRCM_BAND_5G)
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004761 aa = sprom->ant_available_a;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004762 else
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004763 aa = sprom->ant_available_bg;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004764
4765 if ((aa < 1) || (aa > 15)) {
4766 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid antennas available in"
4767 " srom (0x%x), using 3\n", unit, __func__, aa);
4768 aa = 3;
4769 }
4770
4771 /* reset the defaults if we have a single antenna */
4772 if (aa == 1) {
4773 wlc->stf->ant_rx_ovr = ANT_RX_DIV_FORCE_0;
4774 wlc->stf->txant = ANT_TX_FORCE_0;
4775 } else if (aa == 2) {
4776 wlc->stf->ant_rx_ovr = ANT_RX_DIV_FORCE_1;
4777 wlc->stf->txant = ANT_TX_FORCE_1;
4778 } else {
4779 }
4780
4781 /* Compute Antenna Gain */
4782 if (bandtype == BRCM_BAND_5G)
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004783 wlc->band->antgain = sprom->antenna_gain.a1;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004784 else
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004785 wlc->band->antgain = sprom->antenna_gain.a0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004786
4787 brcms_c_attach_antgain_init(wlc);
4788
4789 return true;
4790}
4791
4792static void brcms_c_bss_default_init(struct brcms_c_info *wlc)
4793{
4794 u16 chanspec;
4795 struct brcms_band *band;
4796 struct brcms_bss_info *bi = wlc->default_bss;
4797
4798 /* init default and target BSS with some sane initial values */
4799 memset((char *)(bi), 0, sizeof(struct brcms_bss_info));
4800 bi->beacon_period = BEACON_INTERVAL_DEFAULT;
4801
4802 /* fill the default channel as the first valid channel
4803 * starting from the 2G channels
4804 */
4805 chanspec = ch20mhz_chspec(1);
4806 wlc->home_chanspec = bi->chanspec = chanspec;
4807
4808 /* find the band of our default channel */
4809 band = wlc->band;
4810 if (wlc->pub->_nbands > 1 &&
4811 band->bandunit != chspec_bandunit(chanspec))
4812 band = wlc->bandstate[OTHERBANDUNIT(wlc)];
4813
4814 /* init bss rates to the band specific default rate set */
4815 brcms_c_rateset_default(&bi->rateset, NULL, band->phytype,
4816 band->bandtype, false, BRCMS_RATE_MASK_FULL,
4817 (bool) (wlc->pub->_n_enab & SUPPORT_11N),
4818 brcms_chspec_bw(chanspec), wlc->stf->txstreams);
4819
4820 if (wlc->pub->_n_enab & SUPPORT_11N)
4821 bi->flags |= BRCMS_BSS_HT;
4822}
4823
4824static struct brcms_txq_info *brcms_c_txq_alloc(struct brcms_c_info *wlc)
4825{
4826 struct brcms_txq_info *qi, *p;
4827
4828 qi = kzalloc(sizeof(struct brcms_txq_info), GFP_ATOMIC);
4829 if (qi != NULL) {
4830 /*
4831 * Have enough room for control packets along with HI watermark
4832 * Also, add room to txq for total psq packets if all the SCBs
4833 * leave PS mode. The watermark for flowcontrol to OS packets
4834 * will remain the same
4835 */
4836 brcmu_pktq_init(&qi->q, BRCMS_PREC_COUNT,
4837 2 * BRCMS_DATAHIWAT + PKTQ_LEN_DEFAULT);
4838
4839 /* add this queue to the the global list */
4840 p = wlc->tx_queues;
4841 if (p == NULL) {
4842 wlc->tx_queues = qi;
4843 } else {
4844 while (p->next != NULL)
4845 p = p->next;
4846 p->next = qi;
4847 }
4848 }
4849 return qi;
4850}
4851
4852static void brcms_c_txq_free(struct brcms_c_info *wlc,
4853 struct brcms_txq_info *qi)
4854{
4855 struct brcms_txq_info *p;
4856
4857 if (qi == NULL)
4858 return;
4859
4860 /* remove the queue from the linked list */
4861 p = wlc->tx_queues;
4862 if (p == qi)
4863 wlc->tx_queues = p->next;
4864 else {
4865 while (p != NULL && p->next != qi)
4866 p = p->next;
4867 if (p != NULL)
4868 p->next = p->next->next;
4869 }
4870
4871 kfree(qi);
4872}
4873
4874static void brcms_c_update_mimo_band_bwcap(struct brcms_c_info *wlc, u8 bwcap)
4875{
4876 uint i;
4877 struct brcms_band *band;
4878
4879 for (i = 0; i < wlc->pub->_nbands; i++) {
4880 band = wlc->bandstate[i];
4881 if (band->bandtype == BRCM_BAND_5G) {
4882 if ((bwcap == BRCMS_N_BW_40ALL)
4883 || (bwcap == BRCMS_N_BW_20IN2G_40IN5G))
4884 band->mimo_cap_40 = true;
4885 else
4886 band->mimo_cap_40 = false;
4887 } else {
4888 if (bwcap == BRCMS_N_BW_40ALL)
4889 band->mimo_cap_40 = true;
4890 else
4891 band->mimo_cap_40 = false;
4892 }
4893 }
4894}
4895
Arend van Spriel5b435de2011-10-05 13:19:03 +02004896static void brcms_c_timers_deinit(struct brcms_c_info *wlc)
4897{
4898 /* free timer state */
4899 if (wlc->wdtimer) {
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004900 brcms_free_timer(wlc->wdtimer);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004901 wlc->wdtimer = NULL;
4902 }
4903 if (wlc->radio_timer) {
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004904 brcms_free_timer(wlc->radio_timer);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004905 wlc->radio_timer = NULL;
4906 }
4907}
4908
4909static void brcms_c_detach_module(struct brcms_c_info *wlc)
4910{
4911 if (wlc->asi) {
4912 brcms_c_antsel_detach(wlc->asi);
4913 wlc->asi = NULL;
4914 }
4915
4916 if (wlc->ampdu) {
4917 brcms_c_ampdu_detach(wlc->ampdu);
4918 wlc->ampdu = NULL;
4919 }
4920
4921 brcms_c_stf_detach(wlc);
4922}
4923
4924/*
4925 * low level detach
4926 */
4927static int brcms_b_detach(struct brcms_c_info *wlc)
4928{
4929 uint i;
4930 struct brcms_hw_band *band;
4931 struct brcms_hardware *wlc_hw = wlc->hw;
4932 int callbacks;
4933
4934 callbacks = 0;
4935
Arend van Spriel5b435de2011-10-05 13:19:03 +02004936 brcms_b_detach_dmapio(wlc_hw);
4937
4938 band = wlc_hw->band;
4939 for (i = 0; i < wlc_hw->_nbands; i++) {
4940 if (band->pi) {
4941 /* Detach this band's phy */
4942 wlc_phy_detach(band->pi);
4943 band->pi = NULL;
4944 }
4945 band = wlc_hw->bandstate[OTHERBANDUNIT(wlc)];
4946 }
4947
4948 /* Free shared phy state */
4949 kfree(wlc_hw->phy_sh);
4950
4951 wlc_phy_shim_detach(wlc_hw->physhim);
4952
4953 if (wlc_hw->sih) {
4954 ai_detach(wlc_hw->sih);
4955 wlc_hw->sih = NULL;
4956 }
4957
4958 return callbacks;
4959
4960}
4961
4962/*
4963 * Return a count of the number of driver callbacks still pending.
4964 *
4965 * General policy is that brcms_c_detach can only dealloc/free software states.
4966 * It can NOT touch hardware registers since the d11core may be in reset and
4967 * clock may not be available.
4968 * One exception is sb register access, which is possible if crystal is turned
4969 * on after "down" state, driver should avoid software timer with the exception
4970 * of radio_monitor.
4971 */
4972uint brcms_c_detach(struct brcms_c_info *wlc)
4973{
4974 uint callbacks = 0;
4975
4976 if (wlc == NULL)
4977 return 0;
4978
4979 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
4980
4981 callbacks += brcms_b_detach(wlc);
4982
4983 /* delete software timers */
4984 if (!brcms_c_radio_monitor_stop(wlc))
4985 callbacks++;
4986
4987 brcms_c_channel_mgr_detach(wlc->cmi);
4988
4989 brcms_c_timers_deinit(wlc);
4990
4991 brcms_c_detach_module(wlc);
4992
4993
4994 while (wlc->tx_queues != NULL)
4995 brcms_c_txq_free(wlc, wlc->tx_queues);
4996
4997 brcms_c_detach_mfree(wlc);
4998 return callbacks;
4999}
5000
5001/* update state that depends on the current value of "ap" */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02005002static void brcms_c_ap_upd(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005003{
5004 /* STA-BSS; short capable */
5005 wlc->PLCPHdr_override = BRCMS_PLCP_SHORT;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005006}
5007
Arend van Spriel5b435de2011-10-05 13:19:03 +02005008/* Initialize just the hardware when coming out of POR or S3/S5 system states */
5009static void brcms_b_hw_up(struct brcms_hardware *wlc_hw)
5010{
5011 if (wlc_hw->wlc->pub->hw_up)
5012 return;
5013
5014 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
5015
5016 /*
5017 * Enable pll and xtal, initialize the power control registers,
5018 * and force fastclock for the remainder of brcms_c_up().
5019 */
5020 brcms_b_xtal(wlc_hw, ON);
5021 ai_clkctl_init(wlc_hw->sih);
5022 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
5023
5024 ai_pci_fixcfg(wlc_hw->sih);
5025
5026 /*
Arend van Spriel3b758a62011-12-12 15:15:09 -08005027 * TODO: test suspend/resume
5028 *
Arend van Spriel5b435de2011-10-05 13:19:03 +02005029 * AI chip doesn't restore bar0win2 on
5030 * hibernation/resume, need sw fixup
5031 */
Arend van Spriel5b435de2011-10-05 13:19:03 +02005032
5033 /*
5034 * Inform phy that a POR reset has occurred so
5035 * it does a complete phy init
5036 */
5037 wlc_phy_por_inform(wlc_hw->band->pi);
5038
5039 wlc_hw->ucode_loaded = false;
5040 wlc_hw->wlc->pub->hw_up = true;
5041
5042 if ((wlc_hw->boardflags & BFL_FEM)
Arend van Sprielb2ffec42011-12-08 15:06:45 -08005043 && (ai_get_chip_id(wlc_hw->sih) == BCM4313_CHIP_ID)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02005044 if (!
5045 (wlc_hw->boardrev >= 0x1250
5046 && (wlc_hw->boardflags & BFL_FEM_BT)))
5047 ai_epa_4313war(wlc_hw->sih);
5048 }
5049}
5050
5051static int brcms_b_up_prep(struct brcms_hardware *wlc_hw)
5052{
Arend van Spriel5b435de2011-10-05 13:19:03 +02005053 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
5054
5055 /*
5056 * Enable pll and xtal, initialize the power control registers,
5057 * and force fastclock for the remainder of brcms_c_up().
5058 */
5059 brcms_b_xtal(wlc_hw, ON);
5060 ai_clkctl_init(wlc_hw->sih);
5061 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
5062
5063 /*
5064 * Configure pci/pcmcia here instead of in brcms_c_attach()
5065 * to allow mfg hotswap: down, hotswap (chip power cycle), up.
5066 */
Hauke Mehrtensb30ee752012-04-29 02:50:32 +02005067 bcma_core_pci_irq_ctl(&wlc_hw->d11core->bus->drv_pci, wlc_hw->d11core,
5068 true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005069
5070 /*
5071 * Need to read the hwradio status here to cover the case where the
5072 * system is loaded with the hw radio disabled. We do not want to
5073 * bring the driver up in this case.
5074 */
5075 if (brcms_b_radio_read_hwdisabled(wlc_hw)) {
5076 /* put SB PCI in down state again */
5077 ai_pci_down(wlc_hw->sih);
5078 brcms_b_xtal(wlc_hw, OFF);
5079 return -ENOMEDIUM;
5080 }
5081
5082 ai_pci_up(wlc_hw->sih);
5083
5084 /* reset the d11 core */
5085 brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
5086
5087 return 0;
5088}
5089
5090static int brcms_b_up_finish(struct brcms_hardware *wlc_hw)
5091{
5092 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
5093
5094 wlc_hw->up = true;
5095 wlc_phy_hw_state_upd(wlc_hw->band->pi, true);
5096
5097 /* FULLY enable dynamic power control and d11 core interrupt */
5098 brcms_b_clkctl_clk(wlc_hw, CLK_DYNAMIC);
5099 brcms_intrson(wlc_hw->wlc->wl);
5100 return 0;
5101}
5102
5103/*
5104 * Write WME tunable parameters for retransmit/max rate
5105 * from wlc struct to ucode
5106 */
5107static void brcms_c_wme_retries_write(struct brcms_c_info *wlc)
5108{
5109 int ac;
5110
5111 /* Need clock to do this */
5112 if (!wlc->clk)
5113 return;
5114
Arend van Sprielb7eec422011-11-10 20:30:18 +01005115 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005116 brcms_b_write_shm(wlc->hw, M_AC_TXLMT_ADDR(ac),
5117 wlc->wme_retries[ac]);
5118}
5119
5120/* make interface operational */
5121int brcms_c_up(struct brcms_c_info *wlc)
5122{
5123 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
5124
5125 /* HW is turned off so don't try to access it */
5126 if (wlc->pub->hw_off || brcms_deviceremoved(wlc))
5127 return -ENOMEDIUM;
5128
5129 if (!wlc->pub->hw_up) {
5130 brcms_b_hw_up(wlc->hw);
5131 wlc->pub->hw_up = true;
5132 }
5133
5134 if ((wlc->pub->boardflags & BFL_FEM)
Arend van Sprielb2ffec42011-12-08 15:06:45 -08005135 && (ai_get_chip_id(wlc->hw->sih) == BCM4313_CHIP_ID)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02005136 if (wlc->pub->boardrev >= 0x1250
5137 && (wlc->pub->boardflags & BFL_FEM_BT))
5138 brcms_b_mhf(wlc->hw, MHF5, MHF5_4313_GPIOCTRL,
5139 MHF5_4313_GPIOCTRL, BRCM_BAND_ALL);
5140 else
5141 brcms_b_mhf(wlc->hw, MHF4, MHF4_EXTPA_ENABLE,
5142 MHF4_EXTPA_ENABLE, BRCM_BAND_ALL);
5143 }
5144
5145 /*
5146 * Need to read the hwradio status here to cover the case where the
5147 * system is loaded with the hw radio disabled. We do not want to bring
5148 * the driver up in this case. If radio is disabled, abort up, lower
5149 * power, start radio timer and return 0(for NDIS) don't call
5150 * radio_update to avoid looping brcms_c_up.
5151 *
5152 * brcms_b_up_prep() returns either 0 or -BCME_RADIOOFF only
5153 */
5154 if (!wlc->pub->radio_disabled) {
5155 int status = brcms_b_up_prep(wlc->hw);
5156 if (status == -ENOMEDIUM) {
5157 if (!mboolisset
5158 (wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE)) {
5159 struct brcms_bss_cfg *bsscfg = wlc->bsscfg;
5160 mboolset(wlc->pub->radio_disabled,
5161 WL_RADIO_HW_DISABLE);
5162
5163 if (bsscfg->enable && bsscfg->BSS)
5164 wiphy_err(wlc->wiphy, "wl%d: up"
5165 ": rfdisable -> "
5166 "bsscfg_disable()\n",
5167 wlc->pub->unit);
5168 }
5169 }
5170 }
5171
5172 if (wlc->pub->radio_disabled) {
5173 brcms_c_radio_monitor_start(wlc);
5174 return 0;
5175 }
5176
5177 /* brcms_b_up_prep has done brcms_c_corereset(). so clk is on, set it */
5178 wlc->clk = true;
5179
5180 brcms_c_radio_monitor_stop(wlc);
5181
5182 /* Set EDCF hostflags */
5183 brcms_b_mhf(wlc->hw, MHF1, MHF1_EDCF, MHF1_EDCF, BRCM_BAND_ALL);
5184
5185 brcms_init(wlc->wl);
5186 wlc->pub->up = true;
5187
5188 if (wlc->bandinit_pending) {
5189 brcms_c_suspend_mac_and_wait(wlc);
5190 brcms_c_set_chanspec(wlc, wlc->default_bss->chanspec);
5191 wlc->bandinit_pending = false;
5192 brcms_c_enable_mac(wlc);
5193 }
5194
5195 brcms_b_up_finish(wlc->hw);
5196
5197 /* Program the TX wme params with the current settings */
5198 brcms_c_wme_retries_write(wlc);
5199
5200 /* start one second watchdog timer */
Roland Vossenbe69c4e2011-10-12 20:51:11 +02005201 brcms_add_timer(wlc->wdtimer, TIMER_INTERVAL_WATCHDOG, true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005202 wlc->WDarmed = true;
5203
5204 /* ensure antenna config is up to date */
5205 brcms_c_stf_phy_txant_upd(wlc);
5206 /* ensure LDPC config is in sync */
5207 brcms_c_ht_update_ldpc(wlc, wlc->stf->ldpc);
5208
5209 return 0;
5210}
5211
5212static uint brcms_c_down_del_timer(struct brcms_c_info *wlc)
5213{
5214 uint callbacks = 0;
5215
5216 return callbacks;
5217}
5218
5219static int brcms_b_bmac_down_prep(struct brcms_hardware *wlc_hw)
5220{
5221 bool dev_gone;
5222 uint callbacks = 0;
5223
5224 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
5225
5226 if (!wlc_hw->up)
5227 return callbacks;
5228
5229 dev_gone = brcms_deviceremoved(wlc_hw->wlc);
5230
5231 /* disable interrupts */
5232 if (dev_gone)
5233 wlc_hw->wlc->macintmask = 0;
5234 else {
5235 /* now disable interrupts */
5236 brcms_intrsoff(wlc_hw->wlc->wl);
5237
5238 /* ensure we're running on the pll clock again */
5239 brcms_b_clkctl_clk(wlc_hw, CLK_FAST);
5240 }
5241 /* down phy at the last of this stage */
5242 callbacks += wlc_phy_down(wlc_hw->band->pi);
5243
5244 return callbacks;
5245}
5246
5247static int brcms_b_down_finish(struct brcms_hardware *wlc_hw)
5248{
5249 uint callbacks = 0;
5250 bool dev_gone;
5251
5252 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
5253
5254 if (!wlc_hw->up)
5255 return callbacks;
5256
5257 wlc_hw->up = false;
5258 wlc_phy_hw_state_upd(wlc_hw->band->pi, false);
5259
5260 dev_gone = brcms_deviceremoved(wlc_hw->wlc);
5261
5262 if (dev_gone) {
5263 wlc_hw->sbclk = false;
5264 wlc_hw->clk = false;
5265 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
5266
5267 /* reclaim any posted packets */
5268 brcms_c_flushqueues(wlc_hw->wlc);
5269 } else {
5270
5271 /* Reset and disable the core */
Arend van Spriela8779e42011-12-08 15:06:58 -08005272 if (bcma_core_is_enabled(wlc_hw->d11core)) {
Arend van Spriel16d28122011-12-08 15:06:51 -08005273 if (bcma_read32(wlc_hw->d11core,
5274 D11REGOFFS(maccontrol)) & MCTL_EN_MAC)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005275 brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
5276 callbacks += brcms_reset(wlc_hw->wlc->wl);
5277 brcms_c_coredisable(wlc_hw);
5278 }
5279
5280 /* turn off primary xtal and pll */
5281 if (!wlc_hw->noreset) {
5282 ai_pci_down(wlc_hw->sih);
5283 brcms_b_xtal(wlc_hw, OFF);
5284 }
5285 }
5286
5287 return callbacks;
5288}
5289
5290/*
5291 * Mark the interface nonoperational, stop the software mechanisms,
5292 * disable the hardware, free any transient buffer state.
5293 * Return a count of the number of driver callbacks still pending.
5294 */
5295uint brcms_c_down(struct brcms_c_info *wlc)
5296{
5297
5298 uint callbacks = 0;
5299 int i;
5300 bool dev_gone = false;
5301 struct brcms_txq_info *qi;
5302
5303 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
5304
5305 /* check if we are already in the going down path */
5306 if (wlc->going_down) {
5307 wiphy_err(wlc->wiphy, "wl%d: %s: Driver going down so return"
5308 "\n", wlc->pub->unit, __func__);
5309 return 0;
5310 }
5311 if (!wlc->pub->up)
5312 return callbacks;
5313
Arend van Spriel5b435de2011-10-05 13:19:03 +02005314 wlc->going_down = true;
5315
5316 callbacks += brcms_b_bmac_down_prep(wlc->hw);
5317
5318 dev_gone = brcms_deviceremoved(wlc);
5319
5320 /* Call any registered down handlers */
5321 for (i = 0; i < BRCMS_MAXMODULES; i++) {
5322 if (wlc->modulecb[i].down_fn)
5323 callbacks +=
5324 wlc->modulecb[i].down_fn(wlc->modulecb[i].hdl);
5325 }
5326
5327 /* cancel the watchdog timer */
5328 if (wlc->WDarmed) {
Roland Vossenbe69c4e2011-10-12 20:51:11 +02005329 if (!brcms_del_timer(wlc->wdtimer))
Arend van Spriel5b435de2011-10-05 13:19:03 +02005330 callbacks++;
5331 wlc->WDarmed = false;
5332 }
5333 /* cancel all other timers */
5334 callbacks += brcms_c_down_del_timer(wlc);
5335
5336 wlc->pub->up = false;
5337
5338 wlc_phy_mute_upd(wlc->band->pi, false, PHY_MUTE_ALL);
5339
5340 /* clear txq flow control */
5341 brcms_c_txflowcontrol_reset(wlc);
5342
5343 /* flush tx queues */
5344 for (qi = wlc->tx_queues; qi != NULL; qi = qi->next)
5345 brcmu_pktq_flush(&qi->q, true, NULL, NULL);
5346
5347 callbacks += brcms_b_down_finish(wlc->hw);
5348
5349 /* brcms_b_down_finish has done brcms_c_coredisable(). so clk is off */
5350 wlc->clk = false;
5351
5352 wlc->going_down = false;
5353 return callbacks;
5354}
5355
5356/* Set the current gmode configuration */
5357int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config)
5358{
5359 int ret = 0;
5360 uint i;
5361 struct brcms_c_rateset rs;
5362 /* Default to 54g Auto */
5363 /* Advertise and use shortslot (-1/0/1 Auto/Off/On) */
5364 s8 shortslot = BRCMS_SHORTSLOT_AUTO;
5365 bool shortslot_restrict = false; /* Restrict association to stations
5366 * that support shortslot
5367 */
5368 bool ofdm_basic = false; /* Make 6, 12, and 24 basic rates */
5369 /* Advertise and use short preambles (-1/0/1 Auto/Off/On) */
5370 int preamble = BRCMS_PLCP_LONG;
5371 bool preamble_restrict = false; /* Restrict association to stations
5372 * that support short preambles
5373 */
5374 struct brcms_band *band;
5375
5376 /* if N-support is enabled, allow Gmode set as long as requested
5377 * Gmode is not GMODE_LEGACY_B
5378 */
5379 if ((wlc->pub->_n_enab & SUPPORT_11N) && gmode == GMODE_LEGACY_B)
5380 return -ENOTSUPP;
5381
5382 /* verify that we are dealing with 2G band and grab the band pointer */
5383 if (wlc->band->bandtype == BRCM_BAND_2G)
5384 band = wlc->band;
5385 else if ((wlc->pub->_nbands > 1) &&
5386 (wlc->bandstate[OTHERBANDUNIT(wlc)]->bandtype == BRCM_BAND_2G))
5387 band = wlc->bandstate[OTHERBANDUNIT(wlc)];
5388 else
5389 return -EINVAL;
5390
5391 /* Legacy or bust when no OFDM is supported by regulatory */
5392 if ((brcms_c_channel_locale_flags_in_band(wlc->cmi, band->bandunit) &
5393 BRCMS_NO_OFDM) && (gmode != GMODE_LEGACY_B))
5394 return -EINVAL;
5395
5396 /* update configuration value */
Joe Perches23677ce2012-02-09 11:17:23 +00005397 if (config)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005398 brcms_c_protection_upd(wlc, BRCMS_PROT_G_USER, gmode);
5399
5400 /* Clear rateset override */
5401 memset(&rs, 0, sizeof(struct brcms_c_rateset));
5402
5403 switch (gmode) {
5404 case GMODE_LEGACY_B:
5405 shortslot = BRCMS_SHORTSLOT_OFF;
5406 brcms_c_rateset_copy(&gphy_legacy_rates, &rs);
5407
5408 break;
5409
5410 case GMODE_LRS:
5411 break;
5412
5413 case GMODE_AUTO:
5414 /* Accept defaults */
5415 break;
5416
5417 case GMODE_ONLY:
5418 ofdm_basic = true;
5419 preamble = BRCMS_PLCP_SHORT;
5420 preamble_restrict = true;
5421 break;
5422
5423 case GMODE_PERFORMANCE:
5424 shortslot = BRCMS_SHORTSLOT_ON;
5425 shortslot_restrict = true;
5426 ofdm_basic = true;
5427 preamble = BRCMS_PLCP_SHORT;
5428 preamble_restrict = true;
5429 break;
5430
5431 default:
5432 /* Error */
5433 wiphy_err(wlc->wiphy, "wl%d: %s: invalid gmode %d\n",
5434 wlc->pub->unit, __func__, gmode);
5435 return -ENOTSUPP;
5436 }
5437
5438 band->gmode = gmode;
5439
5440 wlc->shortslot_override = shortslot;
5441
5442 /* Use the default 11g rateset */
5443 if (!rs.count)
5444 brcms_c_rateset_copy(&cck_ofdm_rates, &rs);
5445
5446 if (ofdm_basic) {
5447 for (i = 0; i < rs.count; i++) {
5448 if (rs.rates[i] == BRCM_RATE_6M
5449 || rs.rates[i] == BRCM_RATE_12M
5450 || rs.rates[i] == BRCM_RATE_24M)
5451 rs.rates[i] |= BRCMS_RATE_FLAG;
5452 }
5453 }
5454
5455 /* Set default bss rateset */
5456 wlc->default_bss->rateset.count = rs.count;
5457 memcpy(wlc->default_bss->rateset.rates, rs.rates,
5458 sizeof(wlc->default_bss->rateset.rates));
5459
5460 return ret;
5461}
5462
5463int brcms_c_set_nmode(struct brcms_c_info *wlc)
5464{
5465 uint i;
5466 s32 nmode = AUTO;
5467
5468 if (wlc->stf->txstreams == WL_11N_3x3)
5469 nmode = WL_11N_3x3;
5470 else
5471 nmode = WL_11N_2x2;
5472
5473 /* force GMODE_AUTO if NMODE is ON */
5474 brcms_c_set_gmode(wlc, GMODE_AUTO, true);
5475 if (nmode == WL_11N_3x3)
5476 wlc->pub->_n_enab = SUPPORT_HT;
5477 else
5478 wlc->pub->_n_enab = SUPPORT_11N;
5479 wlc->default_bss->flags |= BRCMS_BSS_HT;
5480 /* add the mcs rates to the default and hw ratesets */
5481 brcms_c_rateset_mcs_build(&wlc->default_bss->rateset,
5482 wlc->stf->txstreams);
5483 for (i = 0; i < wlc->pub->_nbands; i++)
5484 memcpy(wlc->bandstate[i]->hw_rateset.mcs,
5485 wlc->default_bss->rateset.mcs, MCSSET_LEN);
5486
5487 return 0;
5488}
5489
5490static int
5491brcms_c_set_internal_rateset(struct brcms_c_info *wlc,
5492 struct brcms_c_rateset *rs_arg)
5493{
5494 struct brcms_c_rateset rs, new;
5495 uint bandunit;
5496
5497 memcpy(&rs, rs_arg, sizeof(struct brcms_c_rateset));
5498
5499 /* check for bad count value */
5500 if ((rs.count == 0) || (rs.count > BRCMS_NUMRATES))
5501 return -EINVAL;
5502
5503 /* try the current band */
5504 bandunit = wlc->band->bandunit;
5505 memcpy(&new, &rs, sizeof(struct brcms_c_rateset));
5506 if (brcms_c_rate_hwrs_filter_sort_validate
5507 (&new, &wlc->bandstate[bandunit]->hw_rateset, true,
5508 wlc->stf->txstreams))
5509 goto good;
5510
5511 /* try the other band */
5512 if (brcms_is_mband_unlocked(wlc)) {
5513 bandunit = OTHERBANDUNIT(wlc);
5514 memcpy(&new, &rs, sizeof(struct brcms_c_rateset));
5515 if (brcms_c_rate_hwrs_filter_sort_validate(&new,
5516 &wlc->
5517 bandstate[bandunit]->
5518 hw_rateset, true,
5519 wlc->stf->txstreams))
5520 goto good;
5521 }
5522
5523 return -EBADE;
5524
5525 good:
5526 /* apply new rateset */
5527 memcpy(&wlc->default_bss->rateset, &new,
5528 sizeof(struct brcms_c_rateset));
5529 memcpy(&wlc->bandstate[bandunit]->defrateset, &new,
5530 sizeof(struct brcms_c_rateset));
5531 return 0;
5532}
5533
5534static void brcms_c_ofdm_rateset_war(struct brcms_c_info *wlc)
5535{
5536 u8 r;
5537 bool war = false;
5538
5539 if (wlc->bsscfg->associated)
5540 r = wlc->bsscfg->current_bss->rateset.rates[0];
5541 else
5542 r = wlc->default_bss->rateset.rates[0];
5543
5544 wlc_phy_ofdm_rateset_war(wlc->band->pi, war);
5545}
5546
5547int brcms_c_set_channel(struct brcms_c_info *wlc, u16 channel)
5548{
5549 u16 chspec = ch20mhz_chspec(channel);
5550
5551 if (channel < 0 || channel > MAXCHANNEL)
5552 return -EINVAL;
5553
5554 if (!brcms_c_valid_chanspec_db(wlc->cmi, chspec))
5555 return -EINVAL;
5556
5557
5558 if (!wlc->pub->up && brcms_is_mband_unlocked(wlc)) {
5559 if (wlc->band->bandunit != chspec_bandunit(chspec))
5560 wlc->bandinit_pending = true;
5561 else
5562 wlc->bandinit_pending = false;
5563 }
5564
5565 wlc->default_bss->chanspec = chspec;
5566 /* brcms_c_BSSinit() will sanitize the rateset before
5567 * using it.. */
5568 if (wlc->pub->up && (wlc_phy_chanspec_get(wlc->band->pi) != chspec)) {
5569 brcms_c_set_home_chanspec(wlc, chspec);
5570 brcms_c_suspend_mac_and_wait(wlc);
5571 brcms_c_set_chanspec(wlc, chspec);
5572 brcms_c_enable_mac(wlc);
5573 }
5574 return 0;
5575}
5576
5577int brcms_c_set_rate_limit(struct brcms_c_info *wlc, u16 srl, u16 lrl)
5578{
5579 int ac;
5580
5581 if (srl < 1 || srl > RETRY_SHORT_MAX ||
5582 lrl < 1 || lrl > RETRY_SHORT_MAX)
5583 return -EINVAL;
5584
5585 wlc->SRL = srl;
5586 wlc->LRL = lrl;
5587
5588 brcms_b_retrylimit_upd(wlc->hw, wlc->SRL, wlc->LRL);
5589
Arend van Sprielb7eec422011-11-10 20:30:18 +01005590 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02005591 wlc->wme_retries[ac] = SFIELD(wlc->wme_retries[ac],
5592 EDCF_SHORT, wlc->SRL);
5593 wlc->wme_retries[ac] = SFIELD(wlc->wme_retries[ac],
5594 EDCF_LONG, wlc->LRL);
5595 }
5596 brcms_c_wme_retries_write(wlc);
5597
5598 return 0;
5599}
5600
5601void brcms_c_get_current_rateset(struct brcms_c_info *wlc,
5602 struct brcm_rateset *currs)
5603{
5604 struct brcms_c_rateset *rs;
5605
5606 if (wlc->pub->associated)
5607 rs = &wlc->bsscfg->current_bss->rateset;
5608 else
5609 rs = &wlc->default_bss->rateset;
5610
5611 /* Copy only legacy rateset section */
5612 currs->count = rs->count;
5613 memcpy(&currs->rates, &rs->rates, rs->count);
5614}
5615
5616int brcms_c_set_rateset(struct brcms_c_info *wlc, struct brcm_rateset *rs)
5617{
5618 struct brcms_c_rateset internal_rs;
5619 int bcmerror;
5620
5621 if (rs->count > BRCMS_NUMRATES)
5622 return -ENOBUFS;
5623
5624 memset(&internal_rs, 0, sizeof(struct brcms_c_rateset));
5625
5626 /* Copy only legacy rateset section */
5627 internal_rs.count = rs->count;
5628 memcpy(&internal_rs.rates, &rs->rates, internal_rs.count);
5629
5630 /* merge rateset coming in with the current mcsset */
5631 if (wlc->pub->_n_enab & SUPPORT_11N) {
5632 struct brcms_bss_info *mcsset_bss;
5633 if (wlc->bsscfg->associated)
5634 mcsset_bss = wlc->bsscfg->current_bss;
5635 else
5636 mcsset_bss = wlc->default_bss;
5637 memcpy(internal_rs.mcs, &mcsset_bss->rateset.mcs[0],
5638 MCSSET_LEN);
5639 }
5640
5641 bcmerror = brcms_c_set_internal_rateset(wlc, &internal_rs);
5642 if (!bcmerror)
5643 brcms_c_ofdm_rateset_war(wlc);
5644
5645 return bcmerror;
5646}
5647
5648int brcms_c_set_beacon_period(struct brcms_c_info *wlc, u16 period)
5649{
5650 if (period < DOT11_MIN_BEACON_PERIOD ||
5651 period > DOT11_MAX_BEACON_PERIOD)
5652 return -EINVAL;
5653
5654 wlc->default_bss->beacon_period = period;
5655 return 0;
5656}
5657
5658u16 brcms_c_get_phy_type(struct brcms_c_info *wlc, int phyidx)
5659{
5660 return wlc->band->phytype;
5661}
5662
5663void brcms_c_set_shortslot_override(struct brcms_c_info *wlc, s8 sslot_override)
5664{
5665 wlc->shortslot_override = sslot_override;
5666
5667 /*
5668 * shortslot is an 11g feature, so no more work if we are
5669 * currently on the 5G band
5670 */
5671 if (wlc->band->bandtype == BRCM_BAND_5G)
5672 return;
5673
5674 if (wlc->pub->up && wlc->pub->associated) {
5675 /* let watchdog or beacon processing update shortslot */
5676 } else if (wlc->pub->up) {
5677 /* unassociated shortslot is off */
5678 brcms_c_switch_shortslot(wlc, false);
5679 } else {
5680 /* driver is down, so just update the brcms_c_info
5681 * value */
5682 if (wlc->shortslot_override == BRCMS_SHORTSLOT_AUTO)
5683 wlc->shortslot = false;
5684 else
5685 wlc->shortslot =
5686 (wlc->shortslot_override ==
5687 BRCMS_SHORTSLOT_ON);
5688 }
5689}
5690
5691/*
5692 * register watchdog and down handlers.
5693 */
5694int brcms_c_module_register(struct brcms_pub *pub,
5695 const char *name, struct brcms_info *hdl,
5696 int (*d_fn)(void *handle))
5697{
5698 struct brcms_c_info *wlc = (struct brcms_c_info *) pub->wlc;
5699 int i;
5700
5701 /* find an empty entry and just add, no duplication check! */
5702 for (i = 0; i < BRCMS_MAXMODULES; i++) {
5703 if (wlc->modulecb[i].name[0] == '\0') {
5704 strncpy(wlc->modulecb[i].name, name,
5705 sizeof(wlc->modulecb[i].name) - 1);
5706 wlc->modulecb[i].hdl = hdl;
5707 wlc->modulecb[i].down_fn = d_fn;
5708 return 0;
5709 }
5710 }
5711
5712 return -ENOSR;
5713}
5714
5715/* unregister module callbacks */
5716int brcms_c_module_unregister(struct brcms_pub *pub, const char *name,
5717 struct brcms_info *hdl)
5718{
5719 struct brcms_c_info *wlc = (struct brcms_c_info *) pub->wlc;
5720 int i;
5721
5722 if (wlc == NULL)
5723 return -ENODATA;
5724
5725 for (i = 0; i < BRCMS_MAXMODULES; i++) {
5726 if (!strcmp(wlc->modulecb[i].name, name) &&
5727 (wlc->modulecb[i].hdl == hdl)) {
5728 memset(&wlc->modulecb[i], 0, sizeof(struct modulecb));
5729 return 0;
5730 }
5731 }
5732
5733 /* table not found! */
5734 return -ENODATA;
5735}
5736
Arend van Spriel5b435de2011-10-05 13:19:03 +02005737void brcms_c_print_txstatus(struct tx_status *txs)
5738{
Joe Perches18aad4f2012-01-15 00:38:42 -08005739 pr_debug("\ntxpkt (MPDU) Complete\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005740
Joe Perches18aad4f2012-01-15 00:38:42 -08005741 pr_debug("FrameID: %04x TxStatus: %04x\n", txs->frameid, txs->status);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005742
Joe Perches18aad4f2012-01-15 00:38:42 -08005743 pr_debug("[15:12] %d frame attempts\n",
5744 (txs->status & TX_STATUS_FRM_RTX_MASK) >>
5745 TX_STATUS_FRM_RTX_SHIFT);
5746 pr_debug(" [11:8] %d rts attempts\n",
5747 (txs->status & TX_STATUS_RTS_RTX_MASK) >>
5748 TX_STATUS_RTS_RTX_SHIFT);
5749 pr_debug(" [7] %d PM mode indicated\n",
5750 txs->status & TX_STATUS_PMINDCTD ? 1 : 0);
5751 pr_debug(" [6] %d intermediate status\n",
5752 txs->status & TX_STATUS_INTERMEDIATE ? 1 : 0);
5753 pr_debug(" [5] %d AMPDU\n",
5754 txs->status & TX_STATUS_AMPDU ? 1 : 0);
5755 pr_debug(" [4:2] %d Frame Suppressed Reason (%s)\n",
5756 (txs->status & TX_STATUS_SUPR_MASK) >> TX_STATUS_SUPR_SHIFT,
5757 (const char *[]) {
5758 "None",
5759 "PMQ Entry",
5760 "Flush request",
5761 "Previous frag failure",
5762 "Channel mismatch",
5763 "Lifetime Expiry",
5764 "Underflow"
5765 } [(txs->status & TX_STATUS_SUPR_MASK) >>
5766 TX_STATUS_SUPR_SHIFT]);
5767 pr_debug(" [1] %d acked\n",
5768 txs->status & TX_STATUS_ACK_RCV ? 1 : 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005769
Joe Perches18aad4f2012-01-15 00:38:42 -08005770 pr_debug("LastTxTime: %04x Seq: %04x PHYTxStatus: %04x RxAckRSSI: %04x RxAckSQ: %04x\n",
5771 txs->lasttxtime, txs->sequence, txs->phyerr,
5772 (txs->ackphyrxsh & PRXS1_JSSI_MASK) >> PRXS1_JSSI_SHIFT,
5773 (txs->ackphyrxsh & PRXS1_SQ_MASK) >> PRXS1_SQ_SHIFT);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005774}
5775
Arend van Spriel5b435de2011-10-05 13:19:03 +02005776bool brcms_c_chipmatch(u16 vendor, u16 device)
5777{
5778 if (vendor != PCI_VENDOR_ID_BROADCOM) {
Joe Perches02f77192012-01-15 00:38:44 -08005779 pr_err("unknown vendor id %04x\n", vendor);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005780 return false;
5781 }
5782
5783 if (device == BCM43224_D11N_ID_VEN1)
5784 return true;
5785 if ((device == BCM43224_D11N_ID) || (device == BCM43225_D11N2G_ID))
5786 return true;
5787 if (device == BCM4313_D11N2G_ID)
5788 return true;
5789 if ((device == BCM43236_D11N_ID) || (device == BCM43236_D11N2G_ID))
5790 return true;
5791
Joe Perches02f77192012-01-15 00:38:44 -08005792 pr_err("unknown device id %04x\n", device);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005793 return false;
5794}
5795
Joe Perches8ae74652012-01-15 00:38:38 -08005796#if defined(DEBUG)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005797void brcms_c_print_txdesc(struct d11txh *txh)
5798{
5799 u16 mtcl = le16_to_cpu(txh->MacTxControlLow);
5800 u16 mtch = le16_to_cpu(txh->MacTxControlHigh);
5801 u16 mfc = le16_to_cpu(txh->MacFrameControl);
5802 u16 tfest = le16_to_cpu(txh->TxFesTimeNormal);
5803 u16 ptcw = le16_to_cpu(txh->PhyTxControlWord);
5804 u16 ptcw_1 = le16_to_cpu(txh->PhyTxControlWord_1);
5805 u16 ptcw_1_Fbr = le16_to_cpu(txh->PhyTxControlWord_1_Fbr);
5806 u16 ptcw_1_Rts = le16_to_cpu(txh->PhyTxControlWord_1_Rts);
5807 u16 ptcw_1_FbrRts = le16_to_cpu(txh->PhyTxControlWord_1_FbrRts);
5808 u16 mainrates = le16_to_cpu(txh->MainRates);
5809 u16 xtraft = le16_to_cpu(txh->XtraFrameTypes);
5810 u8 *iv = txh->IV;
5811 u8 *ra = txh->TxFrameRA;
5812 u16 tfestfb = le16_to_cpu(txh->TxFesTimeFallback);
5813 u8 *rtspfb = txh->RTSPLCPFallback;
5814 u16 rtsdfb = le16_to_cpu(txh->RTSDurFallback);
5815 u8 *fragpfb = txh->FragPLCPFallback;
5816 u16 fragdfb = le16_to_cpu(txh->FragDurFallback);
5817 u16 mmodelen = le16_to_cpu(txh->MModeLen);
5818 u16 mmodefbrlen = le16_to_cpu(txh->MModeFbrLen);
5819 u16 tfid = le16_to_cpu(txh->TxFrameID);
5820 u16 txs = le16_to_cpu(txh->TxStatus);
5821 u16 mnmpdu = le16_to_cpu(txh->MaxNMpdus);
5822 u16 mabyte = le16_to_cpu(txh->MaxABytes_MRT);
5823 u16 mabyte_f = le16_to_cpu(txh->MaxABytes_FBR);
5824 u16 mmbyte = le16_to_cpu(txh->MinMBytes);
5825
5826 u8 *rtsph = txh->RTSPhyHeader;
5827 struct ieee80211_rts rts = txh->rts_frame;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005828
5829 /* add plcp header along with txh descriptor */
Joe Perchesc2e6d5a2012-01-15 00:38:43 -08005830 brcmu_dbg_hex_dump(txh, sizeof(struct d11txh) + 48,
5831 "Raw TxDesc + plcp header:\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005832
Joe Perches18aad4f2012-01-15 00:38:42 -08005833 pr_debug("TxCtlLow: %04x ", mtcl);
5834 pr_debug("TxCtlHigh: %04x ", mtch);
5835 pr_debug("FC: %04x ", mfc);
5836 pr_debug("FES Time: %04x\n", tfest);
5837 pr_debug("PhyCtl: %04x%s ", ptcw,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005838 (ptcw & PHY_TXC_SHORT_HDR) ? " short" : "");
Joe Perches18aad4f2012-01-15 00:38:42 -08005839 pr_debug("PhyCtl_1: %04x ", ptcw_1);
5840 pr_debug("PhyCtl_1_Fbr: %04x\n", ptcw_1_Fbr);
5841 pr_debug("PhyCtl_1_Rts: %04x ", ptcw_1_Rts);
5842 pr_debug("PhyCtl_1_Fbr_Rts: %04x\n", ptcw_1_FbrRts);
5843 pr_debug("MainRates: %04x ", mainrates);
5844 pr_debug("XtraFrameTypes: %04x ", xtraft);
5845 pr_debug("\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005846
Arend van Spriel09c7dfa2011-10-18 14:03:10 +02005847 print_hex_dump_bytes("SecIV:", DUMP_PREFIX_OFFSET, iv, sizeof(txh->IV));
5848 print_hex_dump_bytes("RA:", DUMP_PREFIX_OFFSET,
5849 ra, sizeof(txh->TxFrameRA));
Arend van Spriel5b435de2011-10-05 13:19:03 +02005850
Joe Perches18aad4f2012-01-15 00:38:42 -08005851 pr_debug("Fb FES Time: %04x ", tfestfb);
Arend van Spriel09c7dfa2011-10-18 14:03:10 +02005852 print_hex_dump_bytes("Fb RTS PLCP:", DUMP_PREFIX_OFFSET,
5853 rtspfb, sizeof(txh->RTSPLCPFallback));
Joe Perches18aad4f2012-01-15 00:38:42 -08005854 pr_debug("RTS DUR: %04x ", rtsdfb);
Arend van Spriel09c7dfa2011-10-18 14:03:10 +02005855 print_hex_dump_bytes("PLCP:", DUMP_PREFIX_OFFSET,
5856 fragpfb, sizeof(txh->FragPLCPFallback));
Joe Perches18aad4f2012-01-15 00:38:42 -08005857 pr_debug("DUR: %04x", fragdfb);
5858 pr_debug("\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005859
Joe Perches18aad4f2012-01-15 00:38:42 -08005860 pr_debug("MModeLen: %04x ", mmodelen);
5861 pr_debug("MModeFbrLen: %04x\n", mmodefbrlen);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005862
Joe Perches18aad4f2012-01-15 00:38:42 -08005863 pr_debug("FrameID: %04x\n", tfid);
5864 pr_debug("TxStatus: %04x\n", txs);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005865
Joe Perches18aad4f2012-01-15 00:38:42 -08005866 pr_debug("MaxNumMpdu: %04x\n", mnmpdu);
5867 pr_debug("MaxAggbyte: %04x\n", mabyte);
5868 pr_debug("MaxAggbyte_fb: %04x\n", mabyte_f);
5869 pr_debug("MinByte: %04x\n", mmbyte);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005870
Arend van Spriel09c7dfa2011-10-18 14:03:10 +02005871 print_hex_dump_bytes("RTS PLCP:", DUMP_PREFIX_OFFSET,
5872 rtsph, sizeof(txh->RTSPhyHeader));
5873 print_hex_dump_bytes("RTS Frame:", DUMP_PREFIX_OFFSET,
5874 (u8 *)&rts, sizeof(txh->rts_frame));
Joe Perches18aad4f2012-01-15 00:38:42 -08005875 pr_debug("\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005876}
Joe Perches8ae74652012-01-15 00:38:38 -08005877#endif /* defined(DEBUG) */
Arend van Spriel5b435de2011-10-05 13:19:03 +02005878
Joe Perches8ae74652012-01-15 00:38:38 -08005879#if defined(DEBUG)
Arend van Spriel094b1992011-10-18 14:03:07 +02005880static int
Alwin Beukers44760652011-10-12 20:51:31 +02005881brcms_c_format_flags(const struct brcms_c_bit_desc *bd, u32 flags, char *buf,
Arend van Spriel094b1992011-10-18 14:03:07 +02005882 int len)
Alwin Beukers44760652011-10-12 20:51:31 +02005883{
5884 int i;
5885 char *p = buf;
5886 char hexstr[16];
5887 int slen = 0, nlen = 0;
5888 u32 bit;
5889 const char *name;
5890
5891 if (len < 2 || !buf)
5892 return 0;
5893
5894 buf[0] = '\0';
5895
5896 for (i = 0; flags != 0; i++) {
5897 bit = bd[i].bit;
5898 name = bd[i].name;
5899 if (bit == 0 && flags != 0) {
5900 /* print any unnamed bits */
5901 snprintf(hexstr, 16, "0x%X", flags);
5902 name = hexstr;
5903 flags = 0; /* exit loop */
5904 } else if ((flags & bit) == 0)
5905 continue;
5906 flags &= ~bit;
5907 nlen = strlen(name);
5908 slen += nlen;
5909 /* count btwn flag space */
5910 if (flags != 0)
5911 slen += 1;
5912 /* need NULL char as well */
5913 if (len <= slen)
5914 break;
5915 /* copy NULL char but don't count it */
5916 strncpy(p, name, nlen + 1);
5917 p += nlen;
5918 /* copy btwn flag space and NULL char */
5919 if (flags != 0)
5920 p += snprintf(p, 2, " ");
5921 len -= slen;
5922 }
5923
5924 /* indicate the str was too short */
5925 if (flags != 0) {
5926 if (len < 2)
5927 p -= 2 - len; /* overwrite last char */
5928 p += snprintf(p, 2, ">");
5929 }
5930
5931 return (int)(p - buf);
5932}
Joe Perches8ae74652012-01-15 00:38:38 -08005933#endif /* defined(DEBUG) */
Alwin Beukers44760652011-10-12 20:51:31 +02005934
Joe Perches8ae74652012-01-15 00:38:38 -08005935#if defined(DEBUG)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005936void brcms_c_print_rxh(struct d11rxhdr *rxh)
5937{
5938 u16 len = rxh->RxFrameSize;
5939 u16 phystatus_0 = rxh->PhyRxStatus_0;
5940 u16 phystatus_1 = rxh->PhyRxStatus_1;
5941 u16 phystatus_2 = rxh->PhyRxStatus_2;
5942 u16 phystatus_3 = rxh->PhyRxStatus_3;
5943 u16 macstatus1 = rxh->RxStatus1;
5944 u16 macstatus2 = rxh->RxStatus2;
5945 char flagstr[64];
5946 char lenbuf[20];
Alwin Beukers44760652011-10-12 20:51:31 +02005947 static const struct brcms_c_bit_desc macstat_flags[] = {
Arend van Spriel5b435de2011-10-05 13:19:03 +02005948 {RXS_FCSERR, "FCSErr"},
5949 {RXS_RESPFRAMETX, "Reply"},
5950 {RXS_PBPRES, "PADDING"},
5951 {RXS_DECATMPT, "DeCr"},
5952 {RXS_DECERR, "DeCrErr"},
5953 {RXS_BCNSENT, "Bcn"},
5954 {0, NULL}
5955 };
5956
Joe Perchesc2e6d5a2012-01-15 00:38:43 -08005957 brcmu_dbg_hex_dump(rxh, sizeof(struct d11rxhdr), "Raw RxDesc:\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +02005958
Alwin Beukers44760652011-10-12 20:51:31 +02005959 brcms_c_format_flags(macstat_flags, macstatus1, flagstr, 64);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005960
5961 snprintf(lenbuf, sizeof(lenbuf), "0x%x", len);
5962
Joe Perches18aad4f2012-01-15 00:38:42 -08005963 pr_debug("RxFrameSize: %6s (%d)%s\n", lenbuf, len,
Arend van Spriel5b435de2011-10-05 13:19:03 +02005964 (rxh->PhyRxStatus_0 & PRXS0_SHORTH) ? " short preamble" : "");
Joe Perches18aad4f2012-01-15 00:38:42 -08005965 pr_debug("RxPHYStatus: %04x %04x %04x %04x\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02005966 phystatus_0, phystatus_1, phystatus_2, phystatus_3);
Joe Perches18aad4f2012-01-15 00:38:42 -08005967 pr_debug("RxMACStatus: %x %s\n", macstatus1, flagstr);
5968 pr_debug("RXMACaggtype: %x\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02005969 (macstatus2 & RXS_AGGTYPE_MASK));
Joe Perches18aad4f2012-01-15 00:38:42 -08005970 pr_debug("RxTSFTime: %04x\n", rxh->RxTSFTime);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005971}
Joe Perches8ae74652012-01-15 00:38:38 -08005972#endif /* defined(DEBUG) */
Arend van Spriel5b435de2011-10-05 13:19:03 +02005973
5974u16 brcms_b_rate_shm_offset(struct brcms_hardware *wlc_hw, u8 rate)
5975{
5976 u16 table_ptr;
5977 u8 phy_rate, index;
5978
5979 /* get the phy specific rate encoding for the PLCP SIGNAL field */
5980 if (is_ofdm_rate(rate))
5981 table_ptr = M_RT_DIRMAP_A;
5982 else
5983 table_ptr = M_RT_DIRMAP_B;
5984
5985 /* for a given rate, the LS-nibble of the PLCP SIGNAL field is
5986 * the index into the rate table.
5987 */
5988 phy_rate = rate_info[rate] & BRCMS_RATE_MASK;
5989 index = phy_rate & 0xf;
5990
5991 /* Find the SHM pointer to the rate table entry by looking in the
5992 * Direct-map Table
5993 */
5994 return 2 * brcms_b_read_shm(wlc_hw, table_ptr + (index * 2));
5995}
5996
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02005997static bool
Arend van Spriel5b435de2011-10-05 13:19:03 +02005998brcms_c_prec_enq_head(struct brcms_c_info *wlc, struct pktq *q,
5999 struct sk_buff *pkt, int prec, bool head)
6000{
6001 struct sk_buff *p;
6002 int eprec = -1; /* precedence to evict from */
6003
6004 /* Determine precedence from which to evict packet, if any */
6005 if (pktq_pfull(q, prec))
6006 eprec = prec;
6007 else if (pktq_full(q)) {
6008 p = brcmu_pktq_peek_tail(q, &eprec);
6009 if (eprec > prec) {
6010 wiphy_err(wlc->wiphy, "%s: Failing: eprec %d > prec %d"
6011 "\n", __func__, eprec, prec);
6012 return false;
6013 }
6014 }
6015
6016 /* Evict if needed */
6017 if (eprec >= 0) {
6018 bool discard_oldest;
6019
6020 discard_oldest = ac_bitmap_tst(0, eprec);
6021
6022 /* Refuse newer packet unless configured to discard oldest */
6023 if (eprec == prec && !discard_oldest) {
6024 wiphy_err(wlc->wiphy, "%s: No where to go, prec == %d"
6025 "\n", __func__, prec);
6026 return false;
6027 }
6028
6029 /* Evict packet according to discard policy */
6030 p = discard_oldest ? brcmu_pktq_pdeq(q, eprec) :
6031 brcmu_pktq_pdeq_tail(q, eprec);
6032 brcmu_pkt_buf_free_skb(p);
6033 }
6034
6035 /* Enqueue */
6036 if (head)
6037 p = brcmu_pktq_penq_head(q, prec, pkt);
6038 else
6039 p = brcmu_pktq_penq(q, prec, pkt);
6040
6041 return true;
6042}
6043
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02006044/*
6045 * Attempts to queue a packet onto a multiple-precedence queue,
6046 * if necessary evicting a lower precedence packet from the queue.
6047 *
6048 * 'prec' is the precedence number that has already been mapped
6049 * from the packet priority.
6050 *
6051 * Returns true if packet consumed (queued), false if not.
6052 */
6053static bool brcms_c_prec_enq(struct brcms_c_info *wlc, struct pktq *q,
6054 struct sk_buff *pkt, int prec)
6055{
6056 return brcms_c_prec_enq_head(wlc, q, pkt, prec, false);
6057}
6058
Arend van Spriel5b435de2011-10-05 13:19:03 +02006059void brcms_c_txq_enq(struct brcms_c_info *wlc, struct scb *scb,
6060 struct sk_buff *sdu, uint prec)
6061{
6062 struct brcms_txq_info *qi = wlc->pkt_queue; /* Check me */
6063 struct pktq *q = &qi->q;
6064 int prio;
6065
6066 prio = sdu->priority;
6067
6068 if (!brcms_c_prec_enq(wlc, q, sdu, prec)) {
6069 /*
6070 * we might hit this condtion in case
6071 * packet flooding from mac80211 stack
6072 */
6073 brcmu_pkt_buf_free_skb(sdu);
6074 }
6075}
6076
6077/*
6078 * bcmc_fid_generate:
6079 * Generate frame ID for a BCMC packet. The frag field is not used
6080 * for MC frames so is used as part of the sequence number.
6081 */
6082static inline u16
6083bcmc_fid_generate(struct brcms_c_info *wlc, struct brcms_bss_cfg *bsscfg,
6084 struct d11txh *txh)
6085{
6086 u16 frameid;
6087
6088 frameid = le16_to_cpu(txh->TxFrameID) & ~(TXFID_SEQ_MASK |
6089 TXFID_QUEUE_MASK);
6090 frameid |=
6091 (((wlc->
6092 mc_fid_counter++) << TXFID_SEQ_SHIFT) & TXFID_SEQ_MASK) |
6093 TX_BCMC_FIFO;
6094
6095 return frameid;
6096}
6097
6098static uint
6099brcms_c_calc_ack_time(struct brcms_c_info *wlc, u32 rspec,
6100 u8 preamble_type)
6101{
6102 uint dur = 0;
6103
6104 BCMMSG(wlc->wiphy, "wl%d: rspec 0x%x, preamble_type %d\n",
6105 wlc->pub->unit, rspec, preamble_type);
6106 /*
6107 * Spec 9.6: ack rate is the highest rate in BSSBasicRateSet that
6108 * is less than or equal to the rate of the immediately previous
6109 * frame in the FES
6110 */
6111 rspec = brcms_basic_rate(wlc, rspec);
6112 /* ACK frame len == 14 == 2(fc) + 2(dur) + 6(ra) + 4(fcs) */
6113 dur =
6114 brcms_c_calc_frame_time(wlc, rspec, preamble_type,
6115 (DOT11_ACK_LEN + FCS_LEN));
6116 return dur;
6117}
6118
6119static uint
6120brcms_c_calc_cts_time(struct brcms_c_info *wlc, u32 rspec,
6121 u8 preamble_type)
6122{
6123 BCMMSG(wlc->wiphy, "wl%d: ratespec 0x%x, preamble_type %d\n",
6124 wlc->pub->unit, rspec, preamble_type);
6125 return brcms_c_calc_ack_time(wlc, rspec, preamble_type);
6126}
6127
6128static uint
6129brcms_c_calc_ba_time(struct brcms_c_info *wlc, u32 rspec,
6130 u8 preamble_type)
6131{
6132 BCMMSG(wlc->wiphy, "wl%d: rspec 0x%x, "
6133 "preamble_type %d\n", wlc->pub->unit, rspec, preamble_type);
6134 /*
6135 * Spec 9.6: ack rate is the highest rate in BSSBasicRateSet that
6136 * is less than or equal to the rate of the immediately previous
6137 * frame in the FES
6138 */
6139 rspec = brcms_basic_rate(wlc, rspec);
6140 /* BA len == 32 == 16(ctl hdr) + 4(ba len) + 8(bitmap) + 4(fcs) */
6141 return brcms_c_calc_frame_time(wlc, rspec, preamble_type,
6142 (DOT11_BA_LEN + DOT11_BA_BITMAP_LEN +
6143 FCS_LEN));
6144}
6145
6146/* brcms_c_compute_frame_dur()
6147 *
6148 * Calculate the 802.11 MAC header DUR field for MPDU
6149 * DUR for a single frame = 1 SIFS + 1 ACK
6150 * DUR for a frame with following frags = 3 SIFS + 2 ACK + next frag time
6151 *
6152 * rate MPDU rate in unit of 500kbps
6153 * next_frag_len next MPDU length in bytes
6154 * preamble_type use short/GF or long/MM PLCP header
6155 */
6156static u16
6157brcms_c_compute_frame_dur(struct brcms_c_info *wlc, u32 rate,
6158 u8 preamble_type, uint next_frag_len)
6159{
6160 u16 dur, sifs;
6161
6162 sifs = get_sifs(wlc->band);
6163
6164 dur = sifs;
6165 dur += (u16) brcms_c_calc_ack_time(wlc, rate, preamble_type);
6166
6167 if (next_frag_len) {
6168 /* Double the current DUR to get 2 SIFS + 2 ACKs */
6169 dur *= 2;
6170 /* add another SIFS and the frag time */
6171 dur += sifs;
6172 dur +=
6173 (u16) brcms_c_calc_frame_time(wlc, rate, preamble_type,
6174 next_frag_len);
6175 }
6176 return dur;
6177}
6178
6179/* The opposite of brcms_c_calc_frame_time */
6180static uint
6181brcms_c_calc_frame_len(struct brcms_c_info *wlc, u32 ratespec,
6182 u8 preamble_type, uint dur)
6183{
6184 uint nsyms, mac_len, Ndps, kNdps;
6185 uint rate = rspec2rate(ratespec);
6186
6187 BCMMSG(wlc->wiphy, "wl%d: rspec 0x%x, preamble_type %d, dur %d\n",
6188 wlc->pub->unit, ratespec, preamble_type, dur);
6189
6190 if (is_mcs_rate(ratespec)) {
6191 uint mcs = ratespec & RSPEC_RATE_MASK;
6192 int tot_streams = mcs_2_txstreams(mcs) + rspec_stc(ratespec);
6193 dur -= PREN_PREAMBLE + (tot_streams * PREN_PREAMBLE_EXT);
6194 /* payload calculation matches that of regular ofdm */
6195 if (wlc->band->bandtype == BRCM_BAND_2G)
6196 dur -= DOT11_OFDM_SIGNAL_EXTENSION;
6197 /* kNdbps = kbps * 4 */
6198 kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec),
6199 rspec_issgi(ratespec)) * 4;
6200 nsyms = dur / APHY_SYMBOL_TIME;
6201 mac_len =
6202 ((nsyms * kNdps) -
6203 ((APHY_SERVICE_NBITS + APHY_TAIL_NBITS) * 1000)) / 8000;
6204 } else if (is_ofdm_rate(ratespec)) {
6205 dur -= APHY_PREAMBLE_TIME;
6206 dur -= APHY_SIGNAL_TIME;
6207 /* Ndbps = Mbps * 4 = rate(500Kbps) * 2 */
6208 Ndps = rate * 2;
6209 nsyms = dur / APHY_SYMBOL_TIME;
6210 mac_len =
6211 ((nsyms * Ndps) -
6212 (APHY_SERVICE_NBITS + APHY_TAIL_NBITS)) / 8;
6213 } else {
6214 if (preamble_type & BRCMS_SHORT_PREAMBLE)
6215 dur -= BPHY_PLCP_SHORT_TIME;
6216 else
6217 dur -= BPHY_PLCP_TIME;
6218 mac_len = dur * rate;
6219 /* divide out factor of 2 in rate (1/2 mbps) */
6220 mac_len = mac_len / 8 / 2;
6221 }
6222 return mac_len;
6223}
6224
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02006225/*
6226 * Return true if the specified rate is supported by the specified band.
6227 * BRCM_BAND_AUTO indicates the current band.
6228 */
6229static bool brcms_c_valid_rate(struct brcms_c_info *wlc, u32 rspec, int band,
6230 bool verbose)
6231{
6232 struct brcms_c_rateset *hw_rateset;
6233 uint i;
6234
6235 if ((band == BRCM_BAND_AUTO) || (band == wlc->band->bandtype))
6236 hw_rateset = &wlc->band->hw_rateset;
6237 else if (wlc->pub->_nbands > 1)
6238 hw_rateset = &wlc->bandstate[OTHERBANDUNIT(wlc)]->hw_rateset;
6239 else
6240 /* other band specified and we are a single band device */
6241 return false;
6242
6243 /* check if this is a mimo rate */
6244 if (is_mcs_rate(rspec)) {
6245 if ((rspec & RSPEC_RATE_MASK) >= MCS_TABLE_SIZE)
6246 goto error;
6247
6248 return isset(hw_rateset->mcs, (rspec & RSPEC_RATE_MASK));
6249 }
6250
6251 for (i = 0; i < hw_rateset->count; i++)
6252 if (hw_rateset->rates[i] == rspec2rate(rspec))
6253 return true;
6254 error:
6255 if (verbose)
6256 wiphy_err(wlc->wiphy, "wl%d: valid_rate: rate spec 0x%x "
6257 "not in hw_rateset\n", wlc->pub->unit, rspec);
6258
6259 return false;
6260}
6261
Arend van Spriel5b435de2011-10-05 13:19:03 +02006262static u32
6263mac80211_wlc_set_nrate(struct brcms_c_info *wlc, struct brcms_band *cur_band,
6264 u32 int_val)
6265{
6266 u8 stf = (int_val & NRATE_STF_MASK) >> NRATE_STF_SHIFT;
6267 u8 rate = int_val & NRATE_RATE_MASK;
6268 u32 rspec;
6269 bool ismcs = ((int_val & NRATE_MCS_INUSE) == NRATE_MCS_INUSE);
6270 bool issgi = ((int_val & NRATE_SGI_MASK) >> NRATE_SGI_SHIFT);
6271 bool override_mcs_only = ((int_val & NRATE_OVERRIDE_MCS_ONLY)
6272 == NRATE_OVERRIDE_MCS_ONLY);
6273 int bcmerror = 0;
6274
6275 if (!ismcs)
6276 return (u32) rate;
6277
6278 /* validate the combination of rate/mcs/stf is allowed */
6279 if ((wlc->pub->_n_enab & SUPPORT_11N) && ismcs) {
6280 /* mcs only allowed when nmode */
6281 if (stf > PHY_TXC1_MODE_SDM) {
6282 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid stf\n",
6283 wlc->pub->unit, __func__);
6284 bcmerror = -EINVAL;
6285 goto done;
6286 }
6287
6288 /* mcs 32 is a special case, DUP mode 40 only */
6289 if (rate == 32) {
6290 if (!CHSPEC_IS40(wlc->home_chanspec) ||
6291 ((stf != PHY_TXC1_MODE_SISO)
6292 && (stf != PHY_TXC1_MODE_CDD))) {
6293 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid mcs "
6294 "32\n", wlc->pub->unit, __func__);
6295 bcmerror = -EINVAL;
6296 goto done;
6297 }
6298 /* mcs > 7 must use stf SDM */
6299 } else if (rate > HIGHEST_SINGLE_STREAM_MCS) {
6300 /* mcs > 7 must use stf SDM */
6301 if (stf != PHY_TXC1_MODE_SDM) {
6302 BCMMSG(wlc->wiphy, "wl%d: enabling "
6303 "SDM mode for mcs %d\n",
6304 wlc->pub->unit, rate);
6305 stf = PHY_TXC1_MODE_SDM;
6306 }
6307 } else {
6308 /*
6309 * MCS 0-7 may use SISO, CDD, and for
6310 * phy_rev >= 3 STBC
6311 */
6312 if ((stf > PHY_TXC1_MODE_STBC) ||
6313 (!BRCMS_STBC_CAP_PHY(wlc)
6314 && (stf == PHY_TXC1_MODE_STBC))) {
6315 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid STBC"
6316 "\n", wlc->pub->unit, __func__);
6317 bcmerror = -EINVAL;
6318 goto done;
6319 }
6320 }
6321 } else if (is_ofdm_rate(rate)) {
6322 if ((stf != PHY_TXC1_MODE_CDD) && (stf != PHY_TXC1_MODE_SISO)) {
6323 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid OFDM\n",
6324 wlc->pub->unit, __func__);
6325 bcmerror = -EINVAL;
6326 goto done;
6327 }
6328 } else if (is_cck_rate(rate)) {
6329 if ((cur_band->bandtype != BRCM_BAND_2G)
6330 || (stf != PHY_TXC1_MODE_SISO)) {
6331 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid CCK\n",
6332 wlc->pub->unit, __func__);
6333 bcmerror = -EINVAL;
6334 goto done;
6335 }
6336 } else {
6337 wiphy_err(wlc->wiphy, "wl%d: %s: Unknown rate type\n",
6338 wlc->pub->unit, __func__);
6339 bcmerror = -EINVAL;
6340 goto done;
6341 }
6342 /* make sure multiple antennae are available for non-siso rates */
6343 if ((stf != PHY_TXC1_MODE_SISO) && (wlc->stf->txstreams == 1)) {
6344 wiphy_err(wlc->wiphy, "wl%d: %s: SISO antenna but !SISO "
6345 "request\n", wlc->pub->unit, __func__);
6346 bcmerror = -EINVAL;
6347 goto done;
6348 }
6349
6350 rspec = rate;
6351 if (ismcs) {
6352 rspec |= RSPEC_MIMORATE;
6353 /* For STBC populate the STC field of the ratespec */
6354 if (stf == PHY_TXC1_MODE_STBC) {
6355 u8 stc;
6356 stc = 1; /* Nss for single stream is always 1 */
6357 rspec |= (stc << RSPEC_STC_SHIFT);
6358 }
6359 }
6360
6361 rspec |= (stf << RSPEC_STF_SHIFT);
6362
6363 if (override_mcs_only)
6364 rspec |= RSPEC_OVERRIDE_MCS_ONLY;
6365
6366 if (issgi)
6367 rspec |= RSPEC_SHORT_GI;
6368
6369 if ((rate != 0)
6370 && !brcms_c_valid_rate(wlc, rspec, cur_band->bandtype, true))
6371 return rate;
6372
6373 return rspec;
6374done:
6375 return rate;
6376}
6377
6378/*
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02006379 * Compute PLCP, but only requires actual rate and length of pkt.
6380 * Rate is given in the driver standard multiple of 500 kbps.
6381 * le is set for 11 Mbps rate if necessary.
6382 * Broken out for PRQ.
6383 */
6384
6385static void brcms_c_cck_plcp_set(struct brcms_c_info *wlc, int rate_500,
6386 uint length, u8 *plcp)
6387{
6388 u16 usec = 0;
6389 u8 le = 0;
6390
6391 switch (rate_500) {
6392 case BRCM_RATE_1M:
6393 usec = length << 3;
6394 break;
6395 case BRCM_RATE_2M:
6396 usec = length << 2;
6397 break;
6398 case BRCM_RATE_5M5:
6399 usec = (length << 4) / 11;
6400 if ((length << 4) - (usec * 11) > 0)
6401 usec++;
6402 break;
6403 case BRCM_RATE_11M:
6404 usec = (length << 3) / 11;
6405 if ((length << 3) - (usec * 11) > 0) {
6406 usec++;
6407 if ((usec * 11) - (length << 3) >= 8)
6408 le = D11B_PLCP_SIGNAL_LE;
6409 }
6410 break;
6411
6412 default:
6413 wiphy_err(wlc->wiphy,
6414 "brcms_c_cck_plcp_set: unsupported rate %d\n",
6415 rate_500);
6416 rate_500 = BRCM_RATE_1M;
6417 usec = length << 3;
6418 break;
6419 }
6420 /* PLCP signal byte */
6421 plcp[0] = rate_500 * 5; /* r (500kbps) * 5 == r (100kbps) */
6422 /* PLCP service byte */
6423 plcp[1] = (u8) (le | D11B_PLCP_SIGNAL_LOCKED);
6424 /* PLCP length u16, little endian */
6425 plcp[2] = usec & 0xff;
6426 plcp[3] = (usec >> 8) & 0xff;
6427 /* PLCP CRC16 */
6428 plcp[4] = 0;
6429 plcp[5] = 0;
6430}
6431
6432/* Rate: 802.11 rate code, length: PSDU length in octets */
6433static void brcms_c_compute_mimo_plcp(u32 rspec, uint length, u8 *plcp)
6434{
6435 u8 mcs = (u8) (rspec & RSPEC_RATE_MASK);
6436 plcp[0] = mcs;
6437 if (rspec_is40mhz(rspec) || (mcs == 32))
6438 plcp[0] |= MIMO_PLCP_40MHZ;
6439 BRCMS_SET_MIMO_PLCP_LEN(plcp, length);
6440 plcp[3] = rspec_mimoplcp3(rspec); /* rspec already holds this byte */
6441 plcp[3] |= 0x7; /* set smoothing, not sounding ppdu & reserved */
6442 plcp[4] = 0; /* number of extension spatial streams bit 0 & 1 */
6443 plcp[5] = 0;
6444}
6445
6446/* Rate: 802.11 rate code, length: PSDU length in octets */
6447static void
6448brcms_c_compute_ofdm_plcp(u32 rspec, u32 length, u8 *plcp)
6449{
6450 u8 rate_signal;
6451 u32 tmp = 0;
6452 int rate = rspec2rate(rspec);
6453
6454 /*
6455 * encode rate per 802.11a-1999 sec 17.3.4.1, with lsb
6456 * transmitted first
6457 */
6458 rate_signal = rate_info[rate] & BRCMS_RATE_MASK;
6459 memset(plcp, 0, D11_PHY_HDR_LEN);
6460 D11A_PHY_HDR_SRATE((struct ofdm_phy_hdr *) plcp, rate_signal);
6461
6462 tmp = (length & 0xfff) << 5;
6463 plcp[2] |= (tmp >> 16) & 0xff;
6464 plcp[1] |= (tmp >> 8) & 0xff;
6465 plcp[0] |= tmp & 0xff;
6466}
6467
6468/* Rate: 802.11 rate code, length: PSDU length in octets */
6469static void brcms_c_compute_cck_plcp(struct brcms_c_info *wlc, u32 rspec,
6470 uint length, u8 *plcp)
6471{
6472 int rate = rspec2rate(rspec);
6473
6474 brcms_c_cck_plcp_set(wlc, rate, length, plcp);
6475}
6476
6477static void
6478brcms_c_compute_plcp(struct brcms_c_info *wlc, u32 rspec,
6479 uint length, u8 *plcp)
6480{
6481 if (is_mcs_rate(rspec))
6482 brcms_c_compute_mimo_plcp(rspec, length, plcp);
6483 else if (is_ofdm_rate(rspec))
6484 brcms_c_compute_ofdm_plcp(rspec, length, plcp);
6485 else
6486 brcms_c_compute_cck_plcp(wlc, rspec, length, plcp);
6487}
6488
6489/* brcms_c_compute_rtscts_dur()
6490 *
6491 * Calculate the 802.11 MAC header DUR field for an RTS or CTS frame
6492 * DUR for normal RTS/CTS w/ frame = 3 SIFS + 1 CTS + next frame time + 1 ACK
6493 * DUR for CTS-TO-SELF w/ frame = 2 SIFS + next frame time + 1 ACK
6494 *
6495 * cts cts-to-self or rts/cts
6496 * rts_rate rts or cts rate in unit of 500kbps
6497 * rate next MPDU rate in unit of 500kbps
6498 * frame_len next MPDU frame length in bytes
6499 */
6500u16
6501brcms_c_compute_rtscts_dur(struct brcms_c_info *wlc, bool cts_only,
6502 u32 rts_rate,
6503 u32 frame_rate, u8 rts_preamble_type,
6504 u8 frame_preamble_type, uint frame_len, bool ba)
6505{
6506 u16 dur, sifs;
6507
6508 sifs = get_sifs(wlc->band);
6509
6510 if (!cts_only) {
6511 /* RTS/CTS */
6512 dur = 3 * sifs;
6513 dur +=
6514 (u16) brcms_c_calc_cts_time(wlc, rts_rate,
6515 rts_preamble_type);
6516 } else {
6517 /* CTS-TO-SELF */
6518 dur = 2 * sifs;
6519 }
6520
6521 dur +=
6522 (u16) brcms_c_calc_frame_time(wlc, frame_rate, frame_preamble_type,
6523 frame_len);
6524 if (ba)
6525 dur +=
6526 (u16) brcms_c_calc_ba_time(wlc, frame_rate,
6527 BRCMS_SHORT_PREAMBLE);
6528 else
6529 dur +=
6530 (u16) brcms_c_calc_ack_time(wlc, frame_rate,
6531 frame_preamble_type);
6532 return dur;
6533}
6534
6535static u16 brcms_c_phytxctl1_calc(struct brcms_c_info *wlc, u32 rspec)
6536{
6537 u16 phyctl1 = 0;
6538 u16 bw;
6539
6540 if (BRCMS_ISLCNPHY(wlc->band)) {
6541 bw = PHY_TXC1_BW_20MHZ;
6542 } else {
6543 bw = rspec_get_bw(rspec);
6544 /* 10Mhz is not supported yet */
6545 if (bw < PHY_TXC1_BW_20MHZ) {
6546 wiphy_err(wlc->wiphy, "phytxctl1_calc: bw %d is "
6547 "not supported yet, set to 20L\n", bw);
6548 bw = PHY_TXC1_BW_20MHZ;
6549 }
6550 }
6551
6552 if (is_mcs_rate(rspec)) {
6553 uint mcs = rspec & RSPEC_RATE_MASK;
6554
6555 /* bw, stf, coding-type is part of rspec_phytxbyte2 returns */
6556 phyctl1 = rspec_phytxbyte2(rspec);
6557 /* set the upper byte of phyctl1 */
6558 phyctl1 |= (mcs_table[mcs].tx_phy_ctl3 << 8);
6559 } else if (is_cck_rate(rspec) && !BRCMS_ISLCNPHY(wlc->band)
6560 && !BRCMS_ISSSLPNPHY(wlc->band)) {
6561 /*
6562 * In CCK mode LPPHY overloads OFDM Modulation bits with CCK
6563 * Data Rate. Eventually MIMOPHY would also be converted to
6564 * this format
6565 */
6566 /* 0 = 1Mbps; 1 = 2Mbps; 2 = 5.5Mbps; 3 = 11Mbps */
6567 phyctl1 = (bw | (rspec_stf(rspec) << PHY_TXC1_MODE_SHIFT));
6568 } else { /* legacy OFDM/CCK */
6569 s16 phycfg;
6570 /* get the phyctl byte from rate phycfg table */
6571 phycfg = brcms_c_rate_legacy_phyctl(rspec2rate(rspec));
6572 if (phycfg == -1) {
6573 wiphy_err(wlc->wiphy, "phytxctl1_calc: wrong "
6574 "legacy OFDM/CCK rate\n");
6575 phycfg = 0;
6576 }
6577 /* set the upper byte of phyctl1 */
6578 phyctl1 =
6579 (bw | (phycfg << 8) |
6580 (rspec_stf(rspec) << PHY_TXC1_MODE_SHIFT));
6581 }
6582 return phyctl1;
6583}
6584
6585/*
Arend van Spriel5b435de2011-10-05 13:19:03 +02006586 * Add struct d11txh, struct cck_phy_hdr.
6587 *
6588 * 'p' data must start with 802.11 MAC header
6589 * 'p' must allow enough bytes of local headers to be "pushed" onto the packet
6590 *
6591 * headroom == D11_PHY_HDR_LEN + D11_TXH_LEN (D11_TXH_LEN is now 104 bytes)
6592 *
6593 */
6594static u16
6595brcms_c_d11hdrs_mac80211(struct brcms_c_info *wlc, struct ieee80211_hw *hw,
6596 struct sk_buff *p, struct scb *scb, uint frag,
6597 uint nfrags, uint queue, uint next_frag_len)
6598{
6599 struct ieee80211_hdr *h;
6600 struct d11txh *txh;
6601 u8 *plcp, plcp_fallback[D11_PHY_HDR_LEN];
6602 int len, phylen, rts_phylen;
6603 u16 mch, phyctl, xfts, mainrates;
6604 u16 seq = 0, mcl = 0, status = 0, frameid = 0;
6605 u32 rspec[2] = { BRCM_RATE_1M, BRCM_RATE_1M };
6606 u32 rts_rspec[2] = { BRCM_RATE_1M, BRCM_RATE_1M };
6607 bool use_rts = false;
6608 bool use_cts = false;
6609 bool use_rifs = false;
6610 bool short_preamble[2] = { false, false };
6611 u8 preamble_type[2] = { BRCMS_LONG_PREAMBLE, BRCMS_LONG_PREAMBLE };
6612 u8 rts_preamble_type[2] = { BRCMS_LONG_PREAMBLE, BRCMS_LONG_PREAMBLE };
6613 u8 *rts_plcp, rts_plcp_fallback[D11_PHY_HDR_LEN];
6614 struct ieee80211_rts *rts = NULL;
6615 bool qos;
6616 uint ac;
6617 bool hwtkmic = false;
6618 u16 mimo_ctlchbw = PHY_TXC1_BW_20MHZ;
6619#define ANTCFG_NONE 0xFF
6620 u8 antcfg = ANTCFG_NONE;
6621 u8 fbantcfg = ANTCFG_NONE;
6622 uint phyctl1_stf = 0;
6623 u16 durid = 0;
6624 struct ieee80211_tx_rate *txrate[2];
6625 int k;
6626 struct ieee80211_tx_info *tx_info;
6627 bool is_mcs;
6628 u16 mimo_txbw;
6629 u8 mimo_preamble_type;
6630
6631 /* locate 802.11 MAC header */
6632 h = (struct ieee80211_hdr *)(p->data);
6633 qos = ieee80211_is_data_qos(h->frame_control);
6634
6635 /* compute length of frame in bytes for use in PLCP computations */
Arend van Sprielad4d71f2011-11-10 20:30:26 +01006636 len = p->len;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006637 phylen = len + FCS_LEN;
6638
6639 /* Get tx_info */
6640 tx_info = IEEE80211_SKB_CB(p);
6641
6642 /* add PLCP */
6643 plcp = skb_push(p, D11_PHY_HDR_LEN);
6644
6645 /* add Broadcom tx descriptor header */
6646 txh = (struct d11txh *) skb_push(p, D11_TXH_LEN);
6647 memset(txh, 0, D11_TXH_LEN);
6648
6649 /* setup frameid */
6650 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
6651 /* non-AP STA should never use BCMC queue */
6652 if (queue == TX_BCMC_FIFO) {
6653 wiphy_err(wlc->wiphy, "wl%d: %s: ASSERT queue == "
6654 "TX_BCMC!\n", wlc->pub->unit, __func__);
6655 frameid = bcmc_fid_generate(wlc, NULL, txh);
6656 } else {
6657 /* Increment the counter for first fragment */
6658 if (tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
6659 scb->seqnum[p->priority]++;
6660
6661 /* extract fragment number from frame first */
6662 seq = le16_to_cpu(h->seq_ctrl) & FRAGNUM_MASK;
6663 seq |= (scb->seqnum[p->priority] << SEQNUM_SHIFT);
6664 h->seq_ctrl = cpu_to_le16(seq);
6665
6666 frameid = ((seq << TXFID_SEQ_SHIFT) & TXFID_SEQ_MASK) |
6667 (queue & TXFID_QUEUE_MASK);
6668 }
6669 }
6670 frameid |= queue & TXFID_QUEUE_MASK;
6671
6672 /* set the ignpmq bit for all pkts tx'd in PS mode and for beacons */
6673 if (ieee80211_is_beacon(h->frame_control))
6674 mcl |= TXC_IGNOREPMQ;
6675
6676 txrate[0] = tx_info->control.rates;
6677 txrate[1] = txrate[0] + 1;
6678
6679 /*
6680 * if rate control algorithm didn't give us a fallback
6681 * rate, use the primary rate
6682 */
6683 if (txrate[1]->idx < 0)
6684 txrate[1] = txrate[0];
6685
6686 for (k = 0; k < hw->max_rates; k++) {
6687 is_mcs = txrate[k]->flags & IEEE80211_TX_RC_MCS ? true : false;
6688 if (!is_mcs) {
6689 if ((txrate[k]->idx >= 0)
6690 && (txrate[k]->idx <
6691 hw->wiphy->bands[tx_info->band]->n_bitrates)) {
6692 rspec[k] =
6693 hw->wiphy->bands[tx_info->band]->
6694 bitrates[txrate[k]->idx].hw_value;
6695 short_preamble[k] =
6696 txrate[k]->
6697 flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE ?
6698 true : false;
6699 } else {
6700 rspec[k] = BRCM_RATE_1M;
6701 }
6702 } else {
6703 rspec[k] = mac80211_wlc_set_nrate(wlc, wlc->band,
6704 NRATE_MCS_INUSE | txrate[k]->idx);
6705 }
6706
6707 /*
6708 * Currently only support same setting for primay and
6709 * fallback rates. Unify flags for each rate into a
6710 * single value for the frame
6711 */
6712 use_rts |=
6713 txrate[k]->
6714 flags & IEEE80211_TX_RC_USE_RTS_CTS ? true : false;
6715 use_cts |=
6716 txrate[k]->
6717 flags & IEEE80211_TX_RC_USE_CTS_PROTECT ? true : false;
6718
6719
6720 /*
6721 * (1) RATE:
6722 * determine and validate primary rate
6723 * and fallback rates
6724 */
6725 if (!rspec_active(rspec[k])) {
6726 rspec[k] = BRCM_RATE_1M;
6727 } else {
6728 if (!is_multicast_ether_addr(h->addr1)) {
6729 /* set tx antenna config */
6730 brcms_c_antsel_antcfg_get(wlc->asi, false,
6731 false, 0, 0, &antcfg, &fbantcfg);
6732 }
6733 }
6734 }
6735
6736 phyctl1_stf = wlc->stf->ss_opmode;
6737
6738 if (wlc->pub->_n_enab & SUPPORT_11N) {
6739 for (k = 0; k < hw->max_rates; k++) {
6740 /*
6741 * apply siso/cdd to single stream mcs's or ofdm
6742 * if rspec is auto selected
6743 */
6744 if (((is_mcs_rate(rspec[k]) &&
6745 is_single_stream(rspec[k] & RSPEC_RATE_MASK)) ||
6746 is_ofdm_rate(rspec[k]))
6747 && ((rspec[k] & RSPEC_OVERRIDE_MCS_ONLY)
6748 || !(rspec[k] & RSPEC_OVERRIDE))) {
6749 rspec[k] &= ~(RSPEC_STF_MASK | RSPEC_STC_MASK);
6750
6751 /* For SISO MCS use STBC if possible */
6752 if (is_mcs_rate(rspec[k])
6753 && BRCMS_STF_SS_STBC_TX(wlc, scb)) {
6754 u8 stc;
6755
6756 /* Nss for single stream is always 1 */
6757 stc = 1;
6758 rspec[k] |= (PHY_TXC1_MODE_STBC <<
6759 RSPEC_STF_SHIFT) |
6760 (stc << RSPEC_STC_SHIFT);
6761 } else
6762 rspec[k] |=
6763 (phyctl1_stf << RSPEC_STF_SHIFT);
6764 }
6765
6766 /*
6767 * Is the phy configured to use 40MHZ frames? If
6768 * so then pick the desired txbw
6769 */
6770 if (brcms_chspec_bw(wlc->chanspec) == BRCMS_40_MHZ) {
6771 /* default txbw is 20in40 SB */
6772 mimo_ctlchbw = mimo_txbw =
6773 CHSPEC_SB_UPPER(wlc_phy_chanspec_get(
6774 wlc->band->pi))
6775 ? PHY_TXC1_BW_20MHZ_UP : PHY_TXC1_BW_20MHZ;
6776
6777 if (is_mcs_rate(rspec[k])) {
6778 /* mcs 32 must be 40b/w DUP */
6779 if ((rspec[k] & RSPEC_RATE_MASK)
6780 == 32) {
6781 mimo_txbw =
6782 PHY_TXC1_BW_40MHZ_DUP;
6783 /* use override */
6784 } else if (wlc->mimo_40txbw != AUTO)
6785 mimo_txbw = wlc->mimo_40txbw;
6786 /* else check if dst is using 40 Mhz */
6787 else if (scb->flags & SCB_IS40)
6788 mimo_txbw = PHY_TXC1_BW_40MHZ;
6789 } else if (is_ofdm_rate(rspec[k])) {
6790 if (wlc->ofdm_40txbw != AUTO)
6791 mimo_txbw = wlc->ofdm_40txbw;
6792 } else if (wlc->cck_40txbw != AUTO) {
6793 mimo_txbw = wlc->cck_40txbw;
6794 }
6795 } else {
6796 /*
6797 * mcs32 is 40 b/w only.
6798 * This is possible for probe packets on
6799 * a STA during SCAN
6800 */
6801 if ((rspec[k] & RSPEC_RATE_MASK) == 32)
6802 /* mcs 0 */
6803 rspec[k] = RSPEC_MIMORATE;
6804
6805 mimo_txbw = PHY_TXC1_BW_20MHZ;
6806 }
6807
6808 /* Set channel width */
6809 rspec[k] &= ~RSPEC_BW_MASK;
6810 if ((k == 0) || ((k > 0) && is_mcs_rate(rspec[k])))
6811 rspec[k] |= (mimo_txbw << RSPEC_BW_SHIFT);
6812 else
6813 rspec[k] |= (mimo_ctlchbw << RSPEC_BW_SHIFT);
6814
6815 /* Disable short GI, not supported yet */
6816 rspec[k] &= ~RSPEC_SHORT_GI;
6817
6818 mimo_preamble_type = BRCMS_MM_PREAMBLE;
6819 if (txrate[k]->flags & IEEE80211_TX_RC_GREEN_FIELD)
6820 mimo_preamble_type = BRCMS_GF_PREAMBLE;
6821
6822 if ((txrate[k]->flags & IEEE80211_TX_RC_MCS)
6823 && (!is_mcs_rate(rspec[k]))) {
6824 wiphy_err(wlc->wiphy, "wl%d: %s: IEEE80211_TX_"
6825 "RC_MCS != is_mcs_rate(rspec)\n",
6826 wlc->pub->unit, __func__);
6827 }
6828
6829 if (is_mcs_rate(rspec[k])) {
6830 preamble_type[k] = mimo_preamble_type;
6831
6832 /*
6833 * if SGI is selected, then forced mm
6834 * for single stream
6835 */
6836 if ((rspec[k] & RSPEC_SHORT_GI)
6837 && is_single_stream(rspec[k] &
6838 RSPEC_RATE_MASK))
6839 preamble_type[k] = BRCMS_MM_PREAMBLE;
6840 }
6841
6842 /* should be better conditionalized */
6843 if (!is_mcs_rate(rspec[0])
6844 && (tx_info->control.rates[0].
6845 flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE))
6846 preamble_type[k] = BRCMS_SHORT_PREAMBLE;
6847 }
6848 } else {
6849 for (k = 0; k < hw->max_rates; k++) {
6850 /* Set ctrlchbw as 20Mhz */
6851 rspec[k] &= ~RSPEC_BW_MASK;
6852 rspec[k] |= (PHY_TXC1_BW_20MHZ << RSPEC_BW_SHIFT);
6853
6854 /* for nphy, stf of ofdm frames must follow policies */
6855 if (BRCMS_ISNPHY(wlc->band) && is_ofdm_rate(rspec[k])) {
6856 rspec[k] &= ~RSPEC_STF_MASK;
6857 rspec[k] |= phyctl1_stf << RSPEC_STF_SHIFT;
6858 }
6859 }
6860 }
6861
6862 /* Reset these for use with AMPDU's */
6863 txrate[0]->count = 0;
6864 txrate[1]->count = 0;
6865
6866 /* (2) PROTECTION, may change rspec */
6867 if ((ieee80211_is_data(h->frame_control) ||
6868 ieee80211_is_mgmt(h->frame_control)) &&
6869 (phylen > wlc->RTSThresh) && !is_multicast_ether_addr(h->addr1))
6870 use_rts = true;
6871
6872 /* (3) PLCP: determine PLCP header and MAC duration,
6873 * fill struct d11txh */
6874 brcms_c_compute_plcp(wlc, rspec[0], phylen, plcp);
6875 brcms_c_compute_plcp(wlc, rspec[1], phylen, plcp_fallback);
6876 memcpy(&txh->FragPLCPFallback,
6877 plcp_fallback, sizeof(txh->FragPLCPFallback));
6878
6879 /* Length field now put in CCK FBR CRC field */
6880 if (is_cck_rate(rspec[1])) {
6881 txh->FragPLCPFallback[4] = phylen & 0xff;
6882 txh->FragPLCPFallback[5] = (phylen & 0xff00) >> 8;
6883 }
6884
6885 /* MIMO-RATE: need validation ?? */
6886 mainrates = is_ofdm_rate(rspec[0]) ?
6887 D11A_PHY_HDR_GRATE((struct ofdm_phy_hdr *) plcp) :
6888 plcp[0];
6889
6890 /* DUR field for main rate */
6891 if (!ieee80211_is_pspoll(h->frame_control) &&
6892 !is_multicast_ether_addr(h->addr1) && !use_rifs) {
6893 durid =
6894 brcms_c_compute_frame_dur(wlc, rspec[0], preamble_type[0],
6895 next_frag_len);
6896 h->duration_id = cpu_to_le16(durid);
6897 } else if (use_rifs) {
6898 /* NAV protect to end of next max packet size */
6899 durid =
6900 (u16) brcms_c_calc_frame_time(wlc, rspec[0],
6901 preamble_type[0],
6902 DOT11_MAX_FRAG_LEN);
6903 durid += RIFS_11N_TIME;
6904 h->duration_id = cpu_to_le16(durid);
6905 }
6906
6907 /* DUR field for fallback rate */
6908 if (ieee80211_is_pspoll(h->frame_control))
6909 txh->FragDurFallback = h->duration_id;
6910 else if (is_multicast_ether_addr(h->addr1) || use_rifs)
6911 txh->FragDurFallback = 0;
6912 else {
6913 durid = brcms_c_compute_frame_dur(wlc, rspec[1],
6914 preamble_type[1], next_frag_len);
6915 txh->FragDurFallback = cpu_to_le16(durid);
6916 }
6917
6918 /* (4) MAC-HDR: MacTxControlLow */
6919 if (frag == 0)
6920 mcl |= TXC_STARTMSDU;
6921
6922 if (!is_multicast_ether_addr(h->addr1))
6923 mcl |= TXC_IMMEDACK;
6924
6925 if (wlc->band->bandtype == BRCM_BAND_5G)
6926 mcl |= TXC_FREQBAND_5G;
6927
6928 if (CHSPEC_IS40(wlc_phy_chanspec_get(wlc->band->pi)))
6929 mcl |= TXC_BW_40;
6930
6931 /* set AMIC bit if using hardware TKIP MIC */
6932 if (hwtkmic)
6933 mcl |= TXC_AMIC;
6934
6935 txh->MacTxControlLow = cpu_to_le16(mcl);
6936
6937 /* MacTxControlHigh */
6938 mch = 0;
6939
6940 /* Set fallback rate preamble type */
6941 if ((preamble_type[1] == BRCMS_SHORT_PREAMBLE) ||
6942 (preamble_type[1] == BRCMS_GF_PREAMBLE)) {
6943 if (rspec2rate(rspec[1]) != BRCM_RATE_1M)
6944 mch |= TXC_PREAMBLE_DATA_FB_SHORT;
6945 }
6946
6947 /* MacFrameControl */
6948 memcpy(&txh->MacFrameControl, &h->frame_control, sizeof(u16));
6949 txh->TxFesTimeNormal = cpu_to_le16(0);
6950
6951 txh->TxFesTimeFallback = cpu_to_le16(0);
6952
6953 /* TxFrameRA */
6954 memcpy(&txh->TxFrameRA, &h->addr1, ETH_ALEN);
6955
6956 /* TxFrameID */
6957 txh->TxFrameID = cpu_to_le16(frameid);
6958
6959 /*
6960 * TxStatus, Note the case of recreating the first frag of a suppressed
6961 * frame then we may need to reset the retry cnt's via the status reg
6962 */
6963 txh->TxStatus = cpu_to_le16(status);
6964
6965 /*
6966 * extra fields for ucode AMPDU aggregation, the new fields are added to
6967 * the END of previous structure so that it's compatible in driver.
6968 */
6969 txh->MaxNMpdus = cpu_to_le16(0);
6970 txh->MaxABytes_MRT = cpu_to_le16(0);
6971 txh->MaxABytes_FBR = cpu_to_le16(0);
6972 txh->MinMBytes = cpu_to_le16(0);
6973
6974 /* (5) RTS/CTS: determine RTS/CTS PLCP header and MAC duration,
6975 * furnish struct d11txh */
6976 /* RTS PLCP header and RTS frame */
6977 if (use_rts || use_cts) {
6978 if (use_rts && use_cts)
6979 use_cts = false;
6980
6981 for (k = 0; k < 2; k++) {
6982 rts_rspec[k] = brcms_c_rspec_to_rts_rspec(wlc, rspec[k],
6983 false,
6984 mimo_ctlchbw);
6985 }
6986
6987 if (!is_ofdm_rate(rts_rspec[0]) &&
6988 !((rspec2rate(rts_rspec[0]) == BRCM_RATE_1M) ||
6989 (wlc->PLCPHdr_override == BRCMS_PLCP_LONG))) {
6990 rts_preamble_type[0] = BRCMS_SHORT_PREAMBLE;
6991 mch |= TXC_PREAMBLE_RTS_MAIN_SHORT;
6992 }
6993
6994 if (!is_ofdm_rate(rts_rspec[1]) &&
6995 !((rspec2rate(rts_rspec[1]) == BRCM_RATE_1M) ||
6996 (wlc->PLCPHdr_override == BRCMS_PLCP_LONG))) {
6997 rts_preamble_type[1] = BRCMS_SHORT_PREAMBLE;
6998 mch |= TXC_PREAMBLE_RTS_FB_SHORT;
6999 }
7000
7001 /* RTS/CTS additions to MacTxControlLow */
7002 if (use_cts) {
7003 txh->MacTxControlLow |= cpu_to_le16(TXC_SENDCTS);
7004 } else {
7005 txh->MacTxControlLow |= cpu_to_le16(TXC_SENDRTS);
7006 txh->MacTxControlLow |= cpu_to_le16(TXC_LONGFRAME);
7007 }
7008
7009 /* RTS PLCP header */
7010 rts_plcp = txh->RTSPhyHeader;
7011 if (use_cts)
7012 rts_phylen = DOT11_CTS_LEN + FCS_LEN;
7013 else
7014 rts_phylen = DOT11_RTS_LEN + FCS_LEN;
7015
7016 brcms_c_compute_plcp(wlc, rts_rspec[0], rts_phylen, rts_plcp);
7017
7018 /* fallback rate version of RTS PLCP header */
7019 brcms_c_compute_plcp(wlc, rts_rspec[1], rts_phylen,
7020 rts_plcp_fallback);
7021 memcpy(&txh->RTSPLCPFallback, rts_plcp_fallback,
7022 sizeof(txh->RTSPLCPFallback));
7023
7024 /* RTS frame fields... */
7025 rts = (struct ieee80211_rts *)&txh->rts_frame;
7026
7027 durid = brcms_c_compute_rtscts_dur(wlc, use_cts, rts_rspec[0],
7028 rspec[0], rts_preamble_type[0],
7029 preamble_type[0], phylen, false);
7030 rts->duration = cpu_to_le16(durid);
7031 /* fallback rate version of RTS DUR field */
7032 durid = brcms_c_compute_rtscts_dur(wlc, use_cts,
7033 rts_rspec[1], rspec[1],
7034 rts_preamble_type[1],
7035 preamble_type[1], phylen, false);
7036 txh->RTSDurFallback = cpu_to_le16(durid);
7037
7038 if (use_cts) {
7039 rts->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
7040 IEEE80211_STYPE_CTS);
7041
7042 memcpy(&rts->ra, &h->addr2, ETH_ALEN);
7043 } else {
7044 rts->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
7045 IEEE80211_STYPE_RTS);
7046
7047 memcpy(&rts->ra, &h->addr1, 2 * ETH_ALEN);
7048 }
7049
7050 /* mainrate
7051 * low 8 bits: main frag rate/mcs,
7052 * high 8 bits: rts/cts rate/mcs
7053 */
7054 mainrates |= (is_ofdm_rate(rts_rspec[0]) ?
7055 D11A_PHY_HDR_GRATE(
7056 (struct ofdm_phy_hdr *) rts_plcp) :
7057 rts_plcp[0]) << 8;
7058 } else {
7059 memset((char *)txh->RTSPhyHeader, 0, D11_PHY_HDR_LEN);
7060 memset((char *)&txh->rts_frame, 0,
7061 sizeof(struct ieee80211_rts));
7062 memset((char *)txh->RTSPLCPFallback, 0,
7063 sizeof(txh->RTSPLCPFallback));
7064 txh->RTSDurFallback = 0;
7065 }
7066
7067#ifdef SUPPORT_40MHZ
7068 /* add null delimiter count */
7069 if ((tx_info->flags & IEEE80211_TX_CTL_AMPDU) && is_mcs_rate(rspec))
7070 txh->RTSPLCPFallback[AMPDU_FBR_NULL_DELIM] =
7071 brcm_c_ampdu_null_delim_cnt(wlc->ampdu, scb, rspec, phylen);
7072
7073#endif
7074
7075 /*
7076 * Now that RTS/RTS FB preamble types are updated, write
7077 * the final value
7078 */
7079 txh->MacTxControlHigh = cpu_to_le16(mch);
7080
7081 /*
7082 * MainRates (both the rts and frag plcp rates have
7083 * been calculated now)
7084 */
7085 txh->MainRates = cpu_to_le16(mainrates);
7086
7087 /* XtraFrameTypes */
7088 xfts = frametype(rspec[1], wlc->mimoft);
7089 xfts |= (frametype(rts_rspec[0], wlc->mimoft) << XFTS_RTS_FT_SHIFT);
7090 xfts |= (frametype(rts_rspec[1], wlc->mimoft) << XFTS_FBRRTS_FT_SHIFT);
7091 xfts |= CHSPEC_CHANNEL(wlc_phy_chanspec_get(wlc->band->pi)) <<
7092 XFTS_CHANNEL_SHIFT;
7093 txh->XtraFrameTypes = cpu_to_le16(xfts);
7094
7095 /* PhyTxControlWord */
7096 phyctl = frametype(rspec[0], wlc->mimoft);
7097 if ((preamble_type[0] == BRCMS_SHORT_PREAMBLE) ||
7098 (preamble_type[0] == BRCMS_GF_PREAMBLE)) {
7099 if (rspec2rate(rspec[0]) != BRCM_RATE_1M)
7100 phyctl |= PHY_TXC_SHORT_HDR;
7101 }
7102
7103 /* phytxant is properly bit shifted */
7104 phyctl |= brcms_c_stf_d11hdrs_phyctl_txant(wlc, rspec[0]);
7105 txh->PhyTxControlWord = cpu_to_le16(phyctl);
7106
7107 /* PhyTxControlWord_1 */
7108 if (BRCMS_PHY_11N_CAP(wlc->band)) {
7109 u16 phyctl1 = 0;
7110
7111 phyctl1 = brcms_c_phytxctl1_calc(wlc, rspec[0]);
7112 txh->PhyTxControlWord_1 = cpu_to_le16(phyctl1);
7113 phyctl1 = brcms_c_phytxctl1_calc(wlc, rspec[1]);
7114 txh->PhyTxControlWord_1_Fbr = cpu_to_le16(phyctl1);
7115
7116 if (use_rts || use_cts) {
7117 phyctl1 = brcms_c_phytxctl1_calc(wlc, rts_rspec[0]);
7118 txh->PhyTxControlWord_1_Rts = cpu_to_le16(phyctl1);
7119 phyctl1 = brcms_c_phytxctl1_calc(wlc, rts_rspec[1]);
7120 txh->PhyTxControlWord_1_FbrRts = cpu_to_le16(phyctl1);
7121 }
7122
7123 /*
7124 * For mcs frames, if mixedmode(overloaded with long preamble)
7125 * is going to be set, fill in non-zero MModeLen and/or
7126 * MModeFbrLen it will be unnecessary if they are separated
7127 */
7128 if (is_mcs_rate(rspec[0]) &&
7129 (preamble_type[0] == BRCMS_MM_PREAMBLE)) {
7130 u16 mmodelen =
7131 brcms_c_calc_lsig_len(wlc, rspec[0], phylen);
7132 txh->MModeLen = cpu_to_le16(mmodelen);
7133 }
7134
7135 if (is_mcs_rate(rspec[1]) &&
7136 (preamble_type[1] == BRCMS_MM_PREAMBLE)) {
7137 u16 mmodefbrlen =
7138 brcms_c_calc_lsig_len(wlc, rspec[1], phylen);
7139 txh->MModeFbrLen = cpu_to_le16(mmodefbrlen);
7140 }
7141 }
7142
7143 ac = skb_get_queue_mapping(p);
7144 if ((scb->flags & SCB_WMECAP) && qos && wlc->edcf_txop[ac]) {
7145 uint frag_dur, dur, dur_fallback;
7146
7147 /* WME: Update TXOP threshold */
7148 if (!(tx_info->flags & IEEE80211_TX_CTL_AMPDU) && frag == 0) {
7149 frag_dur =
7150 brcms_c_calc_frame_time(wlc, rspec[0],
7151 preamble_type[0], phylen);
7152
7153 if (rts) {
7154 /* 1 RTS or CTS-to-self frame */
7155 dur =
7156 brcms_c_calc_cts_time(wlc, rts_rspec[0],
7157 rts_preamble_type[0]);
7158 dur_fallback =
7159 brcms_c_calc_cts_time(wlc, rts_rspec[1],
7160 rts_preamble_type[1]);
7161 /* (SIFS + CTS) + SIFS + frame + SIFS + ACK */
7162 dur += le16_to_cpu(rts->duration);
7163 dur_fallback +=
7164 le16_to_cpu(txh->RTSDurFallback);
7165 } else if (use_rifs) {
7166 dur = frag_dur;
7167 dur_fallback = 0;
7168 } else {
7169 /* frame + SIFS + ACK */
7170 dur = frag_dur;
7171 dur +=
7172 brcms_c_compute_frame_dur(wlc, rspec[0],
7173 preamble_type[0], 0);
7174
7175 dur_fallback =
7176 brcms_c_calc_frame_time(wlc, rspec[1],
7177 preamble_type[1],
7178 phylen);
7179 dur_fallback +=
7180 brcms_c_compute_frame_dur(wlc, rspec[1],
7181 preamble_type[1], 0);
7182 }
7183 /* NEED to set TxFesTimeNormal (hard) */
7184 txh->TxFesTimeNormal = cpu_to_le16((u16) dur);
7185 /*
7186 * NEED to set fallback rate version of
7187 * TxFesTimeNormal (hard)
7188 */
7189 txh->TxFesTimeFallback =
7190 cpu_to_le16((u16) dur_fallback);
7191
7192 /*
7193 * update txop byte threshold (txop minus intraframe
7194 * overhead)
7195 */
7196 if (wlc->edcf_txop[ac] >= (dur - frag_dur)) {
7197 uint newfragthresh;
7198
7199 newfragthresh =
7200 brcms_c_calc_frame_len(wlc,
7201 rspec[0], preamble_type[0],
7202 (wlc->edcf_txop[ac] -
7203 (dur - frag_dur)));
7204 /* range bound the fragthreshold */
7205 if (newfragthresh < DOT11_MIN_FRAG_LEN)
7206 newfragthresh =
7207 DOT11_MIN_FRAG_LEN;
7208 else if (newfragthresh >
7209 wlc->usr_fragthresh)
7210 newfragthresh =
7211 wlc->usr_fragthresh;
7212 /* update the fragthresh and do txc update */
7213 if (wlc->fragthresh[queue] !=
7214 (u16) newfragthresh)
7215 wlc->fragthresh[queue] =
7216 (u16) newfragthresh;
7217 } else {
7218 wiphy_err(wlc->wiphy, "wl%d: %s txop invalid "
7219 "for rate %d\n",
7220 wlc->pub->unit, fifo_names[queue],
7221 rspec2rate(rspec[0]));
7222 }
7223
7224 if (dur > wlc->edcf_txop[ac])
7225 wiphy_err(wlc->wiphy, "wl%d: %s: %s txop "
7226 "exceeded phylen %d/%d dur %d/%d\n",
7227 wlc->pub->unit, __func__,
7228 fifo_names[queue],
7229 phylen, wlc->fragthresh[queue],
7230 dur, wlc->edcf_txop[ac]);
7231 }
7232 }
7233
7234 return 0;
7235}
7236
7237void brcms_c_sendpkt_mac80211(struct brcms_c_info *wlc, struct sk_buff *sdu,
7238 struct ieee80211_hw *hw)
7239{
7240 u8 prio;
7241 uint fifo;
7242 struct scb *scb = &wlc->pri_scb;
7243 struct ieee80211_hdr *d11_header = (struct ieee80211_hdr *)(sdu->data);
7244
7245 /*
7246 * 802.11 standard requires management traffic
7247 * to go at highest priority
7248 */
7249 prio = ieee80211_is_data(d11_header->frame_control) ? sdu->priority :
7250 MAXPRIO;
7251 fifo = prio2fifo[prio];
7252 if (brcms_c_d11hdrs_mac80211(wlc, hw, sdu, scb, 0, 1, fifo, 0))
7253 return;
7254 brcms_c_txq_enq(wlc, scb, sdu, BRCMS_PRIO_TO_PREC(prio));
7255 brcms_c_send_q(wlc);
7256}
7257
7258void brcms_c_send_q(struct brcms_c_info *wlc)
7259{
7260 struct sk_buff *pkt[DOT11_MAXNUMFRAGS];
7261 int prec;
7262 u16 prec_map;
7263 int err = 0, i, count;
7264 uint fifo;
7265 struct brcms_txq_info *qi = wlc->pkt_queue;
7266 struct pktq *q = &qi->q;
7267 struct ieee80211_tx_info *tx_info;
7268
7269 prec_map = wlc->tx_prec_map;
7270
7271 /* Send all the enq'd pkts that we can.
7272 * Dequeue packets with precedence with empty HW fifo only
7273 */
7274 while (prec_map && (pkt[0] = brcmu_pktq_mdeq(q, prec_map, &prec))) {
7275 tx_info = IEEE80211_SKB_CB(pkt[0]);
7276 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
7277 err = brcms_c_sendampdu(wlc->ampdu, qi, pkt, prec);
7278 } else {
7279 count = 1;
7280 err = brcms_c_prep_pdu(wlc, pkt[0], &fifo);
7281 if (!err) {
7282 for (i = 0; i < count; i++)
7283 brcms_c_txfifo(wlc, fifo, pkt[i], true,
7284 1);
7285 }
7286 }
7287
7288 if (err == -EBUSY) {
7289 brcmu_pktq_penq_head(q, prec, pkt[0]);
7290 /*
7291 * If send failed due to any other reason than a
7292 * change in HW FIFO condition, quit. Otherwise,
7293 * read the new prec_map!
7294 */
7295 if (prec_map == wlc->tx_prec_map)
7296 break;
7297 prec_map = wlc->tx_prec_map;
7298 }
7299 }
7300}
7301
7302void
7303brcms_c_txfifo(struct brcms_c_info *wlc, uint fifo, struct sk_buff *p,
7304 bool commit, s8 txpktpend)
7305{
7306 u16 frameid = INVALIDFID;
7307 struct d11txh *txh;
7308
7309 txh = (struct d11txh *) (p->data);
7310
7311 /* When a BC/MC frame is being committed to the BCMC fifo
7312 * via DMA (NOT PIO), update ucode or BSS info as appropriate.
7313 */
7314 if (fifo == TX_BCMC_FIFO)
7315 frameid = le16_to_cpu(txh->TxFrameID);
7316
7317 /*
7318 * Bump up pending count for if not using rpc. If rpc is
7319 * used, this will be handled in brcms_b_txfifo()
7320 */
7321 if (commit) {
7322 wlc->core->txpktpend[fifo] += txpktpend;
7323 BCMMSG(wlc->wiphy, "pktpend inc %d to %d\n",
7324 txpktpend, wlc->core->txpktpend[fifo]);
7325 }
7326
7327 /* Commit BCMC sequence number in the SHM frame ID location */
7328 if (frameid != INVALIDFID) {
7329 /*
7330 * To inform the ucode of the last mcast frame posted
7331 * so that it can clear moredata bit
7332 */
7333 brcms_b_write_shm(wlc->hw, M_BCMC_FID, frameid);
7334 }
7335
7336 if (dma_txfast(wlc->hw->di[fifo], p, commit) < 0)
7337 wiphy_err(wlc->wiphy, "txfifo: fatal, toss frames !!!\n");
7338}
7339
Arend van Spriel5b435de2011-10-05 13:19:03 +02007340u32
7341brcms_c_rspec_to_rts_rspec(struct brcms_c_info *wlc, u32 rspec,
7342 bool use_rspec, u16 mimo_ctlchbw)
7343{
7344 u32 rts_rspec = 0;
7345
7346 if (use_rspec)
7347 /* use frame rate as rts rate */
7348 rts_rspec = rspec;
7349 else if (wlc->band->gmode && wlc->protection->_g && !is_cck_rate(rspec))
7350 /* Use 11Mbps as the g protection RTS target rate and fallback.
7351 * Use the brcms_basic_rate() lookup to find the best basic rate
7352 * under the target in case 11 Mbps is not Basic.
7353 * 6 and 9 Mbps are not usually selected by rate selection, but
7354 * even if the OFDM rate we are protecting is 6 or 9 Mbps, 11
7355 * is more robust.
7356 */
7357 rts_rspec = brcms_basic_rate(wlc, BRCM_RATE_11M);
7358 else
7359 /* calculate RTS rate and fallback rate based on the frame rate
7360 * RTS must be sent at a basic rate since it is a
7361 * control frame, sec 9.6 of 802.11 spec
7362 */
7363 rts_rspec = brcms_basic_rate(wlc, rspec);
7364
7365 if (BRCMS_PHY_11N_CAP(wlc->band)) {
7366 /* set rts txbw to correct side band */
7367 rts_rspec &= ~RSPEC_BW_MASK;
7368
7369 /*
7370 * if rspec/rspec_fallback is 40MHz, then send RTS on both
7371 * 20MHz channel (DUP), otherwise send RTS on control channel
7372 */
7373 if (rspec_is40mhz(rspec) && !is_cck_rate(rts_rspec))
7374 rts_rspec |= (PHY_TXC1_BW_40MHZ_DUP << RSPEC_BW_SHIFT);
7375 else
7376 rts_rspec |= (mimo_ctlchbw << RSPEC_BW_SHIFT);
7377
7378 /* pick siso/cdd as default for ofdm */
7379 if (is_ofdm_rate(rts_rspec)) {
7380 rts_rspec &= ~RSPEC_STF_MASK;
7381 rts_rspec |= (wlc->stf->ss_opmode << RSPEC_STF_SHIFT);
7382 }
7383 }
7384 return rts_rspec;
7385}
7386
Arend van Spriel5b435de2011-10-05 13:19:03 +02007387void
7388brcms_c_txfifo_complete(struct brcms_c_info *wlc, uint fifo, s8 txpktpend)
7389{
7390 wlc->core->txpktpend[fifo] -= txpktpend;
7391 BCMMSG(wlc->wiphy, "pktpend dec %d to %d\n", txpktpend,
7392 wlc->core->txpktpend[fifo]);
7393
7394 /* There is more room; mark precedences related to this FIFO sendable */
7395 wlc->tx_prec_map |= wlc->fifo2prec_map[fifo];
7396
7397 /* figure out which bsscfg is being worked on... */
7398}
7399
7400/* Update beacon listen interval in shared memory */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007401static void brcms_c_bcn_li_upd(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02007402{
7403 /* wake up every DTIM is the default */
7404 if (wlc->bcn_li_dtim == 1)
7405 brcms_b_write_shm(wlc->hw, M_BCN_LI, 0);
7406 else
7407 brcms_b_write_shm(wlc->hw, M_BCN_LI,
7408 (wlc->bcn_li_dtim << 8) | wlc->bcn_li_bcn);
7409}
7410
7411static void
7412brcms_b_read_tsf(struct brcms_hardware *wlc_hw, u32 *tsf_l_ptr,
7413 u32 *tsf_h_ptr)
7414{
Arend van Spriel16d28122011-12-08 15:06:51 -08007415 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02007416
7417 /* read the tsf timer low, then high to get an atomic read */
Arend van Spriel16d28122011-12-08 15:06:51 -08007418 *tsf_l_ptr = bcma_read32(core, D11REGOFFS(tsf_timerlow));
7419 *tsf_h_ptr = bcma_read32(core, D11REGOFFS(tsf_timerhigh));
Arend van Spriel5b435de2011-10-05 13:19:03 +02007420}
7421
7422/*
7423 * recover 64bit TSF value from the 16bit TSF value in the rx header
7424 * given the assumption that the TSF passed in header is within 65ms
7425 * of the current tsf.
7426 *
7427 * 6 5 4 4 3 2 1
7428 * 3.......6.......8.......0.......2.......4.......6.......8......0
7429 * |<---------- tsf_h ----------->||<--- tsf_l -->||<-RxTSFTime ->|
7430 *
7431 * The RxTSFTime are the lowest 16 bits and provided by the ucode. The
7432 * tsf_l is filled in by brcms_b_recv, which is done earlier in the
7433 * receive call sequence after rx interrupt. Only the higher 16 bits
7434 * are used. Finally, the tsf_h is read from the tsf register.
7435 */
7436static u64 brcms_c_recover_tsf64(struct brcms_c_info *wlc,
7437 struct d11rxhdr *rxh)
7438{
7439 u32 tsf_h, tsf_l;
7440 u16 rx_tsf_0_15, rx_tsf_16_31;
7441
7442 brcms_b_read_tsf(wlc->hw, &tsf_l, &tsf_h);
7443
7444 rx_tsf_16_31 = (u16)(tsf_l >> 16);
7445 rx_tsf_0_15 = rxh->RxTSFTime;
7446
7447 /*
7448 * a greater tsf time indicates the low 16 bits of
7449 * tsf_l wrapped, so decrement the high 16 bits.
7450 */
7451 if ((u16)tsf_l < rx_tsf_0_15) {
7452 rx_tsf_16_31 -= 1;
7453 if (rx_tsf_16_31 == 0xffff)
7454 tsf_h -= 1;
7455 }
7456
7457 return ((u64)tsf_h << 32) | (((u32)rx_tsf_16_31 << 16) + rx_tsf_0_15);
7458}
7459
7460static void
7461prep_mac80211_status(struct brcms_c_info *wlc, struct d11rxhdr *rxh,
7462 struct sk_buff *p,
7463 struct ieee80211_rx_status *rx_status)
7464{
7465 int preamble;
7466 int channel;
7467 u32 rspec;
7468 unsigned char *plcp;
7469
7470 /* fill in TSF and flag its presence */
7471 rx_status->mactime = brcms_c_recover_tsf64(wlc, rxh);
7472 rx_status->flag |= RX_FLAG_MACTIME_MPDU;
7473
7474 channel = BRCMS_CHAN_CHANNEL(rxh->RxChan);
7475
7476 if (channel > 14) {
7477 rx_status->band = IEEE80211_BAND_5GHZ;
7478 rx_status->freq = ieee80211_ofdm_chan_to_freq(
7479 WF_CHAN_FACTOR_5_G/2, channel);
7480
7481 } else {
7482 rx_status->band = IEEE80211_BAND_2GHZ;
7483 rx_status->freq = ieee80211_dsss_chan_to_freq(channel);
7484 }
7485
7486 rx_status->signal = wlc_phy_rssi_compute(wlc->hw->band->pi, rxh);
7487
7488 /* noise */
7489 /* qual */
7490 rx_status->antenna =
7491 (rxh->PhyRxStatus_0 & PRXS0_RXANT_UPSUBBAND) ? 1 : 0;
7492
7493 plcp = p->data;
7494
7495 rspec = brcms_c_compute_rspec(rxh, plcp);
7496 if (is_mcs_rate(rspec)) {
7497 rx_status->rate_idx = rspec & RSPEC_RATE_MASK;
7498 rx_status->flag |= RX_FLAG_HT;
7499 if (rspec_is40mhz(rspec))
7500 rx_status->flag |= RX_FLAG_40MHZ;
7501 } else {
7502 switch (rspec2rate(rspec)) {
7503 case BRCM_RATE_1M:
7504 rx_status->rate_idx = 0;
7505 break;
7506 case BRCM_RATE_2M:
7507 rx_status->rate_idx = 1;
7508 break;
7509 case BRCM_RATE_5M5:
7510 rx_status->rate_idx = 2;
7511 break;
7512 case BRCM_RATE_11M:
7513 rx_status->rate_idx = 3;
7514 break;
7515 case BRCM_RATE_6M:
7516 rx_status->rate_idx = 4;
7517 break;
7518 case BRCM_RATE_9M:
7519 rx_status->rate_idx = 5;
7520 break;
7521 case BRCM_RATE_12M:
7522 rx_status->rate_idx = 6;
7523 break;
7524 case BRCM_RATE_18M:
7525 rx_status->rate_idx = 7;
7526 break;
7527 case BRCM_RATE_24M:
7528 rx_status->rate_idx = 8;
7529 break;
7530 case BRCM_RATE_36M:
7531 rx_status->rate_idx = 9;
7532 break;
7533 case BRCM_RATE_48M:
7534 rx_status->rate_idx = 10;
7535 break;
7536 case BRCM_RATE_54M:
7537 rx_status->rate_idx = 11;
7538 break;
7539 default:
7540 wiphy_err(wlc->wiphy, "%s: Unknown rate\n", __func__);
7541 }
7542
7543 /*
7544 * For 5GHz, we should decrease the index as it is
7545 * a subset of the 2.4G rates. See bitrates field
7546 * of brcms_band_5GHz_nphy (in mac80211_if.c).
7547 */
7548 if (rx_status->band == IEEE80211_BAND_5GHZ)
7549 rx_status->rate_idx -= BRCMS_LEGACY_5G_RATE_OFFSET;
7550
7551 /* Determine short preamble and rate_idx */
7552 preamble = 0;
7553 if (is_cck_rate(rspec)) {
7554 if (rxh->PhyRxStatus_0 & PRXS0_SHORTH)
7555 rx_status->flag |= RX_FLAG_SHORTPRE;
7556 } else if (is_ofdm_rate(rspec)) {
7557 rx_status->flag |= RX_FLAG_SHORTPRE;
7558 } else {
7559 wiphy_err(wlc->wiphy, "%s: Unknown modulation\n",
7560 __func__);
7561 }
7562 }
7563
7564 if (plcp3_issgi(plcp[3]))
7565 rx_status->flag |= RX_FLAG_SHORT_GI;
7566
7567 if (rxh->RxStatus1 & RXS_DECERR) {
7568 rx_status->flag |= RX_FLAG_FAILED_PLCP_CRC;
7569 wiphy_err(wlc->wiphy, "%s: RX_FLAG_FAILED_PLCP_CRC\n",
7570 __func__);
7571 }
7572 if (rxh->RxStatus1 & RXS_FCSERR) {
7573 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
7574 wiphy_err(wlc->wiphy, "%s: RX_FLAG_FAILED_FCS_CRC\n",
7575 __func__);
7576 }
7577}
7578
7579static void
7580brcms_c_recvctl(struct brcms_c_info *wlc, struct d11rxhdr *rxh,
7581 struct sk_buff *p)
7582{
7583 int len_mpdu;
7584 struct ieee80211_rx_status rx_status;
Arend van Sprielbadc4f02012-04-11 11:52:51 +02007585 struct ieee80211_hdr *hdr;
Arend van Spriel5b435de2011-10-05 13:19:03 +02007586
7587 memset(&rx_status, 0, sizeof(rx_status));
7588 prep_mac80211_status(wlc, rxh, p, &rx_status);
7589
7590 /* mac header+body length, exclude CRC and plcp header */
7591 len_mpdu = p->len - D11_PHY_HDR_LEN - FCS_LEN;
7592 skb_pull(p, D11_PHY_HDR_LEN);
7593 __skb_trim(p, len_mpdu);
7594
Arend van Sprielbadc4f02012-04-11 11:52:51 +02007595 /* unmute transmit */
7596 if (wlc->hw->suspended_fifos) {
7597 hdr = (struct ieee80211_hdr *)p->data;
7598 if (ieee80211_is_beacon(hdr->frame_control))
7599 brcms_b_mute(wlc->hw, false);
7600 }
7601
Arend van Spriel5b435de2011-10-05 13:19:03 +02007602 memcpy(IEEE80211_SKB_RXCB(p), &rx_status, sizeof(rx_status));
7603 ieee80211_rx_irqsafe(wlc->pub->ieee_hw, p);
7604}
7605
Arend van Spriel5b435de2011-10-05 13:19:03 +02007606/* calculate frame duration for Mixed-mode L-SIG spoofing, return
7607 * number of bytes goes in the length field
7608 *
7609 * Formula given by HT PHY Spec v 1.13
7610 * len = 3(nsyms + nstream + 3) - 3
7611 */
7612u16
7613brcms_c_calc_lsig_len(struct brcms_c_info *wlc, u32 ratespec,
7614 uint mac_len)
7615{
7616 uint nsyms, len = 0, kNdps;
7617
7618 BCMMSG(wlc->wiphy, "wl%d: rate %d, len%d\n",
7619 wlc->pub->unit, rspec2rate(ratespec), mac_len);
7620
7621 if (is_mcs_rate(ratespec)) {
7622 uint mcs = ratespec & RSPEC_RATE_MASK;
7623 int tot_streams = (mcs_2_txstreams(mcs) + 1) +
7624 rspec_stc(ratespec);
7625
7626 /*
7627 * the payload duration calculation matches that
7628 * of regular ofdm
7629 */
7630 /* 1000Ndbps = kbps * 4 */
7631 kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec),
7632 rspec_issgi(ratespec)) * 4;
7633
7634 if (rspec_stc(ratespec) == 0)
7635 nsyms =
7636 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
7637 APHY_TAIL_NBITS) * 1000, kNdps);
7638 else
7639 /* STBC needs to have even number of symbols */
7640 nsyms =
7641 2 *
7642 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
7643 APHY_TAIL_NBITS) * 1000, 2 * kNdps);
7644
7645 /* (+3) account for HT-SIG(2) and HT-STF(1) */
7646 nsyms += (tot_streams + 3);
7647 /*
7648 * 3 bytes/symbol @ legacy 6Mbps rate
7649 * (-3) excluding service bits and tail bits
7650 */
7651 len = (3 * nsyms) - 3;
7652 }
7653
7654 return (u16) len;
7655}
7656
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007657static void
7658brcms_c_mod_prb_rsp_rate_table(struct brcms_c_info *wlc, uint frame_len)
Arend van Spriel5b435de2011-10-05 13:19:03 +02007659{
7660 const struct brcms_c_rateset *rs_dflt;
7661 struct brcms_c_rateset rs;
7662 u8 rate;
7663 u16 entry_ptr;
7664 u8 plcp[D11_PHY_HDR_LEN];
7665 u16 dur, sifs;
7666 uint i;
7667
7668 sifs = get_sifs(wlc->band);
7669
7670 rs_dflt = brcms_c_rateset_get_hwrs(wlc);
7671
7672 brcms_c_rateset_copy(rs_dflt, &rs);
7673 brcms_c_rateset_mcs_upd(&rs, wlc->stf->txstreams);
7674
7675 /*
7676 * walk the phy rate table and update MAC core SHM
7677 * basic rate table entries
7678 */
7679 for (i = 0; i < rs.count; i++) {
7680 rate = rs.rates[i] & BRCMS_RATE_MASK;
7681
7682 entry_ptr = brcms_b_rate_shm_offset(wlc->hw, rate);
7683
7684 /* Calculate the Probe Response PLCP for the given rate */
7685 brcms_c_compute_plcp(wlc, rate, frame_len, plcp);
7686
7687 /*
7688 * Calculate the duration of the Probe Response
7689 * frame plus SIFS for the MAC
7690 */
7691 dur = (u16) brcms_c_calc_frame_time(wlc, rate,
7692 BRCMS_LONG_PREAMBLE, frame_len);
7693 dur += sifs;
7694
7695 /* Update the SHM Rate Table entry Probe Response values */
7696 brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_PLCP_POS,
7697 (u16) (plcp[0] + (plcp[1] << 8)));
7698 brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_PLCP_POS + 2,
7699 (u16) (plcp[2] + (plcp[3] << 8)));
7700 brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_DUR_POS, dur);
7701 }
7702}
7703
7704/* Max buffering needed for beacon template/prb resp template is 142 bytes.
7705 *
7706 * PLCP header is 6 bytes.
7707 * 802.11 A3 header is 24 bytes.
7708 * Max beacon frame body template length is 112 bytes.
7709 * Max probe resp frame body template length is 110 bytes.
7710 *
7711 * *len on input contains the max length of the packet available.
7712 *
7713 * The *len value is set to the number of bytes in buf used, and starts
7714 * with the PLCP and included up to, but not including, the 4 byte FCS.
7715 */
7716static void
7717brcms_c_bcn_prb_template(struct brcms_c_info *wlc, u16 type,
7718 u32 bcn_rspec,
7719 struct brcms_bss_cfg *cfg, u16 *buf, int *len)
7720{
7721 static const u8 ether_bcast[ETH_ALEN] = {255, 255, 255, 255, 255, 255};
7722 struct cck_phy_hdr *plcp;
7723 struct ieee80211_mgmt *h;
7724 int hdr_len, body_len;
7725
7726 hdr_len = D11_PHY_HDR_LEN + DOT11_MAC_HDR_LEN;
7727
7728 /* calc buffer size provided for frame body */
7729 body_len = *len - hdr_len;
7730 /* return actual size */
7731 *len = hdr_len + body_len;
7732
7733 /* format PHY and MAC headers */
7734 memset((char *)buf, 0, hdr_len);
7735
7736 plcp = (struct cck_phy_hdr *) buf;
7737
7738 /*
7739 * PLCP for Probe Response frames are filled in from
7740 * core's rate table
7741 */
7742 if (type == IEEE80211_STYPE_BEACON)
7743 /* fill in PLCP */
7744 brcms_c_compute_plcp(wlc, bcn_rspec,
7745 (DOT11_MAC_HDR_LEN + body_len + FCS_LEN),
7746 (u8 *) plcp);
7747
7748 /* "Regular" and 16 MBSS but not for 4 MBSS */
7749 /* Update the phytxctl for the beacon based on the rspec */
7750 brcms_c_beacon_phytxctl_txant_upd(wlc, bcn_rspec);
7751
7752 h = (struct ieee80211_mgmt *)&plcp[1];
7753
7754 /* fill in 802.11 header */
7755 h->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | type);
7756
7757 /* DUR is 0 for multicast bcn, or filled in by MAC for prb resp */
7758 /* A1 filled in by MAC for prb resp, broadcast for bcn */
7759 if (type == IEEE80211_STYPE_BEACON)
7760 memcpy(&h->da, &ether_bcast, ETH_ALEN);
7761 memcpy(&h->sa, &cfg->cur_etheraddr, ETH_ALEN);
7762 memcpy(&h->bssid, &cfg->BSSID, ETH_ALEN);
7763
7764 /* SEQ filled in by MAC */
7765}
7766
7767int brcms_c_get_header_len(void)
7768{
7769 return TXOFF;
7770}
7771
7772/*
7773 * Update all beacons for the system.
7774 */
7775void brcms_c_update_beacon(struct brcms_c_info *wlc)
7776{
7777 struct brcms_bss_cfg *bsscfg = wlc->bsscfg;
7778
7779 if (bsscfg->up && !bsscfg->BSS)
7780 /* Clear the soft intmask */
7781 wlc->defmacintmask &= ~MI_BCNTPL;
7782}
7783
7784/* Write ssid into shared memory */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007785static void
7786brcms_c_shm_ssid_upd(struct brcms_c_info *wlc, struct brcms_bss_cfg *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02007787{
7788 u8 *ssidptr = cfg->SSID;
7789 u16 base = M_SSID;
7790 u8 ssidbuf[IEEE80211_MAX_SSID_LEN];
7791
7792 /* padding the ssid with zero and copy it into shm */
7793 memset(ssidbuf, 0, IEEE80211_MAX_SSID_LEN);
7794 memcpy(ssidbuf, ssidptr, cfg->SSID_len);
7795
7796 brcms_c_copyto_shm(wlc, base, ssidbuf, IEEE80211_MAX_SSID_LEN);
7797 brcms_b_write_shm(wlc->hw, M_SSIDLEN, (u16) cfg->SSID_len);
7798}
7799
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007800static void
Arend van Spriel5b435de2011-10-05 13:19:03 +02007801brcms_c_bss_update_probe_resp(struct brcms_c_info *wlc,
7802 struct brcms_bss_cfg *cfg,
7803 bool suspend)
7804{
7805 u16 prb_resp[BCN_TMPL_LEN / 2];
7806 int len = BCN_TMPL_LEN;
7807
7808 /*
7809 * write the probe response to hardware, or save in
7810 * the config structure
7811 */
7812
7813 /* create the probe response template */
7814 brcms_c_bcn_prb_template(wlc, IEEE80211_STYPE_PROBE_RESP, 0,
7815 cfg, prb_resp, &len);
7816
7817 if (suspend)
7818 brcms_c_suspend_mac_and_wait(wlc);
7819
7820 /* write the probe response into the template region */
7821 brcms_b_write_template_ram(wlc->hw, T_PRS_TPL_BASE,
7822 (len + 3) & ~3, prb_resp);
7823
7824 /* write the length of the probe response frame (+PLCP/-FCS) */
7825 brcms_b_write_shm(wlc->hw, M_PRB_RESP_FRM_LEN, (u16) len);
7826
7827 /* write the SSID and SSID length */
7828 brcms_c_shm_ssid_upd(wlc, cfg);
7829
7830 /*
7831 * Write PLCP headers and durations for probe response frames
7832 * at all rates. Use the actual frame length covered by the
7833 * PLCP header for the call to brcms_c_mod_prb_rsp_rate_table()
7834 * by subtracting the PLCP len and adding the FCS.
7835 */
7836 len += (-D11_PHY_HDR_LEN + FCS_LEN);
7837 brcms_c_mod_prb_rsp_rate_table(wlc, (u16) len);
7838
7839 if (suspend)
7840 brcms_c_enable_mac(wlc);
7841}
7842
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007843void brcms_c_update_probe_resp(struct brcms_c_info *wlc, bool suspend)
7844{
7845 struct brcms_bss_cfg *bsscfg = wlc->bsscfg;
7846
7847 /* update AP or IBSS probe responses */
7848 if (bsscfg->up && !bsscfg->BSS)
7849 brcms_c_bss_update_probe_resp(wlc, bsscfg, suspend);
7850}
7851
Arend van Spriel5b435de2011-10-05 13:19:03 +02007852/* prepares pdu for transmission. returns BCM error codes */
7853int brcms_c_prep_pdu(struct brcms_c_info *wlc, struct sk_buff *pdu, uint *fifop)
7854{
7855 uint fifo;
7856 struct d11txh *txh;
7857 struct ieee80211_hdr *h;
7858 struct scb *scb;
7859
7860 txh = (struct d11txh *) (pdu->data);
7861 h = (struct ieee80211_hdr *)((u8 *) (txh + 1) + D11_PHY_HDR_LEN);
7862
7863 /* get the pkt queue info. This was put at brcms_c_sendctl or
7864 * brcms_c_send for PDU */
7865 fifo = le16_to_cpu(txh->TxFrameID) & TXFID_QUEUE_MASK;
7866
7867 scb = NULL;
7868
7869 *fifop = fifo;
7870
7871 /* return if insufficient dma resources */
7872 if (*wlc->core->txavail[fifo] < MAX_DMA_SEGS) {
7873 /* Mark precedences related to this FIFO, unsendable */
7874 /* A fifo is full. Clear precedences related to that FIFO */
7875 wlc->tx_prec_map &= ~(wlc->fifo2prec_map[fifo]);
7876 return -EBUSY;
7877 }
7878 return 0;
7879}
7880
Arend van Spriel5b435de2011-10-05 13:19:03 +02007881int brcms_b_xmtfifo_sz_get(struct brcms_hardware *wlc_hw, uint fifo,
7882 uint *blocks)
7883{
7884 if (fifo >= NFIFO)
7885 return -EINVAL;
7886
7887 *blocks = wlc_hw->xmtfifo_sz[fifo];
7888
7889 return 0;
7890}
7891
7892void
7893brcms_c_set_addrmatch(struct brcms_c_info *wlc, int match_reg_offset,
7894 const u8 *addr)
7895{
7896 brcms_b_set_addrmatch(wlc->hw, match_reg_offset, addr);
7897 if (match_reg_offset == RCM_BSSID_OFFSET)
7898 memcpy(wlc->bsscfg->BSSID, addr, ETH_ALEN);
7899}
7900
Arend van Spriel5b435de2011-10-05 13:19:03 +02007901/*
7902 * Flag 'scan in progress' to withhold dynamic phy calibration
7903 */
7904void brcms_c_scan_start(struct brcms_c_info *wlc)
7905{
7906 wlc_phy_hold_upd(wlc->band->pi, PHY_HOLD_FOR_SCAN, true);
7907}
7908
7909void brcms_c_scan_stop(struct brcms_c_info *wlc)
7910{
7911 wlc_phy_hold_upd(wlc->band->pi, PHY_HOLD_FOR_SCAN, false);
7912}
7913
7914void brcms_c_associate_upd(struct brcms_c_info *wlc, bool state)
7915{
7916 wlc->pub->associated = state;
7917 wlc->bsscfg->associated = state;
7918}
7919
7920/*
7921 * When a remote STA/AP is removed by Mac80211, or when it can no longer accept
7922 * AMPDU traffic, packets pending in hardware have to be invalidated so that
7923 * when later on hardware releases them, they can be handled appropriately.
7924 */
7925void brcms_c_inval_dma_pkts(struct brcms_hardware *hw,
7926 struct ieee80211_sta *sta,
7927 void (*dma_callback_fn))
7928{
7929 struct dma_pub *dmah;
7930 int i;
7931 for (i = 0; i < NFIFO; i++) {
7932 dmah = hw->di[i];
7933 if (dmah != NULL)
7934 dma_walk_packets(dmah, dma_callback_fn, sta);
7935 }
7936}
7937
7938int brcms_c_get_curband(struct brcms_c_info *wlc)
7939{
7940 return wlc->band->bandunit;
7941}
7942
7943void brcms_c_wait_for_tx_completion(struct brcms_c_info *wlc, bool drop)
7944{
Stanislaw Gruszkaf96b08a2012-01-17 12:38:50 +01007945 int timeout = 20;
7946
Arend van Spriel5b435de2011-10-05 13:19:03 +02007947 /* flush packet queue when requested */
7948 if (drop)
7949 brcmu_pktq_flush(&wlc->pkt_queue->q, false, NULL, NULL);
7950
7951 /* wait for queue and DMA fifos to run dry */
Stanislaw Gruszkaf96b08a2012-01-17 12:38:50 +01007952 while (!pktq_empty(&wlc->pkt_queue->q) || brcms_txpktpendtot(wlc) > 0) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02007953 brcms_msleep(wlc->wl, 1);
Stanislaw Gruszkaf96b08a2012-01-17 12:38:50 +01007954
7955 if (--timeout == 0)
7956 break;
7957 }
7958
7959 WARN_ON_ONCE(timeout == 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02007960}
7961
7962void brcms_c_set_beacon_listen_interval(struct brcms_c_info *wlc, u8 interval)
7963{
7964 wlc->bcn_li_bcn = interval;
7965 if (wlc->pub->up)
7966 brcms_c_bcn_li_upd(wlc);
7967}
7968
7969int brcms_c_set_tx_power(struct brcms_c_info *wlc, int txpwr)
7970{
7971 uint qdbm;
7972
7973 /* Remove override bit and clip to max qdbm value */
7974 qdbm = min_t(uint, txpwr * BRCMS_TXPWR_DB_FACTOR, 0xff);
7975 return wlc_phy_txpower_set(wlc->band->pi, qdbm, false);
7976}
7977
7978int brcms_c_get_tx_power(struct brcms_c_info *wlc)
7979{
7980 uint qdbm;
7981 bool override;
7982
7983 wlc_phy_txpower_get(wlc->band->pi, &qdbm, &override);
7984
7985 /* Return qdbm units */
7986 return (int)(qdbm / BRCMS_TXPWR_DB_FACTOR);
7987}
7988
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007989/* Process received frames */
7990/*
7991 * Return true if more frames need to be processed. false otherwise.
7992 * Param 'bound' indicates max. # frames to process before break out.
7993 */
7994static void brcms_c_recv(struct brcms_c_info *wlc, struct sk_buff *p)
7995{
7996 struct d11rxhdr *rxh;
7997 struct ieee80211_hdr *h;
7998 uint len;
7999 bool is_amsdu;
8000
8001 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
8002
8003 /* frame starts with rxhdr */
8004 rxh = (struct d11rxhdr *) (p->data);
8005
8006 /* strip off rxhdr */
8007 skb_pull(p, BRCMS_HWRXOFF);
8008
8009 /* MAC inserts 2 pad bytes for a4 headers or QoS or A-MSDU subframes */
8010 if (rxh->RxStatus1 & RXS_PBPRES) {
8011 if (p->len < 2) {
8012 wiphy_err(wlc->wiphy, "wl%d: recv: rcvd runt of "
8013 "len %d\n", wlc->pub->unit, p->len);
8014 goto toss;
8015 }
8016 skb_pull(p, 2);
8017 }
8018
8019 h = (struct ieee80211_hdr *)(p->data + D11_PHY_HDR_LEN);
8020 len = p->len;
8021
8022 if (rxh->RxStatus1 & RXS_FCSERR) {
Alwin Beukersbe667662011-11-22 17:21:43 -08008023 if (!(wlc->filter_flags & FIF_FCSFAIL))
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008024 goto toss;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008025 }
8026
8027 /* check received pkt has at least frame control field */
8028 if (len < D11_PHY_HDR_LEN + sizeof(h->frame_control))
8029 goto toss;
8030
8031 /* not supporting A-MSDU */
8032 is_amsdu = rxh->RxStatus2 & RXS_AMSDU_MASK;
8033 if (is_amsdu)
8034 goto toss;
8035
8036 brcms_c_recvctl(wlc, rxh, p);
8037 return;
8038
8039 toss:
8040 brcmu_pkt_buf_free_skb(p);
8041}
8042
8043/* Process received frames */
8044/*
8045 * Return true if more frames need to be processed. false otherwise.
8046 * Param 'bound' indicates max. # frames to process before break out.
8047 */
8048static bool
8049brcms_b_recv(struct brcms_hardware *wlc_hw, uint fifo, bool bound)
8050{
8051 struct sk_buff *p;
Arend van Spriel3fd172d2011-10-21 16:16:31 +02008052 struct sk_buff *next = NULL;
8053 struct sk_buff_head recv_frames;
8054
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008055 uint n = 0;
8056 uint bound_limit = bound ? RXBND : -1;
8057
8058 BCMMSG(wlc_hw->wlc->wiphy, "wl%d\n", wlc_hw->unit);
Arend van Spriel3fd172d2011-10-21 16:16:31 +02008059 skb_queue_head_init(&recv_frames);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008060
Arend van Spriel3fd172d2011-10-21 16:16:31 +02008061 /* gather received frames */
8062 while (dma_rx(wlc_hw->di[fifo], &recv_frames)) {
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008063
8064 /* !give others some time to run! */
8065 if (++n >= bound_limit)
8066 break;
8067 }
8068
8069 /* post more rbufs */
8070 dma_rxfill(wlc_hw->di[fifo]);
8071
8072 /* process each frame */
Arend van Spriel3fd172d2011-10-21 16:16:31 +02008073 skb_queue_walk_safe(&recv_frames, p, next) {
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008074 struct d11rxhdr_le *rxh_le;
8075 struct d11rxhdr *rxh;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008076
Arend van Spriel3fd172d2011-10-21 16:16:31 +02008077 skb_unlink(p, &recv_frames);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008078 rxh_le = (struct d11rxhdr_le *)p->data;
8079 rxh = (struct d11rxhdr *)p->data;
8080
8081 /* fixup rx header endianness */
8082 rxh->RxFrameSize = le16_to_cpu(rxh_le->RxFrameSize);
8083 rxh->PhyRxStatus_0 = le16_to_cpu(rxh_le->PhyRxStatus_0);
8084 rxh->PhyRxStatus_1 = le16_to_cpu(rxh_le->PhyRxStatus_1);
8085 rxh->PhyRxStatus_2 = le16_to_cpu(rxh_le->PhyRxStatus_2);
8086 rxh->PhyRxStatus_3 = le16_to_cpu(rxh_le->PhyRxStatus_3);
8087 rxh->PhyRxStatus_4 = le16_to_cpu(rxh_le->PhyRxStatus_4);
8088 rxh->PhyRxStatus_5 = le16_to_cpu(rxh_le->PhyRxStatus_5);
8089 rxh->RxStatus1 = le16_to_cpu(rxh_le->RxStatus1);
8090 rxh->RxStatus2 = le16_to_cpu(rxh_le->RxStatus2);
8091 rxh->RxTSFTime = le16_to_cpu(rxh_le->RxTSFTime);
8092 rxh->RxChan = le16_to_cpu(rxh_le->RxChan);
8093
8094 brcms_c_recv(wlc_hw->wlc, p);
8095 }
8096
8097 return n >= bound_limit;
8098}
8099
8100/* second-level interrupt processing
8101 * Return true if another dpc needs to be re-scheduled. false otherwise.
8102 * Param 'bounded' indicates if applicable loops should be bounded.
8103 */
8104bool brcms_c_dpc(struct brcms_c_info *wlc, bool bounded)
8105{
8106 u32 macintstatus;
8107 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08008108 struct bcma_device *core = wlc_hw->d11core;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008109 struct wiphy *wiphy = wlc->wiphy;
8110
8111 if (brcms_deviceremoved(wlc)) {
8112 wiphy_err(wiphy, "wl%d: %s: dead chip\n", wlc_hw->unit,
8113 __func__);
8114 brcms_down(wlc->wl);
8115 return false;
8116 }
8117
8118 /* grab and clear the saved software intstatus bits */
8119 macintstatus = wlc->macintstatus;
8120 wlc->macintstatus = 0;
8121
8122 BCMMSG(wlc->wiphy, "wl%d: macintstatus 0x%x\n",
8123 wlc_hw->unit, macintstatus);
8124
8125 WARN_ON(macintstatus & MI_PRQ); /* PRQ Interrupt in non-MBSS */
8126
8127 /* tx status */
8128 if (macintstatus & MI_TFS) {
8129 bool fatal;
8130 if (brcms_b_txstatus(wlc->hw, bounded, &fatal))
8131 wlc->macintstatus |= MI_TFS;
8132 if (fatal) {
8133 wiphy_err(wiphy, "MI_TFS: fatal\n");
8134 goto fatal;
8135 }
8136 }
8137
8138 if (macintstatus & (MI_TBTT | MI_DTIM_TBTT))
8139 brcms_c_tbtt(wlc);
8140
8141 /* ATIM window end */
8142 if (macintstatus & MI_ATIMWINEND) {
8143 BCMMSG(wlc->wiphy, "end of ATIM window\n");
Arend van Spriel16d28122011-12-08 15:06:51 -08008144 bcma_set32(core, D11REGOFFS(maccommand), wlc->qvalid);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008145 wlc->qvalid = 0;
8146 }
8147
8148 /*
8149 * received data or control frame, MI_DMAINT is
8150 * indication of RX_FIFO interrupt
8151 */
8152 if (macintstatus & MI_DMAINT)
8153 if (brcms_b_recv(wlc_hw, RX_FIFO, bounded))
8154 wlc->macintstatus |= MI_DMAINT;
8155
8156 /* noise sample collected */
8157 if (macintstatus & MI_BG_NOISE)
8158 wlc_phy_noise_sample_intr(wlc_hw->band->pi);
8159
8160 if (macintstatus & MI_GP0) {
8161 wiphy_err(wiphy, "wl%d: PSM microcode watchdog fired at %d "
Arend van Sprielb2ffec42011-12-08 15:06:45 -08008162 "(seconds). Resetting.\n", wlc_hw->unit, wlc_hw->now);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008163
8164 printk_once("%s : PSM Watchdog, chipid 0x%x, chiprev 0x%x\n",
Arend van Sprielb2ffec42011-12-08 15:06:45 -08008165 __func__, ai_get_chip_id(wlc_hw->sih),
8166 ai_get_chiprev(wlc_hw->sih));
Roland Vossenc261bdf2011-10-18 14:03:04 +02008167 brcms_fatal_error(wlc_hw->wlc->wl);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008168 }
8169
8170 /* gptimer timeout */
8171 if (macintstatus & MI_TO)
Arend van Spriel16d28122011-12-08 15:06:51 -08008172 bcma_write32(core, D11REGOFFS(gptimer), 0);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008173
8174 if (macintstatus & MI_RFDISABLE) {
8175 BCMMSG(wlc->wiphy, "wl%d: BMAC Detected a change on the"
8176 " RF Disable Input\n", wlc_hw->unit);
8177 brcms_rfkill_set_hw_state(wlc->wl);
8178 }
8179
8180 /* send any enq'd tx packets. Just makes sure to jump start tx */
8181 if (!pktq_empty(&wlc->pkt_queue->q))
8182 brcms_c_send_q(wlc);
8183
8184 /* it isn't done and needs to be resched if macintstatus is non-zero */
8185 return wlc->macintstatus != 0;
8186
8187 fatal:
Roland Vossenc261bdf2011-10-18 14:03:04 +02008188 brcms_fatal_error(wlc_hw->wlc->wl);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008189 return wlc->macintstatus != 0;
8190}
8191
Roland Vossendc460122011-10-21 16:16:28 +02008192void brcms_c_init(struct brcms_c_info *wlc, bool mute_tx)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008193{
Arend van Spriel16d28122011-12-08 15:06:51 -08008194 struct bcma_device *core = wlc->hw->d11core;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008195 u16 chanspec;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008196
8197 BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
8198
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008199 /*
8200 * This will happen if a big-hammer was executed. In
8201 * that case, we want to go back to the channel that
8202 * we were on and not new channel
8203 */
8204 if (wlc->pub->associated)
8205 chanspec = wlc->home_chanspec;
8206 else
8207 chanspec = brcms_c_init_chanspec(wlc);
8208
Roland Vossena8bc4912011-10-21 16:16:25 +02008209 brcms_b_init(wlc->hw, chanspec);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008210
8211 /* update beacon listen interval */
8212 brcms_c_bcn_li_upd(wlc);
8213
8214 /* write ethernet address to core */
8215 brcms_c_set_mac(wlc->bsscfg);
8216 brcms_c_set_bssid(wlc->bsscfg);
8217
8218 /* Update tsf_cfprep if associated and up */
8219 if (wlc->pub->associated && wlc->bsscfg->up) {
8220 u32 bi;
8221
8222 /* get beacon period and convert to uS */
8223 bi = wlc->bsscfg->current_bss->beacon_period << 10;
8224 /*
8225 * update since init path would reset
8226 * to default value
8227 */
Arend van Spriel16d28122011-12-08 15:06:51 -08008228 bcma_write32(core, D11REGOFFS(tsf_cfprep),
8229 bi << CFPREP_CBI_SHIFT);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008230
8231 /* Update maccontrol PM related bits */
8232 brcms_c_set_ps_ctrl(wlc);
8233 }
8234
8235 brcms_c_bandinit_ordered(wlc, chanspec);
8236
8237 /* init probe response timeout */
8238 brcms_b_write_shm(wlc->hw, M_PRS_MAXTIME, wlc->prb_resp_timeout);
8239
8240 /* init max burst txop (framebursting) */
8241 brcms_b_write_shm(wlc->hw, M_MBURST_TXOP,
8242 (wlc->
8243 _rifs ? (EDCF_AC_VO_TXOP_AP << 5) : MAXFRAMEBURST_TXOP));
8244
8245 /* initialize maximum allowed duty cycle */
8246 brcms_c_duty_cycle_set(wlc, wlc->tx_duty_cycle_ofdm, true, true);
8247 brcms_c_duty_cycle_set(wlc, wlc->tx_duty_cycle_cck, false, true);
8248
8249 /*
8250 * Update some shared memory locations related to
8251 * max AMPDU size allowed to received
8252 */
8253 brcms_c_ampdu_shm_upd(wlc->ampdu);
8254
8255 /* band-specific inits */
8256 brcms_c_bsinit(wlc);
8257
8258 /* Enable EDCF mode (while the MAC is suspended) */
Arend van Spriel16d28122011-12-08 15:06:51 -08008259 bcma_set16(core, D11REGOFFS(ifs_ctl), IFS_USEEDCF);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008260 brcms_c_edcf_setparams(wlc, false);
8261
8262 /* Init precedence maps for empty FIFOs */
8263 brcms_c_tx_prec_map_init(wlc);
8264
8265 /* read the ucode version if we have not yet done so */
8266 if (wlc->ucode_rev == 0) {
8267 wlc->ucode_rev =
8268 brcms_b_read_shm(wlc->hw, M_BOM_REV_MAJOR) << NBITS(u16);
8269 wlc->ucode_rev |= brcms_b_read_shm(wlc->hw, M_BOM_REV_MINOR);
8270 }
8271
8272 /* ..now really unleash hell (allow the MAC out of suspend) */
8273 brcms_c_enable_mac(wlc);
8274
Roland Vossena8bc4912011-10-21 16:16:25 +02008275 /* suspend the tx fifos and mute the phy for preism cac time */
8276 if (mute_tx)
Roland Vossenc6c44892011-10-21 16:16:26 +02008277 brcms_b_mute(wlc->hw, true);
Roland Vossena8bc4912011-10-21 16:16:25 +02008278
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008279 /* clear tx flow control */
8280 brcms_c_txflowcontrol_reset(wlc);
8281
8282 /* enable the RF Disable Delay timer */
Arend van Spriel16d28122011-12-08 15:06:51 -08008283 bcma_write32(core, D11REGOFFS(rfdisabledly), RFDISABLE_DEFAULT);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008284
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008285 /*
8286 * Initialize WME parameters; if they haven't been set by some other
8287 * mechanism (IOVar, etc) then read them from the hardware.
8288 */
8289 if (GFIELD(wlc->wme_retries[0], EDCF_SHORT) == 0) {
8290 /* Uninitialized; read from HW */
8291 int ac;
8292
Arend van Sprielb7eec422011-11-10 20:30:18 +01008293 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008294 wlc->wme_retries[ac] =
8295 brcms_b_read_shm(wlc->hw, M_AC_TXLMT_ADDR(ac));
8296 }
8297}
8298
8299/*
8300 * The common driver entry routine. Error codes should be unique
8301 */
8302struct brcms_c_info *
Arend van Sprielb63337a2011-12-08 15:06:47 -08008303brcms_c_attach(struct brcms_info *wl, struct bcma_device *core, uint unit,
8304 bool piomode, uint *perr)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008305{
8306 struct brcms_c_info *wlc;
8307 uint err = 0;
8308 uint i, j;
8309 struct brcms_pub *pub;
8310
8311 /* allocate struct brcms_c_info state and its substructures */
Arend van Sprielb63337a2011-12-08 15:06:47 -08008312 wlc = (struct brcms_c_info *) brcms_c_attach_malloc(unit, &err, 0);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008313 if (wlc == NULL)
8314 goto fail;
8315 wlc->wiphy = wl->wiphy;
8316 pub = wlc->pub;
8317
Joe Perches8ae74652012-01-15 00:38:38 -08008318#if defined(DEBUG)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008319 wlc_info_dbg = wlc;
8320#endif
8321
8322 wlc->band = wlc->bandstate[0];
8323 wlc->core = wlc->corestate;
8324 wlc->wl = wl;
8325 pub->unit = unit;
8326 pub->_piomode = piomode;
8327 wlc->bandinit_pending = false;
8328
8329 /* populate struct brcms_c_info with default values */
8330 brcms_c_info_init(wlc, unit);
8331
8332 /* update sta/ap related parameters */
8333 brcms_c_ap_upd(wlc);
8334
8335 /*
8336 * low level attach steps(all hw accesses go
8337 * inside, no more in rest of the attach)
8338 */
Arend van Sprielb63337a2011-12-08 15:06:47 -08008339 err = brcms_b_attach(wlc, core, unit, piomode);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008340 if (err)
8341 goto fail;
8342
8343 brcms_c_protection_upd(wlc, BRCMS_PROT_N_PAM_OVR, OFF);
8344
8345 pub->phy_11ncapable = BRCMS_PHY_11N_CAP(wlc->band);
8346
8347 /* disable allowed duty cycle */
8348 wlc->tx_duty_cycle_ofdm = 0;
8349 wlc->tx_duty_cycle_cck = 0;
8350
8351 brcms_c_stf_phy_chain_calc(wlc);
8352
8353 /* txchain 1: txant 0, txchain 2: txant 1 */
8354 if (BRCMS_ISNPHY(wlc->band) && (wlc->stf->txstreams == 1))
8355 wlc->stf->txant = wlc->stf->hw_txchain - 1;
8356
8357 /* push to BMAC driver */
8358 wlc_phy_stf_chain_init(wlc->band->pi, wlc->stf->hw_txchain,
8359 wlc->stf->hw_rxchain);
8360
8361 /* pull up some info resulting from the low attach */
8362 for (i = 0; i < NFIFO; i++)
8363 wlc->core->txavail[i] = wlc->hw->txavail[i];
8364
8365 memcpy(&wlc->perm_etheraddr, &wlc->hw->etheraddr, ETH_ALEN);
8366 memcpy(&pub->cur_etheraddr, &wlc->hw->etheraddr, ETH_ALEN);
8367
8368 for (j = 0; j < wlc->pub->_nbands; j++) {
8369 wlc->band = wlc->bandstate[j];
8370
8371 if (!brcms_c_attach_stf_ant_init(wlc)) {
8372 err = 24;
8373 goto fail;
8374 }
8375
8376 /* default contention windows size limits */
8377 wlc->band->CWmin = APHY_CWMIN;
8378 wlc->band->CWmax = PHY_CWMAX;
8379
8380 /* init gmode value */
8381 if (wlc->band->bandtype == BRCM_BAND_2G) {
8382 wlc->band->gmode = GMODE_AUTO;
8383 brcms_c_protection_upd(wlc, BRCMS_PROT_G_USER,
8384 wlc->band->gmode);
8385 }
8386
8387 /* init _n_enab supported mode */
8388 if (BRCMS_PHY_11N_CAP(wlc->band)) {
8389 pub->_n_enab = SUPPORT_11N;
8390 brcms_c_protection_upd(wlc, BRCMS_PROT_N_USER,
8391 ((pub->_n_enab ==
8392 SUPPORT_11N) ? WL_11N_2x2 :
8393 WL_11N_3x3));
8394 }
8395
8396 /* init per-band default rateset, depend on band->gmode */
8397 brcms_default_rateset(wlc, &wlc->band->defrateset);
8398
8399 /* fill in hw_rateset */
8400 brcms_c_rateset_filter(&wlc->band->defrateset,
8401 &wlc->band->hw_rateset, false,
8402 BRCMS_RATES_CCK_OFDM, BRCMS_RATE_MASK,
8403 (bool) (wlc->pub->_n_enab & SUPPORT_11N));
8404 }
8405
8406 /*
8407 * update antenna config due to
8408 * wlc->stf->txant/txchain/ant_rx_ovr change
8409 */
8410 brcms_c_stf_phy_txant_upd(wlc);
8411
8412 /* attach each modules */
8413 err = brcms_c_attach_module(wlc);
8414 if (err != 0)
8415 goto fail;
8416
8417 if (!brcms_c_timers_init(wlc, unit)) {
8418 wiphy_err(wl->wiphy, "wl%d: %s: init_timer failed\n", unit,
8419 __func__);
8420 err = 32;
8421 goto fail;
8422 }
8423
8424 /* depend on rateset, gmode */
8425 wlc->cmi = brcms_c_channel_mgr_attach(wlc);
8426 if (!wlc->cmi) {
8427 wiphy_err(wl->wiphy, "wl%d: %s: channel_mgr_attach failed"
8428 "\n", unit, __func__);
8429 err = 33;
8430 goto fail;
8431 }
8432
8433 /* init default when all parameters are ready, i.e. ->rateset */
8434 brcms_c_bss_default_init(wlc);
8435
8436 /*
8437 * Complete the wlc default state initializations..
8438 */
8439
8440 /* allocate our initial queue */
8441 wlc->pkt_queue = brcms_c_txq_alloc(wlc);
8442 if (wlc->pkt_queue == NULL) {
8443 wiphy_err(wl->wiphy, "wl%d: %s: failed to malloc tx queue\n",
8444 unit, __func__);
8445 err = 100;
8446 goto fail;
8447 }
8448
8449 wlc->bsscfg->wlc = wlc;
8450
8451 wlc->mimoft = FT_HT;
8452 wlc->mimo_40txbw = AUTO;
8453 wlc->ofdm_40txbw = AUTO;
8454 wlc->cck_40txbw = AUTO;
8455 brcms_c_update_mimo_band_bwcap(wlc, BRCMS_N_BW_20IN2G_40IN5G);
8456
8457 /* Set default values of SGI */
8458 if (BRCMS_SGI_CAP_PHY(wlc)) {
8459 brcms_c_ht_update_sgi_rx(wlc, (BRCMS_N_SGI_20 |
8460 BRCMS_N_SGI_40));
8461 } else if (BRCMS_ISSSLPNPHY(wlc->band)) {
8462 brcms_c_ht_update_sgi_rx(wlc, (BRCMS_N_SGI_20 |
8463 BRCMS_N_SGI_40));
8464 } else {
8465 brcms_c_ht_update_sgi_rx(wlc, 0);
8466 }
8467
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008468 brcms_b_antsel_set(wlc->hw, wlc->asi->antsel_avail);
8469
8470 if (perr)
8471 *perr = 0;
8472
8473 return wlc;
8474
8475 fail:
8476 wiphy_err(wl->wiphy, "wl%d: %s: failed with err %d\n",
8477 unit, __func__, err);
8478 if (wlc)
8479 brcms_c_detach(wlc);
8480
8481 if (perr)
8482 *perr = err;
8483 return NULL;
8484}