| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 1 | /* | 
| Gertjan van Wingerde | 9c9a0d1 | 2009-11-08 16:39:55 +0100 | [diff] [blame] | 2 | Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com> | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 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 |  | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 26 | #include <linux/kernel.h> | 
|  | 27 | #include <linux/module.h> | 
|  | 28 |  | 
|  | 29 | #include "rt2x00.h" | 
|  | 30 | #include "rt2x00lib.h" | 
|  | 31 |  | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 32 | void rt2x00lib_config_intf(struct rt2x00_dev *rt2x00dev, | 
|  | 33 | struct rt2x00_intf *intf, | 
| Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 34 | enum nl80211_iftype type, | 
| Johannes Berg | 5f936f1 | 2009-01-21 12:47:05 +0100 | [diff] [blame] | 35 | const u8 *mac, const u8 *bssid) | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 36 | { | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 37 | struct rt2x00intf_conf conf; | 
|  | 38 | unsigned int flags = 0; | 
| Ivo van Doorn | 4abee4b | 2007-10-06 14:11:46 +0200 | [diff] [blame] | 39 |  | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 40 | conf.type = type; | 
| Ivo van Doorn | feb2469 | 2007-10-06 14:14:29 +0200 | [diff] [blame] | 41 |  | 
|  | 42 | switch (type) { | 
| Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 43 | case NL80211_IFTYPE_ADHOC: | 
|  | 44 | case NL80211_IFTYPE_AP: | 
| Andrey Yurovsky | a07dbea | 2008-12-20 10:55:34 +0100 | [diff] [blame] | 45 | case NL80211_IFTYPE_MESH_POINT: | 
| Ivo van Doorn | ce292a6 | 2008-12-20 10:57:02 +0100 | [diff] [blame] | 46 | case NL80211_IFTYPE_WDS: | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 47 | conf.sync = TSF_SYNC_BEACON; | 
| Ivo van Doorn | feb2469 | 2007-10-06 14:14:29 +0200 | [diff] [blame] | 48 | break; | 
| Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 49 | case NL80211_IFTYPE_STATION: | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 50 | conf.sync = TSF_SYNC_INFRA; | 
| Ivo van Doorn | feb2469 | 2007-10-06 14:14:29 +0200 | [diff] [blame] | 51 | break; | 
|  | 52 | default: | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 53 | conf.sync = TSF_SYNC_NONE; | 
| Ivo van Doorn | feb2469 | 2007-10-06 14:14:29 +0200 | [diff] [blame] | 54 | break; | 
|  | 55 | } | 
|  | 56 |  | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 57 | /* | 
|  | 58 | * Note that when NULL is passed as address we will send | 
|  | 59 | * 00:00:00:00:00 to the device to clear the address. | 
|  | 60 | * This will prevent the device being confused when it wants | 
|  | 61 | * to ACK frames or consideres itself associated. | 
|  | 62 | */ | 
|  | 63 | memset(&conf.mac, 0, sizeof(conf.mac)); | 
|  | 64 | if (mac) | 
|  | 65 | memcpy(&conf.mac, mac, ETH_ALEN); | 
|  | 66 |  | 
|  | 67 | memset(&conf.bssid, 0, sizeof(conf.bssid)); | 
|  | 68 | if (bssid) | 
|  | 69 | memcpy(&conf.bssid, bssid, ETH_ALEN); | 
|  | 70 |  | 
|  | 71 | flags |= CONFIG_UPDATE_TYPE; | 
|  | 72 | if (mac || (!rt2x00dev->intf_ap_count && !rt2x00dev->intf_sta_count)) | 
|  | 73 | flags |= CONFIG_UPDATE_MAC; | 
|  | 74 | if (bssid || (!rt2x00dev->intf_ap_count && !rt2x00dev->intf_sta_count)) | 
|  | 75 | flags |= CONFIG_UPDATE_BSSID; | 
|  | 76 |  | 
|  | 77 | rt2x00dev->ops->lib->config_intf(rt2x00dev, intf, &conf, flags); | 
|  | 78 | } | 
|  | 79 |  | 
| Ivo van Doorn | 7281037 | 2008-03-09 22:46:18 +0100 | [diff] [blame] | 80 | void rt2x00lib_config_erp(struct rt2x00_dev *rt2x00dev, | 
|  | 81 | struct rt2x00_intf *intf, | 
|  | 82 | struct ieee80211_bss_conf *bss_conf) | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 83 | { | 
| Ivo van Doorn | 7281037 | 2008-03-09 22:46:18 +0100 | [diff] [blame] | 84 | struct rt2x00lib_erp erp; | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 85 |  | 
| Ivo van Doorn | 7281037 | 2008-03-09 22:46:18 +0100 | [diff] [blame] | 86 | memset(&erp, 0, sizeof(erp)); | 
|  | 87 |  | 
|  | 88 | erp.short_preamble = bss_conf->use_short_preamble; | 
| Ivo van Doorn | e360c4c | 2008-07-09 15:12:06 +0200 | [diff] [blame] | 89 | erp.cts_protection = bss_conf->use_cts_prot; | 
|  | 90 |  | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 91 | erp.slot_time = bss_conf->use_short_slot ? SHORT_SLOT_TIME : SLOT_TIME; | 
|  | 92 | erp.sifs = SIFS; | 
|  | 93 | erp.pifs = bss_conf->use_short_slot ? SHORT_PIFS : PIFS; | 
|  | 94 | erp.difs = bss_conf->use_short_slot ? SHORT_DIFS : DIFS; | 
|  | 95 | erp.eifs = bss_conf->use_short_slot ? SHORT_EIFS : EIFS; | 
| Ivo van Doorn | 6bb40dd | 2008-02-03 15:49:59 +0100 | [diff] [blame] | 96 |  | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 97 | erp.basic_rates = bss_conf->basic_rates; | 
| Ivo van Doorn | 8a566af | 2009-05-21 19:16:46 +0200 | [diff] [blame] | 98 | erp.beacon_int = bss_conf->beacon_int; | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 99 |  | 
| Ivo van Doorn | 6b347bf | 2009-05-23 21:09:28 +0200 | [diff] [blame] | 100 | /* Update global beacon interval time, this is needed for PS support */ | 
|  | 101 | rt2x00dev->beacon_int = bss_conf->beacon_int; | 
|  | 102 |  | 
| Ivo van Doorn | 3a643d2 | 2008-03-25 14:13:18 +0100 | [diff] [blame] | 103 | rt2x00dev->ops->lib->config_erp(rt2x00dev, &erp); | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 104 | } | 
|  | 105 |  | 
| Ivo van Doorn | 0b927a0 | 2008-12-02 18:20:22 +0100 | [diff] [blame] | 106 | static inline | 
|  | 107 | enum antenna rt2x00lib_config_antenna_check(enum antenna current_ant, | 
|  | 108 | enum antenna default_ant) | 
|  | 109 | { | 
|  | 110 | if (current_ant != ANTENNA_SW_DIVERSITY) | 
|  | 111 | return current_ant; | 
|  | 112 | return (default_ant != ANTENNA_SW_DIVERSITY) ? default_ant : ANTENNA_B; | 
|  | 113 | } | 
|  | 114 |  | 
| Ivo van Doorn | 69f81a2 | 2007-10-13 16:26:36 +0200 | [diff] [blame] | 115 | void rt2x00lib_config_antenna(struct rt2x00_dev *rt2x00dev, | 
| Ivo van Doorn | bdfa500 | 2009-08-08 23:53:04 +0200 | [diff] [blame] | 116 | struct antenna_setup config) | 
| Ivo van Doorn | 69f81a2 | 2007-10-13 16:26:36 +0200 | [diff] [blame] | 117 | { | 
| Ivo van Doorn | bdfa500 | 2009-08-08 23:53:04 +0200 | [diff] [blame] | 118 | struct link_ant *ant = &rt2x00dev->link.ant; | 
| Ivo van Doorn | 0b927a0 | 2008-12-02 18:20:22 +0100 | [diff] [blame] | 119 | struct antenna_setup *def = &rt2x00dev->default_ant; | 
|  | 120 | struct antenna_setup *active = &rt2x00dev->link.ant.active; | 
|  | 121 |  | 
| Ivo van Doorn | 6d64360 | 2008-11-02 00:38:10 +0100 | [diff] [blame] | 122 | /* | 
|  | 123 | * Failsafe: Make sure we are not sending the | 
|  | 124 | * ANTENNA_SW_DIVERSITY state to the driver. | 
| Luis Correia | 4951348 | 2009-07-17 21:39:19 +0200 | [diff] [blame] | 125 | * If that happens, fallback to hardware defaults, | 
| Ivo van Doorn | 6d64360 | 2008-11-02 00:38:10 +0100 | [diff] [blame] | 126 | * or our own default. | 
| Ivo van Doorn | bdfa500 | 2009-08-08 23:53:04 +0200 | [diff] [blame] | 127 | * If diversity handling is active for a particular antenna, | 
|  | 128 | * we shouldn't overwrite that antenna. | 
| Ivo van Doorn | 0b927a0 | 2008-12-02 18:20:22 +0100 | [diff] [blame] | 129 | * The calls to rt2x00lib_config_antenna_check() | 
|  | 130 | * might have caused that we restore back to the already | 
|  | 131 | * active setting. If that has happened we can quit. | 
| Ivo van Doorn | 6d64360 | 2008-11-02 00:38:10 +0100 | [diff] [blame] | 132 | */ | 
| Ivo van Doorn | bdfa500 | 2009-08-08 23:53:04 +0200 | [diff] [blame] | 133 | if (!(ant->flags & ANTENNA_RX_DIVERSITY)) | 
|  | 134 | config.rx = rt2x00lib_config_antenna_check(config.rx, def->rx); | 
|  | 135 | else | 
|  | 136 | config.rx = active->rx; | 
| Ivo van Doorn | 69f81a2 | 2007-10-13 16:26:36 +0200 | [diff] [blame] | 137 |  | 
| Ivo van Doorn | bdfa500 | 2009-08-08 23:53:04 +0200 | [diff] [blame] | 138 | if (!(ant->flags & ANTENNA_TX_DIVERSITY)) | 
|  | 139 | config.tx = rt2x00lib_config_antenna_check(config.tx, def->tx); | 
|  | 140 | else | 
|  | 141 | config.tx = active->tx; | 
|  | 142 |  | 
|  | 143 | if (config.rx == active->rx && config.tx == active->tx) | 
| Ivo van Doorn | 05253c9 | 2008-02-25 23:15:08 +0100 | [diff] [blame] | 144 | return; | 
|  | 145 |  | 
| Ivo van Doorn | 69f81a2 | 2007-10-13 16:26:36 +0200 | [diff] [blame] | 146 | /* | 
| Ivo van Doorn | e25c4bb | 2007-10-27 13:39:28 +0200 | [diff] [blame] | 147 | * Antenna setup changes require the RX to be disabled, | 
|  | 148 | * else the changes will be ignored by the device. | 
|  | 149 | */ | 
| Ivo van Doorn | 0262ab0 | 2008-08-29 21:04:26 +0200 | [diff] [blame] | 150 | if (test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags)) | 
| Ivo van Doorn | 61667d8 | 2008-02-25 23:15:05 +0100 | [diff] [blame] | 151 | rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_OFF_LINK); | 
| Ivo van Doorn | e25c4bb | 2007-10-27 13:39:28 +0200 | [diff] [blame] | 152 |  | 
|  | 153 | /* | 
| Ivo van Doorn | 69f81a2 | 2007-10-13 16:26:36 +0200 | [diff] [blame] | 154 | * Write new antenna setup to device and reset the link tuner. | 
|  | 155 | * The latter is required since we need to recalibrate the | 
|  | 156 | * noise-sensitivity ratio for the new setup. | 
|  | 157 | */ | 
| Ivo van Doorn | bdfa500 | 2009-08-08 23:53:04 +0200 | [diff] [blame] | 158 | rt2x00dev->ops->lib->config_ant(rt2x00dev, &config); | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 159 |  | 
| Ivo van Doorn | 84e3196 | 2008-12-20 10:53:29 +0100 | [diff] [blame] | 160 | rt2x00link_reset_tuner(rt2x00dev, true); | 
| Ivo van Doorn | 69f81a2 | 2007-10-13 16:26:36 +0200 | [diff] [blame] | 161 |  | 
| Ivo van Doorn | bdfa500 | 2009-08-08 23:53:04 +0200 | [diff] [blame] | 162 | memcpy(active, &config, sizeof(config)); | 
| Ivo van Doorn | e25c4bb | 2007-10-27 13:39:28 +0200 | [diff] [blame] | 163 |  | 
| Ivo van Doorn | 0262ab0 | 2008-08-29 21:04:26 +0200 | [diff] [blame] | 164 | if (test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags)) | 
| Ivo van Doorn | 61667d8 | 2008-02-25 23:15:05 +0100 | [diff] [blame] | 165 | rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_ON_LINK); | 
| Ivo van Doorn | 69f81a2 | 2007-10-13 16:26:36 +0200 | [diff] [blame] | 166 | } | 
|  | 167 |  | 
| Ivo van Doorn | 066cb63 | 2007-09-25 20:55:39 +0200 | [diff] [blame] | 168 | void rt2x00lib_config(struct rt2x00_dev *rt2x00dev, | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 169 | struct ieee80211_conf *conf, | 
|  | 170 | unsigned int ieee80211_flags) | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 171 | { | 
| Ivo van Doorn | 5c58ee5 | 2007-10-06 13:34:52 +0200 | [diff] [blame] | 172 | struct rt2x00lib_conf libconf; | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 173 |  | 
| Ivo van Doorn | 5c58ee5 | 2007-10-06 13:34:52 +0200 | [diff] [blame] | 174 | memset(&libconf, 0, sizeof(libconf)); | 
|  | 175 |  | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 176 | libconf.conf = conf; | 
| Ivo van Doorn | f5507ce | 2008-02-03 15:51:13 +0100 | [diff] [blame] | 177 |  | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 178 | if (ieee80211_flags & IEEE80211_CONF_CHANGE_CHANNEL) { | 
| Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 179 | if (conf_is_ht40(conf)) | 
|  | 180 | __set_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); | 
|  | 181 | else | 
|  | 182 | __clear_bit(CONFIG_CHANNEL_HT40, &rt2x00dev->flags); | 
|  | 183 |  | 
| Ivo van Doorn | 5c58ee5 | 2007-10-06 13:34:52 +0200 | [diff] [blame] | 184 | memcpy(&libconf.rf, | 
| Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 185 | &rt2x00dev->spec.channels[conf->channel->hw_value], | 
| Ivo van Doorn | 5c58ee5 | 2007-10-06 13:34:52 +0200 | [diff] [blame] | 186 | sizeof(libconf.rf)); | 
| Ivo van Doorn | 8c5e7a5 | 2008-08-04 16:38:47 +0200 | [diff] [blame] | 187 |  | 
|  | 188 | memcpy(&libconf.channel, | 
|  | 189 | &rt2x00dev->spec.channels_info[conf->channel->hw_value], | 
|  | 190 | sizeof(libconf.channel)); | 
| Ivo van Doorn | 5c58ee5 | 2007-10-06 13:34:52 +0200 | [diff] [blame] | 191 | } | 
|  | 192 |  | 
| Ivo van Doorn | 5c58ee5 | 2007-10-06 13:34:52 +0200 | [diff] [blame] | 193 | /* | 
|  | 194 | * Start configuration. | 
|  | 195 | */ | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 196 | rt2x00dev->ops->lib->config(rt2x00dev, &libconf, ieee80211_flags); | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 197 |  | 
|  | 198 | /* | 
|  | 199 | * Some configuration changes affect the link quality | 
|  | 200 | * which means we need to reset the link tuner. | 
|  | 201 | */ | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 202 | if (ieee80211_flags & IEEE80211_CONF_CHANGE_CHANNEL) | 
| Ivo van Doorn | 84e3196 | 2008-12-20 10:53:29 +0100 | [diff] [blame] | 203 | rt2x00link_reset_tuner(rt2x00dev, false); | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 204 |  | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 205 | rt2x00dev->curr_band = conf->channel->band; | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 206 | rt2x00dev->tx_power = conf->power_level; | 
| Ivo van Doorn | 42c8285 | 2008-12-02 18:20:04 +0100 | [diff] [blame] | 207 | rt2x00dev->short_retry = conf->short_frame_max_tx_count; | 
|  | 208 | rt2x00dev->long_retry = conf->long_frame_max_tx_count; | 
| Mattias Nissler | 16b1951 | 2007-10-13 16:26:57 +0200 | [diff] [blame] | 209 |  | 
| Ivo van Doorn | e4ea1c4 | 2008-10-29 17:17:57 +0100 | [diff] [blame] | 210 | rt2x00dev->rx_status.band = conf->channel->band; | 
|  | 211 | rt2x00dev->rx_status.freq = conf->channel->center_freq; | 
| Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 212 | } |