blob: 9af5851587e504585ed7c2ed29a020f5c1cf5a31 [file] [log] [blame]
Arend van Spriel5b435de2011-10-05 13:19:03 +02001/*
2 * Copyright (c) 2010 Broadcom Corporation
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Joe Perches02f77192012-01-15 00:38:44 -080017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Arend van Spriel5b435de2011-10-05 13:19:03 +020019#include <linux/pci_ids.h>
20#include <linux/if_ether.h>
Seth Forsheeedc76512012-06-16 07:47:56 -050021#include <net/cfg80211.h>
Arend van Spriel5b435de2011-10-05 13:19:03 +020022#include <net/mac80211.h>
23#include <brcm_hw_ids.h>
24#include <aiutils.h>
25#include <chipcommon.h>
26#include "rate.h"
27#include "scb.h"
28#include "phy/phy_hal.h"
29#include "channel.h"
30#include "antsel.h"
31#include "stf.h"
32#include "ampdu.h"
33#include "mac80211_if.h"
34#include "ucode_loader.h"
35#include "main.h"
Alwin Beukers23038212011-10-18 14:02:58 +020036#include "soc.h"
Seth Forsheee041f652012-11-15 08:07:56 -060037#include "dma.h"
Seth Forsheeb353dda2012-11-15 08:08:03 -060038#include "debug.h"
Seth Forsheecdf43522012-11-15 08:08:09 -060039#include "brcms_trace_events.h"
Arend van Spriel5b435de2011-10-05 13:19:03 +020040
Arend van Spriel5b435de2011-10-05 13:19:03 +020041/* 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
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200104#define DOT11_MAXNUMFRAGS 16
Arend van Spriel5b435de2011-10-05 13:19:03 +0200105#define DOT11_MAX_FRAG_LEN 2346
106
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200107#define BPHY_PLCP_TIME 192
108#define RIFS_11N_TIME 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200109
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200110/* length of the BCN template area */
111#define BCN_TMPL_LEN 512
Arend van Spriel5b435de2011-10-05 13:19:03 +0200112
113/* brcms_bss_info flag bit values */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200114#define BRCMS_BSS_HT 0x0020 /* BSS is HT (MIMO) capable */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200115
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200116/* chip rx buffer offset */
117#define BRCMS_HWRXOFF 38
Arend van Spriel5b435de2011-10-05 13:19:03 +0200118
119/* rfdisable delay timer 500 ms, runs of ALP clock */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200120#define RFDISABLE_DEFAULT 10000000
Arend van Spriel5b435de2011-10-05 13:19:03 +0200121
122#define BRCMS_TEMPSENSE_PERIOD 10 /* 10 second timeout */
123
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200124/* synthpu_dly times in us */
125#define SYNTHPU_DLY_APHY_US 3700
126#define SYNTHPU_DLY_BPHY_US 1050
127#define SYNTHPU_DLY_NPHY_US 2048
128#define SYNTHPU_DLY_LPPHY_US 300
Arend van Spriel5b435de2011-10-05 13:19:03 +0200129
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200130#define ANTCNT 10 /* vanilla M_MAX_ANTCNT val */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200131
132/* Per-AC retry limit register definitions; uses defs.h bitfield macros */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200133#define EDCF_SHORT_S 0
134#define EDCF_SFB_S 4
135#define EDCF_LONG_S 8
136#define EDCF_LFB_S 12
137#define EDCF_SHORT_M BITFIELD_MASK(4)
138#define EDCF_SFB_M BITFIELD_MASK(4)
139#define EDCF_LONG_M BITFIELD_MASK(4)
140#define EDCF_LFB_M BITFIELD_MASK(4)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200141
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200142#define RETRY_SHORT_DEF 7 /* Default Short retry Limit */
143#define RETRY_SHORT_MAX 255 /* Maximum Short retry Limit */
144#define RETRY_LONG_DEF 4 /* Default Long retry count */
145#define RETRY_SHORT_FB 3 /* Short count for fb rate */
146#define RETRY_LONG_FB 2 /* Long count for fb rate */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200147
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200148#define APHY_CWMIN 15
149#define PHY_CWMAX 1023
Arend van Spriel5b435de2011-10-05 13:19:03 +0200150
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200151#define EDCF_AIFSN_MIN 1
Arend van Spriel5b435de2011-10-05 13:19:03 +0200152
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200153#define FRAGNUM_MASK 0xF
Arend van Spriel5b435de2011-10-05 13:19:03 +0200154
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200155#define APHY_SLOT_TIME 9
156#define BPHY_SLOT_TIME 20
Arend van Spriel5b435de2011-10-05 13:19:03 +0200157
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200158#define WL_SPURAVOID_OFF 0
159#define WL_SPURAVOID_ON1 1
160#define WL_SPURAVOID_ON2 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200161
162/* invalid core flags, use the saved coreflags */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200163#define BRCMS_USE_COREFLAGS 0xffffffff
Arend van Spriel5b435de2011-10-05 13:19:03 +0200164
165/* values for PLCPHdr_override */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200166#define BRCMS_PLCP_AUTO -1
167#define BRCMS_PLCP_SHORT 0
168#define BRCMS_PLCP_LONG 1
Arend van Spriel5b435de2011-10-05 13:19:03 +0200169
170/* values for g_protection_override and n_protection_override */
171#define BRCMS_PROTECTION_AUTO -1
172#define BRCMS_PROTECTION_OFF 0
173#define BRCMS_PROTECTION_ON 1
174#define BRCMS_PROTECTION_MMHDR_ONLY 2
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200175#define BRCMS_PROTECTION_CTS_ONLY 3
Arend van Spriel5b435de2011-10-05 13:19:03 +0200176
177/* values for g_protection_control and n_protection_control */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200178#define BRCMS_PROTECTION_CTL_OFF 0
Arend van Spriel5b435de2011-10-05 13:19:03 +0200179#define BRCMS_PROTECTION_CTL_LOCAL 1
180#define BRCMS_PROTECTION_CTL_OVERLAP 2
181
182/* values for n_protection */
183#define BRCMS_N_PROTECTION_OFF 0
184#define BRCMS_N_PROTECTION_OPTIONAL 1
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200185#define BRCMS_N_PROTECTION_20IN40 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200186#define BRCMS_N_PROTECTION_MIXEDMODE 3
187
188/* values for band specific 40MHz capabilities */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200189#define BRCMS_N_BW_20ALL 0
190#define BRCMS_N_BW_40ALL 1
191#define BRCMS_N_BW_20IN2G_40IN5G 2
Arend van Spriel5b435de2011-10-05 13:19:03 +0200192
193/* bitflags for SGI support (sgi_rx iovar) */
194#define BRCMS_N_SGI_20 0x01
195#define BRCMS_N_SGI_40 0x02
196
197/* defines used by the nrate iovar */
198/* MSC in use,indicates b0-6 holds an mcs */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200199#define NRATE_MCS_INUSE 0x00000080
Arend van Spriel5b435de2011-10-05 13:19:03 +0200200/* rate/mcs value */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200201#define NRATE_RATE_MASK 0x0000007f
Arend van Spriel5b435de2011-10-05 13:19:03 +0200202/* stf mode mask: siso, cdd, stbc, sdm */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200203#define NRATE_STF_MASK 0x0000ff00
Arend van Spriel5b435de2011-10-05 13:19:03 +0200204/* stf mode shift */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200205#define NRATE_STF_SHIFT 8
Arend van Spriel5b435de2011-10-05 13:19:03 +0200206/* bit indicate to override mcs only */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200207#define NRATE_OVERRIDE_MCS_ONLY 0x40000000
208#define NRATE_SGI_MASK 0x00800000 /* sgi mode */
209#define NRATE_SGI_SHIFT 23 /* sgi mode */
210#define NRATE_LDPC_CODING 0x00400000 /* adv coding in use */
211#define NRATE_LDPC_SHIFT 22 /* ldpc shift */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200212
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200213#define NRATE_STF_SISO 0 /* stf mode SISO */
214#define NRATE_STF_CDD 1 /* stf mode CDD */
215#define NRATE_STF_STBC 2 /* stf mode STBC */
216#define NRATE_STF_SDM 3 /* stf mode SDM */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200217
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200218#define MAX_DMA_SEGS 4
Arend van Spriel5b435de2011-10-05 13:19:03 +0200219
Seth Forshee75be3e22012-11-15 08:07:58 -0600220/* # of entries in Tx FIFO */
221#define NTXD 64
Arend van Spriel5b435de2011-10-05 13:19:03 +0200222/* Max # of entries in Rx FIFO based on 4kb page size */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200223#define NRXD 256
Arend van Spriel5b435de2011-10-05 13:19:03 +0200224
Seth Forsheee041f652012-11-15 08:07:56 -0600225/* Amount of headroom to leave in Tx FIFO */
226#define TX_HEADROOM 4
227
Arend van Spriel5b435de2011-10-05 13:19:03 +0200228/* try to keep this # rbufs posted to the chip */
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200229#define NRXBUFPOST 32
Arend van Spriel5b435de2011-10-05 13:19:03 +0200230
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200231/* max # frames to process in brcms_c_recv() */
232#define RXBND 8
233/* max # tx status to process in wlc_txstatus() */
234#define TXSBND 8
Arend van Spriel5b435de2011-10-05 13:19:03 +0200235
Alwin Beukers44760652011-10-12 20:51:31 +0200236/* brcmu_format_flags() bit description structure */
237struct brcms_c_bit_desc {
238 u32 bit;
239 const char *name;
240};
241
Arend van Spriel5b435de2011-10-05 13:19:03 +0200242/*
243 * The following table lists the buffer memory allocated to xmt fifos in HW.
244 * the size is in units of 256bytes(one block), total size is HW dependent
245 * ucode has default fifo partition, sw can overwrite if necessary
246 *
247 * This is documented in twiki under the topic UcodeTxFifo. Please ensure
248 * the twiki is updated before making changes.
249 */
250
251/* Starting corerev for the fifo size table */
Hauke Mehrtens093cd332012-07-02 20:15:51 +0200252#define XMTFIFOTBL_STARTREV 17
Arend van Spriel5b435de2011-10-05 13:19:03 +0200253
254struct d11init {
255 __le16 addr;
256 __le16 size;
257 __le32 value;
258};
259
Arend van Spriel5b435de2011-10-05 13:19:03 +0200260struct edcf_acparam {
261 u8 ACI;
262 u8 ECW;
263 u16 TXOP;
264} __packed;
265
Arend van Spriel5b435de2011-10-05 13:19:03 +0200266/* debug/trace */
Seth Forsheeb0341742012-11-15 08:08:01 -0600267uint brcm_msg_level;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200268
269/* TX FIFO number to WME/802.1E Access Category */
Arend van Sprielb7eec422011-11-10 20:30:18 +0100270static const u8 wme_fifo2ac[] = {
271 IEEE80211_AC_BK,
272 IEEE80211_AC_BE,
273 IEEE80211_AC_VI,
274 IEEE80211_AC_VO,
275 IEEE80211_AC_BE,
276 IEEE80211_AC_BE
277};
Arend van Spriel5b435de2011-10-05 13:19:03 +0200278
Arend van Sprielb7eec422011-11-10 20:30:18 +0100279/* ieee80211 Access Category to TX FIFO number */
280static const u8 wme_ac2fifo[] = {
281 TX_AC_VO_FIFO,
282 TX_AC_VI_FIFO,
283 TX_AC_BE_FIFO,
284 TX_AC_BK_FIFO
285};
Arend van Spriel5b435de2011-10-05 13:19:03 +0200286
Arend van Spriel5b435de2011-10-05 13:19:03 +0200287static const u16 xmtfifo_sz[][NFIFO] = {
Hauke Mehrtens093cd332012-07-02 20:15:51 +0200288 /* corerev 17: 5120, 49152, 49152, 5376, 4352, 1280 */
289 {20, 192, 192, 21, 17, 5},
290 /* corerev 18: */
291 {0, 0, 0, 0, 0, 0},
292 /* corerev 19: */
293 {0, 0, 0, 0, 0, 0},
Arend van Spriel5b435de2011-10-05 13:19:03 +0200294 /* corerev 20: 5120, 49152, 49152, 5376, 4352, 1280 */
295 {20, 192, 192, 21, 17, 5},
296 /* corerev 21: 2304, 14848, 5632, 3584, 3584, 1280 */
297 {9, 58, 22, 14, 14, 5},
298 /* corerev 22: 5120, 49152, 49152, 5376, 4352, 1280 */
299 {20, 192, 192, 21, 17, 5},
300 /* corerev 23: 5120, 49152, 49152, 5376, 4352, 1280 */
301 {20, 192, 192, 21, 17, 5},
302 /* corerev 24: 2304, 14848, 5632, 3584, 3584, 1280 */
303 {9, 58, 22, 14, 14, 5},
Hauke Mehrtens093cd332012-07-02 20:15:51 +0200304 /* corerev 25: */
305 {0, 0, 0, 0, 0, 0},
306 /* corerev 26: */
307 {0, 0, 0, 0, 0, 0},
308 /* corerev 27: */
309 {0, 0, 0, 0, 0, 0},
310 /* corerev 28: 2304, 14848, 5632, 3584, 3584, 1280 */
311 {9, 58, 22, 14, 14, 5},
Arend van Spriel5b435de2011-10-05 13:19:03 +0200312};
313
Joe Perches8ae74652012-01-15 00:38:38 -0800314#ifdef DEBUG
Arend van Spriel5b435de2011-10-05 13:19:03 +0200315static const char * const fifo_names[] = {
316 "AC_BK", "AC_BE", "AC_VI", "AC_VO", "BCMC", "ATIM" };
317#else
318static const char fifo_names[6][0];
319#endif
320
Joe Perches8ae74652012-01-15 00:38:38 -0800321#ifdef DEBUG
Arend van Spriel5b435de2011-10-05 13:19:03 +0200322/* pointer to most recently allocated wl/wlc */
323static struct brcms_c_info *wlc_info_dbg = (struct brcms_c_info *) (NULL);
324#endif
325
Seth Forshee32d0f122012-11-15 08:07:55 -0600326/* Mapping of ieee80211 AC numbers to tx fifos */
327static const u8 ac_to_fifo_mapping[IEEE80211_NUM_ACS] = {
328 [IEEE80211_AC_VO] = TX_AC_VO_FIFO,
329 [IEEE80211_AC_VI] = TX_AC_VI_FIFO,
330 [IEEE80211_AC_BE] = TX_AC_BE_FIFO,
331 [IEEE80211_AC_BK] = TX_AC_BK_FIFO,
332};
333
Seth Forsheee041f652012-11-15 08:07:56 -0600334/* Mapping of tx fifos to ieee80211 AC numbers */
335static const u8 fifo_to_ac_mapping[IEEE80211_NUM_ACS] = {
336 [TX_AC_BK_FIFO] = IEEE80211_AC_BK,
337 [TX_AC_BE_FIFO] = IEEE80211_AC_BE,
338 [TX_AC_VI_FIFO] = IEEE80211_AC_VI,
339 [TX_AC_VO_FIFO] = IEEE80211_AC_VO,
340};
341
Seth Forshee32d0f122012-11-15 08:07:55 -0600342static u8 brcms_ac_to_fifo(u8 ac)
343{
344 if (ac >= ARRAY_SIZE(ac_to_fifo_mapping))
345 return TX_AC_BE_FIFO;
346 return ac_to_fifo_mapping[ac];
347}
348
Seth Forsheee041f652012-11-15 08:07:56 -0600349static u8 brcms_fifo_to_ac(u8 fifo)
350{
351 if (fifo >= ARRAY_SIZE(fifo_to_ac_mapping))
352 return IEEE80211_AC_BE;
353 return fifo_to_ac_mapping[fifo];
354}
355
Alwin Beukers73ffc2f2011-10-18 14:02:57 +0200356/* Find basic rate for a given rate */
357static u8 brcms_basic_rate(struct brcms_c_info *wlc, u32 rspec)
358{
359 if (is_mcs_rate(rspec))
360 return wlc->band->basic_rate[mcs_table[rspec & RSPEC_RATE_MASK]
361 .leg_ofdm];
362 return wlc->band->basic_rate[rspec & RSPEC_RATE_MASK];
363}
364
365static u16 frametype(u32 rspec, u8 mimoframe)
366{
367 if (is_mcs_rate(rspec))
368 return mimoframe;
369 return is_cck_rate(rspec) ? FT_CCK : FT_OFDM;
370}
371
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200372/* currently the best mechanism for determining SIFS is the band in use */
373static u16 get_sifs(struct brcms_band *band)
374{
375 return band->bandtype == BRCM_BAND_5G ? APHY_SIFS_TIME :
376 BPHY_SIFS_TIME;
377}
378
379/*
380 * Detect Card removed.
381 * Even checking an sbconfig register read will not false trigger when the core
382 * is in reset it breaks CF address mechanism. Accessing gphy phyversion will
383 * cause SB error if aphy is in reset on 4306B0-DB. Need a simple accessible
384 * reg with fixed 0/1 pattern (some platforms return all 0).
385 * If clocks are present, call the sb routine which will figure out if the
386 * device is removed.
387 */
388static bool brcms_deviceremoved(struct brcms_c_info *wlc)
389{
Arend van Spriel16d28122011-12-08 15:06:51 -0800390 u32 macctrl;
391
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200392 if (!wlc->hw->clk)
393 return ai_deviceremoved(wlc->hw->sih);
Arend van Spriel16d28122011-12-08 15:06:51 -0800394 macctrl = bcma_read32(wlc->hw->d11core,
395 D11REGOFFS(maccontrol));
396 return (macctrl & (MCTL_PSM_JMP_0 | MCTL_IHR_EN)) != MCTL_IHR_EN;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200397}
398
399/* sum the individual fifo tx pending packet counts */
Seth Forsheee041f652012-11-15 08:07:56 -0600400static int brcms_txpktpendtot(struct brcms_c_info *wlc)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200401{
Seth Forsheee041f652012-11-15 08:07:56 -0600402 int i;
403 int pending = 0;
404
405 for (i = 0; i < ARRAY_SIZE(wlc->hw->di); i++)
406 if (wlc->hw->di[i])
407 pending += dma_txpending(wlc->hw->di[i]);
408 return pending;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200409}
410
411static bool brcms_is_mband_unlocked(struct brcms_c_info *wlc)
412{
413 return wlc->pub->_nbands > 1 && !wlc->bandlocked;
414}
415
416static int brcms_chspec_bw(u16 chanspec)
417{
418 if (CHSPEC_IS40(chanspec))
419 return BRCMS_40_MHZ;
420 if (CHSPEC_IS20(chanspec))
421 return BRCMS_20_MHZ;
422
423 return BRCMS_10_MHZ;
424}
425
Arend van Spriel5b435de2011-10-05 13:19:03 +0200426static void brcms_c_bsscfg_mfree(struct brcms_bss_cfg *cfg)
427{
428 if (cfg == NULL)
429 return;
430
431 kfree(cfg->current_bss);
432 kfree(cfg);
433}
434
435static void brcms_c_detach_mfree(struct brcms_c_info *wlc)
436{
437 if (wlc == NULL)
438 return;
439
440 brcms_c_bsscfg_mfree(wlc->bsscfg);
441 kfree(wlc->pub);
442 kfree(wlc->modulecb);
443 kfree(wlc->default_bss);
444 kfree(wlc->protection);
445 kfree(wlc->stf);
446 kfree(wlc->bandstate[0]);
447 kfree(wlc->corestate->macstat_snapshot);
448 kfree(wlc->corestate);
449 kfree(wlc->hw->bandstate[0]);
450 kfree(wlc->hw);
451
452 /* free the wlc */
453 kfree(wlc);
454 wlc = NULL;
455}
456
457static struct brcms_bss_cfg *brcms_c_bsscfg_malloc(uint unit)
458{
459 struct brcms_bss_cfg *cfg;
460
461 cfg = kzalloc(sizeof(struct brcms_bss_cfg), GFP_ATOMIC);
462 if (cfg == NULL)
463 goto fail;
464
465 cfg->current_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC);
466 if (cfg->current_bss == NULL)
467 goto fail;
468
469 return cfg;
470
471 fail:
472 brcms_c_bsscfg_mfree(cfg);
473 return NULL;
474}
475
476static struct brcms_c_info *
477brcms_c_attach_malloc(uint unit, uint *err, uint devid)
478{
479 struct brcms_c_info *wlc;
480
481 wlc = kzalloc(sizeof(struct brcms_c_info), GFP_ATOMIC);
482 if (wlc == NULL) {
483 *err = 1002;
484 goto fail;
485 }
486
487 /* allocate struct brcms_c_pub state structure */
488 wlc->pub = kzalloc(sizeof(struct brcms_pub), GFP_ATOMIC);
489 if (wlc->pub == NULL) {
490 *err = 1003;
491 goto fail;
492 }
493 wlc->pub->wlc = wlc;
494
495 /* allocate struct brcms_hardware state structure */
496
497 wlc->hw = kzalloc(sizeof(struct brcms_hardware), GFP_ATOMIC);
498 if (wlc->hw == NULL) {
499 *err = 1005;
500 goto fail;
501 }
502 wlc->hw->wlc = wlc;
503
504 wlc->hw->bandstate[0] =
505 kzalloc(sizeof(struct brcms_hw_band) * MAXBANDS, GFP_ATOMIC);
506 if (wlc->hw->bandstate[0] == NULL) {
507 *err = 1006;
508 goto fail;
509 } else {
510 int i;
511
512 for (i = 1; i < MAXBANDS; i++)
513 wlc->hw->bandstate[i] = (struct brcms_hw_band *)
514 ((unsigned long)wlc->hw->bandstate[0] +
515 (sizeof(struct brcms_hw_band) * i));
516 }
517
518 wlc->modulecb =
519 kzalloc(sizeof(struct modulecb) * BRCMS_MAXMODULES, GFP_ATOMIC);
520 if (wlc->modulecb == NULL) {
521 *err = 1009;
522 goto fail;
523 }
524
525 wlc->default_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC);
526 if (wlc->default_bss == NULL) {
527 *err = 1010;
528 goto fail;
529 }
530
531 wlc->bsscfg = brcms_c_bsscfg_malloc(unit);
532 if (wlc->bsscfg == NULL) {
533 *err = 1011;
534 goto fail;
535 }
536
537 wlc->protection = kzalloc(sizeof(struct brcms_protection),
538 GFP_ATOMIC);
539 if (wlc->protection == NULL) {
540 *err = 1016;
541 goto fail;
542 }
543
544 wlc->stf = kzalloc(sizeof(struct brcms_stf), GFP_ATOMIC);
545 if (wlc->stf == NULL) {
546 *err = 1017;
547 goto fail;
548 }
549
550 wlc->bandstate[0] =
551 kzalloc(sizeof(struct brcms_band)*MAXBANDS, GFP_ATOMIC);
552 if (wlc->bandstate[0] == NULL) {
553 *err = 1025;
554 goto fail;
555 } else {
556 int i;
557
558 for (i = 1; i < MAXBANDS; i++)
559 wlc->bandstate[i] = (struct brcms_band *)
560 ((unsigned long)wlc->bandstate[0]
561 + (sizeof(struct brcms_band)*i));
562 }
563
564 wlc->corestate = kzalloc(sizeof(struct brcms_core), GFP_ATOMIC);
565 if (wlc->corestate == NULL) {
566 *err = 1026;
567 goto fail;
568 }
569
570 wlc->corestate->macstat_snapshot =
571 kzalloc(sizeof(struct macstat), GFP_ATOMIC);
572 if (wlc->corestate->macstat_snapshot == NULL) {
573 *err = 1027;
574 goto fail;
575 }
576
577 return wlc;
578
579 fail:
580 brcms_c_detach_mfree(wlc);
581 return NULL;
582}
583
584/*
585 * Update the slot timing for standard 11b/g (20us slots)
586 * or shortslot 11g (9us slots)
587 * The PSM needs to be suspended for this call.
588 */
589static void brcms_b_update_slot_timing(struct brcms_hardware *wlc_hw,
590 bool shortslot)
591{
Arend van Spriel16d28122011-12-08 15:06:51 -0800592 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200593
594 if (shortslot) {
595 /* 11g short slot: 11a timing */
Arend van Spriel16d28122011-12-08 15:06:51 -0800596 bcma_write16(core, D11REGOFFS(ifs_slot), 0x0207);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200597 brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, APHY_SLOT_TIME);
598 } else {
599 /* 11g long slot: 11b timing */
Arend van Spriel16d28122011-12-08 15:06:51 -0800600 bcma_write16(core, D11REGOFFS(ifs_slot), 0x0212);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200601 brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, BPHY_SLOT_TIME);
602 }
603}
604
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200605/*
606 * calculate frame duration of a given rate and length, return
607 * time in usec unit
608 */
Arend van Spriel094b1992011-10-18 14:03:07 +0200609static uint brcms_c_calc_frame_time(struct brcms_c_info *wlc, u32 ratespec,
610 u8 preamble_type, uint mac_len)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200611{
612 uint nsyms, dur = 0, Ndps, kNdps;
613 uint rate = rspec2rate(ratespec);
614
615 if (rate == 0) {
Seth Forsheeb353dda2012-11-15 08:08:03 -0600616 brcms_err(wlc->hw->d11core, "wl%d: WAR: using rate of 1 mbps\n",
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200617 wlc->pub->unit);
618 rate = BRCM_RATE_1M;
619 }
620
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200621 if (is_mcs_rate(ratespec)) {
622 uint mcs = ratespec & RSPEC_RATE_MASK;
623 int tot_streams = mcs_2_txstreams(mcs) + rspec_stc(ratespec);
624
625 dur = PREN_PREAMBLE + (tot_streams * PREN_PREAMBLE_EXT);
626 if (preamble_type == BRCMS_MM_PREAMBLE)
627 dur += PREN_MM_EXT;
628 /* 1000Ndbps = kbps * 4 */
629 kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec),
630 rspec_issgi(ratespec)) * 4;
631
632 if (rspec_stc(ratespec) == 0)
633 nsyms =
634 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
635 APHY_TAIL_NBITS) * 1000, kNdps);
636 else
637 /* STBC needs to have even number of symbols */
638 nsyms =
639 2 *
640 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
641 APHY_TAIL_NBITS) * 1000, 2 * kNdps);
642
643 dur += APHY_SYMBOL_TIME * nsyms;
644 if (wlc->band->bandtype == BRCM_BAND_2G)
645 dur += DOT11_OFDM_SIGNAL_EXTENSION;
646 } else if (is_ofdm_rate(rate)) {
647 dur = APHY_PREAMBLE_TIME;
648 dur += APHY_SIGNAL_TIME;
649 /* Ndbps = Mbps * 4 = rate(500Kbps) * 2 */
650 Ndps = rate * 2;
651 /* NSyms = CEILING((SERVICE + 8*NBytes + TAIL) / Ndbps) */
652 nsyms =
653 CEIL((APHY_SERVICE_NBITS + 8 * mac_len + APHY_TAIL_NBITS),
654 Ndps);
655 dur += APHY_SYMBOL_TIME * nsyms;
656 if (wlc->band->bandtype == BRCM_BAND_2G)
657 dur += DOT11_OFDM_SIGNAL_EXTENSION;
658 } else {
659 /*
660 * calc # bits * 2 so factor of 2 in rate (1/2 mbps)
661 * will divide out
662 */
663 mac_len = mac_len * 8 * 2;
664 /* calc ceiling of bits/rate = microseconds of air time */
665 dur = (mac_len + rate - 1) / rate;
666 if (preamble_type & BRCMS_SHORT_PREAMBLE)
667 dur += BPHY_PLCP_SHORT_TIME;
668 else
669 dur += BPHY_PLCP_TIME;
670 }
671 return dur;
672}
673
Arend van Spriel5b435de2011-10-05 13:19:03 +0200674static void brcms_c_write_inits(struct brcms_hardware *wlc_hw,
675 const struct d11init *inits)
676{
Arend van Spriel16d28122011-12-08 15:06:51 -0800677 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200678 int i;
Arend van Spriel16d28122011-12-08 15:06:51 -0800679 uint offset;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200680 u16 size;
681 u32 value;
682
Seth Forsheeb353dda2012-11-15 08:08:03 -0600683 brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200684
Arend van Spriel5b435de2011-10-05 13:19:03 +0200685 for (i = 0; inits[i].addr != cpu_to_le16(0xffff); i++) {
686 size = le16_to_cpu(inits[i].size);
Arend van Spriel16d28122011-12-08 15:06:51 -0800687 offset = le16_to_cpu(inits[i].addr);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200688 value = le32_to_cpu(inits[i].value);
689 if (size == 2)
Arend van Spriel16d28122011-12-08 15:06:51 -0800690 bcma_write16(core, offset, value);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200691 else if (size == 4)
Arend van Spriel16d28122011-12-08 15:06:51 -0800692 bcma_write32(core, offset, value);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200693 else
694 break;
695 }
696}
697
698static void brcms_c_write_mhf(struct brcms_hardware *wlc_hw, u16 *mhfs)
699{
700 u8 idx;
701 u16 addr[] = {
702 M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4,
703 M_HOST_FLAGS5
704 };
705
706 for (idx = 0; idx < MHFMAX; idx++)
707 brcms_b_write_shm(wlc_hw, addr[idx], mhfs[idx]);
708}
709
710static void brcms_c_ucode_bsinit(struct brcms_hardware *wlc_hw)
711{
Arend van Spriel5b435de2011-10-05 13:19:03 +0200712 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 */
Hauke Mehrtens6f80f012012-12-07 00:35:53 +0100718 if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200719 if (BRCMS_ISNPHY(wlc_hw->band))
720 brcms_c_write_inits(wlc_hw, ucode->d11n0bsinitvals16);
721 else
Seth Forsheeb353dda2012-11-15 08:08:03 -0600722 brcms_err(wlc_hw->d11core,
723 "%s: wl%d: unsupported phy in corerev %d\n",
724 __func__, wlc_hw->unit,
Arend van Spriel5b435de2011-10-05 13:19:03 +0200725 wlc_hw->corerev);
726 } else {
727 if (D11REV_IS(wlc_hw->corerev, 24)) {
728 if (BRCMS_ISLCNPHY(wlc_hw->band))
729 brcms_c_write_inits(wlc_hw,
730 ucode->d11lcn0bsinitvals24);
731 else
Seth Forsheeb353dda2012-11-15 08:08:03 -0600732 brcms_err(wlc_hw->d11core,
733 "%s: wl%d: unsupported phy in core rev %d\n",
734 __func__, wlc_hw->unit,
735 wlc_hw->corerev);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200736 } else {
Seth Forsheeb353dda2012-11-15 08:08:03 -0600737 brcms_err(wlc_hw->d11core,
738 "%s: wl%d: unsupported corerev %d\n",
739 __func__, wlc_hw->unit, wlc_hw->corerev);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200740 }
741 }
742}
743
Arend van Spriela8779e42011-12-08 15:06:58 -0800744static void brcms_b_core_ioctl(struct brcms_hardware *wlc_hw, u32 m, u32 v)
745{
746 struct bcma_device *core = wlc_hw->d11core;
747 u32 ioctl = bcma_aread32(core, BCMA_IOCTL) & ~m;
748
749 bcma_awrite32(core, BCMA_IOCTL, ioctl | v);
750}
751
Arend van Spriel5b435de2011-10-05 13:19:03 +0200752static void brcms_b_core_phy_clk(struct brcms_hardware *wlc_hw, bool clk)
753{
Seth Forsheeb353dda2012-11-15 08:08:03 -0600754 brcms_dbg_info(wlc_hw->d11core, "wl%d: clk %d\n", wlc_hw->unit, clk);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200755
756 wlc_hw->phyclk = clk;
757
758 if (OFF == clk) { /* clear gmode bit, put phy into reset */
759
Arend van Spriela8779e42011-12-08 15:06:58 -0800760 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC | SICF_GMODE),
761 (SICF_PRST | SICF_FGC));
Arend van Spriel5b435de2011-10-05 13:19:03 +0200762 udelay(1);
Arend van Spriela8779e42011-12-08 15:06:58 -0800763 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_PRST);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200764 udelay(1);
765
766 } else { /* take phy out of reset */
767
Arend van Spriela8779e42011-12-08 15:06:58 -0800768 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_FGC);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200769 udelay(1);
Arend van Spriela8779e42011-12-08 15:06:58 -0800770 brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200771 udelay(1);
772
773 }
774}
775
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200776/* low-level band switch utility routine */
777static void brcms_c_setxband(struct brcms_hardware *wlc_hw, uint bandunit)
778{
Seth Forshee913911f2012-11-15 08:08:04 -0600779 brcms_dbg_mac80211(wlc_hw->d11core, "wl%d: bandunit %d\n", wlc_hw->unit,
780 bandunit);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200781
782 wlc_hw->band = wlc_hw->bandstate[bandunit];
783
784 /*
785 * BMAC_NOTE:
786 * until we eliminate need for wlc->band refs in low level code
787 */
788 wlc_hw->wlc->band = wlc_hw->wlc->bandstate[bandunit];
789
790 /* set gmode core flag */
Arend van Spriela8779e42011-12-08 15:06:58 -0800791 if (wlc_hw->sbclk && !wlc_hw->noreset) {
792 u32 gmode = 0;
793
794 if (bandunit == 0)
795 gmode = SICF_GMODE;
796
797 brcms_b_core_ioctl(wlc_hw, SICF_GMODE, gmode);
798 }
Alwin Beukers94bdc2a2011-10-12 20:51:13 +0200799}
800
Arend van Spriel5b435de2011-10-05 13:19:03 +0200801/* switch to new band but leave it inactive */
802static u32 brcms_c_setband_inact(struct brcms_c_info *wlc, uint bandunit)
803{
804 struct brcms_hardware *wlc_hw = wlc->hw;
805 u32 macintmask;
Arend van Spriel16d28122011-12-08 15:06:51 -0800806 u32 macctrl;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200807
Seth Forshee913911f2012-11-15 08:08:04 -0600808 brcms_dbg_mac80211(wlc_hw->d11core, "wl%d\n", wlc_hw->unit);
Arend van Spriel16d28122011-12-08 15:06:51 -0800809 macctrl = bcma_read32(wlc_hw->d11core,
810 D11REGOFFS(maccontrol));
811 WARN_ON((macctrl & MCTL_EN_MAC) != 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200812
813 /* disable interrupts */
814 macintmask = brcms_intrsoff(wlc->wl);
815
816 /* radio off */
817 wlc_phy_switch_radio(wlc_hw->band->pi, OFF);
818
819 brcms_b_core_phy_clk(wlc_hw, OFF);
820
821 brcms_c_setxband(wlc_hw, bandunit);
822
823 return macintmask;
824}
825
Arend van Spriel5b435de2011-10-05 13:19:03 +0200826/* process an individual struct tx_status */
827static bool
828brcms_c_dotxstatus(struct brcms_c_info *wlc, struct tx_status *txs)
829{
Seth Forsheee041f652012-11-15 08:07:56 -0600830 struct sk_buff *p = NULL;
831 uint queue = NFIFO;
832 struct dma_pub *dma = NULL;
Seth Forsheecdf43522012-11-15 08:08:09 -0600833 struct d11txh *txh = NULL;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200834 struct scb *scb = NULL;
835 bool free_pdu;
836 int tx_rts, tx_frame_count, tx_rts_count;
837 uint totlen, supr_status;
838 bool lastframe;
839 struct ieee80211_hdr *h;
840 u16 mcl;
841 struct ieee80211_tx_info *tx_info;
842 struct ieee80211_tx_rate *txrate;
843 int i;
Seth Forsheee041f652012-11-15 08:07:56 -0600844 bool fatal = true;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200845
Seth Forsheecdf43522012-11-15 08:08:09 -0600846 trace_brcms_txstatus(&wlc->hw->d11core->dev, txs->framelen,
847 txs->frameid, txs->status, txs->lasttxtime,
848 txs->sequence, txs->phyerr, txs->ackphyrxsh);
849
Arend van Spriel5b435de2011-10-05 13:19:03 +0200850 /* discard intermediate indications for ucode with one legitimate case:
851 * e.g. if "useRTS" is set. ucode did a successful rts/cts exchange,
852 * but the subsequent tx of DATA failed. so it will start rts/cts
853 * from the beginning (resetting the rts transmission count)
854 */
855 if (!(txs->status & TX_STATUS_AMPDU)
856 && (txs->status & TX_STATUS_INTERMEDIATE)) {
Seth Forshee5ce58bb2012-11-15 08:08:05 -0600857 brcms_dbg_tx(wlc->hw->d11core, "INTERMEDIATE but not AMPDU\n");
Seth Forsheee041f652012-11-15 08:07:56 -0600858 fatal = false;
859 goto out;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200860 }
861
862 queue = txs->frameid & TXFID_QUEUE_MASK;
Seth Forsheecdf43522012-11-15 08:08:09 -0600863 if (queue >= NFIFO) {
864 brcms_err(wlc->hw->d11core, "queue %u >= NFIFO\n", queue);
Seth Forsheee041f652012-11-15 08:07:56 -0600865 goto out;
Seth Forsheecdf43522012-11-15 08:08:09 -0600866 }
Seth Forsheee041f652012-11-15 08:07:56 -0600867
868 dma = wlc->hw->di[queue];
Arend van Spriel5b435de2011-10-05 13:19:03 +0200869
870 p = dma_getnexttxp(wlc->hw->di[queue], DMA_RANGE_TRANSMITTED);
Seth Forsheecdf43522012-11-15 08:08:09 -0600871 if (p == NULL) {
872 brcms_err(wlc->hw->d11core, "dma_getnexttxp returned null!\n");
Seth Forsheee041f652012-11-15 08:07:56 -0600873 goto out;
Seth Forsheecdf43522012-11-15 08:08:09 -0600874 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200875
876 txh = (struct d11txh *) (p->data);
877 mcl = le16_to_cpu(txh->MacTxControlLow);
878
Seth Forsheecdf43522012-11-15 08:08:09 -0600879 if (txs->phyerr)
880 brcms_err(wlc->hw->d11core, "phyerr 0x%x, rate 0x%x\n",
881 txs->phyerr, txh->MainRates);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200882
Seth Forsheecdf43522012-11-15 08:08:09 -0600883 if (txs->frameid != le16_to_cpu(txh->TxFrameID)) {
884 brcms_err(wlc->hw->d11core, "frameid != txh->TxFrameID\n");
Seth Forsheee041f652012-11-15 08:07:56 -0600885 goto out;
Seth Forsheecdf43522012-11-15 08:08:09 -0600886 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200887 tx_info = IEEE80211_SKB_CB(p);
888 h = (struct ieee80211_hdr *)((u8 *) (txh + 1) + D11_PHY_HDR_LEN);
889
Thomas Huehn644e8c02012-07-10 14:01:37 +0200890 if (tx_info->rate_driver_data[0])
Arend van Spriel5b435de2011-10-05 13:19:03 +0200891 scb = &wlc->pri_scb;
892
893 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
894 brcms_c_ampdu_dotxstatus(wlc->ampdu, scb, p, txs);
Seth Forsheee041f652012-11-15 08:07:56 -0600895 fatal = false;
896 goto out;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200897 }
898
Seth Forsheecdf43522012-11-15 08:08:09 -0600899 /*
900 * brcms_c_ampdu_dotxstatus() will trace tx descriptors for AMPDU
901 * frames; this traces them for the rest.
902 */
903 trace_brcms_txdesc(&wlc->hw->d11core->dev, txh, sizeof(*txh));
904
Arend van Spriel5b435de2011-10-05 13:19:03 +0200905 supr_status = txs->status & TX_STATUS_SUPR_MASK;
Seth Forsheecdf43522012-11-15 08:08:09 -0600906 if (supr_status == TX_STATUS_SUPR_BADCH) {
907 unsigned xfts = le16_to_cpu(txh->XtraFrameTypes);
Seth Forshee5ce58bb2012-11-15 08:08:05 -0600908 brcms_dbg_tx(wlc->hw->d11core,
Seth Forsheecdf43522012-11-15 08:08:09 -0600909 "Pkt tx suppressed, dest chan %u, current %d\n",
910 (xfts >> XFTS_CHANNEL_SHIFT) & 0xff,
Seth Forshee5ce58bb2012-11-15 08:08:05 -0600911 CHSPEC_CHANNEL(wlc->default_bss->chanspec));
Seth Forsheecdf43522012-11-15 08:08:09 -0600912 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200913
914 tx_rts = le16_to_cpu(txh->MacTxControlLow) & TXC_SENDRTS;
915 tx_frame_count =
916 (txs->status & TX_STATUS_FRM_RTX_MASK) >> TX_STATUS_FRM_RTX_SHIFT;
917 tx_rts_count =
918 (txs->status & TX_STATUS_RTS_RTX_MASK) >> TX_STATUS_RTS_RTX_SHIFT;
919
920 lastframe = !ieee80211_has_morefrags(h->frame_control);
921
922 if (!lastframe) {
Seth Forsheeb353dda2012-11-15 08:08:03 -0600923 brcms_err(wlc->hw->d11core, "Not last frame!\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200924 } else {
925 /*
926 * Set information to be consumed by Minstrel ht.
927 *
928 * The "fallback limit" is the number of tx attempts a given
929 * MPDU is sent at the "primary" rate. Tx attempts beyond that
930 * limit are sent at the "secondary" rate.
931 * A 'short frame' does not exceed RTS treshold.
932 */
933 u16 sfbl, /* Short Frame Rate Fallback Limit */
934 lfbl, /* Long Frame Rate Fallback Limit */
935 fbl;
936
Arend van Sprielb7eec422011-11-10 20:30:18 +0100937 if (queue < IEEE80211_NUM_ACS) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200938 sfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]],
939 EDCF_SFB);
940 lfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]],
941 EDCF_LFB);
942 } else {
943 sfbl = wlc->SFBL;
944 lfbl = wlc->LFBL;
945 }
946
947 txrate = tx_info->status.rates;
948 if (txrate[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
949 fbl = lfbl;
950 else
951 fbl = sfbl;
952
953 ieee80211_tx_info_clear_status(tx_info);
954
955 if ((tx_frame_count > fbl) && (txrate[1].idx >= 0)) {
956 /*
957 * rate selection requested a fallback rate
958 * and we used it
959 */
960 txrate[0].count = fbl;
961 txrate[1].count = tx_frame_count - fbl;
962 } else {
963 /*
964 * rate selection did not request fallback rate, or
965 * we didn't need it
966 */
967 txrate[0].count = tx_frame_count;
968 /*
969 * rc80211_minstrel.c:minstrel_tx_status() expects
970 * unused rates to be marked with idx = -1
971 */
972 txrate[1].idx = -1;
973 txrate[1].count = 0;
974 }
975
976 /* clear the rest of the rates */
977 for (i = 2; i < IEEE80211_TX_MAX_RATES; i++) {
978 txrate[i].idx = -1;
979 txrate[i].count = 0;
980 }
981
982 if (txs->status & TX_STATUS_ACK_RCV)
983 tx_info->flags |= IEEE80211_TX_STAT_ACK;
984 }
985
Arend van Sprielad4d71f2011-11-10 20:30:26 +0100986 totlen = p->len;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200987 free_pdu = true;
988
Arend van Spriel5b435de2011-10-05 13:19:03 +0200989 if (lastframe) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200990 /* remove PLCP & Broadcom tx descriptor header */
991 skb_pull(p, D11_PHY_HDR_LEN);
992 skb_pull(p, D11_TXH_LEN);
993 ieee80211_tx_status_irqsafe(wlc->pub->ieee_hw, p);
994 } else {
Seth Forsheeb353dda2012-11-15 08:08:03 -0600995 brcms_err(wlc->hw->d11core,
996 "%s: Not last frame => not calling tx_status\n",
997 __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200998 }
999
Seth Forsheee041f652012-11-15 08:07:56 -06001000 fatal = false;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001001
Seth Forsheee041f652012-11-15 08:07:56 -06001002 out:
Seth Forsheecdf43522012-11-15 08:08:09 -06001003 if (fatal) {
1004 if (txh)
1005 trace_brcms_txdesc(&wlc->hw->d11core->dev, txh,
1006 sizeof(*txh));
1007 if (p)
1008 brcmu_pkt_buf_free_skb(p);
1009 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02001010
Seth Forsheee041f652012-11-15 08:07:56 -06001011 if (dma && queue < NFIFO) {
1012 u16 ac_queue = brcms_fifo_to_ac(queue);
1013 if (dma->txavail > TX_HEADROOM && queue < TX_BCMC_FIFO &&
1014 ieee80211_queue_stopped(wlc->pub->ieee_hw, ac_queue))
1015 ieee80211_wake_queue(wlc->pub->ieee_hw, ac_queue);
1016 dma_kick_tx(dma);
1017 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02001018
Seth Forsheee041f652012-11-15 08:07:56 -06001019 return fatal;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001020}
1021
1022/* process tx completion events in BMAC
1023 * Return true if more tx status need to be processed. false otherwise.
1024 */
1025static bool
1026brcms_b_txstatus(struct brcms_hardware *wlc_hw, bool bound, bool *fatal)
1027{
Arend van Spriel16d28122011-12-08 15:06:51 -08001028 struct bcma_device *core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001029 struct tx_status txstatus, *txs;
1030 u32 s1, s2;
1031 uint n = 0;
1032 /*
1033 * Param 'max_tx_num' indicates max. # tx status to process before
1034 * break out.
1035 */
1036 uint max_tx_num = bound ? TXSBND : -1;
1037
Arend van Spriel5b435de2011-10-05 13:19:03 +02001038 txs = &txstatus;
Arend van Spriel16d28122011-12-08 15:06:51 -08001039 core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001040 *fatal = false;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001041
Arend van Spriel0e33e482013-01-22 22:47:40 +01001042 while (n < max_tx_num) {
1043 s1 = bcma_read32(core, D11REGOFFS(frmtxstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001044 if (s1 == 0xffffffff) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06001045 brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit,
1046 __func__);
Piotr Haber57fe5042012-11-28 21:44:07 +01001047 *fatal = true;
1048 return false;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001049 }
Arend van Spriel0e33e482013-01-22 22:47:40 +01001050 /* only process when valid */
1051 if (!(s1 & TXS_V))
1052 break;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001053
Arend van Spriel0e33e482013-01-22 22:47:40 +01001054 s2 = bcma_read32(core, D11REGOFFS(frmtxstatus2));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001055 txs->status = s1 & TXS_STATUS_MASK;
1056 txs->frameid = (s1 & TXS_FID_MASK) >> TXS_FID_SHIFT;
1057 txs->sequence = s2 & TXS_SEQ_MASK;
1058 txs->phyerr = (s2 & TXS_PTX_MASK) >> TXS_PTX_SHIFT;
1059 txs->lasttxtime = 0;
1060
1061 *fatal = brcms_c_dotxstatus(wlc_hw->wlc, txs);
Arend van Spriel0e33e482013-01-22 22:47:40 +01001062 if (*fatal == true)
1063 return false;
Piotr Haber57fe5042012-11-28 21:44:07 +01001064 n++;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001065 }
1066
Arend van Spriel0e33e482013-01-22 22:47:40 +01001067 return n >= max_tx_num;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001068}
1069
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02001070static void brcms_c_tbtt(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001071{
Hauke Mehrtens45c4f652013-03-24 01:45:51 +01001072 if (wlc->bsscfg->type == BRCMS_TYPE_ADHOC)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02001073 /*
1074 * DirFrmQ is now valid...defer setting until end
1075 * of ATIM window
1076 */
1077 wlc->qvalid |= MCMD_DIRFRMQVAL;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001078}
1079
1080/* set initial host flags value */
1081static void
1082brcms_c_mhfdef(struct brcms_c_info *wlc, u16 *mhfs, u16 mhf2_init)
1083{
1084 struct brcms_hardware *wlc_hw = wlc->hw;
1085
1086 memset(mhfs, 0, MHFMAX * sizeof(u16));
1087
1088 mhfs[MHF2] |= mhf2_init;
1089
1090 /* prohibit use of slowclock on multifunction boards */
1091 if (wlc_hw->boardflags & BFL_NOPLLDOWN)
1092 mhfs[MHF1] |= MHF1_FORCEFASTCLK;
1093
1094 if (BRCMS_ISNPHY(wlc_hw->band) && NREV_LT(wlc_hw->band->phyrev, 2)) {
1095 mhfs[MHF2] |= MHF2_NPHY40MHZ_WAR;
1096 mhfs[MHF1] |= MHF1_IQSWAP_WAR;
1097 }
1098}
1099
Arend van Spriele81da652011-12-08 15:06:53 -08001100static uint
1101dmareg(uint direction, uint fifonum)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001102{
1103 if (direction == DMA_TX)
Arend van Spriele81da652011-12-08 15:06:53 -08001104 return offsetof(struct d11regs, fifo64regs[fifonum].dmaxmt);
1105 return offsetof(struct d11regs, fifo64regs[fifonum].dmarcv);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001106}
1107
1108static bool brcms_b_attach_dmapio(struct brcms_c_info *wlc, uint j, bool wme)
1109{
1110 uint i;
1111 char name[8];
1112 /*
1113 * ucode host flag 2 needed for pio mode, independent of band and fifo
1114 */
1115 u16 pio_mhf2 = 0;
1116 struct brcms_hardware *wlc_hw = wlc->hw;
1117 uint unit = wlc_hw->unit;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001118
1119 /* name and offsets for dma_attach */
1120 snprintf(name, sizeof(name), "wl%d", unit);
1121
1122 if (wlc_hw->di[0] == NULL) { /* Init FIFOs */
1123 int dma_attach_err = 0;
1124
1125 /*
1126 * FIFO 0
1127 * TX: TX_AC_BK_FIFO (TX AC Background data packets)
1128 * RX: RX_FIFO (RX data packets)
1129 */
Seth Forsheee041f652012-11-15 08:07:56 -06001130 wlc_hw->di[0] = dma_attach(name, wlc,
Arend van Spriele81da652011-12-08 15:06:53 -08001131 (wme ? dmareg(DMA_TX, 0) : 0),
1132 dmareg(DMA_RX, 0),
Arend van Spriel5b435de2011-10-05 13:19:03 +02001133 (wme ? NTXD : 0), NRXD,
1134 RXBUFSZ, -1, NRXBUFPOST,
Seth Forshee90123e02012-11-15 08:08:07 -06001135 BRCMS_HWRXOFF);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001136 dma_attach_err |= (NULL == wlc_hw->di[0]);
1137
1138 /*
1139 * FIFO 1
1140 * TX: TX_AC_BE_FIFO (TX AC Best-Effort data packets)
1141 * (legacy) TX_DATA_FIFO (TX data packets)
1142 * RX: UNUSED
1143 */
Seth Forsheee041f652012-11-15 08:07:56 -06001144 wlc_hw->di[1] = dma_attach(name, wlc,
Arend van Spriele81da652011-12-08 15:06:53 -08001145 dmareg(DMA_TX, 1), 0,
Seth Forshee90123e02012-11-15 08:08:07 -06001146 NTXD, 0, 0, -1, 0, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001147 dma_attach_err |= (NULL == wlc_hw->di[1]);
1148
1149 /*
1150 * FIFO 2
1151 * TX: TX_AC_VI_FIFO (TX AC Video data packets)
1152 * RX: UNUSED
1153 */
Seth Forsheee041f652012-11-15 08:07:56 -06001154 wlc_hw->di[2] = dma_attach(name, wlc,
Arend van Spriele81da652011-12-08 15:06:53 -08001155 dmareg(DMA_TX, 2), 0,
Seth Forshee90123e02012-11-15 08:08:07 -06001156 NTXD, 0, 0, -1, 0, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001157 dma_attach_err |= (NULL == wlc_hw->di[2]);
1158 /*
1159 * FIFO 3
1160 * TX: TX_AC_VO_FIFO (TX AC Voice data packets)
1161 * (legacy) TX_CTL_FIFO (TX control & mgmt packets)
1162 */
Seth Forsheee041f652012-11-15 08:07:56 -06001163 wlc_hw->di[3] = dma_attach(name, wlc,
Arend van Spriele81da652011-12-08 15:06:53 -08001164 dmareg(DMA_TX, 3),
1165 0, NTXD, 0, 0, -1,
Seth Forshee90123e02012-11-15 08:08:07 -06001166 0, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001167 dma_attach_err |= (NULL == wlc_hw->di[3]);
1168/* Cleaner to leave this as if with AP defined */
1169
1170 if (dma_attach_err) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06001171 brcms_err(wlc_hw->d11core,
1172 "wl%d: wlc_attach: dma_attach failed\n",
1173 unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001174 return false;
1175 }
1176
1177 /* get pointer to dma engine tx flow control variable */
1178 for (i = 0; i < NFIFO; i++)
1179 if (wlc_hw->di[i])
1180 wlc_hw->txavail[i] =
1181 (uint *) dma_getvar(wlc_hw->di[i],
1182 "&txavail");
1183 }
1184
1185 /* initial ucode host flags */
1186 brcms_c_mhfdef(wlc, wlc_hw->band->mhfs, pio_mhf2);
1187
1188 return true;
1189}
1190
1191static void brcms_b_detach_dmapio(struct brcms_hardware *wlc_hw)
1192{
1193 uint j;
1194
1195 for (j = 0; j < NFIFO; j++) {
1196 if (wlc_hw->di[j]) {
1197 dma_detach(wlc_hw->di[j]);
1198 wlc_hw->di[j] = NULL;
1199 }
1200 }
1201}
1202
1203/*
1204 * Initialize brcms_c_info default values ...
1205 * may get overrides later in this function
1206 * BMAC_NOTES, move low out and resolve the dangling ones
1207 */
1208static void brcms_b_info_init(struct brcms_hardware *wlc_hw)
1209{
1210 struct brcms_c_info *wlc = wlc_hw->wlc;
1211
1212 /* set default sw macintmask value */
1213 wlc->defmacintmask = DEF_MACINTMASK;
1214
1215 /* various 802.11g modes */
1216 wlc_hw->shortslot = false;
1217
1218 wlc_hw->SFBL = RETRY_SHORT_FB;
1219 wlc_hw->LFBL = RETRY_LONG_FB;
1220
1221 /* default mac retry limits */
1222 wlc_hw->SRL = RETRY_SHORT_DEF;
1223 wlc_hw->LRL = RETRY_LONG_DEF;
1224 wlc_hw->chanspec = ch20mhz_chspec(1);
1225}
1226
1227static void brcms_b_wait_for_wake(struct brcms_hardware *wlc_hw)
1228{
1229 /* delay before first read of ucode state */
1230 udelay(40);
1231
1232 /* wait until ucode is no longer asleep */
1233 SPINWAIT((brcms_b_read_shm(wlc_hw, M_UCODE_DBGST) ==
1234 DBGST_ASLEEP), wlc_hw->wlc->fastpwrup_dly);
1235}
1236
1237/* control chip clock to save power, enable dynamic clock or force fast clock */
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02001238static void brcms_b_clkctl_clk(struct brcms_hardware *wlc_hw, enum bcma_clkmode mode)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001239{
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001240 if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001241 /* new chips with PMU, CCS_FORCEHT will distribute the HT clock
1242 * on backplane, but mac core will still run on ALP(not HT) when
1243 * it enters powersave mode, which means the FCA bit may not be
1244 * set. Should wakeup mac if driver wants it to run on HT.
1245 */
1246
1247 if (wlc_hw->clk) {
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02001248 if (mode == BCMA_CLKMODE_FAST) {
Arend van Spriel16d28122011-12-08 15:06:51 -08001249 bcma_set32(wlc_hw->d11core,
1250 D11REGOFFS(clk_ctl_st),
1251 CCS_FORCEHT);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001252
1253 udelay(64);
1254
Arend van Spriel16d28122011-12-08 15:06:51 -08001255 SPINWAIT(
1256 ((bcma_read32(wlc_hw->d11core,
1257 D11REGOFFS(clk_ctl_st)) &
1258 CCS_HTAVAIL) == 0),
1259 PMU_MAX_TRANSITION_DLY);
1260 WARN_ON(!(bcma_read32(wlc_hw->d11core,
1261 D11REGOFFS(clk_ctl_st)) &
1262 CCS_HTAVAIL));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001263 } else {
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001264 if ((ai_get_pmurev(wlc_hw->sih) == 0) &&
Arend van Spriel16d28122011-12-08 15:06:51 -08001265 (bcma_read32(wlc_hw->d11core,
1266 D11REGOFFS(clk_ctl_st)) &
1267 (CCS_FORCEHT | CCS_HTAREQ)))
1268 SPINWAIT(
1269 ((bcma_read32(wlc_hw->d11core,
1270 offsetof(struct d11regs,
1271 clk_ctl_st)) &
1272 CCS_HTAVAIL) == 0),
1273 PMU_MAX_TRANSITION_DLY);
1274 bcma_mask32(wlc_hw->d11core,
1275 D11REGOFFS(clk_ctl_st),
Arend van Spriel5b435de2011-10-05 13:19:03 +02001276 ~CCS_FORCEHT);
1277 }
1278 }
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02001279 wlc_hw->forcefastclk = (mode == BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001280 } else {
1281
1282 /* old chips w/o PMU, force HT through cc,
1283 * then use FCA to verify mac is running fast clock
1284 */
1285
1286 wlc_hw->forcefastclk = ai_clkctl_cc(wlc_hw->sih, mode);
1287
1288 /* check fast clock is available (if core is not in reset) */
1289 if (wlc_hw->forcefastclk && wlc_hw->clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001290 WARN_ON(!(bcma_aread32(wlc_hw->d11core, BCMA_IOST) &
Arend van Spriel5b435de2011-10-05 13:19:03 +02001291 SISF_FCLKA));
1292
1293 /*
1294 * keep the ucode wake bit on if forcefastclk is on since we
1295 * do not want ucode to put us back to slow clock when it dozes
1296 * for PM mode. Code below matches the wake override bit with
1297 * current forcefastclk state. Only setting bit in wake_override
1298 * instead of waking ucode immediately since old code had this
1299 * behavior. Older code set wlc->forcefastclk but only had the
1300 * wake happen if the wakup_ucode work (protected by an up
1301 * check) was executed just below.
1302 */
1303 if (wlc_hw->forcefastclk)
1304 mboolset(wlc_hw->wake_override,
1305 BRCMS_WAKE_OVERRIDE_FORCEFAST);
1306 else
1307 mboolclr(wlc_hw->wake_override,
1308 BRCMS_WAKE_OVERRIDE_FORCEFAST);
1309 }
1310}
1311
1312/* set or clear ucode host flag bits
1313 * it has an optimization for no-change write
1314 * it only writes through shared memory when the core has clock;
1315 * pre-CLK changes should use wlc_write_mhf to get around the optimization
1316 *
1317 *
1318 * bands values are: BRCM_BAND_AUTO <--- Current band only
1319 * BRCM_BAND_5G <--- 5G band only
1320 * BRCM_BAND_2G <--- 2G band only
1321 * BRCM_BAND_ALL <--- All bands
1322 */
1323void
1324brcms_b_mhf(struct brcms_hardware *wlc_hw, u8 idx, u16 mask, u16 val,
1325 int bands)
1326{
1327 u16 save;
1328 u16 addr[MHFMAX] = {
1329 M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4,
1330 M_HOST_FLAGS5
1331 };
1332 struct brcms_hw_band *band;
1333
1334 if ((val & ~mask) || idx >= MHFMAX)
1335 return; /* error condition */
1336
1337 switch (bands) {
1338 /* Current band only or all bands,
1339 * then set the band to current band
1340 */
1341 case BRCM_BAND_AUTO:
1342 case BRCM_BAND_ALL:
1343 band = wlc_hw->band;
1344 break;
1345 case BRCM_BAND_5G:
1346 band = wlc_hw->bandstate[BAND_5G_INDEX];
1347 break;
1348 case BRCM_BAND_2G:
1349 band = wlc_hw->bandstate[BAND_2G_INDEX];
1350 break;
1351 default:
1352 band = NULL; /* error condition */
1353 }
1354
1355 if (band) {
1356 save = band->mhfs[idx];
1357 band->mhfs[idx] = (band->mhfs[idx] & ~mask) | val;
1358
1359 /* optimization: only write through if changed, and
1360 * changed band is the current band
1361 */
1362 if (wlc_hw->clk && (band->mhfs[idx] != save)
1363 && (band == wlc_hw->band))
1364 brcms_b_write_shm(wlc_hw, addr[idx],
1365 (u16) band->mhfs[idx]);
1366 }
1367
1368 if (bands == BRCM_BAND_ALL) {
1369 wlc_hw->bandstate[0]->mhfs[idx] =
1370 (wlc_hw->bandstate[0]->mhfs[idx] & ~mask) | val;
1371 wlc_hw->bandstate[1]->mhfs[idx] =
1372 (wlc_hw->bandstate[1]->mhfs[idx] & ~mask) | val;
1373 }
1374}
1375
1376/* set the maccontrol register to desired reset state and
1377 * initialize the sw cache of the register
1378 */
1379static void brcms_c_mctrl_reset(struct brcms_hardware *wlc_hw)
1380{
1381 /* IHR accesses are always enabled, PSM disabled, HPS off and WAKE on */
1382 wlc_hw->maccontrol = 0;
1383 wlc_hw->suspended_fifos = 0;
1384 wlc_hw->wake_override = 0;
1385 wlc_hw->mute_override = 0;
1386 brcms_b_mctrl(wlc_hw, ~0, MCTL_IHR_EN | MCTL_WAKE);
1387}
1388
1389/*
1390 * write the software state of maccontrol and
1391 * overrides to the maccontrol register
1392 */
1393static void brcms_c_mctrl_write(struct brcms_hardware *wlc_hw)
1394{
1395 u32 maccontrol = wlc_hw->maccontrol;
1396
1397 /* OR in the wake bit if overridden */
1398 if (wlc_hw->wake_override)
1399 maccontrol |= MCTL_WAKE;
1400
1401 /* set AP and INFRA bits for mute if needed */
1402 if (wlc_hw->mute_override) {
1403 maccontrol &= ~(MCTL_AP);
1404 maccontrol |= MCTL_INFRA;
1405 }
1406
Arend van Spriel16d28122011-12-08 15:06:51 -08001407 bcma_write32(wlc_hw->d11core, D11REGOFFS(maccontrol),
1408 maccontrol);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001409}
1410
1411/* set or clear maccontrol bits */
1412void brcms_b_mctrl(struct brcms_hardware *wlc_hw, u32 mask, u32 val)
1413{
1414 u32 maccontrol;
1415 u32 new_maccontrol;
1416
1417 if (val & ~mask)
1418 return; /* error condition */
1419 maccontrol = wlc_hw->maccontrol;
1420 new_maccontrol = (maccontrol & ~mask) | val;
1421
1422 /* if the new maccontrol value is the same as the old, nothing to do */
1423 if (new_maccontrol == maccontrol)
1424 return;
1425
1426 /* something changed, cache the new value */
1427 wlc_hw->maccontrol = new_maccontrol;
1428
1429 /* write the new values with overrides applied */
1430 brcms_c_mctrl_write(wlc_hw);
1431}
1432
1433void brcms_c_ucode_wake_override_set(struct brcms_hardware *wlc_hw,
1434 u32 override_bit)
1435{
1436 if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE)) {
1437 mboolset(wlc_hw->wake_override, override_bit);
1438 return;
1439 }
1440
1441 mboolset(wlc_hw->wake_override, override_bit);
1442
1443 brcms_c_mctrl_write(wlc_hw);
1444 brcms_b_wait_for_wake(wlc_hw);
1445}
1446
1447void brcms_c_ucode_wake_override_clear(struct brcms_hardware *wlc_hw,
1448 u32 override_bit)
1449{
1450 mboolclr(wlc_hw->wake_override, override_bit);
1451
1452 if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE))
1453 return;
1454
1455 brcms_c_mctrl_write(wlc_hw);
1456}
1457
1458/* When driver needs ucode to stop beaconing, it has to make sure that
1459 * MCTL_AP is clear and MCTL_INFRA is set
1460 * Mode MCTL_AP MCTL_INFRA
1461 * AP 1 1
1462 * STA 0 1 <--- This will ensure no beacons
1463 * IBSS 0 0
1464 */
1465static void brcms_c_ucode_mute_override_set(struct brcms_hardware *wlc_hw)
1466{
1467 wlc_hw->mute_override = 1;
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/* Clear the override on AP and INFRA bits */
1479static void brcms_c_ucode_mute_override_clear(struct brcms_hardware *wlc_hw)
1480{
1481 if (wlc_hw->mute_override == 0)
1482 return;
1483
1484 wlc_hw->mute_override = 0;
1485
1486 /* if maccontrol already has AP == 0 and INFRA == 1 without this
1487 * override, then there is no change to write
1488 */
1489 if ((wlc_hw->maccontrol & (MCTL_AP | MCTL_INFRA)) == MCTL_INFRA)
1490 return;
1491
1492 brcms_c_mctrl_write(wlc_hw);
1493}
1494
1495/*
1496 * Write a MAC address to the given match reg offset in the RXE match engine.
1497 */
1498static void
1499brcms_b_set_addrmatch(struct brcms_hardware *wlc_hw, int match_reg_offset,
1500 const u8 *addr)
1501{
Arend van Spriel16d28122011-12-08 15:06:51 -08001502 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001503 u16 mac_l;
1504 u16 mac_m;
1505 u16 mac_h;
1506
Seth Forshee5ce58bb2012-11-15 08:08:05 -06001507 brcms_dbg_rx(core, "wl%d: brcms_b_set_addrmatch\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001508
Arend van Spriel5b435de2011-10-05 13:19:03 +02001509 mac_l = addr[0] | (addr[1] << 8);
1510 mac_m = addr[2] | (addr[3] << 8);
1511 mac_h = addr[4] | (addr[5] << 8);
1512
1513 /* enter the MAC addr into the RXE match registers */
Arend van Spriel16d28122011-12-08 15:06:51 -08001514 bcma_write16(core, D11REGOFFS(rcm_ctl),
1515 RCM_INC_DATA | match_reg_offset);
1516 bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_l);
1517 bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_m);
1518 bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_h);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001519}
1520
1521void
1522brcms_b_write_template_ram(struct brcms_hardware *wlc_hw, int offset, int len,
1523 void *buf)
1524{
Arend van Spriel16d28122011-12-08 15:06:51 -08001525 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001526 u32 word;
1527 __le32 word_le;
1528 __be32 word_be;
1529 bool be_bit;
Seth Forsheeb353dda2012-11-15 08:08:03 -06001530 brcms_dbg_info(core, "wl%d\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001531
Arend van Spriel16d28122011-12-08 15:06:51 -08001532 bcma_write32(core, D11REGOFFS(tplatewrptr), offset);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001533
1534 /* if MCTL_BIGEND bit set in mac control register,
1535 * the chip swaps data in fifo, as well as data in
1536 * template ram
1537 */
Arend van Spriel16d28122011-12-08 15:06:51 -08001538 be_bit = (bcma_read32(core, D11REGOFFS(maccontrol)) & MCTL_BIGEND) != 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001539
1540 while (len > 0) {
1541 memcpy(&word, buf, sizeof(u32));
1542
1543 if (be_bit) {
1544 word_be = cpu_to_be32(word);
1545 word = *(u32 *)&word_be;
1546 } else {
1547 word_le = cpu_to_le32(word);
1548 word = *(u32 *)&word_le;
1549 }
1550
Arend van Spriel16d28122011-12-08 15:06:51 -08001551 bcma_write32(core, D11REGOFFS(tplatewrdata), word);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001552
1553 buf = (u8 *) buf + sizeof(u32);
1554 len -= sizeof(u32);
1555 }
1556}
1557
1558static void brcms_b_set_cwmin(struct brcms_hardware *wlc_hw, u16 newmin)
1559{
1560 wlc_hw->band->CWmin = newmin;
1561
Arend van Spriel16d28122011-12-08 15:06:51 -08001562 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
1563 OBJADDR_SCR_SEL | S_DOT11_CWMIN);
1564 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
1565 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmin);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001566}
1567
1568static void brcms_b_set_cwmax(struct brcms_hardware *wlc_hw, u16 newmax)
1569{
1570 wlc_hw->band->CWmax = newmax;
1571
Arend van Spriel16d28122011-12-08 15:06:51 -08001572 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
1573 OBJADDR_SCR_SEL | S_DOT11_CWMAX);
1574 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
1575 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmax);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001576}
1577
1578void brcms_b_bw_set(struct brcms_hardware *wlc_hw, u16 bw)
1579{
1580 bool fastclk;
1581
1582 /* request FAST clock if not on */
1583 fastclk = wlc_hw->forcefastclk;
1584 if (!fastclk)
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02001585 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001586
1587 wlc_phy_bw_state_set(wlc_hw->band->pi, bw);
1588
1589 brcms_b_phy_reset(wlc_hw);
1590 wlc_phy_init(wlc_hw->band->pi, wlc_phy_chanspec_get(wlc_hw->band->pi));
1591
1592 /* restore the clk */
1593 if (!fastclk)
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02001594 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001595}
1596
1597static void brcms_b_upd_synthpu(struct brcms_hardware *wlc_hw)
1598{
1599 u16 v;
1600 struct brcms_c_info *wlc = wlc_hw->wlc;
1601 /* update SYNTHPU_DLY */
1602
1603 if (BRCMS_ISLCNPHY(wlc->band))
1604 v = SYNTHPU_DLY_LPPHY_US;
1605 else if (BRCMS_ISNPHY(wlc->band) && (NREV_GE(wlc->band->phyrev, 3)))
1606 v = SYNTHPU_DLY_NPHY_US;
1607 else
1608 v = SYNTHPU_DLY_BPHY_US;
1609
1610 brcms_b_write_shm(wlc_hw, M_SYNTHPU_DLY, v);
1611}
1612
1613static void brcms_c_ucode_txant_set(struct brcms_hardware *wlc_hw)
1614{
1615 u16 phyctl;
1616 u16 phytxant = wlc_hw->bmac_phytxant;
1617 u16 mask = PHY_TXC_ANT_MASK;
1618
1619 /* set the Probe Response frame phy control word */
1620 phyctl = brcms_b_read_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS);
1621 phyctl = (phyctl & ~mask) | phytxant;
1622 brcms_b_write_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS, phyctl);
1623
1624 /* set the Response (ACK/CTS) frame phy control word */
1625 phyctl = brcms_b_read_shm(wlc_hw, M_RSP_PCTLWD);
1626 phyctl = (phyctl & ~mask) | phytxant;
1627 brcms_b_write_shm(wlc_hw, M_RSP_PCTLWD, phyctl);
1628}
1629
1630static u16 brcms_b_ofdm_ratetable_offset(struct brcms_hardware *wlc_hw,
1631 u8 rate)
1632{
1633 uint i;
1634 u8 plcp_rate = 0;
1635 struct plcp_signal_rate_lookup {
1636 u8 rate;
1637 u8 signal_rate;
1638 };
1639 /* OFDM RATE sub-field of PLCP SIGNAL field, per 802.11 sec 17.3.4.1 */
1640 const struct plcp_signal_rate_lookup rate_lookup[] = {
1641 {BRCM_RATE_6M, 0xB},
1642 {BRCM_RATE_9M, 0xF},
1643 {BRCM_RATE_12M, 0xA},
1644 {BRCM_RATE_18M, 0xE},
1645 {BRCM_RATE_24M, 0x9},
1646 {BRCM_RATE_36M, 0xD},
1647 {BRCM_RATE_48M, 0x8},
1648 {BRCM_RATE_54M, 0xC}
1649 };
1650
1651 for (i = 0; i < ARRAY_SIZE(rate_lookup); i++) {
1652 if (rate == rate_lookup[i].rate) {
1653 plcp_rate = rate_lookup[i].signal_rate;
1654 break;
1655 }
1656 }
1657
1658 /* Find the SHM pointer to the rate table entry by looking in the
1659 * Direct-map Table
1660 */
1661 return 2 * brcms_b_read_shm(wlc_hw, M_RT_DIRMAP_A + (plcp_rate * 2));
1662}
1663
1664static void brcms_upd_ofdm_pctl1_table(struct brcms_hardware *wlc_hw)
1665{
1666 u8 rate;
1667 u8 rates[8] = {
1668 BRCM_RATE_6M, BRCM_RATE_9M, BRCM_RATE_12M, BRCM_RATE_18M,
1669 BRCM_RATE_24M, BRCM_RATE_36M, BRCM_RATE_48M, BRCM_RATE_54M
1670 };
1671 u16 entry_ptr;
1672 u16 pctl1;
1673 uint i;
1674
1675 if (!BRCMS_PHY_11N_CAP(wlc_hw->band))
1676 return;
1677
1678 /* walk the phy rate table and update the entries */
1679 for (i = 0; i < ARRAY_SIZE(rates); i++) {
1680 rate = rates[i];
1681
1682 entry_ptr = brcms_b_ofdm_ratetable_offset(wlc_hw, rate);
1683
1684 /* read the SHM Rate Table entry OFDM PCTL1 values */
1685 pctl1 =
1686 brcms_b_read_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS);
1687
1688 /* modify the value */
1689 pctl1 &= ~PHY_TXC1_MODE_MASK;
1690 pctl1 |= (wlc_hw->hw_stf_ss_opmode << PHY_TXC1_MODE_SHIFT);
1691
1692 /* Update the SHM Rate Table entry OFDM PCTL1 values */
1693 brcms_b_write_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS,
1694 pctl1);
1695 }
1696}
1697
1698/* band-specific init */
1699static void brcms_b_bsinit(struct brcms_c_info *wlc, u16 chanspec)
1700{
1701 struct brcms_hardware *wlc_hw = wlc->hw;
1702
Seth Forshee913911f2012-11-15 08:08:04 -06001703 brcms_dbg_mac80211(wlc_hw->d11core, "wl%d: bandunit %d\n", wlc_hw->unit,
1704 wlc_hw->band->bandunit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001705
1706 brcms_c_ucode_bsinit(wlc_hw);
1707
1708 wlc_phy_init(wlc_hw->band->pi, chanspec);
1709
1710 brcms_c_ucode_txant_set(wlc_hw);
1711
1712 /*
1713 * cwmin is band-specific, update hardware
1714 * with value for current band
1715 */
1716 brcms_b_set_cwmin(wlc_hw, wlc_hw->band->CWmin);
1717 brcms_b_set_cwmax(wlc_hw, wlc_hw->band->CWmax);
1718
1719 brcms_b_update_slot_timing(wlc_hw,
1720 wlc_hw->band->bandtype == BRCM_BAND_5G ?
1721 true : wlc_hw->shortslot);
1722
1723 /* write phytype and phyvers */
1724 brcms_b_write_shm(wlc_hw, M_PHYTYPE, (u16) wlc_hw->band->phytype);
1725 brcms_b_write_shm(wlc_hw, M_PHYVER, (u16) wlc_hw->band->phyrev);
1726
1727 /*
1728 * initialize the txphyctl1 rate table since
1729 * shmem is shared between bands
1730 */
1731 brcms_upd_ofdm_pctl1_table(wlc_hw);
1732
1733 brcms_b_upd_synthpu(wlc_hw);
1734}
1735
1736/* Perform a soft reset of the PHY PLL */
1737void brcms_b_core_phypll_reset(struct brcms_hardware *wlc_hw)
1738{
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001739 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_addr),
1740 ~0, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001741 udelay(1);
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001742 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1743 0x4, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001744 udelay(1);
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001745 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1746 0x4, 4);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001747 udelay(1);
Arend van Spriel7d8e18e2011-12-08 15:06:56 -08001748 ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data),
1749 0x4, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001750 udelay(1);
1751}
1752
1753/* light way to turn on phy clock without reset for NPHY only
1754 * refer to brcms_b_core_phy_clk for full version
1755 */
1756void brcms_b_phyclk_fgc(struct brcms_hardware *wlc_hw, bool clk)
1757{
1758 /* support(necessary for NPHY and HYPHY) only */
1759 if (!BRCMS_ISNPHY(wlc_hw->band))
1760 return;
1761
1762 if (ON == clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001763 brcms_b_core_ioctl(wlc_hw, SICF_FGC, SICF_FGC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001764 else
Arend van Spriela8779e42011-12-08 15:06:58 -08001765 brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001766
1767}
1768
1769void brcms_b_macphyclk_set(struct brcms_hardware *wlc_hw, bool clk)
1770{
1771 if (ON == clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001772 brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, SICF_MPCLKE);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001773 else
Arend van Spriela8779e42011-12-08 15:06:58 -08001774 brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001775}
1776
1777void brcms_b_phy_reset(struct brcms_hardware *wlc_hw)
1778{
1779 struct brcms_phy_pub *pih = wlc_hw->band->pi;
1780 u32 phy_bw_clkbits;
1781 bool phy_in_reset = false;
1782
Seth Forsheeb353dda2012-11-15 08:08:03 -06001783 brcms_dbg_info(wlc_hw->d11core, "wl%d: reset phy\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001784
1785 if (pih == NULL)
1786 return;
1787
1788 phy_bw_clkbits = wlc_phy_clk_bwbits(wlc_hw->band->pi);
1789
1790 /* Specific reset sequence required for NPHY rev 3 and 4 */
1791 if (BRCMS_ISNPHY(wlc_hw->band) && NREV_GE(wlc_hw->band->phyrev, 3) &&
1792 NREV_LE(wlc_hw->band->phyrev, 4)) {
1793 /* Set the PHY bandwidth */
Arend van Spriela8779e42011-12-08 15:06:58 -08001794 brcms_b_core_ioctl(wlc_hw, SICF_BWMASK, phy_bw_clkbits);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001795
1796 udelay(1);
1797
1798 /* Perform a soft reset of the PHY PLL */
1799 brcms_b_core_phypll_reset(wlc_hw);
1800
1801 /* reset the PHY */
Arend van Spriela8779e42011-12-08 15:06:58 -08001802 brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_PCLKE),
1803 (SICF_PRST | SICF_PCLKE));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001804 phy_in_reset = true;
1805 } else {
Arend van Spriela8779e42011-12-08 15:06:58 -08001806 brcms_b_core_ioctl(wlc_hw,
1807 (SICF_PRST | SICF_PCLKE | SICF_BWMASK),
1808 (SICF_PRST | SICF_PCLKE | phy_bw_clkbits));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001809 }
1810
1811 udelay(2);
1812 brcms_b_core_phy_clk(wlc_hw, ON);
1813
1814 if (pih)
1815 wlc_phy_anacore(pih, ON);
1816}
1817
1818/* switch to and initialize new band */
1819static void brcms_b_setband(struct brcms_hardware *wlc_hw, uint bandunit,
1820 u16 chanspec) {
1821 struct brcms_c_info *wlc = wlc_hw->wlc;
1822 u32 macintmask;
1823
1824 /* Enable the d11 core before accessing it */
Arend van Spriela8779e42011-12-08 15:06:58 -08001825 if (!bcma_core_is_enabled(wlc_hw->d11core)) {
1826 bcma_core_enable(wlc_hw->d11core, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001827 brcms_c_mctrl_reset(wlc_hw);
1828 }
1829
1830 macintmask = brcms_c_setband_inact(wlc, bandunit);
1831
1832 if (!wlc_hw->up)
1833 return;
1834
1835 brcms_b_core_phy_clk(wlc_hw, ON);
1836
1837 /* band-specific initializations */
1838 brcms_b_bsinit(wlc, chanspec);
1839
1840 /*
1841 * If there are any pending software interrupt bits,
1842 * then replace these with a harmless nonzero value
1843 * so brcms_c_dpc() will re-enable interrupts when done.
1844 */
1845 if (wlc->macintstatus)
1846 wlc->macintstatus = MI_DMAINT;
1847
1848 /* restore macintmask */
1849 brcms_intrsrestore(wlc->wl, macintmask);
1850
1851 /* ucode should still be suspended.. */
Arend van Spriel16d28122011-12-08 15:06:51 -08001852 WARN_ON((bcma_read32(wlc_hw->d11core, D11REGOFFS(maccontrol)) &
1853 MCTL_EN_MAC) != 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001854}
1855
Arend van Spriel5b435de2011-10-05 13:19:03 +02001856static bool brcms_c_isgoodchip(struct brcms_hardware *wlc_hw)
1857{
1858
1859 /* reject unsupported corerev */
1860 if (!CONF_HAS(D11CONF, wlc_hw->corerev)) {
1861 wiphy_err(wlc_hw->wlc->wiphy, "unsupported core rev %d\n",
1862 wlc_hw->corerev);
1863 return false;
1864 }
1865
1866 return true;
1867}
1868
1869/* Validate some board info parameters */
1870static bool brcms_c_validboardtype(struct brcms_hardware *wlc_hw)
1871{
1872 uint boardrev = wlc_hw->boardrev;
1873
1874 /* 4 bits each for board type, major, minor, and tiny version */
1875 uint brt = (boardrev & 0xf000) >> 12;
1876 uint b0 = (boardrev & 0xf00) >> 8;
1877 uint b1 = (boardrev & 0xf0) >> 4;
1878 uint b2 = boardrev & 0xf;
1879
1880 /* voards from other vendors are always considered valid */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001881 if (ai_get_boardvendor(wlc_hw->sih) != PCI_VENDOR_ID_BROADCOM)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001882 return true;
1883
1884 /* do some boardrev sanity checks when boardvendor is Broadcom */
1885 if (boardrev == 0)
1886 return false;
1887
1888 if (boardrev <= 0xff)
1889 return true;
1890
1891 if ((brt > 2) || (brt == 0) || (b0 > 9) || (b0 == 0) || (b1 > 9)
1892 || (b2 > 9))
1893 return false;
1894
1895 return true;
1896}
1897
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001898static void brcms_c_get_macaddr(struct brcms_hardware *wlc_hw, u8 etheraddr[ETH_ALEN])
Arend van Spriel5b435de2011-10-05 13:19:03 +02001899{
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001900 struct ssb_sprom *sprom = &wlc_hw->d11core->bus->sprom;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001901
1902 /* If macaddr exists, use it (Sromrev4, CIS, ...). */
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001903 if (!is_zero_ether_addr(sprom->il0mac)) {
1904 memcpy(etheraddr, sprom->il0mac, 6);
1905 return;
1906 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02001907
1908 if (wlc_hw->_nbands > 1)
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001909 memcpy(etheraddr, sprom->et1mac, 6);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001910 else
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02001911 memcpy(etheraddr, sprom->il0mac, 6);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001912}
1913
1914/* power both the pll and external oscillator on/off */
1915static void brcms_b_xtal(struct brcms_hardware *wlc_hw, bool want)
1916{
Seth Forsheeb353dda2012-11-15 08:08:03 -06001917 brcms_dbg_info(wlc_hw->d11core, "wl%d: want %d\n", wlc_hw->unit, want);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001918
1919 /*
1920 * dont power down if plldown is false or
1921 * we must poll hw radio disable
1922 */
1923 if (!want && wlc_hw->pllreq)
1924 return;
1925
Arend van Spriel5b435de2011-10-05 13:19:03 +02001926 wlc_hw->sbclk = want;
1927 if (!wlc_hw->sbclk) {
1928 wlc_hw->clk = false;
1929 if (wlc_hw->band && wlc_hw->band->pi)
1930 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
1931 }
1932}
1933
1934/*
1935 * Return true if radio is disabled, otherwise false.
1936 * hw radio disable signal is an external pin, users activate it asynchronously
1937 * this function could be called when driver is down and w/o clock
1938 * it operates on different registers depending on corerev and boardflag.
1939 */
1940static bool brcms_b_radio_read_hwdisabled(struct brcms_hardware *wlc_hw)
1941{
1942 bool v, clk, xtal;
Arend van Spriela8779e42011-12-08 15:06:58 -08001943 u32 flags = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001944
1945 xtal = wlc_hw->sbclk;
1946 if (!xtal)
1947 brcms_b_xtal(wlc_hw, ON);
1948
1949 /* may need to take core out of reset first */
1950 clk = wlc_hw->clk;
1951 if (!clk) {
1952 /*
1953 * mac no longer enables phyclk automatically when driver
1954 * accesses phyreg throughput mac. This can be skipped since
1955 * only mac reg is accessed below
1956 */
Hauke Mehrtens0d3b9dd2012-06-30 15:16:15 +02001957 if (D11REV_GE(wlc_hw->corerev, 18))
1958 flags |= SICF_PCLKE;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001959
1960 /*
Arend van Spriel3b758a62011-12-12 15:15:09 -08001961 * TODO: test suspend/resume
1962 *
Arend van Spriel5b435de2011-10-05 13:19:03 +02001963 * AI chip doesn't restore bar0win2 on
1964 * hibernation/resume, need sw fixup
1965 */
Arend van Spriel16d28122011-12-08 15:06:51 -08001966
Arend van Spriela8779e42011-12-08 15:06:58 -08001967 bcma_core_enable(wlc_hw->d11core, flags);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001968 brcms_c_mctrl_reset(wlc_hw);
1969 }
1970
Arend van Spriel16d28122011-12-08 15:06:51 -08001971 v = ((bcma_read32(wlc_hw->d11core,
1972 D11REGOFFS(phydebug)) & PDBG_RFD) != 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001973
1974 /* put core back into reset */
1975 if (!clk)
Arend van Spriela8779e42011-12-08 15:06:58 -08001976 bcma_core_disable(wlc_hw->d11core, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001977
1978 if (!xtal)
1979 brcms_b_xtal(wlc_hw, OFF);
1980
1981 return v;
1982}
1983
1984static bool wlc_dma_rxreset(struct brcms_hardware *wlc_hw, uint fifo)
1985{
1986 struct dma_pub *di = wlc_hw->di[fifo];
1987 return dma_rxreset(di);
1988}
1989
1990/* d11 core reset
1991 * ensure fask clock during reset
1992 * reset dma
1993 * reset d11(out of reset)
1994 * reset phy(out of reset)
1995 * clear software macintstatus for fresh new start
1996 * one testing hack wlc_hw->noreset will bypass the d11/phy reset
1997 */
1998void brcms_b_corereset(struct brcms_hardware *wlc_hw, u32 flags)
1999{
Arend van Spriel5b435de2011-10-05 13:19:03 +02002000 uint i;
2001 bool fastclk;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002002
2003 if (flags == BRCMS_USE_COREFLAGS)
2004 flags = (wlc_hw->band->pi ? wlc_hw->band->core_flags : 0);
2005
Seth Forsheeb353dda2012-11-15 08:08:03 -06002006 brcms_dbg_info(wlc_hw->d11core, "wl%d: core reset\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002007
Arend van Spriel5b435de2011-10-05 13:19:03 +02002008 /* request FAST clock if not on */
2009 fastclk = wlc_hw->forcefastclk;
2010 if (!fastclk)
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02002011 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002012
2013 /* reset the dma engines except first time thru */
Arend van Spriela8779e42011-12-08 15:06:58 -08002014 if (bcma_core_is_enabled(wlc_hw->d11core)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002015 for (i = 0; i < NFIFO; i++)
2016 if ((wlc_hw->di[i]) && (!dma_txreset(wlc_hw->di[i])))
Seth Forsheeb353dda2012-11-15 08:08:03 -06002017 brcms_err(wlc_hw->d11core, "wl%d: %s: "
Arend van Spriel5b435de2011-10-05 13:19:03 +02002018 "dma_txreset[%d]: cannot stop dma\n",
2019 wlc_hw->unit, __func__, i);
2020
2021 if ((wlc_hw->di[RX_FIFO])
2022 && (!wlc_dma_rxreset(wlc_hw, RX_FIFO)))
Seth Forsheeb353dda2012-11-15 08:08:03 -06002023 brcms_err(wlc_hw->d11core, "wl%d: %s: dma_rxreset"
Arend van Spriel5b435de2011-10-05 13:19:03 +02002024 "[%d]: cannot stop dma\n",
2025 wlc_hw->unit, __func__, RX_FIFO);
2026 }
2027 /* if noreset, just stop the psm and return */
2028 if (wlc_hw->noreset) {
2029 wlc_hw->wlc->macintstatus = 0; /* skip wl_dpc after down */
2030 brcms_b_mctrl(wlc_hw, MCTL_PSM_RUN | MCTL_EN_MAC, 0);
2031 return;
2032 }
2033
2034 /*
2035 * mac no longer enables phyclk automatically when driver accesses
2036 * phyreg throughput mac, AND phy_reset is skipped at early stage when
2037 * band->pi is invalid. need to enable PHY CLK
2038 */
Hauke Mehrtens0d3b9dd2012-06-30 15:16:15 +02002039 if (D11REV_GE(wlc_hw->corerev, 18))
2040 flags |= SICF_PCLKE;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002041
2042 /*
2043 * reset the core
2044 * In chips with PMU, the fastclk request goes through d11 core
2045 * reg 0x1e0, which is cleared by the core_reset. have to re-request it.
2046 *
2047 * This adds some delay and we can optimize it by also requesting
2048 * fastclk through chipcommon during this period if necessary. But
2049 * that has to work coordinate with other driver like mips/arm since
2050 * they may touch chipcommon as well.
2051 */
2052 wlc_hw->clk = false;
Arend van Spriela8779e42011-12-08 15:06:58 -08002053 bcma_core_enable(wlc_hw->d11core, flags);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002054 wlc_hw->clk = true;
2055 if (wlc_hw->band && wlc_hw->band->pi)
2056 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, true);
2057
2058 brcms_c_mctrl_reset(wlc_hw);
2059
Arend van Sprielb2ffec42011-12-08 15:06:45 -08002060 if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU)
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02002061 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002062
2063 brcms_b_phy_reset(wlc_hw);
2064
2065 /* turn on PHY_PLL */
2066 brcms_b_core_phypll_ctl(wlc_hw, true);
2067
2068 /* clear sw intstatus */
2069 wlc_hw->wlc->macintstatus = 0;
2070
2071 /* restore the clk setting */
2072 if (!fastclk)
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02002073 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002074}
2075
2076/* txfifo sizes needs to be modified(increased) since the newer cores
2077 * have more memory.
2078 */
2079static void brcms_b_corerev_fifofixup(struct brcms_hardware *wlc_hw)
2080{
Arend van Spriel16d28122011-12-08 15:06:51 -08002081 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002082 u16 fifo_nu;
2083 u16 txfifo_startblk = TXFIFO_START_BLK, txfifo_endblk;
2084 u16 txfifo_def, txfifo_def1;
2085 u16 txfifo_cmd;
2086
2087 /* tx fifos start at TXFIFO_START_BLK from the Base address */
2088 txfifo_startblk = TXFIFO_START_BLK;
2089
2090 /* sequence of operations: reset fifo, set fifo size, reset fifo */
2091 for (fifo_nu = 0; fifo_nu < NFIFO; fifo_nu++) {
2092
2093 txfifo_endblk = txfifo_startblk + wlc_hw->xmtfifo_sz[fifo_nu];
2094 txfifo_def = (txfifo_startblk & 0xff) |
2095 (((txfifo_endblk - 1) & 0xff) << TXFIFO_FIFOTOP_SHIFT);
2096 txfifo_def1 = ((txfifo_startblk >> 8) & 0x1) |
2097 ((((txfifo_endblk -
2098 1) >> 8) & 0x1) << TXFIFO_FIFOTOP_SHIFT);
2099 txfifo_cmd =
2100 TXFIFOCMD_RESET_MASK | (fifo_nu << TXFIFOCMD_FIFOSEL_SHIFT);
2101
Arend van Spriel16d28122011-12-08 15:06:51 -08002102 bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd);
2103 bcma_write16(core, D11REGOFFS(xmtfifodef), txfifo_def);
2104 bcma_write16(core, D11REGOFFS(xmtfifodef1), txfifo_def1);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002105
Arend van Spriel16d28122011-12-08 15:06:51 -08002106 bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002107
2108 txfifo_startblk += wlc_hw->xmtfifo_sz[fifo_nu];
2109 }
2110 /*
2111 * need to propagate to shm location to be in sync since ucode/hw won't
2112 * do this
2113 */
2114 brcms_b_write_shm(wlc_hw, M_FIFOSIZE0,
2115 wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]);
2116 brcms_b_write_shm(wlc_hw, M_FIFOSIZE1,
2117 wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]);
2118 brcms_b_write_shm(wlc_hw, M_FIFOSIZE2,
2119 ((wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO] << 8) | wlc_hw->
2120 xmtfifo_sz[TX_AC_BK_FIFO]));
2121 brcms_b_write_shm(wlc_hw, M_FIFOSIZE3,
2122 ((wlc_hw->xmtfifo_sz[TX_ATIM_FIFO] << 8) | wlc_hw->
2123 xmtfifo_sz[TX_BCMC_FIFO]));
2124}
2125
2126/* This function is used for changing the tsf frac register
2127 * If spur avoidance mode is off, the mac freq will be 80/120/160Mhz
2128 * If spur avoidance mode is on1, the mac freq will be 82/123/164Mhz
2129 * If spur avoidance mode is on2, the mac freq will be 84/126/168Mhz
2130 * HTPHY Formula is 2^26/freq(MHz) e.g.
2131 * For spuron2 - 126MHz -> 2^26/126 = 532610.0
2132 * - 532610 = 0x82082 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x2082
2133 * For spuron: 123MHz -> 2^26/123 = 545600.5
2134 * - 545601 = 0x85341 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x5341
2135 * For spur off: 120MHz -> 2^26/120 = 559240.5
2136 * - 559241 = 0x88889 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x8889
2137 */
2138
2139void brcms_b_switch_macfreq(struct brcms_hardware *wlc_hw, u8 spurmode)
2140{
Arend van Spriel16d28122011-12-08 15:06:51 -08002141 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002142
Hauke Mehrtens1ef1a572012-06-30 15:16:13 +02002143 if ((ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM43224) ||
2144 (ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM43225)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002145 if (spurmode == WL_SPURAVOID_ON2) { /* 126Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002146 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x2082);
2147 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002148 } else if (spurmode == WL_SPURAVOID_ON1) { /* 123Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002149 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x5341);
2150 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002151 } else { /* 120Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002152 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x8889);
2153 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002154 }
2155 } else if (BRCMS_ISLCNPHY(wlc_hw->band)) {
2156 if (spurmode == WL_SPURAVOID_ON1) { /* 82Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002157 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x7CE0);
2158 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002159 } else { /* 80Mhz */
Arend van Spriel16d28122011-12-08 15:06:51 -08002160 bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0xCCCD);
2161 bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002162 }
2163 }
2164}
2165
Hauke Mehrtens70268ce2013-03-24 01:45:50 +01002166void brcms_c_start_station(struct brcms_c_info *wlc, u8 *addr)
2167{
2168 memcpy(wlc->pub->cur_etheraddr, addr, sizeof(wlc->pub->cur_etheraddr));
2169 wlc->bsscfg->type = BRCMS_TYPE_STATION;
2170}
2171
Arend van Spriel5b435de2011-10-05 13:19:03 +02002172/* Initialize GPIOs that are controlled by D11 core */
2173static void brcms_c_gpio_init(struct brcms_c_info *wlc)
2174{
2175 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002176 u32 gc, gm;
2177
Arend van Spriel5b435de2011-10-05 13:19:03 +02002178 /* use GPIO select 0 to get all gpio signals from the gpio out reg */
2179 brcms_b_mctrl(wlc_hw, MCTL_GPOUT_SEL_MASK, 0);
2180
2181 /*
2182 * Common GPIO setup:
2183 * G0 = LED 0 = WLAN Activity
2184 * G1 = LED 1 = WLAN 2.4 GHz Radio State
2185 * G2 = LED 2 = WLAN 5 GHz Radio State
2186 * G4 = radio disable input (HI enabled, LO disabled)
2187 */
2188
2189 gc = gm = 0;
2190
2191 /* Allocate GPIOs for mimo antenna diversity feature */
2192 if (wlc_hw->antsel_type == ANTSEL_2x3) {
2193 /* Enable antenna diversity, use 2x3 mode */
2194 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN,
2195 MHF3_ANTSEL_EN, BRCM_BAND_ALL);
2196 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE,
2197 MHF3_ANTSEL_MODE, BRCM_BAND_ALL);
2198
2199 /* init superswitch control */
2200 wlc_phy_antsel_init(wlc_hw->band->pi, false);
2201
2202 } else if (wlc_hw->antsel_type == ANTSEL_2x4) {
2203 gm |= gc |= (BOARD_GPIO_12 | BOARD_GPIO_13);
2204 /*
2205 * The board itself is powered by these GPIOs
2206 * (when not sending pattern) so set them high
2207 */
Arend van Spriel16d28122011-12-08 15:06:51 -08002208 bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_oe),
2209 (BOARD_GPIO_12 | BOARD_GPIO_13));
2210 bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_out),
2211 (BOARD_GPIO_12 | BOARD_GPIO_13));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002212
2213 /* Enable antenna diversity, use 2x4 mode */
2214 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN,
2215 MHF3_ANTSEL_EN, BRCM_BAND_ALL);
2216 brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE, 0,
2217 BRCM_BAND_ALL);
2218
2219 /* Configure the desired clock to be 4Mhz */
2220 brcms_b_write_shm(wlc_hw, M_ANTSEL_CLKDIV,
2221 ANTSEL_CLKDIV_4MHZ);
2222 }
2223
2224 /*
2225 * gpio 9 controls the PA. ucode is responsible
2226 * for wiggling out and oe
2227 */
2228 if (wlc_hw->boardflags & BFL_PACTRL)
2229 gm |= gc |= BOARD_GPIO_PACTRL;
2230
2231 /* apply to gpiocontrol register */
Hauke Mehrtensfa0b8232012-04-29 02:50:34 +02002232 bcma_chipco_gpio_control(&wlc_hw->d11core->bus->drv_cc, gm, gc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002233}
2234
2235static void brcms_ucode_write(struct brcms_hardware *wlc_hw,
2236 const __le32 ucode[], const size_t nbytes)
2237{
Arend van Spriel16d28122011-12-08 15:06:51 -08002238 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002239 uint i;
2240 uint count;
2241
Seth Forsheeb353dda2012-11-15 08:08:03 -06002242 brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002243
2244 count = (nbytes / sizeof(u32));
2245
Arend van Spriel16d28122011-12-08 15:06:51 -08002246 bcma_write32(core, D11REGOFFS(objaddr),
2247 OBJADDR_AUTO_INC | OBJADDR_UCM_SEL);
2248 (void)bcma_read32(core, D11REGOFFS(objaddr));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002249 for (i = 0; i < count; i++)
Arend van Spriel16d28122011-12-08 15:06:51 -08002250 bcma_write32(core, D11REGOFFS(objdata), le32_to_cpu(ucode[i]));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002251
2252}
2253
2254static void brcms_ucode_download(struct brcms_hardware *wlc_hw)
2255{
2256 struct brcms_c_info *wlc;
2257 struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
2258
2259 wlc = wlc_hw->wlc;
2260
2261 if (wlc_hw->ucode_loaded)
2262 return;
2263
Hauke Mehrtens6f80f012012-12-07 00:35:53 +01002264 if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002265 if (BRCMS_ISNPHY(wlc_hw->band)) {
2266 brcms_ucode_write(wlc_hw, ucode->bcm43xx_16_mimo,
2267 ucode->bcm43xx_16_mimosz);
2268 wlc_hw->ucode_loaded = true;
2269 } else
Seth Forsheeb353dda2012-11-15 08:08:03 -06002270 brcms_err(wlc_hw->d11core,
2271 "%s: wl%d: unsupported phy in corerev %d\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02002272 __func__, wlc_hw->unit, wlc_hw->corerev);
2273 } else if (D11REV_IS(wlc_hw->corerev, 24)) {
2274 if (BRCMS_ISLCNPHY(wlc_hw->band)) {
2275 brcms_ucode_write(wlc_hw, ucode->bcm43xx_24_lcn,
2276 ucode->bcm43xx_24_lcnsz);
2277 wlc_hw->ucode_loaded = true;
2278 } else {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002279 brcms_err(wlc_hw->d11core,
2280 "%s: wl%d: unsupported phy in corerev %d\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02002281 __func__, wlc_hw->unit, wlc_hw->corerev);
2282 }
2283 }
2284}
2285
2286void brcms_b_txant_set(struct brcms_hardware *wlc_hw, u16 phytxant)
2287{
2288 /* update sw state */
2289 wlc_hw->bmac_phytxant = phytxant;
2290
2291 /* push to ucode if up */
2292 if (!wlc_hw->up)
2293 return;
2294 brcms_c_ucode_txant_set(wlc_hw);
2295
2296}
2297
2298u16 brcms_b_get_txant(struct brcms_hardware *wlc_hw)
2299{
2300 return (u16) wlc_hw->wlc->stf->txant;
2301}
2302
2303void brcms_b_antsel_type_set(struct brcms_hardware *wlc_hw, u8 antsel_type)
2304{
2305 wlc_hw->antsel_type = antsel_type;
2306
2307 /* Update the antsel type for phy module to use */
2308 wlc_phy_antsel_type_set(wlc_hw->band->pi, antsel_type);
2309}
2310
2311static void brcms_b_fifoerrors(struct brcms_hardware *wlc_hw)
2312{
2313 bool fatal = false;
2314 uint unit;
2315 uint intstatus, idx;
Arend van Spriel16d28122011-12-08 15:06:51 -08002316 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002317
2318 unit = wlc_hw->unit;
2319
2320 for (idx = 0; idx < NFIFO; idx++) {
2321 /* read intstatus register and ignore any non-error bits */
2322 intstatus =
Arend van Spriel16d28122011-12-08 15:06:51 -08002323 bcma_read32(core,
2324 D11REGOFFS(intctrlregs[idx].intstatus)) &
2325 I_ERRORS;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002326 if (!intstatus)
2327 continue;
2328
Seth Forshee229a41d2012-11-15 08:08:06 -06002329 brcms_dbg_int(core, "wl%d: intstatus%d 0x%x\n",
2330 unit, idx, intstatus);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002331
2332 if (intstatus & I_RO) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002333 brcms_err(core, "wl%d: fifo %d: receive fifo "
Arend van Spriel5b435de2011-10-05 13:19:03 +02002334 "overflow\n", unit, idx);
2335 fatal = true;
2336 }
2337
2338 if (intstatus & I_PC) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002339 brcms_err(core, "wl%d: fifo %d: descriptor error\n",
2340 unit, idx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002341 fatal = true;
2342 }
2343
2344 if (intstatus & I_PD) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002345 brcms_err(core, "wl%d: fifo %d: data error\n", unit,
Arend van Spriel5b435de2011-10-05 13:19:03 +02002346 idx);
2347 fatal = true;
2348 }
2349
2350 if (intstatus & I_DE) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002351 brcms_err(core, "wl%d: fifo %d: descriptor protocol "
Arend van Spriel5b435de2011-10-05 13:19:03 +02002352 "error\n", unit, idx);
2353 fatal = true;
2354 }
2355
2356 if (intstatus & I_RU)
Seth Forsheeb353dda2012-11-15 08:08:03 -06002357 brcms_err(core, "wl%d: fifo %d: receive descriptor "
Arend van Spriel5b435de2011-10-05 13:19:03 +02002358 "underflow\n", idx, unit);
2359
2360 if (intstatus & I_XU) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002361 brcms_err(core, "wl%d: fifo %d: transmit fifo "
Arend van Spriel5b435de2011-10-05 13:19:03 +02002362 "underflow\n", idx, unit);
2363 fatal = true;
2364 }
2365
2366 if (fatal) {
Roland Vossenc261bdf2011-10-18 14:03:04 +02002367 brcms_fatal_error(wlc_hw->wlc->wl); /* big hammer */
Arend van Spriel5b435de2011-10-05 13:19:03 +02002368 break;
2369 } else
Arend van Spriel16d28122011-12-08 15:06:51 -08002370 bcma_write32(core,
2371 D11REGOFFS(intctrlregs[idx].intstatus),
2372 intstatus);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002373 }
2374}
2375
2376void brcms_c_intrson(struct brcms_c_info *wlc)
2377{
2378 struct brcms_hardware *wlc_hw = wlc->hw;
2379 wlc->macintmask = wlc->defmacintmask;
Arend van Spriel16d28122011-12-08 15:06:51 -08002380 bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002381}
2382
Arend van Spriel5b435de2011-10-05 13:19:03 +02002383u32 brcms_c_intrsoff(struct brcms_c_info *wlc)
2384{
2385 struct brcms_hardware *wlc_hw = wlc->hw;
2386 u32 macintmask;
2387
2388 if (!wlc_hw->clk)
2389 return 0;
2390
2391 macintmask = wlc->macintmask; /* isr can still happen */
2392
Arend van Spriel16d28122011-12-08 15:06:51 -08002393 bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), 0);
2394 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(macintmask));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002395 udelay(1); /* ensure int line is no longer driven */
2396 wlc->macintmask = 0;
2397
2398 /* return previous macintmask; resolve race between us and our isr */
2399 return wlc->macintstatus ? 0 : macintmask;
2400}
2401
2402void brcms_c_intrsrestore(struct brcms_c_info *wlc, u32 macintmask)
2403{
2404 struct brcms_hardware *wlc_hw = wlc->hw;
2405 if (!wlc_hw->clk)
2406 return;
2407
2408 wlc->macintmask = macintmask;
Arend van Spriel16d28122011-12-08 15:06:51 -08002409 bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002410}
2411
Roland Vossendc460122011-10-21 16:16:28 +02002412/* assumes that the d11 MAC is enabled */
Arend van Spriel5b435de2011-10-05 13:19:03 +02002413static void brcms_b_tx_fifo_suspend(struct brcms_hardware *wlc_hw,
2414 uint tx_fifo)
2415{
2416 u8 fifo = 1 << tx_fifo;
2417
2418 /* Two clients of this code, 11h Quiet period and scanning. */
2419
2420 /* only suspend if not already suspended */
2421 if ((wlc_hw->suspended_fifos & fifo) == fifo)
2422 return;
2423
2424 /* force the core awake only if not already */
2425 if (wlc_hw->suspended_fifos == 0)
2426 brcms_c_ucode_wake_override_set(wlc_hw,
2427 BRCMS_WAKE_OVERRIDE_TXFIFO);
2428
2429 wlc_hw->suspended_fifos |= fifo;
2430
2431 if (wlc_hw->di[tx_fifo]) {
2432 /*
2433 * Suspending AMPDU transmissions in the middle can cause
2434 * underflow which may result in mismatch between ucode and
2435 * driver so suspend the mac before suspending the FIFO
2436 */
2437 if (BRCMS_PHY_11N_CAP(wlc_hw->band))
2438 brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
2439
2440 dma_txsuspend(wlc_hw->di[tx_fifo]);
2441
2442 if (BRCMS_PHY_11N_CAP(wlc_hw->band))
2443 brcms_c_enable_mac(wlc_hw->wlc);
2444 }
2445}
2446
2447static void brcms_b_tx_fifo_resume(struct brcms_hardware *wlc_hw,
2448 uint tx_fifo)
2449{
2450 /* BMAC_NOTE: BRCMS_TX_FIFO_ENAB is done in brcms_c_dpc() for DMA case
2451 * but need to be done here for PIO otherwise the watchdog will catch
2452 * the inconsistency and fire
2453 */
2454 /* Two clients of this code, 11h Quiet period and scanning. */
2455 if (wlc_hw->di[tx_fifo])
2456 dma_txresume(wlc_hw->di[tx_fifo]);
2457
2458 /* allow core to sleep again */
2459 if (wlc_hw->suspended_fifos == 0)
2460 return;
2461 else {
2462 wlc_hw->suspended_fifos &= ~(1 << tx_fifo);
2463 if (wlc_hw->suspended_fifos == 0)
2464 brcms_c_ucode_wake_override_clear(wlc_hw,
2465 BRCMS_WAKE_OVERRIDE_TXFIFO);
2466 }
2467}
2468
Roland Vossena8bc4912011-10-21 16:16:25 +02002469/* precondition: requires the mac core to be enabled */
Roland Vossenc6c44892011-10-21 16:16:26 +02002470static void brcms_b_mute(struct brcms_hardware *wlc_hw, bool mute_tx)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002471{
2472 static const u8 null_ether_addr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
Arend van Sprielb180b102013-01-02 15:22:36 +01002473 u8 *ethaddr = wlc_hw->wlc->pub->cur_etheraddr;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002474
Roland Vossenc6c44892011-10-21 16:16:26 +02002475 if (mute_tx) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002476 /* suspend tx fifos */
2477 brcms_b_tx_fifo_suspend(wlc_hw, TX_DATA_FIFO);
2478 brcms_b_tx_fifo_suspend(wlc_hw, TX_CTL_FIFO);
2479 brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_BK_FIFO);
2480 brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_VI_FIFO);
2481
2482 /* zero the address match register so we do not send ACKs */
Arend van Sprielb180b102013-01-02 15:22:36 +01002483 brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET, null_ether_addr);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002484 } else {
2485 /* resume tx fifos */
2486 brcms_b_tx_fifo_resume(wlc_hw, TX_DATA_FIFO);
2487 brcms_b_tx_fifo_resume(wlc_hw, TX_CTL_FIFO);
2488 brcms_b_tx_fifo_resume(wlc_hw, TX_AC_BK_FIFO);
2489 brcms_b_tx_fifo_resume(wlc_hw, TX_AC_VI_FIFO);
2490
2491 /* Restore address */
Arend van Sprielb180b102013-01-02 15:22:36 +01002492 brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET, ethaddr);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002493 }
2494
Roland Vossenc6c44892011-10-21 16:16:26 +02002495 wlc_phy_mute_upd(wlc_hw->band->pi, mute_tx, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002496
Roland Vossenc6c44892011-10-21 16:16:26 +02002497 if (mute_tx)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002498 brcms_c_ucode_mute_override_set(wlc_hw);
2499 else
2500 brcms_c_ucode_mute_override_clear(wlc_hw);
2501}
2502
Roland Vossendc460122011-10-21 16:16:28 +02002503void
2504brcms_c_mute(struct brcms_c_info *wlc, bool mute_tx)
2505{
2506 brcms_b_mute(wlc->hw, mute_tx);
2507}
2508
Arend van Spriel5b435de2011-10-05 13:19:03 +02002509/*
2510 * Read and clear macintmask and macintstatus and intstatus registers.
2511 * This routine should be called with interrupts off
2512 * Return:
2513 * -1 if brcms_deviceremoved(wlc) evaluates to true;
2514 * 0 if the interrupt is not for us, or we are in some special cases;
2515 * device interrupt status bits otherwise.
2516 */
2517static inline u32 wlc_intstatus(struct brcms_c_info *wlc, bool in_isr)
2518{
2519 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08002520 struct bcma_device *core = wlc_hw->d11core;
Seth Forsheee3c0d8a2012-11-15 08:08:10 -06002521 u32 macintstatus, mask;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002522
2523 /* macintstatus includes a DMA interrupt summary bit */
Arend van Spriel16d28122011-12-08 15:06:51 -08002524 macintstatus = bcma_read32(core, D11REGOFFS(macintstatus));
Seth Forsheee3c0d8a2012-11-15 08:08:10 -06002525 mask = in_isr ? wlc->macintmask : wlc->defmacintmask;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002526
Seth Forsheee3c0d8a2012-11-15 08:08:10 -06002527 trace_brcms_macintstatus(&core->dev, in_isr, macintstatus, mask);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002528
2529 /* detect cardbus removed, in power down(suspend) and in reset */
2530 if (brcms_deviceremoved(wlc))
2531 return -1;
2532
2533 /* brcms_deviceremoved() succeeds even when the core is still resetting,
2534 * handle that case here.
2535 */
2536 if (macintstatus == 0xffffffff)
2537 return 0;
2538
2539 /* defer unsolicited interrupts */
Seth Forsheee3c0d8a2012-11-15 08:08:10 -06002540 macintstatus &= mask;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002541
2542 /* if not for us */
2543 if (macintstatus == 0)
2544 return 0;
2545
Arend van Spriel5b435de2011-10-05 13:19:03 +02002546 /* turn off the interrupts */
Arend van Spriel16d28122011-12-08 15:06:51 -08002547 bcma_write32(core, D11REGOFFS(macintmask), 0);
2548 (void)bcma_read32(core, D11REGOFFS(macintmask));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002549 wlc->macintmask = 0;
2550
2551 /* clear device interrupts */
Arend van Spriel16d28122011-12-08 15:06:51 -08002552 bcma_write32(core, D11REGOFFS(macintstatus), macintstatus);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002553
2554 /* MI_DMAINT is indication of non-zero intstatus */
2555 if (macintstatus & MI_DMAINT)
2556 /*
2557 * only fifo interrupt enabled is I_RI in
2558 * RX_FIFO. If MI_DMAINT is set, assume it
2559 * is set and clear the interrupt.
2560 */
Arend van Spriel16d28122011-12-08 15:06:51 -08002561 bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intstatus),
2562 DEF_RXINTMASK);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002563
2564 return macintstatus;
2565}
2566
2567/* Update wlc->macintstatus and wlc->intstatus[]. */
2568/* Return true if they are updated successfully. false otherwise */
2569bool brcms_c_intrsupd(struct brcms_c_info *wlc)
2570{
2571 u32 macintstatus;
2572
2573 /* read and clear macintstatus and intstatus registers */
2574 macintstatus = wlc_intstatus(wlc, false);
2575
2576 /* device is removed */
2577 if (macintstatus == 0xffffffff)
2578 return false;
2579
2580 /* update interrupt status in software */
2581 wlc->macintstatus |= macintstatus;
2582
2583 return true;
2584}
2585
2586/*
2587 * First-level interrupt processing.
Piotr Haber94d99022012-11-28 21:44:06 +01002588 * Return true if this was our interrupt
2589 * and if further brcms_c_dpc() processing is required,
Arend van Spriel5b435de2011-10-05 13:19:03 +02002590 * false otherwise.
2591 */
Piotr Haber94d99022012-11-28 21:44:06 +01002592bool brcms_c_isr(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002593{
2594 struct brcms_hardware *wlc_hw = wlc->hw;
2595 u32 macintstatus;
2596
Arend van Spriel5b435de2011-10-05 13:19:03 +02002597 if (!wlc_hw->up || !wlc->macintmask)
2598 return false;
2599
2600 /* read and clear macintstatus and intstatus registers */
2601 macintstatus = wlc_intstatus(wlc, true);
2602
Piotr Haber94d99022012-11-28 21:44:06 +01002603 if (macintstatus == 0xffffffff) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002604 brcms_err(wlc_hw->d11core,
2605 "DEVICEREMOVED detected in the ISR code path\n");
Piotr Haber94d99022012-11-28 21:44:06 +01002606 return false;
2607 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02002608
2609 /* it is not for us */
2610 if (macintstatus == 0)
2611 return false;
2612
Arend van Spriel5b435de2011-10-05 13:19:03 +02002613 /* save interrupt status bits */
2614 wlc->macintstatus = macintstatus;
2615
2616 return true;
2617
2618}
2619
2620void brcms_c_suspend_mac_and_wait(struct brcms_c_info *wlc)
2621{
2622 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08002623 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002624 u32 mc, mi;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002625
Seth Forshee913911f2012-11-15 08:08:04 -06002626 brcms_dbg_mac80211(core, "wl%d: bandunit %d\n", wlc_hw->unit,
2627 wlc_hw->band->bandunit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002628
2629 /*
2630 * Track overlapping suspend requests
2631 */
2632 wlc_hw->mac_suspend_depth++;
2633 if (wlc_hw->mac_suspend_depth > 1)
2634 return;
2635
2636 /* force the core awake */
2637 brcms_c_ucode_wake_override_set(wlc_hw, BRCMS_WAKE_OVERRIDE_MACSUSPEND);
2638
Arend van Spriel16d28122011-12-08 15:06:51 -08002639 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002640
2641 if (mc == 0xffffffff) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002642 brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit,
Arend van Spriel5b435de2011-10-05 13:19:03 +02002643 __func__);
2644 brcms_down(wlc->wl);
2645 return;
2646 }
2647 WARN_ON(mc & MCTL_PSM_JMP_0);
2648 WARN_ON(!(mc & MCTL_PSM_RUN));
2649 WARN_ON(!(mc & MCTL_EN_MAC));
2650
Arend van Spriel16d28122011-12-08 15:06:51 -08002651 mi = bcma_read32(core, D11REGOFFS(macintstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002652 if (mi == 0xffffffff) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002653 brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit,
Arend van Spriel5b435de2011-10-05 13:19:03 +02002654 __func__);
2655 brcms_down(wlc->wl);
2656 return;
2657 }
2658 WARN_ON(mi & MI_MACSSPNDD);
2659
2660 brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, 0);
2661
Arend van Spriel16d28122011-12-08 15:06:51 -08002662 SPINWAIT(!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD),
Arend van Spriel5b435de2011-10-05 13:19:03 +02002663 BRCMS_MAX_MAC_SUSPEND);
2664
Arend van Spriel16d28122011-12-08 15:06:51 -08002665 if (!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002666 brcms_err(core, "wl%d: wlc_suspend_mac_and_wait: waited %d uS"
Arend van Spriel5b435de2011-10-05 13:19:03 +02002667 " and MI_MACSSPNDD is still not on.\n",
2668 wlc_hw->unit, BRCMS_MAX_MAC_SUSPEND);
Seth Forsheeb353dda2012-11-15 08:08:03 -06002669 brcms_err(core, "wl%d: psmdebug 0x%08x, phydebug 0x%08x, "
Arend van Spriel5b435de2011-10-05 13:19:03 +02002670 "psm_brc 0x%04x\n", wlc_hw->unit,
Arend van Spriel16d28122011-12-08 15:06:51 -08002671 bcma_read32(core, D11REGOFFS(psmdebug)),
2672 bcma_read32(core, D11REGOFFS(phydebug)),
2673 bcma_read16(core, D11REGOFFS(psm_brc)));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002674 }
2675
Arend van Spriel16d28122011-12-08 15:06:51 -08002676 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002677 if (mc == 0xffffffff) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06002678 brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit,
Arend van Spriel5b435de2011-10-05 13:19:03 +02002679 __func__);
2680 brcms_down(wlc->wl);
2681 return;
2682 }
2683 WARN_ON(mc & MCTL_PSM_JMP_0);
2684 WARN_ON(!(mc & MCTL_PSM_RUN));
2685 WARN_ON(mc & MCTL_EN_MAC);
2686}
2687
2688void brcms_c_enable_mac(struct brcms_c_info *wlc)
2689{
2690 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08002691 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002692 u32 mc, mi;
2693
Seth Forshee913911f2012-11-15 08:08:04 -06002694 brcms_dbg_mac80211(core, "wl%d: bandunit %d\n", wlc_hw->unit,
2695 wlc->band->bandunit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002696
2697 /*
2698 * Track overlapping suspend requests
2699 */
2700 wlc_hw->mac_suspend_depth--;
2701 if (wlc_hw->mac_suspend_depth > 0)
2702 return;
2703
Arend van Spriel16d28122011-12-08 15:06:51 -08002704 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002705 WARN_ON(mc & MCTL_PSM_JMP_0);
2706 WARN_ON(mc & MCTL_EN_MAC);
2707 WARN_ON(!(mc & MCTL_PSM_RUN));
2708
2709 brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, MCTL_EN_MAC);
Arend van Spriel16d28122011-12-08 15:06:51 -08002710 bcma_write32(core, D11REGOFFS(macintstatus), MI_MACSSPNDD);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002711
Arend van Spriel16d28122011-12-08 15:06:51 -08002712 mc = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002713 WARN_ON(mc & MCTL_PSM_JMP_0);
2714 WARN_ON(!(mc & MCTL_EN_MAC));
2715 WARN_ON(!(mc & MCTL_PSM_RUN));
2716
Arend van Spriel16d28122011-12-08 15:06:51 -08002717 mi = bcma_read32(core, D11REGOFFS(macintstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002718 WARN_ON(mi & MI_MACSSPNDD);
2719
2720 brcms_c_ucode_wake_override_clear(wlc_hw,
2721 BRCMS_WAKE_OVERRIDE_MACSUSPEND);
2722}
2723
2724void brcms_b_band_stf_ss_set(struct brcms_hardware *wlc_hw, u8 stf_mode)
2725{
2726 wlc_hw->hw_stf_ss_opmode = stf_mode;
2727
2728 if (wlc_hw->clk)
2729 brcms_upd_ofdm_pctl1_table(wlc_hw);
2730}
2731
2732static bool brcms_b_validate_chip_access(struct brcms_hardware *wlc_hw)
2733{
Arend van Spriel16d28122011-12-08 15:06:51 -08002734 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002735 u32 w, val;
2736 struct wiphy *wiphy = wlc_hw->wlc->wiphy;
2737
Arend van Spriel5b435de2011-10-05 13:19:03 +02002738 /* Validate dchip register access */
2739
Arend van Spriel16d28122011-12-08 15:06:51 -08002740 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2741 (void)bcma_read32(core, D11REGOFFS(objaddr));
2742 w = bcma_read32(core, D11REGOFFS(objdata));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002743
2744 /* Can we write and read back a 32bit register? */
Arend van Spriel16d28122011-12-08 15:06:51 -08002745 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2746 (void)bcma_read32(core, D11REGOFFS(objaddr));
2747 bcma_write32(core, D11REGOFFS(objdata), (u32) 0xaa5555aa);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002748
Arend van Spriel16d28122011-12-08 15:06:51 -08002749 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2750 (void)bcma_read32(core, D11REGOFFS(objaddr));
2751 val = bcma_read32(core, D11REGOFFS(objdata));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002752 if (val != (u32) 0xaa5555aa) {
2753 wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, "
2754 "expected 0xaa5555aa\n", wlc_hw->unit, val);
2755 return false;
2756 }
2757
Arend van Spriel16d28122011-12-08 15:06:51 -08002758 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2759 (void)bcma_read32(core, D11REGOFFS(objaddr));
2760 bcma_write32(core, D11REGOFFS(objdata), (u32) 0x55aaaa55);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002761
Arend van Spriel16d28122011-12-08 15:06:51 -08002762 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2763 (void)bcma_read32(core, D11REGOFFS(objaddr));
2764 val = bcma_read32(core, D11REGOFFS(objdata));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002765 if (val != (u32) 0x55aaaa55) {
2766 wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, "
2767 "expected 0x55aaaa55\n", wlc_hw->unit, val);
2768 return false;
2769 }
2770
Arend van Spriel16d28122011-12-08 15:06:51 -08002771 bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0);
2772 (void)bcma_read32(core, D11REGOFFS(objaddr));
2773 bcma_write32(core, D11REGOFFS(objdata), w);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002774
2775 /* clear CFPStart */
Arend van Spriel16d28122011-12-08 15:06:51 -08002776 bcma_write32(core, D11REGOFFS(tsf_cfpstart), 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002777
Arend van Spriel16d28122011-12-08 15:06:51 -08002778 w = bcma_read32(core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002779 if ((w != (MCTL_IHR_EN | MCTL_WAKE)) &&
2780 (w != (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE))) {
2781 wiphy_err(wiphy, "wl%d: validate_chip_access: maccontrol = "
2782 "0x%x, expected 0x%x or 0x%x\n", wlc_hw->unit, w,
2783 (MCTL_IHR_EN | MCTL_WAKE),
2784 (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE));
2785 return false;
2786 }
2787
2788 return true;
2789}
2790
2791#define PHYPLL_WAIT_US 100000
2792
2793void brcms_b_core_phypll_ctl(struct brcms_hardware *wlc_hw, bool on)
2794{
Arend van Spriel16d28122011-12-08 15:06:51 -08002795 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002796 u32 tmp;
2797
Seth Forsheeb353dda2012-11-15 08:08:03 -06002798 brcms_dbg_info(core, "wl%d\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002799
2800 tmp = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002801
2802 if (on) {
Hauke Mehrtens1ef1a572012-06-30 15:16:13 +02002803 if ((ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM4313)) {
Arend van Spriel16d28122011-12-08 15:06:51 -08002804 bcma_set32(core, D11REGOFFS(clk_ctl_st),
2805 CCS_ERSRC_REQ_HT |
2806 CCS_ERSRC_REQ_D11PLL |
2807 CCS_ERSRC_REQ_PHYPLL);
2808 SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) &
2809 CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT,
Arend van Spriel5b435de2011-10-05 13:19:03 +02002810 PHYPLL_WAIT_US);
2811
Arend van Spriel16d28122011-12-08 15:06:51 -08002812 tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st));
2813 if ((tmp & CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT)
Seth Forsheeb353dda2012-11-15 08:08:03 -06002814 brcms_err(core, "%s: turn on PHY PLL failed\n",
2815 __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002816 } else {
Arend van Spriel16d28122011-12-08 15:06:51 -08002817 bcma_set32(core, D11REGOFFS(clk_ctl_st),
2818 tmp | CCS_ERSRC_REQ_D11PLL |
2819 CCS_ERSRC_REQ_PHYPLL);
2820 SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) &
Arend van Spriel5b435de2011-10-05 13:19:03 +02002821 (CCS_ERSRC_AVAIL_D11PLL |
2822 CCS_ERSRC_AVAIL_PHYPLL)) !=
2823 (CCS_ERSRC_AVAIL_D11PLL |
2824 CCS_ERSRC_AVAIL_PHYPLL), PHYPLL_WAIT_US);
2825
Arend van Spriel16d28122011-12-08 15:06:51 -08002826 tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002827 if ((tmp &
2828 (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL))
2829 !=
2830 (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL))
Seth Forsheeb353dda2012-11-15 08:08:03 -06002831 brcms_err(core, "%s: turn on PHY PLL failed\n",
2832 __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002833 }
2834 } else {
2835 /*
2836 * Since the PLL may be shared, other cores can still
2837 * be requesting it; so we'll deassert the request but
2838 * not wait for status to comply.
2839 */
Arend van Spriel16d28122011-12-08 15:06:51 -08002840 bcma_mask32(core, D11REGOFFS(clk_ctl_st),
2841 ~CCS_ERSRC_REQ_PHYPLL);
2842 (void)bcma_read32(core, D11REGOFFS(clk_ctl_st));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002843 }
2844}
2845
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02002846static void brcms_c_coredisable(struct brcms_hardware *wlc_hw)
Arend van Spriel5b435de2011-10-05 13:19:03 +02002847{
2848 bool dev_gone;
2849
Seth Forsheeb353dda2012-11-15 08:08:03 -06002850 brcms_dbg_info(wlc_hw->d11core, "wl%d: disable core\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002851
2852 dev_gone = brcms_deviceremoved(wlc_hw->wlc);
2853
2854 if (dev_gone)
2855 return;
2856
2857 if (wlc_hw->noreset)
2858 return;
2859
2860 /* radio off */
2861 wlc_phy_switch_radio(wlc_hw->band->pi, OFF);
2862
2863 /* turn off analog core */
2864 wlc_phy_anacore(wlc_hw->band->pi, OFF);
2865
2866 /* turn off PHYPLL to save power */
2867 brcms_b_core_phypll_ctl(wlc_hw, false);
2868
2869 wlc_hw->clk = false;
Arend van Spriela8779e42011-12-08 15:06:58 -08002870 bcma_core_disable(wlc_hw->d11core, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002871 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
2872}
2873
2874static void brcms_c_flushqueues(struct brcms_c_info *wlc)
2875{
2876 struct brcms_hardware *wlc_hw = wlc->hw;
2877 uint i;
2878
2879 /* free any posted tx packets */
Seth Forsheee041f652012-11-15 08:07:56 -06002880 for (i = 0; i < NFIFO; i++) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02002881 if (wlc_hw->di[i]) {
2882 dma_txreclaim(wlc_hw->di[i], DMA_RANGE_ALL);
Seth Forsheee041f652012-11-15 08:07:56 -06002883 if (i < TX_BCMC_FIFO)
2884 ieee80211_wake_queue(wlc->pub->ieee_hw,
2885 brcms_fifo_to_ac(i));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002886 }
Seth Forsheee041f652012-11-15 08:07:56 -06002887 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02002888
2889 /* free any posted rx packets */
2890 dma_rxreclaim(wlc_hw->di[RX_FIFO]);
2891}
2892
2893static u16
2894brcms_b_read_objmem(struct brcms_hardware *wlc_hw, uint offset, u32 sel)
2895{
Arend van Spriel16d28122011-12-08 15:06:51 -08002896 struct bcma_device *core = wlc_hw->d11core;
2897 u16 objoff = D11REGOFFS(objdata);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002898
Arend van Spriel16d28122011-12-08 15:06:51 -08002899 bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2));
2900 (void)bcma_read32(core, D11REGOFFS(objaddr));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002901 if (offset & 2)
Arend van Spriel16d28122011-12-08 15:06:51 -08002902 objoff += 2;
Arend van Spriel5b435de2011-10-05 13:19:03 +02002903
Arend van Spriel16d28122011-12-08 15:06:51 -08002904 return bcma_read16(core, objoff);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002905}
2906
2907static void
2908brcms_b_write_objmem(struct brcms_hardware *wlc_hw, uint offset, u16 v,
2909 u32 sel)
2910{
Arend van Spriel16d28122011-12-08 15:06:51 -08002911 struct bcma_device *core = wlc_hw->d11core;
2912 u16 objoff = D11REGOFFS(objdata);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002913
Arend van Spriel16d28122011-12-08 15:06:51 -08002914 bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2));
2915 (void)bcma_read32(core, D11REGOFFS(objaddr));
Arend van Spriel5b435de2011-10-05 13:19:03 +02002916 if (offset & 2)
Arend van Spriel16d28122011-12-08 15:06:51 -08002917 objoff += 2;
2918
Hauke Mehrtens512ae052012-12-07 17:04:13 +01002919 bcma_wflush16(core, objoff, v);
Arend van Spriel5b435de2011-10-05 13:19:03 +02002920}
2921
2922/*
2923 * Read a single u16 from shared memory.
2924 * SHM 'offset' needs to be an even address
2925 */
2926u16 brcms_b_read_shm(struct brcms_hardware *wlc_hw, uint offset)
2927{
2928 return brcms_b_read_objmem(wlc_hw, offset, OBJADDR_SHM_SEL);
2929}
2930
2931/*
2932 * Write a single u16 to shared memory.
2933 * SHM 'offset' needs to be an even address
2934 */
2935void brcms_b_write_shm(struct brcms_hardware *wlc_hw, uint offset, u16 v)
2936{
2937 brcms_b_write_objmem(wlc_hw, offset, v, OBJADDR_SHM_SEL);
2938}
2939
2940/*
2941 * Copy a buffer to shared memory of specified type .
2942 * SHM 'offset' needs to be an even address and
2943 * Buffer length 'len' must be an even number of bytes
2944 * 'sel' selects the type of memory
2945 */
2946void
2947brcms_b_copyto_objmem(struct brcms_hardware *wlc_hw, uint offset,
2948 const void *buf, int len, u32 sel)
2949{
2950 u16 v;
2951 const u8 *p = (const u8 *)buf;
2952 int i;
2953
2954 if (len <= 0 || (offset & 1) || (len & 1))
2955 return;
2956
2957 for (i = 0; i < len; i += 2) {
2958 v = p[i] | (p[i + 1] << 8);
2959 brcms_b_write_objmem(wlc_hw, offset + i, v, sel);
2960 }
2961}
2962
2963/*
2964 * Copy a piece of shared memory of specified type to a buffer .
2965 * SHM 'offset' needs to be an even address and
2966 * Buffer length 'len' must be an even number of bytes
2967 * 'sel' selects the type of memory
2968 */
2969void
2970brcms_b_copyfrom_objmem(struct brcms_hardware *wlc_hw, uint offset, void *buf,
2971 int len, u32 sel)
2972{
2973 u16 v;
2974 u8 *p = (u8 *) buf;
2975 int i;
2976
2977 if (len <= 0 || (offset & 1) || (len & 1))
2978 return;
2979
2980 for (i = 0; i < len; i += 2) {
2981 v = brcms_b_read_objmem(wlc_hw, offset + i, sel);
2982 p[i] = v & 0xFF;
2983 p[i + 1] = (v >> 8) & 0xFF;
2984 }
2985}
2986
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02002987/* Copy a buffer to shared memory.
2988 * SHM 'offset' needs to be an even address and
2989 * Buffer length 'len' must be an even number of bytes
2990 */
2991static void brcms_c_copyto_shm(struct brcms_c_info *wlc, uint offset,
2992 const void *buf, int len)
2993{
2994 brcms_b_copyto_objmem(wlc->hw, offset, buf, len, OBJADDR_SHM_SEL);
2995}
2996
Arend van Spriel5b435de2011-10-05 13:19:03 +02002997static void brcms_b_retrylimit_upd(struct brcms_hardware *wlc_hw,
2998 u16 SRL, u16 LRL)
2999{
3000 wlc_hw->SRL = SRL;
3001 wlc_hw->LRL = LRL;
3002
3003 /* write retry limit to SCR, shouldn't need to suspend */
3004 if (wlc_hw->up) {
Arend van Spriel16d28122011-12-08 15:06:51 -08003005 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
3006 OBJADDR_SCR_SEL | S_DOT11_SRC_LMT);
3007 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
3008 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->SRL);
3009 bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr),
3010 OBJADDR_SCR_SEL | S_DOT11_LRC_LMT);
3011 (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr));
3012 bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->LRL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003013 }
3014}
3015
3016static void brcms_b_pllreq(struct brcms_hardware *wlc_hw, bool set, u32 req_bit)
3017{
3018 if (set) {
3019 if (mboolisset(wlc_hw->pllreq, req_bit))
3020 return;
3021
3022 mboolset(wlc_hw->pllreq, req_bit);
3023
3024 if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) {
3025 if (!wlc_hw->sbclk)
3026 brcms_b_xtal(wlc_hw, ON);
3027 }
3028 } else {
3029 if (!mboolisset(wlc_hw->pllreq, req_bit))
3030 return;
3031
3032 mboolclr(wlc_hw->pllreq, req_bit);
3033
3034 if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) {
3035 if (wlc_hw->sbclk)
3036 brcms_b_xtal(wlc_hw, OFF);
3037 }
3038 }
3039}
3040
3041static void brcms_b_antsel_set(struct brcms_hardware *wlc_hw, u32 antsel_avail)
3042{
3043 wlc_hw->antsel_avail = antsel_avail;
3044}
3045
3046/*
3047 * conditions under which the PM bit should be set in outgoing frames
3048 * and STAY_AWAKE is meaningful
3049 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003050static bool brcms_c_ps_allowed(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003051{
Arend van Spriel5b435de2011-10-05 13:19:03 +02003052 /* 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
Arend van Spriel5b435de2011-10-05 13:19:03 +02003060 return true;
3061}
3062
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003063static void brcms_c_statsupd(struct brcms_c_info *wlc)
3064{
3065 int i;
3066 struct macstat macstats;
Joe Perches8ae74652012-01-15 00:38:38 -08003067#ifdef DEBUG
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003068 u16 delta;
3069 u16 rxf0ovfl;
3070 u16 txfunfl[NFIFO];
Joe Perches8ae74652012-01-15 00:38:38 -08003071#endif /* DEBUG */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003072
3073 /* if driver down, make no sense to update stats */
3074 if (!wlc->pub->up)
3075 return;
3076
Joe Perches8ae74652012-01-15 00:38:38 -08003077#ifdef DEBUG
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003078 /* save last rx fifo 0 overflow count */
3079 rxf0ovfl = wlc->core->macstat_snapshot->rxf0ovfl;
3080
3081 /* save last tx fifo underflow count */
3082 for (i = 0; i < NFIFO; i++)
3083 txfunfl[i] = wlc->core->macstat_snapshot->txfunfl[i];
Joe Perches8ae74652012-01-15 00:38:38 -08003084#endif /* DEBUG */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003085
3086 /* Read mac stats from contiguous shared memory */
3087 brcms_b_copyfrom_objmem(wlc->hw, M_UCODE_MACSTAT, &macstats,
3088 sizeof(struct macstat), OBJADDR_SHM_SEL);
3089
Joe Perches8ae74652012-01-15 00:38:38 -08003090#ifdef DEBUG
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003091 /* check for rx fifo 0 overflow */
3092 delta = (u16) (wlc->core->macstat_snapshot->rxf0ovfl - rxf0ovfl);
3093 if (delta)
Seth Forsheeb353dda2012-11-15 08:08:03 -06003094 brcms_err(wlc->hw->d11core, "wl%d: %u rx fifo 0 overflows!\n",
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003095 wlc->pub->unit, delta);
3096
3097 /* check for tx fifo underflows */
3098 for (i = 0; i < NFIFO; i++) {
3099 delta =
3100 (u16) (wlc->core->macstat_snapshot->txfunfl[i] -
3101 txfunfl[i]);
3102 if (delta)
Seth Forsheeb353dda2012-11-15 08:08:03 -06003103 brcms_err(wlc->hw->d11core,
3104 "wl%d: %u tx fifo %d underflows!\n",
3105 wlc->pub->unit, delta, i);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003106 }
Joe Perches8ae74652012-01-15 00:38:38 -08003107#endif /* DEBUG */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003108
3109 /* merge counters from dma module */
3110 for (i = 0; i < NFIFO; i++) {
3111 if (wlc->hw->di[i])
3112 dma_counterreset(wlc->hw->di[i]);
3113 }
3114}
3115
Arend van Spriel5b435de2011-10-05 13:19:03 +02003116static void brcms_b_reset(struct brcms_hardware *wlc_hw)
3117{
Arend van Spriel5b435de2011-10-05 13:19:03 +02003118 /* reset the core */
3119 if (!brcms_deviceremoved(wlc_hw->wlc))
3120 brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
3121
3122 /* purge the dma rings */
3123 brcms_c_flushqueues(wlc_hw->wlc);
3124}
3125
3126void brcms_c_reset(struct brcms_c_info *wlc)
3127{
Seth Forsheeb353dda2012-11-15 08:08:03 -06003128 brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003129
3130 /* slurp up hw mac counters before core reset */
3131 brcms_c_statsupd(wlc);
3132
3133 /* reset our snapshot of macstat counters */
Joe Perchesb56e6812013-02-13 17:33:21 -08003134 memset(wlc->core->macstat_snapshot, 0, sizeof(struct macstat));
Arend van Spriel5b435de2011-10-05 13:19:03 +02003135
3136 brcms_b_reset(wlc->hw);
3137}
3138
Arend van Spriel5b435de2011-10-05 13:19:03 +02003139void brcms_c_init_scb(struct scb *scb)
3140{
3141 int i;
3142
3143 memset(scb, 0, sizeof(struct scb));
3144 scb->flags = SCB_WMECAP | SCB_HTCAP;
3145 for (i = 0; i < NUMPRIO; i++) {
3146 scb->seqnum[i] = 0;
3147 scb->seqctl[i] = 0xFFFF;
3148 }
3149
3150 scb->seqctl_nonqos = 0xFFFF;
3151 scb->magic = SCB_MAGIC;
3152}
3153
3154/* d11 core init
3155 * reset PSM
3156 * download ucode/PCM
3157 * let ucode run to suspended
3158 * download ucode inits
3159 * config other core registers
3160 * init dma
3161 */
3162static void brcms_b_coreinit(struct brcms_c_info *wlc)
3163{
3164 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08003165 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003166 u32 sflags;
Arend van Spriel16d28122011-12-08 15:06:51 -08003167 u32 bcnint_us;
Arend van Spriel5b435de2011-10-05 13:19:03 +02003168 uint i = 0;
3169 bool fifosz_fixup = false;
3170 int err = 0;
3171 u16 buf[NFIFO];
Arend van Spriel5b435de2011-10-05 13:19:03 +02003172 struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode;
3173
Seth Forsheeb353dda2012-11-15 08:08:03 -06003174 brcms_dbg_info(core, "wl%d: core init\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003175
3176 /* reset PSM */
3177 brcms_b_mctrl(wlc_hw, ~0, (MCTL_IHR_EN | MCTL_PSM_JMP_0 | MCTL_WAKE));
3178
3179 brcms_ucode_download(wlc_hw);
3180 /*
3181 * FIFOSZ fixup. driver wants to controls the fifo allocation.
3182 */
3183 fifosz_fixup = true;
3184
3185 /* let the PSM run to the suspended state, set mode to BSS STA */
Arend van Spriel16d28122011-12-08 15:06:51 -08003186 bcma_write32(core, D11REGOFFS(macintstatus), -1);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003187 brcms_b_mctrl(wlc_hw, ~0,
3188 (MCTL_IHR_EN | MCTL_INFRA | MCTL_PSM_RUN | MCTL_WAKE));
3189
3190 /* wait for ucode to self-suspend after auto-init */
Arend van Spriel16d28122011-12-08 15:06:51 -08003191 SPINWAIT(((bcma_read32(core, D11REGOFFS(macintstatus)) &
3192 MI_MACSSPNDD) == 0), 1000 * 1000);
3193 if ((bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD) == 0)
Seth Forsheeb353dda2012-11-15 08:08:03 -06003194 brcms_err(core, "wl%d: wlc_coreinit: ucode did not self-"
Arend van Spriel5b435de2011-10-05 13:19:03 +02003195 "suspend!\n", wlc_hw->unit);
3196
3197 brcms_c_gpio_init(wlc);
3198
Arend van Spriela8779e42011-12-08 15:06:58 -08003199 sflags = bcma_aread32(core, BCMA_IOST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003200
Hauke Mehrtens6f80f012012-12-07 00:35:53 +01003201 if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02003202 if (BRCMS_ISNPHY(wlc_hw->band))
3203 brcms_c_write_inits(wlc_hw, ucode->d11n0initvals16);
3204 else
Seth Forsheeb353dda2012-11-15 08:08:03 -06003205 brcms_err(core, "%s: wl%d: unsupported phy in corerev"
Arend van Spriel5b435de2011-10-05 13:19:03 +02003206 " %d\n", __func__, wlc_hw->unit,
3207 wlc_hw->corerev);
3208 } else if (D11REV_IS(wlc_hw->corerev, 24)) {
3209 if (BRCMS_ISLCNPHY(wlc_hw->band))
3210 brcms_c_write_inits(wlc_hw, ucode->d11lcn0initvals24);
3211 else
Seth Forsheeb353dda2012-11-15 08:08:03 -06003212 brcms_err(core, "%s: wl%d: unsupported phy in corerev"
Arend van Spriel5b435de2011-10-05 13:19:03 +02003213 " %d\n", __func__, wlc_hw->unit,
3214 wlc_hw->corerev);
3215 } else {
Seth Forsheeb353dda2012-11-15 08:08:03 -06003216 brcms_err(core, "%s: wl%d: unsupported corerev %d\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02003217 __func__, wlc_hw->unit, wlc_hw->corerev);
3218 }
3219
3220 /* For old ucode, txfifo sizes needs to be modified(increased) */
Joe Perches23677ce2012-02-09 11:17:23 +00003221 if (fifosz_fixup)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003222 brcms_b_corerev_fifofixup(wlc_hw);
3223
3224 /* check txfifo allocations match between ucode and driver */
3225 buf[TX_AC_BE_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE0);
3226 if (buf[TX_AC_BE_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]) {
3227 i = TX_AC_BE_FIFO;
3228 err = -1;
3229 }
3230 buf[TX_AC_VI_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE1);
3231 if (buf[TX_AC_VI_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]) {
3232 i = TX_AC_VI_FIFO;
3233 err = -1;
3234 }
3235 buf[TX_AC_BK_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE2);
3236 buf[TX_AC_VO_FIFO] = (buf[TX_AC_BK_FIFO] >> 8) & 0xff;
3237 buf[TX_AC_BK_FIFO] &= 0xff;
3238 if (buf[TX_AC_BK_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BK_FIFO]) {
3239 i = TX_AC_BK_FIFO;
3240 err = -1;
3241 }
3242 if (buf[TX_AC_VO_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO]) {
3243 i = TX_AC_VO_FIFO;
3244 err = -1;
3245 }
3246 buf[TX_BCMC_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE3);
3247 buf[TX_ATIM_FIFO] = (buf[TX_BCMC_FIFO] >> 8) & 0xff;
3248 buf[TX_BCMC_FIFO] &= 0xff;
3249 if (buf[TX_BCMC_FIFO] != wlc_hw->xmtfifo_sz[TX_BCMC_FIFO]) {
3250 i = TX_BCMC_FIFO;
3251 err = -1;
3252 }
3253 if (buf[TX_ATIM_FIFO] != wlc_hw->xmtfifo_sz[TX_ATIM_FIFO]) {
3254 i = TX_ATIM_FIFO;
3255 err = -1;
3256 }
3257 if (err != 0)
Seth Forsheeb353dda2012-11-15 08:08:03 -06003258 brcms_err(core, "wlc_coreinit: txfifo mismatch: ucode size %d"
Arend van Spriel5b435de2011-10-05 13:19:03 +02003259 " driver size %d index %d\n", buf[i],
3260 wlc_hw->xmtfifo_sz[i], i);
3261
3262 /* make sure we can still talk to the mac */
Arend van Spriel16d28122011-12-08 15:06:51 -08003263 WARN_ON(bcma_read32(core, D11REGOFFS(maccontrol)) == 0xffffffff);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003264
3265 /* band-specific inits done by wlc_bsinit() */
3266
3267 /* Set up frame burst size and antenna swap threshold init values */
3268 brcms_b_write_shm(wlc_hw, M_MBURST_SIZE, MAXTXFRAMEBURST);
3269 brcms_b_write_shm(wlc_hw, M_MAX_ANTCNT, ANTCNT);
3270
3271 /* enable one rx interrupt per received frame */
Arend van Spriel16d28122011-12-08 15:06:51 -08003272 bcma_write32(core, D11REGOFFS(intrcvlazy[0]), (1 << IRL_FC_SHIFT));
Arend van Spriel5b435de2011-10-05 13:19:03 +02003273
3274 /* set the station mode (BSS STA) */
3275 brcms_b_mctrl(wlc_hw,
3276 (MCTL_INFRA | MCTL_DISCARD_PMQ | MCTL_AP),
3277 (MCTL_INFRA | MCTL_DISCARD_PMQ));
3278
3279 /* set up Beacon interval */
3280 bcnint_us = 0x8000 << 10;
Arend van Spriel16d28122011-12-08 15:06:51 -08003281 bcma_write32(core, D11REGOFFS(tsf_cfprep),
3282 (bcnint_us << CFPREP_CBI_SHIFT));
3283 bcma_write32(core, D11REGOFFS(tsf_cfpstart), bcnint_us);
3284 bcma_write32(core, D11REGOFFS(macintstatus), MI_GP1);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003285
3286 /* write interrupt mask */
Arend van Spriel16d28122011-12-08 15:06:51 -08003287 bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intmask),
3288 DEF_RXINTMASK);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003289
3290 /* allow the MAC to control the PHY clock (dynamic on/off) */
3291 brcms_b_macphyclk_set(wlc_hw, ON);
3292
3293 /* program dynamic clock control fast powerup delay register */
3294 wlc->fastpwrup_dly = ai_clkctl_fast_pwrup_delay(wlc_hw->sih);
Arend van Spriel16d28122011-12-08 15:06:51 -08003295 bcma_write16(core, D11REGOFFS(scc_fastpwrup_dly), wlc->fastpwrup_dly);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003296
3297 /* tell the ucode the corerev */
3298 brcms_b_write_shm(wlc_hw, M_MACHW_VER, (u16) wlc_hw->corerev);
3299
3300 /* tell the ucode MAC capabilities */
3301 brcms_b_write_shm(wlc_hw, M_MACHW_CAP_L,
3302 (u16) (wlc_hw->machwcap & 0xffff));
3303 brcms_b_write_shm(wlc_hw, M_MACHW_CAP_H,
3304 (u16) ((wlc_hw->
3305 machwcap >> 16) & 0xffff));
3306
3307 /* write retry limits to SCR, this done after PSM init */
Arend van Spriel16d28122011-12-08 15:06:51 -08003308 bcma_write32(core, D11REGOFFS(objaddr),
3309 OBJADDR_SCR_SEL | S_DOT11_SRC_LMT);
3310 (void)bcma_read32(core, D11REGOFFS(objaddr));
3311 bcma_write32(core, D11REGOFFS(objdata), wlc_hw->SRL);
3312 bcma_write32(core, D11REGOFFS(objaddr),
3313 OBJADDR_SCR_SEL | S_DOT11_LRC_LMT);
3314 (void)bcma_read32(core, D11REGOFFS(objaddr));
3315 bcma_write32(core, D11REGOFFS(objdata), wlc_hw->LRL);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003316
3317 /* write rate fallback retry limits */
3318 brcms_b_write_shm(wlc_hw, M_SFRMTXCNTFBRTHSD, wlc_hw->SFBL);
3319 brcms_b_write_shm(wlc_hw, M_LFRMTXCNTFBRTHSD, wlc_hw->LFBL);
3320
Arend van Spriel16d28122011-12-08 15:06:51 -08003321 bcma_mask16(core, D11REGOFFS(ifs_ctl), 0x0FFF);
3322 bcma_write16(core, D11REGOFFS(ifs_aifsn), EDCF_AIFSN_MIN);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003323
3324 /* init the tx dma engines */
3325 for (i = 0; i < NFIFO; i++) {
3326 if (wlc_hw->di[i])
3327 dma_txinit(wlc_hw->di[i]);
3328 }
3329
3330 /* init the rx dma engine(s) and post receive buffers */
3331 dma_rxinit(wlc_hw->di[RX_FIFO]);
3332 dma_rxfill(wlc_hw->di[RX_FIFO]);
3333}
3334
3335void
Roland Vossena8bc4912011-10-21 16:16:25 +02003336static brcms_b_init(struct brcms_hardware *wlc_hw, u16 chanspec) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02003337 u32 macintmask;
3338 bool fastclk;
3339 struct brcms_c_info *wlc = wlc_hw->wlc;
3340
Arend van Spriel5b435de2011-10-05 13:19:03 +02003341 /* request FAST clock if not on */
3342 fastclk = wlc_hw->forcefastclk;
3343 if (!fastclk)
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02003344 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003345
3346 /* disable interrupts */
3347 macintmask = brcms_intrsoff(wlc->wl);
3348
3349 /* set up the specified band and chanspec */
3350 brcms_c_setxband(wlc_hw, chspec_bandunit(chanspec));
3351 wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec);
3352
3353 /* do one-time phy inits and calibration */
3354 wlc_phy_cal_init(wlc_hw->band->pi);
3355
3356 /* core-specific initialization */
3357 brcms_b_coreinit(wlc);
3358
Arend van Spriel5b435de2011-10-05 13:19:03 +02003359 /* band-specific inits */
3360 brcms_b_bsinit(wlc, chanspec);
3361
3362 /* restore macintmask */
3363 brcms_intrsrestore(wlc->wl, macintmask);
3364
3365 /* seed wake_override with BRCMS_WAKE_OVERRIDE_MACSUSPEND since the mac
3366 * is suspended and brcms_c_enable_mac() will clear this override bit.
3367 */
3368 mboolset(wlc_hw->wake_override, BRCMS_WAKE_OVERRIDE_MACSUSPEND);
3369
3370 /*
3371 * initialize mac_suspend_depth to 1 to match ucode
3372 * initial suspended state
3373 */
3374 wlc_hw->mac_suspend_depth = 1;
3375
3376 /* restore the clk */
3377 if (!fastclk)
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02003378 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003379}
3380
3381static void brcms_c_set_phy_chanspec(struct brcms_c_info *wlc,
3382 u16 chanspec)
3383{
3384 /* Save our copy of the chanspec */
3385 wlc->chanspec = chanspec;
3386
3387 /* Set the chanspec and power limits for this locale */
3388 brcms_c_channel_set_chanspec(wlc->cmi, chanspec, BRCMS_TXPWR_MAX);
3389
3390 if (wlc->stf->ss_algosel_auto)
3391 brcms_c_stf_ss_algo_channel_get(wlc, &wlc->stf->ss_algo_channel,
3392 chanspec);
3393
3394 brcms_c_stf_ss_update(wlc, wlc->band);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003395}
Arend van Spriel5b435de2011-10-05 13:19:03 +02003396
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003397static void
3398brcms_default_rateset(struct brcms_c_info *wlc, struct brcms_c_rateset *rs)
3399{
3400 brcms_c_rateset_default(rs, NULL, wlc->band->phytype,
3401 wlc->band->bandtype, false, BRCMS_RATE_MASK_FULL,
3402 (bool) (wlc->pub->_n_enab & SUPPORT_11N),
3403 brcms_chspec_bw(wlc->default_bss->chanspec),
3404 wlc->stf->txstreams);
3405}
3406
3407/* derive wlc->band->basic_rate[] table from 'rateset' */
3408static void brcms_c_rate_lookup_init(struct brcms_c_info *wlc,
3409 struct brcms_c_rateset *rateset)
3410{
3411 u8 rate;
3412 u8 mandatory;
3413 u8 cck_basic = 0;
3414 u8 ofdm_basic = 0;
3415 u8 *br = wlc->band->basic_rate;
3416 uint i;
3417
3418 /* incoming rates are in 500kbps units as in 802.11 Supported Rates */
3419 memset(br, 0, BRCM_MAXRATE + 1);
3420
3421 /* For each basic rate in the rates list, make an entry in the
3422 * best basic lookup.
3423 */
3424 for (i = 0; i < rateset->count; i++) {
3425 /* only make an entry for a basic rate */
3426 if (!(rateset->rates[i] & BRCMS_RATE_FLAG))
3427 continue;
3428
3429 /* mask off basic bit */
3430 rate = (rateset->rates[i] & BRCMS_RATE_MASK);
3431
3432 if (rate > BRCM_MAXRATE) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06003433 brcms_err(wlc->hw->d11core, "brcms_c_rate_lookup_init: "
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003434 "invalid rate 0x%X in rate set\n",
3435 rateset->rates[i]);
3436 continue;
3437 }
3438
3439 br[rate] = rate;
3440 }
3441
3442 /* The rate lookup table now has non-zero entries for each
3443 * basic rate, equal to the basic rate: br[basicN] = basicN
3444 *
3445 * To look up the best basic rate corresponding to any
3446 * particular rate, code can use the basic_rate table
3447 * like this
3448 *
3449 * basic_rate = wlc->band->basic_rate[tx_rate]
3450 *
3451 * Make sure there is a best basic rate entry for
3452 * every rate by walking up the table from low rates
3453 * to high, filling in holes in the lookup table
3454 */
3455
3456 for (i = 0; i < wlc->band->hw_rateset.count; i++) {
3457 rate = wlc->band->hw_rateset.rates[i];
3458
3459 if (br[rate] != 0) {
3460 /* This rate is a basic rate.
3461 * Keep track of the best basic rate so far by
3462 * modulation type.
3463 */
3464 if (is_ofdm_rate(rate))
3465 ofdm_basic = rate;
3466 else
3467 cck_basic = rate;
3468
3469 continue;
3470 }
3471
3472 /* This rate is not a basic rate so figure out the
3473 * best basic rate less than this rate and fill in
3474 * the hole in the table
3475 */
3476
3477 br[rate] = is_ofdm_rate(rate) ? ofdm_basic : cck_basic;
3478
3479 if (br[rate] != 0)
3480 continue;
3481
3482 if (is_ofdm_rate(rate)) {
3483 /*
3484 * In 11g and 11a, the OFDM mandatory rates
3485 * are 6, 12, and 24 Mbps
3486 */
3487 if (rate >= BRCM_RATE_24M)
3488 mandatory = BRCM_RATE_24M;
3489 else if (rate >= BRCM_RATE_12M)
3490 mandatory = BRCM_RATE_12M;
3491 else
3492 mandatory = BRCM_RATE_6M;
3493 } else {
3494 /* In 11b, all CCK rates are mandatory 1 - 11 Mbps */
3495 mandatory = rate;
3496 }
3497
3498 br[rate] = mandatory;
3499 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003500}
3501
3502static void brcms_c_bandinit_ordered(struct brcms_c_info *wlc,
3503 u16 chanspec)
3504{
3505 struct brcms_c_rateset default_rateset;
3506 uint parkband;
3507 uint i, band_order[2];
3508
Arend van Spriel5b435de2011-10-05 13:19:03 +02003509 /*
3510 * We might have been bandlocked during down and the chip
3511 * power-cycled (hibernate). Figure out the right band to park on
3512 */
3513 if (wlc->bandlocked || wlc->pub->_nbands == 1) {
3514 /* updated in brcms_c_bandlock() */
3515 parkband = wlc->band->bandunit;
3516 band_order[0] = band_order[1] = parkband;
3517 } else {
3518 /* park on the band of the specified chanspec */
3519 parkband = chspec_bandunit(chanspec);
3520
3521 /* order so that parkband initialize last */
3522 band_order[0] = parkband ^ 1;
3523 band_order[1] = parkband;
3524 }
3525
3526 /* make each band operational, software state init */
3527 for (i = 0; i < wlc->pub->_nbands; i++) {
3528 uint j = band_order[i];
3529
3530 wlc->band = wlc->bandstate[j];
3531
3532 brcms_default_rateset(wlc, &default_rateset);
3533
3534 /* fill in hw_rate */
3535 brcms_c_rateset_filter(&default_rateset, &wlc->band->hw_rateset,
3536 false, BRCMS_RATES_CCK_OFDM, BRCMS_RATE_MASK,
3537 (bool) (wlc->pub->_n_enab & SUPPORT_11N));
3538
3539 /* init basic rate lookup */
3540 brcms_c_rate_lookup_init(wlc, &default_rateset);
3541 }
3542
3543 /* sync up phy/radio chanspec */
3544 brcms_c_set_phy_chanspec(wlc, chanspec);
3545}
3546
Alwin Beukers02a588a2011-11-10 20:30:28 +01003547/*
Alwin Beukersbe667662011-11-22 17:21:43 -08003548 * Set or clear filtering related maccontrol bits based on
3549 * specified filter flags
Alwin Beukers02a588a2011-11-10 20:30:28 +01003550 */
Alwin Beukersbe667662011-11-22 17:21:43 -08003551void brcms_c_mac_promisc(struct brcms_c_info *wlc, uint filter_flags)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003552{
Alwin Beukers02a588a2011-11-10 20:30:28 +01003553 u32 promisc_bits = 0;
3554
Alwin Beukersbe667662011-11-22 17:21:43 -08003555 wlc->filter_flags = filter_flags;
3556
3557 if (filter_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS))
3558 promisc_bits |= MCTL_PROMISC;
3559
3560 if (filter_flags & FIF_BCN_PRBRESP_PROMISC)
Alwin Beukers02a588a2011-11-10 20:30:28 +01003561 promisc_bits |= MCTL_BCNS_PROMISC;
3562
Alwin Beukersbe667662011-11-22 17:21:43 -08003563 if (filter_flags & FIF_FCSFAIL)
3564 promisc_bits |= MCTL_KEEPBADFCS;
3565
3566 if (filter_flags & (FIF_CONTROL | FIF_PSPOLL))
3567 promisc_bits |= MCTL_KEEPCONTROL;
Alwin Beukers02a588a2011-11-10 20:30:28 +01003568
3569 brcms_b_mctrl(wlc->hw,
Alwin Beukersbe667662011-11-22 17:21:43 -08003570 MCTL_PROMISC | MCTL_BCNS_PROMISC |
3571 MCTL_KEEPCONTROL | MCTL_KEEPBADFCS,
3572 promisc_bits);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003573}
3574
Arend van Spriel5b435de2011-10-05 13:19:03 +02003575/*
3576 * ucode, hwmac update
3577 * Channel dependent updates for ucode and hw
3578 */
3579static void brcms_c_ucode_mac_upd(struct brcms_c_info *wlc)
3580{
3581 /* enable or disable any active IBSSs depending on whether or not
3582 * we are on the home channel
3583 */
3584 if (wlc->home_chanspec == wlc_phy_chanspec_get(wlc->band->pi)) {
3585 if (wlc->pub->associated) {
3586 /*
3587 * BMAC_NOTE: This is something that should be fixed
3588 * in ucode inits. I think that the ucode inits set
3589 * up the bcn templates and shm values with a bogus
3590 * beacon. This should not be done in the inits. If
3591 * ucode needs to set up a beacon for testing, the
3592 * test routines should write it down, not expect the
3593 * inits to populate a bogus beacon.
3594 */
3595 if (BRCMS_PHY_11N_CAP(wlc->band))
3596 brcms_b_write_shm(wlc->hw,
3597 M_BCN_TXTSF_OFFSET, 0);
3598 }
3599 } else {
3600 /* disable an active IBSS if we are not on the home channel */
3601 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02003602}
3603
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003604static void brcms_c_write_rate_shm(struct brcms_c_info *wlc, u8 rate,
3605 u8 basic_rate)
3606{
3607 u8 phy_rate, index;
3608 u8 basic_phy_rate, basic_index;
3609 u16 dir_table, basic_table;
3610 u16 basic_ptr;
3611
3612 /* Shared memory address for the table we are reading */
3613 dir_table = is_ofdm_rate(basic_rate) ? M_RT_DIRMAP_A : M_RT_DIRMAP_B;
3614
3615 /* Shared memory address for the table we are writing */
3616 basic_table = is_ofdm_rate(rate) ? M_RT_BBRSMAP_A : M_RT_BBRSMAP_B;
3617
3618 /*
3619 * for a given rate, the LS-nibble of the PLCP SIGNAL field is
3620 * the index into the rate table.
3621 */
3622 phy_rate = rate_info[rate] & BRCMS_RATE_MASK;
3623 basic_phy_rate = rate_info[basic_rate] & BRCMS_RATE_MASK;
3624 index = phy_rate & 0xf;
3625 basic_index = basic_phy_rate & 0xf;
3626
3627 /* Find the SHM pointer to the ACK rate entry by looking in the
3628 * Direct-map Table
3629 */
3630 basic_ptr = brcms_b_read_shm(wlc->hw, (dir_table + basic_index * 2));
3631
3632 /* Update the SHM BSS-basic-rate-set mapping table with the pointer
3633 * to the correct basic rate for the given incoming rate
3634 */
3635 brcms_b_write_shm(wlc->hw, (basic_table + index * 2), basic_ptr);
3636}
3637
3638static const struct brcms_c_rateset *
3639brcms_c_rateset_get_hwrs(struct brcms_c_info *wlc)
3640{
3641 const struct brcms_c_rateset *rs_dflt;
3642
3643 if (BRCMS_PHY_11N_CAP(wlc->band)) {
3644 if (wlc->band->bandtype == BRCM_BAND_5G)
3645 rs_dflt = &ofdm_mimo_rates;
3646 else
3647 rs_dflt = &cck_ofdm_mimo_rates;
3648 } else if (wlc->band->gmode)
3649 rs_dflt = &cck_ofdm_rates;
3650 else
3651 rs_dflt = &cck_rates;
3652
3653 return rs_dflt;
3654}
3655
3656static void brcms_c_set_ratetable(struct brcms_c_info *wlc)
3657{
3658 const struct brcms_c_rateset *rs_dflt;
3659 struct brcms_c_rateset rs;
3660 u8 rate, basic_rate;
3661 uint i;
3662
3663 rs_dflt = brcms_c_rateset_get_hwrs(wlc);
3664
3665 brcms_c_rateset_copy(rs_dflt, &rs);
3666 brcms_c_rateset_mcs_upd(&rs, wlc->stf->txstreams);
3667
3668 /* walk the phy rate table and update SHM basic rate lookup table */
3669 for (i = 0; i < rs.count; i++) {
3670 rate = rs.rates[i] & BRCMS_RATE_MASK;
3671
3672 /* for a given rate brcms_basic_rate returns the rate at
3673 * which a response ACK/CTS should be sent.
3674 */
3675 basic_rate = brcms_basic_rate(wlc, rate);
3676 if (basic_rate == 0)
3677 /* This should only happen if we are using a
3678 * restricted rateset.
3679 */
3680 basic_rate = rs.rates[0] & BRCMS_RATE_MASK;
3681
3682 brcms_c_write_rate_shm(wlc, rate, basic_rate);
3683 }
3684}
3685
Arend van Spriel5b435de2011-10-05 13:19:03 +02003686/* band-specific init */
3687static void brcms_c_bsinit(struct brcms_c_info *wlc)
3688{
Seth Forsheeb353dda2012-11-15 08:08:03 -06003689 brcms_dbg_info(wlc->hw->d11core, "wl%d: bandunit %d\n",
3690 wlc->pub->unit, wlc->band->bandunit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003691
3692 /* write ucode ACK/CTS rate table */
3693 brcms_c_set_ratetable(wlc);
3694
3695 /* update some band specific mac configuration */
3696 brcms_c_ucode_mac_upd(wlc);
3697
3698 /* init antenna selection */
3699 brcms_c_antsel_init(wlc->asi);
3700
3701}
3702
3703/* formula: IDLE_BUSY_RATIO_X_16 = (100-duty_cycle)/duty_cycle*16 */
3704static int
3705brcms_c_duty_cycle_set(struct brcms_c_info *wlc, int duty_cycle, bool isOFDM,
3706 bool writeToShm)
3707{
3708 int idle_busy_ratio_x_16 = 0;
3709 uint offset =
3710 isOFDM ? M_TX_IDLE_BUSY_RATIO_X_16_OFDM :
3711 M_TX_IDLE_BUSY_RATIO_X_16_CCK;
3712 if (duty_cycle > 100 || duty_cycle < 0) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06003713 brcms_err(wlc->hw->d11core,
3714 "wl%d: duty cycle value off limit\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02003715 wlc->pub->unit);
3716 return -EINVAL;
3717 }
3718 if (duty_cycle)
3719 idle_busy_ratio_x_16 = (100 - duty_cycle) * 16 / duty_cycle;
3720 /* Only write to shared memory when wl is up */
3721 if (writeToShm)
3722 brcms_b_write_shm(wlc->hw, offset, (u16) idle_busy_ratio_x_16);
3723
3724 if (isOFDM)
3725 wlc->tx_duty_cycle_ofdm = (u16) duty_cycle;
3726 else
3727 wlc->tx_duty_cycle_cck = (u16) duty_cycle;
3728
3729 return 0;
3730}
3731
Arend van Spriel5b435de2011-10-05 13:19:03 +02003732/* push sw hps and wake state through hardware */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003733static void brcms_c_set_ps_ctrl(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003734{
3735 u32 v1, v2;
3736 bool hps;
3737 bool awake_before;
3738
3739 hps = brcms_c_ps_allowed(wlc);
3740
Seth Forshee913911f2012-11-15 08:08:04 -06003741 brcms_dbg_mac80211(wlc->hw->d11core, "wl%d: hps %d\n", wlc->pub->unit,
3742 hps);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003743
Arend van Spriel16d28122011-12-08 15:06:51 -08003744 v1 = bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol));
Arend van Spriel5b435de2011-10-05 13:19:03 +02003745 v2 = MCTL_WAKE;
3746 if (hps)
3747 v2 |= MCTL_HPS;
3748
3749 brcms_b_mctrl(wlc->hw, MCTL_WAKE | MCTL_HPS, v2);
3750
3751 awake_before = ((v1 & MCTL_WAKE) || ((v1 & MCTL_HPS) == 0));
3752
3753 if (!awake_before)
3754 brcms_b_wait_for_wake(wlc->hw);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003755}
3756
3757/*
3758 * Write this BSS config's MAC address to core.
3759 * Updates RXE match engine.
3760 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003761static int brcms_c_set_mac(struct brcms_bss_cfg *bsscfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003762{
3763 int err = 0;
3764 struct brcms_c_info *wlc = bsscfg->wlc;
3765
3766 /* enter the MAC addr into the RXE match registers */
3767 brcms_c_set_addrmatch(wlc, RCM_MAC_OFFSET, bsscfg->cur_etheraddr);
3768
3769 brcms_c_ampdu_macaddr_upd(wlc);
3770
3771 return err;
3772}
3773
3774/* Write the BSS config's BSSID address to core (set_bssid in d11procs.tcl).
3775 * Updates RXE match engine.
3776 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003777static void brcms_c_set_bssid(struct brcms_bss_cfg *bsscfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003778{
3779 /* we need to update BSSID in RXE match registers */
3780 brcms_c_set_addrmatch(bsscfg->wlc, RCM_BSSID_OFFSET, bsscfg->BSSID);
3781}
3782
3783static void brcms_b_set_shortslot(struct brcms_hardware *wlc_hw, bool shortslot)
3784{
3785 wlc_hw->shortslot = shortslot;
3786
3787 if (wlc_hw->band->bandtype == BRCM_BAND_2G && wlc_hw->up) {
3788 brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
3789 brcms_b_update_slot_timing(wlc_hw, shortslot);
3790 brcms_c_enable_mac(wlc_hw->wlc);
3791 }
3792}
3793
3794/*
3795 * Suspend the the MAC and update the slot timing
3796 * for standard 11b/g (20us slots) or shortslot 11g (9us slots).
3797 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003798static void brcms_c_switch_shortslot(struct brcms_c_info *wlc, bool shortslot)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003799{
3800 /* use the override if it is set */
3801 if (wlc->shortslot_override != BRCMS_SHORTSLOT_AUTO)
3802 shortslot = (wlc->shortslot_override == BRCMS_SHORTSLOT_ON);
3803
3804 if (wlc->shortslot == shortslot)
3805 return;
3806
3807 wlc->shortslot = shortslot;
3808
3809 brcms_b_set_shortslot(wlc->hw, shortslot);
3810}
3811
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003812static void brcms_c_set_home_chanspec(struct brcms_c_info *wlc, u16 chanspec)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003813{
3814 if (wlc->home_chanspec != chanspec) {
3815 wlc->home_chanspec = chanspec;
3816
Hauke Mehrtens6da3b6c2013-03-24 01:45:52 +01003817 if (wlc->pub->associated)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003818 wlc->bsscfg->current_bss->chanspec = chanspec;
3819 }
3820}
3821
3822void
3823brcms_b_set_chanspec(struct brcms_hardware *wlc_hw, u16 chanspec,
Roland Vossenc6c44892011-10-21 16:16:26 +02003824 bool mute_tx, struct txpwr_limits *txpwr)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003825{
3826 uint bandunit;
3827
Seth Forshee913911f2012-11-15 08:08:04 -06003828 brcms_dbg_mac80211(wlc_hw->d11core, "wl%d: 0x%x\n", wlc_hw->unit,
3829 chanspec);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003830
3831 wlc_hw->chanspec = chanspec;
3832
3833 /* Switch bands if necessary */
3834 if (wlc_hw->_nbands > 1) {
3835 bandunit = chspec_bandunit(chanspec);
3836 if (wlc_hw->band->bandunit != bandunit) {
3837 /* brcms_b_setband disables other bandunit,
3838 * use light band switch if not up yet
3839 */
3840 if (wlc_hw->up) {
3841 wlc_phy_chanspec_radio_set(wlc_hw->
3842 bandstate[bandunit]->
3843 pi, chanspec);
3844 brcms_b_setband(wlc_hw, bandunit, chanspec);
3845 } else {
3846 brcms_c_setxband(wlc_hw, bandunit);
3847 }
3848 }
3849 }
3850
Roland Vossenc6c44892011-10-21 16:16:26 +02003851 wlc_phy_initcal_enable(wlc_hw->band->pi, !mute_tx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003852
3853 if (!wlc_hw->up) {
3854 if (wlc_hw->clk)
3855 wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr,
3856 chanspec);
3857 wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec);
3858 } else {
3859 wlc_phy_chanspec_set(wlc_hw->band->pi, chanspec);
3860 wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr, chanspec);
3861
3862 /* Update muting of the channel */
Roland Vossenc6c44892011-10-21 16:16:26 +02003863 brcms_b_mute(wlc_hw, mute_tx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02003864 }
3865}
3866
3867/* switch to and initialize new band */
3868static void brcms_c_setband(struct brcms_c_info *wlc,
3869 uint bandunit)
3870{
3871 wlc->band = wlc->bandstate[bandunit];
3872
3873 if (!wlc->pub->up)
3874 return;
3875
3876 /* wait for at least one beacon before entering sleeping state */
3877 brcms_c_set_ps_ctrl(wlc);
3878
3879 /* band-specific initializations */
3880 brcms_c_bsinit(wlc);
3881}
3882
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02003883static void brcms_c_set_chanspec(struct brcms_c_info *wlc, u16 chanspec)
Arend van Spriel5b435de2011-10-05 13:19:03 +02003884{
3885 uint bandunit;
3886 bool switchband = false;
3887 u16 old_chanspec = wlc->chanspec;
3888
3889 if (!brcms_c_valid_chanspec_db(wlc->cmi, chanspec)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06003890 brcms_err(wlc->hw->d11core, "wl%d: %s: Bad channel %d\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02003891 wlc->pub->unit, __func__, CHSPEC_CHANNEL(chanspec));
3892 return;
3893 }
3894
3895 /* Switch bands if necessary */
3896 if (wlc->pub->_nbands > 1) {
3897 bandunit = chspec_bandunit(chanspec);
3898 if (wlc->band->bandunit != bandunit || wlc->bandinit_pending) {
3899 switchband = true;
3900 if (wlc->bandlocked) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06003901 brcms_err(wlc->hw->d11core,
3902 "wl%d: %s: chspec %d band is locked!\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02003903 wlc->pub->unit, __func__,
3904 CHSPEC_CHANNEL(chanspec));
3905 return;
3906 }
3907 /*
3908 * should the setband call come after the
3909 * brcms_b_chanspec() ? if the setband updates
3910 * (brcms_c_bsinit) use low level calls to inspect and
3911 * set state, the state inspected may be from the wrong
3912 * band, or the following brcms_b_set_chanspec() may
3913 * undo the work.
3914 */
3915 brcms_c_setband(wlc, bandunit);
3916 }
3917 }
3918
3919 /* sync up phy/radio chanspec */
3920 brcms_c_set_phy_chanspec(wlc, chanspec);
3921
3922 /* init antenna selection */
3923 if (brcms_chspec_bw(old_chanspec) != brcms_chspec_bw(chanspec)) {
3924 brcms_c_antsel_init(wlc->asi);
3925
3926 /* Fix the hardware rateset based on bw.
3927 * Mainly add MCS32 for 40Mhz, remove MCS 32 for 20Mhz
3928 */
3929 brcms_c_rateset_bw_mcs_filter(&wlc->band->hw_rateset,
3930 wlc->band->mimo_cap_40 ? brcms_chspec_bw(chanspec) : 0);
3931 }
3932
3933 /* update some mac configuration since chanspec changed */
3934 brcms_c_ucode_mac_upd(wlc);
3935}
3936
Arend van Spriel5b435de2011-10-05 13:19:03 +02003937/*
3938 * This function changes the phytxctl for beacon based on current
3939 * beacon ratespec AND txant setting as per this table:
3940 * ratespec CCK ant = wlc->stf->txant
3941 * OFDM ant = 3
3942 */
3943void brcms_c_beacon_phytxctl_txant_upd(struct brcms_c_info *wlc,
3944 u32 bcn_rspec)
3945{
3946 u16 phyctl;
3947 u16 phytxant = wlc->stf->phytxant;
3948 u16 mask = PHY_TXC_ANT_MASK;
3949
3950 /* for non-siso rates or default setting, use the available chains */
3951 if (BRCMS_PHY_11N_CAP(wlc->band))
3952 phytxant = brcms_c_stf_phytxchain_sel(wlc, bcn_rspec);
3953
3954 phyctl = brcms_b_read_shm(wlc->hw, M_BCN_PCTLWD);
3955 phyctl = (phyctl & ~mask) | phytxant;
3956 brcms_b_write_shm(wlc->hw, M_BCN_PCTLWD, phyctl);
3957}
3958
3959/*
3960 * centralized protection config change function to simplify debugging, no
3961 * consistency checking this should be called only on changes to avoid overhead
3962 * in periodic function
3963 */
3964void brcms_c_protection_upd(struct brcms_c_info *wlc, uint idx, int val)
3965{
Seth Forsheeb353dda2012-11-15 08:08:03 -06003966 /*
3967 * Cannot use brcms_dbg_* here because this function is called
3968 * before wlc is sufficiently initialized.
3969 */
Arend van Spriel5b435de2011-10-05 13:19:03 +02003970 BCMMSG(wlc->wiphy, "idx %d, val %d\n", idx, val);
3971
3972 switch (idx) {
3973 case BRCMS_PROT_G_SPEC:
3974 wlc->protection->_g = (bool) val;
3975 break;
3976 case BRCMS_PROT_G_OVR:
3977 wlc->protection->g_override = (s8) val;
3978 break;
3979 case BRCMS_PROT_G_USER:
3980 wlc->protection->gmode_user = (u8) val;
3981 break;
3982 case BRCMS_PROT_OVERLAP:
3983 wlc->protection->overlap = (s8) val;
3984 break;
3985 case BRCMS_PROT_N_USER:
3986 wlc->protection->nmode_user = (s8) val;
3987 break;
3988 case BRCMS_PROT_N_CFG:
3989 wlc->protection->n_cfg = (s8) val;
3990 break;
3991 case BRCMS_PROT_N_CFG_OVR:
3992 wlc->protection->n_cfg_override = (s8) val;
3993 break;
3994 case BRCMS_PROT_N_NONGF:
3995 wlc->protection->nongf = (bool) val;
3996 break;
3997 case BRCMS_PROT_N_NONGF_OVR:
3998 wlc->protection->nongf_override = (s8) val;
3999 break;
4000 case BRCMS_PROT_N_PAM_OVR:
4001 wlc->protection->n_pam_override = (s8) val;
4002 break;
4003 case BRCMS_PROT_N_OBSS:
4004 wlc->protection->n_obss = (bool) val;
4005 break;
4006
4007 default:
4008 break;
4009 }
4010
4011}
4012
4013static void brcms_c_ht_update_sgi_rx(struct brcms_c_info *wlc, int val)
4014{
4015 if (wlc->pub->up) {
4016 brcms_c_update_beacon(wlc);
4017 brcms_c_update_probe_resp(wlc, true);
4018 }
4019}
4020
4021static void brcms_c_ht_update_ldpc(struct brcms_c_info *wlc, s8 val)
4022{
4023 wlc->stf->ldpc = val;
4024
4025 if (wlc->pub->up) {
4026 brcms_c_update_beacon(wlc);
4027 brcms_c_update_probe_resp(wlc, true);
4028 wlc_phy_ldpc_override_set(wlc->band->pi, (val ? true : false));
4029 }
4030}
4031
4032void brcms_c_wme_setparams(struct brcms_c_info *wlc, u16 aci,
4033 const struct ieee80211_tx_queue_params *params,
4034 bool suspend)
4035{
4036 int i;
4037 struct shm_acparams acp_shm;
4038 u16 *shm_entry;
4039
4040 /* Only apply params if the core is out of reset and has clocks */
4041 if (!wlc->clk) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06004042 brcms_err(wlc->hw->d11core, "wl%d: %s : no-clock\n",
4043 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004044 return;
4045 }
4046
Joe Perchesb56e6812013-02-13 17:33:21 -08004047 memset(&acp_shm, 0, sizeof(struct shm_acparams));
Arend van Spriel5b435de2011-10-05 13:19:03 +02004048 /* fill in shm ac params struct */
4049 acp_shm.txop = params->txop;
4050 /* convert from units of 32us to us for ucode */
4051 wlc->edcf_txop[aci & 0x3] = acp_shm.txop =
4052 EDCF_TXOP2USEC(acp_shm.txop);
4053 acp_shm.aifs = (params->aifs & EDCF_AIFSN_MASK);
4054
Arend van Sprielb7eec422011-11-10 20:30:18 +01004055 if (aci == IEEE80211_AC_VI && acp_shm.txop == 0
Arend van Spriel5b435de2011-10-05 13:19:03 +02004056 && acp_shm.aifs < EDCF_AIFSN_MAX)
4057 acp_shm.aifs++;
4058
4059 if (acp_shm.aifs < EDCF_AIFSN_MIN
4060 || acp_shm.aifs > EDCF_AIFSN_MAX) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06004061 brcms_err(wlc->hw->d11core, "wl%d: edcf_setparams: bad "
Arend van Spriel5b435de2011-10-05 13:19:03 +02004062 "aifs %d\n", wlc->pub->unit, acp_shm.aifs);
4063 } else {
4064 acp_shm.cwmin = params->cw_min;
4065 acp_shm.cwmax = params->cw_max;
4066 acp_shm.cwcur = acp_shm.cwmin;
4067 acp_shm.bslots =
Arend van Spriel16d28122011-12-08 15:06:51 -08004068 bcma_read16(wlc->hw->d11core, D11REGOFFS(tsf_random)) &
4069 acp_shm.cwcur;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004070 acp_shm.reggap = acp_shm.bslots + acp_shm.aifs;
4071 /* Indicate the new params to the ucode */
4072 acp_shm.status = brcms_b_read_shm(wlc->hw, (M_EDCF_QINFO +
4073 wme_ac2fifo[aci] *
4074 M_EDCF_QLEN +
4075 M_EDCF_STATUS_OFF));
4076 acp_shm.status |= WME_STATUS_NEWAC;
4077
4078 /* Fill in shm acparam table */
4079 shm_entry = (u16 *) &acp_shm;
4080 for (i = 0; i < (int)sizeof(struct shm_acparams); i += 2)
4081 brcms_b_write_shm(wlc->hw,
4082 M_EDCF_QINFO +
4083 wme_ac2fifo[aci] * M_EDCF_QLEN + i,
4084 *shm_entry++);
4085 }
4086
4087 if (suspend) {
4088 brcms_c_suspend_mac_and_wait(wlc);
4089 brcms_c_enable_mac(wlc);
4090 }
4091}
4092
Arend van Spriel094b1992011-10-18 14:03:07 +02004093static void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004094{
4095 u16 aci;
4096 int i_ac;
4097 struct ieee80211_tx_queue_params txq_pars;
4098 static const struct edcf_acparam default_edcf_acparams[] = {
4099 {EDCF_AC_BE_ACI_STA, EDCF_AC_BE_ECW_STA, EDCF_AC_BE_TXOP_STA},
4100 {EDCF_AC_BK_ACI_STA, EDCF_AC_BK_ECW_STA, EDCF_AC_BK_TXOP_STA},
4101 {EDCF_AC_VI_ACI_STA, EDCF_AC_VI_ECW_STA, EDCF_AC_VI_TXOP_STA},
4102 {EDCF_AC_VO_ACI_STA, EDCF_AC_VO_ECW_STA, EDCF_AC_VO_TXOP_STA}
4103 }; /* ucode needs these parameters during its initialization */
4104 const struct edcf_acparam *edcf_acp = &default_edcf_acparams[0];
4105
Arend van Sprielb7eec422011-11-10 20:30:18 +01004106 for (i_ac = 0; i_ac < IEEE80211_NUM_ACS; i_ac++, edcf_acp++) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02004107 /* find out which ac this set of params applies to */
4108 aci = (edcf_acp->ACI & EDCF_ACI_MASK) >> EDCF_ACI_SHIFT;
4109
4110 /* fill in shm ac params struct */
4111 txq_pars.txop = edcf_acp->TXOP;
4112 txq_pars.aifs = edcf_acp->ACI;
4113
4114 /* CWmin = 2^(ECWmin) - 1 */
4115 txq_pars.cw_min = EDCF_ECW2CW(edcf_acp->ECW & EDCF_ECWMIN_MASK);
4116 /* CWmax = 2^(ECWmax) - 1 */
4117 txq_pars.cw_max = EDCF_ECW2CW((edcf_acp->ECW & EDCF_ECWMAX_MASK)
4118 >> EDCF_ECWMAX_SHIFT);
4119 brcms_c_wme_setparams(wlc, aci, &txq_pars, suspend);
4120 }
4121
4122 if (suspend) {
4123 brcms_c_suspend_mac_and_wait(wlc);
4124 brcms_c_enable_mac(wlc);
4125 }
4126}
4127
Arend van Spriel5b435de2011-10-05 13:19:03 +02004128static void brcms_c_radio_monitor_start(struct brcms_c_info *wlc)
4129{
4130 /* Don't start the timer if HWRADIO feature is disabled */
4131 if (wlc->radio_monitor)
4132 return;
4133
4134 wlc->radio_monitor = true;
4135 brcms_b_pllreq(wlc->hw, true, BRCMS_PLLREQ_RADIO_MON);
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004136 brcms_add_timer(wlc->radio_timer, TIMER_INTERVAL_RADIOCHK, true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004137}
4138
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02004139static bool brcms_c_radio_monitor_stop(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004140{
4141 if (!wlc->radio_monitor)
4142 return true;
4143
4144 wlc->radio_monitor = false;
4145 brcms_b_pllreq(wlc->hw, false, BRCMS_PLLREQ_RADIO_MON);
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004146 return brcms_del_timer(wlc->radio_timer);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004147}
4148
4149/* read hwdisable state and propagate to wlc flag */
4150static void brcms_c_radio_hwdisable_upd(struct brcms_c_info *wlc)
4151{
4152 if (wlc->pub->hw_off)
4153 return;
4154
4155 if (brcms_b_radio_read_hwdisabled(wlc->hw))
4156 mboolset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE);
4157 else
4158 mboolclr(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE);
4159}
4160
Arend van Spriel5b435de2011-10-05 13:19:03 +02004161/* update hwradio status and return it */
4162bool brcms_c_check_radio_disabled(struct brcms_c_info *wlc)
4163{
4164 brcms_c_radio_hwdisable_upd(wlc);
4165
4166 return mboolisset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE) ?
4167 true : false;
4168}
4169
4170/* periodical query hw radio button while driver is "down" */
4171static void brcms_c_radio_timer(void *arg)
4172{
4173 struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4174
4175 if (brcms_deviceremoved(wlc)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06004176 brcms_err(wlc->hw->d11core, "wl%d: %s: dead chip\n",
4177 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004178 brcms_down(wlc->wl);
4179 return;
4180 }
4181
Arend van Spriel5b435de2011-10-05 13:19:03 +02004182 brcms_c_radio_hwdisable_upd(wlc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004183}
4184
4185/* common low-level watchdog code */
Hauke Mehrtensa5fed0c2012-06-30 15:16:14 +02004186static void brcms_b_watchdog(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004187{
Arend van Spriel5b435de2011-10-05 13:19:03 +02004188 struct brcms_hardware *wlc_hw = wlc->hw;
4189
Arend van Spriel5b435de2011-10-05 13:19:03 +02004190 if (!wlc_hw->up)
4191 return;
4192
4193 /* increment second count */
4194 wlc_hw->now++;
4195
4196 /* Check for FIFO error interrupts */
4197 brcms_b_fifoerrors(wlc_hw);
4198
4199 /* make sure RX dma has buffers */
4200 dma_rxfill(wlc->hw->di[RX_FIFO]);
4201
4202 wlc_phy_watchdog(wlc_hw->band->pi);
4203}
4204
4205/* common watchdog code */
Hauke Mehrtensa5fed0c2012-06-30 15:16:14 +02004206static void brcms_c_watchdog(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004207{
Seth Forsheeb353dda2012-11-15 08:08:03 -06004208 brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004209
4210 if (!wlc->pub->up)
4211 return;
4212
4213 if (brcms_deviceremoved(wlc)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06004214 brcms_err(wlc->hw->d11core, "wl%d: %s: dead chip\n",
4215 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004216 brcms_down(wlc->wl);
4217 return;
4218 }
4219
4220 /* increment second count */
4221 wlc->pub->now++;
4222
Arend van Spriel5b435de2011-10-05 13:19:03 +02004223 brcms_c_radio_hwdisable_upd(wlc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004224 /* if radio is disable, driver may be down, quit here */
4225 if (wlc->pub->radio_disabled)
4226 return;
4227
4228 brcms_b_watchdog(wlc);
4229
4230 /*
4231 * occasionally sample mac stat counters to
4232 * detect 16-bit counter wrap
4233 */
4234 if ((wlc->pub->now % SW_TIMER_MAC_STAT_UPD) == 0)
4235 brcms_c_statsupd(wlc);
4236
4237 if (BRCMS_ISNPHY(wlc->band) &&
4238 ((wlc->pub->now - wlc->tempsense_lasttime) >=
4239 BRCMS_TEMPSENSE_PERIOD)) {
4240 wlc->tempsense_lasttime = wlc->pub->now;
4241 brcms_c_tempsense_upd(wlc);
4242 }
4243}
4244
4245static void brcms_c_watchdog_by_timer(void *arg)
4246{
Hauke Mehrtensa5fed0c2012-06-30 15:16:14 +02004247 struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
4248
4249 brcms_c_watchdog(wlc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004250}
4251
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02004252static bool brcms_c_timers_init(struct brcms_c_info *wlc, int unit)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004253{
4254 wlc->wdtimer = brcms_init_timer(wlc->wl, brcms_c_watchdog_by_timer,
4255 wlc, "watchdog");
4256 if (!wlc->wdtimer) {
4257 wiphy_err(wlc->wiphy, "wl%d: wl_init_timer for wdtimer "
4258 "failed\n", unit);
4259 goto fail;
4260 }
4261
4262 wlc->radio_timer = brcms_init_timer(wlc->wl, brcms_c_radio_timer,
4263 wlc, "radio");
4264 if (!wlc->radio_timer) {
4265 wiphy_err(wlc->wiphy, "wl%d: wl_init_timer for radio_timer "
4266 "failed\n", unit);
4267 goto fail;
4268 }
4269
4270 return true;
4271
4272 fail:
4273 return false;
4274}
4275
4276/*
4277 * Initialize brcms_c_info default values ...
4278 * may get overrides later in this function
4279 */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02004280static void brcms_c_info_init(struct brcms_c_info *wlc, int unit)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004281{
4282 int i;
4283
4284 /* Save our copy of the chanspec */
4285 wlc->chanspec = ch20mhz_chspec(1);
4286
4287 /* various 802.11g modes */
4288 wlc->shortslot = false;
4289 wlc->shortslot_override = BRCMS_SHORTSLOT_AUTO;
4290
4291 brcms_c_protection_upd(wlc, BRCMS_PROT_G_OVR, BRCMS_PROTECTION_AUTO);
4292 brcms_c_protection_upd(wlc, BRCMS_PROT_G_SPEC, false);
4293
4294 brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG_OVR,
4295 BRCMS_PROTECTION_AUTO);
4296 brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG, BRCMS_N_PROTECTION_OFF);
4297 brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF_OVR,
4298 BRCMS_PROTECTION_AUTO);
4299 brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF, false);
4300 brcms_c_protection_upd(wlc, BRCMS_PROT_N_PAM_OVR, AUTO);
4301
4302 brcms_c_protection_upd(wlc, BRCMS_PROT_OVERLAP,
4303 BRCMS_PROTECTION_CTL_OVERLAP);
4304
4305 /* 802.11g draft 4.0 NonERP elt advertisement */
4306 wlc->include_legacy_erp = true;
4307
4308 wlc->stf->ant_rx_ovr = ANT_RX_DIV_DEF;
4309 wlc->stf->txant = ANT_TX_DEF;
4310
4311 wlc->prb_resp_timeout = BRCMS_PRB_RESP_TIMEOUT;
4312
4313 wlc->usr_fragthresh = DOT11_DEFAULT_FRAG_LEN;
4314 for (i = 0; i < NFIFO; i++)
4315 wlc->fragthresh[i] = DOT11_DEFAULT_FRAG_LEN;
4316 wlc->RTSThresh = DOT11_DEFAULT_RTS_LEN;
4317
4318 /* default rate fallback retry limits */
4319 wlc->SFBL = RETRY_SHORT_FB;
4320 wlc->LFBL = RETRY_LONG_FB;
4321
4322 /* default mac retry limits */
4323 wlc->SRL = RETRY_SHORT_DEF;
4324 wlc->LRL = RETRY_LONG_DEF;
4325
4326 /* WME QoS mode is Auto by default */
4327 wlc->pub->_ampdu = AMPDU_AGG_HOST;
4328 wlc->pub->bcmerror = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004329}
4330
4331static uint brcms_c_attach_module(struct brcms_c_info *wlc)
4332{
4333 uint err = 0;
4334 uint unit;
4335 unit = wlc->pub->unit;
4336
4337 wlc->asi = brcms_c_antsel_attach(wlc);
4338 if (wlc->asi == NULL) {
4339 wiphy_err(wlc->wiphy, "wl%d: attach: antsel_attach "
4340 "failed\n", unit);
4341 err = 44;
4342 goto fail;
4343 }
4344
4345 wlc->ampdu = brcms_c_ampdu_attach(wlc);
4346 if (wlc->ampdu == NULL) {
4347 wiphy_err(wlc->wiphy, "wl%d: attach: ampdu_attach "
4348 "failed\n", unit);
4349 err = 50;
4350 goto fail;
4351 }
4352
4353 if ((brcms_c_stf_attach(wlc) != 0)) {
4354 wiphy_err(wlc->wiphy, "wl%d: attach: stf_attach "
4355 "failed\n", unit);
4356 err = 68;
4357 goto fail;
4358 }
4359 fail:
4360 return err;
4361}
4362
4363struct brcms_pub *brcms_c_pub(struct brcms_c_info *wlc)
4364{
4365 return wlc->pub;
4366}
4367
4368/* low level attach
4369 * run backplane attach, init nvram
4370 * run phy attach
4371 * initialize software state for each core and band
4372 * put the whole chip in reset(driver down state), no clock
4373 */
Arend van Sprielb63337a2011-12-08 15:06:47 -08004374static int brcms_b_attach(struct brcms_c_info *wlc, struct bcma_device *core,
4375 uint unit, bool piomode)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004376{
4377 struct brcms_hardware *wlc_hw;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004378 uint err = 0;
4379 uint j;
4380 bool wme = false;
4381 struct shared_phy_params sha_params;
4382 struct wiphy *wiphy = wlc->wiphy;
Arend van Sprielb63337a2011-12-08 15:06:47 -08004383 struct pci_dev *pcidev = core->bus->host_pci;
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004384 struct ssb_sprom *sprom = &core->bus->sprom;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004385
Hauke Mehrtensa06f2102012-04-29 02:50:42 +02004386 if (core->bus->hosttype == BCMA_HOSTTYPE_PCI)
Seth Forsheeb353dda2012-11-15 08:08:03 -06004387 brcms_dbg_info(core, "wl%d: vendor 0x%x device 0x%x\n", unit,
4388 pcidev->vendor,
4389 pcidev->device);
Hauke Mehrtensa06f2102012-04-29 02:50:42 +02004390 else
Seth Forsheeb353dda2012-11-15 08:08:03 -06004391 brcms_dbg_info(core, "wl%d: vendor 0x%x device 0x%x\n", unit,
4392 core->bus->boardinfo.vendor,
4393 core->bus->boardinfo.type);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004394
4395 wme = true;
4396
4397 wlc_hw = wlc->hw;
4398 wlc_hw->wlc = wlc;
4399 wlc_hw->unit = unit;
4400 wlc_hw->band = wlc_hw->bandstate[0];
4401 wlc_hw->_piomode = piomode;
4402
4403 /* populate struct brcms_hardware with default values */
4404 brcms_b_info_init(wlc_hw);
4405
4406 /*
4407 * Do the hardware portion of the attach. Also initialize software
4408 * state that depends on the particular hardware we are running.
4409 */
Arend van Spriel28a53442011-12-08 15:06:49 -08004410 wlc_hw->sih = ai_attach(core->bus);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004411 if (wlc_hw->sih == NULL) {
4412 wiphy_err(wiphy, "wl%d: brcms_b_attach: si_attach failed\n",
4413 unit);
4414 err = 11;
4415 goto fail;
4416 }
4417
4418 /* verify again the device is supported */
Hauke Mehrtenscacaa642012-06-30 15:16:19 +02004419 if (!brcms_c_chipmatch(core)) {
4420 wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported device\n",
4421 unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004422 err = 12;
4423 goto fail;
4424 }
4425
Hauke Mehrtensa06f2102012-04-29 02:50:42 +02004426 if (core->bus->hosttype == BCMA_HOSTTYPE_PCI) {
4427 wlc_hw->vendorid = pcidev->vendor;
4428 wlc_hw->deviceid = pcidev->device;
4429 } else {
4430 wlc_hw->vendorid = core->bus->boardinfo.vendor;
4431 wlc_hw->deviceid = core->bus->boardinfo.type;
4432 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02004433
Arend van Spriel16d28122011-12-08 15:06:51 -08004434 wlc_hw->d11core = core;
4435 wlc_hw->corerev = core->id.rev;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004436
4437 /* validate chip, chiprev and corerev */
4438 if (!brcms_c_isgoodchip(wlc_hw)) {
4439 err = 13;
4440 goto fail;
4441 }
4442
4443 /* initialize power control registers */
4444 ai_clkctl_init(wlc_hw->sih);
4445
4446 /* request fastclock and force fastclock for the rest of attach
4447 * bring the d11 core out of reset.
4448 * For PMU chips, the first wlc_clkctl_clk is no-op since core-clk
4449 * is still false; But it will be called again inside wlc_corereset,
4450 * after d11 is out of reset.
4451 */
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02004452 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004453 brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
4454
4455 if (!brcms_b_validate_chip_access(wlc_hw)) {
4456 wiphy_err(wiphy, "wl%d: brcms_b_attach: validate_chip_access "
4457 "failed\n", unit);
4458 err = 14;
4459 goto fail;
4460 }
4461
4462 /* get the board rev, used just below */
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004463 j = sprom->board_rev;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004464 /* promote srom boardrev of 0xFF to 1 */
4465 if (j == BOARDREV_PROMOTABLE)
4466 j = BOARDREV_PROMOTED;
4467 wlc_hw->boardrev = (u16) j;
4468 if (!brcms_c_validboardtype(wlc_hw)) {
4469 wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported Broadcom "
Arend van Sprielb2ffec42011-12-08 15:06:45 -08004470 "board type (0x%x)" " or revision level (0x%x)\n",
4471 unit, ai_get_boardtype(wlc_hw->sih),
4472 wlc_hw->boardrev);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004473 err = 15;
4474 goto fail;
4475 }
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004476 wlc_hw->sromrev = sprom->revision;
4477 wlc_hw->boardflags = sprom->boardflags_lo + (sprom->boardflags_hi << 16);
4478 wlc_hw->boardflags2 = sprom->boardflags2_lo + (sprom->boardflags2_hi << 16);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004479
4480 if (wlc_hw->boardflags & BFL_NOPLLDOWN)
4481 brcms_b_pllreq(wlc_hw, true, BRCMS_PLLREQ_SHARED);
4482
4483 /* check device id(srom, nvram etc.) to set bands */
4484 if (wlc_hw->deviceid == BCM43224_D11N_ID ||
Hauke Mehrtens9dd4ea52012-12-07 17:10:03 +01004485 wlc_hw->deviceid == BCM43224_D11N_ID_VEN1 ||
4486 wlc_hw->deviceid == BCM43224_CHIP_ID)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004487 /* Dualband boards */
4488 wlc_hw->_nbands = 2;
4489 else
4490 wlc_hw->_nbands = 1;
4491
Hauke Mehrtens1ef1a572012-06-30 15:16:13 +02004492 if ((ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM43225))
Arend van Spriel5b435de2011-10-05 13:19:03 +02004493 wlc_hw->_nbands = 1;
4494
4495 /* BMAC_NOTE: remove init of pub values when brcms_c_attach()
4496 * unconditionally does the init of these values
4497 */
4498 wlc->vendorid = wlc_hw->vendorid;
4499 wlc->deviceid = wlc_hw->deviceid;
4500 wlc->pub->sih = wlc_hw->sih;
4501 wlc->pub->corerev = wlc_hw->corerev;
4502 wlc->pub->sromrev = wlc_hw->sromrev;
4503 wlc->pub->boardrev = wlc_hw->boardrev;
4504 wlc->pub->boardflags = wlc_hw->boardflags;
4505 wlc->pub->boardflags2 = wlc_hw->boardflags2;
4506 wlc->pub->_nbands = wlc_hw->_nbands;
4507
4508 wlc_hw->physhim = wlc_phy_shim_attach(wlc_hw, wlc->wl, wlc);
4509
4510 if (wlc_hw->physhim == NULL) {
4511 wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_shim_attach "
4512 "failed\n", unit);
4513 err = 25;
4514 goto fail;
4515 }
4516
4517 /* pass all the parameters to wlc_phy_shared_attach in one struct */
4518 sha_params.sih = wlc_hw->sih;
4519 sha_params.physhim = wlc_hw->physhim;
4520 sha_params.unit = unit;
4521 sha_params.corerev = wlc_hw->corerev;
4522 sha_params.vid = wlc_hw->vendorid;
4523 sha_params.did = wlc_hw->deviceid;
Arend van Sprielb2ffec42011-12-08 15:06:45 -08004524 sha_params.chip = ai_get_chip_id(wlc_hw->sih);
4525 sha_params.chiprev = ai_get_chiprev(wlc_hw->sih);
4526 sha_params.chippkg = ai_get_chippkg(wlc_hw->sih);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004527 sha_params.sromrev = wlc_hw->sromrev;
Arend van Sprielb2ffec42011-12-08 15:06:45 -08004528 sha_params.boardtype = ai_get_boardtype(wlc_hw->sih);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004529 sha_params.boardrev = wlc_hw->boardrev;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004530 sha_params.boardflags = wlc_hw->boardflags;
4531 sha_params.boardflags2 = wlc_hw->boardflags2;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004532
4533 /* alloc and save pointer to shared phy state area */
4534 wlc_hw->phy_sh = wlc_phy_shared_attach(&sha_params);
4535 if (!wlc_hw->phy_sh) {
4536 err = 16;
4537 goto fail;
4538 }
4539
4540 /* initialize software state for each core and band */
4541 for (j = 0; j < wlc_hw->_nbands; j++) {
4542 /*
4543 * band0 is always 2.4Ghz
4544 * band1, if present, is 5Ghz
4545 */
4546
4547 brcms_c_setxband(wlc_hw, j);
4548
4549 wlc_hw->band->bandunit = j;
4550 wlc_hw->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G;
4551 wlc->band->bandunit = j;
4552 wlc->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G;
Arend van Spriel3b758a62011-12-12 15:15:09 -08004553 wlc->core->coreidx = core->core_index;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004554
Arend van Spriel16d28122011-12-08 15:06:51 -08004555 wlc_hw->machwcap = bcma_read32(core, D11REGOFFS(machwcap));
Arend van Spriel5b435de2011-10-05 13:19:03 +02004556 wlc_hw->machwcap_backup = wlc_hw->machwcap;
4557
4558 /* init tx fifo size */
Hauke Mehrtens093cd332012-07-02 20:15:51 +02004559 WARN_ON((wlc_hw->corerev - XMTFIFOTBL_STARTREV) < 0 ||
4560 (wlc_hw->corerev - XMTFIFOTBL_STARTREV) >
4561 ARRAY_SIZE(xmtfifo_sz));
Arend van Spriel5b435de2011-10-05 13:19:03 +02004562 wlc_hw->xmtfifo_sz =
4563 xmtfifo_sz[(wlc_hw->corerev - XMTFIFOTBL_STARTREV)];
Hauke Mehrtens093cd332012-07-02 20:15:51 +02004564 WARN_ON(!wlc_hw->xmtfifo_sz[0]);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004565
4566 /* Get a phy for this band */
4567 wlc_hw->band->pi =
Arend van Spriel4b006b12011-12-08 15:06:54 -08004568 wlc_phy_attach(wlc_hw->phy_sh, core,
Arend van Spriel5b435de2011-10-05 13:19:03 +02004569 wlc_hw->band->bandtype,
4570 wlc->wiphy);
4571 if (wlc_hw->band->pi == NULL) {
4572 wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_"
4573 "attach failed\n", unit);
4574 err = 17;
4575 goto fail;
4576 }
4577
4578 wlc_phy_machwcap_set(wlc_hw->band->pi, wlc_hw->machwcap);
4579
4580 wlc_phy_get_phyversion(wlc_hw->band->pi, &wlc_hw->band->phytype,
4581 &wlc_hw->band->phyrev,
4582 &wlc_hw->band->radioid,
4583 &wlc_hw->band->radiorev);
4584 wlc_hw->band->abgphy_encore =
4585 wlc_phy_get_encore(wlc_hw->band->pi);
4586 wlc->band->abgphy_encore = wlc_phy_get_encore(wlc_hw->band->pi);
4587 wlc_hw->band->core_flags =
4588 wlc_phy_get_coreflags(wlc_hw->band->pi);
4589
4590 /* verify good phy_type & supported phy revision */
4591 if (BRCMS_ISNPHY(wlc_hw->band)) {
4592 if (NCONF_HAS(wlc_hw->band->phyrev))
4593 goto good_phy;
4594 else
4595 goto bad_phy;
4596 } else if (BRCMS_ISLCNPHY(wlc_hw->band)) {
4597 if (LCNCONF_HAS(wlc_hw->band->phyrev))
4598 goto good_phy;
4599 else
4600 goto bad_phy;
4601 } else {
4602 bad_phy:
4603 wiphy_err(wiphy, "wl%d: brcms_b_attach: unsupported "
4604 "phy type/rev (%d/%d)\n", unit,
4605 wlc_hw->band->phytype, wlc_hw->band->phyrev);
4606 err = 18;
4607 goto fail;
4608 }
4609
4610 good_phy:
4611 /*
4612 * BMAC_NOTE: wlc->band->pi should not be set below and should
4613 * be done in the high level attach. However we can not make
4614 * that change until all low level access is changed to
4615 * wlc_hw->band->pi. Instead do the wlc->band->pi init below,
4616 * keeping wlc_hw->band->pi as well for incremental update of
4617 * low level fns, and cut over low only init when all fns
4618 * updated.
4619 */
4620 wlc->band->pi = wlc_hw->band->pi;
4621 wlc->band->phytype = wlc_hw->band->phytype;
4622 wlc->band->phyrev = wlc_hw->band->phyrev;
4623 wlc->band->radioid = wlc_hw->band->radioid;
4624 wlc->band->radiorev = wlc_hw->band->radiorev;
4625
4626 /* default contention windows size limits */
4627 wlc_hw->band->CWmin = APHY_CWMIN;
4628 wlc_hw->band->CWmax = PHY_CWMAX;
4629
4630 if (!brcms_b_attach_dmapio(wlc, j, wme)) {
4631 err = 19;
4632 goto fail;
4633 }
4634 }
4635
4636 /* disable core to match driver "down" state */
4637 brcms_c_coredisable(wlc_hw);
4638
4639 /* Match driver "down" state */
4640 ai_pci_down(wlc_hw->sih);
4641
Arend van Spriel5b435de2011-10-05 13:19:03 +02004642 /* turn off pll and xtal to match driver "down" state */
4643 brcms_b_xtal(wlc_hw, OFF);
4644
4645 /* *******************************************************************
4646 * The hardware is in the DOWN state at this point. D11 core
4647 * or cores are in reset with clocks off, and the board PLLs
4648 * are off if possible.
4649 *
4650 * Beyond this point, wlc->sbclk == false and chip registers
4651 * should not be touched.
4652 *********************************************************************
4653 */
4654
4655 /* init etheraddr state variables */
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004656 brcms_c_get_macaddr(wlc_hw, wlc_hw->etheraddr);
4657
4658 if (is_broadcast_ether_addr(wlc_hw->etheraddr) ||
Arend van Spriel5b435de2011-10-05 13:19:03 +02004659 is_zero_ether_addr(wlc_hw->etheraddr)) {
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004660 wiphy_err(wiphy, "wl%d: brcms_b_attach: bad macaddr\n",
4661 unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004662 err = 22;
4663 goto fail;
4664 }
4665
Seth Forsheeb353dda2012-11-15 08:08:03 -06004666 brcms_dbg_info(wlc_hw->d11core, "deviceid 0x%x nbands %d board 0x%x\n",
4667 wlc_hw->deviceid, wlc_hw->_nbands,
4668 ai_get_boardtype(wlc_hw->sih));
Arend van Spriel5b435de2011-10-05 13:19:03 +02004669
4670 return err;
4671
4672 fail:
4673 wiphy_err(wiphy, "wl%d: brcms_b_attach: failed with err %d\n", unit,
4674 err);
4675 return err;
4676}
4677
4678static void brcms_c_attach_antgain_init(struct brcms_c_info *wlc)
4679{
4680 uint unit;
4681 unit = wlc->pub->unit;
4682
4683 if ((wlc->band->antgain == -1) && (wlc->pub->sromrev == 1)) {
4684 /* default antenna gain for srom rev 1 is 2 dBm (8 qdbm) */
4685 wlc->band->antgain = 8;
4686 } else if (wlc->band->antgain == -1) {
4687 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid antennas available in"
4688 " srom, using 2dB\n", unit, __func__);
4689 wlc->band->antgain = 8;
4690 } else {
4691 s8 gain, fract;
4692 /* Older sroms specified gain in whole dbm only. In order
4693 * be able to specify qdbm granularity and remain backward
4694 * compatible the whole dbms are now encoded in only
4695 * low 6 bits and remaining qdbms are encoded in the hi 2 bits.
4696 * 6 bit signed number ranges from -32 - 31.
4697 *
4698 * Examples:
4699 * 0x1 = 1 db,
4700 * 0xc1 = 1.75 db (1 + 3 quarters),
4701 * 0x3f = -1 (-1 + 0 quarters),
4702 * 0x7f = -.75 (-1 + 1 quarters) = -3 qdbm.
4703 * 0xbf = -.50 (-1 + 2 quarters) = -2 qdbm.
4704 */
4705 gain = wlc->band->antgain & 0x3f;
4706 gain <<= 2; /* Sign extend */
4707 gain >>= 2;
4708 fract = (wlc->band->antgain & 0xc0) >> 6;
4709 wlc->band->antgain = 4 * gain + fract;
4710 }
4711}
4712
4713static bool brcms_c_attach_stf_ant_init(struct brcms_c_info *wlc)
4714{
4715 int aa;
4716 uint unit;
4717 int bandtype;
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004718 struct ssb_sprom *sprom = &wlc->hw->d11core->bus->sprom;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004719
4720 unit = wlc->pub->unit;
4721 bandtype = wlc->band->bandtype;
4722
4723 /* get antennas available */
4724 if (bandtype == BRCM_BAND_5G)
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004725 aa = sprom->ant_available_a;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004726 else
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004727 aa = sprom->ant_available_bg;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004728
4729 if ((aa < 1) || (aa > 15)) {
4730 wiphy_err(wlc->wiphy, "wl%d: %s: Invalid antennas available in"
4731 " srom (0x%x), using 3\n", unit, __func__, aa);
4732 aa = 3;
4733 }
4734
4735 /* reset the defaults if we have a single antenna */
4736 if (aa == 1) {
4737 wlc->stf->ant_rx_ovr = ANT_RX_DIV_FORCE_0;
4738 wlc->stf->txant = ANT_TX_FORCE_0;
4739 } else if (aa == 2) {
4740 wlc->stf->ant_rx_ovr = ANT_RX_DIV_FORCE_1;
4741 wlc->stf->txant = ANT_TX_FORCE_1;
4742 } else {
4743 }
4744
4745 /* Compute Antenna Gain */
4746 if (bandtype == BRCM_BAND_5G)
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004747 wlc->band->antgain = sprom->antenna_gain.a1;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004748 else
Hauke Mehrtens898d3c32012-04-29 02:50:25 +02004749 wlc->band->antgain = sprom->antenna_gain.a0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004750
4751 brcms_c_attach_antgain_init(wlc);
4752
4753 return true;
4754}
4755
4756static void brcms_c_bss_default_init(struct brcms_c_info *wlc)
4757{
4758 u16 chanspec;
4759 struct brcms_band *band;
4760 struct brcms_bss_info *bi = wlc->default_bss;
4761
4762 /* init default and target BSS with some sane initial values */
Joe Perchesb56e6812013-02-13 17:33:21 -08004763 memset(bi, 0, sizeof(*bi));
Arend van Spriel5b435de2011-10-05 13:19:03 +02004764 bi->beacon_period = BEACON_INTERVAL_DEFAULT;
4765
4766 /* fill the default channel as the first valid channel
4767 * starting from the 2G channels
4768 */
4769 chanspec = ch20mhz_chspec(1);
4770 wlc->home_chanspec = bi->chanspec = chanspec;
4771
4772 /* find the band of our default channel */
4773 band = wlc->band;
4774 if (wlc->pub->_nbands > 1 &&
4775 band->bandunit != chspec_bandunit(chanspec))
4776 band = wlc->bandstate[OTHERBANDUNIT(wlc)];
4777
4778 /* init bss rates to the band specific default rate set */
4779 brcms_c_rateset_default(&bi->rateset, NULL, band->phytype,
4780 band->bandtype, false, BRCMS_RATE_MASK_FULL,
4781 (bool) (wlc->pub->_n_enab & SUPPORT_11N),
4782 brcms_chspec_bw(chanspec), wlc->stf->txstreams);
4783
4784 if (wlc->pub->_n_enab & SUPPORT_11N)
4785 bi->flags |= BRCMS_BSS_HT;
4786}
4787
Arend van Spriel5b435de2011-10-05 13:19:03 +02004788static void brcms_c_update_mimo_band_bwcap(struct brcms_c_info *wlc, u8 bwcap)
4789{
4790 uint i;
4791 struct brcms_band *band;
4792
4793 for (i = 0; i < wlc->pub->_nbands; i++) {
4794 band = wlc->bandstate[i];
4795 if (band->bandtype == BRCM_BAND_5G) {
4796 if ((bwcap == BRCMS_N_BW_40ALL)
4797 || (bwcap == BRCMS_N_BW_20IN2G_40IN5G))
4798 band->mimo_cap_40 = true;
4799 else
4800 band->mimo_cap_40 = false;
4801 } else {
4802 if (bwcap == BRCMS_N_BW_40ALL)
4803 band->mimo_cap_40 = true;
4804 else
4805 band->mimo_cap_40 = false;
4806 }
4807 }
4808}
4809
Arend van Spriel5b435de2011-10-05 13:19:03 +02004810static void brcms_c_timers_deinit(struct brcms_c_info *wlc)
4811{
4812 /* free timer state */
4813 if (wlc->wdtimer) {
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004814 brcms_free_timer(wlc->wdtimer);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004815 wlc->wdtimer = NULL;
4816 }
4817 if (wlc->radio_timer) {
Roland Vossenbe69c4e2011-10-12 20:51:11 +02004818 brcms_free_timer(wlc->radio_timer);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004819 wlc->radio_timer = NULL;
4820 }
4821}
4822
4823static void brcms_c_detach_module(struct brcms_c_info *wlc)
4824{
4825 if (wlc->asi) {
4826 brcms_c_antsel_detach(wlc->asi);
4827 wlc->asi = NULL;
4828 }
4829
4830 if (wlc->ampdu) {
4831 brcms_c_ampdu_detach(wlc->ampdu);
4832 wlc->ampdu = NULL;
4833 }
4834
4835 brcms_c_stf_detach(wlc);
4836}
4837
4838/*
4839 * low level detach
4840 */
4841static int brcms_b_detach(struct brcms_c_info *wlc)
4842{
4843 uint i;
4844 struct brcms_hw_band *band;
4845 struct brcms_hardware *wlc_hw = wlc->hw;
4846 int callbacks;
4847
4848 callbacks = 0;
4849
Arend van Spriel5b435de2011-10-05 13:19:03 +02004850 brcms_b_detach_dmapio(wlc_hw);
4851
4852 band = wlc_hw->band;
4853 for (i = 0; i < wlc_hw->_nbands; i++) {
4854 if (band->pi) {
4855 /* Detach this band's phy */
4856 wlc_phy_detach(band->pi);
4857 band->pi = NULL;
4858 }
4859 band = wlc_hw->bandstate[OTHERBANDUNIT(wlc)];
4860 }
4861
4862 /* Free shared phy state */
4863 kfree(wlc_hw->phy_sh);
4864
4865 wlc_phy_shim_detach(wlc_hw->physhim);
4866
4867 if (wlc_hw->sih) {
4868 ai_detach(wlc_hw->sih);
4869 wlc_hw->sih = NULL;
4870 }
4871
4872 return callbacks;
4873
4874}
4875
4876/*
4877 * Return a count of the number of driver callbacks still pending.
4878 *
4879 * General policy is that brcms_c_detach can only dealloc/free software states.
4880 * It can NOT touch hardware registers since the d11core may be in reset and
4881 * clock may not be available.
4882 * One exception is sb register access, which is possible if crystal is turned
4883 * on after "down" state, driver should avoid software timer with the exception
4884 * of radio_monitor.
4885 */
4886uint brcms_c_detach(struct brcms_c_info *wlc)
4887{
4888 uint callbacks = 0;
4889
4890 if (wlc == NULL)
4891 return 0;
4892
Arend van Spriel5b435de2011-10-05 13:19:03 +02004893 callbacks += brcms_b_detach(wlc);
4894
4895 /* delete software timers */
4896 if (!brcms_c_radio_monitor_stop(wlc))
4897 callbacks++;
4898
4899 brcms_c_channel_mgr_detach(wlc->cmi);
4900
4901 brcms_c_timers_deinit(wlc);
4902
4903 brcms_c_detach_module(wlc);
4904
Arend van Spriel5b435de2011-10-05 13:19:03 +02004905 brcms_c_detach_mfree(wlc);
4906 return callbacks;
4907}
4908
4909/* update state that depends on the current value of "ap" */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02004910static void brcms_c_ap_upd(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02004911{
4912 /* STA-BSS; short capable */
4913 wlc->PLCPHdr_override = BRCMS_PLCP_SHORT;
Arend van Spriel5b435de2011-10-05 13:19:03 +02004914}
4915
Arend van Spriel5b435de2011-10-05 13:19:03 +02004916/* Initialize just the hardware when coming out of POR or S3/S5 system states */
4917static void brcms_b_hw_up(struct brcms_hardware *wlc_hw)
4918{
4919 if (wlc_hw->wlc->pub->hw_up)
4920 return;
4921
Seth Forsheeb353dda2012-11-15 08:08:03 -06004922 brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004923
4924 /*
4925 * Enable pll and xtal, initialize the power control registers,
4926 * and force fastclock for the remainder of brcms_c_up().
4927 */
4928 brcms_b_xtal(wlc_hw, ON);
4929 ai_clkctl_init(wlc_hw->sih);
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02004930 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004931
Arend van Spriel5b435de2011-10-05 13:19:03 +02004932 /*
Arend van Spriel3b758a62011-12-12 15:15:09 -08004933 * TODO: test suspend/resume
4934 *
Arend van Spriel5b435de2011-10-05 13:19:03 +02004935 * AI chip doesn't restore bar0win2 on
4936 * hibernation/resume, need sw fixup
4937 */
Arend van Spriel5b435de2011-10-05 13:19:03 +02004938
4939 /*
4940 * Inform phy that a POR reset has occurred so
4941 * it does a complete phy init
4942 */
4943 wlc_phy_por_inform(wlc_hw->band->pi);
4944
4945 wlc_hw->ucode_loaded = false;
4946 wlc_hw->wlc->pub->hw_up = true;
4947
4948 if ((wlc_hw->boardflags & BFL_FEM)
Hauke Mehrtens1ef1a572012-06-30 15:16:13 +02004949 && (ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM4313)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02004950 if (!
4951 (wlc_hw->boardrev >= 0x1250
4952 && (wlc_hw->boardflags & BFL_FEM_BT)))
4953 ai_epa_4313war(wlc_hw->sih);
4954 }
4955}
4956
4957static int brcms_b_up_prep(struct brcms_hardware *wlc_hw)
4958{
Seth Forsheeb353dda2012-11-15 08:08:03 -06004959 brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004960
4961 /*
4962 * Enable pll and xtal, initialize the power control registers,
4963 * and force fastclock for the remainder of brcms_c_up().
4964 */
4965 brcms_b_xtal(wlc_hw, ON);
4966 ai_clkctl_init(wlc_hw->sih);
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02004967 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004968
4969 /*
4970 * Configure pci/pcmcia here instead of in brcms_c_attach()
4971 * to allow mfg hotswap: down, hotswap (chip power cycle), up.
4972 */
Hauke Mehrtensdfae7142012-09-29 20:40:18 +02004973 bcma_core_pci_irq_ctl(&wlc_hw->d11core->bus->drv_pci[0], wlc_hw->d11core,
Hauke Mehrtensb30ee752012-04-29 02:50:32 +02004974 true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02004975
4976 /*
4977 * Need to read the hwradio status here to cover the case where the
4978 * system is loaded with the hw radio disabled. We do not want to
4979 * bring the driver up in this case.
4980 */
4981 if (brcms_b_radio_read_hwdisabled(wlc_hw)) {
4982 /* put SB PCI in down state again */
4983 ai_pci_down(wlc_hw->sih);
4984 brcms_b_xtal(wlc_hw, OFF);
4985 return -ENOMEDIUM;
4986 }
4987
4988 ai_pci_up(wlc_hw->sih);
4989
4990 /* reset the d11 core */
4991 brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS);
4992
4993 return 0;
4994}
4995
4996static int brcms_b_up_finish(struct brcms_hardware *wlc_hw)
4997{
Arend van Spriel5b435de2011-10-05 13:19:03 +02004998 wlc_hw->up = true;
4999 wlc_phy_hw_state_upd(wlc_hw->band->pi, true);
5000
5001 /* FULLY enable dynamic power control and d11 core interrupt */
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02005002 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005003 brcms_intrson(wlc_hw->wlc->wl);
5004 return 0;
5005}
5006
5007/*
5008 * Write WME tunable parameters for retransmit/max rate
5009 * from wlc struct to ucode
5010 */
5011static void brcms_c_wme_retries_write(struct brcms_c_info *wlc)
5012{
5013 int ac;
5014
5015 /* Need clock to do this */
5016 if (!wlc->clk)
5017 return;
5018
Arend van Sprielb7eec422011-11-10 20:30:18 +01005019 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005020 brcms_b_write_shm(wlc->hw, M_AC_TXLMT_ADDR(ac),
5021 wlc->wme_retries[ac]);
5022}
5023
5024/* make interface operational */
5025int brcms_c_up(struct brcms_c_info *wlc)
5026{
Seth Forshee91691292012-06-16 07:47:49 -05005027 struct ieee80211_channel *ch;
5028
Seth Forsheeb353dda2012-11-15 08:08:03 -06005029 brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005030
5031 /* HW is turned off so don't try to access it */
5032 if (wlc->pub->hw_off || brcms_deviceremoved(wlc))
5033 return -ENOMEDIUM;
5034
5035 if (!wlc->pub->hw_up) {
5036 brcms_b_hw_up(wlc->hw);
5037 wlc->pub->hw_up = true;
5038 }
5039
5040 if ((wlc->pub->boardflags & BFL_FEM)
Hauke Mehrtens1ef1a572012-06-30 15:16:13 +02005041 && (ai_get_chip_id(wlc->hw->sih) == BCMA_CHIP_ID_BCM4313)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02005042 if (wlc->pub->boardrev >= 0x1250
5043 && (wlc->pub->boardflags & BFL_FEM_BT))
5044 brcms_b_mhf(wlc->hw, MHF5, MHF5_4313_GPIOCTRL,
5045 MHF5_4313_GPIOCTRL, BRCM_BAND_ALL);
5046 else
5047 brcms_b_mhf(wlc->hw, MHF4, MHF4_EXTPA_ENABLE,
5048 MHF4_EXTPA_ENABLE, BRCM_BAND_ALL);
5049 }
5050
5051 /*
5052 * Need to read the hwradio status here to cover the case where the
5053 * system is loaded with the hw radio disabled. We do not want to bring
5054 * the driver up in this case. If radio is disabled, abort up, lower
5055 * power, start radio timer and return 0(for NDIS) don't call
5056 * radio_update to avoid looping brcms_c_up.
5057 *
5058 * brcms_b_up_prep() returns either 0 or -BCME_RADIOOFF only
5059 */
5060 if (!wlc->pub->radio_disabled) {
5061 int status = brcms_b_up_prep(wlc->hw);
5062 if (status == -ENOMEDIUM) {
5063 if (!mboolisset
5064 (wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE)) {
5065 struct brcms_bss_cfg *bsscfg = wlc->bsscfg;
5066 mboolset(wlc->pub->radio_disabled,
5067 WL_RADIO_HW_DISABLE);
Hauke Mehrtens01996ea2013-03-24 01:45:53 +01005068 if (bsscfg->type == BRCMS_TYPE_STATION ||
5069 bsscfg->type == BRCMS_TYPE_ADHOC)
Seth Forsheeb353dda2012-11-15 08:08:03 -06005070 brcms_err(wlc->hw->d11core,
5071 "wl%d: up: rfdisable -> "
Arend van Spriel5b435de2011-10-05 13:19:03 +02005072 "bsscfg_disable()\n",
5073 wlc->pub->unit);
5074 }
5075 }
5076 }
5077
5078 if (wlc->pub->radio_disabled) {
5079 brcms_c_radio_monitor_start(wlc);
5080 return 0;
5081 }
5082
5083 /* brcms_b_up_prep has done brcms_c_corereset(). so clk is on, set it */
5084 wlc->clk = true;
5085
5086 brcms_c_radio_monitor_stop(wlc);
5087
5088 /* Set EDCF hostflags */
5089 brcms_b_mhf(wlc->hw, MHF1, MHF1_EDCF, MHF1_EDCF, BRCM_BAND_ALL);
5090
5091 brcms_init(wlc->wl);
5092 wlc->pub->up = true;
5093
5094 if (wlc->bandinit_pending) {
Seth Forshee91691292012-06-16 07:47:49 -05005095 ch = wlc->pub->ieee_hw->conf.channel;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005096 brcms_c_suspend_mac_and_wait(wlc);
Seth Forshee91691292012-06-16 07:47:49 -05005097 brcms_c_set_chanspec(wlc, ch20mhz_chspec(ch->hw_value));
Arend van Spriel5b435de2011-10-05 13:19:03 +02005098 wlc->bandinit_pending = false;
5099 brcms_c_enable_mac(wlc);
5100 }
5101
5102 brcms_b_up_finish(wlc->hw);
5103
5104 /* Program the TX wme params with the current settings */
5105 brcms_c_wme_retries_write(wlc);
5106
5107 /* start one second watchdog timer */
Roland Vossenbe69c4e2011-10-12 20:51:11 +02005108 brcms_add_timer(wlc->wdtimer, TIMER_INTERVAL_WATCHDOG, true);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005109 wlc->WDarmed = true;
5110
5111 /* ensure antenna config is up to date */
5112 brcms_c_stf_phy_txant_upd(wlc);
5113 /* ensure LDPC config is in sync */
5114 brcms_c_ht_update_ldpc(wlc, wlc->stf->ldpc);
5115
5116 return 0;
5117}
5118
5119static uint brcms_c_down_del_timer(struct brcms_c_info *wlc)
5120{
5121 uint callbacks = 0;
5122
5123 return callbacks;
5124}
5125
5126static int brcms_b_bmac_down_prep(struct brcms_hardware *wlc_hw)
5127{
5128 bool dev_gone;
5129 uint callbacks = 0;
5130
Arend van Spriel5b435de2011-10-05 13:19:03 +02005131 if (!wlc_hw->up)
5132 return callbacks;
5133
5134 dev_gone = brcms_deviceremoved(wlc_hw->wlc);
5135
5136 /* disable interrupts */
5137 if (dev_gone)
5138 wlc_hw->wlc->macintmask = 0;
5139 else {
5140 /* now disable interrupts */
5141 brcms_intrsoff(wlc_hw->wlc->wl);
5142
5143 /* ensure we're running on the pll clock again */
Hauke Mehrtens712e3c12012-04-29 02:50:35 +02005144 brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005145 }
5146 /* down phy at the last of this stage */
5147 callbacks += wlc_phy_down(wlc_hw->band->pi);
5148
5149 return callbacks;
5150}
5151
5152static int brcms_b_down_finish(struct brcms_hardware *wlc_hw)
5153{
5154 uint callbacks = 0;
5155 bool dev_gone;
5156
Arend van Spriel5b435de2011-10-05 13:19:03 +02005157 if (!wlc_hw->up)
5158 return callbacks;
5159
5160 wlc_hw->up = false;
5161 wlc_phy_hw_state_upd(wlc_hw->band->pi, false);
5162
5163 dev_gone = brcms_deviceremoved(wlc_hw->wlc);
5164
5165 if (dev_gone) {
5166 wlc_hw->sbclk = false;
5167 wlc_hw->clk = false;
5168 wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false);
5169
5170 /* reclaim any posted packets */
5171 brcms_c_flushqueues(wlc_hw->wlc);
5172 } else {
5173
5174 /* Reset and disable the core */
Arend van Spriela8779e42011-12-08 15:06:58 -08005175 if (bcma_core_is_enabled(wlc_hw->d11core)) {
Arend van Spriel16d28122011-12-08 15:06:51 -08005176 if (bcma_read32(wlc_hw->d11core,
5177 D11REGOFFS(maccontrol)) & MCTL_EN_MAC)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005178 brcms_c_suspend_mac_and_wait(wlc_hw->wlc);
5179 callbacks += brcms_reset(wlc_hw->wlc->wl);
5180 brcms_c_coredisable(wlc_hw);
5181 }
5182
5183 /* turn off primary xtal and pll */
5184 if (!wlc_hw->noreset) {
5185 ai_pci_down(wlc_hw->sih);
5186 brcms_b_xtal(wlc_hw, OFF);
5187 }
5188 }
5189
5190 return callbacks;
5191}
5192
5193/*
5194 * Mark the interface nonoperational, stop the software mechanisms,
5195 * disable the hardware, free any transient buffer state.
5196 * Return a count of the number of driver callbacks still pending.
5197 */
5198uint brcms_c_down(struct brcms_c_info *wlc)
5199{
5200
5201 uint callbacks = 0;
5202 int i;
5203 bool dev_gone = false;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005204
Seth Forsheeb353dda2012-11-15 08:08:03 -06005205 brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005206
5207 /* check if we are already in the going down path */
5208 if (wlc->going_down) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005209 brcms_err(wlc->hw->d11core,
5210 "wl%d: %s: Driver going down so return\n",
5211 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005212 return 0;
5213 }
5214 if (!wlc->pub->up)
5215 return callbacks;
5216
Arend van Spriel5b435de2011-10-05 13:19:03 +02005217 wlc->going_down = true;
5218
5219 callbacks += brcms_b_bmac_down_prep(wlc->hw);
5220
5221 dev_gone = brcms_deviceremoved(wlc);
5222
5223 /* Call any registered down handlers */
5224 for (i = 0; i < BRCMS_MAXMODULES; i++) {
5225 if (wlc->modulecb[i].down_fn)
5226 callbacks +=
5227 wlc->modulecb[i].down_fn(wlc->modulecb[i].hdl);
5228 }
5229
5230 /* cancel the watchdog timer */
5231 if (wlc->WDarmed) {
Roland Vossenbe69c4e2011-10-12 20:51:11 +02005232 if (!brcms_del_timer(wlc->wdtimer))
Arend van Spriel5b435de2011-10-05 13:19:03 +02005233 callbacks++;
5234 wlc->WDarmed = false;
5235 }
5236 /* cancel all other timers */
5237 callbacks += brcms_c_down_del_timer(wlc);
5238
5239 wlc->pub->up = false;
5240
5241 wlc_phy_mute_upd(wlc->band->pi, false, PHY_MUTE_ALL);
5242
Arend van Spriel5b435de2011-10-05 13:19:03 +02005243 callbacks += brcms_b_down_finish(wlc->hw);
5244
5245 /* brcms_b_down_finish has done brcms_c_coredisable(). so clk is off */
5246 wlc->clk = false;
5247
5248 wlc->going_down = false;
5249 return callbacks;
5250}
5251
5252/* Set the current gmode configuration */
5253int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config)
5254{
5255 int ret = 0;
5256 uint i;
5257 struct brcms_c_rateset rs;
5258 /* Default to 54g Auto */
5259 /* Advertise and use shortslot (-1/0/1 Auto/Off/On) */
5260 s8 shortslot = BRCMS_SHORTSLOT_AUTO;
5261 bool shortslot_restrict = false; /* Restrict association to stations
5262 * that support shortslot
5263 */
5264 bool ofdm_basic = false; /* Make 6, 12, and 24 basic rates */
5265 /* Advertise and use short preambles (-1/0/1 Auto/Off/On) */
5266 int preamble = BRCMS_PLCP_LONG;
5267 bool preamble_restrict = false; /* Restrict association to stations
5268 * that support short preambles
5269 */
5270 struct brcms_band *band;
5271
5272 /* if N-support is enabled, allow Gmode set as long as requested
5273 * Gmode is not GMODE_LEGACY_B
5274 */
5275 if ((wlc->pub->_n_enab & SUPPORT_11N) && gmode == GMODE_LEGACY_B)
5276 return -ENOTSUPP;
5277
5278 /* verify that we are dealing with 2G band and grab the band pointer */
5279 if (wlc->band->bandtype == BRCM_BAND_2G)
5280 band = wlc->band;
5281 else if ((wlc->pub->_nbands > 1) &&
5282 (wlc->bandstate[OTHERBANDUNIT(wlc)]->bandtype == BRCM_BAND_2G))
5283 band = wlc->bandstate[OTHERBANDUNIT(wlc)];
5284 else
5285 return -EINVAL;
5286
Arend van Spriel5b435de2011-10-05 13:19:03 +02005287 /* update configuration value */
Joe Perches23677ce2012-02-09 11:17:23 +00005288 if (config)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005289 brcms_c_protection_upd(wlc, BRCMS_PROT_G_USER, gmode);
5290
5291 /* Clear rateset override */
Joe Perchesb56e6812013-02-13 17:33:21 -08005292 memset(&rs, 0, sizeof(rs));
Arend van Spriel5b435de2011-10-05 13:19:03 +02005293
5294 switch (gmode) {
5295 case GMODE_LEGACY_B:
5296 shortslot = BRCMS_SHORTSLOT_OFF;
5297 brcms_c_rateset_copy(&gphy_legacy_rates, &rs);
5298
5299 break;
5300
5301 case GMODE_LRS:
5302 break;
5303
5304 case GMODE_AUTO:
5305 /* Accept defaults */
5306 break;
5307
5308 case GMODE_ONLY:
5309 ofdm_basic = true;
5310 preamble = BRCMS_PLCP_SHORT;
5311 preamble_restrict = true;
5312 break;
5313
5314 case GMODE_PERFORMANCE:
5315 shortslot = BRCMS_SHORTSLOT_ON;
5316 shortslot_restrict = true;
5317 ofdm_basic = true;
5318 preamble = BRCMS_PLCP_SHORT;
5319 preamble_restrict = true;
5320 break;
5321
5322 default:
5323 /* Error */
Seth Forsheeb353dda2012-11-15 08:08:03 -06005324 brcms_err(wlc->hw->d11core, "wl%d: %s: invalid gmode %d\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02005325 wlc->pub->unit, __func__, gmode);
5326 return -ENOTSUPP;
5327 }
5328
5329 band->gmode = gmode;
5330
5331 wlc->shortslot_override = shortslot;
5332
5333 /* Use the default 11g rateset */
5334 if (!rs.count)
5335 brcms_c_rateset_copy(&cck_ofdm_rates, &rs);
5336
5337 if (ofdm_basic) {
5338 for (i = 0; i < rs.count; i++) {
5339 if (rs.rates[i] == BRCM_RATE_6M
5340 || rs.rates[i] == BRCM_RATE_12M
5341 || rs.rates[i] == BRCM_RATE_24M)
5342 rs.rates[i] |= BRCMS_RATE_FLAG;
5343 }
5344 }
5345
5346 /* Set default bss rateset */
5347 wlc->default_bss->rateset.count = rs.count;
5348 memcpy(wlc->default_bss->rateset.rates, rs.rates,
5349 sizeof(wlc->default_bss->rateset.rates));
5350
5351 return ret;
5352}
5353
5354int brcms_c_set_nmode(struct brcms_c_info *wlc)
5355{
5356 uint i;
5357 s32 nmode = AUTO;
5358
5359 if (wlc->stf->txstreams == WL_11N_3x3)
5360 nmode = WL_11N_3x3;
5361 else
5362 nmode = WL_11N_2x2;
5363
5364 /* force GMODE_AUTO if NMODE is ON */
5365 brcms_c_set_gmode(wlc, GMODE_AUTO, true);
5366 if (nmode == WL_11N_3x3)
5367 wlc->pub->_n_enab = SUPPORT_HT;
5368 else
5369 wlc->pub->_n_enab = SUPPORT_11N;
5370 wlc->default_bss->flags |= BRCMS_BSS_HT;
5371 /* add the mcs rates to the default and hw ratesets */
5372 brcms_c_rateset_mcs_build(&wlc->default_bss->rateset,
5373 wlc->stf->txstreams);
5374 for (i = 0; i < wlc->pub->_nbands; i++)
5375 memcpy(wlc->bandstate[i]->hw_rateset.mcs,
5376 wlc->default_bss->rateset.mcs, MCSSET_LEN);
5377
5378 return 0;
5379}
5380
5381static int
5382brcms_c_set_internal_rateset(struct brcms_c_info *wlc,
5383 struct brcms_c_rateset *rs_arg)
5384{
5385 struct brcms_c_rateset rs, new;
5386 uint bandunit;
5387
5388 memcpy(&rs, rs_arg, sizeof(struct brcms_c_rateset));
5389
5390 /* check for bad count value */
5391 if ((rs.count == 0) || (rs.count > BRCMS_NUMRATES))
5392 return -EINVAL;
5393
5394 /* try the current band */
5395 bandunit = wlc->band->bandunit;
5396 memcpy(&new, &rs, sizeof(struct brcms_c_rateset));
5397 if (brcms_c_rate_hwrs_filter_sort_validate
5398 (&new, &wlc->bandstate[bandunit]->hw_rateset, true,
5399 wlc->stf->txstreams))
5400 goto good;
5401
5402 /* try the other band */
5403 if (brcms_is_mband_unlocked(wlc)) {
5404 bandunit = OTHERBANDUNIT(wlc);
5405 memcpy(&new, &rs, sizeof(struct brcms_c_rateset));
5406 if (brcms_c_rate_hwrs_filter_sort_validate(&new,
5407 &wlc->
5408 bandstate[bandunit]->
5409 hw_rateset, true,
5410 wlc->stf->txstreams))
5411 goto good;
5412 }
5413
5414 return -EBADE;
5415
5416 good:
5417 /* apply new rateset */
5418 memcpy(&wlc->default_bss->rateset, &new,
5419 sizeof(struct brcms_c_rateset));
5420 memcpy(&wlc->bandstate[bandunit]->defrateset, &new,
5421 sizeof(struct brcms_c_rateset));
5422 return 0;
5423}
5424
5425static void brcms_c_ofdm_rateset_war(struct brcms_c_info *wlc)
5426{
5427 u8 r;
5428 bool war = false;
5429
Hauke Mehrtens6da3b6c2013-03-24 01:45:52 +01005430 if (wlc->pub->associated)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005431 r = wlc->bsscfg->current_bss->rateset.rates[0];
5432 else
5433 r = wlc->default_bss->rateset.rates[0];
5434
5435 wlc_phy_ofdm_rateset_war(wlc->band->pi, war);
5436}
5437
5438int brcms_c_set_channel(struct brcms_c_info *wlc, u16 channel)
5439{
5440 u16 chspec = ch20mhz_chspec(channel);
5441
5442 if (channel < 0 || channel > MAXCHANNEL)
5443 return -EINVAL;
5444
5445 if (!brcms_c_valid_chanspec_db(wlc->cmi, chspec))
5446 return -EINVAL;
5447
5448
5449 if (!wlc->pub->up && brcms_is_mband_unlocked(wlc)) {
5450 if (wlc->band->bandunit != chspec_bandunit(chspec))
5451 wlc->bandinit_pending = true;
5452 else
5453 wlc->bandinit_pending = false;
5454 }
5455
5456 wlc->default_bss->chanspec = chspec;
5457 /* brcms_c_BSSinit() will sanitize the rateset before
5458 * using it.. */
5459 if (wlc->pub->up && (wlc_phy_chanspec_get(wlc->band->pi) != chspec)) {
5460 brcms_c_set_home_chanspec(wlc, chspec);
5461 brcms_c_suspend_mac_and_wait(wlc);
5462 brcms_c_set_chanspec(wlc, chspec);
5463 brcms_c_enable_mac(wlc);
5464 }
5465 return 0;
5466}
5467
5468int brcms_c_set_rate_limit(struct brcms_c_info *wlc, u16 srl, u16 lrl)
5469{
5470 int ac;
5471
5472 if (srl < 1 || srl > RETRY_SHORT_MAX ||
5473 lrl < 1 || lrl > RETRY_SHORT_MAX)
5474 return -EINVAL;
5475
5476 wlc->SRL = srl;
5477 wlc->LRL = lrl;
5478
5479 brcms_b_retrylimit_upd(wlc->hw, wlc->SRL, wlc->LRL);
5480
Arend van Sprielb7eec422011-11-10 20:30:18 +01005481 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02005482 wlc->wme_retries[ac] = SFIELD(wlc->wme_retries[ac],
5483 EDCF_SHORT, wlc->SRL);
5484 wlc->wme_retries[ac] = SFIELD(wlc->wme_retries[ac],
5485 EDCF_LONG, wlc->LRL);
5486 }
5487 brcms_c_wme_retries_write(wlc);
5488
5489 return 0;
5490}
5491
5492void brcms_c_get_current_rateset(struct brcms_c_info *wlc,
5493 struct brcm_rateset *currs)
5494{
5495 struct brcms_c_rateset *rs;
5496
5497 if (wlc->pub->associated)
5498 rs = &wlc->bsscfg->current_bss->rateset;
5499 else
5500 rs = &wlc->default_bss->rateset;
5501
5502 /* Copy only legacy rateset section */
5503 currs->count = rs->count;
5504 memcpy(&currs->rates, &rs->rates, rs->count);
5505}
5506
5507int brcms_c_set_rateset(struct brcms_c_info *wlc, struct brcm_rateset *rs)
5508{
5509 struct brcms_c_rateset internal_rs;
5510 int bcmerror;
5511
5512 if (rs->count > BRCMS_NUMRATES)
5513 return -ENOBUFS;
5514
Joe Perchesb56e6812013-02-13 17:33:21 -08005515 memset(&internal_rs, 0, sizeof(internal_rs));
Arend van Spriel5b435de2011-10-05 13:19:03 +02005516
5517 /* Copy only legacy rateset section */
5518 internal_rs.count = rs->count;
5519 memcpy(&internal_rs.rates, &rs->rates, internal_rs.count);
5520
5521 /* merge rateset coming in with the current mcsset */
5522 if (wlc->pub->_n_enab & SUPPORT_11N) {
5523 struct brcms_bss_info *mcsset_bss;
Hauke Mehrtens6da3b6c2013-03-24 01:45:52 +01005524 if (wlc->pub->associated)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005525 mcsset_bss = wlc->bsscfg->current_bss;
5526 else
5527 mcsset_bss = wlc->default_bss;
5528 memcpy(internal_rs.mcs, &mcsset_bss->rateset.mcs[0],
5529 MCSSET_LEN);
5530 }
5531
5532 bcmerror = brcms_c_set_internal_rateset(wlc, &internal_rs);
5533 if (!bcmerror)
5534 brcms_c_ofdm_rateset_war(wlc);
5535
5536 return bcmerror;
5537}
5538
Hauke Mehrtens39b2d362013-03-24 01:45:49 +01005539static void brcms_c_time_lock(struct brcms_c_info *wlc)
5540{
5541 bcma_set32(wlc->hw->d11core, D11REGOFFS(maccontrol), MCTL_TBTTHOLD);
5542 /* Commit the write */
5543 bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol));
5544}
5545
5546static void brcms_c_time_unlock(struct brcms_c_info *wlc)
5547{
5548 bcma_mask32(wlc->hw->d11core, D11REGOFFS(maccontrol), ~MCTL_TBTTHOLD);
5549 /* Commit the write */
5550 bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol));
5551}
5552
Arend van Spriel5b435de2011-10-05 13:19:03 +02005553int brcms_c_set_beacon_period(struct brcms_c_info *wlc, u16 period)
5554{
Tim Gardner708eb542013-02-07 12:35:35 -07005555 if (period == 0)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005556 return -EINVAL;
5557
5558 wlc->default_bss->beacon_period = period;
5559 return 0;
5560}
5561
5562u16 brcms_c_get_phy_type(struct brcms_c_info *wlc, int phyidx)
5563{
5564 return wlc->band->phytype;
5565}
5566
5567void brcms_c_set_shortslot_override(struct brcms_c_info *wlc, s8 sslot_override)
5568{
5569 wlc->shortslot_override = sslot_override;
5570
5571 /*
5572 * shortslot is an 11g feature, so no more work if we are
5573 * currently on the 5G band
5574 */
5575 if (wlc->band->bandtype == BRCM_BAND_5G)
5576 return;
5577
5578 if (wlc->pub->up && wlc->pub->associated) {
5579 /* let watchdog or beacon processing update shortslot */
5580 } else if (wlc->pub->up) {
5581 /* unassociated shortslot is off */
5582 brcms_c_switch_shortslot(wlc, false);
5583 } else {
5584 /* driver is down, so just update the brcms_c_info
5585 * value */
5586 if (wlc->shortslot_override == BRCMS_SHORTSLOT_AUTO)
5587 wlc->shortslot = false;
5588 else
5589 wlc->shortslot =
5590 (wlc->shortslot_override ==
5591 BRCMS_SHORTSLOT_ON);
5592 }
5593}
5594
5595/*
5596 * register watchdog and down handlers.
5597 */
5598int brcms_c_module_register(struct brcms_pub *pub,
5599 const char *name, struct brcms_info *hdl,
5600 int (*d_fn)(void *handle))
5601{
5602 struct brcms_c_info *wlc = (struct brcms_c_info *) pub->wlc;
5603 int i;
5604
5605 /* find an empty entry and just add, no duplication check! */
5606 for (i = 0; i < BRCMS_MAXMODULES; i++) {
5607 if (wlc->modulecb[i].name[0] == '\0') {
5608 strncpy(wlc->modulecb[i].name, name,
5609 sizeof(wlc->modulecb[i].name) - 1);
5610 wlc->modulecb[i].hdl = hdl;
5611 wlc->modulecb[i].down_fn = d_fn;
5612 return 0;
5613 }
5614 }
5615
5616 return -ENOSR;
5617}
5618
5619/* unregister module callbacks */
5620int brcms_c_module_unregister(struct brcms_pub *pub, const char *name,
5621 struct brcms_info *hdl)
5622{
5623 struct brcms_c_info *wlc = (struct brcms_c_info *) pub->wlc;
5624 int i;
5625
5626 if (wlc == NULL)
5627 return -ENODATA;
5628
5629 for (i = 0; i < BRCMS_MAXMODULES; i++) {
5630 if (!strcmp(wlc->modulecb[i].name, name) &&
5631 (wlc->modulecb[i].hdl == hdl)) {
Joe Perchesb56e6812013-02-13 17:33:21 -08005632 memset(&wlc->modulecb[i], 0, sizeof(wlc->modulecb[i]));
Arend van Spriel5b435de2011-10-05 13:19:03 +02005633 return 0;
5634 }
5635 }
5636
5637 /* table not found! */
5638 return -ENODATA;
5639}
5640
Hauke Mehrtenscacaa642012-06-30 15:16:19 +02005641static bool brcms_c_chipmatch_pci(struct bcma_device *core)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005642{
Hauke Mehrtenscacaa642012-06-30 15:16:19 +02005643 struct pci_dev *pcidev = core->bus->host_pci;
5644 u16 vendor = pcidev->vendor;
5645 u16 device = pcidev->device;
5646
Arend van Spriel5b435de2011-10-05 13:19:03 +02005647 if (vendor != PCI_VENDOR_ID_BROADCOM) {
Joe Perches02f77192012-01-15 00:38:44 -08005648 pr_err("unknown vendor id %04x\n", vendor);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005649 return false;
5650 }
5651
Hauke Mehrtens9dd4ea52012-12-07 17:10:03 +01005652 if (device == BCM43224_D11N_ID_VEN1 || device == BCM43224_CHIP_ID)
Arend van Spriel5b435de2011-10-05 13:19:03 +02005653 return true;
5654 if ((device == BCM43224_D11N_ID) || (device == BCM43225_D11N2G_ID))
5655 return true;
5656 if (device == BCM4313_D11N2G_ID)
5657 return true;
5658 if ((device == BCM43236_D11N_ID) || (device == BCM43236_D11N2G_ID))
5659 return true;
5660
Joe Perches02f77192012-01-15 00:38:44 -08005661 pr_err("unknown device id %04x\n", device);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005662 return false;
5663}
5664
Hauke Mehrtenscacaa642012-06-30 15:16:19 +02005665static bool brcms_c_chipmatch_soc(struct bcma_device *core)
5666{
5667 struct bcma_chipinfo *chipinfo = &core->bus->chipinfo;
5668
5669 if (chipinfo->id == BCMA_CHIP_ID_BCM4716)
5670 return true;
5671
5672 pr_err("unknown chip id %04x\n", chipinfo->id);
5673 return false;
5674}
5675
5676bool brcms_c_chipmatch(struct bcma_device *core)
5677{
5678 switch (core->bus->hosttype) {
5679 case BCMA_HOSTTYPE_PCI:
5680 return brcms_c_chipmatch_pci(core);
5681 case BCMA_HOSTTYPE_SOC:
5682 return brcms_c_chipmatch_soc(core);
5683 default:
5684 pr_err("unknown host type: %i\n", core->bus->hosttype);
5685 return false;
5686 }
5687}
5688
Arend van Spriel5b435de2011-10-05 13:19:03 +02005689u16 brcms_b_rate_shm_offset(struct brcms_hardware *wlc_hw, u8 rate)
5690{
5691 u16 table_ptr;
5692 u8 phy_rate, index;
5693
5694 /* get the phy specific rate encoding for the PLCP SIGNAL field */
5695 if (is_ofdm_rate(rate))
5696 table_ptr = M_RT_DIRMAP_A;
5697 else
5698 table_ptr = M_RT_DIRMAP_B;
5699
5700 /* for a given rate, the LS-nibble of the PLCP SIGNAL field is
5701 * the index into the rate table.
5702 */
5703 phy_rate = rate_info[rate] & BRCMS_RATE_MASK;
5704 index = phy_rate & 0xf;
5705
5706 /* Find the SHM pointer to the rate table entry by looking in the
5707 * Direct-map Table
5708 */
5709 return 2 * brcms_b_read_shm(wlc_hw, table_ptr + (index * 2));
5710}
5711
Arend van Spriel5b435de2011-10-05 13:19:03 +02005712/*
5713 * bcmc_fid_generate:
5714 * Generate frame ID for a BCMC packet. The frag field is not used
5715 * for MC frames so is used as part of the sequence number.
5716 */
5717static inline u16
5718bcmc_fid_generate(struct brcms_c_info *wlc, struct brcms_bss_cfg *bsscfg,
5719 struct d11txh *txh)
5720{
5721 u16 frameid;
5722
5723 frameid = le16_to_cpu(txh->TxFrameID) & ~(TXFID_SEQ_MASK |
5724 TXFID_QUEUE_MASK);
5725 frameid |=
5726 (((wlc->
5727 mc_fid_counter++) << TXFID_SEQ_SHIFT) & TXFID_SEQ_MASK) |
5728 TX_BCMC_FIFO;
5729
5730 return frameid;
5731}
5732
5733static uint
5734brcms_c_calc_ack_time(struct brcms_c_info *wlc, u32 rspec,
5735 u8 preamble_type)
5736{
5737 uint dur = 0;
5738
Arend van Spriel5b435de2011-10-05 13:19:03 +02005739 /*
5740 * Spec 9.6: ack rate is the highest rate in BSSBasicRateSet that
5741 * is less than or equal to the rate of the immediately previous
5742 * frame in the FES
5743 */
5744 rspec = brcms_basic_rate(wlc, rspec);
5745 /* ACK frame len == 14 == 2(fc) + 2(dur) + 6(ra) + 4(fcs) */
5746 dur =
5747 brcms_c_calc_frame_time(wlc, rspec, preamble_type,
5748 (DOT11_ACK_LEN + FCS_LEN));
5749 return dur;
5750}
5751
5752static uint
5753brcms_c_calc_cts_time(struct brcms_c_info *wlc, u32 rspec,
5754 u8 preamble_type)
5755{
Arend van Spriel5b435de2011-10-05 13:19:03 +02005756 return brcms_c_calc_ack_time(wlc, rspec, preamble_type);
5757}
5758
5759static uint
5760brcms_c_calc_ba_time(struct brcms_c_info *wlc, u32 rspec,
5761 u8 preamble_type)
5762{
Arend van Spriel5b435de2011-10-05 13:19:03 +02005763 /*
5764 * Spec 9.6: ack rate is the highest rate in BSSBasicRateSet that
5765 * is less than or equal to the rate of the immediately previous
5766 * frame in the FES
5767 */
5768 rspec = brcms_basic_rate(wlc, rspec);
5769 /* BA len == 32 == 16(ctl hdr) + 4(ba len) + 8(bitmap) + 4(fcs) */
5770 return brcms_c_calc_frame_time(wlc, rspec, preamble_type,
5771 (DOT11_BA_LEN + DOT11_BA_BITMAP_LEN +
5772 FCS_LEN));
5773}
5774
5775/* brcms_c_compute_frame_dur()
5776 *
5777 * Calculate the 802.11 MAC header DUR field for MPDU
5778 * DUR for a single frame = 1 SIFS + 1 ACK
5779 * DUR for a frame with following frags = 3 SIFS + 2 ACK + next frag time
5780 *
5781 * rate MPDU rate in unit of 500kbps
5782 * next_frag_len next MPDU length in bytes
5783 * preamble_type use short/GF or long/MM PLCP header
5784 */
5785static u16
5786brcms_c_compute_frame_dur(struct brcms_c_info *wlc, u32 rate,
5787 u8 preamble_type, uint next_frag_len)
5788{
5789 u16 dur, sifs;
5790
5791 sifs = get_sifs(wlc->band);
5792
5793 dur = sifs;
5794 dur += (u16) brcms_c_calc_ack_time(wlc, rate, preamble_type);
5795
5796 if (next_frag_len) {
5797 /* Double the current DUR to get 2 SIFS + 2 ACKs */
5798 dur *= 2;
5799 /* add another SIFS and the frag time */
5800 dur += sifs;
5801 dur +=
5802 (u16) brcms_c_calc_frame_time(wlc, rate, preamble_type,
5803 next_frag_len);
5804 }
5805 return dur;
5806}
5807
5808/* The opposite of brcms_c_calc_frame_time */
5809static uint
5810brcms_c_calc_frame_len(struct brcms_c_info *wlc, u32 ratespec,
5811 u8 preamble_type, uint dur)
5812{
5813 uint nsyms, mac_len, Ndps, kNdps;
5814 uint rate = rspec2rate(ratespec);
5815
Arend van Spriel5b435de2011-10-05 13:19:03 +02005816 if (is_mcs_rate(ratespec)) {
5817 uint mcs = ratespec & RSPEC_RATE_MASK;
5818 int tot_streams = mcs_2_txstreams(mcs) + rspec_stc(ratespec);
5819 dur -= PREN_PREAMBLE + (tot_streams * PREN_PREAMBLE_EXT);
5820 /* payload calculation matches that of regular ofdm */
5821 if (wlc->band->bandtype == BRCM_BAND_2G)
5822 dur -= DOT11_OFDM_SIGNAL_EXTENSION;
5823 /* kNdbps = kbps * 4 */
5824 kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec),
5825 rspec_issgi(ratespec)) * 4;
5826 nsyms = dur / APHY_SYMBOL_TIME;
5827 mac_len =
5828 ((nsyms * kNdps) -
5829 ((APHY_SERVICE_NBITS + APHY_TAIL_NBITS) * 1000)) / 8000;
5830 } else if (is_ofdm_rate(ratespec)) {
5831 dur -= APHY_PREAMBLE_TIME;
5832 dur -= APHY_SIGNAL_TIME;
5833 /* Ndbps = Mbps * 4 = rate(500Kbps) * 2 */
5834 Ndps = rate * 2;
5835 nsyms = dur / APHY_SYMBOL_TIME;
5836 mac_len =
5837 ((nsyms * Ndps) -
5838 (APHY_SERVICE_NBITS + APHY_TAIL_NBITS)) / 8;
5839 } else {
5840 if (preamble_type & BRCMS_SHORT_PREAMBLE)
5841 dur -= BPHY_PLCP_SHORT_TIME;
5842 else
5843 dur -= BPHY_PLCP_TIME;
5844 mac_len = dur * rate;
5845 /* divide out factor of 2 in rate (1/2 mbps) */
5846 mac_len = mac_len / 8 / 2;
5847 }
5848 return mac_len;
5849}
5850
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02005851/*
5852 * Return true if the specified rate is supported by the specified band.
5853 * BRCM_BAND_AUTO indicates the current band.
5854 */
5855static bool brcms_c_valid_rate(struct brcms_c_info *wlc, u32 rspec, int band,
5856 bool verbose)
5857{
5858 struct brcms_c_rateset *hw_rateset;
5859 uint i;
5860
5861 if ((band == BRCM_BAND_AUTO) || (band == wlc->band->bandtype))
5862 hw_rateset = &wlc->band->hw_rateset;
5863 else if (wlc->pub->_nbands > 1)
5864 hw_rateset = &wlc->bandstate[OTHERBANDUNIT(wlc)]->hw_rateset;
5865 else
5866 /* other band specified and we are a single band device */
5867 return false;
5868
5869 /* check if this is a mimo rate */
5870 if (is_mcs_rate(rspec)) {
5871 if ((rspec & RSPEC_RATE_MASK) >= MCS_TABLE_SIZE)
5872 goto error;
5873
5874 return isset(hw_rateset->mcs, (rspec & RSPEC_RATE_MASK));
5875 }
5876
5877 for (i = 0; i < hw_rateset->count; i++)
5878 if (hw_rateset->rates[i] == rspec2rate(rspec))
5879 return true;
5880 error:
5881 if (verbose)
Seth Forsheeb353dda2012-11-15 08:08:03 -06005882 brcms_err(wlc->hw->d11core, "wl%d: valid_rate: rate spec 0x%x "
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02005883 "not in hw_rateset\n", wlc->pub->unit, rspec);
5884
5885 return false;
5886}
5887
Arend van Spriel5b435de2011-10-05 13:19:03 +02005888static u32
5889mac80211_wlc_set_nrate(struct brcms_c_info *wlc, struct brcms_band *cur_band,
5890 u32 int_val)
5891{
Seth Forsheeb353dda2012-11-15 08:08:03 -06005892 struct bcma_device *core = wlc->hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02005893 u8 stf = (int_val & NRATE_STF_MASK) >> NRATE_STF_SHIFT;
5894 u8 rate = int_val & NRATE_RATE_MASK;
5895 u32 rspec;
5896 bool ismcs = ((int_val & NRATE_MCS_INUSE) == NRATE_MCS_INUSE);
5897 bool issgi = ((int_val & NRATE_SGI_MASK) >> NRATE_SGI_SHIFT);
5898 bool override_mcs_only = ((int_val & NRATE_OVERRIDE_MCS_ONLY)
5899 == NRATE_OVERRIDE_MCS_ONLY);
5900 int bcmerror = 0;
5901
5902 if (!ismcs)
5903 return (u32) rate;
5904
5905 /* validate the combination of rate/mcs/stf is allowed */
5906 if ((wlc->pub->_n_enab & SUPPORT_11N) && ismcs) {
5907 /* mcs only allowed when nmode */
5908 if (stf > PHY_TXC1_MODE_SDM) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005909 brcms_err(core, "wl%d: %s: Invalid stf\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02005910 wlc->pub->unit, __func__);
5911 bcmerror = -EINVAL;
5912 goto done;
5913 }
5914
5915 /* mcs 32 is a special case, DUP mode 40 only */
5916 if (rate == 32) {
5917 if (!CHSPEC_IS40(wlc->home_chanspec) ||
5918 ((stf != PHY_TXC1_MODE_SISO)
5919 && (stf != PHY_TXC1_MODE_CDD))) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005920 brcms_err(core, "wl%d: %s: Invalid mcs 32\n",
5921 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005922 bcmerror = -EINVAL;
5923 goto done;
5924 }
5925 /* mcs > 7 must use stf SDM */
5926 } else if (rate > HIGHEST_SINGLE_STREAM_MCS) {
5927 /* mcs > 7 must use stf SDM */
5928 if (stf != PHY_TXC1_MODE_SDM) {
Seth Forshee913911f2012-11-15 08:08:04 -06005929 brcms_dbg_mac80211(core, "wl%d: enabling "
5930 "SDM mode for mcs %d\n",
5931 wlc->pub->unit, rate);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005932 stf = PHY_TXC1_MODE_SDM;
5933 }
5934 } else {
5935 /*
5936 * MCS 0-7 may use SISO, CDD, and for
5937 * phy_rev >= 3 STBC
5938 */
5939 if ((stf > PHY_TXC1_MODE_STBC) ||
5940 (!BRCMS_STBC_CAP_PHY(wlc)
5941 && (stf == PHY_TXC1_MODE_STBC))) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005942 brcms_err(core, "wl%d: %s: Invalid STBC\n",
5943 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02005944 bcmerror = -EINVAL;
5945 goto done;
5946 }
5947 }
5948 } else if (is_ofdm_rate(rate)) {
5949 if ((stf != PHY_TXC1_MODE_CDD) && (stf != PHY_TXC1_MODE_SISO)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005950 brcms_err(core, "wl%d: %s: Invalid OFDM\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02005951 wlc->pub->unit, __func__);
5952 bcmerror = -EINVAL;
5953 goto done;
5954 }
5955 } else if (is_cck_rate(rate)) {
5956 if ((cur_band->bandtype != BRCM_BAND_2G)
5957 || (stf != PHY_TXC1_MODE_SISO)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005958 brcms_err(core, "wl%d: %s: Invalid CCK\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02005959 wlc->pub->unit, __func__);
5960 bcmerror = -EINVAL;
5961 goto done;
5962 }
5963 } else {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005964 brcms_err(core, "wl%d: %s: Unknown rate type\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02005965 wlc->pub->unit, __func__);
5966 bcmerror = -EINVAL;
5967 goto done;
5968 }
5969 /* make sure multiple antennae are available for non-siso rates */
5970 if ((stf != PHY_TXC1_MODE_SISO) && (wlc->stf->txstreams == 1)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06005971 brcms_err(core, "wl%d: %s: SISO antenna but !SISO "
Arend van Spriel5b435de2011-10-05 13:19:03 +02005972 "request\n", wlc->pub->unit, __func__);
5973 bcmerror = -EINVAL;
5974 goto done;
5975 }
5976
5977 rspec = rate;
5978 if (ismcs) {
5979 rspec |= RSPEC_MIMORATE;
5980 /* For STBC populate the STC field of the ratespec */
5981 if (stf == PHY_TXC1_MODE_STBC) {
5982 u8 stc;
5983 stc = 1; /* Nss for single stream is always 1 */
5984 rspec |= (stc << RSPEC_STC_SHIFT);
5985 }
5986 }
5987
5988 rspec |= (stf << RSPEC_STF_SHIFT);
5989
5990 if (override_mcs_only)
5991 rspec |= RSPEC_OVERRIDE_MCS_ONLY;
5992
5993 if (issgi)
5994 rspec |= RSPEC_SHORT_GI;
5995
5996 if ((rate != 0)
5997 && !brcms_c_valid_rate(wlc, rspec, cur_band->bandtype, true))
5998 return rate;
5999
6000 return rspec;
6001done:
6002 return rate;
6003}
6004
6005/*
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02006006 * Compute PLCP, but only requires actual rate and length of pkt.
6007 * Rate is given in the driver standard multiple of 500 kbps.
6008 * le is set for 11 Mbps rate if necessary.
6009 * Broken out for PRQ.
6010 */
6011
6012static void brcms_c_cck_plcp_set(struct brcms_c_info *wlc, int rate_500,
6013 uint length, u8 *plcp)
6014{
6015 u16 usec = 0;
6016 u8 le = 0;
6017
6018 switch (rate_500) {
6019 case BRCM_RATE_1M:
6020 usec = length << 3;
6021 break;
6022 case BRCM_RATE_2M:
6023 usec = length << 2;
6024 break;
6025 case BRCM_RATE_5M5:
6026 usec = (length << 4) / 11;
6027 if ((length << 4) - (usec * 11) > 0)
6028 usec++;
6029 break;
6030 case BRCM_RATE_11M:
6031 usec = (length << 3) / 11;
6032 if ((length << 3) - (usec * 11) > 0) {
6033 usec++;
6034 if ((usec * 11) - (length << 3) >= 8)
6035 le = D11B_PLCP_SIGNAL_LE;
6036 }
6037 break;
6038
6039 default:
Seth Forsheeb353dda2012-11-15 08:08:03 -06006040 brcms_err(wlc->hw->d11core,
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02006041 "brcms_c_cck_plcp_set: unsupported rate %d\n",
6042 rate_500);
6043 rate_500 = BRCM_RATE_1M;
6044 usec = length << 3;
6045 break;
6046 }
6047 /* PLCP signal byte */
6048 plcp[0] = rate_500 * 5; /* r (500kbps) * 5 == r (100kbps) */
6049 /* PLCP service byte */
6050 plcp[1] = (u8) (le | D11B_PLCP_SIGNAL_LOCKED);
6051 /* PLCP length u16, little endian */
6052 plcp[2] = usec & 0xff;
6053 plcp[3] = (usec >> 8) & 0xff;
6054 /* PLCP CRC16 */
6055 plcp[4] = 0;
6056 plcp[5] = 0;
6057}
6058
6059/* Rate: 802.11 rate code, length: PSDU length in octets */
6060static void brcms_c_compute_mimo_plcp(u32 rspec, uint length, u8 *plcp)
6061{
6062 u8 mcs = (u8) (rspec & RSPEC_RATE_MASK);
6063 plcp[0] = mcs;
6064 if (rspec_is40mhz(rspec) || (mcs == 32))
6065 plcp[0] |= MIMO_PLCP_40MHZ;
6066 BRCMS_SET_MIMO_PLCP_LEN(plcp, length);
6067 plcp[3] = rspec_mimoplcp3(rspec); /* rspec already holds this byte */
6068 plcp[3] |= 0x7; /* set smoothing, not sounding ppdu & reserved */
6069 plcp[4] = 0; /* number of extension spatial streams bit 0 & 1 */
6070 plcp[5] = 0;
6071}
6072
6073/* Rate: 802.11 rate code, length: PSDU length in octets */
6074static void
6075brcms_c_compute_ofdm_plcp(u32 rspec, u32 length, u8 *plcp)
6076{
6077 u8 rate_signal;
6078 u32 tmp = 0;
6079 int rate = rspec2rate(rspec);
6080
6081 /*
6082 * encode rate per 802.11a-1999 sec 17.3.4.1, with lsb
6083 * transmitted first
6084 */
6085 rate_signal = rate_info[rate] & BRCMS_RATE_MASK;
6086 memset(plcp, 0, D11_PHY_HDR_LEN);
6087 D11A_PHY_HDR_SRATE((struct ofdm_phy_hdr *) plcp, rate_signal);
6088
6089 tmp = (length & 0xfff) << 5;
6090 plcp[2] |= (tmp >> 16) & 0xff;
6091 plcp[1] |= (tmp >> 8) & 0xff;
6092 plcp[0] |= tmp & 0xff;
6093}
6094
6095/* Rate: 802.11 rate code, length: PSDU length in octets */
6096static void brcms_c_compute_cck_plcp(struct brcms_c_info *wlc, u32 rspec,
6097 uint length, u8 *plcp)
6098{
6099 int rate = rspec2rate(rspec);
6100
6101 brcms_c_cck_plcp_set(wlc, rate, length, plcp);
6102}
6103
6104static void
6105brcms_c_compute_plcp(struct brcms_c_info *wlc, u32 rspec,
6106 uint length, u8 *plcp)
6107{
6108 if (is_mcs_rate(rspec))
6109 brcms_c_compute_mimo_plcp(rspec, length, plcp);
6110 else if (is_ofdm_rate(rspec))
6111 brcms_c_compute_ofdm_plcp(rspec, length, plcp);
6112 else
6113 brcms_c_compute_cck_plcp(wlc, rspec, length, plcp);
6114}
6115
6116/* brcms_c_compute_rtscts_dur()
6117 *
6118 * Calculate the 802.11 MAC header DUR field for an RTS or CTS frame
6119 * DUR for normal RTS/CTS w/ frame = 3 SIFS + 1 CTS + next frame time + 1 ACK
6120 * DUR for CTS-TO-SELF w/ frame = 2 SIFS + next frame time + 1 ACK
6121 *
6122 * cts cts-to-self or rts/cts
6123 * rts_rate rts or cts rate in unit of 500kbps
6124 * rate next MPDU rate in unit of 500kbps
6125 * frame_len next MPDU frame length in bytes
6126 */
6127u16
6128brcms_c_compute_rtscts_dur(struct brcms_c_info *wlc, bool cts_only,
6129 u32 rts_rate,
6130 u32 frame_rate, u8 rts_preamble_type,
6131 u8 frame_preamble_type, uint frame_len, bool ba)
6132{
6133 u16 dur, sifs;
6134
6135 sifs = get_sifs(wlc->band);
6136
6137 if (!cts_only) {
6138 /* RTS/CTS */
6139 dur = 3 * sifs;
6140 dur +=
6141 (u16) brcms_c_calc_cts_time(wlc, rts_rate,
6142 rts_preamble_type);
6143 } else {
6144 /* CTS-TO-SELF */
6145 dur = 2 * sifs;
6146 }
6147
6148 dur +=
6149 (u16) brcms_c_calc_frame_time(wlc, frame_rate, frame_preamble_type,
6150 frame_len);
6151 if (ba)
6152 dur +=
6153 (u16) brcms_c_calc_ba_time(wlc, frame_rate,
6154 BRCMS_SHORT_PREAMBLE);
6155 else
6156 dur +=
6157 (u16) brcms_c_calc_ack_time(wlc, frame_rate,
6158 frame_preamble_type);
6159 return dur;
6160}
6161
6162static u16 brcms_c_phytxctl1_calc(struct brcms_c_info *wlc, u32 rspec)
6163{
6164 u16 phyctl1 = 0;
6165 u16 bw;
6166
6167 if (BRCMS_ISLCNPHY(wlc->band)) {
6168 bw = PHY_TXC1_BW_20MHZ;
6169 } else {
6170 bw = rspec_get_bw(rspec);
6171 /* 10Mhz is not supported yet */
6172 if (bw < PHY_TXC1_BW_20MHZ) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06006173 brcms_err(wlc->hw->d11core, "phytxctl1_calc: bw %d is "
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02006174 "not supported yet, set to 20L\n", bw);
6175 bw = PHY_TXC1_BW_20MHZ;
6176 }
6177 }
6178
6179 if (is_mcs_rate(rspec)) {
6180 uint mcs = rspec & RSPEC_RATE_MASK;
6181
6182 /* bw, stf, coding-type is part of rspec_phytxbyte2 returns */
6183 phyctl1 = rspec_phytxbyte2(rspec);
6184 /* set the upper byte of phyctl1 */
6185 phyctl1 |= (mcs_table[mcs].tx_phy_ctl3 << 8);
6186 } else if (is_cck_rate(rspec) && !BRCMS_ISLCNPHY(wlc->band)
6187 && !BRCMS_ISSSLPNPHY(wlc->band)) {
6188 /*
6189 * In CCK mode LPPHY overloads OFDM Modulation bits with CCK
6190 * Data Rate. Eventually MIMOPHY would also be converted to
6191 * this format
6192 */
6193 /* 0 = 1Mbps; 1 = 2Mbps; 2 = 5.5Mbps; 3 = 11Mbps */
6194 phyctl1 = (bw | (rspec_stf(rspec) << PHY_TXC1_MODE_SHIFT));
6195 } else { /* legacy OFDM/CCK */
6196 s16 phycfg;
6197 /* get the phyctl byte from rate phycfg table */
6198 phycfg = brcms_c_rate_legacy_phyctl(rspec2rate(rspec));
6199 if (phycfg == -1) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06006200 brcms_err(wlc->hw->d11core, "phytxctl1_calc: wrong "
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02006201 "legacy OFDM/CCK rate\n");
6202 phycfg = 0;
6203 }
6204 /* set the upper byte of phyctl1 */
6205 phyctl1 =
6206 (bw | (phycfg << 8) |
6207 (rspec_stf(rspec) << PHY_TXC1_MODE_SHIFT));
6208 }
6209 return phyctl1;
6210}
6211
6212/*
Arend van Spriel5b435de2011-10-05 13:19:03 +02006213 * Add struct d11txh, struct cck_phy_hdr.
6214 *
6215 * 'p' data must start with 802.11 MAC header
6216 * 'p' must allow enough bytes of local headers to be "pushed" onto the packet
6217 *
6218 * headroom == D11_PHY_HDR_LEN + D11_TXH_LEN (D11_TXH_LEN is now 104 bytes)
6219 *
6220 */
6221static u16
6222brcms_c_d11hdrs_mac80211(struct brcms_c_info *wlc, struct ieee80211_hw *hw,
6223 struct sk_buff *p, struct scb *scb, uint frag,
6224 uint nfrags, uint queue, uint next_frag_len)
6225{
6226 struct ieee80211_hdr *h;
6227 struct d11txh *txh;
6228 u8 *plcp, plcp_fallback[D11_PHY_HDR_LEN];
6229 int len, phylen, rts_phylen;
6230 u16 mch, phyctl, xfts, mainrates;
6231 u16 seq = 0, mcl = 0, status = 0, frameid = 0;
6232 u32 rspec[2] = { BRCM_RATE_1M, BRCM_RATE_1M };
6233 u32 rts_rspec[2] = { BRCM_RATE_1M, BRCM_RATE_1M };
6234 bool use_rts = false;
6235 bool use_cts = false;
6236 bool use_rifs = false;
6237 bool short_preamble[2] = { false, false };
6238 u8 preamble_type[2] = { BRCMS_LONG_PREAMBLE, BRCMS_LONG_PREAMBLE };
6239 u8 rts_preamble_type[2] = { BRCMS_LONG_PREAMBLE, BRCMS_LONG_PREAMBLE };
6240 u8 *rts_plcp, rts_plcp_fallback[D11_PHY_HDR_LEN];
6241 struct ieee80211_rts *rts = NULL;
6242 bool qos;
6243 uint ac;
6244 bool hwtkmic = false;
6245 u16 mimo_ctlchbw = PHY_TXC1_BW_20MHZ;
6246#define ANTCFG_NONE 0xFF
6247 u8 antcfg = ANTCFG_NONE;
6248 u8 fbantcfg = ANTCFG_NONE;
6249 uint phyctl1_stf = 0;
6250 u16 durid = 0;
6251 struct ieee80211_tx_rate *txrate[2];
6252 int k;
6253 struct ieee80211_tx_info *tx_info;
6254 bool is_mcs;
6255 u16 mimo_txbw;
6256 u8 mimo_preamble_type;
6257
6258 /* locate 802.11 MAC header */
6259 h = (struct ieee80211_hdr *)(p->data);
6260 qos = ieee80211_is_data_qos(h->frame_control);
6261
6262 /* compute length of frame in bytes for use in PLCP computations */
Arend van Sprielad4d71f2011-11-10 20:30:26 +01006263 len = p->len;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006264 phylen = len + FCS_LEN;
6265
6266 /* Get tx_info */
6267 tx_info = IEEE80211_SKB_CB(p);
6268
6269 /* add PLCP */
6270 plcp = skb_push(p, D11_PHY_HDR_LEN);
6271
6272 /* add Broadcom tx descriptor header */
6273 txh = (struct d11txh *) skb_push(p, D11_TXH_LEN);
6274 memset(txh, 0, D11_TXH_LEN);
6275
6276 /* setup frameid */
6277 if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
6278 /* non-AP STA should never use BCMC queue */
6279 if (queue == TX_BCMC_FIFO) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06006280 brcms_err(wlc->hw->d11core,
6281 "wl%d: %s: ASSERT queue == TX_BCMC!\n",
6282 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006283 frameid = bcmc_fid_generate(wlc, NULL, txh);
6284 } else {
6285 /* Increment the counter for first fragment */
6286 if (tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
6287 scb->seqnum[p->priority]++;
6288
6289 /* extract fragment number from frame first */
6290 seq = le16_to_cpu(h->seq_ctrl) & FRAGNUM_MASK;
6291 seq |= (scb->seqnum[p->priority] << SEQNUM_SHIFT);
6292 h->seq_ctrl = cpu_to_le16(seq);
6293
6294 frameid = ((seq << TXFID_SEQ_SHIFT) & TXFID_SEQ_MASK) |
6295 (queue & TXFID_QUEUE_MASK);
6296 }
6297 }
6298 frameid |= queue & TXFID_QUEUE_MASK;
6299
6300 /* set the ignpmq bit for all pkts tx'd in PS mode and for beacons */
6301 if (ieee80211_is_beacon(h->frame_control))
6302 mcl |= TXC_IGNOREPMQ;
6303
6304 txrate[0] = tx_info->control.rates;
6305 txrate[1] = txrate[0] + 1;
6306
6307 /*
6308 * if rate control algorithm didn't give us a fallback
6309 * rate, use the primary rate
6310 */
6311 if (txrate[1]->idx < 0)
6312 txrate[1] = txrate[0];
6313
6314 for (k = 0; k < hw->max_rates; k++) {
6315 is_mcs = txrate[k]->flags & IEEE80211_TX_RC_MCS ? true : false;
6316 if (!is_mcs) {
6317 if ((txrate[k]->idx >= 0)
6318 && (txrate[k]->idx <
6319 hw->wiphy->bands[tx_info->band]->n_bitrates)) {
6320 rspec[k] =
6321 hw->wiphy->bands[tx_info->band]->
6322 bitrates[txrate[k]->idx].hw_value;
6323 short_preamble[k] =
6324 txrate[k]->
6325 flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE ?
6326 true : false;
6327 } else {
6328 rspec[k] = BRCM_RATE_1M;
6329 }
6330 } else {
6331 rspec[k] = mac80211_wlc_set_nrate(wlc, wlc->band,
6332 NRATE_MCS_INUSE | txrate[k]->idx);
6333 }
6334
6335 /*
6336 * Currently only support same setting for primay and
6337 * fallback rates. Unify flags for each rate into a
6338 * single value for the frame
6339 */
6340 use_rts |=
6341 txrate[k]->
6342 flags & IEEE80211_TX_RC_USE_RTS_CTS ? true : false;
6343 use_cts |=
6344 txrate[k]->
6345 flags & IEEE80211_TX_RC_USE_CTS_PROTECT ? true : false;
6346
6347
6348 /*
6349 * (1) RATE:
6350 * determine and validate primary rate
6351 * and fallback rates
6352 */
6353 if (!rspec_active(rspec[k])) {
6354 rspec[k] = BRCM_RATE_1M;
6355 } else {
6356 if (!is_multicast_ether_addr(h->addr1)) {
6357 /* set tx antenna config */
6358 brcms_c_antsel_antcfg_get(wlc->asi, false,
6359 false, 0, 0, &antcfg, &fbantcfg);
6360 }
6361 }
6362 }
6363
6364 phyctl1_stf = wlc->stf->ss_opmode;
6365
6366 if (wlc->pub->_n_enab & SUPPORT_11N) {
6367 for (k = 0; k < hw->max_rates; k++) {
6368 /*
6369 * apply siso/cdd to single stream mcs's or ofdm
6370 * if rspec is auto selected
6371 */
6372 if (((is_mcs_rate(rspec[k]) &&
6373 is_single_stream(rspec[k] & RSPEC_RATE_MASK)) ||
6374 is_ofdm_rate(rspec[k]))
6375 && ((rspec[k] & RSPEC_OVERRIDE_MCS_ONLY)
6376 || !(rspec[k] & RSPEC_OVERRIDE))) {
6377 rspec[k] &= ~(RSPEC_STF_MASK | RSPEC_STC_MASK);
6378
6379 /* For SISO MCS use STBC if possible */
6380 if (is_mcs_rate(rspec[k])
6381 && BRCMS_STF_SS_STBC_TX(wlc, scb)) {
6382 u8 stc;
6383
6384 /* Nss for single stream is always 1 */
6385 stc = 1;
6386 rspec[k] |= (PHY_TXC1_MODE_STBC <<
6387 RSPEC_STF_SHIFT) |
6388 (stc << RSPEC_STC_SHIFT);
6389 } else
6390 rspec[k] |=
6391 (phyctl1_stf << RSPEC_STF_SHIFT);
6392 }
6393
6394 /*
6395 * Is the phy configured to use 40MHZ frames? If
6396 * so then pick the desired txbw
6397 */
6398 if (brcms_chspec_bw(wlc->chanspec) == BRCMS_40_MHZ) {
6399 /* default txbw is 20in40 SB */
6400 mimo_ctlchbw = mimo_txbw =
6401 CHSPEC_SB_UPPER(wlc_phy_chanspec_get(
6402 wlc->band->pi))
6403 ? PHY_TXC1_BW_20MHZ_UP : PHY_TXC1_BW_20MHZ;
6404
6405 if (is_mcs_rate(rspec[k])) {
6406 /* mcs 32 must be 40b/w DUP */
6407 if ((rspec[k] & RSPEC_RATE_MASK)
6408 == 32) {
6409 mimo_txbw =
6410 PHY_TXC1_BW_40MHZ_DUP;
6411 /* use override */
6412 } else if (wlc->mimo_40txbw != AUTO)
6413 mimo_txbw = wlc->mimo_40txbw;
6414 /* else check if dst is using 40 Mhz */
6415 else if (scb->flags & SCB_IS40)
6416 mimo_txbw = PHY_TXC1_BW_40MHZ;
6417 } else if (is_ofdm_rate(rspec[k])) {
6418 if (wlc->ofdm_40txbw != AUTO)
6419 mimo_txbw = wlc->ofdm_40txbw;
6420 } else if (wlc->cck_40txbw != AUTO) {
6421 mimo_txbw = wlc->cck_40txbw;
6422 }
6423 } else {
6424 /*
6425 * mcs32 is 40 b/w only.
6426 * This is possible for probe packets on
6427 * a STA during SCAN
6428 */
6429 if ((rspec[k] & RSPEC_RATE_MASK) == 32)
6430 /* mcs 0 */
6431 rspec[k] = RSPEC_MIMORATE;
6432
6433 mimo_txbw = PHY_TXC1_BW_20MHZ;
6434 }
6435
6436 /* Set channel width */
6437 rspec[k] &= ~RSPEC_BW_MASK;
6438 if ((k == 0) || ((k > 0) && is_mcs_rate(rspec[k])))
6439 rspec[k] |= (mimo_txbw << RSPEC_BW_SHIFT);
6440 else
6441 rspec[k] |= (mimo_ctlchbw << RSPEC_BW_SHIFT);
6442
6443 /* Disable short GI, not supported yet */
6444 rspec[k] &= ~RSPEC_SHORT_GI;
6445
6446 mimo_preamble_type = BRCMS_MM_PREAMBLE;
6447 if (txrate[k]->flags & IEEE80211_TX_RC_GREEN_FIELD)
6448 mimo_preamble_type = BRCMS_GF_PREAMBLE;
6449
6450 if ((txrate[k]->flags & IEEE80211_TX_RC_MCS)
6451 && (!is_mcs_rate(rspec[k]))) {
Joe Perchese81c7e92013-02-13 17:33:20 -08006452 brcms_warn(wlc->hw->d11core,
6453 "wl%d: %s: IEEE80211_TX_RC_MCS != is_mcs_rate(rspec)\n",
6454 wlc->pub->unit, __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006455 }
6456
6457 if (is_mcs_rate(rspec[k])) {
6458 preamble_type[k] = mimo_preamble_type;
6459
6460 /*
6461 * if SGI is selected, then forced mm
6462 * for single stream
6463 */
6464 if ((rspec[k] & RSPEC_SHORT_GI)
6465 && is_single_stream(rspec[k] &
6466 RSPEC_RATE_MASK))
6467 preamble_type[k] = BRCMS_MM_PREAMBLE;
6468 }
6469
6470 /* should be better conditionalized */
6471 if (!is_mcs_rate(rspec[0])
6472 && (tx_info->control.rates[0].
6473 flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE))
6474 preamble_type[k] = BRCMS_SHORT_PREAMBLE;
6475 }
6476 } else {
6477 for (k = 0; k < hw->max_rates; k++) {
6478 /* Set ctrlchbw as 20Mhz */
6479 rspec[k] &= ~RSPEC_BW_MASK;
6480 rspec[k] |= (PHY_TXC1_BW_20MHZ << RSPEC_BW_SHIFT);
6481
6482 /* for nphy, stf of ofdm frames must follow policies */
6483 if (BRCMS_ISNPHY(wlc->band) && is_ofdm_rate(rspec[k])) {
6484 rspec[k] &= ~RSPEC_STF_MASK;
6485 rspec[k] |= phyctl1_stf << RSPEC_STF_SHIFT;
6486 }
6487 }
6488 }
6489
6490 /* Reset these for use with AMPDU's */
6491 txrate[0]->count = 0;
6492 txrate[1]->count = 0;
6493
6494 /* (2) PROTECTION, may change rspec */
6495 if ((ieee80211_is_data(h->frame_control) ||
6496 ieee80211_is_mgmt(h->frame_control)) &&
6497 (phylen > wlc->RTSThresh) && !is_multicast_ether_addr(h->addr1))
6498 use_rts = true;
6499
6500 /* (3) PLCP: determine PLCP header and MAC duration,
6501 * fill struct d11txh */
6502 brcms_c_compute_plcp(wlc, rspec[0], phylen, plcp);
6503 brcms_c_compute_plcp(wlc, rspec[1], phylen, plcp_fallback);
6504 memcpy(&txh->FragPLCPFallback,
6505 plcp_fallback, sizeof(txh->FragPLCPFallback));
6506
6507 /* Length field now put in CCK FBR CRC field */
6508 if (is_cck_rate(rspec[1])) {
6509 txh->FragPLCPFallback[4] = phylen & 0xff;
6510 txh->FragPLCPFallback[5] = (phylen & 0xff00) >> 8;
6511 }
6512
6513 /* MIMO-RATE: need validation ?? */
6514 mainrates = is_ofdm_rate(rspec[0]) ?
6515 D11A_PHY_HDR_GRATE((struct ofdm_phy_hdr *) plcp) :
6516 plcp[0];
6517
6518 /* DUR field for main rate */
6519 if (!ieee80211_is_pspoll(h->frame_control) &&
6520 !is_multicast_ether_addr(h->addr1) && !use_rifs) {
6521 durid =
6522 brcms_c_compute_frame_dur(wlc, rspec[0], preamble_type[0],
6523 next_frag_len);
6524 h->duration_id = cpu_to_le16(durid);
6525 } else if (use_rifs) {
6526 /* NAV protect to end of next max packet size */
6527 durid =
6528 (u16) brcms_c_calc_frame_time(wlc, rspec[0],
6529 preamble_type[0],
6530 DOT11_MAX_FRAG_LEN);
6531 durid += RIFS_11N_TIME;
6532 h->duration_id = cpu_to_le16(durid);
6533 }
6534
6535 /* DUR field for fallback rate */
6536 if (ieee80211_is_pspoll(h->frame_control))
6537 txh->FragDurFallback = h->duration_id;
6538 else if (is_multicast_ether_addr(h->addr1) || use_rifs)
6539 txh->FragDurFallback = 0;
6540 else {
6541 durid = brcms_c_compute_frame_dur(wlc, rspec[1],
6542 preamble_type[1], next_frag_len);
6543 txh->FragDurFallback = cpu_to_le16(durid);
6544 }
6545
6546 /* (4) MAC-HDR: MacTxControlLow */
6547 if (frag == 0)
6548 mcl |= TXC_STARTMSDU;
6549
6550 if (!is_multicast_ether_addr(h->addr1))
6551 mcl |= TXC_IMMEDACK;
6552
6553 if (wlc->band->bandtype == BRCM_BAND_5G)
6554 mcl |= TXC_FREQBAND_5G;
6555
6556 if (CHSPEC_IS40(wlc_phy_chanspec_get(wlc->band->pi)))
6557 mcl |= TXC_BW_40;
6558
6559 /* set AMIC bit if using hardware TKIP MIC */
6560 if (hwtkmic)
6561 mcl |= TXC_AMIC;
6562
6563 txh->MacTxControlLow = cpu_to_le16(mcl);
6564
6565 /* MacTxControlHigh */
6566 mch = 0;
6567
6568 /* Set fallback rate preamble type */
6569 if ((preamble_type[1] == BRCMS_SHORT_PREAMBLE) ||
6570 (preamble_type[1] == BRCMS_GF_PREAMBLE)) {
6571 if (rspec2rate(rspec[1]) != BRCM_RATE_1M)
6572 mch |= TXC_PREAMBLE_DATA_FB_SHORT;
6573 }
6574
6575 /* MacFrameControl */
6576 memcpy(&txh->MacFrameControl, &h->frame_control, sizeof(u16));
6577 txh->TxFesTimeNormal = cpu_to_le16(0);
6578
6579 txh->TxFesTimeFallback = cpu_to_le16(0);
6580
6581 /* TxFrameRA */
6582 memcpy(&txh->TxFrameRA, &h->addr1, ETH_ALEN);
6583
6584 /* TxFrameID */
6585 txh->TxFrameID = cpu_to_le16(frameid);
6586
6587 /*
6588 * TxStatus, Note the case of recreating the first frag of a suppressed
6589 * frame then we may need to reset the retry cnt's via the status reg
6590 */
6591 txh->TxStatus = cpu_to_le16(status);
6592
6593 /*
6594 * extra fields for ucode AMPDU aggregation, the new fields are added to
6595 * the END of previous structure so that it's compatible in driver.
6596 */
6597 txh->MaxNMpdus = cpu_to_le16(0);
6598 txh->MaxABytes_MRT = cpu_to_le16(0);
6599 txh->MaxABytes_FBR = cpu_to_le16(0);
6600 txh->MinMBytes = cpu_to_le16(0);
6601
6602 /* (5) RTS/CTS: determine RTS/CTS PLCP header and MAC duration,
6603 * furnish struct d11txh */
6604 /* RTS PLCP header and RTS frame */
6605 if (use_rts || use_cts) {
6606 if (use_rts && use_cts)
6607 use_cts = false;
6608
6609 for (k = 0; k < 2; k++) {
6610 rts_rspec[k] = brcms_c_rspec_to_rts_rspec(wlc, rspec[k],
6611 false,
6612 mimo_ctlchbw);
6613 }
6614
6615 if (!is_ofdm_rate(rts_rspec[0]) &&
6616 !((rspec2rate(rts_rspec[0]) == BRCM_RATE_1M) ||
6617 (wlc->PLCPHdr_override == BRCMS_PLCP_LONG))) {
6618 rts_preamble_type[0] = BRCMS_SHORT_PREAMBLE;
6619 mch |= TXC_PREAMBLE_RTS_MAIN_SHORT;
6620 }
6621
6622 if (!is_ofdm_rate(rts_rspec[1]) &&
6623 !((rspec2rate(rts_rspec[1]) == BRCM_RATE_1M) ||
6624 (wlc->PLCPHdr_override == BRCMS_PLCP_LONG))) {
6625 rts_preamble_type[1] = BRCMS_SHORT_PREAMBLE;
6626 mch |= TXC_PREAMBLE_RTS_FB_SHORT;
6627 }
6628
6629 /* RTS/CTS additions to MacTxControlLow */
6630 if (use_cts) {
6631 txh->MacTxControlLow |= cpu_to_le16(TXC_SENDCTS);
6632 } else {
6633 txh->MacTxControlLow |= cpu_to_le16(TXC_SENDRTS);
6634 txh->MacTxControlLow |= cpu_to_le16(TXC_LONGFRAME);
6635 }
6636
6637 /* RTS PLCP header */
6638 rts_plcp = txh->RTSPhyHeader;
6639 if (use_cts)
6640 rts_phylen = DOT11_CTS_LEN + FCS_LEN;
6641 else
6642 rts_phylen = DOT11_RTS_LEN + FCS_LEN;
6643
6644 brcms_c_compute_plcp(wlc, rts_rspec[0], rts_phylen, rts_plcp);
6645
6646 /* fallback rate version of RTS PLCP header */
6647 brcms_c_compute_plcp(wlc, rts_rspec[1], rts_phylen,
6648 rts_plcp_fallback);
6649 memcpy(&txh->RTSPLCPFallback, rts_plcp_fallback,
6650 sizeof(txh->RTSPLCPFallback));
6651
6652 /* RTS frame fields... */
6653 rts = (struct ieee80211_rts *)&txh->rts_frame;
6654
6655 durid = brcms_c_compute_rtscts_dur(wlc, use_cts, rts_rspec[0],
6656 rspec[0], rts_preamble_type[0],
6657 preamble_type[0], phylen, false);
6658 rts->duration = cpu_to_le16(durid);
6659 /* fallback rate version of RTS DUR field */
6660 durid = brcms_c_compute_rtscts_dur(wlc, use_cts,
6661 rts_rspec[1], rspec[1],
6662 rts_preamble_type[1],
6663 preamble_type[1], phylen, false);
6664 txh->RTSDurFallback = cpu_to_le16(durid);
6665
6666 if (use_cts) {
6667 rts->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
6668 IEEE80211_STYPE_CTS);
6669
6670 memcpy(&rts->ra, &h->addr2, ETH_ALEN);
6671 } else {
6672 rts->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
6673 IEEE80211_STYPE_RTS);
6674
6675 memcpy(&rts->ra, &h->addr1, 2 * ETH_ALEN);
6676 }
6677
6678 /* mainrate
6679 * low 8 bits: main frag rate/mcs,
6680 * high 8 bits: rts/cts rate/mcs
6681 */
6682 mainrates |= (is_ofdm_rate(rts_rspec[0]) ?
6683 D11A_PHY_HDR_GRATE(
6684 (struct ofdm_phy_hdr *) rts_plcp) :
6685 rts_plcp[0]) << 8;
6686 } else {
Joe Perchesb56e6812013-02-13 17:33:21 -08006687 memset(txh->RTSPhyHeader, 0, D11_PHY_HDR_LEN);
6688 memset(&txh->rts_frame, 0, sizeof(struct ieee80211_rts));
6689 memset(txh->RTSPLCPFallback, 0, sizeof(txh->RTSPLCPFallback));
Arend van Spriel5b435de2011-10-05 13:19:03 +02006690 txh->RTSDurFallback = 0;
6691 }
6692
6693#ifdef SUPPORT_40MHZ
6694 /* add null delimiter count */
6695 if ((tx_info->flags & IEEE80211_TX_CTL_AMPDU) && is_mcs_rate(rspec))
6696 txh->RTSPLCPFallback[AMPDU_FBR_NULL_DELIM] =
6697 brcm_c_ampdu_null_delim_cnt(wlc->ampdu, scb, rspec, phylen);
6698
6699#endif
6700
6701 /*
6702 * Now that RTS/RTS FB preamble types are updated, write
6703 * the final value
6704 */
6705 txh->MacTxControlHigh = cpu_to_le16(mch);
6706
6707 /*
6708 * MainRates (both the rts and frag plcp rates have
6709 * been calculated now)
6710 */
6711 txh->MainRates = cpu_to_le16(mainrates);
6712
6713 /* XtraFrameTypes */
6714 xfts = frametype(rspec[1], wlc->mimoft);
6715 xfts |= (frametype(rts_rspec[0], wlc->mimoft) << XFTS_RTS_FT_SHIFT);
6716 xfts |= (frametype(rts_rspec[1], wlc->mimoft) << XFTS_FBRRTS_FT_SHIFT);
6717 xfts |= CHSPEC_CHANNEL(wlc_phy_chanspec_get(wlc->band->pi)) <<
6718 XFTS_CHANNEL_SHIFT;
6719 txh->XtraFrameTypes = cpu_to_le16(xfts);
6720
6721 /* PhyTxControlWord */
6722 phyctl = frametype(rspec[0], wlc->mimoft);
6723 if ((preamble_type[0] == BRCMS_SHORT_PREAMBLE) ||
6724 (preamble_type[0] == BRCMS_GF_PREAMBLE)) {
6725 if (rspec2rate(rspec[0]) != BRCM_RATE_1M)
6726 phyctl |= PHY_TXC_SHORT_HDR;
6727 }
6728
6729 /* phytxant is properly bit shifted */
6730 phyctl |= brcms_c_stf_d11hdrs_phyctl_txant(wlc, rspec[0]);
6731 txh->PhyTxControlWord = cpu_to_le16(phyctl);
6732
6733 /* PhyTxControlWord_1 */
6734 if (BRCMS_PHY_11N_CAP(wlc->band)) {
6735 u16 phyctl1 = 0;
6736
6737 phyctl1 = brcms_c_phytxctl1_calc(wlc, rspec[0]);
6738 txh->PhyTxControlWord_1 = cpu_to_le16(phyctl1);
6739 phyctl1 = brcms_c_phytxctl1_calc(wlc, rspec[1]);
6740 txh->PhyTxControlWord_1_Fbr = cpu_to_le16(phyctl1);
6741
6742 if (use_rts || use_cts) {
6743 phyctl1 = brcms_c_phytxctl1_calc(wlc, rts_rspec[0]);
6744 txh->PhyTxControlWord_1_Rts = cpu_to_le16(phyctl1);
6745 phyctl1 = brcms_c_phytxctl1_calc(wlc, rts_rspec[1]);
6746 txh->PhyTxControlWord_1_FbrRts = cpu_to_le16(phyctl1);
6747 }
6748
6749 /*
6750 * For mcs frames, if mixedmode(overloaded with long preamble)
6751 * is going to be set, fill in non-zero MModeLen and/or
6752 * MModeFbrLen it will be unnecessary if they are separated
6753 */
6754 if (is_mcs_rate(rspec[0]) &&
6755 (preamble_type[0] == BRCMS_MM_PREAMBLE)) {
6756 u16 mmodelen =
6757 brcms_c_calc_lsig_len(wlc, rspec[0], phylen);
6758 txh->MModeLen = cpu_to_le16(mmodelen);
6759 }
6760
6761 if (is_mcs_rate(rspec[1]) &&
6762 (preamble_type[1] == BRCMS_MM_PREAMBLE)) {
6763 u16 mmodefbrlen =
6764 brcms_c_calc_lsig_len(wlc, rspec[1], phylen);
6765 txh->MModeFbrLen = cpu_to_le16(mmodefbrlen);
6766 }
6767 }
6768
6769 ac = skb_get_queue_mapping(p);
6770 if ((scb->flags & SCB_WMECAP) && qos && wlc->edcf_txop[ac]) {
6771 uint frag_dur, dur, dur_fallback;
6772
6773 /* WME: Update TXOP threshold */
6774 if (!(tx_info->flags & IEEE80211_TX_CTL_AMPDU) && frag == 0) {
6775 frag_dur =
6776 brcms_c_calc_frame_time(wlc, rspec[0],
6777 preamble_type[0], phylen);
6778
6779 if (rts) {
6780 /* 1 RTS or CTS-to-self frame */
6781 dur =
6782 brcms_c_calc_cts_time(wlc, rts_rspec[0],
6783 rts_preamble_type[0]);
6784 dur_fallback =
6785 brcms_c_calc_cts_time(wlc, rts_rspec[1],
6786 rts_preamble_type[1]);
6787 /* (SIFS + CTS) + SIFS + frame + SIFS + ACK */
6788 dur += le16_to_cpu(rts->duration);
6789 dur_fallback +=
6790 le16_to_cpu(txh->RTSDurFallback);
6791 } else if (use_rifs) {
6792 dur = frag_dur;
6793 dur_fallback = 0;
6794 } else {
6795 /* frame + SIFS + ACK */
6796 dur = frag_dur;
6797 dur +=
6798 brcms_c_compute_frame_dur(wlc, rspec[0],
6799 preamble_type[0], 0);
6800
6801 dur_fallback =
6802 brcms_c_calc_frame_time(wlc, rspec[1],
6803 preamble_type[1],
6804 phylen);
6805 dur_fallback +=
6806 brcms_c_compute_frame_dur(wlc, rspec[1],
6807 preamble_type[1], 0);
6808 }
6809 /* NEED to set TxFesTimeNormal (hard) */
6810 txh->TxFesTimeNormal = cpu_to_le16((u16) dur);
6811 /*
6812 * NEED to set fallback rate version of
6813 * TxFesTimeNormal (hard)
6814 */
6815 txh->TxFesTimeFallback =
6816 cpu_to_le16((u16) dur_fallback);
6817
6818 /*
6819 * update txop byte threshold (txop minus intraframe
6820 * overhead)
6821 */
6822 if (wlc->edcf_txop[ac] >= (dur - frag_dur)) {
6823 uint newfragthresh;
6824
6825 newfragthresh =
6826 brcms_c_calc_frame_len(wlc,
6827 rspec[0], preamble_type[0],
6828 (wlc->edcf_txop[ac] -
6829 (dur - frag_dur)));
6830 /* range bound the fragthreshold */
6831 if (newfragthresh < DOT11_MIN_FRAG_LEN)
6832 newfragthresh =
6833 DOT11_MIN_FRAG_LEN;
6834 else if (newfragthresh >
6835 wlc->usr_fragthresh)
6836 newfragthresh =
6837 wlc->usr_fragthresh;
6838 /* update the fragthresh and do txc update */
6839 if (wlc->fragthresh[queue] !=
6840 (u16) newfragthresh)
6841 wlc->fragthresh[queue] =
6842 (u16) newfragthresh;
6843 } else {
Joe Perchese81c7e92013-02-13 17:33:20 -08006844 brcms_warn(wlc->hw->d11core,
6845 "wl%d: %s txop invalid for rate %d\n",
6846 wlc->pub->unit, fifo_names[queue],
6847 rspec2rate(rspec[0]));
Arend van Spriel5b435de2011-10-05 13:19:03 +02006848 }
6849
6850 if (dur > wlc->edcf_txop[ac])
Joe Perchese81c7e92013-02-13 17:33:20 -08006851 brcms_warn(wlc->hw->d11core,
6852 "wl%d: %s: %s txop exceeded phylen %d/%d dur %d/%d\n",
6853 wlc->pub->unit, __func__,
6854 fifo_names[queue],
6855 phylen, wlc->fragthresh[queue],
6856 dur, wlc->edcf_txop[ac]);
Arend van Spriel5b435de2011-10-05 13:19:03 +02006857 }
6858 }
6859
6860 return 0;
6861}
6862
Seth Forsheee041f652012-11-15 08:07:56 -06006863static int brcms_c_tx(struct brcms_c_info *wlc, struct sk_buff *skb)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006864{
Seth Forsheee041f652012-11-15 08:07:56 -06006865 struct dma_pub *dma;
6866 int fifo, ret = -ENOSPC;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006867 struct d11txh *txh;
Seth Forsheee041f652012-11-15 08:07:56 -06006868 u16 frameid = INVALIDFID;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006869
Seth Forsheee041f652012-11-15 08:07:56 -06006870 fifo = brcms_ac_to_fifo(skb_get_queue_mapping(skb));
6871 dma = wlc->hw->di[fifo];
6872 txh = (struct d11txh *)(skb->data);
6873
6874 if (dma->txavail == 0) {
6875 /*
6876 * We sometimes get a frame from mac80211 after stopping
6877 * the queues. This only ever seems to be a single frame
6878 * and is seems likely to be a race. TX_HEADROOM should
6879 * ensure that we have enough space to handle these stray
6880 * packets, so warn if there isn't. If we're out of space
6881 * in the tx ring and the tx queue isn't stopped then
6882 * we've really got a bug; warn loudly if that happens.
6883 */
Seth Forsheeb353dda2012-11-15 08:08:03 -06006884 brcms_warn(wlc->hw->d11core,
Seth Forsheee041f652012-11-15 08:07:56 -06006885 "Received frame for tx with no space in DMA ring\n");
6886 WARN_ON(!ieee80211_queue_stopped(wlc->pub->ieee_hw,
6887 skb_get_queue_mapping(skb)));
6888 return -ENOSPC;
6889 }
Arend van Spriel5b435de2011-10-05 13:19:03 +02006890
6891 /* When a BC/MC frame is being committed to the BCMC fifo
6892 * via DMA (NOT PIO), update ucode or BSS info as appropriate.
6893 */
6894 if (fifo == TX_BCMC_FIFO)
6895 frameid = le16_to_cpu(txh->TxFrameID);
6896
Arend van Spriel5b435de2011-10-05 13:19:03 +02006897 /* Commit BCMC sequence number in the SHM frame ID location */
6898 if (frameid != INVALIDFID) {
6899 /*
6900 * To inform the ucode of the last mcast frame posted
6901 * so that it can clear moredata bit
6902 */
6903 brcms_b_write_shm(wlc->hw, M_BCMC_FID, frameid);
6904 }
6905
Seth Forsheee041f652012-11-15 08:07:56 -06006906 ret = brcms_c_txfifo(wlc, fifo, skb);
6907 /*
6908 * The only reason for brcms_c_txfifo to fail is because
6909 * there weren't any DMA descriptors, but we've already
6910 * checked for that. So if it does fail yell loudly.
6911 */
6912 WARN_ON_ONCE(ret);
6913
6914 return ret;
6915}
6916
Piotr Haberc4dea352012-11-28 21:44:05 +01006917bool brcms_c_sendpkt_mac80211(struct brcms_c_info *wlc, struct sk_buff *sdu,
Seth Forsheee041f652012-11-15 08:07:56 -06006918 struct ieee80211_hw *hw)
6919{
6920 uint fifo;
6921 struct scb *scb = &wlc->pri_scb;
6922
6923 fifo = brcms_ac_to_fifo(skb_get_queue_mapping(sdu));
Piotr Haberc4dea352012-11-28 21:44:05 +01006924 brcms_c_d11hdrs_mac80211(wlc, hw, sdu, scb, 0, 1, fifo, 0);
6925 if (!brcms_c_tx(wlc, sdu))
6926 return true;
6927
6928 /* packet discarded */
6929 dev_kfree_skb_any(sdu);
6930 return false;
Seth Forsheee041f652012-11-15 08:07:56 -06006931}
6932
6933int
6934brcms_c_txfifo(struct brcms_c_info *wlc, uint fifo, struct sk_buff *p)
6935{
6936 struct dma_pub *dma = wlc->hw->di[fifo];
6937 int ret;
6938 u16 queue;
6939
6940 ret = dma_txfast(wlc, dma, p);
6941 if (ret < 0)
Arend van Spriel5b435de2011-10-05 13:19:03 +02006942 wiphy_err(wlc->wiphy, "txfifo: fatal, toss frames !!!\n");
Seth Forsheee041f652012-11-15 08:07:56 -06006943
6944 /*
6945 * Stop queue if DMA ring is full. Reserve some free descriptors,
6946 * as we sometimes receive a frame from mac80211 after the queues
6947 * are stopped.
6948 */
6949 queue = skb_get_queue_mapping(p);
6950 if (dma->txavail <= TX_HEADROOM && fifo < TX_BCMC_FIFO &&
6951 !ieee80211_queue_stopped(wlc->pub->ieee_hw, queue))
6952 ieee80211_stop_queue(wlc->pub->ieee_hw, queue);
6953
6954 return ret;
Arend van Spriel5b435de2011-10-05 13:19:03 +02006955}
6956
Arend van Spriel5b435de2011-10-05 13:19:03 +02006957u32
6958brcms_c_rspec_to_rts_rspec(struct brcms_c_info *wlc, u32 rspec,
6959 bool use_rspec, u16 mimo_ctlchbw)
6960{
6961 u32 rts_rspec = 0;
6962
6963 if (use_rspec)
6964 /* use frame rate as rts rate */
6965 rts_rspec = rspec;
6966 else if (wlc->band->gmode && wlc->protection->_g && !is_cck_rate(rspec))
6967 /* Use 11Mbps as the g protection RTS target rate and fallback.
6968 * Use the brcms_basic_rate() lookup to find the best basic rate
6969 * under the target in case 11 Mbps is not Basic.
6970 * 6 and 9 Mbps are not usually selected by rate selection, but
6971 * even if the OFDM rate we are protecting is 6 or 9 Mbps, 11
6972 * is more robust.
6973 */
6974 rts_rspec = brcms_basic_rate(wlc, BRCM_RATE_11M);
6975 else
6976 /* calculate RTS rate and fallback rate based on the frame rate
6977 * RTS must be sent at a basic rate since it is a
6978 * control frame, sec 9.6 of 802.11 spec
6979 */
6980 rts_rspec = brcms_basic_rate(wlc, rspec);
6981
6982 if (BRCMS_PHY_11N_CAP(wlc->band)) {
6983 /* set rts txbw to correct side band */
6984 rts_rspec &= ~RSPEC_BW_MASK;
6985
6986 /*
6987 * if rspec/rspec_fallback is 40MHz, then send RTS on both
6988 * 20MHz channel (DUP), otherwise send RTS on control channel
6989 */
6990 if (rspec_is40mhz(rspec) && !is_cck_rate(rts_rspec))
6991 rts_rspec |= (PHY_TXC1_BW_40MHZ_DUP << RSPEC_BW_SHIFT);
6992 else
6993 rts_rspec |= (mimo_ctlchbw << RSPEC_BW_SHIFT);
6994
6995 /* pick siso/cdd as default for ofdm */
6996 if (is_ofdm_rate(rts_rspec)) {
6997 rts_rspec &= ~RSPEC_STF_MASK;
6998 rts_rspec |= (wlc->stf->ss_opmode << RSPEC_STF_SHIFT);
6999 }
7000 }
7001 return rts_rspec;
7002}
7003
Arend van Spriel5b435de2011-10-05 13:19:03 +02007004/* Update beacon listen interval in shared memory */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007005static void brcms_c_bcn_li_upd(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02007006{
7007 /* wake up every DTIM is the default */
7008 if (wlc->bcn_li_dtim == 1)
7009 brcms_b_write_shm(wlc->hw, M_BCN_LI, 0);
7010 else
7011 brcms_b_write_shm(wlc->hw, M_BCN_LI,
7012 (wlc->bcn_li_dtim << 8) | wlc->bcn_li_bcn);
7013}
7014
7015static void
7016brcms_b_read_tsf(struct brcms_hardware *wlc_hw, u32 *tsf_l_ptr,
7017 u32 *tsf_h_ptr)
7018{
Arend van Spriel16d28122011-12-08 15:06:51 -08007019 struct bcma_device *core = wlc_hw->d11core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02007020
7021 /* read the tsf timer low, then high to get an atomic read */
Arend van Spriel16d28122011-12-08 15:06:51 -08007022 *tsf_l_ptr = bcma_read32(core, D11REGOFFS(tsf_timerlow));
7023 *tsf_h_ptr = bcma_read32(core, D11REGOFFS(tsf_timerhigh));
Arend van Spriel5b435de2011-10-05 13:19:03 +02007024}
7025
7026/*
7027 * recover 64bit TSF value from the 16bit TSF value in the rx header
7028 * given the assumption that the TSF passed in header is within 65ms
7029 * of the current tsf.
7030 *
7031 * 6 5 4 4 3 2 1
7032 * 3.......6.......8.......0.......2.......4.......6.......8......0
7033 * |<---------- tsf_h ----------->||<--- tsf_l -->||<-RxTSFTime ->|
7034 *
7035 * The RxTSFTime are the lowest 16 bits and provided by the ucode. The
7036 * tsf_l is filled in by brcms_b_recv, which is done earlier in the
7037 * receive call sequence after rx interrupt. Only the higher 16 bits
7038 * are used. Finally, the tsf_h is read from the tsf register.
7039 */
7040static u64 brcms_c_recover_tsf64(struct brcms_c_info *wlc,
7041 struct d11rxhdr *rxh)
7042{
7043 u32 tsf_h, tsf_l;
7044 u16 rx_tsf_0_15, rx_tsf_16_31;
7045
7046 brcms_b_read_tsf(wlc->hw, &tsf_l, &tsf_h);
7047
7048 rx_tsf_16_31 = (u16)(tsf_l >> 16);
7049 rx_tsf_0_15 = rxh->RxTSFTime;
7050
7051 /*
7052 * a greater tsf time indicates the low 16 bits of
7053 * tsf_l wrapped, so decrement the high 16 bits.
7054 */
7055 if ((u16)tsf_l < rx_tsf_0_15) {
7056 rx_tsf_16_31 -= 1;
7057 if (rx_tsf_16_31 == 0xffff)
7058 tsf_h -= 1;
7059 }
7060
7061 return ((u64)tsf_h << 32) | (((u32)rx_tsf_16_31 << 16) + rx_tsf_0_15);
7062}
7063
7064static void
7065prep_mac80211_status(struct brcms_c_info *wlc, struct d11rxhdr *rxh,
7066 struct sk_buff *p,
7067 struct ieee80211_rx_status *rx_status)
7068{
7069 int preamble;
7070 int channel;
7071 u32 rspec;
7072 unsigned char *plcp;
7073
7074 /* fill in TSF and flag its presence */
7075 rx_status->mactime = brcms_c_recover_tsf64(wlc, rxh);
Thomas Pedersenf4bda332012-11-13 10:46:27 -08007076 rx_status->flag |= RX_FLAG_MACTIME_START;
Arend van Spriel5b435de2011-10-05 13:19:03 +02007077
7078 channel = BRCMS_CHAN_CHANNEL(rxh->RxChan);
7079
Johannes Berg858a4552012-07-24 17:35:57 +02007080 rx_status->band =
7081 channel > 14 ? IEEE80211_BAND_5GHZ : IEEE80211_BAND_2GHZ;
7082 rx_status->freq =
7083 ieee80211_channel_to_frequency(channel, rx_status->band);
Arend van Spriel5b435de2011-10-05 13:19:03 +02007084
7085 rx_status->signal = wlc_phy_rssi_compute(wlc->hw->band->pi, rxh);
7086
7087 /* noise */
7088 /* qual */
7089 rx_status->antenna =
7090 (rxh->PhyRxStatus_0 & PRXS0_RXANT_UPSUBBAND) ? 1 : 0;
7091
7092 plcp = p->data;
7093
7094 rspec = brcms_c_compute_rspec(rxh, plcp);
7095 if (is_mcs_rate(rspec)) {
7096 rx_status->rate_idx = rspec & RSPEC_RATE_MASK;
7097 rx_status->flag |= RX_FLAG_HT;
7098 if (rspec_is40mhz(rspec))
7099 rx_status->flag |= RX_FLAG_40MHZ;
7100 } else {
7101 switch (rspec2rate(rspec)) {
7102 case BRCM_RATE_1M:
7103 rx_status->rate_idx = 0;
7104 break;
7105 case BRCM_RATE_2M:
7106 rx_status->rate_idx = 1;
7107 break;
7108 case BRCM_RATE_5M5:
7109 rx_status->rate_idx = 2;
7110 break;
7111 case BRCM_RATE_11M:
7112 rx_status->rate_idx = 3;
7113 break;
7114 case BRCM_RATE_6M:
7115 rx_status->rate_idx = 4;
7116 break;
7117 case BRCM_RATE_9M:
7118 rx_status->rate_idx = 5;
7119 break;
7120 case BRCM_RATE_12M:
7121 rx_status->rate_idx = 6;
7122 break;
7123 case BRCM_RATE_18M:
7124 rx_status->rate_idx = 7;
7125 break;
7126 case BRCM_RATE_24M:
7127 rx_status->rate_idx = 8;
7128 break;
7129 case BRCM_RATE_36M:
7130 rx_status->rate_idx = 9;
7131 break;
7132 case BRCM_RATE_48M:
7133 rx_status->rate_idx = 10;
7134 break;
7135 case BRCM_RATE_54M:
7136 rx_status->rate_idx = 11;
7137 break;
7138 default:
Seth Forsheeb353dda2012-11-15 08:08:03 -06007139 brcms_err(wlc->hw->d11core,
7140 "%s: Unknown rate\n", __func__);
Arend van Spriel5b435de2011-10-05 13:19:03 +02007141 }
7142
7143 /*
7144 * For 5GHz, we should decrease the index as it is
7145 * a subset of the 2.4G rates. See bitrates field
7146 * of brcms_band_5GHz_nphy (in mac80211_if.c).
7147 */
7148 if (rx_status->band == IEEE80211_BAND_5GHZ)
7149 rx_status->rate_idx -= BRCMS_LEGACY_5G_RATE_OFFSET;
7150
7151 /* Determine short preamble and rate_idx */
7152 preamble = 0;
7153 if (is_cck_rate(rspec)) {
7154 if (rxh->PhyRxStatus_0 & PRXS0_SHORTH)
7155 rx_status->flag |= RX_FLAG_SHORTPRE;
7156 } else if (is_ofdm_rate(rspec)) {
7157 rx_status->flag |= RX_FLAG_SHORTPRE;
7158 } else {
Seth Forsheeb353dda2012-11-15 08:08:03 -06007159 brcms_err(wlc->hw->d11core, "%s: Unknown modulation\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02007160 __func__);
7161 }
7162 }
7163
7164 if (plcp3_issgi(plcp[3]))
7165 rx_status->flag |= RX_FLAG_SHORT_GI;
7166
7167 if (rxh->RxStatus1 & RXS_DECERR) {
7168 rx_status->flag |= RX_FLAG_FAILED_PLCP_CRC;
Seth Forsheeb353dda2012-11-15 08:08:03 -06007169 brcms_err(wlc->hw->d11core, "%s: RX_FLAG_FAILED_PLCP_CRC\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02007170 __func__);
7171 }
7172 if (rxh->RxStatus1 & RXS_FCSERR) {
7173 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
Seth Forsheeb353dda2012-11-15 08:08:03 -06007174 brcms_err(wlc->hw->d11core, "%s: RX_FLAG_FAILED_FCS_CRC\n",
Arend van Spriel5b435de2011-10-05 13:19:03 +02007175 __func__);
7176 }
7177}
7178
7179static void
7180brcms_c_recvctl(struct brcms_c_info *wlc, struct d11rxhdr *rxh,
7181 struct sk_buff *p)
7182{
7183 int len_mpdu;
7184 struct ieee80211_rx_status rx_status;
Arend van Sprielbadc4f02012-04-11 11:52:51 +02007185 struct ieee80211_hdr *hdr;
Arend van Spriel5b435de2011-10-05 13:19:03 +02007186
7187 memset(&rx_status, 0, sizeof(rx_status));
7188 prep_mac80211_status(wlc, rxh, p, &rx_status);
7189
7190 /* mac header+body length, exclude CRC and plcp header */
7191 len_mpdu = p->len - D11_PHY_HDR_LEN - FCS_LEN;
7192 skb_pull(p, D11_PHY_HDR_LEN);
7193 __skb_trim(p, len_mpdu);
7194
Arend van Sprielbadc4f02012-04-11 11:52:51 +02007195 /* unmute transmit */
7196 if (wlc->hw->suspended_fifos) {
7197 hdr = (struct ieee80211_hdr *)p->data;
7198 if (ieee80211_is_beacon(hdr->frame_control))
7199 brcms_b_mute(wlc->hw, false);
7200 }
7201
Arend van Spriel5b435de2011-10-05 13:19:03 +02007202 memcpy(IEEE80211_SKB_RXCB(p), &rx_status, sizeof(rx_status));
7203 ieee80211_rx_irqsafe(wlc->pub->ieee_hw, p);
7204}
7205
Arend van Spriel5b435de2011-10-05 13:19:03 +02007206/* calculate frame duration for Mixed-mode L-SIG spoofing, return
7207 * number of bytes goes in the length field
7208 *
7209 * Formula given by HT PHY Spec v 1.13
7210 * len = 3(nsyms + nstream + 3) - 3
7211 */
7212u16
7213brcms_c_calc_lsig_len(struct brcms_c_info *wlc, u32 ratespec,
7214 uint mac_len)
7215{
7216 uint nsyms, len = 0, kNdps;
7217
Arend van Spriel5b435de2011-10-05 13:19:03 +02007218 if (is_mcs_rate(ratespec)) {
7219 uint mcs = ratespec & RSPEC_RATE_MASK;
7220 int tot_streams = (mcs_2_txstreams(mcs) + 1) +
7221 rspec_stc(ratespec);
7222
7223 /*
7224 * the payload duration calculation matches that
7225 * of regular ofdm
7226 */
7227 /* 1000Ndbps = kbps * 4 */
7228 kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec),
7229 rspec_issgi(ratespec)) * 4;
7230
7231 if (rspec_stc(ratespec) == 0)
7232 nsyms =
7233 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
7234 APHY_TAIL_NBITS) * 1000, kNdps);
7235 else
7236 /* STBC needs to have even number of symbols */
7237 nsyms =
7238 2 *
7239 CEIL((APHY_SERVICE_NBITS + 8 * mac_len +
7240 APHY_TAIL_NBITS) * 1000, 2 * kNdps);
7241
7242 /* (+3) account for HT-SIG(2) and HT-STF(1) */
7243 nsyms += (tot_streams + 3);
7244 /*
7245 * 3 bytes/symbol @ legacy 6Mbps rate
7246 * (-3) excluding service bits and tail bits
7247 */
7248 len = (3 * nsyms) - 3;
7249 }
7250
7251 return (u16) len;
7252}
7253
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007254static void
7255brcms_c_mod_prb_rsp_rate_table(struct brcms_c_info *wlc, uint frame_len)
Arend van Spriel5b435de2011-10-05 13:19:03 +02007256{
7257 const struct brcms_c_rateset *rs_dflt;
7258 struct brcms_c_rateset rs;
7259 u8 rate;
7260 u16 entry_ptr;
7261 u8 plcp[D11_PHY_HDR_LEN];
7262 u16 dur, sifs;
7263 uint i;
7264
7265 sifs = get_sifs(wlc->band);
7266
7267 rs_dflt = brcms_c_rateset_get_hwrs(wlc);
7268
7269 brcms_c_rateset_copy(rs_dflt, &rs);
7270 brcms_c_rateset_mcs_upd(&rs, wlc->stf->txstreams);
7271
7272 /*
7273 * walk the phy rate table and update MAC core SHM
7274 * basic rate table entries
7275 */
7276 for (i = 0; i < rs.count; i++) {
7277 rate = rs.rates[i] & BRCMS_RATE_MASK;
7278
7279 entry_ptr = brcms_b_rate_shm_offset(wlc->hw, rate);
7280
7281 /* Calculate the Probe Response PLCP for the given rate */
7282 brcms_c_compute_plcp(wlc, rate, frame_len, plcp);
7283
7284 /*
7285 * Calculate the duration of the Probe Response
7286 * frame plus SIFS for the MAC
7287 */
7288 dur = (u16) brcms_c_calc_frame_time(wlc, rate,
7289 BRCMS_LONG_PREAMBLE, frame_len);
7290 dur += sifs;
7291
7292 /* Update the SHM Rate Table entry Probe Response values */
7293 brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_PLCP_POS,
7294 (u16) (plcp[0] + (plcp[1] << 8)));
7295 brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_PLCP_POS + 2,
7296 (u16) (plcp[2] + (plcp[3] << 8)));
7297 brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_DUR_POS, dur);
7298 }
7299}
7300
7301/* Max buffering needed for beacon template/prb resp template is 142 bytes.
7302 *
7303 * PLCP header is 6 bytes.
7304 * 802.11 A3 header is 24 bytes.
7305 * Max beacon frame body template length is 112 bytes.
7306 * Max probe resp frame body template length is 110 bytes.
7307 *
7308 * *len on input contains the max length of the packet available.
7309 *
7310 * The *len value is set to the number of bytes in buf used, and starts
7311 * with the PLCP and included up to, but not including, the 4 byte FCS.
7312 */
7313static void
7314brcms_c_bcn_prb_template(struct brcms_c_info *wlc, u16 type,
7315 u32 bcn_rspec,
7316 struct brcms_bss_cfg *cfg, u16 *buf, int *len)
7317{
7318 static const u8 ether_bcast[ETH_ALEN] = {255, 255, 255, 255, 255, 255};
7319 struct cck_phy_hdr *plcp;
7320 struct ieee80211_mgmt *h;
7321 int hdr_len, body_len;
7322
7323 hdr_len = D11_PHY_HDR_LEN + DOT11_MAC_HDR_LEN;
7324
7325 /* calc buffer size provided for frame body */
7326 body_len = *len - hdr_len;
7327 /* return actual size */
7328 *len = hdr_len + body_len;
7329
7330 /* format PHY and MAC headers */
Joe Perchesb56e6812013-02-13 17:33:21 -08007331 memset(buf, 0, hdr_len);
Arend van Spriel5b435de2011-10-05 13:19:03 +02007332
7333 plcp = (struct cck_phy_hdr *) buf;
7334
7335 /*
7336 * PLCP for Probe Response frames are filled in from
7337 * core's rate table
7338 */
7339 if (type == IEEE80211_STYPE_BEACON)
7340 /* fill in PLCP */
7341 brcms_c_compute_plcp(wlc, bcn_rspec,
7342 (DOT11_MAC_HDR_LEN + body_len + FCS_LEN),
7343 (u8 *) plcp);
7344
7345 /* "Regular" and 16 MBSS but not for 4 MBSS */
7346 /* Update the phytxctl for the beacon based on the rspec */
7347 brcms_c_beacon_phytxctl_txant_upd(wlc, bcn_rspec);
7348
7349 h = (struct ieee80211_mgmt *)&plcp[1];
7350
7351 /* fill in 802.11 header */
7352 h->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | type);
7353
7354 /* DUR is 0 for multicast bcn, or filled in by MAC for prb resp */
7355 /* A1 filled in by MAC for prb resp, broadcast for bcn */
7356 if (type == IEEE80211_STYPE_BEACON)
7357 memcpy(&h->da, &ether_bcast, ETH_ALEN);
7358 memcpy(&h->sa, &cfg->cur_etheraddr, ETH_ALEN);
7359 memcpy(&h->bssid, &cfg->BSSID, ETH_ALEN);
7360
7361 /* SEQ filled in by MAC */
7362}
7363
7364int brcms_c_get_header_len(void)
7365{
7366 return TXOFF;
7367}
7368
7369/*
7370 * Update all beacons for the system.
7371 */
7372void brcms_c_update_beacon(struct brcms_c_info *wlc)
7373{
7374 struct brcms_bss_cfg *bsscfg = wlc->bsscfg;
7375
Hauke Mehrtens7a6c0b12013-03-24 01:45:54 +01007376 if (wlc->pub->up && (bsscfg->type == BRCMS_TYPE_AP ||
7377 bsscfg->type == BRCMS_TYPE_ADHOC))
Arend van Spriel5b435de2011-10-05 13:19:03 +02007378 /* Clear the soft intmask */
7379 wlc->defmacintmask &= ~MI_BCNTPL;
7380}
7381
7382/* Write ssid into shared memory */
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007383static void
7384brcms_c_shm_ssid_upd(struct brcms_c_info *wlc, struct brcms_bss_cfg *cfg)
Arend van Spriel5b435de2011-10-05 13:19:03 +02007385{
7386 u8 *ssidptr = cfg->SSID;
7387 u16 base = M_SSID;
7388 u8 ssidbuf[IEEE80211_MAX_SSID_LEN];
7389
7390 /* padding the ssid with zero and copy it into shm */
7391 memset(ssidbuf, 0, IEEE80211_MAX_SSID_LEN);
7392 memcpy(ssidbuf, ssidptr, cfg->SSID_len);
7393
7394 brcms_c_copyto_shm(wlc, base, ssidbuf, IEEE80211_MAX_SSID_LEN);
7395 brcms_b_write_shm(wlc->hw, M_SSIDLEN, (u16) cfg->SSID_len);
7396}
7397
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007398static void
Arend van Spriel5b435de2011-10-05 13:19:03 +02007399brcms_c_bss_update_probe_resp(struct brcms_c_info *wlc,
7400 struct brcms_bss_cfg *cfg,
7401 bool suspend)
7402{
Tim Gardner0d61c912013-02-07 13:28:09 -07007403 u16 *prb_resp;
Arend van Spriel5b435de2011-10-05 13:19:03 +02007404 int len = BCN_TMPL_LEN;
7405
Tim Gardner0d61c912013-02-07 13:28:09 -07007406 prb_resp = kmalloc(BCN_TMPL_LEN, GFP_ATOMIC);
7407 if (!prb_resp)
7408 return;
7409
Arend van Spriel5b435de2011-10-05 13:19:03 +02007410 /*
7411 * write the probe response to hardware, or save in
7412 * the config structure
7413 */
7414
7415 /* create the probe response template */
7416 brcms_c_bcn_prb_template(wlc, IEEE80211_STYPE_PROBE_RESP, 0,
7417 cfg, prb_resp, &len);
7418
7419 if (suspend)
7420 brcms_c_suspend_mac_and_wait(wlc);
7421
7422 /* write the probe response into the template region */
7423 brcms_b_write_template_ram(wlc->hw, T_PRS_TPL_BASE,
7424 (len + 3) & ~3, prb_resp);
7425
7426 /* write the length of the probe response frame (+PLCP/-FCS) */
7427 brcms_b_write_shm(wlc->hw, M_PRB_RESP_FRM_LEN, (u16) len);
7428
7429 /* write the SSID and SSID length */
7430 brcms_c_shm_ssid_upd(wlc, cfg);
7431
7432 /*
7433 * Write PLCP headers and durations for probe response frames
7434 * at all rates. Use the actual frame length covered by the
7435 * PLCP header for the call to brcms_c_mod_prb_rsp_rate_table()
7436 * by subtracting the PLCP len and adding the FCS.
7437 */
7438 len += (-D11_PHY_HDR_LEN + FCS_LEN);
7439 brcms_c_mod_prb_rsp_rate_table(wlc, (u16) len);
7440
7441 if (suspend)
7442 brcms_c_enable_mac(wlc);
Tim Gardner0d61c912013-02-07 13:28:09 -07007443
7444 kfree(prb_resp);
Arend van Spriel5b435de2011-10-05 13:19:03 +02007445}
7446
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007447void brcms_c_update_probe_resp(struct brcms_c_info *wlc, bool suspend)
7448{
7449 struct brcms_bss_cfg *bsscfg = wlc->bsscfg;
7450
7451 /* update AP or IBSS probe responses */
Hauke Mehrtens7a6c0b12013-03-24 01:45:54 +01007452 if (wlc->pub->up && (bsscfg->type == BRCMS_TYPE_AP ||
7453 bsscfg->type == BRCMS_TYPE_ADHOC))
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007454 brcms_c_bss_update_probe_resp(wlc, bsscfg, suspend);
7455}
7456
Arend van Spriel5b435de2011-10-05 13:19:03 +02007457int brcms_b_xmtfifo_sz_get(struct brcms_hardware *wlc_hw, uint fifo,
7458 uint *blocks)
7459{
7460 if (fifo >= NFIFO)
7461 return -EINVAL;
7462
7463 *blocks = wlc_hw->xmtfifo_sz[fifo];
7464
7465 return 0;
7466}
7467
7468void
7469brcms_c_set_addrmatch(struct brcms_c_info *wlc, int match_reg_offset,
7470 const u8 *addr)
7471{
7472 brcms_b_set_addrmatch(wlc->hw, match_reg_offset, addr);
7473 if (match_reg_offset == RCM_BSSID_OFFSET)
7474 memcpy(wlc->bsscfg->BSSID, addr, ETH_ALEN);
7475}
7476
Arend van Spriel5b435de2011-10-05 13:19:03 +02007477/*
7478 * Flag 'scan in progress' to withhold dynamic phy calibration
7479 */
7480void brcms_c_scan_start(struct brcms_c_info *wlc)
7481{
7482 wlc_phy_hold_upd(wlc->band->pi, PHY_HOLD_FOR_SCAN, true);
7483}
7484
7485void brcms_c_scan_stop(struct brcms_c_info *wlc)
7486{
7487 wlc_phy_hold_upd(wlc->band->pi, PHY_HOLD_FOR_SCAN, false);
7488}
7489
7490void brcms_c_associate_upd(struct brcms_c_info *wlc, bool state)
7491{
7492 wlc->pub->associated = state;
Arend van Spriel5b435de2011-10-05 13:19:03 +02007493}
7494
7495/*
7496 * When a remote STA/AP is removed by Mac80211, or when it can no longer accept
7497 * AMPDU traffic, packets pending in hardware have to be invalidated so that
7498 * when later on hardware releases them, they can be handled appropriately.
7499 */
7500void brcms_c_inval_dma_pkts(struct brcms_hardware *hw,
7501 struct ieee80211_sta *sta,
7502 void (*dma_callback_fn))
7503{
7504 struct dma_pub *dmah;
7505 int i;
7506 for (i = 0; i < NFIFO; i++) {
7507 dmah = hw->di[i];
7508 if (dmah != NULL)
7509 dma_walk_packets(dmah, dma_callback_fn, sta);
7510 }
7511}
7512
7513int brcms_c_get_curband(struct brcms_c_info *wlc)
7514{
7515 return wlc->band->bandunit;
7516}
7517
Arend van Spriel7b2385b2013-02-02 14:36:50 +01007518bool brcms_c_tx_flush_completed(struct brcms_c_info *wlc)
Arend van Spriel5b435de2011-10-05 13:19:03 +02007519{
Seth Forsheee041f652012-11-15 08:07:56 -06007520 int i;
Stanislaw Gruszkaf96b08a2012-01-17 12:38:50 +01007521
Seth Forsheee041f652012-11-15 08:07:56 -06007522 /* Kick DMA to send any pending AMPDU */
7523 for (i = 0; i < ARRAY_SIZE(wlc->hw->di); i++)
7524 if (wlc->hw->di[i])
Arend van Spriel7b2385b2013-02-02 14:36:50 +01007525 dma_kick_tx(wlc->hw->di[i]);
Arend van Spriel5b435de2011-10-05 13:19:03 +02007526
Arend van Spriel7b2385b2013-02-02 14:36:50 +01007527 return !brcms_txpktpendtot(wlc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02007528}
7529
7530void brcms_c_set_beacon_listen_interval(struct brcms_c_info *wlc, u8 interval)
7531{
7532 wlc->bcn_li_bcn = interval;
7533 if (wlc->pub->up)
7534 brcms_c_bcn_li_upd(wlc);
7535}
7536
Hauke Mehrtens39b2d362013-03-24 01:45:49 +01007537u64 brcms_c_tsf_get(struct brcms_c_info *wlc)
7538{
7539 u32 tsf_h, tsf_l;
7540 u64 tsf;
7541
7542 brcms_b_read_tsf(wlc->hw, &tsf_l, &tsf_h);
7543
7544 tsf = tsf_h;
7545 tsf <<= 32;
7546 tsf |= tsf_l;
7547
7548 return tsf;
7549}
7550
7551void brcms_c_tsf_set(struct brcms_c_info *wlc, u64 tsf)
7552{
7553 u32 tsf_h, tsf_l;
7554
7555 brcms_c_time_lock(wlc);
7556
7557 tsf_l = tsf;
7558 tsf_h = (tsf >> 32);
7559
7560 /* read the tsf timer low, then high to get an atomic read */
7561 bcma_write32(wlc->hw->d11core, D11REGOFFS(tsf_timerlow), tsf_l);
7562 bcma_write32(wlc->hw->d11core, D11REGOFFS(tsf_timerhigh), tsf_h);
7563
7564 brcms_c_time_unlock(wlc);
7565}
7566
Arend van Spriel5b435de2011-10-05 13:19:03 +02007567int brcms_c_set_tx_power(struct brcms_c_info *wlc, int txpwr)
7568{
7569 uint qdbm;
7570
7571 /* Remove override bit and clip to max qdbm value */
7572 qdbm = min_t(uint, txpwr * BRCMS_TXPWR_DB_FACTOR, 0xff);
7573 return wlc_phy_txpower_set(wlc->band->pi, qdbm, false);
7574}
7575
7576int brcms_c_get_tx_power(struct brcms_c_info *wlc)
7577{
7578 uint qdbm;
7579 bool override;
7580
7581 wlc_phy_txpower_get(wlc->band->pi, &qdbm, &override);
7582
7583 /* Return qdbm units */
7584 return (int)(qdbm / BRCMS_TXPWR_DB_FACTOR);
7585}
7586
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007587/* Process received frames */
7588/*
7589 * Return true if more frames need to be processed. false otherwise.
7590 * Param 'bound' indicates max. # frames to process before break out.
7591 */
7592static void brcms_c_recv(struct brcms_c_info *wlc, struct sk_buff *p)
7593{
7594 struct d11rxhdr *rxh;
7595 struct ieee80211_hdr *h;
7596 uint len;
7597 bool is_amsdu;
7598
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007599 /* frame starts with rxhdr */
7600 rxh = (struct d11rxhdr *) (p->data);
7601
7602 /* strip off rxhdr */
7603 skb_pull(p, BRCMS_HWRXOFF);
7604
7605 /* MAC inserts 2 pad bytes for a4 headers or QoS or A-MSDU subframes */
7606 if (rxh->RxStatus1 & RXS_PBPRES) {
7607 if (p->len < 2) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06007608 brcms_err(wlc->hw->d11core,
7609 "wl%d: recv: rcvd runt of len %d\n",
7610 wlc->pub->unit, p->len);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007611 goto toss;
7612 }
7613 skb_pull(p, 2);
7614 }
7615
7616 h = (struct ieee80211_hdr *)(p->data + D11_PHY_HDR_LEN);
7617 len = p->len;
7618
7619 if (rxh->RxStatus1 & RXS_FCSERR) {
Alwin Beukersbe667662011-11-22 17:21:43 -08007620 if (!(wlc->filter_flags & FIF_FCSFAIL))
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007621 goto toss;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007622 }
7623
7624 /* check received pkt has at least frame control field */
7625 if (len < D11_PHY_HDR_LEN + sizeof(h->frame_control))
7626 goto toss;
7627
7628 /* not supporting A-MSDU */
7629 is_amsdu = rxh->RxStatus2 & RXS_AMSDU_MASK;
7630 if (is_amsdu)
7631 goto toss;
7632
7633 brcms_c_recvctl(wlc, rxh, p);
7634 return;
7635
7636 toss:
7637 brcmu_pkt_buf_free_skb(p);
7638}
7639
7640/* Process received frames */
7641/*
7642 * Return true if more frames need to be processed. false otherwise.
7643 * Param 'bound' indicates max. # frames to process before break out.
7644 */
7645static bool
7646brcms_b_recv(struct brcms_hardware *wlc_hw, uint fifo, bool bound)
7647{
7648 struct sk_buff *p;
Arend van Spriel3fd172d2011-10-21 16:16:31 +02007649 struct sk_buff *next = NULL;
7650 struct sk_buff_head recv_frames;
7651
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007652 uint n = 0;
7653 uint bound_limit = bound ? RXBND : -1;
Geert Uytterhoevenc2397bb2012-12-22 22:07:14 +01007654 bool morepending = false;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007655
Arend van Spriel3fd172d2011-10-21 16:16:31 +02007656 skb_queue_head_init(&recv_frames);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007657
Arend van Spriel3fd172d2011-10-21 16:16:31 +02007658 /* gather received frames */
Piotr Haber57fe5042012-11-28 21:44:07 +01007659 do {
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007660 /* !give others some time to run! */
Piotr Haber57fe5042012-11-28 21:44:07 +01007661 if (n >= bound_limit)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007662 break;
Piotr Haber57fe5042012-11-28 21:44:07 +01007663
7664 morepending = dma_rx(wlc_hw->di[fifo], &recv_frames);
7665 n++;
7666 } while (morepending);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007667
7668 /* post more rbufs */
7669 dma_rxfill(wlc_hw->di[fifo]);
7670
7671 /* process each frame */
Arend van Spriel3fd172d2011-10-21 16:16:31 +02007672 skb_queue_walk_safe(&recv_frames, p, next) {
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007673 struct d11rxhdr_le *rxh_le;
7674 struct d11rxhdr *rxh;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007675
Arend van Spriel3fd172d2011-10-21 16:16:31 +02007676 skb_unlink(p, &recv_frames);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007677 rxh_le = (struct d11rxhdr_le *)p->data;
7678 rxh = (struct d11rxhdr *)p->data;
7679
7680 /* fixup rx header endianness */
7681 rxh->RxFrameSize = le16_to_cpu(rxh_le->RxFrameSize);
7682 rxh->PhyRxStatus_0 = le16_to_cpu(rxh_le->PhyRxStatus_0);
7683 rxh->PhyRxStatus_1 = le16_to_cpu(rxh_le->PhyRxStatus_1);
7684 rxh->PhyRxStatus_2 = le16_to_cpu(rxh_le->PhyRxStatus_2);
7685 rxh->PhyRxStatus_3 = le16_to_cpu(rxh_le->PhyRxStatus_3);
7686 rxh->PhyRxStatus_4 = le16_to_cpu(rxh_le->PhyRxStatus_4);
7687 rxh->PhyRxStatus_5 = le16_to_cpu(rxh_le->PhyRxStatus_5);
7688 rxh->RxStatus1 = le16_to_cpu(rxh_le->RxStatus1);
7689 rxh->RxStatus2 = le16_to_cpu(rxh_le->RxStatus2);
7690 rxh->RxTSFTime = le16_to_cpu(rxh_le->RxTSFTime);
7691 rxh->RxChan = le16_to_cpu(rxh_le->RxChan);
7692
7693 brcms_c_recv(wlc_hw->wlc, p);
7694 }
7695
Piotr Haber57fe5042012-11-28 21:44:07 +01007696 return morepending;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007697}
7698
7699/* second-level interrupt processing
7700 * Return true if another dpc needs to be re-scheduled. false otherwise.
7701 * Param 'bounded' indicates if applicable loops should be bounded.
7702 */
7703bool brcms_c_dpc(struct brcms_c_info *wlc, bool bounded)
7704{
7705 u32 macintstatus;
7706 struct brcms_hardware *wlc_hw = wlc->hw;
Arend van Spriel16d28122011-12-08 15:06:51 -08007707 struct bcma_device *core = wlc_hw->d11core;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007708
7709 if (brcms_deviceremoved(wlc)) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06007710 brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit,
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007711 __func__);
7712 brcms_down(wlc->wl);
7713 return false;
7714 }
7715
7716 /* grab and clear the saved software intstatus bits */
7717 macintstatus = wlc->macintstatus;
7718 wlc->macintstatus = 0;
7719
Seth Forshee229a41d2012-11-15 08:08:06 -06007720 brcms_dbg_int(core, "wl%d: macintstatus 0x%x\n",
7721 wlc_hw->unit, macintstatus);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007722
7723 WARN_ON(macintstatus & MI_PRQ); /* PRQ Interrupt in non-MBSS */
7724
7725 /* tx status */
7726 if (macintstatus & MI_TFS) {
7727 bool fatal;
7728 if (brcms_b_txstatus(wlc->hw, bounded, &fatal))
7729 wlc->macintstatus |= MI_TFS;
7730 if (fatal) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06007731 brcms_err(core, "MI_TFS: fatal\n");
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007732 goto fatal;
7733 }
7734 }
7735
7736 if (macintstatus & (MI_TBTT | MI_DTIM_TBTT))
7737 brcms_c_tbtt(wlc);
7738
7739 /* ATIM window end */
7740 if (macintstatus & MI_ATIMWINEND) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06007741 brcms_dbg_info(core, "end of ATIM window\n");
Arend van Spriel16d28122011-12-08 15:06:51 -08007742 bcma_set32(core, D11REGOFFS(maccommand), wlc->qvalid);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007743 wlc->qvalid = 0;
7744 }
7745
7746 /*
7747 * received data or control frame, MI_DMAINT is
7748 * indication of RX_FIFO interrupt
7749 */
7750 if (macintstatus & MI_DMAINT)
7751 if (brcms_b_recv(wlc_hw, RX_FIFO, bounded))
7752 wlc->macintstatus |= MI_DMAINT;
7753
7754 /* noise sample collected */
7755 if (macintstatus & MI_BG_NOISE)
7756 wlc_phy_noise_sample_intr(wlc_hw->band->pi);
7757
7758 if (macintstatus & MI_GP0) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06007759 brcms_err(core, "wl%d: PSM microcode watchdog fired at %d "
Arend van Sprielb2ffec42011-12-08 15:06:45 -08007760 "(seconds). Resetting.\n", wlc_hw->unit, wlc_hw->now);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007761
7762 printk_once("%s : PSM Watchdog, chipid 0x%x, chiprev 0x%x\n",
Arend van Sprielb2ffec42011-12-08 15:06:45 -08007763 __func__, ai_get_chip_id(wlc_hw->sih),
7764 ai_get_chiprev(wlc_hw->sih));
Roland Vossenc261bdf2011-10-18 14:03:04 +02007765 brcms_fatal_error(wlc_hw->wlc->wl);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007766 }
7767
7768 /* gptimer timeout */
7769 if (macintstatus & MI_TO)
Arend van Spriel16d28122011-12-08 15:06:51 -08007770 bcma_write32(core, D11REGOFFS(gptimer), 0);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007771
7772 if (macintstatus & MI_RFDISABLE) {
Seth Forsheeb353dda2012-11-15 08:08:03 -06007773 brcms_dbg_info(core, "wl%d: BMAC Detected a change on the"
7774 " RF Disable Input\n", wlc_hw->unit);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007775 brcms_rfkill_set_hw_state(wlc->wl);
7776 }
7777
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007778 /* it isn't done and needs to be resched if macintstatus is non-zero */
7779 return wlc->macintstatus != 0;
7780
7781 fatal:
Roland Vossenc261bdf2011-10-18 14:03:04 +02007782 brcms_fatal_error(wlc_hw->wlc->wl);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007783 return wlc->macintstatus != 0;
7784}
7785
Roland Vossendc460122011-10-21 16:16:28 +02007786void brcms_c_init(struct brcms_c_info *wlc, bool mute_tx)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007787{
Arend van Spriel16d28122011-12-08 15:06:51 -08007788 struct bcma_device *core = wlc->hw->d11core;
Seth Forshee91691292012-06-16 07:47:49 -05007789 struct ieee80211_channel *ch = wlc->pub->ieee_hw->conf.channel;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007790 u16 chanspec;
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007791
Seth Forsheeb353dda2012-11-15 08:08:03 -06007792 brcms_dbg_info(core, "wl%d\n", wlc->pub->unit);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007793
Seth Forshee91691292012-06-16 07:47:49 -05007794 chanspec = ch20mhz_chspec(ch->hw_value);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007795
Roland Vossena8bc4912011-10-21 16:16:25 +02007796 brcms_b_init(wlc->hw, chanspec);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007797
7798 /* update beacon listen interval */
7799 brcms_c_bcn_li_upd(wlc);
7800
7801 /* write ethernet address to core */
7802 brcms_c_set_mac(wlc->bsscfg);
7803 brcms_c_set_bssid(wlc->bsscfg);
7804
7805 /* Update tsf_cfprep if associated and up */
Hauke Mehrtens7a6c0b12013-03-24 01:45:54 +01007806 if (wlc->pub->associated && wlc->pub->up) {
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007807 u32 bi;
7808
7809 /* get beacon period and convert to uS */
7810 bi = wlc->bsscfg->current_bss->beacon_period << 10;
7811 /*
7812 * update since init path would reset
7813 * to default value
7814 */
Arend van Spriel16d28122011-12-08 15:06:51 -08007815 bcma_write32(core, D11REGOFFS(tsf_cfprep),
7816 bi << CFPREP_CBI_SHIFT);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007817
7818 /* Update maccontrol PM related bits */
7819 brcms_c_set_ps_ctrl(wlc);
7820 }
7821
7822 brcms_c_bandinit_ordered(wlc, chanspec);
7823
7824 /* init probe response timeout */
7825 brcms_b_write_shm(wlc->hw, M_PRS_MAXTIME, wlc->prb_resp_timeout);
7826
7827 /* init max burst txop (framebursting) */
7828 brcms_b_write_shm(wlc->hw, M_MBURST_TXOP,
7829 (wlc->
7830 _rifs ? (EDCF_AC_VO_TXOP_AP << 5) : MAXFRAMEBURST_TXOP));
7831
7832 /* initialize maximum allowed duty cycle */
7833 brcms_c_duty_cycle_set(wlc, wlc->tx_duty_cycle_ofdm, true, true);
7834 brcms_c_duty_cycle_set(wlc, wlc->tx_duty_cycle_cck, false, true);
7835
7836 /*
7837 * Update some shared memory locations related to
7838 * max AMPDU size allowed to received
7839 */
7840 brcms_c_ampdu_shm_upd(wlc->ampdu);
7841
7842 /* band-specific inits */
7843 brcms_c_bsinit(wlc);
7844
7845 /* Enable EDCF mode (while the MAC is suspended) */
Arend van Spriel16d28122011-12-08 15:06:51 -08007846 bcma_set16(core, D11REGOFFS(ifs_ctl), IFS_USEEDCF);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007847 brcms_c_edcf_setparams(wlc, false);
7848
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007849 /* read the ucode version if we have not yet done so */
7850 if (wlc->ucode_rev == 0) {
Hauke Mehrtens7626cf12013-02-24 16:41:34 +01007851 u16 rev;
7852 u16 patch;
7853
7854 rev = brcms_b_read_shm(wlc->hw, M_BOM_REV_MAJOR);
7855 patch = brcms_b_read_shm(wlc->hw, M_BOM_REV_MINOR);
7856 wlc->ucode_rev = (rev << NBITS(u16)) | patch;
7857 snprintf(wlc->wiphy->fw_version,
7858 sizeof(wlc->wiphy->fw_version), "%u.%u", rev, patch);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007859 }
7860
7861 /* ..now really unleash hell (allow the MAC out of suspend) */
7862 brcms_c_enable_mac(wlc);
7863
Roland Vossena8bc4912011-10-21 16:16:25 +02007864 /* suspend the tx fifos and mute the phy for preism cac time */
7865 if (mute_tx)
Roland Vossenc6c44892011-10-21 16:16:26 +02007866 brcms_b_mute(wlc->hw, true);
Roland Vossena8bc4912011-10-21 16:16:25 +02007867
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007868 /* enable the RF Disable Delay timer */
Arend van Spriel16d28122011-12-08 15:06:51 -08007869 bcma_write32(core, D11REGOFFS(rfdisabledly), RFDISABLE_DEFAULT);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007870
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007871 /*
7872 * Initialize WME parameters; if they haven't been set by some other
7873 * mechanism (IOVar, etc) then read them from the hardware.
7874 */
7875 if (GFIELD(wlc->wme_retries[0], EDCF_SHORT) == 0) {
7876 /* Uninitialized; read from HW */
7877 int ac;
7878
Arend van Sprielb7eec422011-11-10 20:30:18 +01007879 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007880 wlc->wme_retries[ac] =
7881 brcms_b_read_shm(wlc->hw, M_AC_TXLMT_ADDR(ac));
7882 }
7883}
7884
7885/*
7886 * The common driver entry routine. Error codes should be unique
7887 */
7888struct brcms_c_info *
Arend van Sprielb63337a2011-12-08 15:06:47 -08007889brcms_c_attach(struct brcms_info *wl, struct bcma_device *core, uint unit,
7890 bool piomode, uint *perr)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007891{
7892 struct brcms_c_info *wlc;
7893 uint err = 0;
7894 uint i, j;
7895 struct brcms_pub *pub;
7896
7897 /* allocate struct brcms_c_info state and its substructures */
Joe Perches2c208892012-06-04 12:44:17 +00007898 wlc = brcms_c_attach_malloc(unit, &err, 0);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007899 if (wlc == NULL)
7900 goto fail;
7901 wlc->wiphy = wl->wiphy;
7902 pub = wlc->pub;
7903
Joe Perches8ae74652012-01-15 00:38:38 -08007904#if defined(DEBUG)
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007905 wlc_info_dbg = wlc;
7906#endif
7907
7908 wlc->band = wlc->bandstate[0];
7909 wlc->core = wlc->corestate;
7910 wlc->wl = wl;
7911 pub->unit = unit;
7912 pub->_piomode = piomode;
7913 wlc->bandinit_pending = false;
7914
7915 /* populate struct brcms_c_info with default values */
7916 brcms_c_info_init(wlc, unit);
7917
7918 /* update sta/ap related parameters */
7919 brcms_c_ap_upd(wlc);
7920
7921 /*
7922 * low level attach steps(all hw accesses go
7923 * inside, no more in rest of the attach)
7924 */
Arend van Sprielb63337a2011-12-08 15:06:47 -08007925 err = brcms_b_attach(wlc, core, unit, piomode);
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02007926 if (err)
7927 goto fail;
7928
7929 brcms_c_protection_upd(wlc, BRCMS_PROT_N_PAM_OVR, OFF);
7930
7931 pub->phy_11ncapable = BRCMS_PHY_11N_CAP(wlc->band);
7932
7933 /* disable allowed duty cycle */
7934 wlc->tx_duty_cycle_ofdm = 0;
7935 wlc->tx_duty_cycle_cck = 0;
7936
7937 brcms_c_stf_phy_chain_calc(wlc);
7938
7939 /* txchain 1: txant 0, txchain 2: txant 1 */
7940 if (BRCMS_ISNPHY(wlc->band) && (wlc->stf->txstreams == 1))
7941 wlc->stf->txant = wlc->stf->hw_txchain - 1;
7942
7943 /* push to BMAC driver */
7944 wlc_phy_stf_chain_init(wlc->band->pi, wlc->stf->hw_txchain,
7945 wlc->stf->hw_rxchain);
7946
7947 /* pull up some info resulting from the low attach */
7948 for (i = 0; i < NFIFO; i++)
7949 wlc->core->txavail[i] = wlc->hw->txavail[i];
7950
7951 memcpy(&wlc->perm_etheraddr, &wlc->hw->etheraddr, ETH_ALEN);
7952 memcpy(&pub->cur_etheraddr, &wlc->hw->etheraddr, ETH_ALEN);
7953
7954 for (j = 0; j < wlc->pub->_nbands; j++) {
7955 wlc->band = wlc->bandstate[j];
7956
7957 if (!brcms_c_attach_stf_ant_init(wlc)) {
7958 err = 24;
7959 goto fail;
7960 }
7961
7962 /* default contention windows size limits */
7963 wlc->band->CWmin = APHY_CWMIN;
7964 wlc->band->CWmax = PHY_CWMAX;
7965
7966 /* init gmode value */
7967 if (wlc->band->bandtype == BRCM_BAND_2G) {
7968 wlc->band->gmode = GMODE_AUTO;
7969 brcms_c_protection_upd(wlc, BRCMS_PROT_G_USER,
7970 wlc->band->gmode);
7971 }
7972
7973 /* init _n_enab supported mode */
7974 if (BRCMS_PHY_11N_CAP(wlc->band)) {
7975 pub->_n_enab = SUPPORT_11N;
7976 brcms_c_protection_upd(wlc, BRCMS_PROT_N_USER,
7977 ((pub->_n_enab ==
7978 SUPPORT_11N) ? WL_11N_2x2 :
7979 WL_11N_3x3));
7980 }
7981
7982 /* init per-band default rateset, depend on band->gmode */
7983 brcms_default_rateset(wlc, &wlc->band->defrateset);
7984
7985 /* fill in hw_rateset */
7986 brcms_c_rateset_filter(&wlc->band->defrateset,
7987 &wlc->band->hw_rateset, false,
7988 BRCMS_RATES_CCK_OFDM, BRCMS_RATE_MASK,
7989 (bool) (wlc->pub->_n_enab & SUPPORT_11N));
7990 }
7991
7992 /*
7993 * update antenna config due to
7994 * wlc->stf->txant/txchain/ant_rx_ovr change
7995 */
7996 brcms_c_stf_phy_txant_upd(wlc);
7997
7998 /* attach each modules */
7999 err = brcms_c_attach_module(wlc);
8000 if (err != 0)
8001 goto fail;
8002
8003 if (!brcms_c_timers_init(wlc, unit)) {
8004 wiphy_err(wl->wiphy, "wl%d: %s: init_timer failed\n", unit,
8005 __func__);
8006 err = 32;
8007 goto fail;
8008 }
8009
8010 /* depend on rateset, gmode */
8011 wlc->cmi = brcms_c_channel_mgr_attach(wlc);
8012 if (!wlc->cmi) {
8013 wiphy_err(wl->wiphy, "wl%d: %s: channel_mgr_attach failed"
8014 "\n", unit, __func__);
8015 err = 33;
8016 goto fail;
8017 }
8018
8019 /* init default when all parameters are ready, i.e. ->rateset */
8020 brcms_c_bss_default_init(wlc);
8021
8022 /*
8023 * Complete the wlc default state initializations..
8024 */
8025
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008026 wlc->bsscfg->wlc = wlc;
8027
8028 wlc->mimoft = FT_HT;
8029 wlc->mimo_40txbw = AUTO;
8030 wlc->ofdm_40txbw = AUTO;
8031 wlc->cck_40txbw = AUTO;
8032 brcms_c_update_mimo_band_bwcap(wlc, BRCMS_N_BW_20IN2G_40IN5G);
8033
8034 /* Set default values of SGI */
8035 if (BRCMS_SGI_CAP_PHY(wlc)) {
8036 brcms_c_ht_update_sgi_rx(wlc, (BRCMS_N_SGI_20 |
8037 BRCMS_N_SGI_40));
8038 } else if (BRCMS_ISSSLPNPHY(wlc->band)) {
8039 brcms_c_ht_update_sgi_rx(wlc, (BRCMS_N_SGI_20 |
8040 BRCMS_N_SGI_40));
8041 } else {
8042 brcms_c_ht_update_sgi_rx(wlc, 0);
8043 }
8044
Alwin Beukers94bdc2a2011-10-12 20:51:13 +02008045 brcms_b_antsel_set(wlc->hw, wlc->asi->antsel_avail);
8046
8047 if (perr)
8048 *perr = 0;
8049
8050 return wlc;
8051
8052 fail:
8053 wiphy_err(wl->wiphy, "wl%d: %s: failed with err %d\n",
8054 unit, __func__, err);
8055 if (wlc)
8056 brcms_c_detach(wlc);
8057
8058 if (perr)
8059 *perr = err;
8060 return NULL;
8061}