1 // SPDX-License-Identifier: GPL-2.0-or-later
3 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
4 <http://rt2x00.serialmonkey.com>
10 Abstract: rt2x00 generic configuration routines.
13 #include <linux/kernel.h>
14 #include <linux/module.h>
17 #include "rt2x00lib.h"
19 void rt2x00lib_config_intf(struct rt2x00_dev
*rt2x00dev
,
20 struct rt2x00_intf
*intf
,
21 enum nl80211_iftype type
,
22 const u8
*mac
, const u8
*bssid
)
24 struct rt2x00intf_conf conf
;
25 unsigned int flags
= 0;
30 case NL80211_IFTYPE_ADHOC
:
31 conf
.sync
= TSF_SYNC_ADHOC
;
33 case NL80211_IFTYPE_AP
:
34 case NL80211_IFTYPE_MESH_POINT
:
35 case NL80211_IFTYPE_WDS
:
36 conf
.sync
= TSF_SYNC_AP_NONE
;
38 case NL80211_IFTYPE_STATION
:
39 conf
.sync
= TSF_SYNC_INFRA
;
42 conf
.sync
= TSF_SYNC_NONE
;
47 * Note that when NULL is passed as address we will send
48 * 00:00:00:00:00 to the device to clear the address.
49 * This will prevent the device being confused when it wants
50 * to ACK frames or considers itself associated.
52 memset(conf
.mac
, 0, sizeof(conf
.mac
));
54 memcpy(conf
.mac
, mac
, ETH_ALEN
);
56 memset(conf
.bssid
, 0, sizeof(conf
.bssid
));
58 memcpy(conf
.bssid
, bssid
, ETH_ALEN
);
60 flags
|= CONFIG_UPDATE_TYPE
;
61 if (mac
|| (!rt2x00dev
->intf_ap_count
&& !rt2x00dev
->intf_sta_count
))
62 flags
|= CONFIG_UPDATE_MAC
;
63 if (bssid
|| (!rt2x00dev
->intf_ap_count
&& !rt2x00dev
->intf_sta_count
))
64 flags
|= CONFIG_UPDATE_BSSID
;
66 rt2x00dev
->ops
->lib
->config_intf(rt2x00dev
, intf
, &conf
, flags
);
69 void rt2x00lib_config_erp(struct rt2x00_dev
*rt2x00dev
,
70 struct rt2x00_intf
*intf
,
71 struct ieee80211_bss_conf
*bss_conf
,
74 struct rt2x00lib_erp erp
;
76 memset(&erp
, 0, sizeof(erp
));
78 erp
.short_preamble
= bss_conf
->use_short_preamble
;
79 erp
.cts_protection
= bss_conf
->use_cts_prot
;
81 erp
.slot_time
= bss_conf
->use_short_slot
? SHORT_SLOT_TIME
: SLOT_TIME
;
83 erp
.pifs
= bss_conf
->use_short_slot
? SHORT_PIFS
: PIFS
;
84 erp
.difs
= bss_conf
->use_short_slot
? SHORT_DIFS
: DIFS
;
85 erp
.eifs
= bss_conf
->use_short_slot
? SHORT_EIFS
: EIFS
;
87 erp
.basic_rates
= bss_conf
->basic_rates
;
88 erp
.beacon_int
= bss_conf
->beacon_int
;
90 /* Update the AID, this is needed for dynamic PS support */
91 rt2x00dev
->aid
= bss_conf
->assoc
? bss_conf
->aid
: 0;
92 rt2x00dev
->last_beacon
= bss_conf
->sync_tsf
;
94 /* Update global beacon interval time, this is needed for PS support */
95 rt2x00dev
->beacon_int
= bss_conf
->beacon_int
;
97 if (changed
& BSS_CHANGED_HT
)
98 erp
.ht_opmode
= bss_conf
->ht_operation_mode
;
100 rt2x00dev
->ops
->lib
->config_erp(rt2x00dev
, &erp
, changed
);
103 void rt2x00lib_config_antenna(struct rt2x00_dev
*rt2x00dev
,
104 struct antenna_setup config
)
106 struct link_ant
*ant
= &rt2x00dev
->link
.ant
;
107 struct antenna_setup
*def
= &rt2x00dev
->default_ant
;
108 struct antenna_setup
*active
= &rt2x00dev
->link
.ant
.active
;
111 * When the caller tries to send the SW diversity,
112 * we must update the ANTENNA_RX_DIVERSITY flag to
113 * enable the antenna diversity in the link tuner.
115 * Secondly, we must guarentee we never send the
116 * software antenna diversity command to the driver.
118 if (!(ant
->flags
& ANTENNA_RX_DIVERSITY
)) {
119 if (config
.rx
== ANTENNA_SW_DIVERSITY
) {
120 ant
->flags
|= ANTENNA_RX_DIVERSITY
;
122 if (def
->rx
== ANTENNA_SW_DIVERSITY
)
123 config
.rx
= ANTENNA_B
;
127 } else if (config
.rx
== ANTENNA_SW_DIVERSITY
)
128 config
.rx
= active
->rx
;
130 if (!(ant
->flags
& ANTENNA_TX_DIVERSITY
)) {
131 if (config
.tx
== ANTENNA_SW_DIVERSITY
) {
132 ant
->flags
|= ANTENNA_TX_DIVERSITY
;
134 if (def
->tx
== ANTENNA_SW_DIVERSITY
)
135 config
.tx
= ANTENNA_B
;
139 } else if (config
.tx
== ANTENNA_SW_DIVERSITY
)
140 config
.tx
= active
->tx
;
143 * Antenna setup changes require the RX to be disabled,
144 * else the changes will be ignored by the device.
146 if (test_bit(DEVICE_STATE_ENABLED_RADIO
, &rt2x00dev
->flags
))
147 rt2x00queue_stop_queue(rt2x00dev
->rx
);
150 * Write new antenna setup to device and reset the link tuner.
151 * The latter is required since we need to recalibrate the
152 * noise-sensitivity ratio for the new setup.
154 rt2x00dev
->ops
->lib
->config_ant(rt2x00dev
, &config
);
156 rt2x00link_reset_tuner(rt2x00dev
, true);
158 memcpy(active
, &config
, sizeof(config
));
160 if (test_bit(DEVICE_STATE_ENABLED_RADIO
, &rt2x00dev
->flags
))
161 rt2x00queue_start_queue(rt2x00dev
->rx
);
164 static u16
rt2x00ht_center_channel(struct rt2x00_dev
*rt2x00dev
,
165 struct ieee80211_conf
*conf
)
167 struct hw_mode_spec
*spec
= &rt2x00dev
->spec
;
172 * Initialize center channel to current channel.
174 center_channel
= spec
->channels
[conf
->chandef
.chan
->hw_value
].channel
;
177 * Adjust center channel to HT40+ and HT40- operation.
179 if (conf_is_ht40_plus(conf
))
181 else if (conf_is_ht40_minus(conf
))
182 center_channel
-= (center_channel
== 14) ? 1 : 2;
184 for (i
= 0; i
< spec
->num_channels
; i
++)
185 if (spec
->channels
[i
].channel
== center_channel
)
189 return conf
->chandef
.chan
->hw_value
;
192 void rt2x00lib_config(struct rt2x00_dev
*rt2x00dev
,
193 struct ieee80211_conf
*conf
,
194 unsigned int ieee80211_flags
)
196 struct rt2x00lib_conf libconf
;
198 u16 autowake_timeout
;
202 memset(&libconf
, 0, sizeof(libconf
));
206 if (ieee80211_flags
& IEEE80211_CONF_CHANGE_CHANNEL
) {
207 if (!conf_is_ht(conf
))
208 set_bit(CONFIG_HT_DISABLED
, &rt2x00dev
->flags
);
210 clear_bit(CONFIG_HT_DISABLED
, &rt2x00dev
->flags
);
212 if (conf_is_ht40(conf
)) {
213 set_bit(CONFIG_CHANNEL_HT40
, &rt2x00dev
->flags
);
214 hw_value
= rt2x00ht_center_channel(rt2x00dev
, conf
);
216 clear_bit(CONFIG_CHANNEL_HT40
, &rt2x00dev
->flags
);
217 hw_value
= conf
->chandef
.chan
->hw_value
;
221 &rt2x00dev
->spec
.channels
[hw_value
],
224 memcpy(&libconf
.channel
,
225 &rt2x00dev
->spec
.channels_info
[hw_value
],
226 sizeof(libconf
.channel
));
228 /* Used for VCO periodic calibration */
229 rt2x00dev
->rf_channel
= libconf
.rf
.channel
;
232 if (rt2x00_has_cap_flag(rt2x00dev
, REQUIRE_PS_AUTOWAKE
) &&
233 (ieee80211_flags
& IEEE80211_CONF_CHANGE_PS
))
234 cancel_delayed_work_sync(&rt2x00dev
->autowakeup_work
);
237 * Start configuration.
239 rt2x00dev
->ops
->lib
->config(rt2x00dev
, &libconf
, ieee80211_flags
);
241 if (conf
->flags
& IEEE80211_CONF_PS
)
242 set_bit(CONFIG_POWERSAVING
, &rt2x00dev
->flags
);
244 clear_bit(CONFIG_POWERSAVING
, &rt2x00dev
->flags
);
246 if (conf
->flags
& IEEE80211_CONF_MONITOR
)
247 set_bit(CONFIG_MONITORING
, &rt2x00dev
->flags
);
249 clear_bit(CONFIG_MONITORING
, &rt2x00dev
->flags
);
251 rt2x00dev
->curr_band
= conf
->chandef
.chan
->band
;
252 rt2x00dev
->curr_freq
= conf
->chandef
.chan
->center_freq
;
253 rt2x00dev
->tx_power
= conf
->power_level
;
254 rt2x00dev
->short_retry
= conf
->short_frame_max_tx_count
;
255 rt2x00dev
->long_retry
= conf
->long_frame_max_tx_count
;
258 * Some configuration changes affect the link quality
259 * which means we need to reset the link tuner.
261 if (ieee80211_flags
& IEEE80211_CONF_CHANGE_CHANNEL
)
262 rt2x00link_reset_tuner(rt2x00dev
, false);
264 if (test_bit(DEVICE_STATE_PRESENT
, &rt2x00dev
->flags
) &&
265 rt2x00_has_cap_flag(rt2x00dev
, REQUIRE_PS_AUTOWAKE
) &&
266 (ieee80211_flags
& IEEE80211_CONF_CHANGE_PS
) &&
267 (conf
->flags
& IEEE80211_CONF_PS
)) {
268 beacon_diff
= (long)jiffies
- (long)rt2x00dev
->last_beacon
;
269 beacon_int
= msecs_to_jiffies(rt2x00dev
->beacon_int
);
271 if (beacon_diff
> beacon_int
)
274 autowake_timeout
= (conf
->ps_dtim_period
* beacon_int
) - beacon_diff
;
275 queue_delayed_work(rt2x00dev
->workqueue
,
276 &rt2x00dev
->autowakeup_work
,
277 autowake_timeout
- 15);