Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2010 Broadcom Corporation |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 3 | * Copyright (c) 2013 Hauke Mehrtens <hauke@hauke-m.de> |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4 | * |
| 5 | * Permission to use, copy, modify, and/or distribute this software for any |
| 6 | * purpose with or without fee is hereby granted, provided that the above |
| 7 | * copyright notice and this permission notice appear in all copies. |
| 8 | * |
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 12 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION |
| 14 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 15 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 16 | */ |
| 17 | |
Joe Perches | 02f7719 | 2012-01-15 00:38:44 -0800 | [diff] [blame] | 18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 19 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 20 | #include <linux/pci_ids.h> |
| 21 | #include <linux/if_ether.h> |
Seth Forshee | edc7651 | 2012-06-16 07:47:56 -0500 | [diff] [blame] | 22 | #include <net/cfg80211.h> |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 23 | #include <net/mac80211.h> |
| 24 | #include <brcm_hw_ids.h> |
| 25 | #include <aiutils.h> |
| 26 | #include <chipcommon.h> |
| 27 | #include "rate.h" |
| 28 | #include "scb.h" |
| 29 | #include "phy/phy_hal.h" |
| 30 | #include "channel.h" |
| 31 | #include "antsel.h" |
| 32 | #include "stf.h" |
| 33 | #include "ampdu.h" |
| 34 | #include "mac80211_if.h" |
| 35 | #include "ucode_loader.h" |
| 36 | #include "main.h" |
Alwin Beukers | 2303821 | 2011-10-18 14:02:58 +0200 | [diff] [blame] | 37 | #include "soc.h" |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 38 | #include "dma.h" |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 39 | #include "debug.h" |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 40 | #include "brcms_trace_events.h" |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 41 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 42 | /* watchdog timer, in unit of ms */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 43 | #define TIMER_INTERVAL_WATCHDOG 1000 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 44 | /* radio monitor timer, in unit of ms */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 45 | #define TIMER_INTERVAL_RADIOCHK 800 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 46 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 47 | /* beacon interval, in unit of 1024TU */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 48 | #define BEACON_INTERVAL_DEFAULT 100 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 49 | |
| 50 | /* n-mode support capability */ |
| 51 | /* 2x2 includes both 1x1 & 2x2 devices |
| 52 | * reserved #define 2 for future when we want to separate 1x1 & 2x2 and |
| 53 | * control it independently |
| 54 | */ |
| 55 | #define WL_11N_2x2 1 |
| 56 | #define WL_11N_3x3 3 |
| 57 | #define WL_11N_4x4 4 |
| 58 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 59 | #define EDCF_ACI_MASK 0x60 |
| 60 | #define EDCF_ACI_SHIFT 5 |
| 61 | #define EDCF_ECWMIN_MASK 0x0f |
| 62 | #define EDCF_ECWMAX_SHIFT 4 |
| 63 | #define EDCF_AIFSN_MASK 0x0f |
| 64 | #define EDCF_AIFSN_MAX 15 |
| 65 | #define EDCF_ECWMAX_MASK 0xf0 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 66 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 67 | #define EDCF_AC_BE_TXOP_STA 0x0000 |
| 68 | #define EDCF_AC_BK_TXOP_STA 0x0000 |
| 69 | #define EDCF_AC_VO_ACI_STA 0x62 |
| 70 | #define EDCF_AC_VO_ECW_STA 0x32 |
| 71 | #define EDCF_AC_VI_ACI_STA 0x42 |
| 72 | #define EDCF_AC_VI_ECW_STA 0x43 |
| 73 | #define EDCF_AC_BK_ECW_STA 0xA4 |
| 74 | #define EDCF_AC_VI_TXOP_STA 0x005e |
| 75 | #define EDCF_AC_VO_TXOP_STA 0x002f |
| 76 | #define EDCF_AC_BE_ACI_STA 0x03 |
| 77 | #define EDCF_AC_BE_ECW_STA 0xA4 |
| 78 | #define EDCF_AC_BK_ACI_STA 0x27 |
| 79 | #define EDCF_AC_VO_TXOP_AP 0x002f |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 80 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 81 | #define EDCF_TXOP2USEC(txop) ((txop) << 5) |
| 82 | #define EDCF_ECW2CW(exp) ((1 << (exp)) - 1) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 83 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 84 | #define APHY_SYMBOL_TIME 4 |
| 85 | #define APHY_PREAMBLE_TIME 16 |
| 86 | #define APHY_SIGNAL_TIME 4 |
| 87 | #define APHY_SIFS_TIME 16 |
| 88 | #define APHY_SERVICE_NBITS 16 |
| 89 | #define APHY_TAIL_NBITS 6 |
| 90 | #define BPHY_SIFS_TIME 10 |
| 91 | #define BPHY_PLCP_SHORT_TIME 96 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 92 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 93 | #define PREN_PREAMBLE 24 |
| 94 | #define PREN_MM_EXT 12 |
| 95 | #define PREN_PREAMBLE_EXT 4 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 96 | |
| 97 | #define DOT11_MAC_HDR_LEN 24 |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 98 | #define DOT11_ACK_LEN 10 |
| 99 | #define DOT11_BA_LEN 4 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 100 | #define DOT11_OFDM_SIGNAL_EXTENSION 6 |
| 101 | #define DOT11_MIN_FRAG_LEN 256 |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 102 | #define DOT11_RTS_LEN 16 |
| 103 | #define DOT11_CTS_LEN 10 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 104 | #define DOT11_BA_BITMAP_LEN 128 |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 105 | #define DOT11_MAXNUMFRAGS 16 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 106 | #define DOT11_MAX_FRAG_LEN 2346 |
| 107 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 108 | #define BPHY_PLCP_TIME 192 |
| 109 | #define RIFS_11N_TIME 2 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 110 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 111 | /* length of the BCN template area */ |
| 112 | #define BCN_TMPL_LEN 512 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 113 | |
| 114 | /* brcms_bss_info flag bit values */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 115 | #define BRCMS_BSS_HT 0x0020 /* BSS is HT (MIMO) capable */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 116 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 117 | /* chip rx buffer offset */ |
| 118 | #define BRCMS_HWRXOFF 38 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 119 | |
| 120 | /* rfdisable delay timer 500 ms, runs of ALP clock */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 121 | #define RFDISABLE_DEFAULT 10000000 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 122 | |
| 123 | #define BRCMS_TEMPSENSE_PERIOD 10 /* 10 second timeout */ |
| 124 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 125 | /* synthpu_dly times in us */ |
| 126 | #define SYNTHPU_DLY_APHY_US 3700 |
| 127 | #define SYNTHPU_DLY_BPHY_US 1050 |
| 128 | #define SYNTHPU_DLY_NPHY_US 2048 |
| 129 | #define SYNTHPU_DLY_LPPHY_US 300 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 130 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 131 | #define ANTCNT 10 /* vanilla M_MAX_ANTCNT val */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 132 | |
| 133 | /* Per-AC retry limit register definitions; uses defs.h bitfield macros */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 134 | #define EDCF_SHORT_S 0 |
| 135 | #define EDCF_SFB_S 4 |
| 136 | #define EDCF_LONG_S 8 |
| 137 | #define EDCF_LFB_S 12 |
| 138 | #define EDCF_SHORT_M BITFIELD_MASK(4) |
| 139 | #define EDCF_SFB_M BITFIELD_MASK(4) |
| 140 | #define EDCF_LONG_M BITFIELD_MASK(4) |
| 141 | #define EDCF_LFB_M BITFIELD_MASK(4) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 142 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 143 | #define RETRY_SHORT_DEF 7 /* Default Short retry Limit */ |
| 144 | #define RETRY_SHORT_MAX 255 /* Maximum Short retry Limit */ |
| 145 | #define RETRY_LONG_DEF 4 /* Default Long retry count */ |
| 146 | #define RETRY_SHORT_FB 3 /* Short count for fb rate */ |
| 147 | #define RETRY_LONG_FB 2 /* Long count for fb rate */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 148 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 149 | #define APHY_CWMIN 15 |
| 150 | #define PHY_CWMAX 1023 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 151 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 152 | #define EDCF_AIFSN_MIN 1 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 153 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 154 | #define FRAGNUM_MASK 0xF |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 155 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 156 | #define APHY_SLOT_TIME 9 |
| 157 | #define BPHY_SLOT_TIME 20 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 158 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 159 | #define WL_SPURAVOID_OFF 0 |
| 160 | #define WL_SPURAVOID_ON1 1 |
| 161 | #define WL_SPURAVOID_ON2 2 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 162 | |
| 163 | /* invalid core flags, use the saved coreflags */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 164 | #define BRCMS_USE_COREFLAGS 0xffffffff |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 165 | |
| 166 | /* values for PLCPHdr_override */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 167 | #define BRCMS_PLCP_AUTO -1 |
| 168 | #define BRCMS_PLCP_SHORT 0 |
| 169 | #define BRCMS_PLCP_LONG 1 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 170 | |
| 171 | /* values for g_protection_override and n_protection_override */ |
| 172 | #define BRCMS_PROTECTION_AUTO -1 |
| 173 | #define BRCMS_PROTECTION_OFF 0 |
| 174 | #define BRCMS_PROTECTION_ON 1 |
| 175 | #define BRCMS_PROTECTION_MMHDR_ONLY 2 |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 176 | #define BRCMS_PROTECTION_CTS_ONLY 3 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 177 | |
| 178 | /* values for g_protection_control and n_protection_control */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 179 | #define BRCMS_PROTECTION_CTL_OFF 0 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 180 | #define BRCMS_PROTECTION_CTL_LOCAL 1 |
| 181 | #define BRCMS_PROTECTION_CTL_OVERLAP 2 |
| 182 | |
| 183 | /* values for n_protection */ |
| 184 | #define BRCMS_N_PROTECTION_OFF 0 |
| 185 | #define BRCMS_N_PROTECTION_OPTIONAL 1 |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 186 | #define BRCMS_N_PROTECTION_20IN40 2 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 187 | #define BRCMS_N_PROTECTION_MIXEDMODE 3 |
| 188 | |
| 189 | /* values for band specific 40MHz capabilities */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 190 | #define BRCMS_N_BW_20ALL 0 |
| 191 | #define BRCMS_N_BW_40ALL 1 |
| 192 | #define BRCMS_N_BW_20IN2G_40IN5G 2 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 193 | |
| 194 | /* bitflags for SGI support (sgi_rx iovar) */ |
| 195 | #define BRCMS_N_SGI_20 0x01 |
| 196 | #define BRCMS_N_SGI_40 0x02 |
| 197 | |
| 198 | /* defines used by the nrate iovar */ |
| 199 | /* MSC in use,indicates b0-6 holds an mcs */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 200 | #define NRATE_MCS_INUSE 0x00000080 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 201 | /* rate/mcs value */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 202 | #define NRATE_RATE_MASK 0x0000007f |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 203 | /* stf mode mask: siso, cdd, stbc, sdm */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 204 | #define NRATE_STF_MASK 0x0000ff00 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 205 | /* stf mode shift */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 206 | #define NRATE_STF_SHIFT 8 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 207 | /* bit indicate to override mcs only */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 208 | #define NRATE_OVERRIDE_MCS_ONLY 0x40000000 |
| 209 | #define NRATE_SGI_MASK 0x00800000 /* sgi mode */ |
| 210 | #define NRATE_SGI_SHIFT 23 /* sgi mode */ |
| 211 | #define NRATE_LDPC_CODING 0x00400000 /* adv coding in use */ |
| 212 | #define NRATE_LDPC_SHIFT 22 /* ldpc shift */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 213 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 214 | #define NRATE_STF_SISO 0 /* stf mode SISO */ |
| 215 | #define NRATE_STF_CDD 1 /* stf mode CDD */ |
| 216 | #define NRATE_STF_STBC 2 /* stf mode STBC */ |
| 217 | #define NRATE_STF_SDM 3 /* stf mode SDM */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 218 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 219 | #define MAX_DMA_SEGS 4 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 220 | |
Seth Forshee | 75be3e2 | 2012-11-15 08:07:58 -0600 | [diff] [blame] | 221 | /* # of entries in Tx FIFO */ |
| 222 | #define NTXD 64 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 223 | /* Max # of entries in Rx FIFO based on 4kb page size */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 224 | #define NRXD 256 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 225 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 226 | /* Amount of headroom to leave in Tx FIFO */ |
| 227 | #define TX_HEADROOM 4 |
| 228 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 229 | /* try to keep this # rbufs posted to the chip */ |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 230 | #define NRXBUFPOST 32 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 231 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 232 | /* max # frames to process in brcms_c_recv() */ |
| 233 | #define RXBND 8 |
| 234 | /* max # tx status to process in wlc_txstatus() */ |
| 235 | #define TXSBND 8 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 236 | |
Alwin Beukers | 4476065 | 2011-10-12 20:51:31 +0200 | [diff] [blame] | 237 | /* brcmu_format_flags() bit description structure */ |
| 238 | struct brcms_c_bit_desc { |
| 239 | u32 bit; |
| 240 | const char *name; |
| 241 | }; |
| 242 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 243 | /* |
| 244 | * The following table lists the buffer memory allocated to xmt fifos in HW. |
| 245 | * the size is in units of 256bytes(one block), total size is HW dependent |
| 246 | * ucode has default fifo partition, sw can overwrite if necessary |
| 247 | * |
| 248 | * This is documented in twiki under the topic UcodeTxFifo. Please ensure |
| 249 | * the twiki is updated before making changes. |
| 250 | */ |
| 251 | |
| 252 | /* Starting corerev for the fifo size table */ |
Hauke Mehrtens | 093cd33 | 2012-07-02 20:15:51 +0200 | [diff] [blame] | 253 | #define XMTFIFOTBL_STARTREV 17 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 254 | |
| 255 | struct d11init { |
| 256 | __le16 addr; |
| 257 | __le16 size; |
| 258 | __le32 value; |
| 259 | }; |
| 260 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 261 | struct edcf_acparam { |
| 262 | u8 ACI; |
| 263 | u8 ECW; |
| 264 | u16 TXOP; |
| 265 | } __packed; |
| 266 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 267 | /* debug/trace */ |
Seth Forshee | b034174 | 2012-11-15 08:08:01 -0600 | [diff] [blame] | 268 | uint brcm_msg_level; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 269 | |
| 270 | /* TX FIFO number to WME/802.1E Access Category */ |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 271 | static const u8 wme_fifo2ac[] = { |
| 272 | IEEE80211_AC_BK, |
| 273 | IEEE80211_AC_BE, |
| 274 | IEEE80211_AC_VI, |
| 275 | IEEE80211_AC_VO, |
| 276 | IEEE80211_AC_BE, |
| 277 | IEEE80211_AC_BE |
| 278 | }; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 279 | |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 280 | /* ieee80211 Access Category to TX FIFO number */ |
| 281 | static const u8 wme_ac2fifo[] = { |
| 282 | TX_AC_VO_FIFO, |
| 283 | TX_AC_VI_FIFO, |
| 284 | TX_AC_BE_FIFO, |
| 285 | TX_AC_BK_FIFO |
| 286 | }; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 287 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 288 | static const u16 xmtfifo_sz[][NFIFO] = { |
Hauke Mehrtens | 093cd33 | 2012-07-02 20:15:51 +0200 | [diff] [blame] | 289 | /* corerev 17: 5120, 49152, 49152, 5376, 4352, 1280 */ |
| 290 | {20, 192, 192, 21, 17, 5}, |
| 291 | /* corerev 18: */ |
| 292 | {0, 0, 0, 0, 0, 0}, |
| 293 | /* corerev 19: */ |
| 294 | {0, 0, 0, 0, 0, 0}, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 295 | /* corerev 20: 5120, 49152, 49152, 5376, 4352, 1280 */ |
| 296 | {20, 192, 192, 21, 17, 5}, |
| 297 | /* corerev 21: 2304, 14848, 5632, 3584, 3584, 1280 */ |
| 298 | {9, 58, 22, 14, 14, 5}, |
| 299 | /* corerev 22: 5120, 49152, 49152, 5376, 4352, 1280 */ |
| 300 | {20, 192, 192, 21, 17, 5}, |
| 301 | /* corerev 23: 5120, 49152, 49152, 5376, 4352, 1280 */ |
| 302 | {20, 192, 192, 21, 17, 5}, |
| 303 | /* corerev 24: 2304, 14848, 5632, 3584, 3584, 1280 */ |
| 304 | {9, 58, 22, 14, 14, 5}, |
Hauke Mehrtens | 093cd33 | 2012-07-02 20:15:51 +0200 | [diff] [blame] | 305 | /* corerev 25: */ |
| 306 | {0, 0, 0, 0, 0, 0}, |
| 307 | /* corerev 26: */ |
| 308 | {0, 0, 0, 0, 0, 0}, |
| 309 | /* corerev 27: */ |
| 310 | {0, 0, 0, 0, 0, 0}, |
| 311 | /* corerev 28: 2304, 14848, 5632, 3584, 3584, 1280 */ |
| 312 | {9, 58, 22, 14, 14, 5}, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 313 | }; |
| 314 | |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 315 | #ifdef DEBUG |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 316 | static const char * const fifo_names[] = { |
| 317 | "AC_BK", "AC_BE", "AC_VI", "AC_VO", "BCMC", "ATIM" }; |
| 318 | #else |
| 319 | static const char fifo_names[6][0]; |
| 320 | #endif |
| 321 | |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 322 | #ifdef DEBUG |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 323 | /* pointer to most recently allocated wl/wlc */ |
| 324 | static struct brcms_c_info *wlc_info_dbg = (struct brcms_c_info *) (NULL); |
| 325 | #endif |
| 326 | |
Seth Forshee | 32d0f12 | 2012-11-15 08:07:55 -0600 | [diff] [blame] | 327 | /* Mapping of ieee80211 AC numbers to tx fifos */ |
| 328 | static const u8 ac_to_fifo_mapping[IEEE80211_NUM_ACS] = { |
| 329 | [IEEE80211_AC_VO] = TX_AC_VO_FIFO, |
| 330 | [IEEE80211_AC_VI] = TX_AC_VI_FIFO, |
| 331 | [IEEE80211_AC_BE] = TX_AC_BE_FIFO, |
| 332 | [IEEE80211_AC_BK] = TX_AC_BK_FIFO, |
| 333 | }; |
| 334 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 335 | /* Mapping of tx fifos to ieee80211 AC numbers */ |
| 336 | static const u8 fifo_to_ac_mapping[IEEE80211_NUM_ACS] = { |
| 337 | [TX_AC_BK_FIFO] = IEEE80211_AC_BK, |
| 338 | [TX_AC_BE_FIFO] = IEEE80211_AC_BE, |
| 339 | [TX_AC_VI_FIFO] = IEEE80211_AC_VI, |
| 340 | [TX_AC_VO_FIFO] = IEEE80211_AC_VO, |
| 341 | }; |
| 342 | |
Seth Forshee | 32d0f12 | 2012-11-15 08:07:55 -0600 | [diff] [blame] | 343 | static u8 brcms_ac_to_fifo(u8 ac) |
| 344 | { |
| 345 | if (ac >= ARRAY_SIZE(ac_to_fifo_mapping)) |
| 346 | return TX_AC_BE_FIFO; |
| 347 | return ac_to_fifo_mapping[ac]; |
| 348 | } |
| 349 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 350 | static u8 brcms_fifo_to_ac(u8 fifo) |
| 351 | { |
| 352 | if (fifo >= ARRAY_SIZE(fifo_to_ac_mapping)) |
| 353 | return IEEE80211_AC_BE; |
| 354 | return fifo_to_ac_mapping[fifo]; |
| 355 | } |
| 356 | |
Alwin Beukers | 73ffc2f | 2011-10-18 14:02:57 +0200 | [diff] [blame] | 357 | /* Find basic rate for a given rate */ |
| 358 | static u8 brcms_basic_rate(struct brcms_c_info *wlc, u32 rspec) |
| 359 | { |
| 360 | if (is_mcs_rate(rspec)) |
| 361 | return wlc->band->basic_rate[mcs_table[rspec & RSPEC_RATE_MASK] |
| 362 | .leg_ofdm]; |
| 363 | return wlc->band->basic_rate[rspec & RSPEC_RATE_MASK]; |
| 364 | } |
| 365 | |
| 366 | static u16 frametype(u32 rspec, u8 mimoframe) |
| 367 | { |
| 368 | if (is_mcs_rate(rspec)) |
| 369 | return mimoframe; |
| 370 | return is_cck_rate(rspec) ? FT_CCK : FT_OFDM; |
| 371 | } |
| 372 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 373 | /* currently the best mechanism for determining SIFS is the band in use */ |
| 374 | static u16 get_sifs(struct brcms_band *band) |
| 375 | { |
| 376 | return band->bandtype == BRCM_BAND_5G ? APHY_SIFS_TIME : |
| 377 | BPHY_SIFS_TIME; |
| 378 | } |
| 379 | |
| 380 | /* |
| 381 | * Detect Card removed. |
| 382 | * Even checking an sbconfig register read will not false trigger when the core |
| 383 | * is in reset it breaks CF address mechanism. Accessing gphy phyversion will |
| 384 | * cause SB error if aphy is in reset on 4306B0-DB. Need a simple accessible |
| 385 | * reg with fixed 0/1 pattern (some platforms return all 0). |
| 386 | * If clocks are present, call the sb routine which will figure out if the |
| 387 | * device is removed. |
| 388 | */ |
| 389 | static bool brcms_deviceremoved(struct brcms_c_info *wlc) |
| 390 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 391 | u32 macctrl; |
| 392 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 393 | if (!wlc->hw->clk) |
| 394 | return ai_deviceremoved(wlc->hw->sih); |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 395 | macctrl = bcma_read32(wlc->hw->d11core, |
| 396 | D11REGOFFS(maccontrol)); |
| 397 | return (macctrl & (MCTL_PSM_JMP_0 | MCTL_IHR_EN)) != MCTL_IHR_EN; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | /* sum the individual fifo tx pending packet counts */ |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 401 | static int brcms_txpktpendtot(struct brcms_c_info *wlc) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 402 | { |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 403 | int i; |
| 404 | int pending = 0; |
| 405 | |
| 406 | for (i = 0; i < ARRAY_SIZE(wlc->hw->di); i++) |
| 407 | if (wlc->hw->di[i]) |
| 408 | pending += dma_txpending(wlc->hw->di[i]); |
| 409 | return pending; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | static bool brcms_is_mband_unlocked(struct brcms_c_info *wlc) |
| 413 | { |
| 414 | return wlc->pub->_nbands > 1 && !wlc->bandlocked; |
| 415 | } |
| 416 | |
| 417 | static int brcms_chspec_bw(u16 chanspec) |
| 418 | { |
| 419 | if (CHSPEC_IS40(chanspec)) |
| 420 | return BRCMS_40_MHZ; |
| 421 | if (CHSPEC_IS20(chanspec)) |
| 422 | return BRCMS_20_MHZ; |
| 423 | |
| 424 | return BRCMS_10_MHZ; |
| 425 | } |
| 426 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 427 | static void brcms_c_bsscfg_mfree(struct brcms_bss_cfg *cfg) |
| 428 | { |
| 429 | if (cfg == NULL) |
| 430 | return; |
| 431 | |
| 432 | kfree(cfg->current_bss); |
| 433 | kfree(cfg); |
| 434 | } |
| 435 | |
| 436 | static void brcms_c_detach_mfree(struct brcms_c_info *wlc) |
| 437 | { |
| 438 | if (wlc == NULL) |
| 439 | return; |
| 440 | |
| 441 | brcms_c_bsscfg_mfree(wlc->bsscfg); |
| 442 | kfree(wlc->pub); |
| 443 | kfree(wlc->modulecb); |
| 444 | kfree(wlc->default_bss); |
| 445 | kfree(wlc->protection); |
| 446 | kfree(wlc->stf); |
| 447 | kfree(wlc->bandstate[0]); |
| 448 | kfree(wlc->corestate->macstat_snapshot); |
| 449 | kfree(wlc->corestate); |
| 450 | kfree(wlc->hw->bandstate[0]); |
| 451 | kfree(wlc->hw); |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 452 | if (wlc->beacon) |
| 453 | dev_kfree_skb_any(wlc->beacon); |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 454 | if (wlc->probe_resp) |
| 455 | dev_kfree_skb_any(wlc->probe_resp); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 456 | |
| 457 | /* free the wlc */ |
| 458 | kfree(wlc); |
| 459 | wlc = NULL; |
| 460 | } |
| 461 | |
| 462 | static struct brcms_bss_cfg *brcms_c_bsscfg_malloc(uint unit) |
| 463 | { |
| 464 | struct brcms_bss_cfg *cfg; |
| 465 | |
| 466 | cfg = kzalloc(sizeof(struct brcms_bss_cfg), GFP_ATOMIC); |
| 467 | if (cfg == NULL) |
| 468 | goto fail; |
| 469 | |
| 470 | cfg->current_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC); |
| 471 | if (cfg->current_bss == NULL) |
| 472 | goto fail; |
| 473 | |
| 474 | return cfg; |
| 475 | |
| 476 | fail: |
| 477 | brcms_c_bsscfg_mfree(cfg); |
| 478 | return NULL; |
| 479 | } |
| 480 | |
| 481 | static struct brcms_c_info * |
| 482 | brcms_c_attach_malloc(uint unit, uint *err, uint devid) |
| 483 | { |
| 484 | struct brcms_c_info *wlc; |
| 485 | |
| 486 | wlc = kzalloc(sizeof(struct brcms_c_info), GFP_ATOMIC); |
| 487 | if (wlc == NULL) { |
| 488 | *err = 1002; |
| 489 | goto fail; |
| 490 | } |
| 491 | |
| 492 | /* allocate struct brcms_c_pub state structure */ |
| 493 | wlc->pub = kzalloc(sizeof(struct brcms_pub), GFP_ATOMIC); |
| 494 | if (wlc->pub == NULL) { |
| 495 | *err = 1003; |
| 496 | goto fail; |
| 497 | } |
| 498 | wlc->pub->wlc = wlc; |
| 499 | |
| 500 | /* allocate struct brcms_hardware state structure */ |
| 501 | |
| 502 | wlc->hw = kzalloc(sizeof(struct brcms_hardware), GFP_ATOMIC); |
| 503 | if (wlc->hw == NULL) { |
| 504 | *err = 1005; |
| 505 | goto fail; |
| 506 | } |
| 507 | wlc->hw->wlc = wlc; |
| 508 | |
| 509 | wlc->hw->bandstate[0] = |
| 510 | kzalloc(sizeof(struct brcms_hw_band) * MAXBANDS, GFP_ATOMIC); |
| 511 | if (wlc->hw->bandstate[0] == NULL) { |
| 512 | *err = 1006; |
| 513 | goto fail; |
| 514 | } else { |
| 515 | int i; |
| 516 | |
| 517 | for (i = 1; i < MAXBANDS; i++) |
| 518 | wlc->hw->bandstate[i] = (struct brcms_hw_band *) |
| 519 | ((unsigned long)wlc->hw->bandstate[0] + |
| 520 | (sizeof(struct brcms_hw_band) * i)); |
| 521 | } |
| 522 | |
| 523 | wlc->modulecb = |
| 524 | kzalloc(sizeof(struct modulecb) * BRCMS_MAXMODULES, GFP_ATOMIC); |
| 525 | if (wlc->modulecb == NULL) { |
| 526 | *err = 1009; |
| 527 | goto fail; |
| 528 | } |
| 529 | |
| 530 | wlc->default_bss = kzalloc(sizeof(struct brcms_bss_info), GFP_ATOMIC); |
| 531 | if (wlc->default_bss == NULL) { |
| 532 | *err = 1010; |
| 533 | goto fail; |
| 534 | } |
| 535 | |
| 536 | wlc->bsscfg = brcms_c_bsscfg_malloc(unit); |
| 537 | if (wlc->bsscfg == NULL) { |
| 538 | *err = 1011; |
| 539 | goto fail; |
| 540 | } |
| 541 | |
| 542 | wlc->protection = kzalloc(sizeof(struct brcms_protection), |
| 543 | GFP_ATOMIC); |
| 544 | if (wlc->protection == NULL) { |
| 545 | *err = 1016; |
| 546 | goto fail; |
| 547 | } |
| 548 | |
| 549 | wlc->stf = kzalloc(sizeof(struct brcms_stf), GFP_ATOMIC); |
| 550 | if (wlc->stf == NULL) { |
| 551 | *err = 1017; |
| 552 | goto fail; |
| 553 | } |
| 554 | |
| 555 | wlc->bandstate[0] = |
| 556 | kzalloc(sizeof(struct brcms_band)*MAXBANDS, GFP_ATOMIC); |
| 557 | if (wlc->bandstate[0] == NULL) { |
| 558 | *err = 1025; |
| 559 | goto fail; |
| 560 | } else { |
| 561 | int i; |
| 562 | |
| 563 | for (i = 1; i < MAXBANDS; i++) |
| 564 | wlc->bandstate[i] = (struct brcms_band *) |
| 565 | ((unsigned long)wlc->bandstate[0] |
| 566 | + (sizeof(struct brcms_band)*i)); |
| 567 | } |
| 568 | |
| 569 | wlc->corestate = kzalloc(sizeof(struct brcms_core), GFP_ATOMIC); |
| 570 | if (wlc->corestate == NULL) { |
| 571 | *err = 1026; |
| 572 | goto fail; |
| 573 | } |
| 574 | |
| 575 | wlc->corestate->macstat_snapshot = |
| 576 | kzalloc(sizeof(struct macstat), GFP_ATOMIC); |
| 577 | if (wlc->corestate->macstat_snapshot == NULL) { |
| 578 | *err = 1027; |
| 579 | goto fail; |
| 580 | } |
| 581 | |
| 582 | return wlc; |
| 583 | |
| 584 | fail: |
| 585 | brcms_c_detach_mfree(wlc); |
| 586 | return NULL; |
| 587 | } |
| 588 | |
| 589 | /* |
| 590 | * Update the slot timing for standard 11b/g (20us slots) |
| 591 | * or shortslot 11g (9us slots) |
| 592 | * The PSM needs to be suspended for this call. |
| 593 | */ |
| 594 | static void brcms_b_update_slot_timing(struct brcms_hardware *wlc_hw, |
| 595 | bool shortslot) |
| 596 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 597 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 598 | |
| 599 | if (shortslot) { |
| 600 | /* 11g short slot: 11a timing */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 601 | bcma_write16(core, D11REGOFFS(ifs_slot), 0x0207); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 602 | brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, APHY_SLOT_TIME); |
| 603 | } else { |
| 604 | /* 11g long slot: 11b timing */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 605 | bcma_write16(core, D11REGOFFS(ifs_slot), 0x0212); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 606 | brcms_b_write_shm(wlc_hw, M_DOT11_SLOT, BPHY_SLOT_TIME); |
| 607 | } |
| 608 | } |
| 609 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 610 | /* |
| 611 | * calculate frame duration of a given rate and length, return |
| 612 | * time in usec unit |
| 613 | */ |
Arend van Spriel | 094b199 | 2011-10-18 14:03:07 +0200 | [diff] [blame] | 614 | static uint brcms_c_calc_frame_time(struct brcms_c_info *wlc, u32 ratespec, |
| 615 | u8 preamble_type, uint mac_len) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 616 | { |
| 617 | uint nsyms, dur = 0, Ndps, kNdps; |
| 618 | uint rate = rspec2rate(ratespec); |
| 619 | |
| 620 | if (rate == 0) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 621 | brcms_err(wlc->hw->d11core, "wl%d: WAR: using rate of 1 mbps\n", |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 622 | wlc->pub->unit); |
| 623 | rate = BRCM_RATE_1M; |
| 624 | } |
| 625 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 626 | if (is_mcs_rate(ratespec)) { |
| 627 | uint mcs = ratespec & RSPEC_RATE_MASK; |
| 628 | int tot_streams = mcs_2_txstreams(mcs) + rspec_stc(ratespec); |
| 629 | |
| 630 | dur = PREN_PREAMBLE + (tot_streams * PREN_PREAMBLE_EXT); |
| 631 | if (preamble_type == BRCMS_MM_PREAMBLE) |
| 632 | dur += PREN_MM_EXT; |
| 633 | /* 1000Ndbps = kbps * 4 */ |
| 634 | kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec), |
| 635 | rspec_issgi(ratespec)) * 4; |
| 636 | |
| 637 | if (rspec_stc(ratespec) == 0) |
| 638 | nsyms = |
| 639 | CEIL((APHY_SERVICE_NBITS + 8 * mac_len + |
| 640 | APHY_TAIL_NBITS) * 1000, kNdps); |
| 641 | else |
| 642 | /* STBC needs to have even number of symbols */ |
| 643 | nsyms = |
| 644 | 2 * |
| 645 | CEIL((APHY_SERVICE_NBITS + 8 * mac_len + |
| 646 | APHY_TAIL_NBITS) * 1000, 2 * kNdps); |
| 647 | |
| 648 | dur += APHY_SYMBOL_TIME * nsyms; |
| 649 | if (wlc->band->bandtype == BRCM_BAND_2G) |
| 650 | dur += DOT11_OFDM_SIGNAL_EXTENSION; |
| 651 | } else if (is_ofdm_rate(rate)) { |
| 652 | dur = APHY_PREAMBLE_TIME; |
| 653 | dur += APHY_SIGNAL_TIME; |
| 654 | /* Ndbps = Mbps * 4 = rate(500Kbps) * 2 */ |
| 655 | Ndps = rate * 2; |
| 656 | /* NSyms = CEILING((SERVICE + 8*NBytes + TAIL) / Ndbps) */ |
| 657 | nsyms = |
| 658 | CEIL((APHY_SERVICE_NBITS + 8 * mac_len + APHY_TAIL_NBITS), |
| 659 | Ndps); |
| 660 | dur += APHY_SYMBOL_TIME * nsyms; |
| 661 | if (wlc->band->bandtype == BRCM_BAND_2G) |
| 662 | dur += DOT11_OFDM_SIGNAL_EXTENSION; |
| 663 | } else { |
| 664 | /* |
| 665 | * calc # bits * 2 so factor of 2 in rate (1/2 mbps) |
| 666 | * will divide out |
| 667 | */ |
| 668 | mac_len = mac_len * 8 * 2; |
| 669 | /* calc ceiling of bits/rate = microseconds of air time */ |
| 670 | dur = (mac_len + rate - 1) / rate; |
| 671 | if (preamble_type & BRCMS_SHORT_PREAMBLE) |
| 672 | dur += BPHY_PLCP_SHORT_TIME; |
| 673 | else |
| 674 | dur += BPHY_PLCP_TIME; |
| 675 | } |
| 676 | return dur; |
| 677 | } |
| 678 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 679 | static void brcms_c_write_inits(struct brcms_hardware *wlc_hw, |
| 680 | const struct d11init *inits) |
| 681 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 682 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 683 | int i; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 684 | uint offset; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 685 | u16 size; |
| 686 | u32 value; |
| 687 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 688 | brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 689 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 690 | for (i = 0; inits[i].addr != cpu_to_le16(0xffff); i++) { |
| 691 | size = le16_to_cpu(inits[i].size); |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 692 | offset = le16_to_cpu(inits[i].addr); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 693 | value = le32_to_cpu(inits[i].value); |
| 694 | if (size == 2) |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 695 | bcma_write16(core, offset, value); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 696 | else if (size == 4) |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 697 | bcma_write32(core, offset, value); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 698 | else |
| 699 | break; |
| 700 | } |
| 701 | } |
| 702 | |
| 703 | static void brcms_c_write_mhf(struct brcms_hardware *wlc_hw, u16 *mhfs) |
| 704 | { |
| 705 | u8 idx; |
| 706 | u16 addr[] = { |
| 707 | M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4, |
| 708 | M_HOST_FLAGS5 |
| 709 | }; |
| 710 | |
| 711 | for (idx = 0; idx < MHFMAX; idx++) |
| 712 | brcms_b_write_shm(wlc_hw, addr[idx], mhfs[idx]); |
| 713 | } |
| 714 | |
| 715 | static void brcms_c_ucode_bsinit(struct brcms_hardware *wlc_hw) |
| 716 | { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 717 | struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode; |
| 718 | |
| 719 | /* init microcode host flags */ |
| 720 | brcms_c_write_mhf(wlc_hw, wlc_hw->band->mhfs); |
| 721 | |
| 722 | /* do band-specific ucode IHR, SHM, and SCR inits */ |
Hauke Mehrtens | 6f80f01 | 2012-12-07 00:35:53 +0100 | [diff] [blame] | 723 | if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 724 | if (BRCMS_ISNPHY(wlc_hw->band)) |
| 725 | brcms_c_write_inits(wlc_hw, ucode->d11n0bsinitvals16); |
| 726 | else |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 727 | brcms_err(wlc_hw->d11core, |
| 728 | "%s: wl%d: unsupported phy in corerev %d\n", |
| 729 | __func__, wlc_hw->unit, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 730 | wlc_hw->corerev); |
| 731 | } else { |
| 732 | if (D11REV_IS(wlc_hw->corerev, 24)) { |
| 733 | if (BRCMS_ISLCNPHY(wlc_hw->band)) |
| 734 | brcms_c_write_inits(wlc_hw, |
| 735 | ucode->d11lcn0bsinitvals24); |
| 736 | else |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 737 | brcms_err(wlc_hw->d11core, |
| 738 | "%s: wl%d: unsupported phy in core rev %d\n", |
| 739 | __func__, wlc_hw->unit, |
| 740 | wlc_hw->corerev); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 741 | } else { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 742 | brcms_err(wlc_hw->d11core, |
| 743 | "%s: wl%d: unsupported corerev %d\n", |
| 744 | __func__, wlc_hw->unit, wlc_hw->corerev); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 745 | } |
| 746 | } |
| 747 | } |
| 748 | |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 749 | static void brcms_b_core_ioctl(struct brcms_hardware *wlc_hw, u32 m, u32 v) |
| 750 | { |
| 751 | struct bcma_device *core = wlc_hw->d11core; |
| 752 | u32 ioctl = bcma_aread32(core, BCMA_IOCTL) & ~m; |
| 753 | |
| 754 | bcma_awrite32(core, BCMA_IOCTL, ioctl | v); |
| 755 | } |
| 756 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 757 | static void brcms_b_core_phy_clk(struct brcms_hardware *wlc_hw, bool clk) |
| 758 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 759 | brcms_dbg_info(wlc_hw->d11core, "wl%d: clk %d\n", wlc_hw->unit, clk); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 760 | |
| 761 | wlc_hw->phyclk = clk; |
| 762 | |
| 763 | if (OFF == clk) { /* clear gmode bit, put phy into reset */ |
| 764 | |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 765 | brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC | SICF_GMODE), |
| 766 | (SICF_PRST | SICF_FGC)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 767 | udelay(1); |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 768 | brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_PRST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 769 | udelay(1); |
| 770 | |
| 771 | } else { /* take phy out of reset */ |
| 772 | |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 773 | brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_FGC), SICF_FGC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 774 | udelay(1); |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 775 | brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 776 | udelay(1); |
| 777 | |
| 778 | } |
| 779 | } |
| 780 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 781 | /* low-level band switch utility routine */ |
| 782 | static void brcms_c_setxband(struct brcms_hardware *wlc_hw, uint bandunit) |
| 783 | { |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 784 | brcms_dbg_mac80211(wlc_hw->d11core, "wl%d: bandunit %d\n", wlc_hw->unit, |
| 785 | bandunit); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 786 | |
| 787 | wlc_hw->band = wlc_hw->bandstate[bandunit]; |
| 788 | |
| 789 | /* |
| 790 | * BMAC_NOTE: |
| 791 | * until we eliminate need for wlc->band refs in low level code |
| 792 | */ |
| 793 | wlc_hw->wlc->band = wlc_hw->wlc->bandstate[bandunit]; |
| 794 | |
| 795 | /* set gmode core flag */ |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 796 | if (wlc_hw->sbclk && !wlc_hw->noreset) { |
| 797 | u32 gmode = 0; |
| 798 | |
| 799 | if (bandunit == 0) |
| 800 | gmode = SICF_GMODE; |
| 801 | |
| 802 | brcms_b_core_ioctl(wlc_hw, SICF_GMODE, gmode); |
| 803 | } |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 804 | } |
| 805 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 806 | /* switch to new band but leave it inactive */ |
| 807 | static u32 brcms_c_setband_inact(struct brcms_c_info *wlc, uint bandunit) |
| 808 | { |
| 809 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 810 | u32 macintmask; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 811 | u32 macctrl; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 812 | |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 813 | brcms_dbg_mac80211(wlc_hw->d11core, "wl%d\n", wlc_hw->unit); |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 814 | macctrl = bcma_read32(wlc_hw->d11core, |
| 815 | D11REGOFFS(maccontrol)); |
| 816 | WARN_ON((macctrl & MCTL_EN_MAC) != 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 817 | |
| 818 | /* disable interrupts */ |
| 819 | macintmask = brcms_intrsoff(wlc->wl); |
| 820 | |
| 821 | /* radio off */ |
| 822 | wlc_phy_switch_radio(wlc_hw->band->pi, OFF); |
| 823 | |
| 824 | brcms_b_core_phy_clk(wlc_hw, OFF); |
| 825 | |
| 826 | brcms_c_setxband(wlc_hw, bandunit); |
| 827 | |
| 828 | return macintmask; |
| 829 | } |
| 830 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 831 | /* process an individual struct tx_status */ |
| 832 | static bool |
| 833 | brcms_c_dotxstatus(struct brcms_c_info *wlc, struct tx_status *txs) |
| 834 | { |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 835 | struct sk_buff *p = NULL; |
| 836 | uint queue = NFIFO; |
| 837 | struct dma_pub *dma = NULL; |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 838 | struct d11txh *txh = NULL; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 839 | struct scb *scb = NULL; |
| 840 | bool free_pdu; |
| 841 | int tx_rts, tx_frame_count, tx_rts_count; |
| 842 | uint totlen, supr_status; |
| 843 | bool lastframe; |
| 844 | struct ieee80211_hdr *h; |
| 845 | u16 mcl; |
| 846 | struct ieee80211_tx_info *tx_info; |
| 847 | struct ieee80211_tx_rate *txrate; |
| 848 | int i; |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 849 | bool fatal = true; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 850 | |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 851 | trace_brcms_txstatus(&wlc->hw->d11core->dev, txs->framelen, |
| 852 | txs->frameid, txs->status, txs->lasttxtime, |
| 853 | txs->sequence, txs->phyerr, txs->ackphyrxsh); |
| 854 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 855 | /* discard intermediate indications for ucode with one legitimate case: |
| 856 | * e.g. if "useRTS" is set. ucode did a successful rts/cts exchange, |
| 857 | * but the subsequent tx of DATA failed. so it will start rts/cts |
| 858 | * from the beginning (resetting the rts transmission count) |
| 859 | */ |
| 860 | if (!(txs->status & TX_STATUS_AMPDU) |
| 861 | && (txs->status & TX_STATUS_INTERMEDIATE)) { |
Seth Forshee | 5ce58bb | 2012-11-15 08:08:05 -0600 | [diff] [blame] | 862 | brcms_dbg_tx(wlc->hw->d11core, "INTERMEDIATE but not AMPDU\n"); |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 863 | fatal = false; |
| 864 | goto out; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | queue = txs->frameid & TXFID_QUEUE_MASK; |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 868 | if (queue >= NFIFO) { |
| 869 | brcms_err(wlc->hw->d11core, "queue %u >= NFIFO\n", queue); |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 870 | goto out; |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 871 | } |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 872 | |
| 873 | dma = wlc->hw->di[queue]; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 874 | |
| 875 | p = dma_getnexttxp(wlc->hw->di[queue], DMA_RANGE_TRANSMITTED); |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 876 | if (p == NULL) { |
| 877 | brcms_err(wlc->hw->d11core, "dma_getnexttxp returned null!\n"); |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 878 | goto out; |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 879 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 880 | |
| 881 | txh = (struct d11txh *) (p->data); |
| 882 | mcl = le16_to_cpu(txh->MacTxControlLow); |
| 883 | |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 884 | if (txs->phyerr) |
John Greene | a76e9ff | 2013-07-15 14:33:34 -0400 | [diff] [blame] | 885 | brcms_dbg_tx(wlc->hw->d11core, "phyerr 0x%x, rate 0x%x\n", |
| 886 | txs->phyerr, txh->MainRates); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 887 | |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 888 | if (txs->frameid != le16_to_cpu(txh->TxFrameID)) { |
| 889 | brcms_err(wlc->hw->d11core, "frameid != txh->TxFrameID\n"); |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 890 | goto out; |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 891 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 892 | tx_info = IEEE80211_SKB_CB(p); |
| 893 | h = (struct ieee80211_hdr *)((u8 *) (txh + 1) + D11_PHY_HDR_LEN); |
| 894 | |
Thomas Huehn | 644e8c0 | 2012-07-10 14:01:37 +0200 | [diff] [blame] | 895 | if (tx_info->rate_driver_data[0]) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 896 | scb = &wlc->pri_scb; |
| 897 | |
| 898 | if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) { |
| 899 | brcms_c_ampdu_dotxstatus(wlc->ampdu, scb, p, txs); |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 900 | fatal = false; |
| 901 | goto out; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 902 | } |
| 903 | |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 904 | /* |
| 905 | * brcms_c_ampdu_dotxstatus() will trace tx descriptors for AMPDU |
| 906 | * frames; this traces them for the rest. |
| 907 | */ |
| 908 | trace_brcms_txdesc(&wlc->hw->d11core->dev, txh, sizeof(*txh)); |
| 909 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 910 | supr_status = txs->status & TX_STATUS_SUPR_MASK; |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 911 | if (supr_status == TX_STATUS_SUPR_BADCH) { |
| 912 | unsigned xfts = le16_to_cpu(txh->XtraFrameTypes); |
Seth Forshee | 5ce58bb | 2012-11-15 08:08:05 -0600 | [diff] [blame] | 913 | brcms_dbg_tx(wlc->hw->d11core, |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 914 | "Pkt tx suppressed, dest chan %u, current %d\n", |
| 915 | (xfts >> XFTS_CHANNEL_SHIFT) & 0xff, |
Seth Forshee | 5ce58bb | 2012-11-15 08:08:05 -0600 | [diff] [blame] | 916 | CHSPEC_CHANNEL(wlc->default_bss->chanspec)); |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 917 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 918 | |
| 919 | tx_rts = le16_to_cpu(txh->MacTxControlLow) & TXC_SENDRTS; |
| 920 | tx_frame_count = |
| 921 | (txs->status & TX_STATUS_FRM_RTX_MASK) >> TX_STATUS_FRM_RTX_SHIFT; |
| 922 | tx_rts_count = |
| 923 | (txs->status & TX_STATUS_RTS_RTX_MASK) >> TX_STATUS_RTS_RTX_SHIFT; |
| 924 | |
| 925 | lastframe = !ieee80211_has_morefrags(h->frame_control); |
| 926 | |
| 927 | if (!lastframe) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 928 | brcms_err(wlc->hw->d11core, "Not last frame!\n"); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 929 | } else { |
| 930 | /* |
| 931 | * Set information to be consumed by Minstrel ht. |
| 932 | * |
| 933 | * The "fallback limit" is the number of tx attempts a given |
| 934 | * MPDU is sent at the "primary" rate. Tx attempts beyond that |
| 935 | * limit are sent at the "secondary" rate. |
| 936 | * A 'short frame' does not exceed RTS treshold. |
| 937 | */ |
| 938 | u16 sfbl, /* Short Frame Rate Fallback Limit */ |
| 939 | lfbl, /* Long Frame Rate Fallback Limit */ |
| 940 | fbl; |
| 941 | |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 942 | if (queue < IEEE80211_NUM_ACS) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 943 | sfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]], |
| 944 | EDCF_SFB); |
| 945 | lfbl = GFIELD(wlc->wme_retries[wme_fifo2ac[queue]], |
| 946 | EDCF_LFB); |
| 947 | } else { |
| 948 | sfbl = wlc->SFBL; |
| 949 | lfbl = wlc->LFBL; |
| 950 | } |
| 951 | |
| 952 | txrate = tx_info->status.rates; |
| 953 | if (txrate[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) |
| 954 | fbl = lfbl; |
| 955 | else |
| 956 | fbl = sfbl; |
| 957 | |
| 958 | ieee80211_tx_info_clear_status(tx_info); |
| 959 | |
| 960 | if ((tx_frame_count > fbl) && (txrate[1].idx >= 0)) { |
| 961 | /* |
| 962 | * rate selection requested a fallback rate |
| 963 | * and we used it |
| 964 | */ |
| 965 | txrate[0].count = fbl; |
| 966 | txrate[1].count = tx_frame_count - fbl; |
| 967 | } else { |
| 968 | /* |
| 969 | * rate selection did not request fallback rate, or |
| 970 | * we didn't need it |
| 971 | */ |
| 972 | txrate[0].count = tx_frame_count; |
| 973 | /* |
| 974 | * rc80211_minstrel.c:minstrel_tx_status() expects |
| 975 | * unused rates to be marked with idx = -1 |
| 976 | */ |
| 977 | txrate[1].idx = -1; |
| 978 | txrate[1].count = 0; |
| 979 | } |
| 980 | |
| 981 | /* clear the rest of the rates */ |
| 982 | for (i = 2; i < IEEE80211_TX_MAX_RATES; i++) { |
| 983 | txrate[i].idx = -1; |
| 984 | txrate[i].count = 0; |
| 985 | } |
| 986 | |
| 987 | if (txs->status & TX_STATUS_ACK_RCV) |
| 988 | tx_info->flags |= IEEE80211_TX_STAT_ACK; |
| 989 | } |
| 990 | |
Arend van Spriel | ad4d71f | 2011-11-10 20:30:26 +0100 | [diff] [blame] | 991 | totlen = p->len; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 992 | free_pdu = true; |
| 993 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 994 | if (lastframe) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 995 | /* remove PLCP & Broadcom tx descriptor header */ |
| 996 | skb_pull(p, D11_PHY_HDR_LEN); |
| 997 | skb_pull(p, D11_TXH_LEN); |
| 998 | ieee80211_tx_status_irqsafe(wlc->pub->ieee_hw, p); |
| 999 | } else { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 1000 | brcms_err(wlc->hw->d11core, |
| 1001 | "%s: Not last frame => not calling tx_status\n", |
| 1002 | __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1003 | } |
| 1004 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1005 | fatal = false; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1006 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1007 | out: |
Seth Forshee | cdf4352 | 2012-11-15 08:08:09 -0600 | [diff] [blame] | 1008 | if (fatal) { |
| 1009 | if (txh) |
| 1010 | trace_brcms_txdesc(&wlc->hw->d11core->dev, txh, |
| 1011 | sizeof(*txh)); |
| 1012 | if (p) |
| 1013 | brcmu_pkt_buf_free_skb(p); |
| 1014 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1015 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1016 | if (dma && queue < NFIFO) { |
| 1017 | u16 ac_queue = brcms_fifo_to_ac(queue); |
| 1018 | if (dma->txavail > TX_HEADROOM && queue < TX_BCMC_FIFO && |
| 1019 | ieee80211_queue_stopped(wlc->pub->ieee_hw, ac_queue)) |
| 1020 | ieee80211_wake_queue(wlc->pub->ieee_hw, ac_queue); |
| 1021 | dma_kick_tx(dma); |
| 1022 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1023 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1024 | return fatal; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | /* process tx completion events in BMAC |
| 1028 | * Return true if more tx status need to be processed. false otherwise. |
| 1029 | */ |
| 1030 | static bool |
| 1031 | brcms_b_txstatus(struct brcms_hardware *wlc_hw, bool bound, bool *fatal) |
| 1032 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1033 | struct bcma_device *core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1034 | struct tx_status txstatus, *txs; |
| 1035 | u32 s1, s2; |
| 1036 | uint n = 0; |
| 1037 | /* |
| 1038 | * Param 'max_tx_num' indicates max. # tx status to process before |
| 1039 | * break out. |
| 1040 | */ |
| 1041 | uint max_tx_num = bound ? TXSBND : -1; |
| 1042 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1043 | txs = &txstatus; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1044 | core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1045 | *fatal = false; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1046 | |
Arend van Spriel | 0e33e48 | 2013-01-22 22:47:40 +0100 | [diff] [blame] | 1047 | while (n < max_tx_num) { |
| 1048 | s1 = bcma_read32(core, D11REGOFFS(frmtxstatus)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1049 | if (s1 == 0xffffffff) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 1050 | brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit, |
| 1051 | __func__); |
Piotr Haber | 57fe504 | 2012-11-28 21:44:07 +0100 | [diff] [blame] | 1052 | *fatal = true; |
| 1053 | return false; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1054 | } |
Arend van Spriel | 0e33e48 | 2013-01-22 22:47:40 +0100 | [diff] [blame] | 1055 | /* only process when valid */ |
| 1056 | if (!(s1 & TXS_V)) |
| 1057 | break; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1058 | |
Arend van Spriel | 0e33e48 | 2013-01-22 22:47:40 +0100 | [diff] [blame] | 1059 | s2 = bcma_read32(core, D11REGOFFS(frmtxstatus2)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1060 | txs->status = s1 & TXS_STATUS_MASK; |
| 1061 | txs->frameid = (s1 & TXS_FID_MASK) >> TXS_FID_SHIFT; |
| 1062 | txs->sequence = s2 & TXS_SEQ_MASK; |
| 1063 | txs->phyerr = (s2 & TXS_PTX_MASK) >> TXS_PTX_SHIFT; |
| 1064 | txs->lasttxtime = 0; |
| 1065 | |
| 1066 | *fatal = brcms_c_dotxstatus(wlc_hw->wlc, txs); |
Arend van Spriel | 0e33e48 | 2013-01-22 22:47:40 +0100 | [diff] [blame] | 1067 | if (*fatal == true) |
| 1068 | return false; |
Piotr Haber | 57fe504 | 2012-11-28 21:44:07 +0100 | [diff] [blame] | 1069 | n++; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1070 | } |
| 1071 | |
Arend van Spriel | 0e33e48 | 2013-01-22 22:47:40 +0100 | [diff] [blame] | 1072 | return n >= max_tx_num; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1073 | } |
| 1074 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 1075 | static void brcms_c_tbtt(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1076 | { |
Hauke Mehrtens | 45c4f65 | 2013-03-24 01:45:51 +0100 | [diff] [blame] | 1077 | if (wlc->bsscfg->type == BRCMS_TYPE_ADHOC) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 1078 | /* |
| 1079 | * DirFrmQ is now valid...defer setting until end |
| 1080 | * of ATIM window |
| 1081 | */ |
| 1082 | wlc->qvalid |= MCMD_DIRFRMQVAL; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1083 | } |
| 1084 | |
| 1085 | /* set initial host flags value */ |
| 1086 | static void |
| 1087 | brcms_c_mhfdef(struct brcms_c_info *wlc, u16 *mhfs, u16 mhf2_init) |
| 1088 | { |
| 1089 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 1090 | |
| 1091 | memset(mhfs, 0, MHFMAX * sizeof(u16)); |
| 1092 | |
| 1093 | mhfs[MHF2] |= mhf2_init; |
| 1094 | |
| 1095 | /* prohibit use of slowclock on multifunction boards */ |
| 1096 | if (wlc_hw->boardflags & BFL_NOPLLDOWN) |
| 1097 | mhfs[MHF1] |= MHF1_FORCEFASTCLK; |
| 1098 | |
| 1099 | if (BRCMS_ISNPHY(wlc_hw->band) && NREV_LT(wlc_hw->band->phyrev, 2)) { |
| 1100 | mhfs[MHF2] |= MHF2_NPHY40MHZ_WAR; |
| 1101 | mhfs[MHF1] |= MHF1_IQSWAP_WAR; |
| 1102 | } |
| 1103 | } |
| 1104 | |
Arend van Spriel | e81da65 | 2011-12-08 15:06:53 -0800 | [diff] [blame] | 1105 | static uint |
| 1106 | dmareg(uint direction, uint fifonum) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1107 | { |
| 1108 | if (direction == DMA_TX) |
Arend van Spriel | e81da65 | 2011-12-08 15:06:53 -0800 | [diff] [blame] | 1109 | return offsetof(struct d11regs, fifo64regs[fifonum].dmaxmt); |
| 1110 | return offsetof(struct d11regs, fifo64regs[fifonum].dmarcv); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | static bool brcms_b_attach_dmapio(struct brcms_c_info *wlc, uint j, bool wme) |
| 1114 | { |
| 1115 | uint i; |
| 1116 | char name[8]; |
| 1117 | /* |
| 1118 | * ucode host flag 2 needed for pio mode, independent of band and fifo |
| 1119 | */ |
| 1120 | u16 pio_mhf2 = 0; |
| 1121 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 1122 | uint unit = wlc_hw->unit; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1123 | |
| 1124 | /* name and offsets for dma_attach */ |
| 1125 | snprintf(name, sizeof(name), "wl%d", unit); |
| 1126 | |
| 1127 | if (wlc_hw->di[0] == NULL) { /* Init FIFOs */ |
| 1128 | int dma_attach_err = 0; |
| 1129 | |
| 1130 | /* |
| 1131 | * FIFO 0 |
| 1132 | * TX: TX_AC_BK_FIFO (TX AC Background data packets) |
| 1133 | * RX: RX_FIFO (RX data packets) |
| 1134 | */ |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1135 | wlc_hw->di[0] = dma_attach(name, wlc, |
Arend van Spriel | e81da65 | 2011-12-08 15:06:53 -0800 | [diff] [blame] | 1136 | (wme ? dmareg(DMA_TX, 0) : 0), |
| 1137 | dmareg(DMA_RX, 0), |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1138 | (wme ? NTXD : 0), NRXD, |
| 1139 | RXBUFSZ, -1, NRXBUFPOST, |
Seth Forshee | 90123e0 | 2012-11-15 08:08:07 -0600 | [diff] [blame] | 1140 | BRCMS_HWRXOFF); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1141 | dma_attach_err |= (NULL == wlc_hw->di[0]); |
| 1142 | |
| 1143 | /* |
| 1144 | * FIFO 1 |
| 1145 | * TX: TX_AC_BE_FIFO (TX AC Best-Effort data packets) |
| 1146 | * (legacy) TX_DATA_FIFO (TX data packets) |
| 1147 | * RX: UNUSED |
| 1148 | */ |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1149 | wlc_hw->di[1] = dma_attach(name, wlc, |
Arend van Spriel | e81da65 | 2011-12-08 15:06:53 -0800 | [diff] [blame] | 1150 | dmareg(DMA_TX, 1), 0, |
Seth Forshee | 90123e0 | 2012-11-15 08:08:07 -0600 | [diff] [blame] | 1151 | NTXD, 0, 0, -1, 0, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1152 | dma_attach_err |= (NULL == wlc_hw->di[1]); |
| 1153 | |
| 1154 | /* |
| 1155 | * FIFO 2 |
| 1156 | * TX: TX_AC_VI_FIFO (TX AC Video data packets) |
| 1157 | * RX: UNUSED |
| 1158 | */ |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1159 | wlc_hw->di[2] = dma_attach(name, wlc, |
Arend van Spriel | e81da65 | 2011-12-08 15:06:53 -0800 | [diff] [blame] | 1160 | dmareg(DMA_TX, 2), 0, |
Seth Forshee | 90123e0 | 2012-11-15 08:08:07 -0600 | [diff] [blame] | 1161 | NTXD, 0, 0, -1, 0, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1162 | dma_attach_err |= (NULL == wlc_hw->di[2]); |
| 1163 | /* |
| 1164 | * FIFO 3 |
| 1165 | * TX: TX_AC_VO_FIFO (TX AC Voice data packets) |
| 1166 | * (legacy) TX_CTL_FIFO (TX control & mgmt packets) |
| 1167 | */ |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 1168 | wlc_hw->di[3] = dma_attach(name, wlc, |
Arend van Spriel | e81da65 | 2011-12-08 15:06:53 -0800 | [diff] [blame] | 1169 | dmareg(DMA_TX, 3), |
| 1170 | 0, NTXD, 0, 0, -1, |
Seth Forshee | 90123e0 | 2012-11-15 08:08:07 -0600 | [diff] [blame] | 1171 | 0, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1172 | dma_attach_err |= (NULL == wlc_hw->di[3]); |
| 1173 | /* Cleaner to leave this as if with AP defined */ |
| 1174 | |
| 1175 | if (dma_attach_err) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 1176 | brcms_err(wlc_hw->d11core, |
| 1177 | "wl%d: wlc_attach: dma_attach failed\n", |
| 1178 | unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1179 | return false; |
| 1180 | } |
| 1181 | |
| 1182 | /* get pointer to dma engine tx flow control variable */ |
| 1183 | for (i = 0; i < NFIFO; i++) |
| 1184 | if (wlc_hw->di[i]) |
| 1185 | wlc_hw->txavail[i] = |
| 1186 | (uint *) dma_getvar(wlc_hw->di[i], |
| 1187 | "&txavail"); |
| 1188 | } |
| 1189 | |
| 1190 | /* initial ucode host flags */ |
| 1191 | brcms_c_mhfdef(wlc, wlc_hw->band->mhfs, pio_mhf2); |
| 1192 | |
| 1193 | return true; |
| 1194 | } |
| 1195 | |
| 1196 | static void brcms_b_detach_dmapio(struct brcms_hardware *wlc_hw) |
| 1197 | { |
| 1198 | uint j; |
| 1199 | |
| 1200 | for (j = 0; j < NFIFO; j++) { |
| 1201 | if (wlc_hw->di[j]) { |
| 1202 | dma_detach(wlc_hw->di[j]); |
| 1203 | wlc_hw->di[j] = NULL; |
| 1204 | } |
| 1205 | } |
| 1206 | } |
| 1207 | |
| 1208 | /* |
| 1209 | * Initialize brcms_c_info default values ... |
| 1210 | * may get overrides later in this function |
| 1211 | * BMAC_NOTES, move low out and resolve the dangling ones |
| 1212 | */ |
| 1213 | static void brcms_b_info_init(struct brcms_hardware *wlc_hw) |
| 1214 | { |
| 1215 | struct brcms_c_info *wlc = wlc_hw->wlc; |
| 1216 | |
| 1217 | /* set default sw macintmask value */ |
| 1218 | wlc->defmacintmask = DEF_MACINTMASK; |
| 1219 | |
| 1220 | /* various 802.11g modes */ |
| 1221 | wlc_hw->shortslot = false; |
| 1222 | |
| 1223 | wlc_hw->SFBL = RETRY_SHORT_FB; |
| 1224 | wlc_hw->LFBL = RETRY_LONG_FB; |
| 1225 | |
| 1226 | /* default mac retry limits */ |
| 1227 | wlc_hw->SRL = RETRY_SHORT_DEF; |
| 1228 | wlc_hw->LRL = RETRY_LONG_DEF; |
| 1229 | wlc_hw->chanspec = ch20mhz_chspec(1); |
| 1230 | } |
| 1231 | |
| 1232 | static void brcms_b_wait_for_wake(struct brcms_hardware *wlc_hw) |
| 1233 | { |
| 1234 | /* delay before first read of ucode state */ |
| 1235 | udelay(40); |
| 1236 | |
| 1237 | /* wait until ucode is no longer asleep */ |
| 1238 | SPINWAIT((brcms_b_read_shm(wlc_hw, M_UCODE_DBGST) == |
| 1239 | DBGST_ASLEEP), wlc_hw->wlc->fastpwrup_dly); |
| 1240 | } |
| 1241 | |
| 1242 | /* control chip clock to save power, enable dynamic clock or force fast clock */ |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 1243 | static void brcms_b_clkctl_clk(struct brcms_hardware *wlc_hw, enum bcma_clkmode mode) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1244 | { |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 1245 | if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1246 | /* new chips with PMU, CCS_FORCEHT will distribute the HT clock |
| 1247 | * on backplane, but mac core will still run on ALP(not HT) when |
| 1248 | * it enters powersave mode, which means the FCA bit may not be |
| 1249 | * set. Should wakeup mac if driver wants it to run on HT. |
| 1250 | */ |
| 1251 | |
| 1252 | if (wlc_hw->clk) { |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 1253 | if (mode == BCMA_CLKMODE_FAST) { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1254 | bcma_set32(wlc_hw->d11core, |
| 1255 | D11REGOFFS(clk_ctl_st), |
| 1256 | CCS_FORCEHT); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1257 | |
| 1258 | udelay(64); |
| 1259 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1260 | SPINWAIT( |
| 1261 | ((bcma_read32(wlc_hw->d11core, |
| 1262 | D11REGOFFS(clk_ctl_st)) & |
| 1263 | CCS_HTAVAIL) == 0), |
| 1264 | PMU_MAX_TRANSITION_DLY); |
| 1265 | WARN_ON(!(bcma_read32(wlc_hw->d11core, |
| 1266 | D11REGOFFS(clk_ctl_st)) & |
| 1267 | CCS_HTAVAIL)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1268 | } else { |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 1269 | if ((ai_get_pmurev(wlc_hw->sih) == 0) && |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1270 | (bcma_read32(wlc_hw->d11core, |
| 1271 | D11REGOFFS(clk_ctl_st)) & |
| 1272 | (CCS_FORCEHT | CCS_HTAREQ))) |
| 1273 | SPINWAIT( |
| 1274 | ((bcma_read32(wlc_hw->d11core, |
| 1275 | offsetof(struct d11regs, |
| 1276 | clk_ctl_st)) & |
| 1277 | CCS_HTAVAIL) == 0), |
| 1278 | PMU_MAX_TRANSITION_DLY); |
| 1279 | bcma_mask32(wlc_hw->d11core, |
| 1280 | D11REGOFFS(clk_ctl_st), |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1281 | ~CCS_FORCEHT); |
| 1282 | } |
| 1283 | } |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 1284 | wlc_hw->forcefastclk = (mode == BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1285 | } else { |
| 1286 | |
| 1287 | /* old chips w/o PMU, force HT through cc, |
| 1288 | * then use FCA to verify mac is running fast clock |
| 1289 | */ |
| 1290 | |
| 1291 | wlc_hw->forcefastclk = ai_clkctl_cc(wlc_hw->sih, mode); |
| 1292 | |
| 1293 | /* check fast clock is available (if core is not in reset) */ |
| 1294 | if (wlc_hw->forcefastclk && wlc_hw->clk) |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1295 | WARN_ON(!(bcma_aread32(wlc_hw->d11core, BCMA_IOST) & |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1296 | SISF_FCLKA)); |
| 1297 | |
| 1298 | /* |
| 1299 | * keep the ucode wake bit on if forcefastclk is on since we |
| 1300 | * do not want ucode to put us back to slow clock when it dozes |
| 1301 | * for PM mode. Code below matches the wake override bit with |
| 1302 | * current forcefastclk state. Only setting bit in wake_override |
| 1303 | * instead of waking ucode immediately since old code had this |
| 1304 | * behavior. Older code set wlc->forcefastclk but only had the |
| 1305 | * wake happen if the wakup_ucode work (protected by an up |
| 1306 | * check) was executed just below. |
| 1307 | */ |
| 1308 | if (wlc_hw->forcefastclk) |
| 1309 | mboolset(wlc_hw->wake_override, |
| 1310 | BRCMS_WAKE_OVERRIDE_FORCEFAST); |
| 1311 | else |
| 1312 | mboolclr(wlc_hw->wake_override, |
| 1313 | BRCMS_WAKE_OVERRIDE_FORCEFAST); |
| 1314 | } |
| 1315 | } |
| 1316 | |
| 1317 | /* set or clear ucode host flag bits |
| 1318 | * it has an optimization for no-change write |
| 1319 | * it only writes through shared memory when the core has clock; |
| 1320 | * pre-CLK changes should use wlc_write_mhf to get around the optimization |
| 1321 | * |
| 1322 | * |
| 1323 | * bands values are: BRCM_BAND_AUTO <--- Current band only |
| 1324 | * BRCM_BAND_5G <--- 5G band only |
| 1325 | * BRCM_BAND_2G <--- 2G band only |
| 1326 | * BRCM_BAND_ALL <--- All bands |
| 1327 | */ |
| 1328 | void |
| 1329 | brcms_b_mhf(struct brcms_hardware *wlc_hw, u8 idx, u16 mask, u16 val, |
| 1330 | int bands) |
| 1331 | { |
| 1332 | u16 save; |
| 1333 | u16 addr[MHFMAX] = { |
| 1334 | M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4, |
| 1335 | M_HOST_FLAGS5 |
| 1336 | }; |
| 1337 | struct brcms_hw_band *band; |
| 1338 | |
| 1339 | if ((val & ~mask) || idx >= MHFMAX) |
| 1340 | return; /* error condition */ |
| 1341 | |
| 1342 | switch (bands) { |
| 1343 | /* Current band only or all bands, |
| 1344 | * then set the band to current band |
| 1345 | */ |
| 1346 | case BRCM_BAND_AUTO: |
| 1347 | case BRCM_BAND_ALL: |
| 1348 | band = wlc_hw->band; |
| 1349 | break; |
| 1350 | case BRCM_BAND_5G: |
| 1351 | band = wlc_hw->bandstate[BAND_5G_INDEX]; |
| 1352 | break; |
| 1353 | case BRCM_BAND_2G: |
| 1354 | band = wlc_hw->bandstate[BAND_2G_INDEX]; |
| 1355 | break; |
| 1356 | default: |
| 1357 | band = NULL; /* error condition */ |
| 1358 | } |
| 1359 | |
| 1360 | if (band) { |
| 1361 | save = band->mhfs[idx]; |
| 1362 | band->mhfs[idx] = (band->mhfs[idx] & ~mask) | val; |
| 1363 | |
| 1364 | /* optimization: only write through if changed, and |
| 1365 | * changed band is the current band |
| 1366 | */ |
| 1367 | if (wlc_hw->clk && (band->mhfs[idx] != save) |
| 1368 | && (band == wlc_hw->band)) |
| 1369 | brcms_b_write_shm(wlc_hw, addr[idx], |
| 1370 | (u16) band->mhfs[idx]); |
| 1371 | } |
| 1372 | |
| 1373 | if (bands == BRCM_BAND_ALL) { |
| 1374 | wlc_hw->bandstate[0]->mhfs[idx] = |
| 1375 | (wlc_hw->bandstate[0]->mhfs[idx] & ~mask) | val; |
| 1376 | wlc_hw->bandstate[1]->mhfs[idx] = |
| 1377 | (wlc_hw->bandstate[1]->mhfs[idx] & ~mask) | val; |
| 1378 | } |
| 1379 | } |
| 1380 | |
| 1381 | /* set the maccontrol register to desired reset state and |
| 1382 | * initialize the sw cache of the register |
| 1383 | */ |
| 1384 | static void brcms_c_mctrl_reset(struct brcms_hardware *wlc_hw) |
| 1385 | { |
| 1386 | /* IHR accesses are always enabled, PSM disabled, HPS off and WAKE on */ |
| 1387 | wlc_hw->maccontrol = 0; |
| 1388 | wlc_hw->suspended_fifos = 0; |
| 1389 | wlc_hw->wake_override = 0; |
| 1390 | wlc_hw->mute_override = 0; |
| 1391 | brcms_b_mctrl(wlc_hw, ~0, MCTL_IHR_EN | MCTL_WAKE); |
| 1392 | } |
| 1393 | |
| 1394 | /* |
| 1395 | * write the software state of maccontrol and |
| 1396 | * overrides to the maccontrol register |
| 1397 | */ |
| 1398 | static void brcms_c_mctrl_write(struct brcms_hardware *wlc_hw) |
| 1399 | { |
| 1400 | u32 maccontrol = wlc_hw->maccontrol; |
| 1401 | |
| 1402 | /* OR in the wake bit if overridden */ |
| 1403 | if (wlc_hw->wake_override) |
| 1404 | maccontrol |= MCTL_WAKE; |
| 1405 | |
| 1406 | /* set AP and INFRA bits for mute if needed */ |
| 1407 | if (wlc_hw->mute_override) { |
| 1408 | maccontrol &= ~(MCTL_AP); |
| 1409 | maccontrol |= MCTL_INFRA; |
| 1410 | } |
| 1411 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1412 | bcma_write32(wlc_hw->d11core, D11REGOFFS(maccontrol), |
| 1413 | maccontrol); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1414 | } |
| 1415 | |
| 1416 | /* set or clear maccontrol bits */ |
| 1417 | void brcms_b_mctrl(struct brcms_hardware *wlc_hw, u32 mask, u32 val) |
| 1418 | { |
| 1419 | u32 maccontrol; |
| 1420 | u32 new_maccontrol; |
| 1421 | |
| 1422 | if (val & ~mask) |
| 1423 | return; /* error condition */ |
| 1424 | maccontrol = wlc_hw->maccontrol; |
| 1425 | new_maccontrol = (maccontrol & ~mask) | val; |
| 1426 | |
| 1427 | /* if the new maccontrol value is the same as the old, nothing to do */ |
| 1428 | if (new_maccontrol == maccontrol) |
| 1429 | return; |
| 1430 | |
| 1431 | /* something changed, cache the new value */ |
| 1432 | wlc_hw->maccontrol = new_maccontrol; |
| 1433 | |
| 1434 | /* write the new values with overrides applied */ |
| 1435 | brcms_c_mctrl_write(wlc_hw); |
| 1436 | } |
| 1437 | |
| 1438 | void brcms_c_ucode_wake_override_set(struct brcms_hardware *wlc_hw, |
| 1439 | u32 override_bit) |
| 1440 | { |
| 1441 | if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE)) { |
| 1442 | mboolset(wlc_hw->wake_override, override_bit); |
| 1443 | return; |
| 1444 | } |
| 1445 | |
| 1446 | mboolset(wlc_hw->wake_override, override_bit); |
| 1447 | |
| 1448 | brcms_c_mctrl_write(wlc_hw); |
| 1449 | brcms_b_wait_for_wake(wlc_hw); |
| 1450 | } |
| 1451 | |
| 1452 | void brcms_c_ucode_wake_override_clear(struct brcms_hardware *wlc_hw, |
| 1453 | u32 override_bit) |
| 1454 | { |
| 1455 | mboolclr(wlc_hw->wake_override, override_bit); |
| 1456 | |
| 1457 | if (wlc_hw->wake_override || (wlc_hw->maccontrol & MCTL_WAKE)) |
| 1458 | return; |
| 1459 | |
| 1460 | brcms_c_mctrl_write(wlc_hw); |
| 1461 | } |
| 1462 | |
| 1463 | /* When driver needs ucode to stop beaconing, it has to make sure that |
| 1464 | * MCTL_AP is clear and MCTL_INFRA is set |
| 1465 | * Mode MCTL_AP MCTL_INFRA |
| 1466 | * AP 1 1 |
| 1467 | * STA 0 1 <--- This will ensure no beacons |
| 1468 | * IBSS 0 0 |
| 1469 | */ |
| 1470 | static void brcms_c_ucode_mute_override_set(struct brcms_hardware *wlc_hw) |
| 1471 | { |
| 1472 | wlc_hw->mute_override = 1; |
| 1473 | |
| 1474 | /* if maccontrol already has AP == 0 and INFRA == 1 without this |
| 1475 | * override, then there is no change to write |
| 1476 | */ |
| 1477 | if ((wlc_hw->maccontrol & (MCTL_AP | MCTL_INFRA)) == MCTL_INFRA) |
| 1478 | return; |
| 1479 | |
| 1480 | brcms_c_mctrl_write(wlc_hw); |
| 1481 | } |
| 1482 | |
| 1483 | /* Clear the override on AP and INFRA bits */ |
| 1484 | static void brcms_c_ucode_mute_override_clear(struct brcms_hardware *wlc_hw) |
| 1485 | { |
| 1486 | if (wlc_hw->mute_override == 0) |
| 1487 | return; |
| 1488 | |
| 1489 | wlc_hw->mute_override = 0; |
| 1490 | |
| 1491 | /* if maccontrol already has AP == 0 and INFRA == 1 without this |
| 1492 | * override, then there is no change to write |
| 1493 | */ |
| 1494 | if ((wlc_hw->maccontrol & (MCTL_AP | MCTL_INFRA)) == MCTL_INFRA) |
| 1495 | return; |
| 1496 | |
| 1497 | brcms_c_mctrl_write(wlc_hw); |
| 1498 | } |
| 1499 | |
| 1500 | /* |
| 1501 | * Write a MAC address to the given match reg offset in the RXE match engine. |
| 1502 | */ |
| 1503 | static void |
| 1504 | brcms_b_set_addrmatch(struct brcms_hardware *wlc_hw, int match_reg_offset, |
| 1505 | const u8 *addr) |
| 1506 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1507 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1508 | u16 mac_l; |
| 1509 | u16 mac_m; |
| 1510 | u16 mac_h; |
| 1511 | |
Seth Forshee | 5ce58bb | 2012-11-15 08:08:05 -0600 | [diff] [blame] | 1512 | brcms_dbg_rx(core, "wl%d: brcms_b_set_addrmatch\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1513 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1514 | mac_l = addr[0] | (addr[1] << 8); |
| 1515 | mac_m = addr[2] | (addr[3] << 8); |
| 1516 | mac_h = addr[4] | (addr[5] << 8); |
| 1517 | |
| 1518 | /* enter the MAC addr into the RXE match registers */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1519 | bcma_write16(core, D11REGOFFS(rcm_ctl), |
| 1520 | RCM_INC_DATA | match_reg_offset); |
| 1521 | bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_l); |
| 1522 | bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_m); |
| 1523 | bcma_write16(core, D11REGOFFS(rcm_mat_data), mac_h); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1524 | } |
| 1525 | |
| 1526 | void |
| 1527 | brcms_b_write_template_ram(struct brcms_hardware *wlc_hw, int offset, int len, |
| 1528 | void *buf) |
| 1529 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1530 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1531 | u32 word; |
| 1532 | __le32 word_le; |
| 1533 | __be32 word_be; |
| 1534 | bool be_bit; |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 1535 | brcms_dbg_info(core, "wl%d\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1536 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1537 | bcma_write32(core, D11REGOFFS(tplatewrptr), offset); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1538 | |
| 1539 | /* if MCTL_BIGEND bit set in mac control register, |
| 1540 | * the chip swaps data in fifo, as well as data in |
| 1541 | * template ram |
| 1542 | */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1543 | be_bit = (bcma_read32(core, D11REGOFFS(maccontrol)) & MCTL_BIGEND) != 0; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1544 | |
| 1545 | while (len > 0) { |
| 1546 | memcpy(&word, buf, sizeof(u32)); |
| 1547 | |
| 1548 | if (be_bit) { |
| 1549 | word_be = cpu_to_be32(word); |
| 1550 | word = *(u32 *)&word_be; |
| 1551 | } else { |
| 1552 | word_le = cpu_to_le32(word); |
| 1553 | word = *(u32 *)&word_le; |
| 1554 | } |
| 1555 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1556 | bcma_write32(core, D11REGOFFS(tplatewrdata), word); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1557 | |
| 1558 | buf = (u8 *) buf + sizeof(u32); |
| 1559 | len -= sizeof(u32); |
| 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | static void brcms_b_set_cwmin(struct brcms_hardware *wlc_hw, u16 newmin) |
| 1564 | { |
| 1565 | wlc_hw->band->CWmin = newmin; |
| 1566 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1567 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr), |
| 1568 | OBJADDR_SCR_SEL | S_DOT11_CWMIN); |
| 1569 | (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr)); |
| 1570 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmin); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1571 | } |
| 1572 | |
| 1573 | static void brcms_b_set_cwmax(struct brcms_hardware *wlc_hw, u16 newmax) |
| 1574 | { |
| 1575 | wlc_hw->band->CWmax = newmax; |
| 1576 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1577 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr), |
| 1578 | OBJADDR_SCR_SEL | S_DOT11_CWMAX); |
| 1579 | (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr)); |
| 1580 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), newmax); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1581 | } |
| 1582 | |
| 1583 | void brcms_b_bw_set(struct brcms_hardware *wlc_hw, u16 bw) |
| 1584 | { |
| 1585 | bool fastclk; |
| 1586 | |
| 1587 | /* request FAST clock if not on */ |
| 1588 | fastclk = wlc_hw->forcefastclk; |
| 1589 | if (!fastclk) |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 1590 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1591 | |
| 1592 | wlc_phy_bw_state_set(wlc_hw->band->pi, bw); |
| 1593 | |
| 1594 | brcms_b_phy_reset(wlc_hw); |
| 1595 | wlc_phy_init(wlc_hw->band->pi, wlc_phy_chanspec_get(wlc_hw->band->pi)); |
| 1596 | |
| 1597 | /* restore the clk */ |
| 1598 | if (!fastclk) |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 1599 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | static void brcms_b_upd_synthpu(struct brcms_hardware *wlc_hw) |
| 1603 | { |
| 1604 | u16 v; |
| 1605 | struct brcms_c_info *wlc = wlc_hw->wlc; |
| 1606 | /* update SYNTHPU_DLY */ |
| 1607 | |
| 1608 | if (BRCMS_ISLCNPHY(wlc->band)) |
| 1609 | v = SYNTHPU_DLY_LPPHY_US; |
| 1610 | else if (BRCMS_ISNPHY(wlc->band) && (NREV_GE(wlc->band->phyrev, 3))) |
| 1611 | v = SYNTHPU_DLY_NPHY_US; |
| 1612 | else |
| 1613 | v = SYNTHPU_DLY_BPHY_US; |
| 1614 | |
| 1615 | brcms_b_write_shm(wlc_hw, M_SYNTHPU_DLY, v); |
| 1616 | } |
| 1617 | |
| 1618 | static void brcms_c_ucode_txant_set(struct brcms_hardware *wlc_hw) |
| 1619 | { |
| 1620 | u16 phyctl; |
| 1621 | u16 phytxant = wlc_hw->bmac_phytxant; |
| 1622 | u16 mask = PHY_TXC_ANT_MASK; |
| 1623 | |
| 1624 | /* set the Probe Response frame phy control word */ |
| 1625 | phyctl = brcms_b_read_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS); |
| 1626 | phyctl = (phyctl & ~mask) | phytxant; |
| 1627 | brcms_b_write_shm(wlc_hw, M_CTXPRS_BLK + C_CTX_PCTLWD_POS, phyctl); |
| 1628 | |
| 1629 | /* set the Response (ACK/CTS) frame phy control word */ |
| 1630 | phyctl = brcms_b_read_shm(wlc_hw, M_RSP_PCTLWD); |
| 1631 | phyctl = (phyctl & ~mask) | phytxant; |
| 1632 | brcms_b_write_shm(wlc_hw, M_RSP_PCTLWD, phyctl); |
| 1633 | } |
| 1634 | |
| 1635 | static u16 brcms_b_ofdm_ratetable_offset(struct brcms_hardware *wlc_hw, |
| 1636 | u8 rate) |
| 1637 | { |
| 1638 | uint i; |
| 1639 | u8 plcp_rate = 0; |
| 1640 | struct plcp_signal_rate_lookup { |
| 1641 | u8 rate; |
| 1642 | u8 signal_rate; |
| 1643 | }; |
| 1644 | /* OFDM RATE sub-field of PLCP SIGNAL field, per 802.11 sec 17.3.4.1 */ |
| 1645 | const struct plcp_signal_rate_lookup rate_lookup[] = { |
| 1646 | {BRCM_RATE_6M, 0xB}, |
| 1647 | {BRCM_RATE_9M, 0xF}, |
| 1648 | {BRCM_RATE_12M, 0xA}, |
| 1649 | {BRCM_RATE_18M, 0xE}, |
| 1650 | {BRCM_RATE_24M, 0x9}, |
| 1651 | {BRCM_RATE_36M, 0xD}, |
| 1652 | {BRCM_RATE_48M, 0x8}, |
| 1653 | {BRCM_RATE_54M, 0xC} |
| 1654 | }; |
| 1655 | |
| 1656 | for (i = 0; i < ARRAY_SIZE(rate_lookup); i++) { |
| 1657 | if (rate == rate_lookup[i].rate) { |
| 1658 | plcp_rate = rate_lookup[i].signal_rate; |
| 1659 | break; |
| 1660 | } |
| 1661 | } |
| 1662 | |
| 1663 | /* Find the SHM pointer to the rate table entry by looking in the |
| 1664 | * Direct-map Table |
| 1665 | */ |
| 1666 | return 2 * brcms_b_read_shm(wlc_hw, M_RT_DIRMAP_A + (plcp_rate * 2)); |
| 1667 | } |
| 1668 | |
| 1669 | static void brcms_upd_ofdm_pctl1_table(struct brcms_hardware *wlc_hw) |
| 1670 | { |
| 1671 | u8 rate; |
| 1672 | u8 rates[8] = { |
| 1673 | BRCM_RATE_6M, BRCM_RATE_9M, BRCM_RATE_12M, BRCM_RATE_18M, |
| 1674 | BRCM_RATE_24M, BRCM_RATE_36M, BRCM_RATE_48M, BRCM_RATE_54M |
| 1675 | }; |
| 1676 | u16 entry_ptr; |
| 1677 | u16 pctl1; |
| 1678 | uint i; |
| 1679 | |
| 1680 | if (!BRCMS_PHY_11N_CAP(wlc_hw->band)) |
| 1681 | return; |
| 1682 | |
| 1683 | /* walk the phy rate table and update the entries */ |
| 1684 | for (i = 0; i < ARRAY_SIZE(rates); i++) { |
| 1685 | rate = rates[i]; |
| 1686 | |
| 1687 | entry_ptr = brcms_b_ofdm_ratetable_offset(wlc_hw, rate); |
| 1688 | |
| 1689 | /* read the SHM Rate Table entry OFDM PCTL1 values */ |
| 1690 | pctl1 = |
| 1691 | brcms_b_read_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS); |
| 1692 | |
| 1693 | /* modify the value */ |
| 1694 | pctl1 &= ~PHY_TXC1_MODE_MASK; |
| 1695 | pctl1 |= (wlc_hw->hw_stf_ss_opmode << PHY_TXC1_MODE_SHIFT); |
| 1696 | |
| 1697 | /* Update the SHM Rate Table entry OFDM PCTL1 values */ |
| 1698 | brcms_b_write_shm(wlc_hw, entry_ptr + M_RT_OFDM_PCTL1_POS, |
| 1699 | pctl1); |
| 1700 | } |
| 1701 | } |
| 1702 | |
| 1703 | /* band-specific init */ |
| 1704 | static void brcms_b_bsinit(struct brcms_c_info *wlc, u16 chanspec) |
| 1705 | { |
| 1706 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 1707 | |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 1708 | brcms_dbg_mac80211(wlc_hw->d11core, "wl%d: bandunit %d\n", wlc_hw->unit, |
| 1709 | wlc_hw->band->bandunit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1710 | |
| 1711 | brcms_c_ucode_bsinit(wlc_hw); |
| 1712 | |
| 1713 | wlc_phy_init(wlc_hw->band->pi, chanspec); |
| 1714 | |
| 1715 | brcms_c_ucode_txant_set(wlc_hw); |
| 1716 | |
| 1717 | /* |
| 1718 | * cwmin is band-specific, update hardware |
| 1719 | * with value for current band |
| 1720 | */ |
| 1721 | brcms_b_set_cwmin(wlc_hw, wlc_hw->band->CWmin); |
| 1722 | brcms_b_set_cwmax(wlc_hw, wlc_hw->band->CWmax); |
| 1723 | |
| 1724 | brcms_b_update_slot_timing(wlc_hw, |
| 1725 | wlc_hw->band->bandtype == BRCM_BAND_5G ? |
| 1726 | true : wlc_hw->shortslot); |
| 1727 | |
| 1728 | /* write phytype and phyvers */ |
| 1729 | brcms_b_write_shm(wlc_hw, M_PHYTYPE, (u16) wlc_hw->band->phytype); |
| 1730 | brcms_b_write_shm(wlc_hw, M_PHYVER, (u16) wlc_hw->band->phyrev); |
| 1731 | |
| 1732 | /* |
| 1733 | * initialize the txphyctl1 rate table since |
| 1734 | * shmem is shared between bands |
| 1735 | */ |
| 1736 | brcms_upd_ofdm_pctl1_table(wlc_hw); |
| 1737 | |
| 1738 | brcms_b_upd_synthpu(wlc_hw); |
| 1739 | } |
| 1740 | |
| 1741 | /* Perform a soft reset of the PHY PLL */ |
| 1742 | void brcms_b_core_phypll_reset(struct brcms_hardware *wlc_hw) |
| 1743 | { |
Arend van Spriel | 7d8e18e | 2011-12-08 15:06:56 -0800 | [diff] [blame] | 1744 | ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_addr), |
| 1745 | ~0, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1746 | udelay(1); |
Arend van Spriel | 7d8e18e | 2011-12-08 15:06:56 -0800 | [diff] [blame] | 1747 | ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data), |
| 1748 | 0x4, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1749 | udelay(1); |
Arend van Spriel | 7d8e18e | 2011-12-08 15:06:56 -0800 | [diff] [blame] | 1750 | ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data), |
| 1751 | 0x4, 4); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1752 | udelay(1); |
Arend van Spriel | 7d8e18e | 2011-12-08 15:06:56 -0800 | [diff] [blame] | 1753 | ai_cc_reg(wlc_hw->sih, offsetof(struct chipcregs, chipcontrol_data), |
| 1754 | 0x4, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1755 | udelay(1); |
| 1756 | } |
| 1757 | |
| 1758 | /* light way to turn on phy clock without reset for NPHY only |
| 1759 | * refer to brcms_b_core_phy_clk for full version |
| 1760 | */ |
| 1761 | void brcms_b_phyclk_fgc(struct brcms_hardware *wlc_hw, bool clk) |
| 1762 | { |
| 1763 | /* support(necessary for NPHY and HYPHY) only */ |
| 1764 | if (!BRCMS_ISNPHY(wlc_hw->band)) |
| 1765 | return; |
| 1766 | |
| 1767 | if (ON == clk) |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1768 | brcms_b_core_ioctl(wlc_hw, SICF_FGC, SICF_FGC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1769 | else |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1770 | brcms_b_core_ioctl(wlc_hw, SICF_FGC, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1771 | |
| 1772 | } |
| 1773 | |
| 1774 | void brcms_b_macphyclk_set(struct brcms_hardware *wlc_hw, bool clk) |
| 1775 | { |
| 1776 | if (ON == clk) |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1777 | brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, SICF_MPCLKE); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1778 | else |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1779 | brcms_b_core_ioctl(wlc_hw, SICF_MPCLKE, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1780 | } |
| 1781 | |
| 1782 | void brcms_b_phy_reset(struct brcms_hardware *wlc_hw) |
| 1783 | { |
| 1784 | struct brcms_phy_pub *pih = wlc_hw->band->pi; |
| 1785 | u32 phy_bw_clkbits; |
| 1786 | bool phy_in_reset = false; |
| 1787 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 1788 | brcms_dbg_info(wlc_hw->d11core, "wl%d: reset phy\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1789 | |
| 1790 | if (pih == NULL) |
| 1791 | return; |
| 1792 | |
| 1793 | phy_bw_clkbits = wlc_phy_clk_bwbits(wlc_hw->band->pi); |
| 1794 | |
| 1795 | /* Specific reset sequence required for NPHY rev 3 and 4 */ |
| 1796 | if (BRCMS_ISNPHY(wlc_hw->band) && NREV_GE(wlc_hw->band->phyrev, 3) && |
| 1797 | NREV_LE(wlc_hw->band->phyrev, 4)) { |
| 1798 | /* Set the PHY bandwidth */ |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1799 | brcms_b_core_ioctl(wlc_hw, SICF_BWMASK, phy_bw_clkbits); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1800 | |
| 1801 | udelay(1); |
| 1802 | |
| 1803 | /* Perform a soft reset of the PHY PLL */ |
| 1804 | brcms_b_core_phypll_reset(wlc_hw); |
| 1805 | |
| 1806 | /* reset the PHY */ |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1807 | brcms_b_core_ioctl(wlc_hw, (SICF_PRST | SICF_PCLKE), |
| 1808 | (SICF_PRST | SICF_PCLKE)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1809 | phy_in_reset = true; |
| 1810 | } else { |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1811 | brcms_b_core_ioctl(wlc_hw, |
| 1812 | (SICF_PRST | SICF_PCLKE | SICF_BWMASK), |
| 1813 | (SICF_PRST | SICF_PCLKE | phy_bw_clkbits)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1814 | } |
| 1815 | |
| 1816 | udelay(2); |
| 1817 | brcms_b_core_phy_clk(wlc_hw, ON); |
| 1818 | |
| 1819 | if (pih) |
| 1820 | wlc_phy_anacore(pih, ON); |
| 1821 | } |
| 1822 | |
| 1823 | /* switch to and initialize new band */ |
| 1824 | static void brcms_b_setband(struct brcms_hardware *wlc_hw, uint bandunit, |
| 1825 | u16 chanspec) { |
| 1826 | struct brcms_c_info *wlc = wlc_hw->wlc; |
| 1827 | u32 macintmask; |
| 1828 | |
| 1829 | /* Enable the d11 core before accessing it */ |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1830 | if (!bcma_core_is_enabled(wlc_hw->d11core)) { |
| 1831 | bcma_core_enable(wlc_hw->d11core, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1832 | brcms_c_mctrl_reset(wlc_hw); |
| 1833 | } |
| 1834 | |
| 1835 | macintmask = brcms_c_setband_inact(wlc, bandunit); |
| 1836 | |
| 1837 | if (!wlc_hw->up) |
| 1838 | return; |
| 1839 | |
| 1840 | brcms_b_core_phy_clk(wlc_hw, ON); |
| 1841 | |
| 1842 | /* band-specific initializations */ |
| 1843 | brcms_b_bsinit(wlc, chanspec); |
| 1844 | |
| 1845 | /* |
| 1846 | * If there are any pending software interrupt bits, |
| 1847 | * then replace these with a harmless nonzero value |
| 1848 | * so brcms_c_dpc() will re-enable interrupts when done. |
| 1849 | */ |
| 1850 | if (wlc->macintstatus) |
| 1851 | wlc->macintstatus = MI_DMAINT; |
| 1852 | |
| 1853 | /* restore macintmask */ |
| 1854 | brcms_intrsrestore(wlc->wl, macintmask); |
| 1855 | |
| 1856 | /* ucode should still be suspended.. */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1857 | WARN_ON((bcma_read32(wlc_hw->d11core, D11REGOFFS(maccontrol)) & |
| 1858 | MCTL_EN_MAC) != 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1859 | } |
| 1860 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1861 | static bool brcms_c_isgoodchip(struct brcms_hardware *wlc_hw) |
| 1862 | { |
| 1863 | |
| 1864 | /* reject unsupported corerev */ |
| 1865 | if (!CONF_HAS(D11CONF, wlc_hw->corerev)) { |
| 1866 | wiphy_err(wlc_hw->wlc->wiphy, "unsupported core rev %d\n", |
| 1867 | wlc_hw->corerev); |
| 1868 | return false; |
| 1869 | } |
| 1870 | |
| 1871 | return true; |
| 1872 | } |
| 1873 | |
| 1874 | /* Validate some board info parameters */ |
| 1875 | static bool brcms_c_validboardtype(struct brcms_hardware *wlc_hw) |
| 1876 | { |
| 1877 | uint boardrev = wlc_hw->boardrev; |
| 1878 | |
| 1879 | /* 4 bits each for board type, major, minor, and tiny version */ |
| 1880 | uint brt = (boardrev & 0xf000) >> 12; |
| 1881 | uint b0 = (boardrev & 0xf00) >> 8; |
| 1882 | uint b1 = (boardrev & 0xf0) >> 4; |
| 1883 | uint b2 = boardrev & 0xf; |
| 1884 | |
| 1885 | /* voards from other vendors are always considered valid */ |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 1886 | if (ai_get_boardvendor(wlc_hw->sih) != PCI_VENDOR_ID_BROADCOM) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1887 | return true; |
| 1888 | |
| 1889 | /* do some boardrev sanity checks when boardvendor is Broadcom */ |
| 1890 | if (boardrev == 0) |
| 1891 | return false; |
| 1892 | |
| 1893 | if (boardrev <= 0xff) |
| 1894 | return true; |
| 1895 | |
| 1896 | if ((brt > 2) || (brt == 0) || (b0 > 9) || (b0 == 0) || (b1 > 9) |
| 1897 | || (b2 > 9)) |
| 1898 | return false; |
| 1899 | |
| 1900 | return true; |
| 1901 | } |
| 1902 | |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 1903 | static void brcms_c_get_macaddr(struct brcms_hardware *wlc_hw, u8 etheraddr[ETH_ALEN]) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1904 | { |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 1905 | struct ssb_sprom *sprom = &wlc_hw->d11core->bus->sprom; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1906 | |
| 1907 | /* If macaddr exists, use it (Sromrev4, CIS, ...). */ |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 1908 | if (!is_zero_ether_addr(sprom->il0mac)) { |
| 1909 | memcpy(etheraddr, sprom->il0mac, 6); |
| 1910 | return; |
| 1911 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1912 | |
| 1913 | if (wlc_hw->_nbands > 1) |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 1914 | memcpy(etheraddr, sprom->et1mac, 6); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1915 | else |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 1916 | memcpy(etheraddr, sprom->il0mac, 6); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1917 | } |
| 1918 | |
| 1919 | /* power both the pll and external oscillator on/off */ |
| 1920 | static void brcms_b_xtal(struct brcms_hardware *wlc_hw, bool want) |
| 1921 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 1922 | brcms_dbg_info(wlc_hw->d11core, "wl%d: want %d\n", wlc_hw->unit, want); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1923 | |
| 1924 | /* |
| 1925 | * dont power down if plldown is false or |
| 1926 | * we must poll hw radio disable |
| 1927 | */ |
| 1928 | if (!want && wlc_hw->pllreq) |
| 1929 | return; |
| 1930 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1931 | wlc_hw->sbclk = want; |
| 1932 | if (!wlc_hw->sbclk) { |
| 1933 | wlc_hw->clk = false; |
| 1934 | if (wlc_hw->band && wlc_hw->band->pi) |
| 1935 | wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false); |
| 1936 | } |
| 1937 | } |
| 1938 | |
| 1939 | /* |
| 1940 | * Return true if radio is disabled, otherwise false. |
| 1941 | * hw radio disable signal is an external pin, users activate it asynchronously |
| 1942 | * this function could be called when driver is down and w/o clock |
| 1943 | * it operates on different registers depending on corerev and boardflag. |
| 1944 | */ |
| 1945 | static bool brcms_b_radio_read_hwdisabled(struct brcms_hardware *wlc_hw) |
| 1946 | { |
| 1947 | bool v, clk, xtal; |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1948 | u32 flags = 0; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1949 | |
| 1950 | xtal = wlc_hw->sbclk; |
| 1951 | if (!xtal) |
| 1952 | brcms_b_xtal(wlc_hw, ON); |
| 1953 | |
| 1954 | /* may need to take core out of reset first */ |
| 1955 | clk = wlc_hw->clk; |
| 1956 | if (!clk) { |
| 1957 | /* |
| 1958 | * mac no longer enables phyclk automatically when driver |
| 1959 | * accesses phyreg throughput mac. This can be skipped since |
| 1960 | * only mac reg is accessed below |
| 1961 | */ |
Hauke Mehrtens | 0d3b9dd | 2012-06-30 15:16:15 +0200 | [diff] [blame] | 1962 | if (D11REV_GE(wlc_hw->corerev, 18)) |
| 1963 | flags |= SICF_PCLKE; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1964 | |
| 1965 | /* |
Arend van Spriel | 3b758a6 | 2011-12-12 15:15:09 -0800 | [diff] [blame] | 1966 | * TODO: test suspend/resume |
| 1967 | * |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1968 | * AI chip doesn't restore bar0win2 on |
| 1969 | * hibernation/resume, need sw fixup |
| 1970 | */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1971 | |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1972 | bcma_core_enable(wlc_hw->d11core, flags); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1973 | brcms_c_mctrl_reset(wlc_hw); |
| 1974 | } |
| 1975 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 1976 | v = ((bcma_read32(wlc_hw->d11core, |
| 1977 | D11REGOFFS(phydebug)) & PDBG_RFD) != 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1978 | |
| 1979 | /* put core back into reset */ |
| 1980 | if (!clk) |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 1981 | bcma_core_disable(wlc_hw->d11core, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 1982 | |
| 1983 | if (!xtal) |
| 1984 | brcms_b_xtal(wlc_hw, OFF); |
| 1985 | |
| 1986 | return v; |
| 1987 | } |
| 1988 | |
| 1989 | static bool wlc_dma_rxreset(struct brcms_hardware *wlc_hw, uint fifo) |
| 1990 | { |
| 1991 | struct dma_pub *di = wlc_hw->di[fifo]; |
| 1992 | return dma_rxreset(di); |
| 1993 | } |
| 1994 | |
| 1995 | /* d11 core reset |
| 1996 | * ensure fask clock during reset |
| 1997 | * reset dma |
| 1998 | * reset d11(out of reset) |
| 1999 | * reset phy(out of reset) |
| 2000 | * clear software macintstatus for fresh new start |
| 2001 | * one testing hack wlc_hw->noreset will bypass the d11/phy reset |
| 2002 | */ |
| 2003 | void brcms_b_corereset(struct brcms_hardware *wlc_hw, u32 flags) |
| 2004 | { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2005 | uint i; |
| 2006 | bool fastclk; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2007 | |
| 2008 | if (flags == BRCMS_USE_COREFLAGS) |
| 2009 | flags = (wlc_hw->band->pi ? wlc_hw->band->core_flags : 0); |
| 2010 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2011 | brcms_dbg_info(wlc_hw->d11core, "wl%d: core reset\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2012 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2013 | /* request FAST clock if not on */ |
| 2014 | fastclk = wlc_hw->forcefastclk; |
| 2015 | if (!fastclk) |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 2016 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2017 | |
| 2018 | /* reset the dma engines except first time thru */ |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 2019 | if (bcma_core_is_enabled(wlc_hw->d11core)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2020 | for (i = 0; i < NFIFO; i++) |
| 2021 | if ((wlc_hw->di[i]) && (!dma_txreset(wlc_hw->di[i]))) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2022 | brcms_err(wlc_hw->d11core, "wl%d: %s: " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2023 | "dma_txreset[%d]: cannot stop dma\n", |
| 2024 | wlc_hw->unit, __func__, i); |
| 2025 | |
| 2026 | if ((wlc_hw->di[RX_FIFO]) |
| 2027 | && (!wlc_dma_rxreset(wlc_hw, RX_FIFO))) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2028 | brcms_err(wlc_hw->d11core, "wl%d: %s: dma_rxreset" |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2029 | "[%d]: cannot stop dma\n", |
| 2030 | wlc_hw->unit, __func__, RX_FIFO); |
| 2031 | } |
| 2032 | /* if noreset, just stop the psm and return */ |
| 2033 | if (wlc_hw->noreset) { |
| 2034 | wlc_hw->wlc->macintstatus = 0; /* skip wl_dpc after down */ |
| 2035 | brcms_b_mctrl(wlc_hw, MCTL_PSM_RUN | MCTL_EN_MAC, 0); |
| 2036 | return; |
| 2037 | } |
| 2038 | |
| 2039 | /* |
| 2040 | * mac no longer enables phyclk automatically when driver accesses |
| 2041 | * phyreg throughput mac, AND phy_reset is skipped at early stage when |
| 2042 | * band->pi is invalid. need to enable PHY CLK |
| 2043 | */ |
Hauke Mehrtens | 0d3b9dd | 2012-06-30 15:16:15 +0200 | [diff] [blame] | 2044 | if (D11REV_GE(wlc_hw->corerev, 18)) |
| 2045 | flags |= SICF_PCLKE; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2046 | |
| 2047 | /* |
| 2048 | * reset the core |
| 2049 | * In chips with PMU, the fastclk request goes through d11 core |
| 2050 | * reg 0x1e0, which is cleared by the core_reset. have to re-request it. |
| 2051 | * |
| 2052 | * This adds some delay and we can optimize it by also requesting |
| 2053 | * fastclk through chipcommon during this period if necessary. But |
| 2054 | * that has to work coordinate with other driver like mips/arm since |
| 2055 | * they may touch chipcommon as well. |
| 2056 | */ |
| 2057 | wlc_hw->clk = false; |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 2058 | bcma_core_enable(wlc_hw->d11core, flags); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2059 | wlc_hw->clk = true; |
| 2060 | if (wlc_hw->band && wlc_hw->band->pi) |
| 2061 | wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, true); |
| 2062 | |
| 2063 | brcms_c_mctrl_reset(wlc_hw); |
| 2064 | |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 2065 | if (ai_get_cccaps(wlc_hw->sih) & CC_CAP_PMU) |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 2066 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2067 | |
| 2068 | brcms_b_phy_reset(wlc_hw); |
| 2069 | |
| 2070 | /* turn on PHY_PLL */ |
| 2071 | brcms_b_core_phypll_ctl(wlc_hw, true); |
| 2072 | |
| 2073 | /* clear sw intstatus */ |
| 2074 | wlc_hw->wlc->macintstatus = 0; |
| 2075 | |
| 2076 | /* restore the clk setting */ |
| 2077 | if (!fastclk) |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 2078 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2079 | } |
| 2080 | |
| 2081 | /* txfifo sizes needs to be modified(increased) since the newer cores |
| 2082 | * have more memory. |
| 2083 | */ |
| 2084 | static void brcms_b_corerev_fifofixup(struct brcms_hardware *wlc_hw) |
| 2085 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2086 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2087 | u16 fifo_nu; |
| 2088 | u16 txfifo_startblk = TXFIFO_START_BLK, txfifo_endblk; |
| 2089 | u16 txfifo_def, txfifo_def1; |
| 2090 | u16 txfifo_cmd; |
| 2091 | |
| 2092 | /* tx fifos start at TXFIFO_START_BLK from the Base address */ |
| 2093 | txfifo_startblk = TXFIFO_START_BLK; |
| 2094 | |
| 2095 | /* sequence of operations: reset fifo, set fifo size, reset fifo */ |
| 2096 | for (fifo_nu = 0; fifo_nu < NFIFO; fifo_nu++) { |
| 2097 | |
| 2098 | txfifo_endblk = txfifo_startblk + wlc_hw->xmtfifo_sz[fifo_nu]; |
| 2099 | txfifo_def = (txfifo_startblk & 0xff) | |
| 2100 | (((txfifo_endblk - 1) & 0xff) << TXFIFO_FIFOTOP_SHIFT); |
| 2101 | txfifo_def1 = ((txfifo_startblk >> 8) & 0x1) | |
| 2102 | ((((txfifo_endblk - |
| 2103 | 1) >> 8) & 0x1) << TXFIFO_FIFOTOP_SHIFT); |
| 2104 | txfifo_cmd = |
| 2105 | TXFIFOCMD_RESET_MASK | (fifo_nu << TXFIFOCMD_FIFOSEL_SHIFT); |
| 2106 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2107 | bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd); |
| 2108 | bcma_write16(core, D11REGOFFS(xmtfifodef), txfifo_def); |
| 2109 | bcma_write16(core, D11REGOFFS(xmtfifodef1), txfifo_def1); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2110 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2111 | bcma_write16(core, D11REGOFFS(xmtfifocmd), txfifo_cmd); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2112 | |
| 2113 | txfifo_startblk += wlc_hw->xmtfifo_sz[fifo_nu]; |
| 2114 | } |
| 2115 | /* |
| 2116 | * need to propagate to shm location to be in sync since ucode/hw won't |
| 2117 | * do this |
| 2118 | */ |
| 2119 | brcms_b_write_shm(wlc_hw, M_FIFOSIZE0, |
| 2120 | wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]); |
| 2121 | brcms_b_write_shm(wlc_hw, M_FIFOSIZE1, |
| 2122 | wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]); |
| 2123 | brcms_b_write_shm(wlc_hw, M_FIFOSIZE2, |
| 2124 | ((wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO] << 8) | wlc_hw-> |
| 2125 | xmtfifo_sz[TX_AC_BK_FIFO])); |
| 2126 | brcms_b_write_shm(wlc_hw, M_FIFOSIZE3, |
| 2127 | ((wlc_hw->xmtfifo_sz[TX_ATIM_FIFO] << 8) | wlc_hw-> |
| 2128 | xmtfifo_sz[TX_BCMC_FIFO])); |
| 2129 | } |
| 2130 | |
| 2131 | /* This function is used for changing the tsf frac register |
| 2132 | * If spur avoidance mode is off, the mac freq will be 80/120/160Mhz |
| 2133 | * If spur avoidance mode is on1, the mac freq will be 82/123/164Mhz |
| 2134 | * If spur avoidance mode is on2, the mac freq will be 84/126/168Mhz |
| 2135 | * HTPHY Formula is 2^26/freq(MHz) e.g. |
| 2136 | * For spuron2 - 126MHz -> 2^26/126 = 532610.0 |
| 2137 | * - 532610 = 0x82082 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x2082 |
| 2138 | * For spuron: 123MHz -> 2^26/123 = 545600.5 |
| 2139 | * - 545601 = 0x85341 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x5341 |
| 2140 | * For spur off: 120MHz -> 2^26/120 = 559240.5 |
| 2141 | * - 559241 = 0x88889 => tsf_clk_frac_h = 0x8, tsf_clk_frac_l = 0x8889 |
| 2142 | */ |
| 2143 | |
| 2144 | void brcms_b_switch_macfreq(struct brcms_hardware *wlc_hw, u8 spurmode) |
| 2145 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2146 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2147 | |
Hauke Mehrtens | 1ef1a57 | 2012-06-30 15:16:13 +0200 | [diff] [blame] | 2148 | if ((ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM43224) || |
| 2149 | (ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM43225)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2150 | if (spurmode == WL_SPURAVOID_ON2) { /* 126Mhz */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2151 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x2082); |
| 2152 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2153 | } else if (spurmode == WL_SPURAVOID_ON1) { /* 123Mhz */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2154 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x5341); |
| 2155 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2156 | } else { /* 120Mhz */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2157 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x8889); |
| 2158 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0x8); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2159 | } |
| 2160 | } else if (BRCMS_ISLCNPHY(wlc_hw->band)) { |
| 2161 | if (spurmode == WL_SPURAVOID_ON1) { /* 82Mhz */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2162 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0x7CE0); |
| 2163 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2164 | } else { /* 80Mhz */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2165 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_l), 0xCCCD); |
| 2166 | bcma_write16(core, D11REGOFFS(tsf_clk_frac_h), 0xC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2167 | } |
| 2168 | } |
| 2169 | } |
| 2170 | |
Hauke Mehrtens | 70268ce | 2013-03-24 01:45:50 +0100 | [diff] [blame] | 2171 | void brcms_c_start_station(struct brcms_c_info *wlc, u8 *addr) |
| 2172 | { |
| 2173 | memcpy(wlc->pub->cur_etheraddr, addr, sizeof(wlc->pub->cur_etheraddr)); |
| 2174 | wlc->bsscfg->type = BRCMS_TYPE_STATION; |
| 2175 | } |
| 2176 | |
Hauke Mehrtens | 492b71e | 2013-03-24 01:46:02 +0100 | [diff] [blame] | 2177 | void brcms_c_start_ap(struct brcms_c_info *wlc, u8 *addr, const u8 *bssid, |
| 2178 | u8 *ssid, size_t ssid_len) |
| 2179 | { |
| 2180 | brcms_c_set_ssid(wlc, ssid, ssid_len); |
| 2181 | |
| 2182 | memcpy(wlc->pub->cur_etheraddr, addr, sizeof(wlc->pub->cur_etheraddr)); |
| 2183 | memcpy(wlc->bsscfg->BSSID, bssid, sizeof(wlc->bsscfg->BSSID)); |
| 2184 | wlc->bsscfg->type = BRCMS_TYPE_AP; |
| 2185 | |
| 2186 | brcms_b_mctrl(wlc->hw, MCTL_AP | MCTL_INFRA, MCTL_AP | MCTL_INFRA); |
| 2187 | } |
| 2188 | |
Hauke Mehrtens | c55b376 | 2013-03-24 01:46:03 +0100 | [diff] [blame] | 2189 | void brcms_c_start_adhoc(struct brcms_c_info *wlc, u8 *addr) |
| 2190 | { |
| 2191 | memcpy(wlc->pub->cur_etheraddr, addr, sizeof(wlc->pub->cur_etheraddr)); |
| 2192 | wlc->bsscfg->type = BRCMS_TYPE_ADHOC; |
| 2193 | |
| 2194 | brcms_b_mctrl(wlc->hw, MCTL_AP | MCTL_INFRA, 0); |
| 2195 | } |
| 2196 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2197 | /* Initialize GPIOs that are controlled by D11 core */ |
| 2198 | static void brcms_c_gpio_init(struct brcms_c_info *wlc) |
| 2199 | { |
| 2200 | struct brcms_hardware *wlc_hw = wlc->hw; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2201 | u32 gc, gm; |
| 2202 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2203 | /* use GPIO select 0 to get all gpio signals from the gpio out reg */ |
| 2204 | brcms_b_mctrl(wlc_hw, MCTL_GPOUT_SEL_MASK, 0); |
| 2205 | |
| 2206 | /* |
| 2207 | * Common GPIO setup: |
| 2208 | * G0 = LED 0 = WLAN Activity |
| 2209 | * G1 = LED 1 = WLAN 2.4 GHz Radio State |
| 2210 | * G2 = LED 2 = WLAN 5 GHz Radio State |
| 2211 | * G4 = radio disable input (HI enabled, LO disabled) |
| 2212 | */ |
| 2213 | |
| 2214 | gc = gm = 0; |
| 2215 | |
| 2216 | /* Allocate GPIOs for mimo antenna diversity feature */ |
| 2217 | if (wlc_hw->antsel_type == ANTSEL_2x3) { |
| 2218 | /* Enable antenna diversity, use 2x3 mode */ |
| 2219 | brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN, |
| 2220 | MHF3_ANTSEL_EN, BRCM_BAND_ALL); |
| 2221 | brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE, |
| 2222 | MHF3_ANTSEL_MODE, BRCM_BAND_ALL); |
| 2223 | |
| 2224 | /* init superswitch control */ |
| 2225 | wlc_phy_antsel_init(wlc_hw->band->pi, false); |
| 2226 | |
| 2227 | } else if (wlc_hw->antsel_type == ANTSEL_2x4) { |
| 2228 | gm |= gc |= (BOARD_GPIO_12 | BOARD_GPIO_13); |
| 2229 | /* |
| 2230 | * The board itself is powered by these GPIOs |
| 2231 | * (when not sending pattern) so set them high |
| 2232 | */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2233 | bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_oe), |
| 2234 | (BOARD_GPIO_12 | BOARD_GPIO_13)); |
| 2235 | bcma_set16(wlc_hw->d11core, D11REGOFFS(psm_gpio_out), |
| 2236 | (BOARD_GPIO_12 | BOARD_GPIO_13)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2237 | |
| 2238 | /* Enable antenna diversity, use 2x4 mode */ |
| 2239 | brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_EN, |
| 2240 | MHF3_ANTSEL_EN, BRCM_BAND_ALL); |
| 2241 | brcms_b_mhf(wlc_hw, MHF3, MHF3_ANTSEL_MODE, 0, |
| 2242 | BRCM_BAND_ALL); |
| 2243 | |
| 2244 | /* Configure the desired clock to be 4Mhz */ |
| 2245 | brcms_b_write_shm(wlc_hw, M_ANTSEL_CLKDIV, |
| 2246 | ANTSEL_CLKDIV_4MHZ); |
| 2247 | } |
| 2248 | |
| 2249 | /* |
| 2250 | * gpio 9 controls the PA. ucode is responsible |
| 2251 | * for wiggling out and oe |
| 2252 | */ |
| 2253 | if (wlc_hw->boardflags & BFL_PACTRL) |
| 2254 | gm |= gc |= BOARD_GPIO_PACTRL; |
| 2255 | |
| 2256 | /* apply to gpiocontrol register */ |
Hauke Mehrtens | fa0b823 | 2012-04-29 02:50:34 +0200 | [diff] [blame] | 2257 | bcma_chipco_gpio_control(&wlc_hw->d11core->bus->drv_cc, gm, gc); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2258 | } |
| 2259 | |
| 2260 | static void brcms_ucode_write(struct brcms_hardware *wlc_hw, |
| 2261 | const __le32 ucode[], const size_t nbytes) |
| 2262 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2263 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2264 | uint i; |
| 2265 | uint count; |
| 2266 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2267 | brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2268 | |
| 2269 | count = (nbytes / sizeof(u32)); |
| 2270 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2271 | bcma_write32(core, D11REGOFFS(objaddr), |
| 2272 | OBJADDR_AUTO_INC | OBJADDR_UCM_SEL); |
| 2273 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2274 | for (i = 0; i < count; i++) |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2275 | bcma_write32(core, D11REGOFFS(objdata), le32_to_cpu(ucode[i])); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2276 | |
| 2277 | } |
| 2278 | |
| 2279 | static void brcms_ucode_download(struct brcms_hardware *wlc_hw) |
| 2280 | { |
| 2281 | struct brcms_c_info *wlc; |
| 2282 | struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode; |
| 2283 | |
| 2284 | wlc = wlc_hw->wlc; |
| 2285 | |
| 2286 | if (wlc_hw->ucode_loaded) |
| 2287 | return; |
| 2288 | |
Hauke Mehrtens | 6f80f01 | 2012-12-07 00:35:53 +0100 | [diff] [blame] | 2289 | if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2290 | if (BRCMS_ISNPHY(wlc_hw->band)) { |
| 2291 | brcms_ucode_write(wlc_hw, ucode->bcm43xx_16_mimo, |
| 2292 | ucode->bcm43xx_16_mimosz); |
| 2293 | wlc_hw->ucode_loaded = true; |
| 2294 | } else |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2295 | brcms_err(wlc_hw->d11core, |
| 2296 | "%s: wl%d: unsupported phy in corerev %d\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2297 | __func__, wlc_hw->unit, wlc_hw->corerev); |
| 2298 | } else if (D11REV_IS(wlc_hw->corerev, 24)) { |
| 2299 | if (BRCMS_ISLCNPHY(wlc_hw->band)) { |
| 2300 | brcms_ucode_write(wlc_hw, ucode->bcm43xx_24_lcn, |
| 2301 | ucode->bcm43xx_24_lcnsz); |
| 2302 | wlc_hw->ucode_loaded = true; |
| 2303 | } else { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2304 | brcms_err(wlc_hw->d11core, |
| 2305 | "%s: wl%d: unsupported phy in corerev %d\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2306 | __func__, wlc_hw->unit, wlc_hw->corerev); |
| 2307 | } |
| 2308 | } |
| 2309 | } |
| 2310 | |
| 2311 | void brcms_b_txant_set(struct brcms_hardware *wlc_hw, u16 phytxant) |
| 2312 | { |
| 2313 | /* update sw state */ |
| 2314 | wlc_hw->bmac_phytxant = phytxant; |
| 2315 | |
| 2316 | /* push to ucode if up */ |
| 2317 | if (!wlc_hw->up) |
| 2318 | return; |
| 2319 | brcms_c_ucode_txant_set(wlc_hw); |
| 2320 | |
| 2321 | } |
| 2322 | |
| 2323 | u16 brcms_b_get_txant(struct brcms_hardware *wlc_hw) |
| 2324 | { |
| 2325 | return (u16) wlc_hw->wlc->stf->txant; |
| 2326 | } |
| 2327 | |
| 2328 | void brcms_b_antsel_type_set(struct brcms_hardware *wlc_hw, u8 antsel_type) |
| 2329 | { |
| 2330 | wlc_hw->antsel_type = antsel_type; |
| 2331 | |
| 2332 | /* Update the antsel type for phy module to use */ |
| 2333 | wlc_phy_antsel_type_set(wlc_hw->band->pi, antsel_type); |
| 2334 | } |
| 2335 | |
| 2336 | static void brcms_b_fifoerrors(struct brcms_hardware *wlc_hw) |
| 2337 | { |
| 2338 | bool fatal = false; |
| 2339 | uint unit; |
| 2340 | uint intstatus, idx; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2341 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2342 | |
| 2343 | unit = wlc_hw->unit; |
| 2344 | |
| 2345 | for (idx = 0; idx < NFIFO; idx++) { |
| 2346 | /* read intstatus register and ignore any non-error bits */ |
| 2347 | intstatus = |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2348 | bcma_read32(core, |
| 2349 | D11REGOFFS(intctrlregs[idx].intstatus)) & |
| 2350 | I_ERRORS; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2351 | if (!intstatus) |
| 2352 | continue; |
| 2353 | |
Seth Forshee | 229a41d | 2012-11-15 08:08:06 -0600 | [diff] [blame] | 2354 | brcms_dbg_int(core, "wl%d: intstatus%d 0x%x\n", |
| 2355 | unit, idx, intstatus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2356 | |
| 2357 | if (intstatus & I_RO) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2358 | brcms_err(core, "wl%d: fifo %d: receive fifo " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2359 | "overflow\n", unit, idx); |
| 2360 | fatal = true; |
| 2361 | } |
| 2362 | |
| 2363 | if (intstatus & I_PC) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2364 | brcms_err(core, "wl%d: fifo %d: descriptor error\n", |
| 2365 | unit, idx); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2366 | fatal = true; |
| 2367 | } |
| 2368 | |
| 2369 | if (intstatus & I_PD) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2370 | brcms_err(core, "wl%d: fifo %d: data error\n", unit, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2371 | idx); |
| 2372 | fatal = true; |
| 2373 | } |
| 2374 | |
| 2375 | if (intstatus & I_DE) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2376 | brcms_err(core, "wl%d: fifo %d: descriptor protocol " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2377 | "error\n", unit, idx); |
| 2378 | fatal = true; |
| 2379 | } |
| 2380 | |
| 2381 | if (intstatus & I_RU) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2382 | brcms_err(core, "wl%d: fifo %d: receive descriptor " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2383 | "underflow\n", idx, unit); |
| 2384 | |
| 2385 | if (intstatus & I_XU) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2386 | brcms_err(core, "wl%d: fifo %d: transmit fifo " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2387 | "underflow\n", idx, unit); |
| 2388 | fatal = true; |
| 2389 | } |
| 2390 | |
| 2391 | if (fatal) { |
Roland Vossen | c261bdf | 2011-10-18 14:03:04 +0200 | [diff] [blame] | 2392 | brcms_fatal_error(wlc_hw->wlc->wl); /* big hammer */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2393 | break; |
| 2394 | } else |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2395 | bcma_write32(core, |
| 2396 | D11REGOFFS(intctrlregs[idx].intstatus), |
| 2397 | intstatus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2398 | } |
| 2399 | } |
| 2400 | |
| 2401 | void brcms_c_intrson(struct brcms_c_info *wlc) |
| 2402 | { |
| 2403 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 2404 | wlc->macintmask = wlc->defmacintmask; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2405 | bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2406 | } |
| 2407 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2408 | u32 brcms_c_intrsoff(struct brcms_c_info *wlc) |
| 2409 | { |
| 2410 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 2411 | u32 macintmask; |
| 2412 | |
| 2413 | if (!wlc_hw->clk) |
| 2414 | return 0; |
| 2415 | |
| 2416 | macintmask = wlc->macintmask; /* isr can still happen */ |
| 2417 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2418 | bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), 0); |
| 2419 | (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(macintmask)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2420 | udelay(1); /* ensure int line is no longer driven */ |
| 2421 | wlc->macintmask = 0; |
| 2422 | |
| 2423 | /* return previous macintmask; resolve race between us and our isr */ |
| 2424 | return wlc->macintstatus ? 0 : macintmask; |
| 2425 | } |
| 2426 | |
| 2427 | void brcms_c_intrsrestore(struct brcms_c_info *wlc, u32 macintmask) |
| 2428 | { |
| 2429 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 2430 | if (!wlc_hw->clk) |
| 2431 | return; |
| 2432 | |
| 2433 | wlc->macintmask = macintmask; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2434 | bcma_write32(wlc_hw->d11core, D11REGOFFS(macintmask), wlc->macintmask); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2435 | } |
| 2436 | |
Roland Vossen | dc46012 | 2011-10-21 16:16:28 +0200 | [diff] [blame] | 2437 | /* assumes that the d11 MAC is enabled */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2438 | static void brcms_b_tx_fifo_suspend(struct brcms_hardware *wlc_hw, |
| 2439 | uint tx_fifo) |
| 2440 | { |
| 2441 | u8 fifo = 1 << tx_fifo; |
| 2442 | |
| 2443 | /* Two clients of this code, 11h Quiet period and scanning. */ |
| 2444 | |
| 2445 | /* only suspend if not already suspended */ |
| 2446 | if ((wlc_hw->suspended_fifos & fifo) == fifo) |
| 2447 | return; |
| 2448 | |
| 2449 | /* force the core awake only if not already */ |
| 2450 | if (wlc_hw->suspended_fifos == 0) |
| 2451 | brcms_c_ucode_wake_override_set(wlc_hw, |
| 2452 | BRCMS_WAKE_OVERRIDE_TXFIFO); |
| 2453 | |
| 2454 | wlc_hw->suspended_fifos |= fifo; |
| 2455 | |
| 2456 | if (wlc_hw->di[tx_fifo]) { |
| 2457 | /* |
| 2458 | * Suspending AMPDU transmissions in the middle can cause |
| 2459 | * underflow which may result in mismatch between ucode and |
| 2460 | * driver so suspend the mac before suspending the FIFO |
| 2461 | */ |
| 2462 | if (BRCMS_PHY_11N_CAP(wlc_hw->band)) |
| 2463 | brcms_c_suspend_mac_and_wait(wlc_hw->wlc); |
| 2464 | |
| 2465 | dma_txsuspend(wlc_hw->di[tx_fifo]); |
| 2466 | |
| 2467 | if (BRCMS_PHY_11N_CAP(wlc_hw->band)) |
| 2468 | brcms_c_enable_mac(wlc_hw->wlc); |
| 2469 | } |
| 2470 | } |
| 2471 | |
| 2472 | static void brcms_b_tx_fifo_resume(struct brcms_hardware *wlc_hw, |
| 2473 | uint tx_fifo) |
| 2474 | { |
| 2475 | /* BMAC_NOTE: BRCMS_TX_FIFO_ENAB is done in brcms_c_dpc() for DMA case |
| 2476 | * but need to be done here for PIO otherwise the watchdog will catch |
| 2477 | * the inconsistency and fire |
| 2478 | */ |
| 2479 | /* Two clients of this code, 11h Quiet period and scanning. */ |
| 2480 | if (wlc_hw->di[tx_fifo]) |
| 2481 | dma_txresume(wlc_hw->di[tx_fifo]); |
| 2482 | |
| 2483 | /* allow core to sleep again */ |
| 2484 | if (wlc_hw->suspended_fifos == 0) |
| 2485 | return; |
| 2486 | else { |
| 2487 | wlc_hw->suspended_fifos &= ~(1 << tx_fifo); |
| 2488 | if (wlc_hw->suspended_fifos == 0) |
| 2489 | brcms_c_ucode_wake_override_clear(wlc_hw, |
| 2490 | BRCMS_WAKE_OVERRIDE_TXFIFO); |
| 2491 | } |
| 2492 | } |
| 2493 | |
Roland Vossen | a8bc491 | 2011-10-21 16:16:25 +0200 | [diff] [blame] | 2494 | /* precondition: requires the mac core to be enabled */ |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 2495 | static void brcms_b_mute(struct brcms_hardware *wlc_hw, bool mute_tx) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2496 | { |
| 2497 | static const u8 null_ether_addr[ETH_ALEN] = {0, 0, 0, 0, 0, 0}; |
Arend van Spriel | b180b10 | 2013-01-02 15:22:36 +0100 | [diff] [blame] | 2498 | u8 *ethaddr = wlc_hw->wlc->pub->cur_etheraddr; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2499 | |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 2500 | if (mute_tx) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2501 | /* suspend tx fifos */ |
| 2502 | brcms_b_tx_fifo_suspend(wlc_hw, TX_DATA_FIFO); |
| 2503 | brcms_b_tx_fifo_suspend(wlc_hw, TX_CTL_FIFO); |
| 2504 | brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_BK_FIFO); |
| 2505 | brcms_b_tx_fifo_suspend(wlc_hw, TX_AC_VI_FIFO); |
| 2506 | |
| 2507 | /* zero the address match register so we do not send ACKs */ |
Arend van Spriel | b180b10 | 2013-01-02 15:22:36 +0100 | [diff] [blame] | 2508 | brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET, null_ether_addr); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2509 | } else { |
| 2510 | /* resume tx fifos */ |
| 2511 | brcms_b_tx_fifo_resume(wlc_hw, TX_DATA_FIFO); |
| 2512 | brcms_b_tx_fifo_resume(wlc_hw, TX_CTL_FIFO); |
| 2513 | brcms_b_tx_fifo_resume(wlc_hw, TX_AC_BK_FIFO); |
| 2514 | brcms_b_tx_fifo_resume(wlc_hw, TX_AC_VI_FIFO); |
| 2515 | |
| 2516 | /* Restore address */ |
Arend van Spriel | b180b10 | 2013-01-02 15:22:36 +0100 | [diff] [blame] | 2517 | brcms_b_set_addrmatch(wlc_hw, RCM_MAC_OFFSET, ethaddr); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2518 | } |
| 2519 | |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 2520 | wlc_phy_mute_upd(wlc_hw->band->pi, mute_tx, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2521 | |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 2522 | if (mute_tx) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2523 | brcms_c_ucode_mute_override_set(wlc_hw); |
| 2524 | else |
| 2525 | brcms_c_ucode_mute_override_clear(wlc_hw); |
| 2526 | } |
| 2527 | |
Roland Vossen | dc46012 | 2011-10-21 16:16:28 +0200 | [diff] [blame] | 2528 | void |
| 2529 | brcms_c_mute(struct brcms_c_info *wlc, bool mute_tx) |
| 2530 | { |
| 2531 | brcms_b_mute(wlc->hw, mute_tx); |
| 2532 | } |
| 2533 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2534 | /* |
| 2535 | * Read and clear macintmask and macintstatus and intstatus registers. |
| 2536 | * This routine should be called with interrupts off |
| 2537 | * Return: |
| 2538 | * -1 if brcms_deviceremoved(wlc) evaluates to true; |
| 2539 | * 0 if the interrupt is not for us, or we are in some special cases; |
| 2540 | * device interrupt status bits otherwise. |
| 2541 | */ |
| 2542 | static inline u32 wlc_intstatus(struct brcms_c_info *wlc, bool in_isr) |
| 2543 | { |
| 2544 | struct brcms_hardware *wlc_hw = wlc->hw; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2545 | struct bcma_device *core = wlc_hw->d11core; |
Seth Forshee | e3c0d8a | 2012-11-15 08:08:10 -0600 | [diff] [blame] | 2546 | u32 macintstatus, mask; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2547 | |
| 2548 | /* macintstatus includes a DMA interrupt summary bit */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2549 | macintstatus = bcma_read32(core, D11REGOFFS(macintstatus)); |
Seth Forshee | e3c0d8a | 2012-11-15 08:08:10 -0600 | [diff] [blame] | 2550 | mask = in_isr ? wlc->macintmask : wlc->defmacintmask; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2551 | |
Seth Forshee | e3c0d8a | 2012-11-15 08:08:10 -0600 | [diff] [blame] | 2552 | trace_brcms_macintstatus(&core->dev, in_isr, macintstatus, mask); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2553 | |
| 2554 | /* detect cardbus removed, in power down(suspend) and in reset */ |
| 2555 | if (brcms_deviceremoved(wlc)) |
| 2556 | return -1; |
| 2557 | |
| 2558 | /* brcms_deviceremoved() succeeds even when the core is still resetting, |
| 2559 | * handle that case here. |
| 2560 | */ |
| 2561 | if (macintstatus == 0xffffffff) |
| 2562 | return 0; |
| 2563 | |
| 2564 | /* defer unsolicited interrupts */ |
Seth Forshee | e3c0d8a | 2012-11-15 08:08:10 -0600 | [diff] [blame] | 2565 | macintstatus &= mask; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2566 | |
| 2567 | /* if not for us */ |
| 2568 | if (macintstatus == 0) |
| 2569 | return 0; |
| 2570 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2571 | /* turn off the interrupts */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2572 | bcma_write32(core, D11REGOFFS(macintmask), 0); |
| 2573 | (void)bcma_read32(core, D11REGOFFS(macintmask)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2574 | wlc->macintmask = 0; |
| 2575 | |
| 2576 | /* clear device interrupts */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2577 | bcma_write32(core, D11REGOFFS(macintstatus), macintstatus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2578 | |
| 2579 | /* MI_DMAINT is indication of non-zero intstatus */ |
| 2580 | if (macintstatus & MI_DMAINT) |
| 2581 | /* |
| 2582 | * only fifo interrupt enabled is I_RI in |
| 2583 | * RX_FIFO. If MI_DMAINT is set, assume it |
| 2584 | * is set and clear the interrupt. |
| 2585 | */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2586 | bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intstatus), |
| 2587 | DEF_RXINTMASK); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2588 | |
| 2589 | return macintstatus; |
| 2590 | } |
| 2591 | |
| 2592 | /* Update wlc->macintstatus and wlc->intstatus[]. */ |
| 2593 | /* Return true if they are updated successfully. false otherwise */ |
| 2594 | bool brcms_c_intrsupd(struct brcms_c_info *wlc) |
| 2595 | { |
| 2596 | u32 macintstatus; |
| 2597 | |
| 2598 | /* read and clear macintstatus and intstatus registers */ |
| 2599 | macintstatus = wlc_intstatus(wlc, false); |
| 2600 | |
| 2601 | /* device is removed */ |
| 2602 | if (macintstatus == 0xffffffff) |
| 2603 | return false; |
| 2604 | |
| 2605 | /* update interrupt status in software */ |
| 2606 | wlc->macintstatus |= macintstatus; |
| 2607 | |
| 2608 | return true; |
| 2609 | } |
| 2610 | |
| 2611 | /* |
| 2612 | * First-level interrupt processing. |
Piotr Haber | 94d9902 | 2012-11-28 21:44:06 +0100 | [diff] [blame] | 2613 | * Return true if this was our interrupt |
| 2614 | * and if further brcms_c_dpc() processing is required, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2615 | * false otherwise. |
| 2616 | */ |
Piotr Haber | 94d9902 | 2012-11-28 21:44:06 +0100 | [diff] [blame] | 2617 | bool brcms_c_isr(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2618 | { |
| 2619 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 2620 | u32 macintstatus; |
| 2621 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2622 | if (!wlc_hw->up || !wlc->macintmask) |
| 2623 | return false; |
| 2624 | |
| 2625 | /* read and clear macintstatus and intstatus registers */ |
| 2626 | macintstatus = wlc_intstatus(wlc, true); |
| 2627 | |
Piotr Haber | 94d9902 | 2012-11-28 21:44:06 +0100 | [diff] [blame] | 2628 | if (macintstatus == 0xffffffff) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2629 | brcms_err(wlc_hw->d11core, |
| 2630 | "DEVICEREMOVED detected in the ISR code path\n"); |
Piotr Haber | 94d9902 | 2012-11-28 21:44:06 +0100 | [diff] [blame] | 2631 | return false; |
| 2632 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2633 | |
| 2634 | /* it is not for us */ |
| 2635 | if (macintstatus == 0) |
| 2636 | return false; |
| 2637 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2638 | /* save interrupt status bits */ |
| 2639 | wlc->macintstatus = macintstatus; |
| 2640 | |
| 2641 | return true; |
| 2642 | |
| 2643 | } |
| 2644 | |
| 2645 | void brcms_c_suspend_mac_and_wait(struct brcms_c_info *wlc) |
| 2646 | { |
| 2647 | struct brcms_hardware *wlc_hw = wlc->hw; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2648 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2649 | u32 mc, mi; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2650 | |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 2651 | brcms_dbg_mac80211(core, "wl%d: bandunit %d\n", wlc_hw->unit, |
| 2652 | wlc_hw->band->bandunit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2653 | |
| 2654 | /* |
| 2655 | * Track overlapping suspend requests |
| 2656 | */ |
| 2657 | wlc_hw->mac_suspend_depth++; |
| 2658 | if (wlc_hw->mac_suspend_depth > 1) |
| 2659 | return; |
| 2660 | |
| 2661 | /* force the core awake */ |
| 2662 | brcms_c_ucode_wake_override_set(wlc_hw, BRCMS_WAKE_OVERRIDE_MACSUSPEND); |
| 2663 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2664 | mc = bcma_read32(core, D11REGOFFS(maccontrol)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2665 | |
| 2666 | if (mc == 0xffffffff) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2667 | brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2668 | __func__); |
| 2669 | brcms_down(wlc->wl); |
| 2670 | return; |
| 2671 | } |
| 2672 | WARN_ON(mc & MCTL_PSM_JMP_0); |
| 2673 | WARN_ON(!(mc & MCTL_PSM_RUN)); |
| 2674 | WARN_ON(!(mc & MCTL_EN_MAC)); |
| 2675 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2676 | mi = bcma_read32(core, D11REGOFFS(macintstatus)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2677 | if (mi == 0xffffffff) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2678 | brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2679 | __func__); |
| 2680 | brcms_down(wlc->wl); |
| 2681 | return; |
| 2682 | } |
| 2683 | WARN_ON(mi & MI_MACSSPNDD); |
| 2684 | |
| 2685 | brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, 0); |
| 2686 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2687 | SPINWAIT(!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD), |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2688 | BRCMS_MAX_MAC_SUSPEND); |
| 2689 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2690 | if (!(bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2691 | brcms_err(core, "wl%d: wlc_suspend_mac_and_wait: waited %d uS" |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2692 | " and MI_MACSSPNDD is still not on.\n", |
| 2693 | wlc_hw->unit, BRCMS_MAX_MAC_SUSPEND); |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2694 | brcms_err(core, "wl%d: psmdebug 0x%08x, phydebug 0x%08x, " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2695 | "psm_brc 0x%04x\n", wlc_hw->unit, |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2696 | bcma_read32(core, D11REGOFFS(psmdebug)), |
| 2697 | bcma_read32(core, D11REGOFFS(phydebug)), |
| 2698 | bcma_read16(core, D11REGOFFS(psm_brc))); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2699 | } |
| 2700 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2701 | mc = bcma_read32(core, D11REGOFFS(maccontrol)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2702 | if (mc == 0xffffffff) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2703 | brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2704 | __func__); |
| 2705 | brcms_down(wlc->wl); |
| 2706 | return; |
| 2707 | } |
| 2708 | WARN_ON(mc & MCTL_PSM_JMP_0); |
| 2709 | WARN_ON(!(mc & MCTL_PSM_RUN)); |
| 2710 | WARN_ON(mc & MCTL_EN_MAC); |
| 2711 | } |
| 2712 | |
| 2713 | void brcms_c_enable_mac(struct brcms_c_info *wlc) |
| 2714 | { |
| 2715 | struct brcms_hardware *wlc_hw = wlc->hw; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2716 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2717 | u32 mc, mi; |
| 2718 | |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 2719 | brcms_dbg_mac80211(core, "wl%d: bandunit %d\n", wlc_hw->unit, |
| 2720 | wlc->band->bandunit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2721 | |
| 2722 | /* |
| 2723 | * Track overlapping suspend requests |
| 2724 | */ |
| 2725 | wlc_hw->mac_suspend_depth--; |
| 2726 | if (wlc_hw->mac_suspend_depth > 0) |
| 2727 | return; |
| 2728 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2729 | mc = bcma_read32(core, D11REGOFFS(maccontrol)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2730 | WARN_ON(mc & MCTL_PSM_JMP_0); |
| 2731 | WARN_ON(mc & MCTL_EN_MAC); |
| 2732 | WARN_ON(!(mc & MCTL_PSM_RUN)); |
| 2733 | |
| 2734 | brcms_b_mctrl(wlc_hw, MCTL_EN_MAC, MCTL_EN_MAC); |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2735 | bcma_write32(core, D11REGOFFS(macintstatus), MI_MACSSPNDD); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2736 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2737 | mc = bcma_read32(core, D11REGOFFS(maccontrol)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2738 | WARN_ON(mc & MCTL_PSM_JMP_0); |
| 2739 | WARN_ON(!(mc & MCTL_EN_MAC)); |
| 2740 | WARN_ON(!(mc & MCTL_PSM_RUN)); |
| 2741 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2742 | mi = bcma_read32(core, D11REGOFFS(macintstatus)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2743 | WARN_ON(mi & MI_MACSSPNDD); |
| 2744 | |
| 2745 | brcms_c_ucode_wake_override_clear(wlc_hw, |
| 2746 | BRCMS_WAKE_OVERRIDE_MACSUSPEND); |
| 2747 | } |
| 2748 | |
| 2749 | void brcms_b_band_stf_ss_set(struct brcms_hardware *wlc_hw, u8 stf_mode) |
| 2750 | { |
| 2751 | wlc_hw->hw_stf_ss_opmode = stf_mode; |
| 2752 | |
| 2753 | if (wlc_hw->clk) |
| 2754 | brcms_upd_ofdm_pctl1_table(wlc_hw); |
| 2755 | } |
| 2756 | |
| 2757 | static bool brcms_b_validate_chip_access(struct brcms_hardware *wlc_hw) |
| 2758 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2759 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2760 | u32 w, val; |
| 2761 | struct wiphy *wiphy = wlc_hw->wlc->wiphy; |
| 2762 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2763 | /* Validate dchip register access */ |
| 2764 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2765 | bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0); |
| 2766 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 2767 | w = bcma_read32(core, D11REGOFFS(objdata)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2768 | |
| 2769 | /* Can we write and read back a 32bit register? */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2770 | bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0); |
| 2771 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 2772 | bcma_write32(core, D11REGOFFS(objdata), (u32) 0xaa5555aa); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2773 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2774 | bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0); |
| 2775 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 2776 | val = bcma_read32(core, D11REGOFFS(objdata)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2777 | if (val != (u32) 0xaa5555aa) { |
| 2778 | wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, " |
| 2779 | "expected 0xaa5555aa\n", wlc_hw->unit, val); |
| 2780 | return false; |
| 2781 | } |
| 2782 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2783 | bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0); |
| 2784 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 2785 | bcma_write32(core, D11REGOFFS(objdata), (u32) 0x55aaaa55); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2786 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2787 | bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0); |
| 2788 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 2789 | val = bcma_read32(core, D11REGOFFS(objdata)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2790 | if (val != (u32) 0x55aaaa55) { |
| 2791 | wiphy_err(wiphy, "wl%d: validate_chip_access: SHM = 0x%x, " |
| 2792 | "expected 0x55aaaa55\n", wlc_hw->unit, val); |
| 2793 | return false; |
| 2794 | } |
| 2795 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2796 | bcma_write32(core, D11REGOFFS(objaddr), OBJADDR_SHM_SEL | 0); |
| 2797 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 2798 | bcma_write32(core, D11REGOFFS(objdata), w); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2799 | |
| 2800 | /* clear CFPStart */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2801 | bcma_write32(core, D11REGOFFS(tsf_cfpstart), 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2802 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2803 | w = bcma_read32(core, D11REGOFFS(maccontrol)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2804 | if ((w != (MCTL_IHR_EN | MCTL_WAKE)) && |
| 2805 | (w != (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE))) { |
| 2806 | wiphy_err(wiphy, "wl%d: validate_chip_access: maccontrol = " |
| 2807 | "0x%x, expected 0x%x or 0x%x\n", wlc_hw->unit, w, |
| 2808 | (MCTL_IHR_EN | MCTL_WAKE), |
| 2809 | (MCTL_IHR_EN | MCTL_GMODE | MCTL_WAKE)); |
| 2810 | return false; |
| 2811 | } |
| 2812 | |
| 2813 | return true; |
| 2814 | } |
| 2815 | |
| 2816 | #define PHYPLL_WAIT_US 100000 |
| 2817 | |
| 2818 | void brcms_b_core_phypll_ctl(struct brcms_hardware *wlc_hw, bool on) |
| 2819 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2820 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2821 | u32 tmp; |
| 2822 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2823 | brcms_dbg_info(core, "wl%d\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2824 | |
| 2825 | tmp = 0; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2826 | |
| 2827 | if (on) { |
Hauke Mehrtens | 1ef1a57 | 2012-06-30 15:16:13 +0200 | [diff] [blame] | 2828 | if ((ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM4313)) { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2829 | bcma_set32(core, D11REGOFFS(clk_ctl_st), |
| 2830 | CCS_ERSRC_REQ_HT | |
| 2831 | CCS_ERSRC_REQ_D11PLL | |
| 2832 | CCS_ERSRC_REQ_PHYPLL); |
| 2833 | SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) & |
| 2834 | CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2835 | PHYPLL_WAIT_US); |
| 2836 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2837 | tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st)); |
| 2838 | if ((tmp & CCS_ERSRC_AVAIL_HT) != CCS_ERSRC_AVAIL_HT) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2839 | brcms_err(core, "%s: turn on PHY PLL failed\n", |
| 2840 | __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2841 | } else { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2842 | bcma_set32(core, D11REGOFFS(clk_ctl_st), |
| 2843 | tmp | CCS_ERSRC_REQ_D11PLL | |
| 2844 | CCS_ERSRC_REQ_PHYPLL); |
| 2845 | SPINWAIT((bcma_read32(core, D11REGOFFS(clk_ctl_st)) & |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2846 | (CCS_ERSRC_AVAIL_D11PLL | |
| 2847 | CCS_ERSRC_AVAIL_PHYPLL)) != |
| 2848 | (CCS_ERSRC_AVAIL_D11PLL | |
| 2849 | CCS_ERSRC_AVAIL_PHYPLL), PHYPLL_WAIT_US); |
| 2850 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2851 | tmp = bcma_read32(core, D11REGOFFS(clk_ctl_st)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2852 | if ((tmp & |
| 2853 | (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL)) |
| 2854 | != |
| 2855 | (CCS_ERSRC_AVAIL_D11PLL | CCS_ERSRC_AVAIL_PHYPLL)) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2856 | brcms_err(core, "%s: turn on PHY PLL failed\n", |
| 2857 | __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2858 | } |
| 2859 | } else { |
| 2860 | /* |
| 2861 | * Since the PLL may be shared, other cores can still |
| 2862 | * be requesting it; so we'll deassert the request but |
| 2863 | * not wait for status to comply. |
| 2864 | */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2865 | bcma_mask32(core, D11REGOFFS(clk_ctl_st), |
| 2866 | ~CCS_ERSRC_REQ_PHYPLL); |
| 2867 | (void)bcma_read32(core, D11REGOFFS(clk_ctl_st)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2868 | } |
| 2869 | } |
| 2870 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 2871 | static void brcms_c_coredisable(struct brcms_hardware *wlc_hw) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2872 | { |
| 2873 | bool dev_gone; |
| 2874 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 2875 | brcms_dbg_info(wlc_hw->d11core, "wl%d: disable core\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2876 | |
| 2877 | dev_gone = brcms_deviceremoved(wlc_hw->wlc); |
| 2878 | |
| 2879 | if (dev_gone) |
| 2880 | return; |
| 2881 | |
| 2882 | if (wlc_hw->noreset) |
| 2883 | return; |
| 2884 | |
| 2885 | /* radio off */ |
| 2886 | wlc_phy_switch_radio(wlc_hw->band->pi, OFF); |
| 2887 | |
| 2888 | /* turn off analog core */ |
| 2889 | wlc_phy_anacore(wlc_hw->band->pi, OFF); |
| 2890 | |
| 2891 | /* turn off PHYPLL to save power */ |
| 2892 | brcms_b_core_phypll_ctl(wlc_hw, false); |
| 2893 | |
| 2894 | wlc_hw->clk = false; |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 2895 | bcma_core_disable(wlc_hw->d11core, 0); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2896 | wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false); |
| 2897 | } |
| 2898 | |
| 2899 | static void brcms_c_flushqueues(struct brcms_c_info *wlc) |
| 2900 | { |
| 2901 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 2902 | uint i; |
| 2903 | |
| 2904 | /* free any posted tx packets */ |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 2905 | for (i = 0; i < NFIFO; i++) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2906 | if (wlc_hw->di[i]) { |
| 2907 | dma_txreclaim(wlc_hw->di[i], DMA_RANGE_ALL); |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 2908 | if (i < TX_BCMC_FIFO) |
| 2909 | ieee80211_wake_queue(wlc->pub->ieee_hw, |
| 2910 | brcms_fifo_to_ac(i)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2911 | } |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 2912 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2913 | |
| 2914 | /* free any posted rx packets */ |
| 2915 | dma_rxreclaim(wlc_hw->di[RX_FIFO]); |
| 2916 | } |
| 2917 | |
| 2918 | static u16 |
| 2919 | brcms_b_read_objmem(struct brcms_hardware *wlc_hw, uint offset, u32 sel) |
| 2920 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2921 | struct bcma_device *core = wlc_hw->d11core; |
| 2922 | u16 objoff = D11REGOFFS(objdata); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2923 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2924 | bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2)); |
| 2925 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2926 | if (offset & 2) |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2927 | objoff += 2; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2928 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2929 | return bcma_read16(core, objoff); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2930 | } |
| 2931 | |
| 2932 | static void |
| 2933 | brcms_b_write_objmem(struct brcms_hardware *wlc_hw, uint offset, u16 v, |
| 2934 | u32 sel) |
| 2935 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2936 | struct bcma_device *core = wlc_hw->d11core; |
| 2937 | u16 objoff = D11REGOFFS(objdata); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2938 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2939 | bcma_write32(core, D11REGOFFS(objaddr), sel | (offset >> 2)); |
| 2940 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2941 | if (offset & 2) |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 2942 | objoff += 2; |
| 2943 | |
Hauke Mehrtens | 512ae05 | 2012-12-07 17:04:13 +0100 | [diff] [blame] | 2944 | bcma_wflush16(core, objoff, v); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 2945 | } |
| 2946 | |
| 2947 | /* |
| 2948 | * Read a single u16 from shared memory. |
| 2949 | * SHM 'offset' needs to be an even address |
| 2950 | */ |
| 2951 | u16 brcms_b_read_shm(struct brcms_hardware *wlc_hw, uint offset) |
| 2952 | { |
| 2953 | return brcms_b_read_objmem(wlc_hw, offset, OBJADDR_SHM_SEL); |
| 2954 | } |
| 2955 | |
| 2956 | /* |
| 2957 | * Write a single u16 to shared memory. |
| 2958 | * SHM 'offset' needs to be an even address |
| 2959 | */ |
| 2960 | void brcms_b_write_shm(struct brcms_hardware *wlc_hw, uint offset, u16 v) |
| 2961 | { |
| 2962 | brcms_b_write_objmem(wlc_hw, offset, v, OBJADDR_SHM_SEL); |
| 2963 | } |
| 2964 | |
| 2965 | /* |
| 2966 | * Copy a buffer to shared memory of specified type . |
| 2967 | * SHM 'offset' needs to be an even address and |
| 2968 | * Buffer length 'len' must be an even number of bytes |
| 2969 | * 'sel' selects the type of memory |
| 2970 | */ |
| 2971 | void |
| 2972 | brcms_b_copyto_objmem(struct brcms_hardware *wlc_hw, uint offset, |
| 2973 | const void *buf, int len, u32 sel) |
| 2974 | { |
| 2975 | u16 v; |
| 2976 | const u8 *p = (const u8 *)buf; |
| 2977 | int i; |
| 2978 | |
| 2979 | if (len <= 0 || (offset & 1) || (len & 1)) |
| 2980 | return; |
| 2981 | |
| 2982 | for (i = 0; i < len; i += 2) { |
| 2983 | v = p[i] | (p[i + 1] << 8); |
| 2984 | brcms_b_write_objmem(wlc_hw, offset + i, v, sel); |
| 2985 | } |
| 2986 | } |
| 2987 | |
| 2988 | /* |
| 2989 | * Copy a piece of shared memory of specified type to a buffer . |
| 2990 | * SHM 'offset' needs to be an even address and |
| 2991 | * Buffer length 'len' must be an even number of bytes |
| 2992 | * 'sel' selects the type of memory |
| 2993 | */ |
| 2994 | void |
| 2995 | brcms_b_copyfrom_objmem(struct brcms_hardware *wlc_hw, uint offset, void *buf, |
| 2996 | int len, u32 sel) |
| 2997 | { |
| 2998 | u16 v; |
| 2999 | u8 *p = (u8 *) buf; |
| 3000 | int i; |
| 3001 | |
| 3002 | if (len <= 0 || (offset & 1) || (len & 1)) |
| 3003 | return; |
| 3004 | |
| 3005 | for (i = 0; i < len; i += 2) { |
| 3006 | v = brcms_b_read_objmem(wlc_hw, offset + i, sel); |
| 3007 | p[i] = v & 0xFF; |
| 3008 | p[i + 1] = (v >> 8) & 0xFF; |
| 3009 | } |
| 3010 | } |
| 3011 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3012 | /* Copy a buffer to shared memory. |
| 3013 | * SHM 'offset' needs to be an even address and |
| 3014 | * Buffer length 'len' must be an even number of bytes |
| 3015 | */ |
| 3016 | static void brcms_c_copyto_shm(struct brcms_c_info *wlc, uint offset, |
| 3017 | const void *buf, int len) |
| 3018 | { |
| 3019 | brcms_b_copyto_objmem(wlc->hw, offset, buf, len, OBJADDR_SHM_SEL); |
| 3020 | } |
| 3021 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3022 | static void brcms_b_retrylimit_upd(struct brcms_hardware *wlc_hw, |
| 3023 | u16 SRL, u16 LRL) |
| 3024 | { |
| 3025 | wlc_hw->SRL = SRL; |
| 3026 | wlc_hw->LRL = LRL; |
| 3027 | |
| 3028 | /* write retry limit to SCR, shouldn't need to suspend */ |
| 3029 | if (wlc_hw->up) { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3030 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr), |
| 3031 | OBJADDR_SCR_SEL | S_DOT11_SRC_LMT); |
| 3032 | (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr)); |
| 3033 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->SRL); |
| 3034 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objaddr), |
| 3035 | OBJADDR_SCR_SEL | S_DOT11_LRC_LMT); |
| 3036 | (void)bcma_read32(wlc_hw->d11core, D11REGOFFS(objaddr)); |
| 3037 | bcma_write32(wlc_hw->d11core, D11REGOFFS(objdata), wlc_hw->LRL); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3038 | } |
| 3039 | } |
| 3040 | |
| 3041 | static void brcms_b_pllreq(struct brcms_hardware *wlc_hw, bool set, u32 req_bit) |
| 3042 | { |
| 3043 | if (set) { |
| 3044 | if (mboolisset(wlc_hw->pllreq, req_bit)) |
| 3045 | return; |
| 3046 | |
| 3047 | mboolset(wlc_hw->pllreq, req_bit); |
| 3048 | |
| 3049 | if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) { |
| 3050 | if (!wlc_hw->sbclk) |
| 3051 | brcms_b_xtal(wlc_hw, ON); |
| 3052 | } |
| 3053 | } else { |
| 3054 | if (!mboolisset(wlc_hw->pllreq, req_bit)) |
| 3055 | return; |
| 3056 | |
| 3057 | mboolclr(wlc_hw->pllreq, req_bit); |
| 3058 | |
| 3059 | if (mboolisset(wlc_hw->pllreq, BRCMS_PLLREQ_FLIP)) { |
| 3060 | if (wlc_hw->sbclk) |
| 3061 | brcms_b_xtal(wlc_hw, OFF); |
| 3062 | } |
| 3063 | } |
| 3064 | } |
| 3065 | |
| 3066 | static void brcms_b_antsel_set(struct brcms_hardware *wlc_hw, u32 antsel_avail) |
| 3067 | { |
| 3068 | wlc_hw->antsel_avail = antsel_avail; |
| 3069 | } |
| 3070 | |
| 3071 | /* |
| 3072 | * conditions under which the PM bit should be set in outgoing frames |
| 3073 | * and STAY_AWAKE is meaningful |
| 3074 | */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3075 | static bool brcms_c_ps_allowed(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3076 | { |
Arend van Spriel | 541e667 | 2013-06-06 13:29:56 +0200 | [diff] [blame] | 3077 | /* not supporting PS so always return false for now */ |
| 3078 | return false; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3079 | } |
| 3080 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3081 | static void brcms_c_statsupd(struct brcms_c_info *wlc) |
| 3082 | { |
| 3083 | int i; |
| 3084 | struct macstat macstats; |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 3085 | #ifdef DEBUG |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3086 | u16 delta; |
| 3087 | u16 rxf0ovfl; |
| 3088 | u16 txfunfl[NFIFO]; |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 3089 | #endif /* DEBUG */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3090 | |
| 3091 | /* if driver down, make no sense to update stats */ |
| 3092 | if (!wlc->pub->up) |
| 3093 | return; |
| 3094 | |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 3095 | #ifdef DEBUG |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3096 | /* save last rx fifo 0 overflow count */ |
| 3097 | rxf0ovfl = wlc->core->macstat_snapshot->rxf0ovfl; |
| 3098 | |
| 3099 | /* save last tx fifo underflow count */ |
| 3100 | for (i = 0; i < NFIFO; i++) |
| 3101 | txfunfl[i] = wlc->core->macstat_snapshot->txfunfl[i]; |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 3102 | #endif /* DEBUG */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3103 | |
| 3104 | /* Read mac stats from contiguous shared memory */ |
| 3105 | brcms_b_copyfrom_objmem(wlc->hw, M_UCODE_MACSTAT, &macstats, |
| 3106 | sizeof(struct macstat), OBJADDR_SHM_SEL); |
| 3107 | |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 3108 | #ifdef DEBUG |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3109 | /* check for rx fifo 0 overflow */ |
| 3110 | delta = (u16) (wlc->core->macstat_snapshot->rxf0ovfl - rxf0ovfl); |
| 3111 | if (delta) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3112 | brcms_err(wlc->hw->d11core, "wl%d: %u rx fifo 0 overflows!\n", |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3113 | wlc->pub->unit, delta); |
| 3114 | |
| 3115 | /* check for tx fifo underflows */ |
| 3116 | for (i = 0; i < NFIFO; i++) { |
| 3117 | delta = |
| 3118 | (u16) (wlc->core->macstat_snapshot->txfunfl[i] - |
| 3119 | txfunfl[i]); |
| 3120 | if (delta) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3121 | brcms_err(wlc->hw->d11core, |
| 3122 | "wl%d: %u tx fifo %d underflows!\n", |
| 3123 | wlc->pub->unit, delta, i); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3124 | } |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 3125 | #endif /* DEBUG */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3126 | |
| 3127 | /* merge counters from dma module */ |
| 3128 | for (i = 0; i < NFIFO; i++) { |
| 3129 | if (wlc->hw->di[i]) |
| 3130 | dma_counterreset(wlc->hw->di[i]); |
| 3131 | } |
| 3132 | } |
| 3133 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3134 | static void brcms_b_reset(struct brcms_hardware *wlc_hw) |
| 3135 | { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3136 | /* reset the core */ |
| 3137 | if (!brcms_deviceremoved(wlc_hw->wlc)) |
| 3138 | brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS); |
| 3139 | |
| 3140 | /* purge the dma rings */ |
| 3141 | brcms_c_flushqueues(wlc_hw->wlc); |
| 3142 | } |
| 3143 | |
| 3144 | void brcms_c_reset(struct brcms_c_info *wlc) |
| 3145 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3146 | brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3147 | |
| 3148 | /* slurp up hw mac counters before core reset */ |
| 3149 | brcms_c_statsupd(wlc); |
| 3150 | |
| 3151 | /* reset our snapshot of macstat counters */ |
Joe Perches | b56e681 | 2013-02-13 17:33:21 -0800 | [diff] [blame] | 3152 | memset(wlc->core->macstat_snapshot, 0, sizeof(struct macstat)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3153 | |
| 3154 | brcms_b_reset(wlc->hw); |
| 3155 | } |
| 3156 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3157 | void brcms_c_init_scb(struct scb *scb) |
| 3158 | { |
| 3159 | int i; |
| 3160 | |
| 3161 | memset(scb, 0, sizeof(struct scb)); |
| 3162 | scb->flags = SCB_WMECAP | SCB_HTCAP; |
| 3163 | for (i = 0; i < NUMPRIO; i++) { |
| 3164 | scb->seqnum[i] = 0; |
| 3165 | scb->seqctl[i] = 0xFFFF; |
| 3166 | } |
| 3167 | |
| 3168 | scb->seqctl_nonqos = 0xFFFF; |
| 3169 | scb->magic = SCB_MAGIC; |
| 3170 | } |
| 3171 | |
| 3172 | /* d11 core init |
| 3173 | * reset PSM |
| 3174 | * download ucode/PCM |
| 3175 | * let ucode run to suspended |
| 3176 | * download ucode inits |
| 3177 | * config other core registers |
| 3178 | * init dma |
| 3179 | */ |
| 3180 | static void brcms_b_coreinit(struct brcms_c_info *wlc) |
| 3181 | { |
| 3182 | struct brcms_hardware *wlc_hw = wlc->hw; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3183 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3184 | u32 sflags; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3185 | u32 bcnint_us; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3186 | uint i = 0; |
| 3187 | bool fifosz_fixup = false; |
| 3188 | int err = 0; |
| 3189 | u16 buf[NFIFO]; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3190 | struct brcms_ucode *ucode = &wlc_hw->wlc->wl->ucode; |
| 3191 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3192 | brcms_dbg_info(core, "wl%d: core init\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3193 | |
| 3194 | /* reset PSM */ |
| 3195 | brcms_b_mctrl(wlc_hw, ~0, (MCTL_IHR_EN | MCTL_PSM_JMP_0 | MCTL_WAKE)); |
| 3196 | |
| 3197 | brcms_ucode_download(wlc_hw); |
| 3198 | /* |
| 3199 | * FIFOSZ fixup. driver wants to controls the fifo allocation. |
| 3200 | */ |
| 3201 | fifosz_fixup = true; |
| 3202 | |
| 3203 | /* let the PSM run to the suspended state, set mode to BSS STA */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3204 | bcma_write32(core, D11REGOFFS(macintstatus), -1); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3205 | brcms_b_mctrl(wlc_hw, ~0, |
| 3206 | (MCTL_IHR_EN | MCTL_INFRA | MCTL_PSM_RUN | MCTL_WAKE)); |
| 3207 | |
| 3208 | /* wait for ucode to self-suspend after auto-init */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3209 | SPINWAIT(((bcma_read32(core, D11REGOFFS(macintstatus)) & |
| 3210 | MI_MACSSPNDD) == 0), 1000 * 1000); |
| 3211 | if ((bcma_read32(core, D11REGOFFS(macintstatus)) & MI_MACSSPNDD) == 0) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3212 | brcms_err(core, "wl%d: wlc_coreinit: ucode did not self-" |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3213 | "suspend!\n", wlc_hw->unit); |
| 3214 | |
| 3215 | brcms_c_gpio_init(wlc); |
| 3216 | |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 3217 | sflags = bcma_aread32(core, BCMA_IOST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3218 | |
Hauke Mehrtens | 6f80f01 | 2012-12-07 00:35:53 +0100 | [diff] [blame] | 3219 | if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3220 | if (BRCMS_ISNPHY(wlc_hw->band)) |
| 3221 | brcms_c_write_inits(wlc_hw, ucode->d11n0initvals16); |
| 3222 | else |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3223 | brcms_err(core, "%s: wl%d: unsupported phy in corerev" |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3224 | " %d\n", __func__, wlc_hw->unit, |
| 3225 | wlc_hw->corerev); |
| 3226 | } else if (D11REV_IS(wlc_hw->corerev, 24)) { |
| 3227 | if (BRCMS_ISLCNPHY(wlc_hw->band)) |
| 3228 | brcms_c_write_inits(wlc_hw, ucode->d11lcn0initvals24); |
| 3229 | else |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3230 | brcms_err(core, "%s: wl%d: unsupported phy in corerev" |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3231 | " %d\n", __func__, wlc_hw->unit, |
| 3232 | wlc_hw->corerev); |
| 3233 | } else { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3234 | brcms_err(core, "%s: wl%d: unsupported corerev %d\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3235 | __func__, wlc_hw->unit, wlc_hw->corerev); |
| 3236 | } |
| 3237 | |
| 3238 | /* For old ucode, txfifo sizes needs to be modified(increased) */ |
Joe Perches | 23677ce | 2012-02-09 11:17:23 +0000 | [diff] [blame] | 3239 | if (fifosz_fixup) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3240 | brcms_b_corerev_fifofixup(wlc_hw); |
| 3241 | |
| 3242 | /* check txfifo allocations match between ucode and driver */ |
| 3243 | buf[TX_AC_BE_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE0); |
| 3244 | if (buf[TX_AC_BE_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BE_FIFO]) { |
| 3245 | i = TX_AC_BE_FIFO; |
| 3246 | err = -1; |
| 3247 | } |
| 3248 | buf[TX_AC_VI_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE1); |
| 3249 | if (buf[TX_AC_VI_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VI_FIFO]) { |
| 3250 | i = TX_AC_VI_FIFO; |
| 3251 | err = -1; |
| 3252 | } |
| 3253 | buf[TX_AC_BK_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE2); |
| 3254 | buf[TX_AC_VO_FIFO] = (buf[TX_AC_BK_FIFO] >> 8) & 0xff; |
| 3255 | buf[TX_AC_BK_FIFO] &= 0xff; |
| 3256 | if (buf[TX_AC_BK_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_BK_FIFO]) { |
| 3257 | i = TX_AC_BK_FIFO; |
| 3258 | err = -1; |
| 3259 | } |
| 3260 | if (buf[TX_AC_VO_FIFO] != wlc_hw->xmtfifo_sz[TX_AC_VO_FIFO]) { |
| 3261 | i = TX_AC_VO_FIFO; |
| 3262 | err = -1; |
| 3263 | } |
| 3264 | buf[TX_BCMC_FIFO] = brcms_b_read_shm(wlc_hw, M_FIFOSIZE3); |
| 3265 | buf[TX_ATIM_FIFO] = (buf[TX_BCMC_FIFO] >> 8) & 0xff; |
| 3266 | buf[TX_BCMC_FIFO] &= 0xff; |
| 3267 | if (buf[TX_BCMC_FIFO] != wlc_hw->xmtfifo_sz[TX_BCMC_FIFO]) { |
| 3268 | i = TX_BCMC_FIFO; |
| 3269 | err = -1; |
| 3270 | } |
| 3271 | if (buf[TX_ATIM_FIFO] != wlc_hw->xmtfifo_sz[TX_ATIM_FIFO]) { |
| 3272 | i = TX_ATIM_FIFO; |
| 3273 | err = -1; |
| 3274 | } |
| 3275 | if (err != 0) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3276 | brcms_err(core, "wlc_coreinit: txfifo mismatch: ucode size %d" |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3277 | " driver size %d index %d\n", buf[i], |
| 3278 | wlc_hw->xmtfifo_sz[i], i); |
| 3279 | |
| 3280 | /* make sure we can still talk to the mac */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3281 | WARN_ON(bcma_read32(core, D11REGOFFS(maccontrol)) == 0xffffffff); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3282 | |
| 3283 | /* band-specific inits done by wlc_bsinit() */ |
| 3284 | |
| 3285 | /* Set up frame burst size and antenna swap threshold init values */ |
| 3286 | brcms_b_write_shm(wlc_hw, M_MBURST_SIZE, MAXTXFRAMEBURST); |
| 3287 | brcms_b_write_shm(wlc_hw, M_MAX_ANTCNT, ANTCNT); |
| 3288 | |
| 3289 | /* enable one rx interrupt per received frame */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3290 | bcma_write32(core, D11REGOFFS(intrcvlazy[0]), (1 << IRL_FC_SHIFT)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3291 | |
| 3292 | /* set the station mode (BSS STA) */ |
| 3293 | brcms_b_mctrl(wlc_hw, |
| 3294 | (MCTL_INFRA | MCTL_DISCARD_PMQ | MCTL_AP), |
| 3295 | (MCTL_INFRA | MCTL_DISCARD_PMQ)); |
| 3296 | |
| 3297 | /* set up Beacon interval */ |
| 3298 | bcnint_us = 0x8000 << 10; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3299 | bcma_write32(core, D11REGOFFS(tsf_cfprep), |
| 3300 | (bcnint_us << CFPREP_CBI_SHIFT)); |
| 3301 | bcma_write32(core, D11REGOFFS(tsf_cfpstart), bcnint_us); |
| 3302 | bcma_write32(core, D11REGOFFS(macintstatus), MI_GP1); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3303 | |
| 3304 | /* write interrupt mask */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3305 | bcma_write32(core, D11REGOFFS(intctrlregs[RX_FIFO].intmask), |
| 3306 | DEF_RXINTMASK); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3307 | |
| 3308 | /* allow the MAC to control the PHY clock (dynamic on/off) */ |
| 3309 | brcms_b_macphyclk_set(wlc_hw, ON); |
| 3310 | |
| 3311 | /* program dynamic clock control fast powerup delay register */ |
| 3312 | wlc->fastpwrup_dly = ai_clkctl_fast_pwrup_delay(wlc_hw->sih); |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3313 | bcma_write16(core, D11REGOFFS(scc_fastpwrup_dly), wlc->fastpwrup_dly); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3314 | |
| 3315 | /* tell the ucode the corerev */ |
| 3316 | brcms_b_write_shm(wlc_hw, M_MACHW_VER, (u16) wlc_hw->corerev); |
| 3317 | |
| 3318 | /* tell the ucode MAC capabilities */ |
| 3319 | brcms_b_write_shm(wlc_hw, M_MACHW_CAP_L, |
| 3320 | (u16) (wlc_hw->machwcap & 0xffff)); |
| 3321 | brcms_b_write_shm(wlc_hw, M_MACHW_CAP_H, |
| 3322 | (u16) ((wlc_hw-> |
| 3323 | machwcap >> 16) & 0xffff)); |
| 3324 | |
| 3325 | /* write retry limits to SCR, this done after PSM init */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3326 | bcma_write32(core, D11REGOFFS(objaddr), |
| 3327 | OBJADDR_SCR_SEL | S_DOT11_SRC_LMT); |
| 3328 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 3329 | bcma_write32(core, D11REGOFFS(objdata), wlc_hw->SRL); |
| 3330 | bcma_write32(core, D11REGOFFS(objaddr), |
| 3331 | OBJADDR_SCR_SEL | S_DOT11_LRC_LMT); |
| 3332 | (void)bcma_read32(core, D11REGOFFS(objaddr)); |
| 3333 | bcma_write32(core, D11REGOFFS(objdata), wlc_hw->LRL); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3334 | |
| 3335 | /* write rate fallback retry limits */ |
| 3336 | brcms_b_write_shm(wlc_hw, M_SFRMTXCNTFBRTHSD, wlc_hw->SFBL); |
| 3337 | brcms_b_write_shm(wlc_hw, M_LFRMTXCNTFBRTHSD, wlc_hw->LFBL); |
| 3338 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3339 | bcma_mask16(core, D11REGOFFS(ifs_ctl), 0x0FFF); |
| 3340 | bcma_write16(core, D11REGOFFS(ifs_aifsn), EDCF_AIFSN_MIN); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3341 | |
| 3342 | /* init the tx dma engines */ |
| 3343 | for (i = 0; i < NFIFO; i++) { |
| 3344 | if (wlc_hw->di[i]) |
| 3345 | dma_txinit(wlc_hw->di[i]); |
| 3346 | } |
| 3347 | |
| 3348 | /* init the rx dma engine(s) and post receive buffers */ |
| 3349 | dma_rxinit(wlc_hw->di[RX_FIFO]); |
| 3350 | dma_rxfill(wlc_hw->di[RX_FIFO]); |
| 3351 | } |
| 3352 | |
| 3353 | void |
Roland Vossen | a8bc491 | 2011-10-21 16:16:25 +0200 | [diff] [blame] | 3354 | static brcms_b_init(struct brcms_hardware *wlc_hw, u16 chanspec) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3355 | u32 macintmask; |
| 3356 | bool fastclk; |
| 3357 | struct brcms_c_info *wlc = wlc_hw->wlc; |
| 3358 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3359 | /* request FAST clock if not on */ |
| 3360 | fastclk = wlc_hw->forcefastclk; |
| 3361 | if (!fastclk) |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 3362 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3363 | |
| 3364 | /* disable interrupts */ |
| 3365 | macintmask = brcms_intrsoff(wlc->wl); |
| 3366 | |
| 3367 | /* set up the specified band and chanspec */ |
| 3368 | brcms_c_setxband(wlc_hw, chspec_bandunit(chanspec)); |
| 3369 | wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec); |
| 3370 | |
| 3371 | /* do one-time phy inits and calibration */ |
| 3372 | wlc_phy_cal_init(wlc_hw->band->pi); |
| 3373 | |
| 3374 | /* core-specific initialization */ |
| 3375 | brcms_b_coreinit(wlc); |
| 3376 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3377 | /* band-specific inits */ |
| 3378 | brcms_b_bsinit(wlc, chanspec); |
| 3379 | |
| 3380 | /* restore macintmask */ |
| 3381 | brcms_intrsrestore(wlc->wl, macintmask); |
| 3382 | |
| 3383 | /* seed wake_override with BRCMS_WAKE_OVERRIDE_MACSUSPEND since the mac |
| 3384 | * is suspended and brcms_c_enable_mac() will clear this override bit. |
| 3385 | */ |
| 3386 | mboolset(wlc_hw->wake_override, BRCMS_WAKE_OVERRIDE_MACSUSPEND); |
| 3387 | |
| 3388 | /* |
| 3389 | * initialize mac_suspend_depth to 1 to match ucode |
| 3390 | * initial suspended state |
| 3391 | */ |
| 3392 | wlc_hw->mac_suspend_depth = 1; |
| 3393 | |
| 3394 | /* restore the clk */ |
| 3395 | if (!fastclk) |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 3396 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3397 | } |
| 3398 | |
| 3399 | static void brcms_c_set_phy_chanspec(struct brcms_c_info *wlc, |
| 3400 | u16 chanspec) |
| 3401 | { |
| 3402 | /* Save our copy of the chanspec */ |
| 3403 | wlc->chanspec = chanspec; |
| 3404 | |
| 3405 | /* Set the chanspec and power limits for this locale */ |
| 3406 | brcms_c_channel_set_chanspec(wlc->cmi, chanspec, BRCMS_TXPWR_MAX); |
| 3407 | |
| 3408 | if (wlc->stf->ss_algosel_auto) |
| 3409 | brcms_c_stf_ss_algo_channel_get(wlc, &wlc->stf->ss_algo_channel, |
| 3410 | chanspec); |
| 3411 | |
| 3412 | brcms_c_stf_ss_update(wlc, wlc->band); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3413 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3414 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3415 | static void |
| 3416 | brcms_default_rateset(struct brcms_c_info *wlc, struct brcms_c_rateset *rs) |
| 3417 | { |
| 3418 | brcms_c_rateset_default(rs, NULL, wlc->band->phytype, |
| 3419 | wlc->band->bandtype, false, BRCMS_RATE_MASK_FULL, |
| 3420 | (bool) (wlc->pub->_n_enab & SUPPORT_11N), |
| 3421 | brcms_chspec_bw(wlc->default_bss->chanspec), |
| 3422 | wlc->stf->txstreams); |
| 3423 | } |
| 3424 | |
| 3425 | /* derive wlc->band->basic_rate[] table from 'rateset' */ |
| 3426 | static void brcms_c_rate_lookup_init(struct brcms_c_info *wlc, |
| 3427 | struct brcms_c_rateset *rateset) |
| 3428 | { |
| 3429 | u8 rate; |
| 3430 | u8 mandatory; |
| 3431 | u8 cck_basic = 0; |
| 3432 | u8 ofdm_basic = 0; |
| 3433 | u8 *br = wlc->band->basic_rate; |
| 3434 | uint i; |
| 3435 | |
| 3436 | /* incoming rates are in 500kbps units as in 802.11 Supported Rates */ |
| 3437 | memset(br, 0, BRCM_MAXRATE + 1); |
| 3438 | |
| 3439 | /* For each basic rate in the rates list, make an entry in the |
| 3440 | * best basic lookup. |
| 3441 | */ |
| 3442 | for (i = 0; i < rateset->count; i++) { |
| 3443 | /* only make an entry for a basic rate */ |
| 3444 | if (!(rateset->rates[i] & BRCMS_RATE_FLAG)) |
| 3445 | continue; |
| 3446 | |
| 3447 | /* mask off basic bit */ |
| 3448 | rate = (rateset->rates[i] & BRCMS_RATE_MASK); |
| 3449 | |
| 3450 | if (rate > BRCM_MAXRATE) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3451 | brcms_err(wlc->hw->d11core, "brcms_c_rate_lookup_init: " |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3452 | "invalid rate 0x%X in rate set\n", |
| 3453 | rateset->rates[i]); |
| 3454 | continue; |
| 3455 | } |
| 3456 | |
| 3457 | br[rate] = rate; |
| 3458 | } |
| 3459 | |
| 3460 | /* The rate lookup table now has non-zero entries for each |
| 3461 | * basic rate, equal to the basic rate: br[basicN] = basicN |
| 3462 | * |
| 3463 | * To look up the best basic rate corresponding to any |
| 3464 | * particular rate, code can use the basic_rate table |
| 3465 | * like this |
| 3466 | * |
| 3467 | * basic_rate = wlc->band->basic_rate[tx_rate] |
| 3468 | * |
| 3469 | * Make sure there is a best basic rate entry for |
| 3470 | * every rate by walking up the table from low rates |
| 3471 | * to high, filling in holes in the lookup table |
| 3472 | */ |
| 3473 | |
| 3474 | for (i = 0; i < wlc->band->hw_rateset.count; i++) { |
| 3475 | rate = wlc->band->hw_rateset.rates[i]; |
| 3476 | |
| 3477 | if (br[rate] != 0) { |
| 3478 | /* This rate is a basic rate. |
| 3479 | * Keep track of the best basic rate so far by |
| 3480 | * modulation type. |
| 3481 | */ |
| 3482 | if (is_ofdm_rate(rate)) |
| 3483 | ofdm_basic = rate; |
| 3484 | else |
| 3485 | cck_basic = rate; |
| 3486 | |
| 3487 | continue; |
| 3488 | } |
| 3489 | |
| 3490 | /* This rate is not a basic rate so figure out the |
| 3491 | * best basic rate less than this rate and fill in |
| 3492 | * the hole in the table |
| 3493 | */ |
| 3494 | |
| 3495 | br[rate] = is_ofdm_rate(rate) ? ofdm_basic : cck_basic; |
| 3496 | |
| 3497 | if (br[rate] != 0) |
| 3498 | continue; |
| 3499 | |
| 3500 | if (is_ofdm_rate(rate)) { |
| 3501 | /* |
| 3502 | * In 11g and 11a, the OFDM mandatory rates |
| 3503 | * are 6, 12, and 24 Mbps |
| 3504 | */ |
| 3505 | if (rate >= BRCM_RATE_24M) |
| 3506 | mandatory = BRCM_RATE_24M; |
| 3507 | else if (rate >= BRCM_RATE_12M) |
| 3508 | mandatory = BRCM_RATE_12M; |
| 3509 | else |
| 3510 | mandatory = BRCM_RATE_6M; |
| 3511 | } else { |
| 3512 | /* In 11b, all CCK rates are mandatory 1 - 11 Mbps */ |
| 3513 | mandatory = rate; |
| 3514 | } |
| 3515 | |
| 3516 | br[rate] = mandatory; |
| 3517 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3518 | } |
| 3519 | |
| 3520 | static void brcms_c_bandinit_ordered(struct brcms_c_info *wlc, |
| 3521 | u16 chanspec) |
| 3522 | { |
| 3523 | struct brcms_c_rateset default_rateset; |
| 3524 | uint parkband; |
| 3525 | uint i, band_order[2]; |
| 3526 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3527 | /* |
| 3528 | * We might have been bandlocked during down and the chip |
| 3529 | * power-cycled (hibernate). Figure out the right band to park on |
| 3530 | */ |
| 3531 | if (wlc->bandlocked || wlc->pub->_nbands == 1) { |
| 3532 | /* updated in brcms_c_bandlock() */ |
| 3533 | parkband = wlc->band->bandunit; |
| 3534 | band_order[0] = band_order[1] = parkband; |
| 3535 | } else { |
| 3536 | /* park on the band of the specified chanspec */ |
| 3537 | parkband = chspec_bandunit(chanspec); |
| 3538 | |
| 3539 | /* order so that parkband initialize last */ |
| 3540 | band_order[0] = parkband ^ 1; |
| 3541 | band_order[1] = parkband; |
| 3542 | } |
| 3543 | |
| 3544 | /* make each band operational, software state init */ |
| 3545 | for (i = 0; i < wlc->pub->_nbands; i++) { |
| 3546 | uint j = band_order[i]; |
| 3547 | |
| 3548 | wlc->band = wlc->bandstate[j]; |
| 3549 | |
| 3550 | brcms_default_rateset(wlc, &default_rateset); |
| 3551 | |
| 3552 | /* fill in hw_rate */ |
| 3553 | brcms_c_rateset_filter(&default_rateset, &wlc->band->hw_rateset, |
| 3554 | false, BRCMS_RATES_CCK_OFDM, BRCMS_RATE_MASK, |
| 3555 | (bool) (wlc->pub->_n_enab & SUPPORT_11N)); |
| 3556 | |
| 3557 | /* init basic rate lookup */ |
| 3558 | brcms_c_rate_lookup_init(wlc, &default_rateset); |
| 3559 | } |
| 3560 | |
| 3561 | /* sync up phy/radio chanspec */ |
| 3562 | brcms_c_set_phy_chanspec(wlc, chanspec); |
| 3563 | } |
| 3564 | |
Alwin Beukers | 02a588a | 2011-11-10 20:30:28 +0100 | [diff] [blame] | 3565 | /* |
Alwin Beukers | be66766 | 2011-11-22 17:21:43 -0800 | [diff] [blame] | 3566 | * Set or clear filtering related maccontrol bits based on |
| 3567 | * specified filter flags |
Alwin Beukers | 02a588a | 2011-11-10 20:30:28 +0100 | [diff] [blame] | 3568 | */ |
Alwin Beukers | be66766 | 2011-11-22 17:21:43 -0800 | [diff] [blame] | 3569 | void brcms_c_mac_promisc(struct brcms_c_info *wlc, uint filter_flags) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3570 | { |
Alwin Beukers | 02a588a | 2011-11-10 20:30:28 +0100 | [diff] [blame] | 3571 | u32 promisc_bits = 0; |
| 3572 | |
Alwin Beukers | be66766 | 2011-11-22 17:21:43 -0800 | [diff] [blame] | 3573 | wlc->filter_flags = filter_flags; |
| 3574 | |
| 3575 | if (filter_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) |
| 3576 | promisc_bits |= MCTL_PROMISC; |
| 3577 | |
| 3578 | if (filter_flags & FIF_BCN_PRBRESP_PROMISC) |
Alwin Beukers | 02a588a | 2011-11-10 20:30:28 +0100 | [diff] [blame] | 3579 | promisc_bits |= MCTL_BCNS_PROMISC; |
| 3580 | |
Alwin Beukers | be66766 | 2011-11-22 17:21:43 -0800 | [diff] [blame] | 3581 | if (filter_flags & FIF_FCSFAIL) |
| 3582 | promisc_bits |= MCTL_KEEPBADFCS; |
| 3583 | |
| 3584 | if (filter_flags & (FIF_CONTROL | FIF_PSPOLL)) |
| 3585 | promisc_bits |= MCTL_KEEPCONTROL; |
Alwin Beukers | 02a588a | 2011-11-10 20:30:28 +0100 | [diff] [blame] | 3586 | |
| 3587 | brcms_b_mctrl(wlc->hw, |
Alwin Beukers | be66766 | 2011-11-22 17:21:43 -0800 | [diff] [blame] | 3588 | MCTL_PROMISC | MCTL_BCNS_PROMISC | |
| 3589 | MCTL_KEEPCONTROL | MCTL_KEEPBADFCS, |
| 3590 | promisc_bits); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3591 | } |
| 3592 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3593 | /* |
| 3594 | * ucode, hwmac update |
| 3595 | * Channel dependent updates for ucode and hw |
| 3596 | */ |
| 3597 | static void brcms_c_ucode_mac_upd(struct brcms_c_info *wlc) |
| 3598 | { |
| 3599 | /* enable or disable any active IBSSs depending on whether or not |
| 3600 | * we are on the home channel |
| 3601 | */ |
| 3602 | if (wlc->home_chanspec == wlc_phy_chanspec_get(wlc->band->pi)) { |
| 3603 | if (wlc->pub->associated) { |
| 3604 | /* |
| 3605 | * BMAC_NOTE: This is something that should be fixed |
| 3606 | * in ucode inits. I think that the ucode inits set |
| 3607 | * up the bcn templates and shm values with a bogus |
| 3608 | * beacon. This should not be done in the inits. If |
| 3609 | * ucode needs to set up a beacon for testing, the |
| 3610 | * test routines should write it down, not expect the |
| 3611 | * inits to populate a bogus beacon. |
| 3612 | */ |
| 3613 | if (BRCMS_PHY_11N_CAP(wlc->band)) |
| 3614 | brcms_b_write_shm(wlc->hw, |
| 3615 | M_BCN_TXTSF_OFFSET, 0); |
| 3616 | } |
| 3617 | } else { |
| 3618 | /* disable an active IBSS if we are not on the home channel */ |
| 3619 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3620 | } |
| 3621 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3622 | static void brcms_c_write_rate_shm(struct brcms_c_info *wlc, u8 rate, |
| 3623 | u8 basic_rate) |
| 3624 | { |
| 3625 | u8 phy_rate, index; |
| 3626 | u8 basic_phy_rate, basic_index; |
| 3627 | u16 dir_table, basic_table; |
| 3628 | u16 basic_ptr; |
| 3629 | |
| 3630 | /* Shared memory address for the table we are reading */ |
| 3631 | dir_table = is_ofdm_rate(basic_rate) ? M_RT_DIRMAP_A : M_RT_DIRMAP_B; |
| 3632 | |
| 3633 | /* Shared memory address for the table we are writing */ |
| 3634 | basic_table = is_ofdm_rate(rate) ? M_RT_BBRSMAP_A : M_RT_BBRSMAP_B; |
| 3635 | |
| 3636 | /* |
| 3637 | * for a given rate, the LS-nibble of the PLCP SIGNAL field is |
| 3638 | * the index into the rate table. |
| 3639 | */ |
| 3640 | phy_rate = rate_info[rate] & BRCMS_RATE_MASK; |
| 3641 | basic_phy_rate = rate_info[basic_rate] & BRCMS_RATE_MASK; |
| 3642 | index = phy_rate & 0xf; |
| 3643 | basic_index = basic_phy_rate & 0xf; |
| 3644 | |
| 3645 | /* Find the SHM pointer to the ACK rate entry by looking in the |
| 3646 | * Direct-map Table |
| 3647 | */ |
| 3648 | basic_ptr = brcms_b_read_shm(wlc->hw, (dir_table + basic_index * 2)); |
| 3649 | |
| 3650 | /* Update the SHM BSS-basic-rate-set mapping table with the pointer |
| 3651 | * to the correct basic rate for the given incoming rate |
| 3652 | */ |
| 3653 | brcms_b_write_shm(wlc->hw, (basic_table + index * 2), basic_ptr); |
| 3654 | } |
| 3655 | |
| 3656 | static const struct brcms_c_rateset * |
| 3657 | brcms_c_rateset_get_hwrs(struct brcms_c_info *wlc) |
| 3658 | { |
| 3659 | const struct brcms_c_rateset *rs_dflt; |
| 3660 | |
| 3661 | if (BRCMS_PHY_11N_CAP(wlc->band)) { |
| 3662 | if (wlc->band->bandtype == BRCM_BAND_5G) |
| 3663 | rs_dflt = &ofdm_mimo_rates; |
| 3664 | else |
| 3665 | rs_dflt = &cck_ofdm_mimo_rates; |
| 3666 | } else if (wlc->band->gmode) |
| 3667 | rs_dflt = &cck_ofdm_rates; |
| 3668 | else |
| 3669 | rs_dflt = &cck_rates; |
| 3670 | |
| 3671 | return rs_dflt; |
| 3672 | } |
| 3673 | |
| 3674 | static void brcms_c_set_ratetable(struct brcms_c_info *wlc) |
| 3675 | { |
| 3676 | const struct brcms_c_rateset *rs_dflt; |
| 3677 | struct brcms_c_rateset rs; |
| 3678 | u8 rate, basic_rate; |
| 3679 | uint i; |
| 3680 | |
| 3681 | rs_dflt = brcms_c_rateset_get_hwrs(wlc); |
| 3682 | |
| 3683 | brcms_c_rateset_copy(rs_dflt, &rs); |
| 3684 | brcms_c_rateset_mcs_upd(&rs, wlc->stf->txstreams); |
| 3685 | |
| 3686 | /* walk the phy rate table and update SHM basic rate lookup table */ |
| 3687 | for (i = 0; i < rs.count; i++) { |
| 3688 | rate = rs.rates[i] & BRCMS_RATE_MASK; |
| 3689 | |
| 3690 | /* for a given rate brcms_basic_rate returns the rate at |
| 3691 | * which a response ACK/CTS should be sent. |
| 3692 | */ |
| 3693 | basic_rate = brcms_basic_rate(wlc, rate); |
| 3694 | if (basic_rate == 0) |
| 3695 | /* This should only happen if we are using a |
| 3696 | * restricted rateset. |
| 3697 | */ |
| 3698 | basic_rate = rs.rates[0] & BRCMS_RATE_MASK; |
| 3699 | |
| 3700 | brcms_c_write_rate_shm(wlc, rate, basic_rate); |
| 3701 | } |
| 3702 | } |
| 3703 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3704 | /* band-specific init */ |
| 3705 | static void brcms_c_bsinit(struct brcms_c_info *wlc) |
| 3706 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3707 | brcms_dbg_info(wlc->hw->d11core, "wl%d: bandunit %d\n", |
| 3708 | wlc->pub->unit, wlc->band->bandunit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3709 | |
| 3710 | /* write ucode ACK/CTS rate table */ |
| 3711 | brcms_c_set_ratetable(wlc); |
| 3712 | |
| 3713 | /* update some band specific mac configuration */ |
| 3714 | brcms_c_ucode_mac_upd(wlc); |
| 3715 | |
| 3716 | /* init antenna selection */ |
| 3717 | brcms_c_antsel_init(wlc->asi); |
| 3718 | |
| 3719 | } |
| 3720 | |
| 3721 | /* formula: IDLE_BUSY_RATIO_X_16 = (100-duty_cycle)/duty_cycle*16 */ |
| 3722 | static int |
| 3723 | brcms_c_duty_cycle_set(struct brcms_c_info *wlc, int duty_cycle, bool isOFDM, |
| 3724 | bool writeToShm) |
| 3725 | { |
| 3726 | int idle_busy_ratio_x_16 = 0; |
| 3727 | uint offset = |
| 3728 | isOFDM ? M_TX_IDLE_BUSY_RATIO_X_16_OFDM : |
| 3729 | M_TX_IDLE_BUSY_RATIO_X_16_CCK; |
| 3730 | if (duty_cycle > 100 || duty_cycle < 0) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3731 | brcms_err(wlc->hw->d11core, |
| 3732 | "wl%d: duty cycle value off limit\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3733 | wlc->pub->unit); |
| 3734 | return -EINVAL; |
| 3735 | } |
| 3736 | if (duty_cycle) |
| 3737 | idle_busy_ratio_x_16 = (100 - duty_cycle) * 16 / duty_cycle; |
| 3738 | /* Only write to shared memory when wl is up */ |
| 3739 | if (writeToShm) |
| 3740 | brcms_b_write_shm(wlc->hw, offset, (u16) idle_busy_ratio_x_16); |
| 3741 | |
| 3742 | if (isOFDM) |
| 3743 | wlc->tx_duty_cycle_ofdm = (u16) duty_cycle; |
| 3744 | else |
| 3745 | wlc->tx_duty_cycle_cck = (u16) duty_cycle; |
| 3746 | |
| 3747 | return 0; |
| 3748 | } |
| 3749 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3750 | /* push sw hps and wake state through hardware */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3751 | static void brcms_c_set_ps_ctrl(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3752 | { |
| 3753 | u32 v1, v2; |
| 3754 | bool hps; |
| 3755 | bool awake_before; |
| 3756 | |
| 3757 | hps = brcms_c_ps_allowed(wlc); |
| 3758 | |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 3759 | brcms_dbg_mac80211(wlc->hw->d11core, "wl%d: hps %d\n", wlc->pub->unit, |
| 3760 | hps); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3761 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 3762 | v1 = bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3763 | v2 = MCTL_WAKE; |
| 3764 | if (hps) |
| 3765 | v2 |= MCTL_HPS; |
| 3766 | |
| 3767 | brcms_b_mctrl(wlc->hw, MCTL_WAKE | MCTL_HPS, v2); |
| 3768 | |
| 3769 | awake_before = ((v1 & MCTL_WAKE) || ((v1 & MCTL_HPS) == 0)); |
| 3770 | |
| 3771 | if (!awake_before) |
| 3772 | brcms_b_wait_for_wake(wlc->hw); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3773 | } |
| 3774 | |
| 3775 | /* |
| 3776 | * Write this BSS config's MAC address to core. |
| 3777 | * Updates RXE match engine. |
| 3778 | */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3779 | static int brcms_c_set_mac(struct brcms_bss_cfg *bsscfg) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3780 | { |
| 3781 | int err = 0; |
| 3782 | struct brcms_c_info *wlc = bsscfg->wlc; |
| 3783 | |
| 3784 | /* enter the MAC addr into the RXE match registers */ |
Hauke Mehrtens | 73ff285 | 2013-03-24 01:45:55 +0100 | [diff] [blame] | 3785 | brcms_c_set_addrmatch(wlc, RCM_MAC_OFFSET, wlc->pub->cur_etheraddr); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3786 | |
| 3787 | brcms_c_ampdu_macaddr_upd(wlc); |
| 3788 | |
| 3789 | return err; |
| 3790 | } |
| 3791 | |
| 3792 | /* Write the BSS config's BSSID address to core (set_bssid in d11procs.tcl). |
| 3793 | * Updates RXE match engine. |
| 3794 | */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3795 | static void brcms_c_set_bssid(struct brcms_bss_cfg *bsscfg) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3796 | { |
| 3797 | /* we need to update BSSID in RXE match registers */ |
| 3798 | brcms_c_set_addrmatch(bsscfg->wlc, RCM_BSSID_OFFSET, bsscfg->BSSID); |
| 3799 | } |
| 3800 | |
Hauke Mehrtens | c031df3 | 2013-03-24 01:45:59 +0100 | [diff] [blame] | 3801 | void brcms_c_set_ssid(struct brcms_c_info *wlc, u8 *ssid, size_t ssid_len) |
| 3802 | { |
| 3803 | u8 len = min_t(u8, sizeof(wlc->bsscfg->SSID), ssid_len); |
| 3804 | memset(wlc->bsscfg->SSID, 0, sizeof(wlc->bsscfg->SSID)); |
| 3805 | |
| 3806 | memcpy(wlc->bsscfg->SSID, ssid, len); |
| 3807 | wlc->bsscfg->SSID_len = len; |
| 3808 | } |
| 3809 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3810 | static void brcms_b_set_shortslot(struct brcms_hardware *wlc_hw, bool shortslot) |
| 3811 | { |
| 3812 | wlc_hw->shortslot = shortslot; |
| 3813 | |
| 3814 | if (wlc_hw->band->bandtype == BRCM_BAND_2G && wlc_hw->up) { |
| 3815 | brcms_c_suspend_mac_and_wait(wlc_hw->wlc); |
| 3816 | brcms_b_update_slot_timing(wlc_hw, shortslot); |
| 3817 | brcms_c_enable_mac(wlc_hw->wlc); |
| 3818 | } |
| 3819 | } |
| 3820 | |
| 3821 | /* |
| 3822 | * Suspend the the MAC and update the slot timing |
| 3823 | * for standard 11b/g (20us slots) or shortslot 11g (9us slots). |
| 3824 | */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3825 | static void brcms_c_switch_shortslot(struct brcms_c_info *wlc, bool shortslot) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3826 | { |
| 3827 | /* use the override if it is set */ |
| 3828 | if (wlc->shortslot_override != BRCMS_SHORTSLOT_AUTO) |
| 3829 | shortslot = (wlc->shortslot_override == BRCMS_SHORTSLOT_ON); |
| 3830 | |
| 3831 | if (wlc->shortslot == shortslot) |
| 3832 | return; |
| 3833 | |
| 3834 | wlc->shortslot = shortslot; |
| 3835 | |
| 3836 | brcms_b_set_shortslot(wlc->hw, shortslot); |
| 3837 | } |
| 3838 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3839 | static void brcms_c_set_home_chanspec(struct brcms_c_info *wlc, u16 chanspec) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3840 | { |
| 3841 | if (wlc->home_chanspec != chanspec) { |
| 3842 | wlc->home_chanspec = chanspec; |
| 3843 | |
Hauke Mehrtens | 6da3b6c | 2013-03-24 01:45:52 +0100 | [diff] [blame] | 3844 | if (wlc->pub->associated) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3845 | wlc->bsscfg->current_bss->chanspec = chanspec; |
| 3846 | } |
| 3847 | } |
| 3848 | |
| 3849 | void |
| 3850 | brcms_b_set_chanspec(struct brcms_hardware *wlc_hw, u16 chanspec, |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 3851 | bool mute_tx, struct txpwr_limits *txpwr) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3852 | { |
| 3853 | uint bandunit; |
| 3854 | |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 3855 | brcms_dbg_mac80211(wlc_hw->d11core, "wl%d: 0x%x\n", wlc_hw->unit, |
| 3856 | chanspec); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3857 | |
| 3858 | wlc_hw->chanspec = chanspec; |
| 3859 | |
| 3860 | /* Switch bands if necessary */ |
| 3861 | if (wlc_hw->_nbands > 1) { |
| 3862 | bandunit = chspec_bandunit(chanspec); |
| 3863 | if (wlc_hw->band->bandunit != bandunit) { |
| 3864 | /* brcms_b_setband disables other bandunit, |
| 3865 | * use light band switch if not up yet |
| 3866 | */ |
| 3867 | if (wlc_hw->up) { |
| 3868 | wlc_phy_chanspec_radio_set(wlc_hw-> |
| 3869 | bandstate[bandunit]-> |
| 3870 | pi, chanspec); |
| 3871 | brcms_b_setband(wlc_hw, bandunit, chanspec); |
| 3872 | } else { |
| 3873 | brcms_c_setxband(wlc_hw, bandunit); |
| 3874 | } |
| 3875 | } |
| 3876 | } |
| 3877 | |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 3878 | wlc_phy_initcal_enable(wlc_hw->band->pi, !mute_tx); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3879 | |
| 3880 | if (!wlc_hw->up) { |
| 3881 | if (wlc_hw->clk) |
| 3882 | wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr, |
| 3883 | chanspec); |
| 3884 | wlc_phy_chanspec_radio_set(wlc_hw->band->pi, chanspec); |
| 3885 | } else { |
| 3886 | wlc_phy_chanspec_set(wlc_hw->band->pi, chanspec); |
| 3887 | wlc_phy_txpower_limit_set(wlc_hw->band->pi, txpwr, chanspec); |
| 3888 | |
| 3889 | /* Update muting of the channel */ |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 3890 | brcms_b_mute(wlc_hw, mute_tx); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3891 | } |
| 3892 | } |
| 3893 | |
| 3894 | /* switch to and initialize new band */ |
| 3895 | static void brcms_c_setband(struct brcms_c_info *wlc, |
| 3896 | uint bandunit) |
| 3897 | { |
| 3898 | wlc->band = wlc->bandstate[bandunit]; |
| 3899 | |
| 3900 | if (!wlc->pub->up) |
| 3901 | return; |
| 3902 | |
| 3903 | /* wait for at least one beacon before entering sleeping state */ |
| 3904 | brcms_c_set_ps_ctrl(wlc); |
| 3905 | |
| 3906 | /* band-specific initializations */ |
| 3907 | brcms_c_bsinit(wlc); |
| 3908 | } |
| 3909 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 3910 | static void brcms_c_set_chanspec(struct brcms_c_info *wlc, u16 chanspec) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3911 | { |
| 3912 | uint bandunit; |
| 3913 | bool switchband = false; |
| 3914 | u16 old_chanspec = wlc->chanspec; |
| 3915 | |
| 3916 | if (!brcms_c_valid_chanspec_db(wlc->cmi, chanspec)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3917 | brcms_err(wlc->hw->d11core, "wl%d: %s: Bad channel %d\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3918 | wlc->pub->unit, __func__, CHSPEC_CHANNEL(chanspec)); |
| 3919 | return; |
| 3920 | } |
| 3921 | |
| 3922 | /* Switch bands if necessary */ |
| 3923 | if (wlc->pub->_nbands > 1) { |
| 3924 | bandunit = chspec_bandunit(chanspec); |
| 3925 | if (wlc->band->bandunit != bandunit || wlc->bandinit_pending) { |
| 3926 | switchband = true; |
| 3927 | if (wlc->bandlocked) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3928 | brcms_err(wlc->hw->d11core, |
| 3929 | "wl%d: %s: chspec %d band is locked!\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3930 | wlc->pub->unit, __func__, |
| 3931 | CHSPEC_CHANNEL(chanspec)); |
| 3932 | return; |
| 3933 | } |
| 3934 | /* |
| 3935 | * should the setband call come after the |
| 3936 | * brcms_b_chanspec() ? if the setband updates |
| 3937 | * (brcms_c_bsinit) use low level calls to inspect and |
| 3938 | * set state, the state inspected may be from the wrong |
| 3939 | * band, or the following brcms_b_set_chanspec() may |
| 3940 | * undo the work. |
| 3941 | */ |
| 3942 | brcms_c_setband(wlc, bandunit); |
| 3943 | } |
| 3944 | } |
| 3945 | |
| 3946 | /* sync up phy/radio chanspec */ |
| 3947 | brcms_c_set_phy_chanspec(wlc, chanspec); |
| 3948 | |
| 3949 | /* init antenna selection */ |
| 3950 | if (brcms_chspec_bw(old_chanspec) != brcms_chspec_bw(chanspec)) { |
| 3951 | brcms_c_antsel_init(wlc->asi); |
| 3952 | |
| 3953 | /* Fix the hardware rateset based on bw. |
| 3954 | * Mainly add MCS32 for 40Mhz, remove MCS 32 for 20Mhz |
| 3955 | */ |
| 3956 | brcms_c_rateset_bw_mcs_filter(&wlc->band->hw_rateset, |
| 3957 | wlc->band->mimo_cap_40 ? brcms_chspec_bw(chanspec) : 0); |
| 3958 | } |
| 3959 | |
| 3960 | /* update some mac configuration since chanspec changed */ |
| 3961 | brcms_c_ucode_mac_upd(wlc); |
| 3962 | } |
| 3963 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3964 | /* |
| 3965 | * This function changes the phytxctl for beacon based on current |
| 3966 | * beacon ratespec AND txant setting as per this table: |
| 3967 | * ratespec CCK ant = wlc->stf->txant |
| 3968 | * OFDM ant = 3 |
| 3969 | */ |
| 3970 | void brcms_c_beacon_phytxctl_txant_upd(struct brcms_c_info *wlc, |
| 3971 | u32 bcn_rspec) |
| 3972 | { |
| 3973 | u16 phyctl; |
| 3974 | u16 phytxant = wlc->stf->phytxant; |
| 3975 | u16 mask = PHY_TXC_ANT_MASK; |
| 3976 | |
| 3977 | /* for non-siso rates or default setting, use the available chains */ |
| 3978 | if (BRCMS_PHY_11N_CAP(wlc->band)) |
| 3979 | phytxant = brcms_c_stf_phytxchain_sel(wlc, bcn_rspec); |
| 3980 | |
| 3981 | phyctl = brcms_b_read_shm(wlc->hw, M_BCN_PCTLWD); |
| 3982 | phyctl = (phyctl & ~mask) | phytxant; |
| 3983 | brcms_b_write_shm(wlc->hw, M_BCN_PCTLWD, phyctl); |
| 3984 | } |
| 3985 | |
| 3986 | /* |
| 3987 | * centralized protection config change function to simplify debugging, no |
| 3988 | * consistency checking this should be called only on changes to avoid overhead |
| 3989 | * in periodic function |
| 3990 | */ |
| 3991 | void brcms_c_protection_upd(struct brcms_c_info *wlc, uint idx, int val) |
| 3992 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 3993 | /* |
| 3994 | * Cannot use brcms_dbg_* here because this function is called |
| 3995 | * before wlc is sufficiently initialized. |
| 3996 | */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 3997 | BCMMSG(wlc->wiphy, "idx %d, val %d\n", idx, val); |
| 3998 | |
| 3999 | switch (idx) { |
| 4000 | case BRCMS_PROT_G_SPEC: |
| 4001 | wlc->protection->_g = (bool) val; |
| 4002 | break; |
| 4003 | case BRCMS_PROT_G_OVR: |
| 4004 | wlc->protection->g_override = (s8) val; |
| 4005 | break; |
| 4006 | case BRCMS_PROT_G_USER: |
| 4007 | wlc->protection->gmode_user = (u8) val; |
| 4008 | break; |
| 4009 | case BRCMS_PROT_OVERLAP: |
| 4010 | wlc->protection->overlap = (s8) val; |
| 4011 | break; |
| 4012 | case BRCMS_PROT_N_USER: |
| 4013 | wlc->protection->nmode_user = (s8) val; |
| 4014 | break; |
| 4015 | case BRCMS_PROT_N_CFG: |
| 4016 | wlc->protection->n_cfg = (s8) val; |
| 4017 | break; |
| 4018 | case BRCMS_PROT_N_CFG_OVR: |
| 4019 | wlc->protection->n_cfg_override = (s8) val; |
| 4020 | break; |
| 4021 | case BRCMS_PROT_N_NONGF: |
| 4022 | wlc->protection->nongf = (bool) val; |
| 4023 | break; |
| 4024 | case BRCMS_PROT_N_NONGF_OVR: |
| 4025 | wlc->protection->nongf_override = (s8) val; |
| 4026 | break; |
| 4027 | case BRCMS_PROT_N_PAM_OVR: |
| 4028 | wlc->protection->n_pam_override = (s8) val; |
| 4029 | break; |
| 4030 | case BRCMS_PROT_N_OBSS: |
| 4031 | wlc->protection->n_obss = (bool) val; |
| 4032 | break; |
| 4033 | |
| 4034 | default: |
| 4035 | break; |
| 4036 | } |
| 4037 | |
| 4038 | } |
| 4039 | |
| 4040 | static void brcms_c_ht_update_sgi_rx(struct brcms_c_info *wlc, int val) |
| 4041 | { |
| 4042 | if (wlc->pub->up) { |
| 4043 | brcms_c_update_beacon(wlc); |
| 4044 | brcms_c_update_probe_resp(wlc, true); |
| 4045 | } |
| 4046 | } |
| 4047 | |
| 4048 | static void brcms_c_ht_update_ldpc(struct brcms_c_info *wlc, s8 val) |
| 4049 | { |
| 4050 | wlc->stf->ldpc = val; |
| 4051 | |
| 4052 | if (wlc->pub->up) { |
| 4053 | brcms_c_update_beacon(wlc); |
| 4054 | brcms_c_update_probe_resp(wlc, true); |
| 4055 | wlc_phy_ldpc_override_set(wlc->band->pi, (val ? true : false)); |
| 4056 | } |
| 4057 | } |
| 4058 | |
| 4059 | void brcms_c_wme_setparams(struct brcms_c_info *wlc, u16 aci, |
| 4060 | const struct ieee80211_tx_queue_params *params, |
| 4061 | bool suspend) |
| 4062 | { |
| 4063 | int i; |
| 4064 | struct shm_acparams acp_shm; |
| 4065 | u16 *shm_entry; |
| 4066 | |
| 4067 | /* Only apply params if the core is out of reset and has clocks */ |
| 4068 | if (!wlc->clk) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4069 | brcms_err(wlc->hw->d11core, "wl%d: %s : no-clock\n", |
| 4070 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4071 | return; |
| 4072 | } |
| 4073 | |
Joe Perches | b56e681 | 2013-02-13 17:33:21 -0800 | [diff] [blame] | 4074 | memset(&acp_shm, 0, sizeof(struct shm_acparams)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4075 | /* fill in shm ac params struct */ |
| 4076 | acp_shm.txop = params->txop; |
| 4077 | /* convert from units of 32us to us for ucode */ |
| 4078 | wlc->edcf_txop[aci & 0x3] = acp_shm.txop = |
| 4079 | EDCF_TXOP2USEC(acp_shm.txop); |
| 4080 | acp_shm.aifs = (params->aifs & EDCF_AIFSN_MASK); |
| 4081 | |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 4082 | if (aci == IEEE80211_AC_VI && acp_shm.txop == 0 |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4083 | && acp_shm.aifs < EDCF_AIFSN_MAX) |
| 4084 | acp_shm.aifs++; |
| 4085 | |
| 4086 | if (acp_shm.aifs < EDCF_AIFSN_MIN |
| 4087 | || acp_shm.aifs > EDCF_AIFSN_MAX) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4088 | brcms_err(wlc->hw->d11core, "wl%d: edcf_setparams: bad " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4089 | "aifs %d\n", wlc->pub->unit, acp_shm.aifs); |
| 4090 | } else { |
| 4091 | acp_shm.cwmin = params->cw_min; |
| 4092 | acp_shm.cwmax = params->cw_max; |
| 4093 | acp_shm.cwcur = acp_shm.cwmin; |
| 4094 | acp_shm.bslots = |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 4095 | bcma_read16(wlc->hw->d11core, D11REGOFFS(tsf_random)) & |
| 4096 | acp_shm.cwcur; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4097 | acp_shm.reggap = acp_shm.bslots + acp_shm.aifs; |
| 4098 | /* Indicate the new params to the ucode */ |
| 4099 | acp_shm.status = brcms_b_read_shm(wlc->hw, (M_EDCF_QINFO + |
| 4100 | wme_ac2fifo[aci] * |
| 4101 | M_EDCF_QLEN + |
| 4102 | M_EDCF_STATUS_OFF)); |
| 4103 | acp_shm.status |= WME_STATUS_NEWAC; |
| 4104 | |
| 4105 | /* Fill in shm acparam table */ |
| 4106 | shm_entry = (u16 *) &acp_shm; |
| 4107 | for (i = 0; i < (int)sizeof(struct shm_acparams); i += 2) |
| 4108 | brcms_b_write_shm(wlc->hw, |
| 4109 | M_EDCF_QINFO + |
| 4110 | wme_ac2fifo[aci] * M_EDCF_QLEN + i, |
| 4111 | *shm_entry++); |
| 4112 | } |
| 4113 | |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 4114 | if (suspend) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4115 | brcms_c_suspend_mac_and_wait(wlc); |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 4116 | |
| 4117 | brcms_c_update_beacon(wlc); |
| 4118 | brcms_c_update_probe_resp(wlc, false); |
| 4119 | |
| 4120 | if (suspend) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4121 | brcms_c_enable_mac(wlc); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4122 | } |
| 4123 | |
Arend van Spriel | 094b199 | 2011-10-18 14:03:07 +0200 | [diff] [blame] | 4124 | static void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4125 | { |
| 4126 | u16 aci; |
| 4127 | int i_ac; |
| 4128 | struct ieee80211_tx_queue_params txq_pars; |
| 4129 | static const struct edcf_acparam default_edcf_acparams[] = { |
| 4130 | {EDCF_AC_BE_ACI_STA, EDCF_AC_BE_ECW_STA, EDCF_AC_BE_TXOP_STA}, |
| 4131 | {EDCF_AC_BK_ACI_STA, EDCF_AC_BK_ECW_STA, EDCF_AC_BK_TXOP_STA}, |
| 4132 | {EDCF_AC_VI_ACI_STA, EDCF_AC_VI_ECW_STA, EDCF_AC_VI_TXOP_STA}, |
| 4133 | {EDCF_AC_VO_ACI_STA, EDCF_AC_VO_ECW_STA, EDCF_AC_VO_TXOP_STA} |
| 4134 | }; /* ucode needs these parameters during its initialization */ |
| 4135 | const struct edcf_acparam *edcf_acp = &default_edcf_acparams[0]; |
| 4136 | |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 4137 | for (i_ac = 0; i_ac < IEEE80211_NUM_ACS; i_ac++, edcf_acp++) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4138 | /* find out which ac this set of params applies to */ |
| 4139 | aci = (edcf_acp->ACI & EDCF_ACI_MASK) >> EDCF_ACI_SHIFT; |
| 4140 | |
| 4141 | /* fill in shm ac params struct */ |
| 4142 | txq_pars.txop = edcf_acp->TXOP; |
| 4143 | txq_pars.aifs = edcf_acp->ACI; |
| 4144 | |
| 4145 | /* CWmin = 2^(ECWmin) - 1 */ |
| 4146 | txq_pars.cw_min = EDCF_ECW2CW(edcf_acp->ECW & EDCF_ECWMIN_MASK); |
| 4147 | /* CWmax = 2^(ECWmax) - 1 */ |
| 4148 | txq_pars.cw_max = EDCF_ECW2CW((edcf_acp->ECW & EDCF_ECWMAX_MASK) |
| 4149 | >> EDCF_ECWMAX_SHIFT); |
| 4150 | brcms_c_wme_setparams(wlc, aci, &txq_pars, suspend); |
| 4151 | } |
| 4152 | |
| 4153 | if (suspend) { |
| 4154 | brcms_c_suspend_mac_and_wait(wlc); |
| 4155 | brcms_c_enable_mac(wlc); |
| 4156 | } |
| 4157 | } |
| 4158 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4159 | static void brcms_c_radio_monitor_start(struct brcms_c_info *wlc) |
| 4160 | { |
| 4161 | /* Don't start the timer if HWRADIO feature is disabled */ |
| 4162 | if (wlc->radio_monitor) |
| 4163 | return; |
| 4164 | |
| 4165 | wlc->radio_monitor = true; |
| 4166 | brcms_b_pllreq(wlc->hw, true, BRCMS_PLLREQ_RADIO_MON); |
Roland Vossen | be69c4e | 2011-10-12 20:51:11 +0200 | [diff] [blame] | 4167 | brcms_add_timer(wlc->radio_timer, TIMER_INTERVAL_RADIOCHK, true); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4168 | } |
| 4169 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 4170 | static bool brcms_c_radio_monitor_stop(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4171 | { |
| 4172 | if (!wlc->radio_monitor) |
| 4173 | return true; |
| 4174 | |
| 4175 | wlc->radio_monitor = false; |
| 4176 | brcms_b_pllreq(wlc->hw, false, BRCMS_PLLREQ_RADIO_MON); |
Roland Vossen | be69c4e | 2011-10-12 20:51:11 +0200 | [diff] [blame] | 4177 | return brcms_del_timer(wlc->radio_timer); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4178 | } |
| 4179 | |
| 4180 | /* read hwdisable state and propagate to wlc flag */ |
| 4181 | static void brcms_c_radio_hwdisable_upd(struct brcms_c_info *wlc) |
| 4182 | { |
| 4183 | if (wlc->pub->hw_off) |
| 4184 | return; |
| 4185 | |
| 4186 | if (brcms_b_radio_read_hwdisabled(wlc->hw)) |
| 4187 | mboolset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE); |
| 4188 | else |
| 4189 | mboolclr(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE); |
| 4190 | } |
| 4191 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4192 | /* update hwradio status and return it */ |
| 4193 | bool brcms_c_check_radio_disabled(struct brcms_c_info *wlc) |
| 4194 | { |
| 4195 | brcms_c_radio_hwdisable_upd(wlc); |
| 4196 | |
| 4197 | return mboolisset(wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE) ? |
| 4198 | true : false; |
| 4199 | } |
| 4200 | |
| 4201 | /* periodical query hw radio button while driver is "down" */ |
| 4202 | static void brcms_c_radio_timer(void *arg) |
| 4203 | { |
| 4204 | struct brcms_c_info *wlc = (struct brcms_c_info *) arg; |
| 4205 | |
| 4206 | if (brcms_deviceremoved(wlc)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4207 | brcms_err(wlc->hw->d11core, "wl%d: %s: dead chip\n", |
| 4208 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4209 | brcms_down(wlc->wl); |
| 4210 | return; |
| 4211 | } |
| 4212 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4213 | brcms_c_radio_hwdisable_upd(wlc); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4214 | } |
| 4215 | |
| 4216 | /* common low-level watchdog code */ |
Hauke Mehrtens | a5fed0c | 2012-06-30 15:16:14 +0200 | [diff] [blame] | 4217 | static void brcms_b_watchdog(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4218 | { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4219 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 4220 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4221 | if (!wlc_hw->up) |
| 4222 | return; |
| 4223 | |
| 4224 | /* increment second count */ |
| 4225 | wlc_hw->now++; |
| 4226 | |
| 4227 | /* Check for FIFO error interrupts */ |
| 4228 | brcms_b_fifoerrors(wlc_hw); |
| 4229 | |
| 4230 | /* make sure RX dma has buffers */ |
| 4231 | dma_rxfill(wlc->hw->di[RX_FIFO]); |
| 4232 | |
| 4233 | wlc_phy_watchdog(wlc_hw->band->pi); |
| 4234 | } |
| 4235 | |
| 4236 | /* common watchdog code */ |
Hauke Mehrtens | a5fed0c | 2012-06-30 15:16:14 +0200 | [diff] [blame] | 4237 | static void brcms_c_watchdog(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4238 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4239 | brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4240 | |
| 4241 | if (!wlc->pub->up) |
| 4242 | return; |
| 4243 | |
| 4244 | if (brcms_deviceremoved(wlc)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4245 | brcms_err(wlc->hw->d11core, "wl%d: %s: dead chip\n", |
| 4246 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4247 | brcms_down(wlc->wl); |
| 4248 | return; |
| 4249 | } |
| 4250 | |
| 4251 | /* increment second count */ |
| 4252 | wlc->pub->now++; |
| 4253 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4254 | brcms_c_radio_hwdisable_upd(wlc); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4255 | /* if radio is disable, driver may be down, quit here */ |
| 4256 | if (wlc->pub->radio_disabled) |
| 4257 | return; |
| 4258 | |
| 4259 | brcms_b_watchdog(wlc); |
| 4260 | |
| 4261 | /* |
| 4262 | * occasionally sample mac stat counters to |
| 4263 | * detect 16-bit counter wrap |
| 4264 | */ |
| 4265 | if ((wlc->pub->now % SW_TIMER_MAC_STAT_UPD) == 0) |
| 4266 | brcms_c_statsupd(wlc); |
| 4267 | |
| 4268 | if (BRCMS_ISNPHY(wlc->band) && |
| 4269 | ((wlc->pub->now - wlc->tempsense_lasttime) >= |
| 4270 | BRCMS_TEMPSENSE_PERIOD)) { |
| 4271 | wlc->tempsense_lasttime = wlc->pub->now; |
| 4272 | brcms_c_tempsense_upd(wlc); |
| 4273 | } |
| 4274 | } |
| 4275 | |
| 4276 | static void brcms_c_watchdog_by_timer(void *arg) |
| 4277 | { |
Hauke Mehrtens | a5fed0c | 2012-06-30 15:16:14 +0200 | [diff] [blame] | 4278 | struct brcms_c_info *wlc = (struct brcms_c_info *) arg; |
| 4279 | |
| 4280 | brcms_c_watchdog(wlc); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4281 | } |
| 4282 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 4283 | static bool brcms_c_timers_init(struct brcms_c_info *wlc, int unit) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4284 | { |
| 4285 | wlc->wdtimer = brcms_init_timer(wlc->wl, brcms_c_watchdog_by_timer, |
| 4286 | wlc, "watchdog"); |
| 4287 | if (!wlc->wdtimer) { |
| 4288 | wiphy_err(wlc->wiphy, "wl%d: wl_init_timer for wdtimer " |
| 4289 | "failed\n", unit); |
| 4290 | goto fail; |
| 4291 | } |
| 4292 | |
| 4293 | wlc->radio_timer = brcms_init_timer(wlc->wl, brcms_c_radio_timer, |
| 4294 | wlc, "radio"); |
| 4295 | if (!wlc->radio_timer) { |
| 4296 | wiphy_err(wlc->wiphy, "wl%d: wl_init_timer for radio_timer " |
| 4297 | "failed\n", unit); |
| 4298 | goto fail; |
| 4299 | } |
| 4300 | |
| 4301 | return true; |
| 4302 | |
| 4303 | fail: |
| 4304 | return false; |
| 4305 | } |
| 4306 | |
| 4307 | /* |
| 4308 | * Initialize brcms_c_info default values ... |
| 4309 | * may get overrides later in this function |
| 4310 | */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 4311 | static void brcms_c_info_init(struct brcms_c_info *wlc, int unit) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4312 | { |
| 4313 | int i; |
| 4314 | |
| 4315 | /* Save our copy of the chanspec */ |
| 4316 | wlc->chanspec = ch20mhz_chspec(1); |
| 4317 | |
| 4318 | /* various 802.11g modes */ |
| 4319 | wlc->shortslot = false; |
| 4320 | wlc->shortslot_override = BRCMS_SHORTSLOT_AUTO; |
| 4321 | |
| 4322 | brcms_c_protection_upd(wlc, BRCMS_PROT_G_OVR, BRCMS_PROTECTION_AUTO); |
| 4323 | brcms_c_protection_upd(wlc, BRCMS_PROT_G_SPEC, false); |
| 4324 | |
| 4325 | brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG_OVR, |
| 4326 | BRCMS_PROTECTION_AUTO); |
| 4327 | brcms_c_protection_upd(wlc, BRCMS_PROT_N_CFG, BRCMS_N_PROTECTION_OFF); |
| 4328 | brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF_OVR, |
| 4329 | BRCMS_PROTECTION_AUTO); |
| 4330 | brcms_c_protection_upd(wlc, BRCMS_PROT_N_NONGF, false); |
| 4331 | brcms_c_protection_upd(wlc, BRCMS_PROT_N_PAM_OVR, AUTO); |
| 4332 | |
| 4333 | brcms_c_protection_upd(wlc, BRCMS_PROT_OVERLAP, |
| 4334 | BRCMS_PROTECTION_CTL_OVERLAP); |
| 4335 | |
| 4336 | /* 802.11g draft 4.0 NonERP elt advertisement */ |
| 4337 | wlc->include_legacy_erp = true; |
| 4338 | |
| 4339 | wlc->stf->ant_rx_ovr = ANT_RX_DIV_DEF; |
| 4340 | wlc->stf->txant = ANT_TX_DEF; |
| 4341 | |
| 4342 | wlc->prb_resp_timeout = BRCMS_PRB_RESP_TIMEOUT; |
| 4343 | |
| 4344 | wlc->usr_fragthresh = DOT11_DEFAULT_FRAG_LEN; |
| 4345 | for (i = 0; i < NFIFO; i++) |
| 4346 | wlc->fragthresh[i] = DOT11_DEFAULT_FRAG_LEN; |
| 4347 | wlc->RTSThresh = DOT11_DEFAULT_RTS_LEN; |
| 4348 | |
| 4349 | /* default rate fallback retry limits */ |
| 4350 | wlc->SFBL = RETRY_SHORT_FB; |
| 4351 | wlc->LFBL = RETRY_LONG_FB; |
| 4352 | |
| 4353 | /* default mac retry limits */ |
| 4354 | wlc->SRL = RETRY_SHORT_DEF; |
| 4355 | wlc->LRL = RETRY_LONG_DEF; |
| 4356 | |
| 4357 | /* WME QoS mode is Auto by default */ |
| 4358 | wlc->pub->_ampdu = AMPDU_AGG_HOST; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4359 | } |
| 4360 | |
| 4361 | static uint brcms_c_attach_module(struct brcms_c_info *wlc) |
| 4362 | { |
| 4363 | uint err = 0; |
| 4364 | uint unit; |
| 4365 | unit = wlc->pub->unit; |
| 4366 | |
| 4367 | wlc->asi = brcms_c_antsel_attach(wlc); |
| 4368 | if (wlc->asi == NULL) { |
| 4369 | wiphy_err(wlc->wiphy, "wl%d: attach: antsel_attach " |
| 4370 | "failed\n", unit); |
| 4371 | err = 44; |
| 4372 | goto fail; |
| 4373 | } |
| 4374 | |
| 4375 | wlc->ampdu = brcms_c_ampdu_attach(wlc); |
| 4376 | if (wlc->ampdu == NULL) { |
| 4377 | wiphy_err(wlc->wiphy, "wl%d: attach: ampdu_attach " |
| 4378 | "failed\n", unit); |
| 4379 | err = 50; |
| 4380 | goto fail; |
| 4381 | } |
| 4382 | |
| 4383 | if ((brcms_c_stf_attach(wlc) != 0)) { |
| 4384 | wiphy_err(wlc->wiphy, "wl%d: attach: stf_attach " |
| 4385 | "failed\n", unit); |
| 4386 | err = 68; |
| 4387 | goto fail; |
| 4388 | } |
| 4389 | fail: |
| 4390 | return err; |
| 4391 | } |
| 4392 | |
| 4393 | struct brcms_pub *brcms_c_pub(struct brcms_c_info *wlc) |
| 4394 | { |
| 4395 | return wlc->pub; |
| 4396 | } |
| 4397 | |
| 4398 | /* low level attach |
| 4399 | * run backplane attach, init nvram |
| 4400 | * run phy attach |
| 4401 | * initialize software state for each core and band |
| 4402 | * put the whole chip in reset(driver down state), no clock |
| 4403 | */ |
Arend van Spriel | b63337a | 2011-12-08 15:06:47 -0800 | [diff] [blame] | 4404 | static int brcms_b_attach(struct brcms_c_info *wlc, struct bcma_device *core, |
| 4405 | uint unit, bool piomode) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4406 | { |
| 4407 | struct brcms_hardware *wlc_hw; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4408 | uint err = 0; |
| 4409 | uint j; |
| 4410 | bool wme = false; |
| 4411 | struct shared_phy_params sha_params; |
| 4412 | struct wiphy *wiphy = wlc->wiphy; |
Arend van Spriel | b63337a | 2011-12-08 15:06:47 -0800 | [diff] [blame] | 4413 | struct pci_dev *pcidev = core->bus->host_pci; |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4414 | struct ssb_sprom *sprom = &core->bus->sprom; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4415 | |
Hauke Mehrtens | a06f210 | 2012-04-29 02:50:42 +0200 | [diff] [blame] | 4416 | if (core->bus->hosttype == BCMA_HOSTTYPE_PCI) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4417 | brcms_dbg_info(core, "wl%d: vendor 0x%x device 0x%x\n", unit, |
| 4418 | pcidev->vendor, |
| 4419 | pcidev->device); |
Hauke Mehrtens | a06f210 | 2012-04-29 02:50:42 +0200 | [diff] [blame] | 4420 | else |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4421 | brcms_dbg_info(core, "wl%d: vendor 0x%x device 0x%x\n", unit, |
| 4422 | core->bus->boardinfo.vendor, |
| 4423 | core->bus->boardinfo.type); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4424 | |
| 4425 | wme = true; |
| 4426 | |
| 4427 | wlc_hw = wlc->hw; |
| 4428 | wlc_hw->wlc = wlc; |
| 4429 | wlc_hw->unit = unit; |
| 4430 | wlc_hw->band = wlc_hw->bandstate[0]; |
| 4431 | wlc_hw->_piomode = piomode; |
| 4432 | |
| 4433 | /* populate struct brcms_hardware with default values */ |
| 4434 | brcms_b_info_init(wlc_hw); |
| 4435 | |
| 4436 | /* |
| 4437 | * Do the hardware portion of the attach. Also initialize software |
| 4438 | * state that depends on the particular hardware we are running. |
| 4439 | */ |
Arend van Spriel | 28a5344 | 2011-12-08 15:06:49 -0800 | [diff] [blame] | 4440 | wlc_hw->sih = ai_attach(core->bus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4441 | if (wlc_hw->sih == NULL) { |
| 4442 | wiphy_err(wiphy, "wl%d: brcms_b_attach: si_attach failed\n", |
| 4443 | unit); |
| 4444 | err = 11; |
| 4445 | goto fail; |
| 4446 | } |
| 4447 | |
| 4448 | /* verify again the device is supported */ |
Hauke Mehrtens | cacaa64 | 2012-06-30 15:16:19 +0200 | [diff] [blame] | 4449 | if (!brcms_c_chipmatch(core)) { |
| 4450 | wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported device\n", |
| 4451 | unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4452 | err = 12; |
| 4453 | goto fail; |
| 4454 | } |
| 4455 | |
Hauke Mehrtens | a06f210 | 2012-04-29 02:50:42 +0200 | [diff] [blame] | 4456 | if (core->bus->hosttype == BCMA_HOSTTYPE_PCI) { |
| 4457 | wlc_hw->vendorid = pcidev->vendor; |
| 4458 | wlc_hw->deviceid = pcidev->device; |
| 4459 | } else { |
| 4460 | wlc_hw->vendorid = core->bus->boardinfo.vendor; |
| 4461 | wlc_hw->deviceid = core->bus->boardinfo.type; |
| 4462 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4463 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 4464 | wlc_hw->d11core = core; |
| 4465 | wlc_hw->corerev = core->id.rev; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4466 | |
| 4467 | /* validate chip, chiprev and corerev */ |
| 4468 | if (!brcms_c_isgoodchip(wlc_hw)) { |
| 4469 | err = 13; |
| 4470 | goto fail; |
| 4471 | } |
| 4472 | |
| 4473 | /* initialize power control registers */ |
| 4474 | ai_clkctl_init(wlc_hw->sih); |
| 4475 | |
| 4476 | /* request fastclock and force fastclock for the rest of attach |
| 4477 | * bring the d11 core out of reset. |
| 4478 | * For PMU chips, the first wlc_clkctl_clk is no-op since core-clk |
| 4479 | * is still false; But it will be called again inside wlc_corereset, |
| 4480 | * after d11 is out of reset. |
| 4481 | */ |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 4482 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4483 | brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS); |
| 4484 | |
| 4485 | if (!brcms_b_validate_chip_access(wlc_hw)) { |
| 4486 | wiphy_err(wiphy, "wl%d: brcms_b_attach: validate_chip_access " |
| 4487 | "failed\n", unit); |
| 4488 | err = 14; |
| 4489 | goto fail; |
| 4490 | } |
| 4491 | |
| 4492 | /* get the board rev, used just below */ |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4493 | j = sprom->board_rev; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4494 | /* promote srom boardrev of 0xFF to 1 */ |
| 4495 | if (j == BOARDREV_PROMOTABLE) |
| 4496 | j = BOARDREV_PROMOTED; |
| 4497 | wlc_hw->boardrev = (u16) j; |
| 4498 | if (!brcms_c_validboardtype(wlc_hw)) { |
| 4499 | wiphy_err(wiphy, "wl%d: brcms_b_attach: Unsupported Broadcom " |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 4500 | "board type (0x%x)" " or revision level (0x%x)\n", |
| 4501 | unit, ai_get_boardtype(wlc_hw->sih), |
| 4502 | wlc_hw->boardrev); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4503 | err = 15; |
| 4504 | goto fail; |
| 4505 | } |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4506 | wlc_hw->sromrev = sprom->revision; |
| 4507 | wlc_hw->boardflags = sprom->boardflags_lo + (sprom->boardflags_hi << 16); |
| 4508 | wlc_hw->boardflags2 = sprom->boardflags2_lo + (sprom->boardflags2_hi << 16); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4509 | |
| 4510 | if (wlc_hw->boardflags & BFL_NOPLLDOWN) |
| 4511 | brcms_b_pllreq(wlc_hw, true, BRCMS_PLLREQ_SHARED); |
| 4512 | |
| 4513 | /* check device id(srom, nvram etc.) to set bands */ |
| 4514 | if (wlc_hw->deviceid == BCM43224_D11N_ID || |
Hauke Mehrtens | 9dd4ea5 | 2012-12-07 17:10:03 +0100 | [diff] [blame] | 4515 | wlc_hw->deviceid == BCM43224_D11N_ID_VEN1 || |
| 4516 | wlc_hw->deviceid == BCM43224_CHIP_ID) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4517 | /* Dualband boards */ |
| 4518 | wlc_hw->_nbands = 2; |
| 4519 | else |
| 4520 | wlc_hw->_nbands = 1; |
| 4521 | |
Hauke Mehrtens | 1ef1a57 | 2012-06-30 15:16:13 +0200 | [diff] [blame] | 4522 | if ((ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM43225)) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4523 | wlc_hw->_nbands = 1; |
| 4524 | |
| 4525 | /* BMAC_NOTE: remove init of pub values when brcms_c_attach() |
| 4526 | * unconditionally does the init of these values |
| 4527 | */ |
| 4528 | wlc->vendorid = wlc_hw->vendorid; |
| 4529 | wlc->deviceid = wlc_hw->deviceid; |
| 4530 | wlc->pub->sih = wlc_hw->sih; |
| 4531 | wlc->pub->corerev = wlc_hw->corerev; |
| 4532 | wlc->pub->sromrev = wlc_hw->sromrev; |
| 4533 | wlc->pub->boardrev = wlc_hw->boardrev; |
| 4534 | wlc->pub->boardflags = wlc_hw->boardflags; |
| 4535 | wlc->pub->boardflags2 = wlc_hw->boardflags2; |
| 4536 | wlc->pub->_nbands = wlc_hw->_nbands; |
| 4537 | |
| 4538 | wlc_hw->physhim = wlc_phy_shim_attach(wlc_hw, wlc->wl, wlc); |
| 4539 | |
| 4540 | if (wlc_hw->physhim == NULL) { |
| 4541 | wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_shim_attach " |
| 4542 | "failed\n", unit); |
| 4543 | err = 25; |
| 4544 | goto fail; |
| 4545 | } |
| 4546 | |
| 4547 | /* pass all the parameters to wlc_phy_shared_attach in one struct */ |
| 4548 | sha_params.sih = wlc_hw->sih; |
| 4549 | sha_params.physhim = wlc_hw->physhim; |
| 4550 | sha_params.unit = unit; |
| 4551 | sha_params.corerev = wlc_hw->corerev; |
| 4552 | sha_params.vid = wlc_hw->vendorid; |
| 4553 | sha_params.did = wlc_hw->deviceid; |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 4554 | sha_params.chip = ai_get_chip_id(wlc_hw->sih); |
| 4555 | sha_params.chiprev = ai_get_chiprev(wlc_hw->sih); |
| 4556 | sha_params.chippkg = ai_get_chippkg(wlc_hw->sih); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4557 | sha_params.sromrev = wlc_hw->sromrev; |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 4558 | sha_params.boardtype = ai_get_boardtype(wlc_hw->sih); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4559 | sha_params.boardrev = wlc_hw->boardrev; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4560 | sha_params.boardflags = wlc_hw->boardflags; |
| 4561 | sha_params.boardflags2 = wlc_hw->boardflags2; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4562 | |
| 4563 | /* alloc and save pointer to shared phy state area */ |
| 4564 | wlc_hw->phy_sh = wlc_phy_shared_attach(&sha_params); |
| 4565 | if (!wlc_hw->phy_sh) { |
| 4566 | err = 16; |
| 4567 | goto fail; |
| 4568 | } |
| 4569 | |
| 4570 | /* initialize software state for each core and band */ |
| 4571 | for (j = 0; j < wlc_hw->_nbands; j++) { |
| 4572 | /* |
| 4573 | * band0 is always 2.4Ghz |
| 4574 | * band1, if present, is 5Ghz |
| 4575 | */ |
| 4576 | |
| 4577 | brcms_c_setxband(wlc_hw, j); |
| 4578 | |
| 4579 | wlc_hw->band->bandunit = j; |
| 4580 | wlc_hw->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G; |
| 4581 | wlc->band->bandunit = j; |
| 4582 | wlc->band->bandtype = j ? BRCM_BAND_5G : BRCM_BAND_2G; |
Arend van Spriel | 3b758a6 | 2011-12-12 15:15:09 -0800 | [diff] [blame] | 4583 | wlc->core->coreidx = core->core_index; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4584 | |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 4585 | wlc_hw->machwcap = bcma_read32(core, D11REGOFFS(machwcap)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4586 | wlc_hw->machwcap_backup = wlc_hw->machwcap; |
| 4587 | |
| 4588 | /* init tx fifo size */ |
Hauke Mehrtens | 093cd33 | 2012-07-02 20:15:51 +0200 | [diff] [blame] | 4589 | WARN_ON((wlc_hw->corerev - XMTFIFOTBL_STARTREV) < 0 || |
| 4590 | (wlc_hw->corerev - XMTFIFOTBL_STARTREV) > |
| 4591 | ARRAY_SIZE(xmtfifo_sz)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4592 | wlc_hw->xmtfifo_sz = |
| 4593 | xmtfifo_sz[(wlc_hw->corerev - XMTFIFOTBL_STARTREV)]; |
Hauke Mehrtens | 093cd33 | 2012-07-02 20:15:51 +0200 | [diff] [blame] | 4594 | WARN_ON(!wlc_hw->xmtfifo_sz[0]); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4595 | |
| 4596 | /* Get a phy for this band */ |
| 4597 | wlc_hw->band->pi = |
Arend van Spriel | 4b006b1 | 2011-12-08 15:06:54 -0800 | [diff] [blame] | 4598 | wlc_phy_attach(wlc_hw->phy_sh, core, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4599 | wlc_hw->band->bandtype, |
| 4600 | wlc->wiphy); |
| 4601 | if (wlc_hw->band->pi == NULL) { |
| 4602 | wiphy_err(wiphy, "wl%d: brcms_b_attach: wlc_phy_" |
| 4603 | "attach failed\n", unit); |
| 4604 | err = 17; |
| 4605 | goto fail; |
| 4606 | } |
| 4607 | |
| 4608 | wlc_phy_machwcap_set(wlc_hw->band->pi, wlc_hw->machwcap); |
| 4609 | |
| 4610 | wlc_phy_get_phyversion(wlc_hw->band->pi, &wlc_hw->band->phytype, |
| 4611 | &wlc_hw->band->phyrev, |
| 4612 | &wlc_hw->band->radioid, |
| 4613 | &wlc_hw->band->radiorev); |
| 4614 | wlc_hw->band->abgphy_encore = |
| 4615 | wlc_phy_get_encore(wlc_hw->band->pi); |
| 4616 | wlc->band->abgphy_encore = wlc_phy_get_encore(wlc_hw->band->pi); |
| 4617 | wlc_hw->band->core_flags = |
| 4618 | wlc_phy_get_coreflags(wlc_hw->band->pi); |
| 4619 | |
| 4620 | /* verify good phy_type & supported phy revision */ |
| 4621 | if (BRCMS_ISNPHY(wlc_hw->band)) { |
| 4622 | if (NCONF_HAS(wlc_hw->band->phyrev)) |
| 4623 | goto good_phy; |
| 4624 | else |
| 4625 | goto bad_phy; |
| 4626 | } else if (BRCMS_ISLCNPHY(wlc_hw->band)) { |
| 4627 | if (LCNCONF_HAS(wlc_hw->band->phyrev)) |
| 4628 | goto good_phy; |
| 4629 | else |
| 4630 | goto bad_phy; |
| 4631 | } else { |
| 4632 | bad_phy: |
| 4633 | wiphy_err(wiphy, "wl%d: brcms_b_attach: unsupported " |
| 4634 | "phy type/rev (%d/%d)\n", unit, |
| 4635 | wlc_hw->band->phytype, wlc_hw->band->phyrev); |
| 4636 | err = 18; |
| 4637 | goto fail; |
| 4638 | } |
| 4639 | |
| 4640 | good_phy: |
| 4641 | /* |
| 4642 | * BMAC_NOTE: wlc->band->pi should not be set below and should |
| 4643 | * be done in the high level attach. However we can not make |
| 4644 | * that change until all low level access is changed to |
| 4645 | * wlc_hw->band->pi. Instead do the wlc->band->pi init below, |
| 4646 | * keeping wlc_hw->band->pi as well for incremental update of |
| 4647 | * low level fns, and cut over low only init when all fns |
| 4648 | * updated. |
| 4649 | */ |
| 4650 | wlc->band->pi = wlc_hw->band->pi; |
| 4651 | wlc->band->phytype = wlc_hw->band->phytype; |
| 4652 | wlc->band->phyrev = wlc_hw->band->phyrev; |
| 4653 | wlc->band->radioid = wlc_hw->band->radioid; |
| 4654 | wlc->band->radiorev = wlc_hw->band->radiorev; |
Arend van Spriel | 67e39c5 | 2013-08-20 16:00:38 +0200 | [diff] [blame] | 4655 | brcms_dbg_info(core, "wl%d: phy %u/%u radio %x/%u\n", unit, |
| 4656 | wlc->band->phytype, wlc->band->phyrev, |
| 4657 | wlc->band->radioid, wlc->band->radiorev); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4658 | /* default contention windows size limits */ |
| 4659 | wlc_hw->band->CWmin = APHY_CWMIN; |
| 4660 | wlc_hw->band->CWmax = PHY_CWMAX; |
| 4661 | |
| 4662 | if (!brcms_b_attach_dmapio(wlc, j, wme)) { |
| 4663 | err = 19; |
| 4664 | goto fail; |
| 4665 | } |
| 4666 | } |
| 4667 | |
| 4668 | /* disable core to match driver "down" state */ |
| 4669 | brcms_c_coredisable(wlc_hw); |
| 4670 | |
| 4671 | /* Match driver "down" state */ |
Hauke Mehrtens | aa51e59 | 2013-08-24 00:32:31 +0200 | [diff] [blame] | 4672 | bcma_core_pci_down(wlc_hw->d11core->bus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4673 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4674 | /* turn off pll and xtal to match driver "down" state */ |
| 4675 | brcms_b_xtal(wlc_hw, OFF); |
| 4676 | |
| 4677 | /* ******************************************************************* |
| 4678 | * The hardware is in the DOWN state at this point. D11 core |
| 4679 | * or cores are in reset with clocks off, and the board PLLs |
| 4680 | * are off if possible. |
| 4681 | * |
| 4682 | * Beyond this point, wlc->sbclk == false and chip registers |
| 4683 | * should not be touched. |
| 4684 | ********************************************************************* |
| 4685 | */ |
| 4686 | |
| 4687 | /* init etheraddr state variables */ |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4688 | brcms_c_get_macaddr(wlc_hw, wlc_hw->etheraddr); |
| 4689 | |
| 4690 | if (is_broadcast_ether_addr(wlc_hw->etheraddr) || |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4691 | is_zero_ether_addr(wlc_hw->etheraddr)) { |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4692 | wiphy_err(wiphy, "wl%d: brcms_b_attach: bad macaddr\n", |
| 4693 | unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4694 | err = 22; |
| 4695 | goto fail; |
| 4696 | } |
| 4697 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4698 | brcms_dbg_info(wlc_hw->d11core, "deviceid 0x%x nbands %d board 0x%x\n", |
| 4699 | wlc_hw->deviceid, wlc_hw->_nbands, |
| 4700 | ai_get_boardtype(wlc_hw->sih)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4701 | |
| 4702 | return err; |
| 4703 | |
| 4704 | fail: |
| 4705 | wiphy_err(wiphy, "wl%d: brcms_b_attach: failed with err %d\n", unit, |
| 4706 | err); |
| 4707 | return err; |
| 4708 | } |
| 4709 | |
| 4710 | static void brcms_c_attach_antgain_init(struct brcms_c_info *wlc) |
| 4711 | { |
| 4712 | uint unit; |
| 4713 | unit = wlc->pub->unit; |
| 4714 | |
| 4715 | if ((wlc->band->antgain == -1) && (wlc->pub->sromrev == 1)) { |
| 4716 | /* default antenna gain for srom rev 1 is 2 dBm (8 qdbm) */ |
| 4717 | wlc->band->antgain = 8; |
| 4718 | } else if (wlc->band->antgain == -1) { |
| 4719 | wiphy_err(wlc->wiphy, "wl%d: %s: Invalid antennas available in" |
| 4720 | " srom, using 2dB\n", unit, __func__); |
| 4721 | wlc->band->antgain = 8; |
| 4722 | } else { |
| 4723 | s8 gain, fract; |
| 4724 | /* Older sroms specified gain in whole dbm only. In order |
| 4725 | * be able to specify qdbm granularity and remain backward |
| 4726 | * compatible the whole dbms are now encoded in only |
| 4727 | * low 6 bits and remaining qdbms are encoded in the hi 2 bits. |
| 4728 | * 6 bit signed number ranges from -32 - 31. |
| 4729 | * |
| 4730 | * Examples: |
| 4731 | * 0x1 = 1 db, |
| 4732 | * 0xc1 = 1.75 db (1 + 3 quarters), |
| 4733 | * 0x3f = -1 (-1 + 0 quarters), |
| 4734 | * 0x7f = -.75 (-1 + 1 quarters) = -3 qdbm. |
| 4735 | * 0xbf = -.50 (-1 + 2 quarters) = -2 qdbm. |
| 4736 | */ |
| 4737 | gain = wlc->band->antgain & 0x3f; |
| 4738 | gain <<= 2; /* Sign extend */ |
| 4739 | gain >>= 2; |
| 4740 | fract = (wlc->band->antgain & 0xc0) >> 6; |
| 4741 | wlc->band->antgain = 4 * gain + fract; |
| 4742 | } |
| 4743 | } |
| 4744 | |
| 4745 | static bool brcms_c_attach_stf_ant_init(struct brcms_c_info *wlc) |
| 4746 | { |
| 4747 | int aa; |
| 4748 | uint unit; |
| 4749 | int bandtype; |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4750 | struct ssb_sprom *sprom = &wlc->hw->d11core->bus->sprom; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4751 | |
| 4752 | unit = wlc->pub->unit; |
| 4753 | bandtype = wlc->band->bandtype; |
| 4754 | |
| 4755 | /* get antennas available */ |
| 4756 | if (bandtype == BRCM_BAND_5G) |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4757 | aa = sprom->ant_available_a; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4758 | else |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4759 | aa = sprom->ant_available_bg; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4760 | |
| 4761 | if ((aa < 1) || (aa > 15)) { |
| 4762 | wiphy_err(wlc->wiphy, "wl%d: %s: Invalid antennas available in" |
| 4763 | " srom (0x%x), using 3\n", unit, __func__, aa); |
| 4764 | aa = 3; |
| 4765 | } |
| 4766 | |
| 4767 | /* reset the defaults if we have a single antenna */ |
| 4768 | if (aa == 1) { |
| 4769 | wlc->stf->ant_rx_ovr = ANT_RX_DIV_FORCE_0; |
| 4770 | wlc->stf->txant = ANT_TX_FORCE_0; |
| 4771 | } else if (aa == 2) { |
| 4772 | wlc->stf->ant_rx_ovr = ANT_RX_DIV_FORCE_1; |
| 4773 | wlc->stf->txant = ANT_TX_FORCE_1; |
| 4774 | } else { |
| 4775 | } |
| 4776 | |
| 4777 | /* Compute Antenna Gain */ |
| 4778 | if (bandtype == BRCM_BAND_5G) |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4779 | wlc->band->antgain = sprom->antenna_gain.a1; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4780 | else |
Hauke Mehrtens | 898d3c3 | 2012-04-29 02:50:25 +0200 | [diff] [blame] | 4781 | wlc->band->antgain = sprom->antenna_gain.a0; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4782 | |
| 4783 | brcms_c_attach_antgain_init(wlc); |
| 4784 | |
| 4785 | return true; |
| 4786 | } |
| 4787 | |
| 4788 | static void brcms_c_bss_default_init(struct brcms_c_info *wlc) |
| 4789 | { |
| 4790 | u16 chanspec; |
| 4791 | struct brcms_band *band; |
| 4792 | struct brcms_bss_info *bi = wlc->default_bss; |
| 4793 | |
| 4794 | /* init default and target BSS with some sane initial values */ |
Joe Perches | b56e681 | 2013-02-13 17:33:21 -0800 | [diff] [blame] | 4795 | memset(bi, 0, sizeof(*bi)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4796 | bi->beacon_period = BEACON_INTERVAL_DEFAULT; |
| 4797 | |
| 4798 | /* fill the default channel as the first valid channel |
| 4799 | * starting from the 2G channels |
| 4800 | */ |
| 4801 | chanspec = ch20mhz_chspec(1); |
| 4802 | wlc->home_chanspec = bi->chanspec = chanspec; |
| 4803 | |
| 4804 | /* find the band of our default channel */ |
| 4805 | band = wlc->band; |
| 4806 | if (wlc->pub->_nbands > 1 && |
| 4807 | band->bandunit != chspec_bandunit(chanspec)) |
| 4808 | band = wlc->bandstate[OTHERBANDUNIT(wlc)]; |
| 4809 | |
| 4810 | /* init bss rates to the band specific default rate set */ |
| 4811 | brcms_c_rateset_default(&bi->rateset, NULL, band->phytype, |
| 4812 | band->bandtype, false, BRCMS_RATE_MASK_FULL, |
| 4813 | (bool) (wlc->pub->_n_enab & SUPPORT_11N), |
| 4814 | brcms_chspec_bw(chanspec), wlc->stf->txstreams); |
| 4815 | |
| 4816 | if (wlc->pub->_n_enab & SUPPORT_11N) |
| 4817 | bi->flags |= BRCMS_BSS_HT; |
| 4818 | } |
| 4819 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4820 | static void brcms_c_update_mimo_band_bwcap(struct brcms_c_info *wlc, u8 bwcap) |
| 4821 | { |
| 4822 | uint i; |
| 4823 | struct brcms_band *band; |
| 4824 | |
| 4825 | for (i = 0; i < wlc->pub->_nbands; i++) { |
| 4826 | band = wlc->bandstate[i]; |
| 4827 | if (band->bandtype == BRCM_BAND_5G) { |
| 4828 | if ((bwcap == BRCMS_N_BW_40ALL) |
| 4829 | || (bwcap == BRCMS_N_BW_20IN2G_40IN5G)) |
| 4830 | band->mimo_cap_40 = true; |
| 4831 | else |
| 4832 | band->mimo_cap_40 = false; |
| 4833 | } else { |
| 4834 | if (bwcap == BRCMS_N_BW_40ALL) |
| 4835 | band->mimo_cap_40 = true; |
| 4836 | else |
| 4837 | band->mimo_cap_40 = false; |
| 4838 | } |
| 4839 | } |
| 4840 | } |
| 4841 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4842 | static void brcms_c_timers_deinit(struct brcms_c_info *wlc) |
| 4843 | { |
| 4844 | /* free timer state */ |
| 4845 | if (wlc->wdtimer) { |
Roland Vossen | be69c4e | 2011-10-12 20:51:11 +0200 | [diff] [blame] | 4846 | brcms_free_timer(wlc->wdtimer); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4847 | wlc->wdtimer = NULL; |
| 4848 | } |
| 4849 | if (wlc->radio_timer) { |
Roland Vossen | be69c4e | 2011-10-12 20:51:11 +0200 | [diff] [blame] | 4850 | brcms_free_timer(wlc->radio_timer); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4851 | wlc->radio_timer = NULL; |
| 4852 | } |
| 4853 | } |
| 4854 | |
| 4855 | static void brcms_c_detach_module(struct brcms_c_info *wlc) |
| 4856 | { |
| 4857 | if (wlc->asi) { |
| 4858 | brcms_c_antsel_detach(wlc->asi); |
| 4859 | wlc->asi = NULL; |
| 4860 | } |
| 4861 | |
| 4862 | if (wlc->ampdu) { |
| 4863 | brcms_c_ampdu_detach(wlc->ampdu); |
| 4864 | wlc->ampdu = NULL; |
| 4865 | } |
| 4866 | |
| 4867 | brcms_c_stf_detach(wlc); |
| 4868 | } |
| 4869 | |
| 4870 | /* |
| 4871 | * low level detach |
| 4872 | */ |
| 4873 | static int brcms_b_detach(struct brcms_c_info *wlc) |
| 4874 | { |
| 4875 | uint i; |
| 4876 | struct brcms_hw_band *band; |
| 4877 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 4878 | int callbacks; |
| 4879 | |
| 4880 | callbacks = 0; |
| 4881 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4882 | brcms_b_detach_dmapio(wlc_hw); |
| 4883 | |
| 4884 | band = wlc_hw->band; |
| 4885 | for (i = 0; i < wlc_hw->_nbands; i++) { |
| 4886 | if (band->pi) { |
| 4887 | /* Detach this band's phy */ |
| 4888 | wlc_phy_detach(band->pi); |
| 4889 | band->pi = NULL; |
| 4890 | } |
| 4891 | band = wlc_hw->bandstate[OTHERBANDUNIT(wlc)]; |
| 4892 | } |
| 4893 | |
| 4894 | /* Free shared phy state */ |
| 4895 | kfree(wlc_hw->phy_sh); |
| 4896 | |
| 4897 | wlc_phy_shim_detach(wlc_hw->physhim); |
| 4898 | |
| 4899 | if (wlc_hw->sih) { |
| 4900 | ai_detach(wlc_hw->sih); |
| 4901 | wlc_hw->sih = NULL; |
| 4902 | } |
| 4903 | |
| 4904 | return callbacks; |
| 4905 | |
| 4906 | } |
| 4907 | |
| 4908 | /* |
| 4909 | * Return a count of the number of driver callbacks still pending. |
| 4910 | * |
| 4911 | * General policy is that brcms_c_detach can only dealloc/free software states. |
| 4912 | * It can NOT touch hardware registers since the d11core may be in reset and |
| 4913 | * clock may not be available. |
| 4914 | * One exception is sb register access, which is possible if crystal is turned |
| 4915 | * on after "down" state, driver should avoid software timer with the exception |
| 4916 | * of radio_monitor. |
| 4917 | */ |
| 4918 | uint brcms_c_detach(struct brcms_c_info *wlc) |
| 4919 | { |
| 4920 | uint callbacks = 0; |
| 4921 | |
| 4922 | if (wlc == NULL) |
| 4923 | return 0; |
| 4924 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4925 | callbacks += brcms_b_detach(wlc); |
| 4926 | |
| 4927 | /* delete software timers */ |
| 4928 | if (!brcms_c_radio_monitor_stop(wlc)) |
| 4929 | callbacks++; |
| 4930 | |
| 4931 | brcms_c_channel_mgr_detach(wlc->cmi); |
| 4932 | |
| 4933 | brcms_c_timers_deinit(wlc); |
| 4934 | |
| 4935 | brcms_c_detach_module(wlc); |
| 4936 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4937 | brcms_c_detach_mfree(wlc); |
| 4938 | return callbacks; |
| 4939 | } |
| 4940 | |
| 4941 | /* update state that depends on the current value of "ap" */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 4942 | static void brcms_c_ap_upd(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4943 | { |
| 4944 | /* STA-BSS; short capable */ |
| 4945 | wlc->PLCPHdr_override = BRCMS_PLCP_SHORT; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4946 | } |
| 4947 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4948 | /* Initialize just the hardware when coming out of POR or S3/S5 system states */ |
| 4949 | static void brcms_b_hw_up(struct brcms_hardware *wlc_hw) |
| 4950 | { |
| 4951 | if (wlc_hw->wlc->pub->hw_up) |
| 4952 | return; |
| 4953 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4954 | brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4955 | |
| 4956 | /* |
| 4957 | * Enable pll and xtal, initialize the power control registers, |
| 4958 | * and force fastclock for the remainder of brcms_c_up(). |
| 4959 | */ |
| 4960 | brcms_b_xtal(wlc_hw, ON); |
| 4961 | ai_clkctl_init(wlc_hw->sih); |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 4962 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4963 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4964 | /* |
Arend van Spriel | 3b758a6 | 2011-12-12 15:15:09 -0800 | [diff] [blame] | 4965 | * TODO: test suspend/resume |
| 4966 | * |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4967 | * AI chip doesn't restore bar0win2 on |
| 4968 | * hibernation/resume, need sw fixup |
| 4969 | */ |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4970 | |
| 4971 | /* |
| 4972 | * Inform phy that a POR reset has occurred so |
| 4973 | * it does a complete phy init |
| 4974 | */ |
| 4975 | wlc_phy_por_inform(wlc_hw->band->pi); |
| 4976 | |
| 4977 | wlc_hw->ucode_loaded = false; |
| 4978 | wlc_hw->wlc->pub->hw_up = true; |
| 4979 | |
| 4980 | if ((wlc_hw->boardflags & BFL_FEM) |
Hauke Mehrtens | 1ef1a57 | 2012-06-30 15:16:13 +0200 | [diff] [blame] | 4981 | && (ai_get_chip_id(wlc_hw->sih) == BCMA_CHIP_ID_BCM4313)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4982 | if (! |
| 4983 | (wlc_hw->boardrev >= 0x1250 |
| 4984 | && (wlc_hw->boardflags & BFL_FEM_BT))) |
| 4985 | ai_epa_4313war(wlc_hw->sih); |
| 4986 | } |
| 4987 | } |
| 4988 | |
| 4989 | static int brcms_b_up_prep(struct brcms_hardware *wlc_hw) |
| 4990 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 4991 | brcms_dbg_info(wlc_hw->d11core, "wl%d\n", wlc_hw->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 4992 | |
| 4993 | /* |
| 4994 | * Enable pll and xtal, initialize the power control registers, |
| 4995 | * and force fastclock for the remainder of brcms_c_up(). |
| 4996 | */ |
| 4997 | brcms_b_xtal(wlc_hw, ON); |
| 4998 | ai_clkctl_init(wlc_hw->sih); |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 4999 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5000 | |
| 5001 | /* |
| 5002 | * Configure pci/pcmcia here instead of in brcms_c_attach() |
| 5003 | * to allow mfg hotswap: down, hotswap (chip power cycle), up. |
| 5004 | */ |
Hauke Mehrtens | dfae714 | 2012-09-29 20:40:18 +0200 | [diff] [blame] | 5005 | bcma_core_pci_irq_ctl(&wlc_hw->d11core->bus->drv_pci[0], wlc_hw->d11core, |
Hauke Mehrtens | b30ee75 | 2012-04-29 02:50:32 +0200 | [diff] [blame] | 5006 | true); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5007 | |
| 5008 | /* |
| 5009 | * Need to read the hwradio status here to cover the case where the |
| 5010 | * system is loaded with the hw radio disabled. We do not want to |
| 5011 | * bring the driver up in this case. |
| 5012 | */ |
| 5013 | if (brcms_b_radio_read_hwdisabled(wlc_hw)) { |
| 5014 | /* put SB PCI in down state again */ |
Hauke Mehrtens | aa51e59 | 2013-08-24 00:32:31 +0200 | [diff] [blame] | 5015 | bcma_core_pci_down(wlc_hw->d11core->bus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5016 | brcms_b_xtal(wlc_hw, OFF); |
| 5017 | return -ENOMEDIUM; |
| 5018 | } |
| 5019 | |
Hauke Mehrtens | aa51e59 | 2013-08-24 00:32:31 +0200 | [diff] [blame] | 5020 | bcma_core_pci_up(wlc_hw->d11core->bus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5021 | |
| 5022 | /* reset the d11 core */ |
| 5023 | brcms_b_corereset(wlc_hw, BRCMS_USE_COREFLAGS); |
| 5024 | |
| 5025 | return 0; |
| 5026 | } |
| 5027 | |
| 5028 | static int brcms_b_up_finish(struct brcms_hardware *wlc_hw) |
| 5029 | { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5030 | wlc_hw->up = true; |
| 5031 | wlc_phy_hw_state_upd(wlc_hw->band->pi, true); |
| 5032 | |
| 5033 | /* FULLY enable dynamic power control and d11 core interrupt */ |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 5034 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_DYNAMIC); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5035 | brcms_intrson(wlc_hw->wlc->wl); |
| 5036 | return 0; |
| 5037 | } |
| 5038 | |
| 5039 | /* |
| 5040 | * Write WME tunable parameters for retransmit/max rate |
| 5041 | * from wlc struct to ucode |
| 5042 | */ |
| 5043 | static void brcms_c_wme_retries_write(struct brcms_c_info *wlc) |
| 5044 | { |
| 5045 | int ac; |
| 5046 | |
| 5047 | /* Need clock to do this */ |
| 5048 | if (!wlc->clk) |
| 5049 | return; |
| 5050 | |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 5051 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5052 | brcms_b_write_shm(wlc->hw, M_AC_TXLMT_ADDR(ac), |
| 5053 | wlc->wme_retries[ac]); |
| 5054 | } |
| 5055 | |
| 5056 | /* make interface operational */ |
| 5057 | int brcms_c_up(struct brcms_c_info *wlc) |
| 5058 | { |
Seth Forshee | 9169129 | 2012-06-16 07:47:49 -0500 | [diff] [blame] | 5059 | struct ieee80211_channel *ch; |
| 5060 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5061 | brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5062 | |
| 5063 | /* HW is turned off so don't try to access it */ |
| 5064 | if (wlc->pub->hw_off || brcms_deviceremoved(wlc)) |
| 5065 | return -ENOMEDIUM; |
| 5066 | |
| 5067 | if (!wlc->pub->hw_up) { |
| 5068 | brcms_b_hw_up(wlc->hw); |
| 5069 | wlc->pub->hw_up = true; |
| 5070 | } |
| 5071 | |
| 5072 | if ((wlc->pub->boardflags & BFL_FEM) |
Hauke Mehrtens | 1ef1a57 | 2012-06-30 15:16:13 +0200 | [diff] [blame] | 5073 | && (ai_get_chip_id(wlc->hw->sih) == BCMA_CHIP_ID_BCM4313)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5074 | if (wlc->pub->boardrev >= 0x1250 |
| 5075 | && (wlc->pub->boardflags & BFL_FEM_BT)) |
| 5076 | brcms_b_mhf(wlc->hw, MHF5, MHF5_4313_GPIOCTRL, |
| 5077 | MHF5_4313_GPIOCTRL, BRCM_BAND_ALL); |
| 5078 | else |
| 5079 | brcms_b_mhf(wlc->hw, MHF4, MHF4_EXTPA_ENABLE, |
| 5080 | MHF4_EXTPA_ENABLE, BRCM_BAND_ALL); |
| 5081 | } |
| 5082 | |
| 5083 | /* |
| 5084 | * Need to read the hwradio status here to cover the case where the |
| 5085 | * system is loaded with the hw radio disabled. We do not want to bring |
| 5086 | * the driver up in this case. If radio is disabled, abort up, lower |
| 5087 | * power, start radio timer and return 0(for NDIS) don't call |
| 5088 | * radio_update to avoid looping brcms_c_up. |
| 5089 | * |
| 5090 | * brcms_b_up_prep() returns either 0 or -BCME_RADIOOFF only |
| 5091 | */ |
| 5092 | if (!wlc->pub->radio_disabled) { |
| 5093 | int status = brcms_b_up_prep(wlc->hw); |
| 5094 | if (status == -ENOMEDIUM) { |
| 5095 | if (!mboolisset |
| 5096 | (wlc->pub->radio_disabled, WL_RADIO_HW_DISABLE)) { |
| 5097 | struct brcms_bss_cfg *bsscfg = wlc->bsscfg; |
| 5098 | mboolset(wlc->pub->radio_disabled, |
| 5099 | WL_RADIO_HW_DISABLE); |
Hauke Mehrtens | 01996ea | 2013-03-24 01:45:53 +0100 | [diff] [blame] | 5100 | if (bsscfg->type == BRCMS_TYPE_STATION || |
| 5101 | bsscfg->type == BRCMS_TYPE_ADHOC) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5102 | brcms_err(wlc->hw->d11core, |
| 5103 | "wl%d: up: rfdisable -> " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5104 | "bsscfg_disable()\n", |
| 5105 | wlc->pub->unit); |
| 5106 | } |
| 5107 | } |
| 5108 | } |
| 5109 | |
| 5110 | if (wlc->pub->radio_disabled) { |
| 5111 | brcms_c_radio_monitor_start(wlc); |
| 5112 | return 0; |
| 5113 | } |
| 5114 | |
| 5115 | /* brcms_b_up_prep has done brcms_c_corereset(). so clk is on, set it */ |
| 5116 | wlc->clk = true; |
| 5117 | |
| 5118 | brcms_c_radio_monitor_stop(wlc); |
| 5119 | |
| 5120 | /* Set EDCF hostflags */ |
| 5121 | brcms_b_mhf(wlc->hw, MHF1, MHF1_EDCF, MHF1_EDCF, BRCM_BAND_ALL); |
| 5122 | |
| 5123 | brcms_init(wlc->wl); |
| 5124 | wlc->pub->up = true; |
| 5125 | |
| 5126 | if (wlc->bandinit_pending) { |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 5127 | ch = wlc->pub->ieee_hw->conf.chandef.chan; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5128 | brcms_c_suspend_mac_and_wait(wlc); |
Seth Forshee | 9169129 | 2012-06-16 07:47:49 -0500 | [diff] [blame] | 5129 | brcms_c_set_chanspec(wlc, ch20mhz_chspec(ch->hw_value)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5130 | wlc->bandinit_pending = false; |
| 5131 | brcms_c_enable_mac(wlc); |
| 5132 | } |
| 5133 | |
| 5134 | brcms_b_up_finish(wlc->hw); |
| 5135 | |
| 5136 | /* Program the TX wme params with the current settings */ |
| 5137 | brcms_c_wme_retries_write(wlc); |
| 5138 | |
| 5139 | /* start one second watchdog timer */ |
Roland Vossen | be69c4e | 2011-10-12 20:51:11 +0200 | [diff] [blame] | 5140 | brcms_add_timer(wlc->wdtimer, TIMER_INTERVAL_WATCHDOG, true); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5141 | wlc->WDarmed = true; |
| 5142 | |
| 5143 | /* ensure antenna config is up to date */ |
| 5144 | brcms_c_stf_phy_txant_upd(wlc); |
| 5145 | /* ensure LDPC config is in sync */ |
| 5146 | brcms_c_ht_update_ldpc(wlc, wlc->stf->ldpc); |
| 5147 | |
| 5148 | return 0; |
| 5149 | } |
| 5150 | |
| 5151 | static uint brcms_c_down_del_timer(struct brcms_c_info *wlc) |
| 5152 | { |
| 5153 | uint callbacks = 0; |
| 5154 | |
| 5155 | return callbacks; |
| 5156 | } |
| 5157 | |
| 5158 | static int brcms_b_bmac_down_prep(struct brcms_hardware *wlc_hw) |
| 5159 | { |
| 5160 | bool dev_gone; |
| 5161 | uint callbacks = 0; |
| 5162 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5163 | if (!wlc_hw->up) |
| 5164 | return callbacks; |
| 5165 | |
| 5166 | dev_gone = brcms_deviceremoved(wlc_hw->wlc); |
| 5167 | |
| 5168 | /* disable interrupts */ |
| 5169 | if (dev_gone) |
| 5170 | wlc_hw->wlc->macintmask = 0; |
| 5171 | else { |
| 5172 | /* now disable interrupts */ |
| 5173 | brcms_intrsoff(wlc_hw->wlc->wl); |
| 5174 | |
| 5175 | /* ensure we're running on the pll clock again */ |
Hauke Mehrtens | 712e3c1 | 2012-04-29 02:50:35 +0200 | [diff] [blame] | 5176 | brcms_b_clkctl_clk(wlc_hw, BCMA_CLKMODE_FAST); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5177 | } |
| 5178 | /* down phy at the last of this stage */ |
| 5179 | callbacks += wlc_phy_down(wlc_hw->band->pi); |
| 5180 | |
| 5181 | return callbacks; |
| 5182 | } |
| 5183 | |
| 5184 | static int brcms_b_down_finish(struct brcms_hardware *wlc_hw) |
| 5185 | { |
| 5186 | uint callbacks = 0; |
| 5187 | bool dev_gone; |
| 5188 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5189 | if (!wlc_hw->up) |
| 5190 | return callbacks; |
| 5191 | |
| 5192 | wlc_hw->up = false; |
| 5193 | wlc_phy_hw_state_upd(wlc_hw->band->pi, false); |
| 5194 | |
| 5195 | dev_gone = brcms_deviceremoved(wlc_hw->wlc); |
| 5196 | |
| 5197 | if (dev_gone) { |
| 5198 | wlc_hw->sbclk = false; |
| 5199 | wlc_hw->clk = false; |
| 5200 | wlc_phy_hw_clk_state_upd(wlc_hw->band->pi, false); |
| 5201 | |
| 5202 | /* reclaim any posted packets */ |
| 5203 | brcms_c_flushqueues(wlc_hw->wlc); |
| 5204 | } else { |
| 5205 | |
| 5206 | /* Reset and disable the core */ |
Arend van Spriel | a8779e4 | 2011-12-08 15:06:58 -0800 | [diff] [blame] | 5207 | if (bcma_core_is_enabled(wlc_hw->d11core)) { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 5208 | if (bcma_read32(wlc_hw->d11core, |
| 5209 | D11REGOFFS(maccontrol)) & MCTL_EN_MAC) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5210 | brcms_c_suspend_mac_and_wait(wlc_hw->wlc); |
| 5211 | callbacks += brcms_reset(wlc_hw->wlc->wl); |
| 5212 | brcms_c_coredisable(wlc_hw); |
| 5213 | } |
| 5214 | |
| 5215 | /* turn off primary xtal and pll */ |
| 5216 | if (!wlc_hw->noreset) { |
Hauke Mehrtens | aa51e59 | 2013-08-24 00:32:31 +0200 | [diff] [blame] | 5217 | bcma_core_pci_down(wlc_hw->d11core->bus); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5218 | brcms_b_xtal(wlc_hw, OFF); |
| 5219 | } |
| 5220 | } |
| 5221 | |
| 5222 | return callbacks; |
| 5223 | } |
| 5224 | |
| 5225 | /* |
| 5226 | * Mark the interface nonoperational, stop the software mechanisms, |
| 5227 | * disable the hardware, free any transient buffer state. |
| 5228 | * Return a count of the number of driver callbacks still pending. |
| 5229 | */ |
| 5230 | uint brcms_c_down(struct brcms_c_info *wlc) |
| 5231 | { |
| 5232 | |
| 5233 | uint callbacks = 0; |
| 5234 | int i; |
| 5235 | bool dev_gone = false; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5236 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5237 | brcms_dbg_info(wlc->hw->d11core, "wl%d\n", wlc->pub->unit); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5238 | |
| 5239 | /* check if we are already in the going down path */ |
| 5240 | if (wlc->going_down) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5241 | brcms_err(wlc->hw->d11core, |
| 5242 | "wl%d: %s: Driver going down so return\n", |
| 5243 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5244 | return 0; |
| 5245 | } |
| 5246 | if (!wlc->pub->up) |
| 5247 | return callbacks; |
| 5248 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5249 | wlc->going_down = true; |
| 5250 | |
| 5251 | callbacks += brcms_b_bmac_down_prep(wlc->hw); |
| 5252 | |
| 5253 | dev_gone = brcms_deviceremoved(wlc); |
| 5254 | |
| 5255 | /* Call any registered down handlers */ |
| 5256 | for (i = 0; i < BRCMS_MAXMODULES; i++) { |
| 5257 | if (wlc->modulecb[i].down_fn) |
| 5258 | callbacks += |
| 5259 | wlc->modulecb[i].down_fn(wlc->modulecb[i].hdl); |
| 5260 | } |
| 5261 | |
| 5262 | /* cancel the watchdog timer */ |
| 5263 | if (wlc->WDarmed) { |
Roland Vossen | be69c4e | 2011-10-12 20:51:11 +0200 | [diff] [blame] | 5264 | if (!brcms_del_timer(wlc->wdtimer)) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5265 | callbacks++; |
| 5266 | wlc->WDarmed = false; |
| 5267 | } |
| 5268 | /* cancel all other timers */ |
| 5269 | callbacks += brcms_c_down_del_timer(wlc); |
| 5270 | |
| 5271 | wlc->pub->up = false; |
| 5272 | |
| 5273 | wlc_phy_mute_upd(wlc->band->pi, false, PHY_MUTE_ALL); |
| 5274 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5275 | callbacks += brcms_b_down_finish(wlc->hw); |
| 5276 | |
| 5277 | /* brcms_b_down_finish has done brcms_c_coredisable(). so clk is off */ |
| 5278 | wlc->clk = false; |
| 5279 | |
| 5280 | wlc->going_down = false; |
| 5281 | return callbacks; |
| 5282 | } |
| 5283 | |
| 5284 | /* Set the current gmode configuration */ |
| 5285 | int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config) |
| 5286 | { |
| 5287 | int ret = 0; |
| 5288 | uint i; |
| 5289 | struct brcms_c_rateset rs; |
| 5290 | /* Default to 54g Auto */ |
| 5291 | /* Advertise and use shortslot (-1/0/1 Auto/Off/On) */ |
| 5292 | s8 shortslot = BRCMS_SHORTSLOT_AUTO; |
| 5293 | bool shortslot_restrict = false; /* Restrict association to stations |
| 5294 | * that support shortslot |
| 5295 | */ |
| 5296 | bool ofdm_basic = false; /* Make 6, 12, and 24 basic rates */ |
| 5297 | /* Advertise and use short preambles (-1/0/1 Auto/Off/On) */ |
| 5298 | int preamble = BRCMS_PLCP_LONG; |
| 5299 | bool preamble_restrict = false; /* Restrict association to stations |
| 5300 | * that support short preambles |
| 5301 | */ |
| 5302 | struct brcms_band *band; |
| 5303 | |
| 5304 | /* if N-support is enabled, allow Gmode set as long as requested |
| 5305 | * Gmode is not GMODE_LEGACY_B |
| 5306 | */ |
| 5307 | if ((wlc->pub->_n_enab & SUPPORT_11N) && gmode == GMODE_LEGACY_B) |
| 5308 | return -ENOTSUPP; |
| 5309 | |
| 5310 | /* verify that we are dealing with 2G band and grab the band pointer */ |
| 5311 | if (wlc->band->bandtype == BRCM_BAND_2G) |
| 5312 | band = wlc->band; |
| 5313 | else if ((wlc->pub->_nbands > 1) && |
| 5314 | (wlc->bandstate[OTHERBANDUNIT(wlc)]->bandtype == BRCM_BAND_2G)) |
| 5315 | band = wlc->bandstate[OTHERBANDUNIT(wlc)]; |
| 5316 | else |
| 5317 | return -EINVAL; |
| 5318 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5319 | /* update configuration value */ |
Joe Perches | 23677ce | 2012-02-09 11:17:23 +0000 | [diff] [blame] | 5320 | if (config) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5321 | brcms_c_protection_upd(wlc, BRCMS_PROT_G_USER, gmode); |
| 5322 | |
| 5323 | /* Clear rateset override */ |
Joe Perches | b56e681 | 2013-02-13 17:33:21 -0800 | [diff] [blame] | 5324 | memset(&rs, 0, sizeof(rs)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5325 | |
| 5326 | switch (gmode) { |
| 5327 | case GMODE_LEGACY_B: |
| 5328 | shortslot = BRCMS_SHORTSLOT_OFF; |
| 5329 | brcms_c_rateset_copy(&gphy_legacy_rates, &rs); |
| 5330 | |
| 5331 | break; |
| 5332 | |
| 5333 | case GMODE_LRS: |
| 5334 | break; |
| 5335 | |
| 5336 | case GMODE_AUTO: |
| 5337 | /* Accept defaults */ |
| 5338 | break; |
| 5339 | |
| 5340 | case GMODE_ONLY: |
| 5341 | ofdm_basic = true; |
| 5342 | preamble = BRCMS_PLCP_SHORT; |
| 5343 | preamble_restrict = true; |
| 5344 | break; |
| 5345 | |
| 5346 | case GMODE_PERFORMANCE: |
| 5347 | shortslot = BRCMS_SHORTSLOT_ON; |
| 5348 | shortslot_restrict = true; |
| 5349 | ofdm_basic = true; |
| 5350 | preamble = BRCMS_PLCP_SHORT; |
| 5351 | preamble_restrict = true; |
| 5352 | break; |
| 5353 | |
| 5354 | default: |
| 5355 | /* Error */ |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5356 | brcms_err(wlc->hw->d11core, "wl%d: %s: invalid gmode %d\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5357 | wlc->pub->unit, __func__, gmode); |
| 5358 | return -ENOTSUPP; |
| 5359 | } |
| 5360 | |
| 5361 | band->gmode = gmode; |
| 5362 | |
| 5363 | wlc->shortslot_override = shortslot; |
| 5364 | |
| 5365 | /* Use the default 11g rateset */ |
| 5366 | if (!rs.count) |
| 5367 | brcms_c_rateset_copy(&cck_ofdm_rates, &rs); |
| 5368 | |
| 5369 | if (ofdm_basic) { |
| 5370 | for (i = 0; i < rs.count; i++) { |
| 5371 | if (rs.rates[i] == BRCM_RATE_6M |
| 5372 | || rs.rates[i] == BRCM_RATE_12M |
| 5373 | || rs.rates[i] == BRCM_RATE_24M) |
| 5374 | rs.rates[i] |= BRCMS_RATE_FLAG; |
| 5375 | } |
| 5376 | } |
| 5377 | |
| 5378 | /* Set default bss rateset */ |
| 5379 | wlc->default_bss->rateset.count = rs.count; |
| 5380 | memcpy(wlc->default_bss->rateset.rates, rs.rates, |
| 5381 | sizeof(wlc->default_bss->rateset.rates)); |
| 5382 | |
| 5383 | return ret; |
| 5384 | } |
| 5385 | |
| 5386 | int brcms_c_set_nmode(struct brcms_c_info *wlc) |
| 5387 | { |
| 5388 | uint i; |
| 5389 | s32 nmode = AUTO; |
| 5390 | |
| 5391 | if (wlc->stf->txstreams == WL_11N_3x3) |
| 5392 | nmode = WL_11N_3x3; |
| 5393 | else |
| 5394 | nmode = WL_11N_2x2; |
| 5395 | |
| 5396 | /* force GMODE_AUTO if NMODE is ON */ |
| 5397 | brcms_c_set_gmode(wlc, GMODE_AUTO, true); |
| 5398 | if (nmode == WL_11N_3x3) |
| 5399 | wlc->pub->_n_enab = SUPPORT_HT; |
| 5400 | else |
| 5401 | wlc->pub->_n_enab = SUPPORT_11N; |
| 5402 | wlc->default_bss->flags |= BRCMS_BSS_HT; |
| 5403 | /* add the mcs rates to the default and hw ratesets */ |
| 5404 | brcms_c_rateset_mcs_build(&wlc->default_bss->rateset, |
| 5405 | wlc->stf->txstreams); |
| 5406 | for (i = 0; i < wlc->pub->_nbands; i++) |
| 5407 | memcpy(wlc->bandstate[i]->hw_rateset.mcs, |
| 5408 | wlc->default_bss->rateset.mcs, MCSSET_LEN); |
| 5409 | |
| 5410 | return 0; |
| 5411 | } |
| 5412 | |
| 5413 | static int |
| 5414 | brcms_c_set_internal_rateset(struct brcms_c_info *wlc, |
| 5415 | struct brcms_c_rateset *rs_arg) |
| 5416 | { |
| 5417 | struct brcms_c_rateset rs, new; |
| 5418 | uint bandunit; |
| 5419 | |
| 5420 | memcpy(&rs, rs_arg, sizeof(struct brcms_c_rateset)); |
| 5421 | |
| 5422 | /* check for bad count value */ |
| 5423 | if ((rs.count == 0) || (rs.count > BRCMS_NUMRATES)) |
| 5424 | return -EINVAL; |
| 5425 | |
| 5426 | /* try the current band */ |
| 5427 | bandunit = wlc->band->bandunit; |
| 5428 | memcpy(&new, &rs, sizeof(struct brcms_c_rateset)); |
| 5429 | if (brcms_c_rate_hwrs_filter_sort_validate |
| 5430 | (&new, &wlc->bandstate[bandunit]->hw_rateset, true, |
| 5431 | wlc->stf->txstreams)) |
| 5432 | goto good; |
| 5433 | |
| 5434 | /* try the other band */ |
| 5435 | if (brcms_is_mband_unlocked(wlc)) { |
| 5436 | bandunit = OTHERBANDUNIT(wlc); |
| 5437 | memcpy(&new, &rs, sizeof(struct brcms_c_rateset)); |
| 5438 | if (brcms_c_rate_hwrs_filter_sort_validate(&new, |
| 5439 | &wlc-> |
| 5440 | bandstate[bandunit]-> |
| 5441 | hw_rateset, true, |
| 5442 | wlc->stf->txstreams)) |
| 5443 | goto good; |
| 5444 | } |
| 5445 | |
| 5446 | return -EBADE; |
| 5447 | |
| 5448 | good: |
| 5449 | /* apply new rateset */ |
| 5450 | memcpy(&wlc->default_bss->rateset, &new, |
| 5451 | sizeof(struct brcms_c_rateset)); |
| 5452 | memcpy(&wlc->bandstate[bandunit]->defrateset, &new, |
| 5453 | sizeof(struct brcms_c_rateset)); |
| 5454 | return 0; |
| 5455 | } |
| 5456 | |
| 5457 | static void brcms_c_ofdm_rateset_war(struct brcms_c_info *wlc) |
| 5458 | { |
| 5459 | u8 r; |
| 5460 | bool war = false; |
| 5461 | |
Hauke Mehrtens | 6da3b6c | 2013-03-24 01:45:52 +0100 | [diff] [blame] | 5462 | if (wlc->pub->associated) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5463 | r = wlc->bsscfg->current_bss->rateset.rates[0]; |
| 5464 | else |
| 5465 | r = wlc->default_bss->rateset.rates[0]; |
| 5466 | |
| 5467 | wlc_phy_ofdm_rateset_war(wlc->band->pi, war); |
| 5468 | } |
| 5469 | |
| 5470 | int brcms_c_set_channel(struct brcms_c_info *wlc, u16 channel) |
| 5471 | { |
| 5472 | u16 chspec = ch20mhz_chspec(channel); |
| 5473 | |
| 5474 | if (channel < 0 || channel > MAXCHANNEL) |
| 5475 | return -EINVAL; |
| 5476 | |
| 5477 | if (!brcms_c_valid_chanspec_db(wlc->cmi, chspec)) |
| 5478 | return -EINVAL; |
| 5479 | |
| 5480 | |
| 5481 | if (!wlc->pub->up && brcms_is_mband_unlocked(wlc)) { |
| 5482 | if (wlc->band->bandunit != chspec_bandunit(chspec)) |
| 5483 | wlc->bandinit_pending = true; |
| 5484 | else |
| 5485 | wlc->bandinit_pending = false; |
| 5486 | } |
| 5487 | |
| 5488 | wlc->default_bss->chanspec = chspec; |
| 5489 | /* brcms_c_BSSinit() will sanitize the rateset before |
| 5490 | * using it.. */ |
| 5491 | if (wlc->pub->up && (wlc_phy_chanspec_get(wlc->band->pi) != chspec)) { |
| 5492 | brcms_c_set_home_chanspec(wlc, chspec); |
| 5493 | brcms_c_suspend_mac_and_wait(wlc); |
| 5494 | brcms_c_set_chanspec(wlc, chspec); |
| 5495 | brcms_c_enable_mac(wlc); |
| 5496 | } |
| 5497 | return 0; |
| 5498 | } |
| 5499 | |
| 5500 | int brcms_c_set_rate_limit(struct brcms_c_info *wlc, u16 srl, u16 lrl) |
| 5501 | { |
| 5502 | int ac; |
| 5503 | |
| 5504 | if (srl < 1 || srl > RETRY_SHORT_MAX || |
| 5505 | lrl < 1 || lrl > RETRY_SHORT_MAX) |
| 5506 | return -EINVAL; |
| 5507 | |
| 5508 | wlc->SRL = srl; |
| 5509 | wlc->LRL = lrl; |
| 5510 | |
| 5511 | brcms_b_retrylimit_upd(wlc->hw, wlc->SRL, wlc->LRL); |
| 5512 | |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 5513 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5514 | wlc->wme_retries[ac] = SFIELD(wlc->wme_retries[ac], |
| 5515 | EDCF_SHORT, wlc->SRL); |
| 5516 | wlc->wme_retries[ac] = SFIELD(wlc->wme_retries[ac], |
| 5517 | EDCF_LONG, wlc->LRL); |
| 5518 | } |
| 5519 | brcms_c_wme_retries_write(wlc); |
| 5520 | |
| 5521 | return 0; |
| 5522 | } |
| 5523 | |
| 5524 | void brcms_c_get_current_rateset(struct brcms_c_info *wlc, |
| 5525 | struct brcm_rateset *currs) |
| 5526 | { |
| 5527 | struct brcms_c_rateset *rs; |
| 5528 | |
| 5529 | if (wlc->pub->associated) |
| 5530 | rs = &wlc->bsscfg->current_bss->rateset; |
| 5531 | else |
| 5532 | rs = &wlc->default_bss->rateset; |
| 5533 | |
| 5534 | /* Copy only legacy rateset section */ |
| 5535 | currs->count = rs->count; |
| 5536 | memcpy(&currs->rates, &rs->rates, rs->count); |
| 5537 | } |
| 5538 | |
| 5539 | int brcms_c_set_rateset(struct brcms_c_info *wlc, struct brcm_rateset *rs) |
| 5540 | { |
| 5541 | struct brcms_c_rateset internal_rs; |
| 5542 | int bcmerror; |
| 5543 | |
| 5544 | if (rs->count > BRCMS_NUMRATES) |
| 5545 | return -ENOBUFS; |
| 5546 | |
Joe Perches | b56e681 | 2013-02-13 17:33:21 -0800 | [diff] [blame] | 5547 | memset(&internal_rs, 0, sizeof(internal_rs)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5548 | |
| 5549 | /* Copy only legacy rateset section */ |
| 5550 | internal_rs.count = rs->count; |
| 5551 | memcpy(&internal_rs.rates, &rs->rates, internal_rs.count); |
| 5552 | |
| 5553 | /* merge rateset coming in with the current mcsset */ |
| 5554 | if (wlc->pub->_n_enab & SUPPORT_11N) { |
| 5555 | struct brcms_bss_info *mcsset_bss; |
Hauke Mehrtens | 6da3b6c | 2013-03-24 01:45:52 +0100 | [diff] [blame] | 5556 | if (wlc->pub->associated) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5557 | mcsset_bss = wlc->bsscfg->current_bss; |
| 5558 | else |
| 5559 | mcsset_bss = wlc->default_bss; |
| 5560 | memcpy(internal_rs.mcs, &mcsset_bss->rateset.mcs[0], |
| 5561 | MCSSET_LEN); |
| 5562 | } |
| 5563 | |
| 5564 | bcmerror = brcms_c_set_internal_rateset(wlc, &internal_rs); |
| 5565 | if (!bcmerror) |
| 5566 | brcms_c_ofdm_rateset_war(wlc); |
| 5567 | |
| 5568 | return bcmerror; |
| 5569 | } |
| 5570 | |
Hauke Mehrtens | 39b2d36 | 2013-03-24 01:45:49 +0100 | [diff] [blame] | 5571 | static void brcms_c_time_lock(struct brcms_c_info *wlc) |
| 5572 | { |
| 5573 | bcma_set32(wlc->hw->d11core, D11REGOFFS(maccontrol), MCTL_TBTTHOLD); |
| 5574 | /* Commit the write */ |
| 5575 | bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol)); |
| 5576 | } |
| 5577 | |
| 5578 | static void brcms_c_time_unlock(struct brcms_c_info *wlc) |
| 5579 | { |
| 5580 | bcma_mask32(wlc->hw->d11core, D11REGOFFS(maccontrol), ~MCTL_TBTTHOLD); |
| 5581 | /* Commit the write */ |
| 5582 | bcma_read32(wlc->hw->d11core, D11REGOFFS(maccontrol)); |
| 5583 | } |
| 5584 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5585 | int brcms_c_set_beacon_period(struct brcms_c_info *wlc, u16 period) |
| 5586 | { |
Hauke Mehrtens | ee9794f | 2013-03-24 01:45:57 +0100 | [diff] [blame] | 5587 | u32 bcnint_us; |
| 5588 | |
Tim Gardner | 708eb54 | 2013-02-07 12:35:35 -0700 | [diff] [blame] | 5589 | if (period == 0) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5590 | return -EINVAL; |
| 5591 | |
| 5592 | wlc->default_bss->beacon_period = period; |
Hauke Mehrtens | ee9794f | 2013-03-24 01:45:57 +0100 | [diff] [blame] | 5593 | |
| 5594 | bcnint_us = period << 10; |
| 5595 | brcms_c_time_lock(wlc); |
| 5596 | bcma_write32(wlc->hw->d11core, D11REGOFFS(tsf_cfprep), |
| 5597 | (bcnint_us << CFPREP_CBI_SHIFT)); |
| 5598 | bcma_write32(wlc->hw->d11core, D11REGOFFS(tsf_cfpstart), bcnint_us); |
| 5599 | brcms_c_time_unlock(wlc); |
| 5600 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5601 | return 0; |
| 5602 | } |
| 5603 | |
| 5604 | u16 brcms_c_get_phy_type(struct brcms_c_info *wlc, int phyidx) |
| 5605 | { |
| 5606 | return wlc->band->phytype; |
| 5607 | } |
| 5608 | |
| 5609 | void brcms_c_set_shortslot_override(struct brcms_c_info *wlc, s8 sslot_override) |
| 5610 | { |
| 5611 | wlc->shortslot_override = sslot_override; |
| 5612 | |
| 5613 | /* |
| 5614 | * shortslot is an 11g feature, so no more work if we are |
| 5615 | * currently on the 5G band |
| 5616 | */ |
| 5617 | if (wlc->band->bandtype == BRCM_BAND_5G) |
| 5618 | return; |
| 5619 | |
| 5620 | if (wlc->pub->up && wlc->pub->associated) { |
| 5621 | /* let watchdog or beacon processing update shortslot */ |
| 5622 | } else if (wlc->pub->up) { |
| 5623 | /* unassociated shortslot is off */ |
| 5624 | brcms_c_switch_shortslot(wlc, false); |
| 5625 | } else { |
| 5626 | /* driver is down, so just update the brcms_c_info |
| 5627 | * value */ |
| 5628 | if (wlc->shortslot_override == BRCMS_SHORTSLOT_AUTO) |
| 5629 | wlc->shortslot = false; |
| 5630 | else |
| 5631 | wlc->shortslot = |
| 5632 | (wlc->shortslot_override == |
| 5633 | BRCMS_SHORTSLOT_ON); |
| 5634 | } |
| 5635 | } |
| 5636 | |
| 5637 | /* |
| 5638 | * register watchdog and down handlers. |
| 5639 | */ |
| 5640 | int brcms_c_module_register(struct brcms_pub *pub, |
| 5641 | const char *name, struct brcms_info *hdl, |
| 5642 | int (*d_fn)(void *handle)) |
| 5643 | { |
| 5644 | struct brcms_c_info *wlc = (struct brcms_c_info *) pub->wlc; |
| 5645 | int i; |
| 5646 | |
| 5647 | /* find an empty entry and just add, no duplication check! */ |
| 5648 | for (i = 0; i < BRCMS_MAXMODULES; i++) { |
| 5649 | if (wlc->modulecb[i].name[0] == '\0') { |
| 5650 | strncpy(wlc->modulecb[i].name, name, |
| 5651 | sizeof(wlc->modulecb[i].name) - 1); |
| 5652 | wlc->modulecb[i].hdl = hdl; |
| 5653 | wlc->modulecb[i].down_fn = d_fn; |
| 5654 | return 0; |
| 5655 | } |
| 5656 | } |
| 5657 | |
| 5658 | return -ENOSR; |
| 5659 | } |
| 5660 | |
| 5661 | /* unregister module callbacks */ |
| 5662 | int brcms_c_module_unregister(struct brcms_pub *pub, const char *name, |
| 5663 | struct brcms_info *hdl) |
| 5664 | { |
| 5665 | struct brcms_c_info *wlc = (struct brcms_c_info *) pub->wlc; |
| 5666 | int i; |
| 5667 | |
| 5668 | if (wlc == NULL) |
| 5669 | return -ENODATA; |
| 5670 | |
| 5671 | for (i = 0; i < BRCMS_MAXMODULES; i++) { |
| 5672 | if (!strcmp(wlc->modulecb[i].name, name) && |
| 5673 | (wlc->modulecb[i].hdl == hdl)) { |
Joe Perches | b56e681 | 2013-02-13 17:33:21 -0800 | [diff] [blame] | 5674 | memset(&wlc->modulecb[i], 0, sizeof(wlc->modulecb[i])); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5675 | return 0; |
| 5676 | } |
| 5677 | } |
| 5678 | |
| 5679 | /* table not found! */ |
| 5680 | return -ENODATA; |
| 5681 | } |
| 5682 | |
Hauke Mehrtens | cacaa64 | 2012-06-30 15:16:19 +0200 | [diff] [blame] | 5683 | static bool brcms_c_chipmatch_pci(struct bcma_device *core) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5684 | { |
Hauke Mehrtens | cacaa64 | 2012-06-30 15:16:19 +0200 | [diff] [blame] | 5685 | struct pci_dev *pcidev = core->bus->host_pci; |
| 5686 | u16 vendor = pcidev->vendor; |
| 5687 | u16 device = pcidev->device; |
| 5688 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5689 | if (vendor != PCI_VENDOR_ID_BROADCOM) { |
Joe Perches | 02f7719 | 2012-01-15 00:38:44 -0800 | [diff] [blame] | 5690 | pr_err("unknown vendor id %04x\n", vendor); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5691 | return false; |
| 5692 | } |
| 5693 | |
Hauke Mehrtens | 9dd4ea5 | 2012-12-07 17:10:03 +0100 | [diff] [blame] | 5694 | if (device == BCM43224_D11N_ID_VEN1 || device == BCM43224_CHIP_ID) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5695 | return true; |
| 5696 | if ((device == BCM43224_D11N_ID) || (device == BCM43225_D11N2G_ID)) |
| 5697 | return true; |
| 5698 | if (device == BCM4313_D11N2G_ID) |
| 5699 | return true; |
| 5700 | if ((device == BCM43236_D11N_ID) || (device == BCM43236_D11N2G_ID)) |
| 5701 | return true; |
| 5702 | |
Joe Perches | 02f7719 | 2012-01-15 00:38:44 -0800 | [diff] [blame] | 5703 | pr_err("unknown device id %04x\n", device); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5704 | return false; |
| 5705 | } |
| 5706 | |
Hauke Mehrtens | cacaa64 | 2012-06-30 15:16:19 +0200 | [diff] [blame] | 5707 | static bool brcms_c_chipmatch_soc(struct bcma_device *core) |
| 5708 | { |
| 5709 | struct bcma_chipinfo *chipinfo = &core->bus->chipinfo; |
| 5710 | |
| 5711 | if (chipinfo->id == BCMA_CHIP_ID_BCM4716) |
| 5712 | return true; |
| 5713 | |
| 5714 | pr_err("unknown chip id %04x\n", chipinfo->id); |
| 5715 | return false; |
| 5716 | } |
| 5717 | |
| 5718 | bool brcms_c_chipmatch(struct bcma_device *core) |
| 5719 | { |
| 5720 | switch (core->bus->hosttype) { |
| 5721 | case BCMA_HOSTTYPE_PCI: |
| 5722 | return brcms_c_chipmatch_pci(core); |
| 5723 | case BCMA_HOSTTYPE_SOC: |
| 5724 | return brcms_c_chipmatch_soc(core); |
| 5725 | default: |
| 5726 | pr_err("unknown host type: %i\n", core->bus->hosttype); |
| 5727 | return false; |
| 5728 | } |
| 5729 | } |
| 5730 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5731 | u16 brcms_b_rate_shm_offset(struct brcms_hardware *wlc_hw, u8 rate) |
| 5732 | { |
| 5733 | u16 table_ptr; |
| 5734 | u8 phy_rate, index; |
| 5735 | |
| 5736 | /* get the phy specific rate encoding for the PLCP SIGNAL field */ |
| 5737 | if (is_ofdm_rate(rate)) |
| 5738 | table_ptr = M_RT_DIRMAP_A; |
| 5739 | else |
| 5740 | table_ptr = M_RT_DIRMAP_B; |
| 5741 | |
| 5742 | /* for a given rate, the LS-nibble of the PLCP SIGNAL field is |
| 5743 | * the index into the rate table. |
| 5744 | */ |
| 5745 | phy_rate = rate_info[rate] & BRCMS_RATE_MASK; |
| 5746 | index = phy_rate & 0xf; |
| 5747 | |
| 5748 | /* Find the SHM pointer to the rate table entry by looking in the |
| 5749 | * Direct-map Table |
| 5750 | */ |
| 5751 | return 2 * brcms_b_read_shm(wlc_hw, table_ptr + (index * 2)); |
| 5752 | } |
| 5753 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5754 | /* |
| 5755 | * bcmc_fid_generate: |
| 5756 | * Generate frame ID for a BCMC packet. The frag field is not used |
| 5757 | * for MC frames so is used as part of the sequence number. |
| 5758 | */ |
| 5759 | static inline u16 |
| 5760 | bcmc_fid_generate(struct brcms_c_info *wlc, struct brcms_bss_cfg *bsscfg, |
| 5761 | struct d11txh *txh) |
| 5762 | { |
| 5763 | u16 frameid; |
| 5764 | |
| 5765 | frameid = le16_to_cpu(txh->TxFrameID) & ~(TXFID_SEQ_MASK | |
| 5766 | TXFID_QUEUE_MASK); |
| 5767 | frameid |= |
| 5768 | (((wlc-> |
| 5769 | mc_fid_counter++) << TXFID_SEQ_SHIFT) & TXFID_SEQ_MASK) | |
| 5770 | TX_BCMC_FIFO; |
| 5771 | |
| 5772 | return frameid; |
| 5773 | } |
| 5774 | |
| 5775 | static uint |
| 5776 | brcms_c_calc_ack_time(struct brcms_c_info *wlc, u32 rspec, |
| 5777 | u8 preamble_type) |
| 5778 | { |
| 5779 | uint dur = 0; |
| 5780 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5781 | /* |
| 5782 | * Spec 9.6: ack rate is the highest rate in BSSBasicRateSet that |
| 5783 | * is less than or equal to the rate of the immediately previous |
| 5784 | * frame in the FES |
| 5785 | */ |
| 5786 | rspec = brcms_basic_rate(wlc, rspec); |
| 5787 | /* ACK frame len == 14 == 2(fc) + 2(dur) + 6(ra) + 4(fcs) */ |
| 5788 | dur = |
| 5789 | brcms_c_calc_frame_time(wlc, rspec, preamble_type, |
| 5790 | (DOT11_ACK_LEN + FCS_LEN)); |
| 5791 | return dur; |
| 5792 | } |
| 5793 | |
| 5794 | static uint |
| 5795 | brcms_c_calc_cts_time(struct brcms_c_info *wlc, u32 rspec, |
| 5796 | u8 preamble_type) |
| 5797 | { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5798 | return brcms_c_calc_ack_time(wlc, rspec, preamble_type); |
| 5799 | } |
| 5800 | |
| 5801 | static uint |
| 5802 | brcms_c_calc_ba_time(struct brcms_c_info *wlc, u32 rspec, |
| 5803 | u8 preamble_type) |
| 5804 | { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5805 | /* |
| 5806 | * Spec 9.6: ack rate is the highest rate in BSSBasicRateSet that |
| 5807 | * is less than or equal to the rate of the immediately previous |
| 5808 | * frame in the FES |
| 5809 | */ |
| 5810 | rspec = brcms_basic_rate(wlc, rspec); |
| 5811 | /* BA len == 32 == 16(ctl hdr) + 4(ba len) + 8(bitmap) + 4(fcs) */ |
| 5812 | return brcms_c_calc_frame_time(wlc, rspec, preamble_type, |
| 5813 | (DOT11_BA_LEN + DOT11_BA_BITMAP_LEN + |
| 5814 | FCS_LEN)); |
| 5815 | } |
| 5816 | |
| 5817 | /* brcms_c_compute_frame_dur() |
| 5818 | * |
| 5819 | * Calculate the 802.11 MAC header DUR field for MPDU |
| 5820 | * DUR for a single frame = 1 SIFS + 1 ACK |
| 5821 | * DUR for a frame with following frags = 3 SIFS + 2 ACK + next frag time |
| 5822 | * |
| 5823 | * rate MPDU rate in unit of 500kbps |
| 5824 | * next_frag_len next MPDU length in bytes |
| 5825 | * preamble_type use short/GF or long/MM PLCP header |
| 5826 | */ |
| 5827 | static u16 |
| 5828 | brcms_c_compute_frame_dur(struct brcms_c_info *wlc, u32 rate, |
| 5829 | u8 preamble_type, uint next_frag_len) |
| 5830 | { |
| 5831 | u16 dur, sifs; |
| 5832 | |
| 5833 | sifs = get_sifs(wlc->band); |
| 5834 | |
| 5835 | dur = sifs; |
| 5836 | dur += (u16) brcms_c_calc_ack_time(wlc, rate, preamble_type); |
| 5837 | |
| 5838 | if (next_frag_len) { |
| 5839 | /* Double the current DUR to get 2 SIFS + 2 ACKs */ |
| 5840 | dur *= 2; |
| 5841 | /* add another SIFS and the frag time */ |
| 5842 | dur += sifs; |
| 5843 | dur += |
| 5844 | (u16) brcms_c_calc_frame_time(wlc, rate, preamble_type, |
| 5845 | next_frag_len); |
| 5846 | } |
| 5847 | return dur; |
| 5848 | } |
| 5849 | |
| 5850 | /* The opposite of brcms_c_calc_frame_time */ |
| 5851 | static uint |
| 5852 | brcms_c_calc_frame_len(struct brcms_c_info *wlc, u32 ratespec, |
| 5853 | u8 preamble_type, uint dur) |
| 5854 | { |
| 5855 | uint nsyms, mac_len, Ndps, kNdps; |
| 5856 | uint rate = rspec2rate(ratespec); |
| 5857 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5858 | if (is_mcs_rate(ratespec)) { |
| 5859 | uint mcs = ratespec & RSPEC_RATE_MASK; |
| 5860 | int tot_streams = mcs_2_txstreams(mcs) + rspec_stc(ratespec); |
| 5861 | dur -= PREN_PREAMBLE + (tot_streams * PREN_PREAMBLE_EXT); |
| 5862 | /* payload calculation matches that of regular ofdm */ |
| 5863 | if (wlc->band->bandtype == BRCM_BAND_2G) |
| 5864 | dur -= DOT11_OFDM_SIGNAL_EXTENSION; |
| 5865 | /* kNdbps = kbps * 4 */ |
| 5866 | kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec), |
| 5867 | rspec_issgi(ratespec)) * 4; |
| 5868 | nsyms = dur / APHY_SYMBOL_TIME; |
| 5869 | mac_len = |
| 5870 | ((nsyms * kNdps) - |
| 5871 | ((APHY_SERVICE_NBITS + APHY_TAIL_NBITS) * 1000)) / 8000; |
| 5872 | } else if (is_ofdm_rate(ratespec)) { |
| 5873 | dur -= APHY_PREAMBLE_TIME; |
| 5874 | dur -= APHY_SIGNAL_TIME; |
| 5875 | /* Ndbps = Mbps * 4 = rate(500Kbps) * 2 */ |
| 5876 | Ndps = rate * 2; |
| 5877 | nsyms = dur / APHY_SYMBOL_TIME; |
| 5878 | mac_len = |
| 5879 | ((nsyms * Ndps) - |
| 5880 | (APHY_SERVICE_NBITS + APHY_TAIL_NBITS)) / 8; |
| 5881 | } else { |
| 5882 | if (preamble_type & BRCMS_SHORT_PREAMBLE) |
| 5883 | dur -= BPHY_PLCP_SHORT_TIME; |
| 5884 | else |
| 5885 | dur -= BPHY_PLCP_TIME; |
| 5886 | mac_len = dur * rate; |
| 5887 | /* divide out factor of 2 in rate (1/2 mbps) */ |
| 5888 | mac_len = mac_len / 8 / 2; |
| 5889 | } |
| 5890 | return mac_len; |
| 5891 | } |
| 5892 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 5893 | /* |
| 5894 | * Return true if the specified rate is supported by the specified band. |
| 5895 | * BRCM_BAND_AUTO indicates the current band. |
| 5896 | */ |
| 5897 | static bool brcms_c_valid_rate(struct brcms_c_info *wlc, u32 rspec, int band, |
| 5898 | bool verbose) |
| 5899 | { |
| 5900 | struct brcms_c_rateset *hw_rateset; |
| 5901 | uint i; |
| 5902 | |
| 5903 | if ((band == BRCM_BAND_AUTO) || (band == wlc->band->bandtype)) |
| 5904 | hw_rateset = &wlc->band->hw_rateset; |
| 5905 | else if (wlc->pub->_nbands > 1) |
| 5906 | hw_rateset = &wlc->bandstate[OTHERBANDUNIT(wlc)]->hw_rateset; |
| 5907 | else |
| 5908 | /* other band specified and we are a single band device */ |
| 5909 | return false; |
| 5910 | |
| 5911 | /* check if this is a mimo rate */ |
| 5912 | if (is_mcs_rate(rspec)) { |
| 5913 | if ((rspec & RSPEC_RATE_MASK) >= MCS_TABLE_SIZE) |
| 5914 | goto error; |
| 5915 | |
| 5916 | return isset(hw_rateset->mcs, (rspec & RSPEC_RATE_MASK)); |
| 5917 | } |
| 5918 | |
| 5919 | for (i = 0; i < hw_rateset->count; i++) |
| 5920 | if (hw_rateset->rates[i] == rspec2rate(rspec)) |
| 5921 | return true; |
| 5922 | error: |
| 5923 | if (verbose) |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5924 | brcms_err(wlc->hw->d11core, "wl%d: valid_rate: rate spec 0x%x " |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 5925 | "not in hw_rateset\n", wlc->pub->unit, rspec); |
| 5926 | |
| 5927 | return false; |
| 5928 | } |
| 5929 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5930 | static u32 |
| 5931 | mac80211_wlc_set_nrate(struct brcms_c_info *wlc, struct brcms_band *cur_band, |
| 5932 | u32 int_val) |
| 5933 | { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5934 | struct bcma_device *core = wlc->hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5935 | u8 stf = (int_val & NRATE_STF_MASK) >> NRATE_STF_SHIFT; |
| 5936 | u8 rate = int_val & NRATE_RATE_MASK; |
| 5937 | u32 rspec; |
| 5938 | bool ismcs = ((int_val & NRATE_MCS_INUSE) == NRATE_MCS_INUSE); |
| 5939 | bool issgi = ((int_val & NRATE_SGI_MASK) >> NRATE_SGI_SHIFT); |
| 5940 | bool override_mcs_only = ((int_val & NRATE_OVERRIDE_MCS_ONLY) |
| 5941 | == NRATE_OVERRIDE_MCS_ONLY); |
| 5942 | int bcmerror = 0; |
| 5943 | |
| 5944 | if (!ismcs) |
| 5945 | return (u32) rate; |
| 5946 | |
| 5947 | /* validate the combination of rate/mcs/stf is allowed */ |
| 5948 | if ((wlc->pub->_n_enab & SUPPORT_11N) && ismcs) { |
| 5949 | /* mcs only allowed when nmode */ |
| 5950 | if (stf > PHY_TXC1_MODE_SDM) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5951 | brcms_err(core, "wl%d: %s: Invalid stf\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5952 | wlc->pub->unit, __func__); |
| 5953 | bcmerror = -EINVAL; |
| 5954 | goto done; |
| 5955 | } |
| 5956 | |
| 5957 | /* mcs 32 is a special case, DUP mode 40 only */ |
| 5958 | if (rate == 32) { |
| 5959 | if (!CHSPEC_IS40(wlc->home_chanspec) || |
| 5960 | ((stf != PHY_TXC1_MODE_SISO) |
| 5961 | && (stf != PHY_TXC1_MODE_CDD))) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5962 | brcms_err(core, "wl%d: %s: Invalid mcs 32\n", |
| 5963 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5964 | bcmerror = -EINVAL; |
| 5965 | goto done; |
| 5966 | } |
| 5967 | /* mcs > 7 must use stf SDM */ |
| 5968 | } else if (rate > HIGHEST_SINGLE_STREAM_MCS) { |
| 5969 | /* mcs > 7 must use stf SDM */ |
| 5970 | if (stf != PHY_TXC1_MODE_SDM) { |
Seth Forshee | 913911f | 2012-11-15 08:08:04 -0600 | [diff] [blame] | 5971 | brcms_dbg_mac80211(core, "wl%d: enabling " |
| 5972 | "SDM mode for mcs %d\n", |
| 5973 | wlc->pub->unit, rate); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5974 | stf = PHY_TXC1_MODE_SDM; |
| 5975 | } |
| 5976 | } else { |
| 5977 | /* |
| 5978 | * MCS 0-7 may use SISO, CDD, and for |
| 5979 | * phy_rev >= 3 STBC |
| 5980 | */ |
| 5981 | if ((stf > PHY_TXC1_MODE_STBC) || |
| 5982 | (!BRCMS_STBC_CAP_PHY(wlc) |
| 5983 | && (stf == PHY_TXC1_MODE_STBC))) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5984 | brcms_err(core, "wl%d: %s: Invalid STBC\n", |
| 5985 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5986 | bcmerror = -EINVAL; |
| 5987 | goto done; |
| 5988 | } |
| 5989 | } |
| 5990 | } else if (is_ofdm_rate(rate)) { |
| 5991 | if ((stf != PHY_TXC1_MODE_CDD) && (stf != PHY_TXC1_MODE_SISO)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 5992 | brcms_err(core, "wl%d: %s: Invalid OFDM\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 5993 | wlc->pub->unit, __func__); |
| 5994 | bcmerror = -EINVAL; |
| 5995 | goto done; |
| 5996 | } |
| 5997 | } else if (is_cck_rate(rate)) { |
| 5998 | if ((cur_band->bandtype != BRCM_BAND_2G) |
| 5999 | || (stf != PHY_TXC1_MODE_SISO)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6000 | brcms_err(core, "wl%d: %s: Invalid CCK\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6001 | wlc->pub->unit, __func__); |
| 6002 | bcmerror = -EINVAL; |
| 6003 | goto done; |
| 6004 | } |
| 6005 | } else { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6006 | brcms_err(core, "wl%d: %s: Unknown rate type\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6007 | wlc->pub->unit, __func__); |
| 6008 | bcmerror = -EINVAL; |
| 6009 | goto done; |
| 6010 | } |
| 6011 | /* make sure multiple antennae are available for non-siso rates */ |
| 6012 | if ((stf != PHY_TXC1_MODE_SISO) && (wlc->stf->txstreams == 1)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6013 | brcms_err(core, "wl%d: %s: SISO antenna but !SISO " |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6014 | "request\n", wlc->pub->unit, __func__); |
| 6015 | bcmerror = -EINVAL; |
| 6016 | goto done; |
| 6017 | } |
| 6018 | |
| 6019 | rspec = rate; |
| 6020 | if (ismcs) { |
| 6021 | rspec |= RSPEC_MIMORATE; |
| 6022 | /* For STBC populate the STC field of the ratespec */ |
| 6023 | if (stf == PHY_TXC1_MODE_STBC) { |
| 6024 | u8 stc; |
| 6025 | stc = 1; /* Nss for single stream is always 1 */ |
| 6026 | rspec |= (stc << RSPEC_STC_SHIFT); |
| 6027 | } |
| 6028 | } |
| 6029 | |
| 6030 | rspec |= (stf << RSPEC_STF_SHIFT); |
| 6031 | |
| 6032 | if (override_mcs_only) |
| 6033 | rspec |= RSPEC_OVERRIDE_MCS_ONLY; |
| 6034 | |
| 6035 | if (issgi) |
| 6036 | rspec |= RSPEC_SHORT_GI; |
| 6037 | |
| 6038 | if ((rate != 0) |
| 6039 | && !brcms_c_valid_rate(wlc, rspec, cur_band->bandtype, true)) |
| 6040 | return rate; |
| 6041 | |
| 6042 | return rspec; |
| 6043 | done: |
| 6044 | return rate; |
| 6045 | } |
| 6046 | |
| 6047 | /* |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 6048 | * Compute PLCP, but only requires actual rate and length of pkt. |
| 6049 | * Rate is given in the driver standard multiple of 500 kbps. |
| 6050 | * le is set for 11 Mbps rate if necessary. |
| 6051 | * Broken out for PRQ. |
| 6052 | */ |
| 6053 | |
| 6054 | static void brcms_c_cck_plcp_set(struct brcms_c_info *wlc, int rate_500, |
| 6055 | uint length, u8 *plcp) |
| 6056 | { |
| 6057 | u16 usec = 0; |
| 6058 | u8 le = 0; |
| 6059 | |
| 6060 | switch (rate_500) { |
| 6061 | case BRCM_RATE_1M: |
| 6062 | usec = length << 3; |
| 6063 | break; |
| 6064 | case BRCM_RATE_2M: |
| 6065 | usec = length << 2; |
| 6066 | break; |
| 6067 | case BRCM_RATE_5M5: |
| 6068 | usec = (length << 4) / 11; |
| 6069 | if ((length << 4) - (usec * 11) > 0) |
| 6070 | usec++; |
| 6071 | break; |
| 6072 | case BRCM_RATE_11M: |
| 6073 | usec = (length << 3) / 11; |
| 6074 | if ((length << 3) - (usec * 11) > 0) { |
| 6075 | usec++; |
| 6076 | if ((usec * 11) - (length << 3) >= 8) |
| 6077 | le = D11B_PLCP_SIGNAL_LE; |
| 6078 | } |
| 6079 | break; |
| 6080 | |
| 6081 | default: |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6082 | brcms_err(wlc->hw->d11core, |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 6083 | "brcms_c_cck_plcp_set: unsupported rate %d\n", |
| 6084 | rate_500); |
| 6085 | rate_500 = BRCM_RATE_1M; |
| 6086 | usec = length << 3; |
| 6087 | break; |
| 6088 | } |
| 6089 | /* PLCP signal byte */ |
| 6090 | plcp[0] = rate_500 * 5; /* r (500kbps) * 5 == r (100kbps) */ |
| 6091 | /* PLCP service byte */ |
| 6092 | plcp[1] = (u8) (le | D11B_PLCP_SIGNAL_LOCKED); |
| 6093 | /* PLCP length u16, little endian */ |
| 6094 | plcp[2] = usec & 0xff; |
| 6095 | plcp[3] = (usec >> 8) & 0xff; |
| 6096 | /* PLCP CRC16 */ |
| 6097 | plcp[4] = 0; |
| 6098 | plcp[5] = 0; |
| 6099 | } |
| 6100 | |
| 6101 | /* Rate: 802.11 rate code, length: PSDU length in octets */ |
| 6102 | static void brcms_c_compute_mimo_plcp(u32 rspec, uint length, u8 *plcp) |
| 6103 | { |
| 6104 | u8 mcs = (u8) (rspec & RSPEC_RATE_MASK); |
| 6105 | plcp[0] = mcs; |
| 6106 | if (rspec_is40mhz(rspec) || (mcs == 32)) |
| 6107 | plcp[0] |= MIMO_PLCP_40MHZ; |
| 6108 | BRCMS_SET_MIMO_PLCP_LEN(plcp, length); |
| 6109 | plcp[3] = rspec_mimoplcp3(rspec); /* rspec already holds this byte */ |
| 6110 | plcp[3] |= 0x7; /* set smoothing, not sounding ppdu & reserved */ |
| 6111 | plcp[4] = 0; /* number of extension spatial streams bit 0 & 1 */ |
| 6112 | plcp[5] = 0; |
| 6113 | } |
| 6114 | |
| 6115 | /* Rate: 802.11 rate code, length: PSDU length in octets */ |
| 6116 | static void |
| 6117 | brcms_c_compute_ofdm_plcp(u32 rspec, u32 length, u8 *plcp) |
| 6118 | { |
| 6119 | u8 rate_signal; |
| 6120 | u32 tmp = 0; |
| 6121 | int rate = rspec2rate(rspec); |
| 6122 | |
| 6123 | /* |
| 6124 | * encode rate per 802.11a-1999 sec 17.3.4.1, with lsb |
| 6125 | * transmitted first |
| 6126 | */ |
| 6127 | rate_signal = rate_info[rate] & BRCMS_RATE_MASK; |
| 6128 | memset(plcp, 0, D11_PHY_HDR_LEN); |
| 6129 | D11A_PHY_HDR_SRATE((struct ofdm_phy_hdr *) plcp, rate_signal); |
| 6130 | |
| 6131 | tmp = (length & 0xfff) << 5; |
| 6132 | plcp[2] |= (tmp >> 16) & 0xff; |
| 6133 | plcp[1] |= (tmp >> 8) & 0xff; |
| 6134 | plcp[0] |= tmp & 0xff; |
| 6135 | } |
| 6136 | |
| 6137 | /* Rate: 802.11 rate code, length: PSDU length in octets */ |
| 6138 | static void brcms_c_compute_cck_plcp(struct brcms_c_info *wlc, u32 rspec, |
| 6139 | uint length, u8 *plcp) |
| 6140 | { |
| 6141 | int rate = rspec2rate(rspec); |
| 6142 | |
| 6143 | brcms_c_cck_plcp_set(wlc, rate, length, plcp); |
| 6144 | } |
| 6145 | |
| 6146 | static void |
| 6147 | brcms_c_compute_plcp(struct brcms_c_info *wlc, u32 rspec, |
| 6148 | uint length, u8 *plcp) |
| 6149 | { |
| 6150 | if (is_mcs_rate(rspec)) |
| 6151 | brcms_c_compute_mimo_plcp(rspec, length, plcp); |
| 6152 | else if (is_ofdm_rate(rspec)) |
| 6153 | brcms_c_compute_ofdm_plcp(rspec, length, plcp); |
| 6154 | else |
| 6155 | brcms_c_compute_cck_plcp(wlc, rspec, length, plcp); |
| 6156 | } |
| 6157 | |
| 6158 | /* brcms_c_compute_rtscts_dur() |
| 6159 | * |
| 6160 | * Calculate the 802.11 MAC header DUR field for an RTS or CTS frame |
| 6161 | * DUR for normal RTS/CTS w/ frame = 3 SIFS + 1 CTS + next frame time + 1 ACK |
| 6162 | * DUR for CTS-TO-SELF w/ frame = 2 SIFS + next frame time + 1 ACK |
| 6163 | * |
| 6164 | * cts cts-to-self or rts/cts |
| 6165 | * rts_rate rts or cts rate in unit of 500kbps |
| 6166 | * rate next MPDU rate in unit of 500kbps |
| 6167 | * frame_len next MPDU frame length in bytes |
| 6168 | */ |
| 6169 | u16 |
| 6170 | brcms_c_compute_rtscts_dur(struct brcms_c_info *wlc, bool cts_only, |
| 6171 | u32 rts_rate, |
| 6172 | u32 frame_rate, u8 rts_preamble_type, |
| 6173 | u8 frame_preamble_type, uint frame_len, bool ba) |
| 6174 | { |
| 6175 | u16 dur, sifs; |
| 6176 | |
| 6177 | sifs = get_sifs(wlc->band); |
| 6178 | |
| 6179 | if (!cts_only) { |
| 6180 | /* RTS/CTS */ |
| 6181 | dur = 3 * sifs; |
| 6182 | dur += |
| 6183 | (u16) brcms_c_calc_cts_time(wlc, rts_rate, |
| 6184 | rts_preamble_type); |
| 6185 | } else { |
| 6186 | /* CTS-TO-SELF */ |
| 6187 | dur = 2 * sifs; |
| 6188 | } |
| 6189 | |
| 6190 | dur += |
| 6191 | (u16) brcms_c_calc_frame_time(wlc, frame_rate, frame_preamble_type, |
| 6192 | frame_len); |
| 6193 | if (ba) |
| 6194 | dur += |
| 6195 | (u16) brcms_c_calc_ba_time(wlc, frame_rate, |
| 6196 | BRCMS_SHORT_PREAMBLE); |
| 6197 | else |
| 6198 | dur += |
| 6199 | (u16) brcms_c_calc_ack_time(wlc, frame_rate, |
| 6200 | frame_preamble_type); |
| 6201 | return dur; |
| 6202 | } |
| 6203 | |
| 6204 | static u16 brcms_c_phytxctl1_calc(struct brcms_c_info *wlc, u32 rspec) |
| 6205 | { |
| 6206 | u16 phyctl1 = 0; |
| 6207 | u16 bw; |
| 6208 | |
| 6209 | if (BRCMS_ISLCNPHY(wlc->band)) { |
| 6210 | bw = PHY_TXC1_BW_20MHZ; |
| 6211 | } else { |
| 6212 | bw = rspec_get_bw(rspec); |
| 6213 | /* 10Mhz is not supported yet */ |
| 6214 | if (bw < PHY_TXC1_BW_20MHZ) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6215 | brcms_err(wlc->hw->d11core, "phytxctl1_calc: bw %d is " |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 6216 | "not supported yet, set to 20L\n", bw); |
| 6217 | bw = PHY_TXC1_BW_20MHZ; |
| 6218 | } |
| 6219 | } |
| 6220 | |
| 6221 | if (is_mcs_rate(rspec)) { |
| 6222 | uint mcs = rspec & RSPEC_RATE_MASK; |
| 6223 | |
| 6224 | /* bw, stf, coding-type is part of rspec_phytxbyte2 returns */ |
| 6225 | phyctl1 = rspec_phytxbyte2(rspec); |
| 6226 | /* set the upper byte of phyctl1 */ |
| 6227 | phyctl1 |= (mcs_table[mcs].tx_phy_ctl3 << 8); |
| 6228 | } else if (is_cck_rate(rspec) && !BRCMS_ISLCNPHY(wlc->band) |
| 6229 | && !BRCMS_ISSSLPNPHY(wlc->band)) { |
| 6230 | /* |
| 6231 | * In CCK mode LPPHY overloads OFDM Modulation bits with CCK |
| 6232 | * Data Rate. Eventually MIMOPHY would also be converted to |
| 6233 | * this format |
| 6234 | */ |
| 6235 | /* 0 = 1Mbps; 1 = 2Mbps; 2 = 5.5Mbps; 3 = 11Mbps */ |
| 6236 | phyctl1 = (bw | (rspec_stf(rspec) << PHY_TXC1_MODE_SHIFT)); |
| 6237 | } else { /* legacy OFDM/CCK */ |
| 6238 | s16 phycfg; |
| 6239 | /* get the phyctl byte from rate phycfg table */ |
| 6240 | phycfg = brcms_c_rate_legacy_phyctl(rspec2rate(rspec)); |
| 6241 | if (phycfg == -1) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6242 | brcms_err(wlc->hw->d11core, "phytxctl1_calc: wrong " |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 6243 | "legacy OFDM/CCK rate\n"); |
| 6244 | phycfg = 0; |
| 6245 | } |
| 6246 | /* set the upper byte of phyctl1 */ |
| 6247 | phyctl1 = |
| 6248 | (bw | (phycfg << 8) | |
| 6249 | (rspec_stf(rspec) << PHY_TXC1_MODE_SHIFT)); |
| 6250 | } |
| 6251 | return phyctl1; |
| 6252 | } |
| 6253 | |
| 6254 | /* |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6255 | * Add struct d11txh, struct cck_phy_hdr. |
| 6256 | * |
| 6257 | * 'p' data must start with 802.11 MAC header |
| 6258 | * 'p' must allow enough bytes of local headers to be "pushed" onto the packet |
| 6259 | * |
| 6260 | * headroom == D11_PHY_HDR_LEN + D11_TXH_LEN (D11_TXH_LEN is now 104 bytes) |
| 6261 | * |
| 6262 | */ |
| 6263 | static u16 |
| 6264 | brcms_c_d11hdrs_mac80211(struct brcms_c_info *wlc, struct ieee80211_hw *hw, |
| 6265 | struct sk_buff *p, struct scb *scb, uint frag, |
| 6266 | uint nfrags, uint queue, uint next_frag_len) |
| 6267 | { |
| 6268 | struct ieee80211_hdr *h; |
| 6269 | struct d11txh *txh; |
| 6270 | u8 *plcp, plcp_fallback[D11_PHY_HDR_LEN]; |
| 6271 | int len, phylen, rts_phylen; |
| 6272 | u16 mch, phyctl, xfts, mainrates; |
| 6273 | u16 seq = 0, mcl = 0, status = 0, frameid = 0; |
| 6274 | u32 rspec[2] = { BRCM_RATE_1M, BRCM_RATE_1M }; |
| 6275 | u32 rts_rspec[2] = { BRCM_RATE_1M, BRCM_RATE_1M }; |
| 6276 | bool use_rts = false; |
| 6277 | bool use_cts = false; |
| 6278 | bool use_rifs = false; |
| 6279 | bool short_preamble[2] = { false, false }; |
| 6280 | u8 preamble_type[2] = { BRCMS_LONG_PREAMBLE, BRCMS_LONG_PREAMBLE }; |
| 6281 | u8 rts_preamble_type[2] = { BRCMS_LONG_PREAMBLE, BRCMS_LONG_PREAMBLE }; |
| 6282 | u8 *rts_plcp, rts_plcp_fallback[D11_PHY_HDR_LEN]; |
| 6283 | struct ieee80211_rts *rts = NULL; |
| 6284 | bool qos; |
| 6285 | uint ac; |
| 6286 | bool hwtkmic = false; |
| 6287 | u16 mimo_ctlchbw = PHY_TXC1_BW_20MHZ; |
| 6288 | #define ANTCFG_NONE 0xFF |
| 6289 | u8 antcfg = ANTCFG_NONE; |
| 6290 | u8 fbantcfg = ANTCFG_NONE; |
| 6291 | uint phyctl1_stf = 0; |
| 6292 | u16 durid = 0; |
| 6293 | struct ieee80211_tx_rate *txrate[2]; |
| 6294 | int k; |
| 6295 | struct ieee80211_tx_info *tx_info; |
| 6296 | bool is_mcs; |
| 6297 | u16 mimo_txbw; |
| 6298 | u8 mimo_preamble_type; |
| 6299 | |
| 6300 | /* locate 802.11 MAC header */ |
| 6301 | h = (struct ieee80211_hdr *)(p->data); |
| 6302 | qos = ieee80211_is_data_qos(h->frame_control); |
| 6303 | |
| 6304 | /* compute length of frame in bytes for use in PLCP computations */ |
Arend van Spriel | ad4d71f | 2011-11-10 20:30:26 +0100 | [diff] [blame] | 6305 | len = p->len; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6306 | phylen = len + FCS_LEN; |
| 6307 | |
| 6308 | /* Get tx_info */ |
| 6309 | tx_info = IEEE80211_SKB_CB(p); |
| 6310 | |
| 6311 | /* add PLCP */ |
| 6312 | plcp = skb_push(p, D11_PHY_HDR_LEN); |
| 6313 | |
| 6314 | /* add Broadcom tx descriptor header */ |
| 6315 | txh = (struct d11txh *) skb_push(p, D11_TXH_LEN); |
| 6316 | memset(txh, 0, D11_TXH_LEN); |
| 6317 | |
| 6318 | /* setup frameid */ |
| 6319 | if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) { |
| 6320 | /* non-AP STA should never use BCMC queue */ |
| 6321 | if (queue == TX_BCMC_FIFO) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6322 | brcms_err(wlc->hw->d11core, |
| 6323 | "wl%d: %s: ASSERT queue == TX_BCMC!\n", |
| 6324 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6325 | frameid = bcmc_fid_generate(wlc, NULL, txh); |
| 6326 | } else { |
| 6327 | /* Increment the counter for first fragment */ |
| 6328 | if (tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT) |
| 6329 | scb->seqnum[p->priority]++; |
| 6330 | |
| 6331 | /* extract fragment number from frame first */ |
| 6332 | seq = le16_to_cpu(h->seq_ctrl) & FRAGNUM_MASK; |
| 6333 | seq |= (scb->seqnum[p->priority] << SEQNUM_SHIFT); |
| 6334 | h->seq_ctrl = cpu_to_le16(seq); |
| 6335 | |
| 6336 | frameid = ((seq << TXFID_SEQ_SHIFT) & TXFID_SEQ_MASK) | |
| 6337 | (queue & TXFID_QUEUE_MASK); |
| 6338 | } |
| 6339 | } |
| 6340 | frameid |= queue & TXFID_QUEUE_MASK; |
| 6341 | |
| 6342 | /* set the ignpmq bit for all pkts tx'd in PS mode and for beacons */ |
| 6343 | if (ieee80211_is_beacon(h->frame_control)) |
| 6344 | mcl |= TXC_IGNOREPMQ; |
| 6345 | |
| 6346 | txrate[0] = tx_info->control.rates; |
| 6347 | txrate[1] = txrate[0] + 1; |
| 6348 | |
| 6349 | /* |
| 6350 | * if rate control algorithm didn't give us a fallback |
| 6351 | * rate, use the primary rate |
| 6352 | */ |
| 6353 | if (txrate[1]->idx < 0) |
| 6354 | txrate[1] = txrate[0]; |
| 6355 | |
| 6356 | for (k = 0; k < hw->max_rates; k++) { |
| 6357 | is_mcs = txrate[k]->flags & IEEE80211_TX_RC_MCS ? true : false; |
| 6358 | if (!is_mcs) { |
| 6359 | if ((txrate[k]->idx >= 0) |
| 6360 | && (txrate[k]->idx < |
| 6361 | hw->wiphy->bands[tx_info->band]->n_bitrates)) { |
| 6362 | rspec[k] = |
| 6363 | hw->wiphy->bands[tx_info->band]-> |
| 6364 | bitrates[txrate[k]->idx].hw_value; |
| 6365 | short_preamble[k] = |
| 6366 | txrate[k]-> |
| 6367 | flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE ? |
| 6368 | true : false; |
| 6369 | } else { |
| 6370 | rspec[k] = BRCM_RATE_1M; |
| 6371 | } |
| 6372 | } else { |
| 6373 | rspec[k] = mac80211_wlc_set_nrate(wlc, wlc->band, |
| 6374 | NRATE_MCS_INUSE | txrate[k]->idx); |
| 6375 | } |
| 6376 | |
| 6377 | /* |
| 6378 | * Currently only support same setting for primay and |
| 6379 | * fallback rates. Unify flags for each rate into a |
| 6380 | * single value for the frame |
| 6381 | */ |
| 6382 | use_rts |= |
| 6383 | txrate[k]-> |
| 6384 | flags & IEEE80211_TX_RC_USE_RTS_CTS ? true : false; |
| 6385 | use_cts |= |
| 6386 | txrate[k]-> |
| 6387 | flags & IEEE80211_TX_RC_USE_CTS_PROTECT ? true : false; |
| 6388 | |
| 6389 | |
| 6390 | /* |
| 6391 | * (1) RATE: |
| 6392 | * determine and validate primary rate |
| 6393 | * and fallback rates |
| 6394 | */ |
| 6395 | if (!rspec_active(rspec[k])) { |
| 6396 | rspec[k] = BRCM_RATE_1M; |
| 6397 | } else { |
| 6398 | if (!is_multicast_ether_addr(h->addr1)) { |
| 6399 | /* set tx antenna config */ |
| 6400 | brcms_c_antsel_antcfg_get(wlc->asi, false, |
| 6401 | false, 0, 0, &antcfg, &fbantcfg); |
| 6402 | } |
| 6403 | } |
| 6404 | } |
| 6405 | |
| 6406 | phyctl1_stf = wlc->stf->ss_opmode; |
| 6407 | |
| 6408 | if (wlc->pub->_n_enab & SUPPORT_11N) { |
| 6409 | for (k = 0; k < hw->max_rates; k++) { |
| 6410 | /* |
| 6411 | * apply siso/cdd to single stream mcs's or ofdm |
| 6412 | * if rspec is auto selected |
| 6413 | */ |
| 6414 | if (((is_mcs_rate(rspec[k]) && |
| 6415 | is_single_stream(rspec[k] & RSPEC_RATE_MASK)) || |
| 6416 | is_ofdm_rate(rspec[k])) |
| 6417 | && ((rspec[k] & RSPEC_OVERRIDE_MCS_ONLY) |
| 6418 | || !(rspec[k] & RSPEC_OVERRIDE))) { |
| 6419 | rspec[k] &= ~(RSPEC_STF_MASK | RSPEC_STC_MASK); |
| 6420 | |
| 6421 | /* For SISO MCS use STBC if possible */ |
| 6422 | if (is_mcs_rate(rspec[k]) |
| 6423 | && BRCMS_STF_SS_STBC_TX(wlc, scb)) { |
| 6424 | u8 stc; |
| 6425 | |
| 6426 | /* Nss for single stream is always 1 */ |
| 6427 | stc = 1; |
| 6428 | rspec[k] |= (PHY_TXC1_MODE_STBC << |
| 6429 | RSPEC_STF_SHIFT) | |
| 6430 | (stc << RSPEC_STC_SHIFT); |
| 6431 | } else |
| 6432 | rspec[k] |= |
| 6433 | (phyctl1_stf << RSPEC_STF_SHIFT); |
| 6434 | } |
| 6435 | |
| 6436 | /* |
| 6437 | * Is the phy configured to use 40MHZ frames? If |
| 6438 | * so then pick the desired txbw |
| 6439 | */ |
| 6440 | if (brcms_chspec_bw(wlc->chanspec) == BRCMS_40_MHZ) { |
| 6441 | /* default txbw is 20in40 SB */ |
| 6442 | mimo_ctlchbw = mimo_txbw = |
| 6443 | CHSPEC_SB_UPPER(wlc_phy_chanspec_get( |
| 6444 | wlc->band->pi)) |
| 6445 | ? PHY_TXC1_BW_20MHZ_UP : PHY_TXC1_BW_20MHZ; |
| 6446 | |
| 6447 | if (is_mcs_rate(rspec[k])) { |
| 6448 | /* mcs 32 must be 40b/w DUP */ |
| 6449 | if ((rspec[k] & RSPEC_RATE_MASK) |
| 6450 | == 32) { |
| 6451 | mimo_txbw = |
| 6452 | PHY_TXC1_BW_40MHZ_DUP; |
| 6453 | /* use override */ |
| 6454 | } else if (wlc->mimo_40txbw != AUTO) |
| 6455 | mimo_txbw = wlc->mimo_40txbw; |
| 6456 | /* else check if dst is using 40 Mhz */ |
| 6457 | else if (scb->flags & SCB_IS40) |
| 6458 | mimo_txbw = PHY_TXC1_BW_40MHZ; |
| 6459 | } else if (is_ofdm_rate(rspec[k])) { |
| 6460 | if (wlc->ofdm_40txbw != AUTO) |
| 6461 | mimo_txbw = wlc->ofdm_40txbw; |
| 6462 | } else if (wlc->cck_40txbw != AUTO) { |
| 6463 | mimo_txbw = wlc->cck_40txbw; |
| 6464 | } |
| 6465 | } else { |
| 6466 | /* |
| 6467 | * mcs32 is 40 b/w only. |
| 6468 | * This is possible for probe packets on |
| 6469 | * a STA during SCAN |
| 6470 | */ |
| 6471 | if ((rspec[k] & RSPEC_RATE_MASK) == 32) |
| 6472 | /* mcs 0 */ |
| 6473 | rspec[k] = RSPEC_MIMORATE; |
| 6474 | |
| 6475 | mimo_txbw = PHY_TXC1_BW_20MHZ; |
| 6476 | } |
| 6477 | |
| 6478 | /* Set channel width */ |
| 6479 | rspec[k] &= ~RSPEC_BW_MASK; |
| 6480 | if ((k == 0) || ((k > 0) && is_mcs_rate(rspec[k]))) |
| 6481 | rspec[k] |= (mimo_txbw << RSPEC_BW_SHIFT); |
| 6482 | else |
| 6483 | rspec[k] |= (mimo_ctlchbw << RSPEC_BW_SHIFT); |
| 6484 | |
| 6485 | /* Disable short GI, not supported yet */ |
| 6486 | rspec[k] &= ~RSPEC_SHORT_GI; |
| 6487 | |
| 6488 | mimo_preamble_type = BRCMS_MM_PREAMBLE; |
| 6489 | if (txrate[k]->flags & IEEE80211_TX_RC_GREEN_FIELD) |
| 6490 | mimo_preamble_type = BRCMS_GF_PREAMBLE; |
| 6491 | |
| 6492 | if ((txrate[k]->flags & IEEE80211_TX_RC_MCS) |
| 6493 | && (!is_mcs_rate(rspec[k]))) { |
Joe Perches | e81c7e9 | 2013-02-13 17:33:20 -0800 | [diff] [blame] | 6494 | brcms_warn(wlc->hw->d11core, |
| 6495 | "wl%d: %s: IEEE80211_TX_RC_MCS != is_mcs_rate(rspec)\n", |
| 6496 | wlc->pub->unit, __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6497 | } |
| 6498 | |
| 6499 | if (is_mcs_rate(rspec[k])) { |
| 6500 | preamble_type[k] = mimo_preamble_type; |
| 6501 | |
| 6502 | /* |
| 6503 | * if SGI is selected, then forced mm |
| 6504 | * for single stream |
| 6505 | */ |
| 6506 | if ((rspec[k] & RSPEC_SHORT_GI) |
| 6507 | && is_single_stream(rspec[k] & |
| 6508 | RSPEC_RATE_MASK)) |
| 6509 | preamble_type[k] = BRCMS_MM_PREAMBLE; |
| 6510 | } |
| 6511 | |
| 6512 | /* should be better conditionalized */ |
| 6513 | if (!is_mcs_rate(rspec[0]) |
| 6514 | && (tx_info->control.rates[0]. |
| 6515 | flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)) |
| 6516 | preamble_type[k] = BRCMS_SHORT_PREAMBLE; |
| 6517 | } |
| 6518 | } else { |
| 6519 | for (k = 0; k < hw->max_rates; k++) { |
| 6520 | /* Set ctrlchbw as 20Mhz */ |
| 6521 | rspec[k] &= ~RSPEC_BW_MASK; |
| 6522 | rspec[k] |= (PHY_TXC1_BW_20MHZ << RSPEC_BW_SHIFT); |
| 6523 | |
| 6524 | /* for nphy, stf of ofdm frames must follow policies */ |
| 6525 | if (BRCMS_ISNPHY(wlc->band) && is_ofdm_rate(rspec[k])) { |
| 6526 | rspec[k] &= ~RSPEC_STF_MASK; |
| 6527 | rspec[k] |= phyctl1_stf << RSPEC_STF_SHIFT; |
| 6528 | } |
| 6529 | } |
| 6530 | } |
| 6531 | |
| 6532 | /* Reset these for use with AMPDU's */ |
| 6533 | txrate[0]->count = 0; |
| 6534 | txrate[1]->count = 0; |
| 6535 | |
| 6536 | /* (2) PROTECTION, may change rspec */ |
| 6537 | if ((ieee80211_is_data(h->frame_control) || |
| 6538 | ieee80211_is_mgmt(h->frame_control)) && |
| 6539 | (phylen > wlc->RTSThresh) && !is_multicast_ether_addr(h->addr1)) |
| 6540 | use_rts = true; |
| 6541 | |
| 6542 | /* (3) PLCP: determine PLCP header and MAC duration, |
| 6543 | * fill struct d11txh */ |
| 6544 | brcms_c_compute_plcp(wlc, rspec[0], phylen, plcp); |
| 6545 | brcms_c_compute_plcp(wlc, rspec[1], phylen, plcp_fallback); |
| 6546 | memcpy(&txh->FragPLCPFallback, |
| 6547 | plcp_fallback, sizeof(txh->FragPLCPFallback)); |
| 6548 | |
| 6549 | /* Length field now put in CCK FBR CRC field */ |
| 6550 | if (is_cck_rate(rspec[1])) { |
| 6551 | txh->FragPLCPFallback[4] = phylen & 0xff; |
| 6552 | txh->FragPLCPFallback[5] = (phylen & 0xff00) >> 8; |
| 6553 | } |
| 6554 | |
| 6555 | /* MIMO-RATE: need validation ?? */ |
| 6556 | mainrates = is_ofdm_rate(rspec[0]) ? |
| 6557 | D11A_PHY_HDR_GRATE((struct ofdm_phy_hdr *) plcp) : |
| 6558 | plcp[0]; |
| 6559 | |
| 6560 | /* DUR field for main rate */ |
| 6561 | if (!ieee80211_is_pspoll(h->frame_control) && |
| 6562 | !is_multicast_ether_addr(h->addr1) && !use_rifs) { |
| 6563 | durid = |
| 6564 | brcms_c_compute_frame_dur(wlc, rspec[0], preamble_type[0], |
| 6565 | next_frag_len); |
| 6566 | h->duration_id = cpu_to_le16(durid); |
| 6567 | } else if (use_rifs) { |
| 6568 | /* NAV protect to end of next max packet size */ |
| 6569 | durid = |
| 6570 | (u16) brcms_c_calc_frame_time(wlc, rspec[0], |
| 6571 | preamble_type[0], |
| 6572 | DOT11_MAX_FRAG_LEN); |
| 6573 | durid += RIFS_11N_TIME; |
| 6574 | h->duration_id = cpu_to_le16(durid); |
| 6575 | } |
| 6576 | |
| 6577 | /* DUR field for fallback rate */ |
| 6578 | if (ieee80211_is_pspoll(h->frame_control)) |
| 6579 | txh->FragDurFallback = h->duration_id; |
| 6580 | else if (is_multicast_ether_addr(h->addr1) || use_rifs) |
| 6581 | txh->FragDurFallback = 0; |
| 6582 | else { |
| 6583 | durid = brcms_c_compute_frame_dur(wlc, rspec[1], |
| 6584 | preamble_type[1], next_frag_len); |
| 6585 | txh->FragDurFallback = cpu_to_le16(durid); |
| 6586 | } |
| 6587 | |
| 6588 | /* (4) MAC-HDR: MacTxControlLow */ |
| 6589 | if (frag == 0) |
| 6590 | mcl |= TXC_STARTMSDU; |
| 6591 | |
| 6592 | if (!is_multicast_ether_addr(h->addr1)) |
| 6593 | mcl |= TXC_IMMEDACK; |
| 6594 | |
| 6595 | if (wlc->band->bandtype == BRCM_BAND_5G) |
| 6596 | mcl |= TXC_FREQBAND_5G; |
| 6597 | |
| 6598 | if (CHSPEC_IS40(wlc_phy_chanspec_get(wlc->band->pi))) |
| 6599 | mcl |= TXC_BW_40; |
| 6600 | |
| 6601 | /* set AMIC bit if using hardware TKIP MIC */ |
| 6602 | if (hwtkmic) |
| 6603 | mcl |= TXC_AMIC; |
| 6604 | |
| 6605 | txh->MacTxControlLow = cpu_to_le16(mcl); |
| 6606 | |
| 6607 | /* MacTxControlHigh */ |
| 6608 | mch = 0; |
| 6609 | |
| 6610 | /* Set fallback rate preamble type */ |
| 6611 | if ((preamble_type[1] == BRCMS_SHORT_PREAMBLE) || |
| 6612 | (preamble_type[1] == BRCMS_GF_PREAMBLE)) { |
| 6613 | if (rspec2rate(rspec[1]) != BRCM_RATE_1M) |
| 6614 | mch |= TXC_PREAMBLE_DATA_FB_SHORT; |
| 6615 | } |
| 6616 | |
| 6617 | /* MacFrameControl */ |
| 6618 | memcpy(&txh->MacFrameControl, &h->frame_control, sizeof(u16)); |
| 6619 | txh->TxFesTimeNormal = cpu_to_le16(0); |
| 6620 | |
| 6621 | txh->TxFesTimeFallback = cpu_to_le16(0); |
| 6622 | |
| 6623 | /* TxFrameRA */ |
| 6624 | memcpy(&txh->TxFrameRA, &h->addr1, ETH_ALEN); |
| 6625 | |
| 6626 | /* TxFrameID */ |
| 6627 | txh->TxFrameID = cpu_to_le16(frameid); |
| 6628 | |
| 6629 | /* |
| 6630 | * TxStatus, Note the case of recreating the first frag of a suppressed |
| 6631 | * frame then we may need to reset the retry cnt's via the status reg |
| 6632 | */ |
| 6633 | txh->TxStatus = cpu_to_le16(status); |
| 6634 | |
| 6635 | /* |
| 6636 | * extra fields for ucode AMPDU aggregation, the new fields are added to |
| 6637 | * the END of previous structure so that it's compatible in driver. |
| 6638 | */ |
| 6639 | txh->MaxNMpdus = cpu_to_le16(0); |
| 6640 | txh->MaxABytes_MRT = cpu_to_le16(0); |
| 6641 | txh->MaxABytes_FBR = cpu_to_le16(0); |
| 6642 | txh->MinMBytes = cpu_to_le16(0); |
| 6643 | |
| 6644 | /* (5) RTS/CTS: determine RTS/CTS PLCP header and MAC duration, |
| 6645 | * furnish struct d11txh */ |
| 6646 | /* RTS PLCP header and RTS frame */ |
| 6647 | if (use_rts || use_cts) { |
| 6648 | if (use_rts && use_cts) |
| 6649 | use_cts = false; |
| 6650 | |
| 6651 | for (k = 0; k < 2; k++) { |
| 6652 | rts_rspec[k] = brcms_c_rspec_to_rts_rspec(wlc, rspec[k], |
| 6653 | false, |
| 6654 | mimo_ctlchbw); |
| 6655 | } |
| 6656 | |
| 6657 | if (!is_ofdm_rate(rts_rspec[0]) && |
| 6658 | !((rspec2rate(rts_rspec[0]) == BRCM_RATE_1M) || |
| 6659 | (wlc->PLCPHdr_override == BRCMS_PLCP_LONG))) { |
| 6660 | rts_preamble_type[0] = BRCMS_SHORT_PREAMBLE; |
| 6661 | mch |= TXC_PREAMBLE_RTS_MAIN_SHORT; |
| 6662 | } |
| 6663 | |
| 6664 | if (!is_ofdm_rate(rts_rspec[1]) && |
| 6665 | !((rspec2rate(rts_rspec[1]) == BRCM_RATE_1M) || |
| 6666 | (wlc->PLCPHdr_override == BRCMS_PLCP_LONG))) { |
| 6667 | rts_preamble_type[1] = BRCMS_SHORT_PREAMBLE; |
| 6668 | mch |= TXC_PREAMBLE_RTS_FB_SHORT; |
| 6669 | } |
| 6670 | |
| 6671 | /* RTS/CTS additions to MacTxControlLow */ |
| 6672 | if (use_cts) { |
| 6673 | txh->MacTxControlLow |= cpu_to_le16(TXC_SENDCTS); |
| 6674 | } else { |
| 6675 | txh->MacTxControlLow |= cpu_to_le16(TXC_SENDRTS); |
| 6676 | txh->MacTxControlLow |= cpu_to_le16(TXC_LONGFRAME); |
| 6677 | } |
| 6678 | |
| 6679 | /* RTS PLCP header */ |
| 6680 | rts_plcp = txh->RTSPhyHeader; |
| 6681 | if (use_cts) |
| 6682 | rts_phylen = DOT11_CTS_LEN + FCS_LEN; |
| 6683 | else |
| 6684 | rts_phylen = DOT11_RTS_LEN + FCS_LEN; |
| 6685 | |
| 6686 | brcms_c_compute_plcp(wlc, rts_rspec[0], rts_phylen, rts_plcp); |
| 6687 | |
| 6688 | /* fallback rate version of RTS PLCP header */ |
| 6689 | brcms_c_compute_plcp(wlc, rts_rspec[1], rts_phylen, |
| 6690 | rts_plcp_fallback); |
| 6691 | memcpy(&txh->RTSPLCPFallback, rts_plcp_fallback, |
| 6692 | sizeof(txh->RTSPLCPFallback)); |
| 6693 | |
| 6694 | /* RTS frame fields... */ |
| 6695 | rts = (struct ieee80211_rts *)&txh->rts_frame; |
| 6696 | |
| 6697 | durid = brcms_c_compute_rtscts_dur(wlc, use_cts, rts_rspec[0], |
| 6698 | rspec[0], rts_preamble_type[0], |
| 6699 | preamble_type[0], phylen, false); |
| 6700 | rts->duration = cpu_to_le16(durid); |
| 6701 | /* fallback rate version of RTS DUR field */ |
| 6702 | durid = brcms_c_compute_rtscts_dur(wlc, use_cts, |
| 6703 | rts_rspec[1], rspec[1], |
| 6704 | rts_preamble_type[1], |
| 6705 | preamble_type[1], phylen, false); |
| 6706 | txh->RTSDurFallback = cpu_to_le16(durid); |
| 6707 | |
| 6708 | if (use_cts) { |
| 6709 | rts->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL | |
| 6710 | IEEE80211_STYPE_CTS); |
| 6711 | |
| 6712 | memcpy(&rts->ra, &h->addr2, ETH_ALEN); |
| 6713 | } else { |
| 6714 | rts->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL | |
| 6715 | IEEE80211_STYPE_RTS); |
| 6716 | |
| 6717 | memcpy(&rts->ra, &h->addr1, 2 * ETH_ALEN); |
| 6718 | } |
| 6719 | |
| 6720 | /* mainrate |
| 6721 | * low 8 bits: main frag rate/mcs, |
| 6722 | * high 8 bits: rts/cts rate/mcs |
| 6723 | */ |
| 6724 | mainrates |= (is_ofdm_rate(rts_rspec[0]) ? |
| 6725 | D11A_PHY_HDR_GRATE( |
| 6726 | (struct ofdm_phy_hdr *) rts_plcp) : |
| 6727 | rts_plcp[0]) << 8; |
| 6728 | } else { |
Joe Perches | b56e681 | 2013-02-13 17:33:21 -0800 | [diff] [blame] | 6729 | memset(txh->RTSPhyHeader, 0, D11_PHY_HDR_LEN); |
| 6730 | memset(&txh->rts_frame, 0, sizeof(struct ieee80211_rts)); |
| 6731 | memset(txh->RTSPLCPFallback, 0, sizeof(txh->RTSPLCPFallback)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6732 | txh->RTSDurFallback = 0; |
| 6733 | } |
| 6734 | |
| 6735 | #ifdef SUPPORT_40MHZ |
| 6736 | /* add null delimiter count */ |
| 6737 | if ((tx_info->flags & IEEE80211_TX_CTL_AMPDU) && is_mcs_rate(rspec)) |
| 6738 | txh->RTSPLCPFallback[AMPDU_FBR_NULL_DELIM] = |
| 6739 | brcm_c_ampdu_null_delim_cnt(wlc->ampdu, scb, rspec, phylen); |
| 6740 | |
| 6741 | #endif |
| 6742 | |
| 6743 | /* |
| 6744 | * Now that RTS/RTS FB preamble types are updated, write |
| 6745 | * the final value |
| 6746 | */ |
| 6747 | txh->MacTxControlHigh = cpu_to_le16(mch); |
| 6748 | |
| 6749 | /* |
| 6750 | * MainRates (both the rts and frag plcp rates have |
| 6751 | * been calculated now) |
| 6752 | */ |
| 6753 | txh->MainRates = cpu_to_le16(mainrates); |
| 6754 | |
| 6755 | /* XtraFrameTypes */ |
| 6756 | xfts = frametype(rspec[1], wlc->mimoft); |
| 6757 | xfts |= (frametype(rts_rspec[0], wlc->mimoft) << XFTS_RTS_FT_SHIFT); |
| 6758 | xfts |= (frametype(rts_rspec[1], wlc->mimoft) << XFTS_FBRRTS_FT_SHIFT); |
| 6759 | xfts |= CHSPEC_CHANNEL(wlc_phy_chanspec_get(wlc->band->pi)) << |
| 6760 | XFTS_CHANNEL_SHIFT; |
| 6761 | txh->XtraFrameTypes = cpu_to_le16(xfts); |
| 6762 | |
| 6763 | /* PhyTxControlWord */ |
| 6764 | phyctl = frametype(rspec[0], wlc->mimoft); |
| 6765 | if ((preamble_type[0] == BRCMS_SHORT_PREAMBLE) || |
| 6766 | (preamble_type[0] == BRCMS_GF_PREAMBLE)) { |
| 6767 | if (rspec2rate(rspec[0]) != BRCM_RATE_1M) |
| 6768 | phyctl |= PHY_TXC_SHORT_HDR; |
| 6769 | } |
| 6770 | |
| 6771 | /* phytxant is properly bit shifted */ |
| 6772 | phyctl |= brcms_c_stf_d11hdrs_phyctl_txant(wlc, rspec[0]); |
| 6773 | txh->PhyTxControlWord = cpu_to_le16(phyctl); |
| 6774 | |
| 6775 | /* PhyTxControlWord_1 */ |
| 6776 | if (BRCMS_PHY_11N_CAP(wlc->band)) { |
| 6777 | u16 phyctl1 = 0; |
| 6778 | |
| 6779 | phyctl1 = brcms_c_phytxctl1_calc(wlc, rspec[0]); |
| 6780 | txh->PhyTxControlWord_1 = cpu_to_le16(phyctl1); |
| 6781 | phyctl1 = brcms_c_phytxctl1_calc(wlc, rspec[1]); |
| 6782 | txh->PhyTxControlWord_1_Fbr = cpu_to_le16(phyctl1); |
| 6783 | |
| 6784 | if (use_rts || use_cts) { |
| 6785 | phyctl1 = brcms_c_phytxctl1_calc(wlc, rts_rspec[0]); |
| 6786 | txh->PhyTxControlWord_1_Rts = cpu_to_le16(phyctl1); |
| 6787 | phyctl1 = brcms_c_phytxctl1_calc(wlc, rts_rspec[1]); |
| 6788 | txh->PhyTxControlWord_1_FbrRts = cpu_to_le16(phyctl1); |
| 6789 | } |
| 6790 | |
| 6791 | /* |
| 6792 | * For mcs frames, if mixedmode(overloaded with long preamble) |
| 6793 | * is going to be set, fill in non-zero MModeLen and/or |
| 6794 | * MModeFbrLen it will be unnecessary if they are separated |
| 6795 | */ |
| 6796 | if (is_mcs_rate(rspec[0]) && |
| 6797 | (preamble_type[0] == BRCMS_MM_PREAMBLE)) { |
| 6798 | u16 mmodelen = |
| 6799 | brcms_c_calc_lsig_len(wlc, rspec[0], phylen); |
| 6800 | txh->MModeLen = cpu_to_le16(mmodelen); |
| 6801 | } |
| 6802 | |
| 6803 | if (is_mcs_rate(rspec[1]) && |
| 6804 | (preamble_type[1] == BRCMS_MM_PREAMBLE)) { |
| 6805 | u16 mmodefbrlen = |
| 6806 | brcms_c_calc_lsig_len(wlc, rspec[1], phylen); |
| 6807 | txh->MModeFbrLen = cpu_to_le16(mmodefbrlen); |
| 6808 | } |
| 6809 | } |
| 6810 | |
| 6811 | ac = skb_get_queue_mapping(p); |
| 6812 | if ((scb->flags & SCB_WMECAP) && qos && wlc->edcf_txop[ac]) { |
| 6813 | uint frag_dur, dur, dur_fallback; |
| 6814 | |
| 6815 | /* WME: Update TXOP threshold */ |
| 6816 | if (!(tx_info->flags & IEEE80211_TX_CTL_AMPDU) && frag == 0) { |
| 6817 | frag_dur = |
| 6818 | brcms_c_calc_frame_time(wlc, rspec[0], |
| 6819 | preamble_type[0], phylen); |
| 6820 | |
| 6821 | if (rts) { |
| 6822 | /* 1 RTS or CTS-to-self frame */ |
| 6823 | dur = |
| 6824 | brcms_c_calc_cts_time(wlc, rts_rspec[0], |
| 6825 | rts_preamble_type[0]); |
| 6826 | dur_fallback = |
| 6827 | brcms_c_calc_cts_time(wlc, rts_rspec[1], |
| 6828 | rts_preamble_type[1]); |
| 6829 | /* (SIFS + CTS) + SIFS + frame + SIFS + ACK */ |
| 6830 | dur += le16_to_cpu(rts->duration); |
| 6831 | dur_fallback += |
| 6832 | le16_to_cpu(txh->RTSDurFallback); |
| 6833 | } else if (use_rifs) { |
| 6834 | dur = frag_dur; |
| 6835 | dur_fallback = 0; |
| 6836 | } else { |
| 6837 | /* frame + SIFS + ACK */ |
| 6838 | dur = frag_dur; |
| 6839 | dur += |
| 6840 | brcms_c_compute_frame_dur(wlc, rspec[0], |
| 6841 | preamble_type[0], 0); |
| 6842 | |
| 6843 | dur_fallback = |
| 6844 | brcms_c_calc_frame_time(wlc, rspec[1], |
| 6845 | preamble_type[1], |
| 6846 | phylen); |
| 6847 | dur_fallback += |
| 6848 | brcms_c_compute_frame_dur(wlc, rspec[1], |
| 6849 | preamble_type[1], 0); |
| 6850 | } |
| 6851 | /* NEED to set TxFesTimeNormal (hard) */ |
| 6852 | txh->TxFesTimeNormal = cpu_to_le16((u16) dur); |
| 6853 | /* |
| 6854 | * NEED to set fallback rate version of |
| 6855 | * TxFesTimeNormal (hard) |
| 6856 | */ |
| 6857 | txh->TxFesTimeFallback = |
| 6858 | cpu_to_le16((u16) dur_fallback); |
| 6859 | |
| 6860 | /* |
| 6861 | * update txop byte threshold (txop minus intraframe |
| 6862 | * overhead) |
| 6863 | */ |
| 6864 | if (wlc->edcf_txop[ac] >= (dur - frag_dur)) { |
| 6865 | uint newfragthresh; |
| 6866 | |
| 6867 | newfragthresh = |
| 6868 | brcms_c_calc_frame_len(wlc, |
| 6869 | rspec[0], preamble_type[0], |
| 6870 | (wlc->edcf_txop[ac] - |
| 6871 | (dur - frag_dur))); |
| 6872 | /* range bound the fragthreshold */ |
| 6873 | if (newfragthresh < DOT11_MIN_FRAG_LEN) |
| 6874 | newfragthresh = |
| 6875 | DOT11_MIN_FRAG_LEN; |
| 6876 | else if (newfragthresh > |
| 6877 | wlc->usr_fragthresh) |
| 6878 | newfragthresh = |
| 6879 | wlc->usr_fragthresh; |
| 6880 | /* update the fragthresh and do txc update */ |
| 6881 | if (wlc->fragthresh[queue] != |
| 6882 | (u16) newfragthresh) |
| 6883 | wlc->fragthresh[queue] = |
| 6884 | (u16) newfragthresh; |
| 6885 | } else { |
Joe Perches | e81c7e9 | 2013-02-13 17:33:20 -0800 | [diff] [blame] | 6886 | brcms_warn(wlc->hw->d11core, |
| 6887 | "wl%d: %s txop invalid for rate %d\n", |
| 6888 | wlc->pub->unit, fifo_names[queue], |
| 6889 | rspec2rate(rspec[0])); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6890 | } |
| 6891 | |
| 6892 | if (dur > wlc->edcf_txop[ac]) |
Joe Perches | e81c7e9 | 2013-02-13 17:33:20 -0800 | [diff] [blame] | 6893 | brcms_warn(wlc->hw->d11core, |
| 6894 | "wl%d: %s: %s txop exceeded phylen %d/%d dur %d/%d\n", |
| 6895 | wlc->pub->unit, __func__, |
| 6896 | fifo_names[queue], |
| 6897 | phylen, wlc->fragthresh[queue], |
| 6898 | dur, wlc->edcf_txop[ac]); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6899 | } |
| 6900 | } |
| 6901 | |
| 6902 | return 0; |
| 6903 | } |
| 6904 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6905 | static int brcms_c_tx(struct brcms_c_info *wlc, struct sk_buff *skb) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6906 | { |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6907 | struct dma_pub *dma; |
| 6908 | int fifo, ret = -ENOSPC; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6909 | struct d11txh *txh; |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6910 | u16 frameid = INVALIDFID; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6911 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6912 | fifo = brcms_ac_to_fifo(skb_get_queue_mapping(skb)); |
| 6913 | dma = wlc->hw->di[fifo]; |
| 6914 | txh = (struct d11txh *)(skb->data); |
| 6915 | |
| 6916 | if (dma->txavail == 0) { |
| 6917 | /* |
| 6918 | * We sometimes get a frame from mac80211 after stopping |
| 6919 | * the queues. This only ever seems to be a single frame |
| 6920 | * and is seems likely to be a race. TX_HEADROOM should |
| 6921 | * ensure that we have enough space to handle these stray |
| 6922 | * packets, so warn if there isn't. If we're out of space |
| 6923 | * in the tx ring and the tx queue isn't stopped then |
| 6924 | * we've really got a bug; warn loudly if that happens. |
| 6925 | */ |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 6926 | brcms_warn(wlc->hw->d11core, |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6927 | "Received frame for tx with no space in DMA ring\n"); |
| 6928 | WARN_ON(!ieee80211_queue_stopped(wlc->pub->ieee_hw, |
| 6929 | skb_get_queue_mapping(skb))); |
| 6930 | return -ENOSPC; |
| 6931 | } |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6932 | |
| 6933 | /* When a BC/MC frame is being committed to the BCMC fifo |
| 6934 | * via DMA (NOT PIO), update ucode or BSS info as appropriate. |
| 6935 | */ |
| 6936 | if (fifo == TX_BCMC_FIFO) |
| 6937 | frameid = le16_to_cpu(txh->TxFrameID); |
| 6938 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6939 | /* Commit BCMC sequence number in the SHM frame ID location */ |
| 6940 | if (frameid != INVALIDFID) { |
| 6941 | /* |
| 6942 | * To inform the ucode of the last mcast frame posted |
| 6943 | * so that it can clear moredata bit |
| 6944 | */ |
| 6945 | brcms_b_write_shm(wlc->hw, M_BCMC_FID, frameid); |
| 6946 | } |
| 6947 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6948 | ret = brcms_c_txfifo(wlc, fifo, skb); |
| 6949 | /* |
| 6950 | * The only reason for brcms_c_txfifo to fail is because |
| 6951 | * there weren't any DMA descriptors, but we've already |
| 6952 | * checked for that. So if it does fail yell loudly. |
| 6953 | */ |
| 6954 | WARN_ON_ONCE(ret); |
| 6955 | |
| 6956 | return ret; |
| 6957 | } |
| 6958 | |
Piotr Haber | c4dea35 | 2012-11-28 21:44:05 +0100 | [diff] [blame] | 6959 | bool brcms_c_sendpkt_mac80211(struct brcms_c_info *wlc, struct sk_buff *sdu, |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6960 | struct ieee80211_hw *hw) |
| 6961 | { |
| 6962 | uint fifo; |
| 6963 | struct scb *scb = &wlc->pri_scb; |
| 6964 | |
| 6965 | fifo = brcms_ac_to_fifo(skb_get_queue_mapping(sdu)); |
Piotr Haber | c4dea35 | 2012-11-28 21:44:05 +0100 | [diff] [blame] | 6966 | brcms_c_d11hdrs_mac80211(wlc, hw, sdu, scb, 0, 1, fifo, 0); |
| 6967 | if (!brcms_c_tx(wlc, sdu)) |
| 6968 | return true; |
| 6969 | |
| 6970 | /* packet discarded */ |
| 6971 | dev_kfree_skb_any(sdu); |
| 6972 | return false; |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6973 | } |
| 6974 | |
| 6975 | int |
| 6976 | brcms_c_txfifo(struct brcms_c_info *wlc, uint fifo, struct sk_buff *p) |
| 6977 | { |
| 6978 | struct dma_pub *dma = wlc->hw->di[fifo]; |
| 6979 | int ret; |
| 6980 | u16 queue; |
| 6981 | |
| 6982 | ret = dma_txfast(wlc, dma, p); |
| 6983 | if (ret < 0) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6984 | wiphy_err(wlc->wiphy, "txfifo: fatal, toss frames !!!\n"); |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 6985 | |
| 6986 | /* |
| 6987 | * Stop queue if DMA ring is full. Reserve some free descriptors, |
| 6988 | * as we sometimes receive a frame from mac80211 after the queues |
| 6989 | * are stopped. |
| 6990 | */ |
| 6991 | queue = skb_get_queue_mapping(p); |
| 6992 | if (dma->txavail <= TX_HEADROOM && fifo < TX_BCMC_FIFO && |
| 6993 | !ieee80211_queue_stopped(wlc->pub->ieee_hw, queue)) |
| 6994 | ieee80211_stop_queue(wlc->pub->ieee_hw, queue); |
| 6995 | |
| 6996 | return ret; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6997 | } |
| 6998 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 6999 | u32 |
| 7000 | brcms_c_rspec_to_rts_rspec(struct brcms_c_info *wlc, u32 rspec, |
| 7001 | bool use_rspec, u16 mimo_ctlchbw) |
| 7002 | { |
| 7003 | u32 rts_rspec = 0; |
| 7004 | |
| 7005 | if (use_rspec) |
| 7006 | /* use frame rate as rts rate */ |
| 7007 | rts_rspec = rspec; |
| 7008 | else if (wlc->band->gmode && wlc->protection->_g && !is_cck_rate(rspec)) |
| 7009 | /* Use 11Mbps as the g protection RTS target rate and fallback. |
| 7010 | * Use the brcms_basic_rate() lookup to find the best basic rate |
| 7011 | * under the target in case 11 Mbps is not Basic. |
| 7012 | * 6 and 9 Mbps are not usually selected by rate selection, but |
| 7013 | * even if the OFDM rate we are protecting is 6 or 9 Mbps, 11 |
| 7014 | * is more robust. |
| 7015 | */ |
| 7016 | rts_rspec = brcms_basic_rate(wlc, BRCM_RATE_11M); |
| 7017 | else |
| 7018 | /* calculate RTS rate and fallback rate based on the frame rate |
| 7019 | * RTS must be sent at a basic rate since it is a |
| 7020 | * control frame, sec 9.6 of 802.11 spec |
| 7021 | */ |
| 7022 | rts_rspec = brcms_basic_rate(wlc, rspec); |
| 7023 | |
| 7024 | if (BRCMS_PHY_11N_CAP(wlc->band)) { |
| 7025 | /* set rts txbw to correct side band */ |
| 7026 | rts_rspec &= ~RSPEC_BW_MASK; |
| 7027 | |
| 7028 | /* |
| 7029 | * if rspec/rspec_fallback is 40MHz, then send RTS on both |
| 7030 | * 20MHz channel (DUP), otherwise send RTS on control channel |
| 7031 | */ |
| 7032 | if (rspec_is40mhz(rspec) && !is_cck_rate(rts_rspec)) |
| 7033 | rts_rspec |= (PHY_TXC1_BW_40MHZ_DUP << RSPEC_BW_SHIFT); |
| 7034 | else |
| 7035 | rts_rspec |= (mimo_ctlchbw << RSPEC_BW_SHIFT); |
| 7036 | |
| 7037 | /* pick siso/cdd as default for ofdm */ |
| 7038 | if (is_ofdm_rate(rts_rspec)) { |
| 7039 | rts_rspec &= ~RSPEC_STF_MASK; |
| 7040 | rts_rspec |= (wlc->stf->ss_opmode << RSPEC_STF_SHIFT); |
| 7041 | } |
| 7042 | } |
| 7043 | return rts_rspec; |
| 7044 | } |
| 7045 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7046 | /* Update beacon listen interval in shared memory */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7047 | static void brcms_c_bcn_li_upd(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7048 | { |
| 7049 | /* wake up every DTIM is the default */ |
| 7050 | if (wlc->bcn_li_dtim == 1) |
| 7051 | brcms_b_write_shm(wlc->hw, M_BCN_LI, 0); |
| 7052 | else |
| 7053 | brcms_b_write_shm(wlc->hw, M_BCN_LI, |
| 7054 | (wlc->bcn_li_dtim << 8) | wlc->bcn_li_bcn); |
| 7055 | } |
| 7056 | |
| 7057 | static void |
| 7058 | brcms_b_read_tsf(struct brcms_hardware *wlc_hw, u32 *tsf_l_ptr, |
| 7059 | u32 *tsf_h_ptr) |
| 7060 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7061 | struct bcma_device *core = wlc_hw->d11core; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7062 | |
| 7063 | /* read the tsf timer low, then high to get an atomic read */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7064 | *tsf_l_ptr = bcma_read32(core, D11REGOFFS(tsf_timerlow)); |
| 7065 | *tsf_h_ptr = bcma_read32(core, D11REGOFFS(tsf_timerhigh)); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7066 | } |
| 7067 | |
| 7068 | /* |
| 7069 | * recover 64bit TSF value from the 16bit TSF value in the rx header |
| 7070 | * given the assumption that the TSF passed in header is within 65ms |
| 7071 | * of the current tsf. |
| 7072 | * |
| 7073 | * 6 5 4 4 3 2 1 |
| 7074 | * 3.......6.......8.......0.......2.......4.......6.......8......0 |
| 7075 | * |<---------- tsf_h ----------->||<--- tsf_l -->||<-RxTSFTime ->| |
| 7076 | * |
| 7077 | * The RxTSFTime are the lowest 16 bits and provided by the ucode. The |
| 7078 | * tsf_l is filled in by brcms_b_recv, which is done earlier in the |
| 7079 | * receive call sequence after rx interrupt. Only the higher 16 bits |
| 7080 | * are used. Finally, the tsf_h is read from the tsf register. |
| 7081 | */ |
| 7082 | static u64 brcms_c_recover_tsf64(struct brcms_c_info *wlc, |
| 7083 | struct d11rxhdr *rxh) |
| 7084 | { |
| 7085 | u32 tsf_h, tsf_l; |
| 7086 | u16 rx_tsf_0_15, rx_tsf_16_31; |
| 7087 | |
| 7088 | brcms_b_read_tsf(wlc->hw, &tsf_l, &tsf_h); |
| 7089 | |
| 7090 | rx_tsf_16_31 = (u16)(tsf_l >> 16); |
| 7091 | rx_tsf_0_15 = rxh->RxTSFTime; |
| 7092 | |
| 7093 | /* |
| 7094 | * a greater tsf time indicates the low 16 bits of |
| 7095 | * tsf_l wrapped, so decrement the high 16 bits. |
| 7096 | */ |
| 7097 | if ((u16)tsf_l < rx_tsf_0_15) { |
| 7098 | rx_tsf_16_31 -= 1; |
| 7099 | if (rx_tsf_16_31 == 0xffff) |
| 7100 | tsf_h -= 1; |
| 7101 | } |
| 7102 | |
| 7103 | return ((u64)tsf_h << 32) | (((u32)rx_tsf_16_31 << 16) + rx_tsf_0_15); |
| 7104 | } |
| 7105 | |
| 7106 | static void |
| 7107 | prep_mac80211_status(struct brcms_c_info *wlc, struct d11rxhdr *rxh, |
| 7108 | struct sk_buff *p, |
| 7109 | struct ieee80211_rx_status *rx_status) |
| 7110 | { |
| 7111 | int preamble; |
| 7112 | int channel; |
| 7113 | u32 rspec; |
| 7114 | unsigned char *plcp; |
| 7115 | |
| 7116 | /* fill in TSF and flag its presence */ |
| 7117 | rx_status->mactime = brcms_c_recover_tsf64(wlc, rxh); |
Thomas Pedersen | f4bda33 | 2012-11-13 10:46:27 -0800 | [diff] [blame] | 7118 | rx_status->flag |= RX_FLAG_MACTIME_START; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7119 | |
| 7120 | channel = BRCMS_CHAN_CHANNEL(rxh->RxChan); |
| 7121 | |
Johannes Berg | 858a455 | 2012-07-24 17:35:57 +0200 | [diff] [blame] | 7122 | rx_status->band = |
| 7123 | channel > 14 ? IEEE80211_BAND_5GHZ : IEEE80211_BAND_2GHZ; |
| 7124 | rx_status->freq = |
| 7125 | ieee80211_channel_to_frequency(channel, rx_status->band); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7126 | |
| 7127 | rx_status->signal = wlc_phy_rssi_compute(wlc->hw->band->pi, rxh); |
| 7128 | |
| 7129 | /* noise */ |
| 7130 | /* qual */ |
| 7131 | rx_status->antenna = |
| 7132 | (rxh->PhyRxStatus_0 & PRXS0_RXANT_UPSUBBAND) ? 1 : 0; |
| 7133 | |
| 7134 | plcp = p->data; |
| 7135 | |
| 7136 | rspec = brcms_c_compute_rspec(rxh, plcp); |
| 7137 | if (is_mcs_rate(rspec)) { |
| 7138 | rx_status->rate_idx = rspec & RSPEC_RATE_MASK; |
| 7139 | rx_status->flag |= RX_FLAG_HT; |
| 7140 | if (rspec_is40mhz(rspec)) |
| 7141 | rx_status->flag |= RX_FLAG_40MHZ; |
| 7142 | } else { |
| 7143 | switch (rspec2rate(rspec)) { |
| 7144 | case BRCM_RATE_1M: |
| 7145 | rx_status->rate_idx = 0; |
| 7146 | break; |
| 7147 | case BRCM_RATE_2M: |
| 7148 | rx_status->rate_idx = 1; |
| 7149 | break; |
| 7150 | case BRCM_RATE_5M5: |
| 7151 | rx_status->rate_idx = 2; |
| 7152 | break; |
| 7153 | case BRCM_RATE_11M: |
| 7154 | rx_status->rate_idx = 3; |
| 7155 | break; |
| 7156 | case BRCM_RATE_6M: |
| 7157 | rx_status->rate_idx = 4; |
| 7158 | break; |
| 7159 | case BRCM_RATE_9M: |
| 7160 | rx_status->rate_idx = 5; |
| 7161 | break; |
| 7162 | case BRCM_RATE_12M: |
| 7163 | rx_status->rate_idx = 6; |
| 7164 | break; |
| 7165 | case BRCM_RATE_18M: |
| 7166 | rx_status->rate_idx = 7; |
| 7167 | break; |
| 7168 | case BRCM_RATE_24M: |
| 7169 | rx_status->rate_idx = 8; |
| 7170 | break; |
| 7171 | case BRCM_RATE_36M: |
| 7172 | rx_status->rate_idx = 9; |
| 7173 | break; |
| 7174 | case BRCM_RATE_48M: |
| 7175 | rx_status->rate_idx = 10; |
| 7176 | break; |
| 7177 | case BRCM_RATE_54M: |
| 7178 | rx_status->rate_idx = 11; |
| 7179 | break; |
| 7180 | default: |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7181 | brcms_err(wlc->hw->d11core, |
| 7182 | "%s: Unknown rate\n", __func__); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7183 | } |
| 7184 | |
| 7185 | /* |
| 7186 | * For 5GHz, we should decrease the index as it is |
| 7187 | * a subset of the 2.4G rates. See bitrates field |
| 7188 | * of brcms_band_5GHz_nphy (in mac80211_if.c). |
| 7189 | */ |
| 7190 | if (rx_status->band == IEEE80211_BAND_5GHZ) |
| 7191 | rx_status->rate_idx -= BRCMS_LEGACY_5G_RATE_OFFSET; |
| 7192 | |
| 7193 | /* Determine short preamble and rate_idx */ |
| 7194 | preamble = 0; |
| 7195 | if (is_cck_rate(rspec)) { |
| 7196 | if (rxh->PhyRxStatus_0 & PRXS0_SHORTH) |
| 7197 | rx_status->flag |= RX_FLAG_SHORTPRE; |
| 7198 | } else if (is_ofdm_rate(rspec)) { |
| 7199 | rx_status->flag |= RX_FLAG_SHORTPRE; |
| 7200 | } else { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7201 | brcms_err(wlc->hw->d11core, "%s: Unknown modulation\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7202 | __func__); |
| 7203 | } |
| 7204 | } |
| 7205 | |
| 7206 | if (plcp3_issgi(plcp[3])) |
| 7207 | rx_status->flag |= RX_FLAG_SHORT_GI; |
| 7208 | |
| 7209 | if (rxh->RxStatus1 & RXS_DECERR) { |
| 7210 | rx_status->flag |= RX_FLAG_FAILED_PLCP_CRC; |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7211 | brcms_err(wlc->hw->d11core, "%s: RX_FLAG_FAILED_PLCP_CRC\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7212 | __func__); |
| 7213 | } |
| 7214 | if (rxh->RxStatus1 & RXS_FCSERR) { |
| 7215 | rx_status->flag |= RX_FLAG_FAILED_FCS_CRC; |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7216 | brcms_err(wlc->hw->d11core, "%s: RX_FLAG_FAILED_FCS_CRC\n", |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7217 | __func__); |
| 7218 | } |
| 7219 | } |
| 7220 | |
| 7221 | static void |
| 7222 | brcms_c_recvctl(struct brcms_c_info *wlc, struct d11rxhdr *rxh, |
| 7223 | struct sk_buff *p) |
| 7224 | { |
| 7225 | int len_mpdu; |
| 7226 | struct ieee80211_rx_status rx_status; |
Arend van Spriel | badc4f0 | 2012-04-11 11:52:51 +0200 | [diff] [blame] | 7227 | struct ieee80211_hdr *hdr; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7228 | |
| 7229 | memset(&rx_status, 0, sizeof(rx_status)); |
| 7230 | prep_mac80211_status(wlc, rxh, p, &rx_status); |
| 7231 | |
| 7232 | /* mac header+body length, exclude CRC and plcp header */ |
| 7233 | len_mpdu = p->len - D11_PHY_HDR_LEN - FCS_LEN; |
| 7234 | skb_pull(p, D11_PHY_HDR_LEN); |
| 7235 | __skb_trim(p, len_mpdu); |
| 7236 | |
Arend van Spriel | badc4f0 | 2012-04-11 11:52:51 +0200 | [diff] [blame] | 7237 | /* unmute transmit */ |
| 7238 | if (wlc->hw->suspended_fifos) { |
| 7239 | hdr = (struct ieee80211_hdr *)p->data; |
| 7240 | if (ieee80211_is_beacon(hdr->frame_control)) |
| 7241 | brcms_b_mute(wlc->hw, false); |
| 7242 | } |
| 7243 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7244 | memcpy(IEEE80211_SKB_RXCB(p), &rx_status, sizeof(rx_status)); |
| 7245 | ieee80211_rx_irqsafe(wlc->pub->ieee_hw, p); |
| 7246 | } |
| 7247 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7248 | /* calculate frame duration for Mixed-mode L-SIG spoofing, return |
| 7249 | * number of bytes goes in the length field |
| 7250 | * |
| 7251 | * Formula given by HT PHY Spec v 1.13 |
| 7252 | * len = 3(nsyms + nstream + 3) - 3 |
| 7253 | */ |
| 7254 | u16 |
| 7255 | brcms_c_calc_lsig_len(struct brcms_c_info *wlc, u32 ratespec, |
| 7256 | uint mac_len) |
| 7257 | { |
| 7258 | uint nsyms, len = 0, kNdps; |
| 7259 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7260 | if (is_mcs_rate(ratespec)) { |
| 7261 | uint mcs = ratespec & RSPEC_RATE_MASK; |
| 7262 | int tot_streams = (mcs_2_txstreams(mcs) + 1) + |
| 7263 | rspec_stc(ratespec); |
| 7264 | |
| 7265 | /* |
| 7266 | * the payload duration calculation matches that |
| 7267 | * of regular ofdm |
| 7268 | */ |
| 7269 | /* 1000Ndbps = kbps * 4 */ |
| 7270 | kNdps = mcs_2_rate(mcs, rspec_is40mhz(ratespec), |
| 7271 | rspec_issgi(ratespec)) * 4; |
| 7272 | |
| 7273 | if (rspec_stc(ratespec) == 0) |
| 7274 | nsyms = |
| 7275 | CEIL((APHY_SERVICE_NBITS + 8 * mac_len + |
| 7276 | APHY_TAIL_NBITS) * 1000, kNdps); |
| 7277 | else |
| 7278 | /* STBC needs to have even number of symbols */ |
| 7279 | nsyms = |
| 7280 | 2 * |
| 7281 | CEIL((APHY_SERVICE_NBITS + 8 * mac_len + |
| 7282 | APHY_TAIL_NBITS) * 1000, 2 * kNdps); |
| 7283 | |
| 7284 | /* (+3) account for HT-SIG(2) and HT-STF(1) */ |
| 7285 | nsyms += (tot_streams + 3); |
| 7286 | /* |
| 7287 | * 3 bytes/symbol @ legacy 6Mbps rate |
| 7288 | * (-3) excluding service bits and tail bits |
| 7289 | */ |
| 7290 | len = (3 * nsyms) - 3; |
| 7291 | } |
| 7292 | |
| 7293 | return (u16) len; |
| 7294 | } |
| 7295 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7296 | static void |
| 7297 | brcms_c_mod_prb_rsp_rate_table(struct brcms_c_info *wlc, uint frame_len) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7298 | { |
| 7299 | const struct brcms_c_rateset *rs_dflt; |
| 7300 | struct brcms_c_rateset rs; |
| 7301 | u8 rate; |
| 7302 | u16 entry_ptr; |
| 7303 | u8 plcp[D11_PHY_HDR_LEN]; |
| 7304 | u16 dur, sifs; |
| 7305 | uint i; |
| 7306 | |
| 7307 | sifs = get_sifs(wlc->band); |
| 7308 | |
| 7309 | rs_dflt = brcms_c_rateset_get_hwrs(wlc); |
| 7310 | |
| 7311 | brcms_c_rateset_copy(rs_dflt, &rs); |
| 7312 | brcms_c_rateset_mcs_upd(&rs, wlc->stf->txstreams); |
| 7313 | |
| 7314 | /* |
| 7315 | * walk the phy rate table and update MAC core SHM |
| 7316 | * basic rate table entries |
| 7317 | */ |
| 7318 | for (i = 0; i < rs.count; i++) { |
| 7319 | rate = rs.rates[i] & BRCMS_RATE_MASK; |
| 7320 | |
| 7321 | entry_ptr = brcms_b_rate_shm_offset(wlc->hw, rate); |
| 7322 | |
| 7323 | /* Calculate the Probe Response PLCP for the given rate */ |
| 7324 | brcms_c_compute_plcp(wlc, rate, frame_len, plcp); |
| 7325 | |
| 7326 | /* |
| 7327 | * Calculate the duration of the Probe Response |
| 7328 | * frame plus SIFS for the MAC |
| 7329 | */ |
| 7330 | dur = (u16) brcms_c_calc_frame_time(wlc, rate, |
| 7331 | BRCMS_LONG_PREAMBLE, frame_len); |
| 7332 | dur += sifs; |
| 7333 | |
| 7334 | /* Update the SHM Rate Table entry Probe Response values */ |
| 7335 | brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_PLCP_POS, |
| 7336 | (u16) (plcp[0] + (plcp[1] << 8))); |
| 7337 | brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_PLCP_POS + 2, |
| 7338 | (u16) (plcp[2] + (plcp[3] << 8))); |
| 7339 | brcms_b_write_shm(wlc->hw, entry_ptr + M_RT_PRS_DUR_POS, dur); |
| 7340 | } |
| 7341 | } |
| 7342 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7343 | int brcms_c_get_header_len(void) |
| 7344 | { |
| 7345 | return TXOFF; |
| 7346 | } |
| 7347 | |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 7348 | static void brcms_c_beacon_write(struct brcms_c_info *wlc, |
| 7349 | struct sk_buff *beacon, u16 tim_offset, |
| 7350 | u16 dtim_period, bool bcn0, bool bcn1) |
| 7351 | { |
| 7352 | size_t len; |
| 7353 | struct ieee80211_tx_info *tx_info; |
| 7354 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 7355 | struct ieee80211_hw *ieee_hw = brcms_c_pub(wlc)->ieee_hw; |
| 7356 | |
| 7357 | /* Get tx_info */ |
| 7358 | tx_info = IEEE80211_SKB_CB(beacon); |
| 7359 | |
| 7360 | len = min_t(size_t, beacon->len, BCN_TMPL_LEN); |
| 7361 | wlc->bcn_rspec = ieee80211_get_tx_rate(ieee_hw, tx_info)->hw_value; |
| 7362 | |
| 7363 | brcms_c_compute_plcp(wlc, wlc->bcn_rspec, |
| 7364 | len + FCS_LEN - D11_PHY_HDR_LEN, beacon->data); |
| 7365 | |
| 7366 | /* "Regular" and 16 MBSS but not for 4 MBSS */ |
| 7367 | /* Update the phytxctl for the beacon based on the rspec */ |
| 7368 | brcms_c_beacon_phytxctl_txant_upd(wlc, wlc->bcn_rspec); |
| 7369 | |
| 7370 | if (bcn0) { |
| 7371 | /* write the probe response into the template region */ |
| 7372 | brcms_b_write_template_ram(wlc_hw, T_BCN0_TPL_BASE, |
| 7373 | (len + 3) & ~3, beacon->data); |
| 7374 | |
| 7375 | /* write beacon length to SCR */ |
| 7376 | brcms_b_write_shm(wlc_hw, M_BCN0_FRM_BYTESZ, (u16) len); |
| 7377 | } |
| 7378 | if (bcn1) { |
| 7379 | /* write the probe response into the template region */ |
| 7380 | brcms_b_write_template_ram(wlc_hw, T_BCN1_TPL_BASE, |
| 7381 | (len + 3) & ~3, beacon->data); |
| 7382 | |
| 7383 | /* write beacon length to SCR */ |
| 7384 | brcms_b_write_shm(wlc_hw, M_BCN1_FRM_BYTESZ, (u16) len); |
| 7385 | } |
| 7386 | |
| 7387 | if (tim_offset != 0) { |
| 7388 | brcms_b_write_shm(wlc_hw, M_TIMBPOS_INBEACON, |
| 7389 | tim_offset + D11B_PHY_HDR_LEN); |
| 7390 | brcms_b_write_shm(wlc_hw, M_DOT11_DTIMPERIOD, dtim_period); |
| 7391 | } else { |
| 7392 | brcms_b_write_shm(wlc_hw, M_TIMBPOS_INBEACON, |
| 7393 | len + D11B_PHY_HDR_LEN); |
| 7394 | brcms_b_write_shm(wlc_hw, M_DOT11_DTIMPERIOD, 0); |
| 7395 | } |
| 7396 | } |
| 7397 | |
| 7398 | static void brcms_c_update_beacon_hw(struct brcms_c_info *wlc, |
| 7399 | struct sk_buff *beacon, u16 tim_offset, |
| 7400 | u16 dtim_period) |
| 7401 | { |
| 7402 | struct brcms_hardware *wlc_hw = wlc->hw; |
| 7403 | struct bcma_device *core = wlc_hw->d11core; |
| 7404 | |
| 7405 | /* Hardware beaconing for this config */ |
| 7406 | u32 both_valid = MCMD_BCN0VLD | MCMD_BCN1VLD; |
| 7407 | |
| 7408 | /* Check if both templates are in use, if so sched. an interrupt |
| 7409 | * that will call back into this routine |
| 7410 | */ |
| 7411 | if ((bcma_read32(core, D11REGOFFS(maccommand)) & both_valid) == both_valid) |
| 7412 | /* clear any previous status */ |
| 7413 | bcma_write32(core, D11REGOFFS(macintstatus), MI_BCNTPL); |
| 7414 | |
| 7415 | if (wlc->beacon_template_virgin) { |
| 7416 | wlc->beacon_template_virgin = false; |
| 7417 | brcms_c_beacon_write(wlc, beacon, tim_offset, dtim_period, true, |
| 7418 | true); |
| 7419 | /* mark beacon0 valid */ |
| 7420 | bcma_set32(core, D11REGOFFS(maccommand), MCMD_BCN0VLD); |
| 7421 | return; |
| 7422 | } |
| 7423 | |
| 7424 | /* Check that after scheduling the interrupt both of the |
| 7425 | * templates are still busy. if not clear the int. & remask |
| 7426 | */ |
| 7427 | if ((bcma_read32(core, D11REGOFFS(maccommand)) & both_valid) == both_valid) { |
| 7428 | wlc->defmacintmask |= MI_BCNTPL; |
| 7429 | return; |
| 7430 | } |
| 7431 | |
| 7432 | if (!(bcma_read32(core, D11REGOFFS(maccommand)) & MCMD_BCN0VLD)) { |
| 7433 | brcms_c_beacon_write(wlc, beacon, tim_offset, dtim_period, true, |
| 7434 | false); |
| 7435 | /* mark beacon0 valid */ |
| 7436 | bcma_set32(core, D11REGOFFS(maccommand), MCMD_BCN0VLD); |
| 7437 | return; |
| 7438 | } |
| 7439 | if (!(bcma_read32(core, D11REGOFFS(maccommand)) & MCMD_BCN1VLD)) { |
| 7440 | brcms_c_beacon_write(wlc, beacon, tim_offset, dtim_period, |
| 7441 | false, true); |
| 7442 | /* mark beacon0 valid */ |
| 7443 | bcma_set32(core, D11REGOFFS(maccommand), MCMD_BCN1VLD); |
| 7444 | return; |
| 7445 | } |
| 7446 | return; |
| 7447 | } |
| 7448 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7449 | /* |
| 7450 | * Update all beacons for the system. |
| 7451 | */ |
| 7452 | void brcms_c_update_beacon(struct brcms_c_info *wlc) |
| 7453 | { |
| 7454 | struct brcms_bss_cfg *bsscfg = wlc->bsscfg; |
| 7455 | |
Hauke Mehrtens | 7a6c0b1 | 2013-03-24 01:45:54 +0100 | [diff] [blame] | 7456 | if (wlc->pub->up && (bsscfg->type == BRCMS_TYPE_AP || |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 7457 | bsscfg->type == BRCMS_TYPE_ADHOC)) { |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7458 | /* Clear the soft intmask */ |
| 7459 | wlc->defmacintmask &= ~MI_BCNTPL; |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 7460 | if (!wlc->beacon) |
| 7461 | return; |
| 7462 | brcms_c_update_beacon_hw(wlc, wlc->beacon, |
| 7463 | wlc->beacon_tim_offset, |
| 7464 | wlc->beacon_dtim_period); |
| 7465 | } |
| 7466 | } |
| 7467 | |
| 7468 | void brcms_c_set_new_beacon(struct brcms_c_info *wlc, struct sk_buff *beacon, |
| 7469 | u16 tim_offset, u16 dtim_period) |
| 7470 | { |
| 7471 | if (!beacon) |
| 7472 | return; |
| 7473 | if (wlc->beacon) |
| 7474 | dev_kfree_skb_any(wlc->beacon); |
| 7475 | wlc->beacon = beacon; |
| 7476 | |
| 7477 | /* add PLCP */ |
| 7478 | skb_push(wlc->beacon, D11_PHY_HDR_LEN); |
| 7479 | wlc->beacon_tim_offset = tim_offset; |
| 7480 | wlc->beacon_dtim_period = dtim_period; |
| 7481 | brcms_c_update_beacon(wlc); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7482 | } |
| 7483 | |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 7484 | void brcms_c_set_new_probe_resp(struct brcms_c_info *wlc, |
| 7485 | struct sk_buff *probe_resp) |
| 7486 | { |
| 7487 | if (!probe_resp) |
| 7488 | return; |
| 7489 | if (wlc->probe_resp) |
| 7490 | dev_kfree_skb_any(wlc->probe_resp); |
| 7491 | wlc->probe_resp = probe_resp; |
| 7492 | |
| 7493 | /* add PLCP */ |
| 7494 | skb_push(wlc->probe_resp, D11_PHY_HDR_LEN); |
| 7495 | brcms_c_update_probe_resp(wlc, false); |
| 7496 | } |
| 7497 | |
Hauke Mehrtens | 04d2e42 | 2013-03-24 01:46:01 +0100 | [diff] [blame] | 7498 | void brcms_c_enable_probe_resp(struct brcms_c_info *wlc, bool enable) |
| 7499 | { |
| 7500 | /* |
| 7501 | * prevent ucode from sending probe responses by setting the timeout |
| 7502 | * to 1, it can not send it in that time frame. |
| 7503 | */ |
| 7504 | wlc->prb_resp_timeout = enable ? BRCMS_PRB_RESP_TIMEOUT : 1; |
| 7505 | brcms_b_write_shm(wlc->hw, M_PRS_MAXTIME, wlc->prb_resp_timeout); |
| 7506 | /* TODO: if (enable) => also deactivate receiving of probe request */ |
| 7507 | } |
| 7508 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7509 | /* Write ssid into shared memory */ |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7510 | static void |
| 7511 | brcms_c_shm_ssid_upd(struct brcms_c_info *wlc, struct brcms_bss_cfg *cfg) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7512 | { |
| 7513 | u8 *ssidptr = cfg->SSID; |
| 7514 | u16 base = M_SSID; |
| 7515 | u8 ssidbuf[IEEE80211_MAX_SSID_LEN]; |
| 7516 | |
| 7517 | /* padding the ssid with zero and copy it into shm */ |
| 7518 | memset(ssidbuf, 0, IEEE80211_MAX_SSID_LEN); |
| 7519 | memcpy(ssidbuf, ssidptr, cfg->SSID_len); |
| 7520 | |
| 7521 | brcms_c_copyto_shm(wlc, base, ssidbuf, IEEE80211_MAX_SSID_LEN); |
| 7522 | brcms_b_write_shm(wlc->hw, M_SSIDLEN, (u16) cfg->SSID_len); |
| 7523 | } |
| 7524 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7525 | static void |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7526 | brcms_c_bss_update_probe_resp(struct brcms_c_info *wlc, |
| 7527 | struct brcms_bss_cfg *cfg, |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 7528 | struct sk_buff *probe_resp, |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7529 | bool suspend) |
| 7530 | { |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 7531 | int len; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7532 | |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 7533 | len = min_t(size_t, probe_resp->len, BCN_TMPL_LEN); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7534 | |
| 7535 | if (suspend) |
| 7536 | brcms_c_suspend_mac_and_wait(wlc); |
| 7537 | |
| 7538 | /* write the probe response into the template region */ |
| 7539 | brcms_b_write_template_ram(wlc->hw, T_PRS_TPL_BASE, |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 7540 | (len + 3) & ~3, probe_resp->data); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7541 | |
| 7542 | /* write the length of the probe response frame (+PLCP/-FCS) */ |
| 7543 | brcms_b_write_shm(wlc->hw, M_PRB_RESP_FRM_LEN, (u16) len); |
| 7544 | |
| 7545 | /* write the SSID and SSID length */ |
| 7546 | brcms_c_shm_ssid_upd(wlc, cfg); |
| 7547 | |
| 7548 | /* |
| 7549 | * Write PLCP headers and durations for probe response frames |
| 7550 | * at all rates. Use the actual frame length covered by the |
| 7551 | * PLCP header for the call to brcms_c_mod_prb_rsp_rate_table() |
| 7552 | * by subtracting the PLCP len and adding the FCS. |
| 7553 | */ |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 7554 | brcms_c_mod_prb_rsp_rate_table(wlc, |
| 7555 | (u16)len + FCS_LEN - D11_PHY_HDR_LEN); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7556 | |
| 7557 | if (suspend) |
| 7558 | brcms_c_enable_mac(wlc); |
| 7559 | } |
| 7560 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7561 | void brcms_c_update_probe_resp(struct brcms_c_info *wlc, bool suspend) |
| 7562 | { |
| 7563 | struct brcms_bss_cfg *bsscfg = wlc->bsscfg; |
| 7564 | |
| 7565 | /* update AP or IBSS probe responses */ |
Hauke Mehrtens | 7a6c0b1 | 2013-03-24 01:45:54 +0100 | [diff] [blame] | 7566 | if (wlc->pub->up && (bsscfg->type == BRCMS_TYPE_AP || |
Hauke Mehrtens | 5f1e59e | 2013-03-24 01:46:00 +0100 | [diff] [blame] | 7567 | bsscfg->type == BRCMS_TYPE_ADHOC)) { |
| 7568 | if (!wlc->probe_resp) |
| 7569 | return; |
| 7570 | brcms_c_bss_update_probe_resp(wlc, bsscfg, wlc->probe_resp, |
| 7571 | suspend); |
| 7572 | } |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7573 | } |
| 7574 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7575 | int brcms_b_xmtfifo_sz_get(struct brcms_hardware *wlc_hw, uint fifo, |
| 7576 | uint *blocks) |
| 7577 | { |
| 7578 | if (fifo >= NFIFO) |
| 7579 | return -EINVAL; |
| 7580 | |
| 7581 | *blocks = wlc_hw->xmtfifo_sz[fifo]; |
| 7582 | |
| 7583 | return 0; |
| 7584 | } |
| 7585 | |
| 7586 | void |
| 7587 | brcms_c_set_addrmatch(struct brcms_c_info *wlc, int match_reg_offset, |
| 7588 | const u8 *addr) |
| 7589 | { |
| 7590 | brcms_b_set_addrmatch(wlc->hw, match_reg_offset, addr); |
| 7591 | if (match_reg_offset == RCM_BSSID_OFFSET) |
| 7592 | memcpy(wlc->bsscfg->BSSID, addr, ETH_ALEN); |
| 7593 | } |
| 7594 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7595 | /* |
| 7596 | * Flag 'scan in progress' to withhold dynamic phy calibration |
| 7597 | */ |
| 7598 | void brcms_c_scan_start(struct brcms_c_info *wlc) |
| 7599 | { |
| 7600 | wlc_phy_hold_upd(wlc->band->pi, PHY_HOLD_FOR_SCAN, true); |
| 7601 | } |
| 7602 | |
| 7603 | void brcms_c_scan_stop(struct brcms_c_info *wlc) |
| 7604 | { |
| 7605 | wlc_phy_hold_upd(wlc->band->pi, PHY_HOLD_FOR_SCAN, false); |
| 7606 | } |
| 7607 | |
| 7608 | void brcms_c_associate_upd(struct brcms_c_info *wlc, bool state) |
| 7609 | { |
| 7610 | wlc->pub->associated = state; |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7611 | } |
| 7612 | |
| 7613 | /* |
| 7614 | * When a remote STA/AP is removed by Mac80211, or when it can no longer accept |
| 7615 | * AMPDU traffic, packets pending in hardware have to be invalidated so that |
| 7616 | * when later on hardware releases them, they can be handled appropriately. |
| 7617 | */ |
| 7618 | void brcms_c_inval_dma_pkts(struct brcms_hardware *hw, |
| 7619 | struct ieee80211_sta *sta, |
| 7620 | void (*dma_callback_fn)) |
| 7621 | { |
| 7622 | struct dma_pub *dmah; |
| 7623 | int i; |
| 7624 | for (i = 0; i < NFIFO; i++) { |
| 7625 | dmah = hw->di[i]; |
| 7626 | if (dmah != NULL) |
| 7627 | dma_walk_packets(dmah, dma_callback_fn, sta); |
| 7628 | } |
| 7629 | } |
| 7630 | |
| 7631 | int brcms_c_get_curband(struct brcms_c_info *wlc) |
| 7632 | { |
| 7633 | return wlc->band->bandunit; |
| 7634 | } |
| 7635 | |
Arend van Spriel | 7b2385b | 2013-02-02 14:36:50 +0100 | [diff] [blame] | 7636 | bool brcms_c_tx_flush_completed(struct brcms_c_info *wlc) |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7637 | { |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 7638 | int i; |
Stanislaw Gruszka | f96b08a | 2012-01-17 12:38:50 +0100 | [diff] [blame] | 7639 | |
Seth Forshee | e041f65 | 2012-11-15 08:07:56 -0600 | [diff] [blame] | 7640 | /* Kick DMA to send any pending AMPDU */ |
| 7641 | for (i = 0; i < ARRAY_SIZE(wlc->hw->di); i++) |
| 7642 | if (wlc->hw->di[i]) |
Arend van Spriel | 7b2385b | 2013-02-02 14:36:50 +0100 | [diff] [blame] | 7643 | dma_kick_tx(wlc->hw->di[i]); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7644 | |
Arend van Spriel | 7b2385b | 2013-02-02 14:36:50 +0100 | [diff] [blame] | 7645 | return !brcms_txpktpendtot(wlc); |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7646 | } |
| 7647 | |
| 7648 | void brcms_c_set_beacon_listen_interval(struct brcms_c_info *wlc, u8 interval) |
| 7649 | { |
| 7650 | wlc->bcn_li_bcn = interval; |
| 7651 | if (wlc->pub->up) |
| 7652 | brcms_c_bcn_li_upd(wlc); |
| 7653 | } |
| 7654 | |
Hauke Mehrtens | 39b2d36 | 2013-03-24 01:45:49 +0100 | [diff] [blame] | 7655 | u64 brcms_c_tsf_get(struct brcms_c_info *wlc) |
| 7656 | { |
| 7657 | u32 tsf_h, tsf_l; |
| 7658 | u64 tsf; |
| 7659 | |
| 7660 | brcms_b_read_tsf(wlc->hw, &tsf_l, &tsf_h); |
| 7661 | |
| 7662 | tsf = tsf_h; |
| 7663 | tsf <<= 32; |
| 7664 | tsf |= tsf_l; |
| 7665 | |
| 7666 | return tsf; |
| 7667 | } |
| 7668 | |
| 7669 | void brcms_c_tsf_set(struct brcms_c_info *wlc, u64 tsf) |
| 7670 | { |
| 7671 | u32 tsf_h, tsf_l; |
| 7672 | |
| 7673 | brcms_c_time_lock(wlc); |
| 7674 | |
| 7675 | tsf_l = tsf; |
| 7676 | tsf_h = (tsf >> 32); |
| 7677 | |
| 7678 | /* read the tsf timer low, then high to get an atomic read */ |
| 7679 | bcma_write32(wlc->hw->d11core, D11REGOFFS(tsf_timerlow), tsf_l); |
| 7680 | bcma_write32(wlc->hw->d11core, D11REGOFFS(tsf_timerhigh), tsf_h); |
| 7681 | |
| 7682 | brcms_c_time_unlock(wlc); |
| 7683 | } |
| 7684 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 7685 | int brcms_c_set_tx_power(struct brcms_c_info *wlc, int txpwr) |
| 7686 | { |
| 7687 | uint qdbm; |
| 7688 | |
| 7689 | /* Remove override bit and clip to max qdbm value */ |
| 7690 | qdbm = min_t(uint, txpwr * BRCMS_TXPWR_DB_FACTOR, 0xff); |
| 7691 | return wlc_phy_txpower_set(wlc->band->pi, qdbm, false); |
| 7692 | } |
| 7693 | |
| 7694 | int brcms_c_get_tx_power(struct brcms_c_info *wlc) |
| 7695 | { |
| 7696 | uint qdbm; |
| 7697 | bool override; |
| 7698 | |
| 7699 | wlc_phy_txpower_get(wlc->band->pi, &qdbm, &override); |
| 7700 | |
| 7701 | /* Return qdbm units */ |
| 7702 | return (int)(qdbm / BRCMS_TXPWR_DB_FACTOR); |
| 7703 | } |
| 7704 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7705 | /* Process received frames */ |
| 7706 | /* |
| 7707 | * Return true if more frames need to be processed. false otherwise. |
| 7708 | * Param 'bound' indicates max. # frames to process before break out. |
| 7709 | */ |
| 7710 | static void brcms_c_recv(struct brcms_c_info *wlc, struct sk_buff *p) |
| 7711 | { |
| 7712 | struct d11rxhdr *rxh; |
| 7713 | struct ieee80211_hdr *h; |
| 7714 | uint len; |
| 7715 | bool is_amsdu; |
| 7716 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7717 | /* frame starts with rxhdr */ |
| 7718 | rxh = (struct d11rxhdr *) (p->data); |
| 7719 | |
| 7720 | /* strip off rxhdr */ |
| 7721 | skb_pull(p, BRCMS_HWRXOFF); |
| 7722 | |
| 7723 | /* MAC inserts 2 pad bytes for a4 headers or QoS or A-MSDU subframes */ |
| 7724 | if (rxh->RxStatus1 & RXS_PBPRES) { |
| 7725 | if (p->len < 2) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7726 | brcms_err(wlc->hw->d11core, |
| 7727 | "wl%d: recv: rcvd runt of len %d\n", |
| 7728 | wlc->pub->unit, p->len); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7729 | goto toss; |
| 7730 | } |
| 7731 | skb_pull(p, 2); |
| 7732 | } |
| 7733 | |
| 7734 | h = (struct ieee80211_hdr *)(p->data + D11_PHY_HDR_LEN); |
| 7735 | len = p->len; |
| 7736 | |
| 7737 | if (rxh->RxStatus1 & RXS_FCSERR) { |
Alwin Beukers | be66766 | 2011-11-22 17:21:43 -0800 | [diff] [blame] | 7738 | if (!(wlc->filter_flags & FIF_FCSFAIL)) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7739 | goto toss; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7740 | } |
| 7741 | |
| 7742 | /* check received pkt has at least frame control field */ |
| 7743 | if (len < D11_PHY_HDR_LEN + sizeof(h->frame_control)) |
| 7744 | goto toss; |
| 7745 | |
| 7746 | /* not supporting A-MSDU */ |
| 7747 | is_amsdu = rxh->RxStatus2 & RXS_AMSDU_MASK; |
| 7748 | if (is_amsdu) |
| 7749 | goto toss; |
| 7750 | |
| 7751 | brcms_c_recvctl(wlc, rxh, p); |
| 7752 | return; |
| 7753 | |
| 7754 | toss: |
| 7755 | brcmu_pkt_buf_free_skb(p); |
| 7756 | } |
| 7757 | |
| 7758 | /* Process received frames */ |
| 7759 | /* |
| 7760 | * Return true if more frames need to be processed. false otherwise. |
| 7761 | * Param 'bound' indicates max. # frames to process before break out. |
| 7762 | */ |
| 7763 | static bool |
| 7764 | brcms_b_recv(struct brcms_hardware *wlc_hw, uint fifo, bool bound) |
| 7765 | { |
| 7766 | struct sk_buff *p; |
Arend van Spriel | 3fd172d | 2011-10-21 16:16:31 +0200 | [diff] [blame] | 7767 | struct sk_buff *next = NULL; |
| 7768 | struct sk_buff_head recv_frames; |
| 7769 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7770 | uint n = 0; |
| 7771 | uint bound_limit = bound ? RXBND : -1; |
Geert Uytterhoeven | c2397bb | 2012-12-22 22:07:14 +0100 | [diff] [blame] | 7772 | bool morepending = false; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7773 | |
Arend van Spriel | 3fd172d | 2011-10-21 16:16:31 +0200 | [diff] [blame] | 7774 | skb_queue_head_init(&recv_frames); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7775 | |
Arend van Spriel | 3fd172d | 2011-10-21 16:16:31 +0200 | [diff] [blame] | 7776 | /* gather received frames */ |
Piotr Haber | 57fe504 | 2012-11-28 21:44:07 +0100 | [diff] [blame] | 7777 | do { |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7778 | /* !give others some time to run! */ |
Piotr Haber | 57fe504 | 2012-11-28 21:44:07 +0100 | [diff] [blame] | 7779 | if (n >= bound_limit) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7780 | break; |
Piotr Haber | 57fe504 | 2012-11-28 21:44:07 +0100 | [diff] [blame] | 7781 | |
| 7782 | morepending = dma_rx(wlc_hw->di[fifo], &recv_frames); |
| 7783 | n++; |
| 7784 | } while (morepending); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7785 | |
| 7786 | /* post more rbufs */ |
| 7787 | dma_rxfill(wlc_hw->di[fifo]); |
| 7788 | |
| 7789 | /* process each frame */ |
Arend van Spriel | 3fd172d | 2011-10-21 16:16:31 +0200 | [diff] [blame] | 7790 | skb_queue_walk_safe(&recv_frames, p, next) { |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7791 | struct d11rxhdr_le *rxh_le; |
| 7792 | struct d11rxhdr *rxh; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7793 | |
Arend van Spriel | 3fd172d | 2011-10-21 16:16:31 +0200 | [diff] [blame] | 7794 | skb_unlink(p, &recv_frames); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7795 | rxh_le = (struct d11rxhdr_le *)p->data; |
| 7796 | rxh = (struct d11rxhdr *)p->data; |
| 7797 | |
| 7798 | /* fixup rx header endianness */ |
| 7799 | rxh->RxFrameSize = le16_to_cpu(rxh_le->RxFrameSize); |
| 7800 | rxh->PhyRxStatus_0 = le16_to_cpu(rxh_le->PhyRxStatus_0); |
| 7801 | rxh->PhyRxStatus_1 = le16_to_cpu(rxh_le->PhyRxStatus_1); |
| 7802 | rxh->PhyRxStatus_2 = le16_to_cpu(rxh_le->PhyRxStatus_2); |
| 7803 | rxh->PhyRxStatus_3 = le16_to_cpu(rxh_le->PhyRxStatus_3); |
| 7804 | rxh->PhyRxStatus_4 = le16_to_cpu(rxh_le->PhyRxStatus_4); |
| 7805 | rxh->PhyRxStatus_5 = le16_to_cpu(rxh_le->PhyRxStatus_5); |
| 7806 | rxh->RxStatus1 = le16_to_cpu(rxh_le->RxStatus1); |
| 7807 | rxh->RxStatus2 = le16_to_cpu(rxh_le->RxStatus2); |
| 7808 | rxh->RxTSFTime = le16_to_cpu(rxh_le->RxTSFTime); |
| 7809 | rxh->RxChan = le16_to_cpu(rxh_le->RxChan); |
| 7810 | |
| 7811 | brcms_c_recv(wlc_hw->wlc, p); |
| 7812 | } |
| 7813 | |
Piotr Haber | 57fe504 | 2012-11-28 21:44:07 +0100 | [diff] [blame] | 7814 | return morepending; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7815 | } |
| 7816 | |
| 7817 | /* second-level interrupt processing |
| 7818 | * Return true if another dpc needs to be re-scheduled. false otherwise. |
| 7819 | * Param 'bounded' indicates if applicable loops should be bounded. |
| 7820 | */ |
| 7821 | bool brcms_c_dpc(struct brcms_c_info *wlc, bool bounded) |
| 7822 | { |
| 7823 | u32 macintstatus; |
| 7824 | struct brcms_hardware *wlc_hw = wlc->hw; |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7825 | struct bcma_device *core = wlc_hw->d11core; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7826 | |
| 7827 | if (brcms_deviceremoved(wlc)) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7828 | brcms_err(core, "wl%d: %s: dead chip\n", wlc_hw->unit, |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7829 | __func__); |
| 7830 | brcms_down(wlc->wl); |
| 7831 | return false; |
| 7832 | } |
| 7833 | |
| 7834 | /* grab and clear the saved software intstatus bits */ |
| 7835 | macintstatus = wlc->macintstatus; |
| 7836 | wlc->macintstatus = 0; |
| 7837 | |
Seth Forshee | 229a41d | 2012-11-15 08:08:06 -0600 | [diff] [blame] | 7838 | brcms_dbg_int(core, "wl%d: macintstatus 0x%x\n", |
| 7839 | wlc_hw->unit, macintstatus); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7840 | |
| 7841 | WARN_ON(macintstatus & MI_PRQ); /* PRQ Interrupt in non-MBSS */ |
| 7842 | |
| 7843 | /* tx status */ |
| 7844 | if (macintstatus & MI_TFS) { |
| 7845 | bool fatal; |
| 7846 | if (brcms_b_txstatus(wlc->hw, bounded, &fatal)) |
| 7847 | wlc->macintstatus |= MI_TFS; |
| 7848 | if (fatal) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7849 | brcms_err(core, "MI_TFS: fatal\n"); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7850 | goto fatal; |
| 7851 | } |
| 7852 | } |
| 7853 | |
| 7854 | if (macintstatus & (MI_TBTT | MI_DTIM_TBTT)) |
| 7855 | brcms_c_tbtt(wlc); |
| 7856 | |
| 7857 | /* ATIM window end */ |
| 7858 | if (macintstatus & MI_ATIMWINEND) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7859 | brcms_dbg_info(core, "end of ATIM window\n"); |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7860 | bcma_set32(core, D11REGOFFS(maccommand), wlc->qvalid); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7861 | wlc->qvalid = 0; |
| 7862 | } |
| 7863 | |
| 7864 | /* |
| 7865 | * received data or control frame, MI_DMAINT is |
| 7866 | * indication of RX_FIFO interrupt |
| 7867 | */ |
| 7868 | if (macintstatus & MI_DMAINT) |
| 7869 | if (brcms_b_recv(wlc_hw, RX_FIFO, bounded)) |
| 7870 | wlc->macintstatus |= MI_DMAINT; |
| 7871 | |
| 7872 | /* noise sample collected */ |
| 7873 | if (macintstatus & MI_BG_NOISE) |
| 7874 | wlc_phy_noise_sample_intr(wlc_hw->band->pi); |
| 7875 | |
| 7876 | if (macintstatus & MI_GP0) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7877 | brcms_err(core, "wl%d: PSM microcode watchdog fired at %d " |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 7878 | "(seconds). Resetting.\n", wlc_hw->unit, wlc_hw->now); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7879 | |
| 7880 | printk_once("%s : PSM Watchdog, chipid 0x%x, chiprev 0x%x\n", |
Arend van Spriel | b2ffec4 | 2011-12-08 15:06:45 -0800 | [diff] [blame] | 7881 | __func__, ai_get_chip_id(wlc_hw->sih), |
| 7882 | ai_get_chiprev(wlc_hw->sih)); |
Roland Vossen | c261bdf | 2011-10-18 14:03:04 +0200 | [diff] [blame] | 7883 | brcms_fatal_error(wlc_hw->wlc->wl); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7884 | } |
| 7885 | |
| 7886 | /* gptimer timeout */ |
| 7887 | if (macintstatus & MI_TO) |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7888 | bcma_write32(core, D11REGOFFS(gptimer), 0); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7889 | |
| 7890 | if (macintstatus & MI_RFDISABLE) { |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7891 | brcms_dbg_info(core, "wl%d: BMAC Detected a change on the" |
| 7892 | " RF Disable Input\n", wlc_hw->unit); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7893 | brcms_rfkill_set_hw_state(wlc->wl); |
| 7894 | } |
| 7895 | |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 7896 | /* BCN template is available */ |
| 7897 | if (macintstatus & MI_BCNTPL) |
| 7898 | brcms_c_update_beacon(wlc); |
| 7899 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7900 | /* it isn't done and needs to be resched if macintstatus is non-zero */ |
| 7901 | return wlc->macintstatus != 0; |
| 7902 | |
| 7903 | fatal: |
Roland Vossen | c261bdf | 2011-10-18 14:03:04 +0200 | [diff] [blame] | 7904 | brcms_fatal_error(wlc_hw->wlc->wl); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7905 | return wlc->macintstatus != 0; |
| 7906 | } |
| 7907 | |
Roland Vossen | dc46012 | 2011-10-21 16:16:28 +0200 | [diff] [blame] | 7908 | void brcms_c_init(struct brcms_c_info *wlc, bool mute_tx) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7909 | { |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7910 | struct bcma_device *core = wlc->hw->d11core; |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 7911 | struct ieee80211_channel *ch = wlc->pub->ieee_hw->conf.chandef.chan; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7912 | u16 chanspec; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7913 | |
Seth Forshee | b353dda | 2012-11-15 08:08:03 -0600 | [diff] [blame] | 7914 | brcms_dbg_info(core, "wl%d\n", wlc->pub->unit); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7915 | |
Seth Forshee | 9169129 | 2012-06-16 07:47:49 -0500 | [diff] [blame] | 7916 | chanspec = ch20mhz_chspec(ch->hw_value); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7917 | |
Roland Vossen | a8bc491 | 2011-10-21 16:16:25 +0200 | [diff] [blame] | 7918 | brcms_b_init(wlc->hw, chanspec); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7919 | |
| 7920 | /* update beacon listen interval */ |
| 7921 | brcms_c_bcn_li_upd(wlc); |
| 7922 | |
| 7923 | /* write ethernet address to core */ |
| 7924 | brcms_c_set_mac(wlc->bsscfg); |
| 7925 | brcms_c_set_bssid(wlc->bsscfg); |
| 7926 | |
| 7927 | /* Update tsf_cfprep if associated and up */ |
Hauke Mehrtens | 7a6c0b1 | 2013-03-24 01:45:54 +0100 | [diff] [blame] | 7928 | if (wlc->pub->associated && wlc->pub->up) { |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7929 | u32 bi; |
| 7930 | |
| 7931 | /* get beacon period and convert to uS */ |
| 7932 | bi = wlc->bsscfg->current_bss->beacon_period << 10; |
| 7933 | /* |
| 7934 | * update since init path would reset |
| 7935 | * to default value |
| 7936 | */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7937 | bcma_write32(core, D11REGOFFS(tsf_cfprep), |
| 7938 | bi << CFPREP_CBI_SHIFT); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7939 | |
| 7940 | /* Update maccontrol PM related bits */ |
| 7941 | brcms_c_set_ps_ctrl(wlc); |
| 7942 | } |
| 7943 | |
| 7944 | brcms_c_bandinit_ordered(wlc, chanspec); |
| 7945 | |
| 7946 | /* init probe response timeout */ |
| 7947 | brcms_b_write_shm(wlc->hw, M_PRS_MAXTIME, wlc->prb_resp_timeout); |
| 7948 | |
| 7949 | /* init max burst txop (framebursting) */ |
| 7950 | brcms_b_write_shm(wlc->hw, M_MBURST_TXOP, |
| 7951 | (wlc-> |
| 7952 | _rifs ? (EDCF_AC_VO_TXOP_AP << 5) : MAXFRAMEBURST_TXOP)); |
| 7953 | |
| 7954 | /* initialize maximum allowed duty cycle */ |
| 7955 | brcms_c_duty_cycle_set(wlc, wlc->tx_duty_cycle_ofdm, true, true); |
| 7956 | brcms_c_duty_cycle_set(wlc, wlc->tx_duty_cycle_cck, false, true); |
| 7957 | |
| 7958 | /* |
| 7959 | * Update some shared memory locations related to |
| 7960 | * max AMPDU size allowed to received |
| 7961 | */ |
| 7962 | brcms_c_ampdu_shm_upd(wlc->ampdu); |
| 7963 | |
| 7964 | /* band-specific inits */ |
| 7965 | brcms_c_bsinit(wlc); |
| 7966 | |
| 7967 | /* Enable EDCF mode (while the MAC is suspended) */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7968 | bcma_set16(core, D11REGOFFS(ifs_ctl), IFS_USEEDCF); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7969 | brcms_c_edcf_setparams(wlc, false); |
| 7970 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7971 | /* read the ucode version if we have not yet done so */ |
| 7972 | if (wlc->ucode_rev == 0) { |
Hauke Mehrtens | 7626cf1 | 2013-02-24 16:41:34 +0100 | [diff] [blame] | 7973 | u16 rev; |
| 7974 | u16 patch; |
| 7975 | |
| 7976 | rev = brcms_b_read_shm(wlc->hw, M_BOM_REV_MAJOR); |
| 7977 | patch = brcms_b_read_shm(wlc->hw, M_BOM_REV_MINOR); |
| 7978 | wlc->ucode_rev = (rev << NBITS(u16)) | patch; |
| 7979 | snprintf(wlc->wiphy->fw_version, |
| 7980 | sizeof(wlc->wiphy->fw_version), "%u.%u", rev, patch); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7981 | } |
| 7982 | |
| 7983 | /* ..now really unleash hell (allow the MAC out of suspend) */ |
| 7984 | brcms_c_enable_mac(wlc); |
| 7985 | |
Roland Vossen | a8bc491 | 2011-10-21 16:16:25 +0200 | [diff] [blame] | 7986 | /* suspend the tx fifos and mute the phy for preism cac time */ |
| 7987 | if (mute_tx) |
Roland Vossen | c6c4489 | 2011-10-21 16:16:26 +0200 | [diff] [blame] | 7988 | brcms_b_mute(wlc->hw, true); |
Roland Vossen | a8bc491 | 2011-10-21 16:16:25 +0200 | [diff] [blame] | 7989 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7990 | /* enable the RF Disable Delay timer */ |
Arend van Spriel | 16d2812 | 2011-12-08 15:06:51 -0800 | [diff] [blame] | 7991 | bcma_write32(core, D11REGOFFS(rfdisabledly), RFDISABLE_DEFAULT); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7992 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 7993 | /* |
| 7994 | * Initialize WME parameters; if they haven't been set by some other |
| 7995 | * mechanism (IOVar, etc) then read them from the hardware. |
| 7996 | */ |
| 7997 | if (GFIELD(wlc->wme_retries[0], EDCF_SHORT) == 0) { |
| 7998 | /* Uninitialized; read from HW */ |
| 7999 | int ac; |
| 8000 | |
Arend van Spriel | b7eec42 | 2011-11-10 20:30:18 +0100 | [diff] [blame] | 8001 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8002 | wlc->wme_retries[ac] = |
| 8003 | brcms_b_read_shm(wlc->hw, M_AC_TXLMT_ADDR(ac)); |
| 8004 | } |
| 8005 | } |
| 8006 | |
| 8007 | /* |
| 8008 | * The common driver entry routine. Error codes should be unique |
| 8009 | */ |
| 8010 | struct brcms_c_info * |
Arend van Spriel | b63337a | 2011-12-08 15:06:47 -0800 | [diff] [blame] | 8011 | brcms_c_attach(struct brcms_info *wl, struct bcma_device *core, uint unit, |
| 8012 | bool piomode, uint *perr) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8013 | { |
| 8014 | struct brcms_c_info *wlc; |
| 8015 | uint err = 0; |
| 8016 | uint i, j; |
| 8017 | struct brcms_pub *pub; |
| 8018 | |
| 8019 | /* allocate struct brcms_c_info state and its substructures */ |
Joe Perches | 2c20889 | 2012-06-04 12:44:17 +0000 | [diff] [blame] | 8020 | wlc = brcms_c_attach_malloc(unit, &err, 0); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8021 | if (wlc == NULL) |
| 8022 | goto fail; |
| 8023 | wlc->wiphy = wl->wiphy; |
| 8024 | pub = wlc->pub; |
| 8025 | |
Joe Perches | 8ae7465 | 2012-01-15 00:38:38 -0800 | [diff] [blame] | 8026 | #if defined(DEBUG) |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8027 | wlc_info_dbg = wlc; |
| 8028 | #endif |
| 8029 | |
| 8030 | wlc->band = wlc->bandstate[0]; |
| 8031 | wlc->core = wlc->corestate; |
| 8032 | wlc->wl = wl; |
| 8033 | pub->unit = unit; |
| 8034 | pub->_piomode = piomode; |
| 8035 | wlc->bandinit_pending = false; |
Hauke Mehrtens | af44e25 | 2013-03-24 01:45:58 +0100 | [diff] [blame] | 8036 | wlc->beacon_template_virgin = true; |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8037 | |
| 8038 | /* populate struct brcms_c_info with default values */ |
| 8039 | brcms_c_info_init(wlc, unit); |
| 8040 | |
| 8041 | /* update sta/ap related parameters */ |
| 8042 | brcms_c_ap_upd(wlc); |
| 8043 | |
| 8044 | /* |
| 8045 | * low level attach steps(all hw accesses go |
| 8046 | * inside, no more in rest of the attach) |
| 8047 | */ |
Arend van Spriel | b63337a | 2011-12-08 15:06:47 -0800 | [diff] [blame] | 8048 | err = brcms_b_attach(wlc, core, unit, piomode); |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8049 | if (err) |
| 8050 | goto fail; |
| 8051 | |
| 8052 | brcms_c_protection_upd(wlc, BRCMS_PROT_N_PAM_OVR, OFF); |
| 8053 | |
| 8054 | pub->phy_11ncapable = BRCMS_PHY_11N_CAP(wlc->band); |
| 8055 | |
| 8056 | /* disable allowed duty cycle */ |
| 8057 | wlc->tx_duty_cycle_ofdm = 0; |
| 8058 | wlc->tx_duty_cycle_cck = 0; |
| 8059 | |
| 8060 | brcms_c_stf_phy_chain_calc(wlc); |
| 8061 | |
| 8062 | /* txchain 1: txant 0, txchain 2: txant 1 */ |
| 8063 | if (BRCMS_ISNPHY(wlc->band) && (wlc->stf->txstreams == 1)) |
| 8064 | wlc->stf->txant = wlc->stf->hw_txchain - 1; |
| 8065 | |
| 8066 | /* push to BMAC driver */ |
| 8067 | wlc_phy_stf_chain_init(wlc->band->pi, wlc->stf->hw_txchain, |
| 8068 | wlc->stf->hw_rxchain); |
| 8069 | |
| 8070 | /* pull up some info resulting from the low attach */ |
| 8071 | for (i = 0; i < NFIFO; i++) |
| 8072 | wlc->core->txavail[i] = wlc->hw->txavail[i]; |
| 8073 | |
| 8074 | memcpy(&wlc->perm_etheraddr, &wlc->hw->etheraddr, ETH_ALEN); |
| 8075 | memcpy(&pub->cur_etheraddr, &wlc->hw->etheraddr, ETH_ALEN); |
| 8076 | |
| 8077 | for (j = 0; j < wlc->pub->_nbands; j++) { |
| 8078 | wlc->band = wlc->bandstate[j]; |
| 8079 | |
| 8080 | if (!brcms_c_attach_stf_ant_init(wlc)) { |
| 8081 | err = 24; |
| 8082 | goto fail; |
| 8083 | } |
| 8084 | |
| 8085 | /* default contention windows size limits */ |
| 8086 | wlc->band->CWmin = APHY_CWMIN; |
| 8087 | wlc->band->CWmax = PHY_CWMAX; |
| 8088 | |
| 8089 | /* init gmode value */ |
| 8090 | if (wlc->band->bandtype == BRCM_BAND_2G) { |
| 8091 | wlc->band->gmode = GMODE_AUTO; |
| 8092 | brcms_c_protection_upd(wlc, BRCMS_PROT_G_USER, |
| 8093 | wlc->band->gmode); |
| 8094 | } |
| 8095 | |
| 8096 | /* init _n_enab supported mode */ |
| 8097 | if (BRCMS_PHY_11N_CAP(wlc->band)) { |
| 8098 | pub->_n_enab = SUPPORT_11N; |
| 8099 | brcms_c_protection_upd(wlc, BRCMS_PROT_N_USER, |
| 8100 | ((pub->_n_enab == |
| 8101 | SUPPORT_11N) ? WL_11N_2x2 : |
| 8102 | WL_11N_3x3)); |
| 8103 | } |
| 8104 | |
| 8105 | /* init per-band default rateset, depend on band->gmode */ |
| 8106 | brcms_default_rateset(wlc, &wlc->band->defrateset); |
| 8107 | |
| 8108 | /* fill in hw_rateset */ |
| 8109 | brcms_c_rateset_filter(&wlc->band->defrateset, |
| 8110 | &wlc->band->hw_rateset, false, |
| 8111 | BRCMS_RATES_CCK_OFDM, BRCMS_RATE_MASK, |
| 8112 | (bool) (wlc->pub->_n_enab & SUPPORT_11N)); |
| 8113 | } |
| 8114 | |
| 8115 | /* |
| 8116 | * update antenna config due to |
| 8117 | * wlc->stf->txant/txchain/ant_rx_ovr change |
| 8118 | */ |
| 8119 | brcms_c_stf_phy_txant_upd(wlc); |
| 8120 | |
| 8121 | /* attach each modules */ |
| 8122 | err = brcms_c_attach_module(wlc); |
| 8123 | if (err != 0) |
| 8124 | goto fail; |
| 8125 | |
| 8126 | if (!brcms_c_timers_init(wlc, unit)) { |
| 8127 | wiphy_err(wl->wiphy, "wl%d: %s: init_timer failed\n", unit, |
| 8128 | __func__); |
| 8129 | err = 32; |
| 8130 | goto fail; |
| 8131 | } |
| 8132 | |
| 8133 | /* depend on rateset, gmode */ |
| 8134 | wlc->cmi = brcms_c_channel_mgr_attach(wlc); |
| 8135 | if (!wlc->cmi) { |
| 8136 | wiphy_err(wl->wiphy, "wl%d: %s: channel_mgr_attach failed" |
| 8137 | "\n", unit, __func__); |
| 8138 | err = 33; |
| 8139 | goto fail; |
| 8140 | } |
| 8141 | |
| 8142 | /* init default when all parameters are ready, i.e. ->rateset */ |
| 8143 | brcms_c_bss_default_init(wlc); |
| 8144 | |
| 8145 | /* |
| 8146 | * Complete the wlc default state initializations.. |
| 8147 | */ |
| 8148 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8149 | wlc->bsscfg->wlc = wlc; |
| 8150 | |
| 8151 | wlc->mimoft = FT_HT; |
| 8152 | wlc->mimo_40txbw = AUTO; |
| 8153 | wlc->ofdm_40txbw = AUTO; |
| 8154 | wlc->cck_40txbw = AUTO; |
| 8155 | brcms_c_update_mimo_band_bwcap(wlc, BRCMS_N_BW_20IN2G_40IN5G); |
| 8156 | |
| 8157 | /* Set default values of SGI */ |
| 8158 | if (BRCMS_SGI_CAP_PHY(wlc)) { |
| 8159 | brcms_c_ht_update_sgi_rx(wlc, (BRCMS_N_SGI_20 | |
| 8160 | BRCMS_N_SGI_40)); |
| 8161 | } else if (BRCMS_ISSSLPNPHY(wlc->band)) { |
| 8162 | brcms_c_ht_update_sgi_rx(wlc, (BRCMS_N_SGI_20 | |
| 8163 | BRCMS_N_SGI_40)); |
| 8164 | } else { |
| 8165 | brcms_c_ht_update_sgi_rx(wlc, 0); |
| 8166 | } |
| 8167 | |
Alwin Beukers | 94bdc2a | 2011-10-12 20:51:13 +0200 | [diff] [blame] | 8168 | brcms_b_antsel_set(wlc->hw, wlc->asi->antsel_avail); |
| 8169 | |
| 8170 | if (perr) |
| 8171 | *perr = 0; |
| 8172 | |
| 8173 | return wlc; |
| 8174 | |
| 8175 | fail: |
| 8176 | wiphy_err(wl->wiphy, "wl%d: %s: failed with err %d\n", |
| 8177 | unit, __func__, err); |
| 8178 | if (wlc) |
| 8179 | brcms_c_detach(wlc); |
| 8180 | |
| 8181 | if (perr) |
| 8182 | *perr = err; |
| 8183 | return NULL; |
| 8184 | } |