blob: 5ff8831d2fa860f7b42e7240e8a6c9456514da30 [file] [log] [blame]
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001/*
2 * Copyright (c) 2010 Broadcom Corporation
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <wlc_cfg.h>
18
19#ifdef WLANTSEL
20
Brett Rudley33279892010-10-01 18:03:27 -070021#include <linux/kernel.h>
22#include <linuxver.h>
Henry Ptasinskia9533e72010-09-08 21:04:42 -070023#include <bcmdefs.h>
24#include <osl.h>
25#include <bcmutils.h>
26#include <siutils.h>
Henry Ptasinskia9533e72010-09-08 21:04:42 -070027#include <wlioctl.h>
Henry Ptasinskia9533e72010-09-08 21:04:42 -070028
Henry Ptasinskia9533e72010-09-08 21:04:42 -070029#include <d11.h>
30#include <wlc_rate.h>
31#include <wlc_key.h>
32#include <wlc_pub.h>
Henry Ptasinskia9533e72010-09-08 21:04:42 -070033#include <wl_dbg.h>
34#include <wlc_mac80211.h>
35#include <wlc_bmac.h>
36#include <wlc_phy_hal.h>
37#include <wl_export.h>
38#include <wlc_antsel.h>
39#include <wlc_phy_shim.h>
40
41/* useful macros */
42#define WLC_ANTSEL_11N_0(ant) ((((ant) & ANT_SELCFG_MASK) >> 4) & 0xf)
43#define WLC_ANTSEL_11N_1(ant) (((ant) & ANT_SELCFG_MASK) & 0xf)
44#define WLC_ANTIDX_11N(ant) (((WLC_ANTSEL_11N_0(ant)) << 2) + (WLC_ANTSEL_11N_1(ant)))
45#define WLC_ANT_ISAUTO_11N(ant) (((ant) & ANT_SELCFG_AUTO) == ANT_SELCFG_AUTO)
46#define WLC_ANTSEL_11N(ant) ((ant) & ANT_SELCFG_MASK)
47
48/* antenna switch */
49/* defines for no boardlevel antenna diversity */
50#define ANT_SELCFG_DEF_2x2 0x01 /* default antenna configuration */
51
52/* 2x3 antdiv defines and tables for GPIO communication */
53#define ANT_SELCFG_NUM_2x3 3
54#define ANT_SELCFG_DEF_2x3 0x01 /* default antenna configuration */
55
56/* 2x4 antdiv rev4 defines and tables for GPIO communication */
57#define ANT_SELCFG_NUM_2x4 4
58#define ANT_SELCFG_DEF_2x4 0x02 /* default antenna configuration */
59
60/* static functions */
Jason Cooper7cc4a4c2010-09-14 09:45:30 -040061static int wlc_antsel_cfgupd(antsel_info_t *asi, wlc_antselcfg_t *antsel);
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -070062static u8 wlc_antsel_id2antcfg(antsel_info_t *asi, u8 id);
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -070063static u16 wlc_antsel_antcfg2antsel(antsel_info_t *asi, u8 ant_cfg);
Jason Cooper7cc4a4c2010-09-14 09:45:30 -040064static void wlc_antsel_init_cfg(antsel_info_t *asi, wlc_antselcfg_t *antsel,
Henry Ptasinskia9533e72010-09-08 21:04:42 -070065 bool auto_sel);
66
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -070067const u16 mimo_2x4_div_antselpat_tbl[] = {
Henry Ptasinskia9533e72010-09-08 21:04:42 -070068 0, 0, 0x9, 0xa, /* ant0: 0 ant1: 2,3 */
69 0, 0, 0x5, 0x6, /* ant0: 1 ant1: 2,3 */
70 0, 0, 0, 0, /* n.a. */
71 0, 0, 0, 0 /* n.a. */
72};
73
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -070074const u8 mimo_2x4_div_antselid_tbl[16] = {
Henry Ptasinskia9533e72010-09-08 21:04:42 -070075 0, 0, 0, 0, 0, 2, 3, 0,
76 0, 0, 1, 0, 0, 0, 0, 0 /* pat to antselid */
77};
78
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -070079const u16 mimo_2x3_div_antselpat_tbl[] = {
Henry Ptasinskia9533e72010-09-08 21:04:42 -070080 16, 0, 1, 16, /* ant0: 0 ant1: 1,2 */
81 16, 16, 16, 16, /* n.a. */
82 16, 2, 16, 16, /* ant0: 2 ant1: 1 */
83 16, 16, 16, 16 /* n.a. */
84};
85
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -070086const u8 mimo_2x3_div_antselid_tbl[16] = {
Henry Ptasinskia9533e72010-09-08 21:04:42 -070087 0, 1, 2, 0, 0, 0, 0, 0,
88 0, 0, 0, 0, 0, 0, 0, 0 /* pat to antselid */
89};
90
Jason Coopera9d0fff2010-10-11 10:03:00 -040091antsel_info_t *wlc_antsel_attach(wlc_info_t *wlc, osl_t *osh,
Jason Cooper7cc4a4c2010-09-14 09:45:30 -040092 wlc_pub_t *pub,
93 wlc_hw_info_t *wlc_hw) {
Henry Ptasinskia9533e72010-09-08 21:04:42 -070094 antsel_info_t *asi;
95
mike.rapoport@gmail.com5fcc1fc2010-10-13 00:09:10 +020096 asi = kzalloc(sizeof(antsel_info_t), GFP_ATOMIC);
Jason Cooperca8c1e52010-09-14 09:45:33 -040097 if (!asi) {
mike.rapoport@gmail.com97e17d02010-10-13 00:09:09 +020098 WL_ERROR(("wl%d: wlc_antsel_attach: out of mem\n", pub->unit));
Henry Ptasinskia9533e72010-09-08 21:04:42 -070099 return NULL;
100 }
101
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700102 asi->wlc = wlc;
103 asi->pub = pub;
104 asi->antsel_type = ANTSEL_NA;
Greg Kroah-Hartman0965ae82010-10-12 12:50:15 -0700105 asi->antsel_avail = false;
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700106 asi->antsel_antswitch = (u8) getintvar(asi->pub->vars, "antswitch");
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700107
108 if ((asi->pub->sromrev >= 4) && (asi->antsel_antswitch != 0)) {
109 switch (asi->antsel_antswitch) {
110 case ANTSWITCH_TYPE_1:
111 case ANTSWITCH_TYPE_2:
112 case ANTSWITCH_TYPE_3:
113 /* 4321/2 board with 2x3 switch logic */
114 asi->antsel_type = ANTSEL_2x3;
115 /* Antenna selection availability */
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700116 if (((u16) getintvar(asi->pub->vars, "aa2g") == 7) ||
117 ((u16) getintvar(asi->pub->vars, "aa5g") == 7)) {
Greg Kroah-Hartman0f0881b2010-10-12 12:15:18 -0700118 asi->antsel_avail = true;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700119 } else
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700120 if (((u16) getintvar(asi->pub->vars, "aa2g") ==
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700121 3)
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700122 || ((u16) getintvar(asi->pub->vars, "aa5g")
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700123 == 3)) {
Greg Kroah-Hartman0965ae82010-10-12 12:50:15 -0700124 asi->antsel_avail = false;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700125 } else {
Greg Kroah-Hartman0965ae82010-10-12 12:50:15 -0700126 asi->antsel_avail = false;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700127 WL_ERROR(("wlc_antsel_attach: 2o3 board cfg invalid\n"));
128 ASSERT(0);
129 }
130 break;
131 default:
132 break;
133 }
134 } else if ((asi->pub->sromrev == 4) &&
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700135 ((u16) getintvar(asi->pub->vars, "aa2g") == 7) &&
136 ((u16) getintvar(asi->pub->vars, "aa5g") == 0)) {
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700137 /* hack to match old 4321CB2 cards with 2of3 antenna switch */
138 asi->antsel_type = ANTSEL_2x3;
Greg Kroah-Hartman0f0881b2010-10-12 12:15:18 -0700139 asi->antsel_avail = true;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700140 } else if (asi->pub->boardflags2 & BFL2_2X4_DIV) {
141 asi->antsel_type = ANTSEL_2x4;
Greg Kroah-Hartman0f0881b2010-10-12 12:15:18 -0700142 asi->antsel_avail = true;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700143 }
144
145 /* Set the antenna selection type for the low driver */
146 wlc_bmac_antsel_type_set(wlc_hw, asi->antsel_type);
147
148 /* Init (auto/manual) antenna selection */
Greg Kroah-Hartman0f0881b2010-10-12 12:15:18 -0700149 wlc_antsel_init_cfg(asi, &asi->antcfg_11n, true);
150 wlc_antsel_init_cfg(asi, &asi->antcfg_cur, true);
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700151
152 return asi;
153}
154
Greg Kroah-Hartman0d2f0722010-10-08 14:28:21 -0700155void wlc_antsel_detach(antsel_info_t *asi)
Jason Coopera2627bc2010-09-14 09:45:31 -0400156{
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700157 if (!asi)
158 return;
159
mike.rapoport@gmail.com182acb32010-10-13 00:09:12 +0200160 kfree(asi);
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700161}
162
Jason Cooper7cc4a4c2010-09-14 09:45:30 -0400163void wlc_antsel_init(antsel_info_t *asi)
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700164{
165 if ((asi->antsel_type == ANTSEL_2x3) ||
166 (asi->antsel_type == ANTSEL_2x4))
167 wlc_antsel_cfgupd(asi, &asi->antcfg_11n);
168}
169
170/* boardlevel antenna selection: init antenna selection structure */
171static void
Jason Cooper7cc4a4c2010-09-14 09:45:30 -0400172wlc_antsel_init_cfg(antsel_info_t *asi, wlc_antselcfg_t *antsel,
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700173 bool auto_sel)
174{
175 if (asi->antsel_type == ANTSEL_2x3) {
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700176 u8 antcfg_def = ANT_SELCFG_DEF_2x3 |
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700177 ((asi->antsel_avail && auto_sel) ? ANT_SELCFG_AUTO : 0);
178 antsel->ant_config[ANT_SELCFG_TX_DEF] = antcfg_def;
179 antsel->ant_config[ANT_SELCFG_TX_UNICAST] = antcfg_def;
180 antsel->ant_config[ANT_SELCFG_RX_DEF] = antcfg_def;
181 antsel->ant_config[ANT_SELCFG_RX_UNICAST] = antcfg_def;
182 antsel->num_antcfg = ANT_SELCFG_NUM_2x3;
183
184 } else if (asi->antsel_type == ANTSEL_2x4) {
185
186 antsel->ant_config[ANT_SELCFG_TX_DEF] = ANT_SELCFG_DEF_2x4;
187 antsel->ant_config[ANT_SELCFG_TX_UNICAST] = ANT_SELCFG_DEF_2x4;
188 antsel->ant_config[ANT_SELCFG_RX_DEF] = ANT_SELCFG_DEF_2x4;
189 antsel->ant_config[ANT_SELCFG_RX_UNICAST] = ANT_SELCFG_DEF_2x4;
190 antsel->num_antcfg = ANT_SELCFG_NUM_2x4;
191
192 } else { /* no antenna selection available */
193
194 antsel->ant_config[ANT_SELCFG_TX_DEF] = ANT_SELCFG_DEF_2x2;
195 antsel->ant_config[ANT_SELCFG_TX_UNICAST] = ANT_SELCFG_DEF_2x2;
196 antsel->ant_config[ANT_SELCFG_RX_DEF] = ANT_SELCFG_DEF_2x2;
197 antsel->ant_config[ANT_SELCFG_RX_UNICAST] = ANT_SELCFG_DEF_2x2;
198 antsel->num_antcfg = 0;
199 }
200}
201
202void BCMFASTPATH
Jason Cooper7cc4a4c2010-09-14 09:45:30 -0400203wlc_antsel_antcfg_get(antsel_info_t *asi, bool usedef, bool sel,
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700204 u8 antselid, u8 fbantselid, u8 *antcfg,
205 u8 *fbantcfg)
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700206{
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700207 u8 ant;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700208
209 /* if use default, assign it and return */
210 if (usedef) {
211 *antcfg = asi->antcfg_11n.ant_config[ANT_SELCFG_TX_DEF];
212 *fbantcfg = *antcfg;
213 return;
214 }
215
216 if (!sel) {
217 *antcfg = asi->antcfg_11n.ant_config[ANT_SELCFG_TX_UNICAST];
218 *fbantcfg = *antcfg;
219
220 } else {
221 ant = asi->antcfg_11n.ant_config[ANT_SELCFG_TX_UNICAST];
222 if ((ant & ANT_SELCFG_AUTO) == ANT_SELCFG_AUTO) {
223 *antcfg = wlc_antsel_id2antcfg(asi, antselid);
224 *fbantcfg = wlc_antsel_id2antcfg(asi, fbantselid);
225 } else {
226 *antcfg =
227 asi->antcfg_11n.ant_config[ANT_SELCFG_TX_UNICAST];
228 *fbantcfg = *antcfg;
229 }
230 }
231 return;
232}
233
234/* boardlevel antenna selection: convert mimo_antsel (ucode interface) to id */
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700235u8 wlc_antsel_antsel2id(antsel_info_t *asi, u16 antsel)
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700236{
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700237 u8 antselid = 0;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700238
239 if (asi->antsel_type == ANTSEL_2x4) {
240 /* 2x4 antenna diversity board, 4 cfgs: 0-2 0-3 1-2 1-3 */
241 antselid = mimo_2x4_div_antselid_tbl[(antsel & 0xf)];
242 return antselid;
243
244 } else if (asi->antsel_type == ANTSEL_2x3) {
245 /* 2x3 antenna selection, 3 cfgs: 0-1 0-2 2-1 */
246 antselid = mimo_2x3_div_antselid_tbl[(antsel & 0xf)];
247 return antselid;
248 }
249
250 return antselid;
251}
252
253/* boardlevel antenna selection: convert id to ant_cfg */
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700254static u8 wlc_antsel_id2antcfg(antsel_info_t *asi, u8 id)
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700255{
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700256 u8 antcfg = ANT_SELCFG_DEF_2x2;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700257
258 if (asi->antsel_type == ANTSEL_2x4) {
259 /* 2x4 antenna diversity board, 4 cfgs: 0-2 0-3 1-2 1-3 */
260 antcfg = (((id & 0x2) << 3) | ((id & 0x1) + 2));
261 return antcfg;
262
263 } else if (asi->antsel_type == ANTSEL_2x3) {
264 /* 2x3 antenna selection, 3 cfgs: 0-1 0-2 2-1 */
265 antcfg = (((id & 0x02) << 4) | ((id & 0x1) + 1));
266 return antcfg;
267 }
268
269 return antcfg;
270}
271
272/* boardlevel antenna selection: convert ant_cfg to mimo_antsel (ucode interface) */
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700273static u16 wlc_antsel_antcfg2antsel(antsel_info_t *asi, u8 ant_cfg)
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700274{
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700275 u8 idx = WLC_ANTIDX_11N(WLC_ANTSEL_11N(ant_cfg));
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700276 u16 mimo_antsel = 0;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700277
278 if (asi->antsel_type == ANTSEL_2x4) {
279 /* 2x4 antenna diversity board, 4 cfgs: 0-2 0-3 1-2 1-3 */
280 mimo_antsel = (mimo_2x4_div_antselpat_tbl[idx] & 0xf);
281 return mimo_antsel;
282
283 } else if (asi->antsel_type == ANTSEL_2x3) {
284 /* 2x3 antenna selection, 3 cfgs: 0-1 0-2 2-1 */
285 mimo_antsel = (mimo_2x3_div_antselpat_tbl[idx] & 0xf);
286 return mimo_antsel;
287 }
288
289 return mimo_antsel;
290}
291
292/* boardlevel antenna selection: ucode interface control */
Jason Cooper7cc4a4c2010-09-14 09:45:30 -0400293static int wlc_antsel_cfgupd(antsel_info_t *asi, wlc_antselcfg_t *antsel)
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700294{
295 wlc_info_t *wlc = asi->wlc;
Greg Kroah-Hartman41feb5e2010-10-05 10:09:00 -0700296 u8 ant_cfg;
Greg Kroah-Hartman7d4df482010-10-07 17:04:47 -0700297 u16 mimo_antsel;
Henry Ptasinskia9533e72010-09-08 21:04:42 -0700298
299 ASSERT(asi->antsel_type != ANTSEL_NA);
300
301 /* 1) Update TX antconfig for all frames that are not unicast data
302 * (aka default TX)
303 */
304 ant_cfg = antsel->ant_config[ANT_SELCFG_TX_DEF];
305 mimo_antsel = wlc_antsel_antcfg2antsel(asi, ant_cfg);
306 wlc_write_shm(wlc, M_MIMO_ANTSEL_TXDFLT, mimo_antsel);
307 /* Update driver stats for currently selected default tx/rx antenna config */
308 asi->antcfg_cur.ant_config[ANT_SELCFG_TX_DEF] = ant_cfg;
309
310 /* 2) Update RX antconfig for all frames that are not unicast data
311 * (aka default RX)
312 */
313 ant_cfg = antsel->ant_config[ANT_SELCFG_RX_DEF];
314 mimo_antsel = wlc_antsel_antcfg2antsel(asi, ant_cfg);
315 wlc_write_shm(wlc, M_MIMO_ANTSEL_RXDFLT, mimo_antsel);
316 /* Update driver stats for currently selected default tx/rx antenna config */
317 asi->antcfg_cur.ant_config[ANT_SELCFG_RX_DEF] = ant_cfg;
318
319 return 0;
320}
321
322#endif /* WLANTSEL */