blob: b4fad744503e085f22c8d068710864ca44688922 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
2 Copyright (C) 2004 - 2007 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21/*
22 Module: rt2x00lib
23 Abstract: rt2x00 generic configuration routines.
24 */
25
26/*
27 * Set enviroment defines for rt2x00.h
28 */
29#define DRV_NAME "rt2x00lib"
30
31#include <linux/kernel.h>
32#include <linux/module.h>
33
34#include "rt2x00.h"
35#include "rt2x00lib.h"
36
Ivo van Doorn4abee4b2007-10-06 14:11:46 +020037
38/*
39 * The MAC and BSSID addressess are simple array of bytes,
40 * these arrays are little endian, so when sending the addressess
41 * to the drivers, copy the it into a endian-signed variable.
42 *
43 * Note that all devices (except rt2500usb) have 32 bits
44 * register word sizes. This means that whatever variable we
45 * pass _must_ be a multiple of 32 bits. Otherwise the device
46 * might not accept what we are sending to it.
47 * This will also make it easier for the driver to write
48 * the data to the device.
49 *
50 * Also note that when NULL is passed as address the
51 * we will send 00:00:00:00:00 to the device to clear the address.
52 * This will prevent the device being confused when it wants
53 * to ACK frames or consideres itself associated.
54 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -070055void rt2x00lib_config_mac_addr(struct rt2x00_dev *rt2x00dev, u8 *mac)
56{
Ivo van Doorn4abee4b2007-10-06 14:11:46 +020057 __le32 reg[2];
58
59 memset(&reg, 0, sizeof(reg));
Ivo van Doorn95ea3622007-09-25 17:57:13 -070060 if (mac)
Ivo van Doorn4abee4b2007-10-06 14:11:46 +020061 memcpy(&reg, mac, ETH_ALEN);
62
63 rt2x00dev->ops->lib->config_mac_addr(rt2x00dev, &reg[0]);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070064}
65
66void rt2x00lib_config_bssid(struct rt2x00_dev *rt2x00dev, u8 *bssid)
67{
Ivo van Doorn4abee4b2007-10-06 14:11:46 +020068 __le32 reg[2];
69
70 memset(&reg, 0, sizeof(reg));
Ivo van Doorn95ea3622007-09-25 17:57:13 -070071 if (bssid)
Ivo van Doorn4abee4b2007-10-06 14:11:46 +020072 memcpy(&reg, bssid, ETH_ALEN);
73
74 rt2x00dev->ops->lib->config_bssid(rt2x00dev, &reg[0]);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070075}
76
Ivo van Doornfeb24692007-10-06 14:14:29 +020077void rt2x00lib_config_type(struct rt2x00_dev *rt2x00dev, const int type)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070078{
Ivo van Doornfeb24692007-10-06 14:14:29 +020079 int tsf_sync;
80
81 switch (type) {
82 case IEEE80211_IF_TYPE_IBSS:
83 case IEEE80211_IF_TYPE_AP:
84 tsf_sync = TSF_SYNC_BEACON;
85 break;
86 case IEEE80211_IF_TYPE_STA:
87 tsf_sync = TSF_SYNC_INFRA;
88 break;
89 default:
90 tsf_sync = TSF_SYNC_NONE;
91 break;
92 }
93
94 rt2x00dev->ops->lib->config_type(rt2x00dev, type, tsf_sync);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070095}
96
Ivo van Doorn69f81a22007-10-13 16:26:36 +020097void rt2x00lib_config_antenna(struct rt2x00_dev *rt2x00dev,
98 enum antenna rx, enum antenna tx)
99{
100 struct rt2x00lib_conf libconf;
101
102 libconf.ant.rx = rx;
103 libconf.ant.tx = tx;
104
105 /*
106 * Write new antenna setup to device and reset the link tuner.
107 * The latter is required since we need to recalibrate the
108 * noise-sensitivity ratio for the new setup.
109 */
110 rt2x00dev->ops->lib->config(rt2x00dev, CONFIG_UPDATE_ANTENNA, &libconf);
111 rt2x00lib_reset_link_tuner(rt2x00dev);
112
113 rt2x00dev->link.ant.active.rx = libconf.ant.rx;
114 rt2x00dev->link.ant.active.tx = libconf.ant.tx;
115}
116
Ivo van Doorn066cb632007-09-25 20:55:39 +0200117void rt2x00lib_config(struct rt2x00_dev *rt2x00dev,
118 struct ieee80211_conf *conf, const int force_config)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700119{
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200120 struct rt2x00lib_conf libconf;
121 struct ieee80211_hw_mode *mode;
122 struct ieee80211_rate *rate;
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200123 struct antenna_setup *default_ant = &rt2x00dev->default_ant;
Ivo van Doorn69f81a22007-10-13 16:26:36 +0200124 struct antenna_setup *active_ant = &rt2x00dev->link.ant.active;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700125 int flags = 0;
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200126 int short_slot_time;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700127
128 /*
Ivo van Doorn066cb632007-09-25 20:55:39 +0200129 * In some situations we want to force all configurations
130 * to be reloaded (When resuming for instance).
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700131 */
Ivo van Doorn066cb632007-09-25 20:55:39 +0200132 if (force_config) {
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700133 flags = CONFIG_UPDATE_ALL;
134 goto config;
135 }
136
137 /*
138 * Check which configuration options have been
139 * updated and should be send to the device.
140 */
141 if (rt2x00dev->rx_status.phymode != conf->phymode)
142 flags |= CONFIG_UPDATE_PHYMODE;
143 if (rt2x00dev->rx_status.channel != conf->channel)
144 flags |= CONFIG_UPDATE_CHANNEL;
145 if (rt2x00dev->tx_power != conf->power_level)
146 flags |= CONFIG_UPDATE_TXPOWER;
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200147
148 /*
149 * Determining changes in the antenna setups request several checks:
150 * antenna_sel_{r,t}x = 0
151 * -> Does active_{r,t}x match default_{r,t}x
152 * -> Is default_{r,t}x SW_DIVERSITY
153 * antenna_sel_{r,t}x = 1/2
154 * -> Does active_{r,t}x match antenna_sel_{r,t}x
155 * The reason for not updating the antenna while SW diversity
156 * should be used is simple: Software diversity means that
157 * we should switch between the antenna's based on the
158 * quality. This means that the current antenna is good enough
159 * to work with untill the link tuner decides that an antenna
160 * switch should be performed.
161 */
162 if (!conf->antenna_sel_rx &&
163 default_ant->rx != ANTENNA_SW_DIVERSITY &&
164 default_ant->rx != active_ant->rx)
165 flags |= CONFIG_UPDATE_ANTENNA;
166 else if (conf->antenna_sel_rx &&
167 conf->antenna_sel_rx != active_ant->rx)
168 flags |= CONFIG_UPDATE_ANTENNA;
Mattias Nissler16b19512007-10-13 16:26:57 +0200169 else if (active_ant->rx == ANTENNA_SW_DIVERSITY)
170 flags |= CONFIG_UPDATE_ANTENNA;
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200171
172 if (!conf->antenna_sel_tx &&
173 default_ant->tx != ANTENNA_SW_DIVERSITY &&
174 default_ant->tx != active_ant->tx)
175 flags |= CONFIG_UPDATE_ANTENNA;
176 else if (conf->antenna_sel_tx &&
177 conf->antenna_sel_tx != active_ant->tx)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700178 flags |= CONFIG_UPDATE_ANTENNA;
Mattias Nissler16b19512007-10-13 16:26:57 +0200179 else if (active_ant->tx == ANTENNA_SW_DIVERSITY)
180 flags |= CONFIG_UPDATE_ANTENNA;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700181
182 /*
183 * The following configuration options are never
184 * stored anywhere and will always be updated.
185 */
186 flags |= CONFIG_UPDATE_SLOT_TIME;
187 flags |= CONFIG_UPDATE_BEACON_INT;
188
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200189 /*
190 * We have determined what options should be updated,
191 * now precalculate device configuration values depending
192 * on what configuration options need to be updated.
193 */
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700194config:
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200195 memset(&libconf, 0, sizeof(libconf));
196
197 if (flags & CONFIG_UPDATE_PHYMODE) {
198 switch (conf->phymode) {
199 case MODE_IEEE80211A:
200 libconf.phymode = HWMODE_A;
201 break;
202 case MODE_IEEE80211B:
203 libconf.phymode = HWMODE_B;
204 break;
205 case MODE_IEEE80211G:
206 libconf.phymode = HWMODE_G;
207 break;
208 default:
209 ERROR(rt2x00dev,
210 "Attempt to configure unsupported mode (%d)"
211 "Defaulting to 802.11b", conf->phymode);
212 libconf.phymode = HWMODE_B;
213 }
214
215 mode = &rt2x00dev->hwmodes[libconf.phymode];
216 rate = &mode->rates[mode->num_rates - 1];
217
218 libconf.basic_rates =
219 DEVICE_GET_RATE_FIELD(rate->val, RATEMASK) & DEV_BASIC_RATEMASK;
220 }
221
222 if (flags & CONFIG_UPDATE_CHANNEL) {
223 memcpy(&libconf.rf,
224 &rt2x00dev->spec.channels[conf->channel_val],
225 sizeof(libconf.rf));
226 }
227
Ivo van Doornaddc81bd2007-10-13 16:26:23 +0200228 if (flags & CONFIG_UPDATE_ANTENNA) {
229 if (conf->antenna_sel_rx)
230 libconf.ant.rx = conf->antenna_sel_rx;
231 else if (default_ant->rx != ANTENNA_SW_DIVERSITY)
232 libconf.ant.rx = default_ant->rx;
233 else if (active_ant->rx == ANTENNA_SW_DIVERSITY)
234 libconf.ant.rx = ANTENNA_B;
235
236 if (conf->antenna_sel_tx)
237 libconf.ant.tx = conf->antenna_sel_tx;
238 else if (default_ant->tx != ANTENNA_SW_DIVERSITY)
239 libconf.ant.tx = default_ant->tx;
240 else if (active_ant->tx == ANTENNA_SW_DIVERSITY)
241 libconf.ant.tx = ANTENNA_B;
242 }
243
Ivo van Doorn5c58ee52007-10-06 13:34:52 +0200244 if (flags & CONFIG_UPDATE_SLOT_TIME) {
245 short_slot_time = conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME;
246
247 libconf.slot_time =
248 short_slot_time ? SHORT_SLOT_TIME : SLOT_TIME;
249 libconf.sifs = SIFS;
250 libconf.pifs = short_slot_time ? SHORT_PIFS : PIFS;
251 libconf.difs = short_slot_time ? SHORT_DIFS : DIFS;
252 libconf.eifs = EIFS;
253 }
254
255 libconf.conf = conf;
256
257 /*
258 * Start configuration.
259 */
260 rt2x00dev->ops->lib->config(rt2x00dev, flags, &libconf);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700261
262 /*
263 * Some configuration changes affect the link quality
264 * which means we need to reset the link tuner.
265 */
266 if (flags & (CONFIG_UPDATE_CHANNEL | CONFIG_UPDATE_ANTENNA))
267 rt2x00lib_reset_link_tuner(rt2x00dev);
268
Mattias Nissler16b19512007-10-13 16:26:57 +0200269 if (flags & CONFIG_UPDATE_PHYMODE) {
270 rt2x00dev->curr_hwmode = libconf.phymode;
271 rt2x00dev->rx_status.phymode = conf->phymode;
272 }
273
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700274 rt2x00dev->rx_status.freq = conf->freq;
275 rt2x00dev->rx_status.channel = conf->channel;
276 rt2x00dev->tx_power = conf->power_level;
Mattias Nissler16b19512007-10-13 16:26:57 +0200277
278 if (flags & CONFIG_UPDATE_ANTENNA) {
279 rt2x00dev->link.ant.active.rx = libconf.ant.rx;
280 rt2x00dev->link.ant.active.tx = libconf.ant.tx;
281 }
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700282}