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