Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Common code for mac80211 Prism54 drivers |
| 3 | * |
| 4 | * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net> |
| 5 | * Copyright (c) 2007, Christian Lamparter <chunkeey@web.de> |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 6 | * Copyright 2008, Johannes Berg <johannes@sipsolutions.net> |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 7 | * |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 8 | * Based on: |
| 9 | * - the islsm (softmac prism54) driver, which is: |
| 10 | * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al. |
| 11 | * - stlc45xx driver |
Chr | 9483407 | 2008-10-29 22:39:50 +0100 | [diff] [blame] | 12 | * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies). |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License version 2 as |
| 16 | * published by the Free Software Foundation. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/firmware.h> |
| 21 | #include <linux/etherdevice.h> |
| 22 | |
| 23 | #include <net/mac80211.h> |
| 24 | |
| 25 | #include "p54.h" |
| 26 | #include "p54common.h" |
| 27 | |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 28 | static int modparam_nohwcrypt; |
| 29 | module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); |
| 30 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 31 | MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>"); |
| 32 | MODULE_DESCRIPTION("Softmac Prism54 common code"); |
| 33 | MODULE_LICENSE("GPL"); |
| 34 | MODULE_ALIAS("prism54common"); |
| 35 | |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 36 | static struct ieee80211_rate p54_bgrates[] = { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 37 | { .bitrate = 10, .hw_value = 0, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 38 | { .bitrate = 20, .hw_value = 1, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 39 | { .bitrate = 55, .hw_value = 2, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 40 | { .bitrate = 110, .hw_value = 3, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 41 | { .bitrate = 60, .hw_value = 4, }, |
| 42 | { .bitrate = 90, .hw_value = 5, }, |
| 43 | { .bitrate = 120, .hw_value = 6, }, |
| 44 | { .bitrate = 180, .hw_value = 7, }, |
| 45 | { .bitrate = 240, .hw_value = 8, }, |
| 46 | { .bitrate = 360, .hw_value = 9, }, |
| 47 | { .bitrate = 480, .hw_value = 10, }, |
| 48 | { .bitrate = 540, .hw_value = 11, }, |
| 49 | }; |
| 50 | |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 51 | static struct ieee80211_channel p54_bgchannels[] = { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 52 | { .center_freq = 2412, .hw_value = 1, }, |
| 53 | { .center_freq = 2417, .hw_value = 2, }, |
| 54 | { .center_freq = 2422, .hw_value = 3, }, |
| 55 | { .center_freq = 2427, .hw_value = 4, }, |
| 56 | { .center_freq = 2432, .hw_value = 5, }, |
| 57 | { .center_freq = 2437, .hw_value = 6, }, |
| 58 | { .center_freq = 2442, .hw_value = 7, }, |
| 59 | { .center_freq = 2447, .hw_value = 8, }, |
| 60 | { .center_freq = 2452, .hw_value = 9, }, |
| 61 | { .center_freq = 2457, .hw_value = 10, }, |
| 62 | { .center_freq = 2462, .hw_value = 11, }, |
| 63 | { .center_freq = 2467, .hw_value = 12, }, |
| 64 | { .center_freq = 2472, .hw_value = 13, }, |
| 65 | { .center_freq = 2484, .hw_value = 14, }, |
| 66 | }; |
| 67 | |
Johannes Berg | c2976ab | 2008-02-20 12:08:12 +0100 | [diff] [blame] | 68 | static struct ieee80211_supported_band band_2GHz = { |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 69 | .channels = p54_bgchannels, |
| 70 | .n_channels = ARRAY_SIZE(p54_bgchannels), |
| 71 | .bitrates = p54_bgrates, |
| 72 | .n_bitrates = ARRAY_SIZE(p54_bgrates), |
| 73 | }; |
| 74 | |
| 75 | static struct ieee80211_rate p54_arates[] = { |
| 76 | { .bitrate = 60, .hw_value = 4, }, |
| 77 | { .bitrate = 90, .hw_value = 5, }, |
| 78 | { .bitrate = 120, .hw_value = 6, }, |
| 79 | { .bitrate = 180, .hw_value = 7, }, |
| 80 | { .bitrate = 240, .hw_value = 8, }, |
| 81 | { .bitrate = 360, .hw_value = 9, }, |
| 82 | { .bitrate = 480, .hw_value = 10, }, |
| 83 | { .bitrate = 540, .hw_value = 11, }, |
| 84 | }; |
| 85 | |
| 86 | static struct ieee80211_channel p54_achannels[] = { |
| 87 | { .center_freq = 4920 }, |
| 88 | { .center_freq = 4940 }, |
| 89 | { .center_freq = 4960 }, |
| 90 | { .center_freq = 4980 }, |
| 91 | { .center_freq = 5040 }, |
| 92 | { .center_freq = 5060 }, |
| 93 | { .center_freq = 5080 }, |
| 94 | { .center_freq = 5170 }, |
| 95 | { .center_freq = 5180 }, |
| 96 | { .center_freq = 5190 }, |
| 97 | { .center_freq = 5200 }, |
| 98 | { .center_freq = 5210 }, |
| 99 | { .center_freq = 5220 }, |
| 100 | { .center_freq = 5230 }, |
| 101 | { .center_freq = 5240 }, |
| 102 | { .center_freq = 5260 }, |
| 103 | { .center_freq = 5280 }, |
| 104 | { .center_freq = 5300 }, |
| 105 | { .center_freq = 5320 }, |
| 106 | { .center_freq = 5500 }, |
| 107 | { .center_freq = 5520 }, |
| 108 | { .center_freq = 5540 }, |
| 109 | { .center_freq = 5560 }, |
| 110 | { .center_freq = 5580 }, |
| 111 | { .center_freq = 5600 }, |
| 112 | { .center_freq = 5620 }, |
| 113 | { .center_freq = 5640 }, |
| 114 | { .center_freq = 5660 }, |
| 115 | { .center_freq = 5680 }, |
| 116 | { .center_freq = 5700 }, |
| 117 | { .center_freq = 5745 }, |
| 118 | { .center_freq = 5765 }, |
| 119 | { .center_freq = 5785 }, |
| 120 | { .center_freq = 5805 }, |
| 121 | { .center_freq = 5825 }, |
| 122 | }; |
| 123 | |
| 124 | static struct ieee80211_supported_band band_5GHz = { |
| 125 | .channels = p54_achannels, |
| 126 | .n_channels = ARRAY_SIZE(p54_achannels), |
| 127 | .bitrates = p54_arates, |
| 128 | .n_bitrates = ARRAY_SIZE(p54_arates), |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 129 | }; |
| 130 | |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 131 | int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 132 | { |
| 133 | struct p54_common *priv = dev->priv; |
| 134 | struct bootrec_exp_if *exp_if; |
| 135 | struct bootrec *bootrec; |
| 136 | u32 *data = (u32 *)fw->data; |
| 137 | u32 *end_data = (u32 *)fw->data + (fw->size >> 2); |
| 138 | u8 *fw_version = NULL; |
| 139 | size_t len; |
| 140 | int i; |
| 141 | |
| 142 | if (priv->rx_start) |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 143 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 144 | |
| 145 | while (data < end_data && *data) |
| 146 | data++; |
| 147 | |
| 148 | while (data < end_data && !*data) |
| 149 | data++; |
| 150 | |
| 151 | bootrec = (struct bootrec *) data; |
| 152 | |
| 153 | while (bootrec->data <= end_data && |
| 154 | (bootrec->data + (len = le32_to_cpu(bootrec->len))) <= end_data) { |
| 155 | u32 code = le32_to_cpu(bootrec->code); |
| 156 | switch (code) { |
| 157 | case BR_CODE_COMPONENT_ID: |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 158 | priv->fw_interface = be32_to_cpup((__be32 *) |
| 159 | bootrec->data); |
Christian Lamparter | 2b80848 | 2008-09-04 12:29:38 +0200 | [diff] [blame] | 160 | switch (priv->fw_interface) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 161 | case FW_FMAC: |
| 162 | printk(KERN_INFO "p54: FreeMAC firmware\n"); |
| 163 | break; |
| 164 | case FW_LM20: |
| 165 | printk(KERN_INFO "p54: LM20 firmware\n"); |
| 166 | break; |
| 167 | case FW_LM86: |
| 168 | printk(KERN_INFO "p54: LM86 firmware\n"); |
| 169 | break; |
| 170 | case FW_LM87: |
Christian Lamparter | 2b80848 | 2008-09-04 12:29:38 +0200 | [diff] [blame] | 171 | printk(KERN_INFO "p54: LM87 firmware\n"); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 172 | break; |
| 173 | default: |
| 174 | printk(KERN_INFO "p54: unknown firmware\n"); |
| 175 | break; |
| 176 | } |
| 177 | break; |
| 178 | case BR_CODE_COMPONENT_VERSION: |
| 179 | /* 24 bytes should be enough for all firmwares */ |
| 180 | if (strnlen((unsigned char*)bootrec->data, 24) < 24) |
| 181 | fw_version = (unsigned char*)bootrec->data; |
| 182 | break; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 183 | case BR_CODE_DESCR: { |
| 184 | struct bootrec_desc *desc = |
| 185 | (struct bootrec_desc *)bootrec->data; |
| 186 | priv->rx_start = le32_to_cpu(desc->rx_start); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 187 | /* FIXME add sanity checking */ |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 188 | priv->rx_end = le32_to_cpu(desc->rx_end) - 0x3500; |
| 189 | priv->headroom = desc->headroom; |
| 190 | priv->tailroom = desc->tailroom; |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 191 | priv->privacy_caps = desc->privacy_caps; |
| 192 | priv->rx_keycache_size = desc->rx_keycache_size; |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 193 | if (le32_to_cpu(bootrec->len) == 11) |
Larry Finger | 2e20cc3 | 2008-10-09 17:38:52 -0700 | [diff] [blame] | 194 | priv->rx_mtu = le16_to_cpu(desc->rx_mtu); |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 195 | else |
| 196 | priv->rx_mtu = (size_t) |
| 197 | 0x620 - priv->tx_hdr_len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 198 | break; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 199 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 200 | case BR_CODE_EXPOSED_IF: |
| 201 | exp_if = (struct bootrec_exp_if *) bootrec->data; |
| 202 | for (i = 0; i < (len * sizeof(*exp_if) / 4); i++) |
Al Viro | dc73c62 | 2007-12-21 23:49:02 -0500 | [diff] [blame] | 203 | if (exp_if[i].if_id == cpu_to_le16(0x1a)) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 204 | priv->fw_var = le16_to_cpu(exp_if[i].variant); |
| 205 | break; |
| 206 | case BR_CODE_DEPENDENT_IF: |
| 207 | break; |
| 208 | case BR_CODE_END_OF_BRA: |
| 209 | case LEGACY_BR_CODE_END_OF_BRA: |
| 210 | end_data = NULL; |
| 211 | break; |
| 212 | default: |
| 213 | break; |
| 214 | } |
| 215 | bootrec = (struct bootrec *)&bootrec->data[len]; |
| 216 | } |
| 217 | |
| 218 | if (fw_version) |
| 219 | printk(KERN_INFO "p54: FW rev %s - Softmac protocol %x.%x\n", |
| 220 | fw_version, priv->fw_var >> 8, priv->fw_var & 0xff); |
| 221 | |
Christian Lamparter | 9a8675d | 2008-10-18 23:04:15 +0200 | [diff] [blame] | 222 | if (priv->fw_var < 0x500) |
| 223 | printk(KERN_INFO "p54: you are using an obsolete firmware. " |
| 224 | "visit http://wireless.kernel.org/en/users/Drivers/p54 " |
| 225 | "and grab one for \"kernel >= 2.6.28\"!\n"); |
| 226 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 227 | if (priv->fw_var >= 0x300) { |
| 228 | /* Firmware supports QoS, use it! */ |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 229 | priv->tx_stats[4].limit = 3; /* AC_VO */ |
| 230 | priv->tx_stats[5].limit = 4; /* AC_VI */ |
| 231 | priv->tx_stats[6].limit = 3; /* AC_BE */ |
| 232 | priv->tx_stats[7].limit = 2; /* AC_BK */ |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 233 | dev->queues = 4; |
| 234 | } |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 235 | |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 236 | if (!modparam_nohwcrypt) |
| 237 | printk(KERN_INFO "%s: cryptographic accelerator " |
| 238 | "WEP:%s, TKIP:%s, CCMP:%s\n", |
| 239 | wiphy_name(dev->wiphy), |
| 240 | (priv->privacy_caps & BR_DESC_PRIV_CAP_WEP) ? "YES" : |
| 241 | "no", (priv->privacy_caps & (BR_DESC_PRIV_CAP_TKIP | |
| 242 | BR_DESC_PRIV_CAP_MICHAEL)) ? "YES" : "no", |
| 243 | (priv->privacy_caps & BR_DESC_PRIV_CAP_AESCCMP) ? |
| 244 | "YES" : "no"); |
| 245 | |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 246 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 247 | } |
| 248 | EXPORT_SYMBOL_GPL(p54_parse_firmware); |
| 249 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 250 | static int p54_convert_rev0(struct ieee80211_hw *dev, |
| 251 | struct pda_pa_curve_data *curve_data) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 252 | { |
| 253 | struct p54_common *priv = dev->priv; |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 254 | struct p54_pa_curve_data_sample *dst; |
| 255 | struct pda_pa_curve_data_sample_rev0 *src; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 256 | size_t cd_len = sizeof(*curve_data) + |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 257 | (curve_data->points_per_channel*sizeof(*dst) + 2) * |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 258 | curve_data->channels; |
| 259 | unsigned int i, j; |
| 260 | void *source, *target; |
| 261 | |
| 262 | priv->curve_data = kmalloc(cd_len, GFP_KERNEL); |
| 263 | if (!priv->curve_data) |
| 264 | return -ENOMEM; |
| 265 | |
| 266 | memcpy(priv->curve_data, curve_data, sizeof(*curve_data)); |
| 267 | source = curve_data->data; |
| 268 | target = priv->curve_data->data; |
| 269 | for (i = 0; i < curve_data->channels; i++) { |
| 270 | __le16 *freq = source; |
| 271 | source += sizeof(__le16); |
| 272 | *((__le16 *)target) = *freq; |
| 273 | target += sizeof(__le16); |
| 274 | for (j = 0; j < curve_data->points_per_channel; j++) { |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 275 | dst = target; |
| 276 | src = source; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 277 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 278 | dst->rf_power = src->rf_power; |
| 279 | dst->pa_detector = src->pa_detector; |
| 280 | dst->data_64qam = src->pcv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 281 | /* "invent" the points for the other modulations */ |
| 282 | #define SUB(x,y) (u8)((x) - (y)) > (x) ? 0 : (x) - (y) |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 283 | dst->data_16qam = SUB(src->pcv, 12); |
| 284 | dst->data_qpsk = SUB(dst->data_16qam, 12); |
| 285 | dst->data_bpsk = SUB(dst->data_qpsk, 12); |
| 286 | dst->data_barker = SUB(dst->data_bpsk, 14); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 287 | #undef SUB |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 288 | target += sizeof(*dst); |
| 289 | source += sizeof(*src); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 290 | } |
| 291 | } |
| 292 | |
| 293 | return 0; |
| 294 | } |
| 295 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 296 | static int p54_convert_rev1(struct ieee80211_hw *dev, |
| 297 | struct pda_pa_curve_data *curve_data) |
| 298 | { |
| 299 | struct p54_common *priv = dev->priv; |
| 300 | struct p54_pa_curve_data_sample *dst; |
| 301 | struct pda_pa_curve_data_sample_rev1 *src; |
| 302 | size_t cd_len = sizeof(*curve_data) + |
| 303 | (curve_data->points_per_channel*sizeof(*dst) + 2) * |
| 304 | curve_data->channels; |
| 305 | unsigned int i, j; |
| 306 | void *source, *target; |
| 307 | |
| 308 | priv->curve_data = kmalloc(cd_len, GFP_KERNEL); |
| 309 | if (!priv->curve_data) |
| 310 | return -ENOMEM; |
| 311 | |
| 312 | memcpy(priv->curve_data, curve_data, sizeof(*curve_data)); |
| 313 | source = curve_data->data; |
| 314 | target = priv->curve_data->data; |
| 315 | for (i = 0; i < curve_data->channels; i++) { |
| 316 | __le16 *freq = source; |
| 317 | source += sizeof(__le16); |
| 318 | *((__le16 *)target) = *freq; |
| 319 | target += sizeof(__le16); |
| 320 | for (j = 0; j < curve_data->points_per_channel; j++) { |
| 321 | memcpy(target, source, sizeof(*src)); |
| 322 | |
| 323 | target += sizeof(*dst); |
| 324 | source += sizeof(*src); |
| 325 | } |
| 326 | source++; |
| 327 | } |
| 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 332 | static const char *p54_rf_chips[] = { "NULL", "Duette3", "Duette2", |
| 333 | "Frisbee", "Xbow", "Longbow", "NULL", "NULL" }; |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 334 | static int p54_init_xbow_synth(struct ieee80211_hw *dev); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 335 | |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 336 | static int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 337 | { |
| 338 | struct p54_common *priv = dev->priv; |
| 339 | struct eeprom_pda_wrap *wrap = NULL; |
| 340 | struct pda_entry *entry; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 341 | unsigned int data_len, entry_len; |
| 342 | void *tmp; |
| 343 | int err; |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 344 | u8 *end = (u8 *)eeprom + len; |
Christian Lamparter | f2c2e25 | 2008-10-25 16:14:14 +0200 | [diff] [blame] | 345 | u16 synth = 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 346 | |
| 347 | wrap = (struct eeprom_pda_wrap *) eeprom; |
Johannes Berg | 8c28293 | 2008-02-29 13:56:33 +0100 | [diff] [blame] | 348 | entry = (void *)wrap->data + le16_to_cpu(wrap->len); |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 349 | |
| 350 | /* verify that at least the entry length/code fits */ |
| 351 | while ((u8 *)entry <= end - sizeof(*entry)) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 352 | entry_len = le16_to_cpu(entry->len); |
| 353 | data_len = ((entry_len - 1) << 1); |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 354 | |
| 355 | /* abort if entry exceeds whole structure */ |
| 356 | if ((u8 *)entry + sizeof(*entry) + data_len > end) |
| 357 | break; |
| 358 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 359 | switch (le16_to_cpu(entry->code)) { |
| 360 | case PDR_MAC_ADDRESS: |
| 361 | SET_IEEE80211_PERM_ADDR(dev, entry->data); |
| 362 | break; |
| 363 | case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS: |
| 364 | if (data_len < 2) { |
| 365 | err = -EINVAL; |
| 366 | goto err; |
| 367 | } |
| 368 | |
| 369 | if (2 + entry->data[1]*sizeof(*priv->output_limit) > data_len) { |
| 370 | err = -EINVAL; |
| 371 | goto err; |
| 372 | } |
| 373 | |
| 374 | priv->output_limit = kmalloc(entry->data[1] * |
| 375 | sizeof(*priv->output_limit), GFP_KERNEL); |
| 376 | |
| 377 | if (!priv->output_limit) { |
| 378 | err = -ENOMEM; |
| 379 | goto err; |
| 380 | } |
| 381 | |
| 382 | memcpy(priv->output_limit, &entry->data[2], |
| 383 | entry->data[1]*sizeof(*priv->output_limit)); |
| 384 | priv->output_limit_len = entry->data[1]; |
| 385 | break; |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 386 | case PDR_PRISM_PA_CAL_CURVE_DATA: { |
| 387 | struct pda_pa_curve_data *curve_data = |
| 388 | (struct pda_pa_curve_data *)entry->data; |
| 389 | if (data_len < sizeof(*curve_data)) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 390 | err = -EINVAL; |
| 391 | goto err; |
| 392 | } |
| 393 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 394 | switch (curve_data->cal_method_rev) { |
| 395 | case 0: |
| 396 | err = p54_convert_rev0(dev, curve_data); |
| 397 | break; |
| 398 | case 1: |
| 399 | err = p54_convert_rev1(dev, curve_data); |
| 400 | break; |
| 401 | default: |
| 402 | printk(KERN_ERR "p54: unknown curve data " |
| 403 | "revision %d\n", |
| 404 | curve_data->cal_method_rev); |
| 405 | err = -ENODEV; |
| 406 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 407 | } |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 408 | if (err) |
| 409 | goto err; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 410 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 411 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 412 | case PDR_PRISM_ZIF_TX_IQ_CALIBRATION: |
| 413 | priv->iq_autocal = kmalloc(data_len, GFP_KERNEL); |
| 414 | if (!priv->iq_autocal) { |
| 415 | err = -ENOMEM; |
| 416 | goto err; |
| 417 | } |
| 418 | |
| 419 | memcpy(priv->iq_autocal, entry->data, data_len); |
| 420 | priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry); |
| 421 | break; |
| 422 | case PDR_INTERFACE_LIST: |
| 423 | tmp = entry->data; |
| 424 | while ((u8 *)tmp < entry->data + data_len) { |
| 425 | struct bootrec_exp_if *exp_if = tmp; |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 426 | if (le16_to_cpu(exp_if->if_id) == 0xf) |
| 427 | synth = le16_to_cpu(exp_if->variant); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 428 | tmp += sizeof(struct bootrec_exp_if); |
| 429 | } |
| 430 | break; |
| 431 | case PDR_HARDWARE_PLATFORM_COMPONENT_ID: |
| 432 | priv->version = *(u8 *)(entry->data + 1); |
| 433 | break; |
| 434 | case PDR_END: |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 435 | /* make it overrun */ |
| 436 | entry_len = len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 437 | break; |
Pavel Roskin | c8034c4 | 2008-10-29 17:31:43 -0400 | [diff] [blame] | 438 | case PDR_MANUFACTURING_PART_NUMBER: |
| 439 | case PDR_PDA_VERSION: |
| 440 | case PDR_NIC_SERIAL_NUMBER: |
| 441 | case PDR_REGULATORY_DOMAIN_LIST: |
| 442 | case PDR_TEMPERATURE_TYPE: |
| 443 | case PDR_PRISM_PCI_IDENTIFIER: |
| 444 | case PDR_COUNTRY_INFORMATION: |
| 445 | case PDR_OEM_NAME: |
| 446 | case PDR_PRODUCT_NAME: |
| 447 | case PDR_UTF8_OEM_NAME: |
| 448 | case PDR_UTF8_PRODUCT_NAME: |
| 449 | case PDR_COUNTRY_LIST: |
| 450 | case PDR_DEFAULT_COUNTRY: |
| 451 | case PDR_ANTENNA_GAIN: |
| 452 | case PDR_PRISM_INDIGO_PA_CALIBRATION_DATA: |
| 453 | case PDR_RSSI_LINEAR_APPROXIMATION: |
| 454 | case PDR_RSSI_LINEAR_APPROXIMATION_DUAL_BAND: |
| 455 | case PDR_REGULATORY_POWER_LIMITS: |
| 456 | case PDR_RSSI_LINEAR_APPROXIMATION_EXTENDED: |
| 457 | case PDR_RADIATED_TRANSMISSION_CORRECTION: |
| 458 | case PDR_PRISM_TX_IQ_CALIBRATION: |
| 459 | case PDR_BASEBAND_REGISTERS: |
| 460 | case PDR_PER_CHANNEL_BASEBAND_REGISTERS: |
| 461 | break; |
Florian Fainelli | 58e3073 | 2008-02-25 17:51:53 +0100 | [diff] [blame] | 462 | default: |
| 463 | printk(KERN_INFO "p54: unknown eeprom code : 0x%x\n", |
| 464 | le16_to_cpu(entry->code)); |
| 465 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | entry = (void *)entry + (entry_len + 1)*2; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 469 | } |
| 470 | |
Christian Lamparter | f2c2e25 | 2008-10-25 16:14:14 +0200 | [diff] [blame] | 471 | if (!synth || !priv->iq_autocal || !priv->output_limit || |
| 472 | !priv->curve_data) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 473 | printk(KERN_ERR "p54: not all required entries found in eeprom!\n"); |
| 474 | err = -EINVAL; |
| 475 | goto err; |
| 476 | } |
| 477 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 478 | priv->rxhw = synth & PDR_SYNTH_FRONTEND_MASK; |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 479 | if (priv->rxhw == 4) |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 480 | p54_init_xbow_synth(dev); |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 481 | if (!(synth & PDR_SYNTH_24_GHZ_DISABLED)) |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 482 | dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &band_2GHz; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 483 | if (!(synth & PDR_SYNTH_5_GHZ_DISABLED)) |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 484 | dev->wiphy->bands[IEEE80211_BAND_5GHZ] = &band_5GHz; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 485 | |
| 486 | if (!is_valid_ether_addr(dev->wiphy->perm_addr)) { |
| 487 | u8 perm_addr[ETH_ALEN]; |
| 488 | |
| 489 | printk(KERN_WARNING "%s: Invalid hwaddr! Using randomly generated MAC addr\n", |
| 490 | wiphy_name(dev->wiphy)); |
| 491 | random_ether_addr(perm_addr); |
| 492 | SET_IEEE80211_PERM_ADDR(dev, perm_addr); |
| 493 | } |
| 494 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 495 | printk(KERN_INFO "%s: hwaddr %pM, MAC:isl38%02x RF:%s\n", |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 496 | wiphy_name(dev->wiphy), |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 497 | dev->wiphy->perm_addr, |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 498 | priv->version, p54_rf_chips[priv->rxhw]); |
| 499 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 500 | return 0; |
| 501 | |
| 502 | err: |
| 503 | if (priv->iq_autocal) { |
| 504 | kfree(priv->iq_autocal); |
| 505 | priv->iq_autocal = NULL; |
| 506 | } |
| 507 | |
| 508 | if (priv->output_limit) { |
| 509 | kfree(priv->output_limit); |
| 510 | priv->output_limit = NULL; |
| 511 | } |
| 512 | |
| 513 | if (priv->curve_data) { |
| 514 | kfree(priv->curve_data); |
| 515 | priv->curve_data = NULL; |
| 516 | } |
| 517 | |
| 518 | printk(KERN_ERR "p54: eeprom parse failed!\n"); |
| 519 | return err; |
| 520 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 521 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 522 | static int p54_rssi_to_dbm(struct ieee80211_hw *dev, int rssi) |
| 523 | { |
| 524 | /* TODO: get the rssi_add & rssi_mul data from the eeprom */ |
| 525 | return ((rssi * 0x83) / 64 - 400) / 4; |
| 526 | } |
| 527 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 528 | static int p54_rx_data(struct ieee80211_hw *dev, struct sk_buff *skb) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 529 | { |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 530 | struct p54_common *priv = dev->priv; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 531 | struct p54_rx_data *hdr = (struct p54_rx_data *) skb->data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 532 | struct ieee80211_rx_status rx_status = {0}; |
| 533 | u16 freq = le16_to_cpu(hdr->freq); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 534 | size_t header_len = sizeof(*hdr); |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 535 | u32 tsf32; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 536 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 537 | if (!(hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_IN_FCS_GOOD))) { |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 538 | if (priv->filter_flags & FIF_FCSFAIL) |
| 539 | rx_status.flag |= RX_FLAG_FAILED_FCS_CRC; |
| 540 | else |
| 541 | return 0; |
| 542 | } |
| 543 | |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 544 | if (hdr->decrypt_status == P54_DECRYPT_OK) |
| 545 | rx_status.flag |= RX_FLAG_DECRYPTED; |
| 546 | if ((hdr->decrypt_status == P54_DECRYPT_FAIL_MICHAEL) || |
| 547 | (hdr->decrypt_status == P54_DECRYPT_FAIL_TKIP)) |
| 548 | rx_status.flag |= RX_FLAG_MMIC_ERROR; |
| 549 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 550 | rx_status.signal = p54_rssi_to_dbm(dev, hdr->rssi); |
| 551 | rx_status.noise = priv->noise; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 552 | /* XX correct? */ |
Larry.Finger@lwfinger.net | 18d7260 | 2008-06-30 10:39:49 -0500 | [diff] [blame] | 553 | rx_status.qual = (100 * hdr->rssi) / 127; |
Christian Lamparter | ffed785 | 2008-11-14 19:41:22 +0100 | [diff] [blame] | 554 | if (hdr->rate & 0x10) |
| 555 | rx_status.flag |= RX_FLAG_SHORTPRE; |
Christian Lamparter | cf3e74c | 2008-09-30 23:36:00 +0200 | [diff] [blame] | 556 | rx_status.rate_idx = (dev->conf.channel->band == IEEE80211_BAND_2GHZ ? |
| 557 | hdr->rate : (hdr->rate - 4)) & 0xf; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 558 | rx_status.freq = freq; |
Christian Lamparter | cf3e74c | 2008-09-30 23:36:00 +0200 | [diff] [blame] | 559 | rx_status.band = dev->conf.channel->band; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 560 | rx_status.antenna = hdr->antenna; |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 561 | |
| 562 | tsf32 = le32_to_cpu(hdr->tsf32); |
| 563 | if (tsf32 < priv->tsf_low32) |
| 564 | priv->tsf_high32++; |
| 565 | rx_status.mactime = ((u64)priv->tsf_high32) << 32 | tsf32; |
| 566 | priv->tsf_low32 = tsf32; |
| 567 | |
Johannes Berg | 03bffc1 | 2007-12-04 20:33:40 +0100 | [diff] [blame] | 568 | rx_status.flag |= RX_FLAG_TSFT; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 569 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 570 | if (hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN)) |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 571 | header_len += hdr->align[0]; |
| 572 | |
| 573 | skb_pull(skb, header_len); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 574 | skb_trim(skb, le16_to_cpu(hdr->len)); |
| 575 | |
| 576 | ieee80211_rx_irqsafe(dev, skb, &rx_status); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 577 | |
| 578 | return -1; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | static void inline p54_wake_free_queues(struct ieee80211_hw *dev) |
| 582 | { |
| 583 | struct p54_common *priv = dev->priv; |
| 584 | int i; |
| 585 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 586 | if (priv->mode == NL80211_IFTYPE_UNSPECIFIED) |
| 587 | return ; |
| 588 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 589 | for (i = 0; i < dev->queues; i++) |
Chr | 84df3ed | 2008-08-24 03:15:16 +0200 | [diff] [blame] | 590 | if (priv->tx_stats[i + 4].len < priv->tx_stats[i + 4].limit) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 591 | ieee80211_wake_queue(dev, i); |
| 592 | } |
| 593 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 594 | void p54_free_skb(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 595 | { |
| 596 | struct p54_common *priv = dev->priv; |
| 597 | struct ieee80211_tx_info *info; |
| 598 | struct memrecord *range; |
| 599 | unsigned long flags; |
| 600 | u32 freed = 0, last_addr = priv->rx_start; |
| 601 | |
Christian Lamparter | ffed785 | 2008-11-14 19:41:22 +0100 | [diff] [blame] | 602 | if (unlikely(!skb || !dev || !skb_queue_len(&priv->tx_queue))) |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 603 | return; |
| 604 | |
| 605 | spin_lock_irqsave(&priv->tx_queue.lock, flags); |
| 606 | info = IEEE80211_SKB_CB(skb); |
| 607 | range = (void *)info->rate_driver_data; |
| 608 | if (skb->prev != (struct sk_buff *)&priv->tx_queue) { |
| 609 | struct ieee80211_tx_info *ni; |
| 610 | struct memrecord *mr; |
| 611 | |
| 612 | ni = IEEE80211_SKB_CB(skb->prev); |
| 613 | mr = (struct memrecord *)ni->rate_driver_data; |
| 614 | last_addr = mr->end_addr; |
| 615 | } |
| 616 | if (skb->next != (struct sk_buff *)&priv->tx_queue) { |
| 617 | struct ieee80211_tx_info *ni; |
| 618 | struct memrecord *mr; |
| 619 | |
| 620 | ni = IEEE80211_SKB_CB(skb->next); |
| 621 | mr = (struct memrecord *)ni->rate_driver_data; |
| 622 | freed = mr->start_addr - last_addr; |
| 623 | } else |
| 624 | freed = priv->rx_end - last_addr; |
| 625 | __skb_unlink(skb, &priv->tx_queue); |
| 626 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
| 627 | kfree_skb(skb); |
| 628 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 629 | if (freed >= priv->headroom + sizeof(struct p54_hdr) + 48 + |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 630 | IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom) |
| 631 | p54_wake_free_queues(dev); |
| 632 | } |
| 633 | EXPORT_SYMBOL_GPL(p54_free_skb); |
| 634 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 635 | static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 636 | { |
| 637 | struct p54_common *priv = dev->priv; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 638 | struct p54_hdr *hdr = (struct p54_hdr *) skb->data; |
| 639 | struct p54_frame_sent *payload = (struct p54_frame_sent *) hdr->data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 640 | struct sk_buff *entry = (struct sk_buff *) priv->tx_queue.next; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 641 | u32 addr = le32_to_cpu(hdr->req_id) - priv->headroom; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 642 | struct memrecord *range = NULL; |
| 643 | u32 freed = 0; |
| 644 | u32 last_addr = priv->rx_start; |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 645 | unsigned long flags; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 646 | int count, idx; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 647 | |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 648 | spin_lock_irqsave(&priv->tx_queue.lock, flags); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 649 | while (entry != (struct sk_buff *)&priv->tx_queue) { |
Johannes Berg | 552fe53 | 2008-05-30 21:07:15 +0200 | [diff] [blame] | 650 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry); |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 651 | struct p54_hdr *entry_hdr; |
| 652 | struct p54_tx_data *entry_data; |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 653 | int pad = 0; |
| 654 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 655 | range = (void *)info->rate_driver_data; |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 656 | if (range->start_addr != addr) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 657 | last_addr = range->end_addr; |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 658 | entry = entry->next; |
| 659 | continue; |
| 660 | } |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 661 | |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 662 | if (entry->next != (struct sk_buff *)&priv->tx_queue) { |
| 663 | struct ieee80211_tx_info *ni; |
| 664 | struct memrecord *mr; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 665 | |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 666 | ni = IEEE80211_SKB_CB(entry->next); |
| 667 | mr = (struct memrecord *)ni->rate_driver_data; |
| 668 | freed = mr->start_addr - last_addr; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 669 | } else |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 670 | freed = priv->rx_end - last_addr; |
| 671 | |
| 672 | last_addr = range->end_addr; |
| 673 | __skb_unlink(entry, &priv->tx_queue); |
| 674 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
| 675 | |
Christian Lamparter | c772a08 | 2008-11-29 22:33:57 +0100 | [diff] [blame] | 676 | entry_hdr = (struct p54_hdr *) entry->data; |
| 677 | entry_data = (struct p54_tx_data *) entry_hdr->data; |
| 678 | priv->tx_stats[entry_data->hw_queue].len--; |
| 679 | |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 680 | if (unlikely(entry == priv->cached_beacon)) { |
| 681 | kfree_skb(entry); |
| 682 | priv->cached_beacon = NULL; |
| 683 | goto out; |
| 684 | } |
| 685 | |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 686 | /* |
| 687 | * Clear manually, ieee80211_tx_info_clear_status would |
| 688 | * clear the counts too and we need them. |
| 689 | */ |
| 690 | memset(&info->status.ampdu_ack_len, 0, |
| 691 | sizeof(struct ieee80211_tx_info) - |
| 692 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len)); |
| 693 | BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, |
| 694 | status.ampdu_ack_len) != 23); |
| 695 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 696 | if (entry_hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN)) |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 697 | pad = entry_data->align[0]; |
| 698 | |
| 699 | /* walk through the rates array and adjust the counts */ |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 700 | count = payload->tries; |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 701 | for (idx = 0; idx < 4; idx++) { |
| 702 | if (count >= info->status.rates[idx].count) { |
| 703 | count -= info->status.rates[idx].count; |
| 704 | } else if (count > 0) { |
| 705 | info->status.rates[idx].count = count; |
| 706 | count = 0; |
| 707 | } else { |
| 708 | info->status.rates[idx].idx = -1; |
| 709 | info->status.rates[idx].count = 0; |
| 710 | } |
| 711 | } |
| 712 | |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 713 | if (!(info->flags & IEEE80211_TX_CTL_NO_ACK) && |
| 714 | (!payload->status)) |
| 715 | info->flags |= IEEE80211_TX_STAT_ACK; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 716 | if (payload->status & P54_TX_PSM_CANCELLED) |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 717 | info->flags |= IEEE80211_TX_STAT_TX_FILTERED; |
| 718 | info->status.ack_signal = p54_rssi_to_dbm(dev, |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 719 | (int)payload->ack_rssi); |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 720 | skb_pull(entry, sizeof(*hdr) + pad + sizeof(*entry_data)); |
| 721 | ieee80211_tx_status_irqsafe(dev, entry); |
| 722 | goto out; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 723 | } |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 724 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 725 | |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 726 | out: |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 727 | if (freed >= priv->headroom + sizeof(struct p54_hdr) + 48 + |
Christian Lamparter | 9de5776f | 2008-10-15 04:05:51 +0200 | [diff] [blame] | 728 | IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 729 | p54_wake_free_queues(dev); |
| 730 | } |
| 731 | |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 732 | static void p54_rx_eeprom_readback(struct ieee80211_hw *dev, |
| 733 | struct sk_buff *skb) |
| 734 | { |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 735 | struct p54_hdr *hdr = (struct p54_hdr *) skb->data; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 736 | struct p54_eeprom_lm86 *eeprom = (struct p54_eeprom_lm86 *) hdr->data; |
| 737 | struct p54_common *priv = dev->priv; |
| 738 | |
| 739 | if (!priv->eeprom) |
| 740 | return ; |
| 741 | |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 742 | memcpy(priv->eeprom, eeprom->data, le16_to_cpu(eeprom->len)); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 743 | |
| 744 | complete(&priv->eeprom_comp); |
| 745 | } |
| 746 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 747 | static void p54_rx_stats(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 748 | { |
| 749 | struct p54_common *priv = dev->priv; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 750 | struct p54_hdr *hdr = (struct p54_hdr *) skb->data; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 751 | struct p54_statistics *stats = (struct p54_statistics *) hdr->data; |
| 752 | u32 tsf32 = le32_to_cpu(stats->tsf32); |
| 753 | |
| 754 | if (tsf32 < priv->tsf_low32) |
| 755 | priv->tsf_high32++; |
| 756 | priv->tsf_low32 = tsf32; |
| 757 | |
| 758 | priv->stats.dot11RTSFailureCount = le32_to_cpu(stats->rts_fail); |
| 759 | priv->stats.dot11RTSSuccessCount = le32_to_cpu(stats->rts_success); |
| 760 | priv->stats.dot11FCSErrorCount = le32_to_cpu(stats->rx_bad_fcs); |
| 761 | |
| 762 | priv->noise = p54_rssi_to_dbm(dev, le32_to_cpu(stats->noise)); |
| 763 | complete(&priv->stats_comp); |
| 764 | |
| 765 | mod_timer(&priv->stats_timer, jiffies + 5 * HZ); |
| 766 | } |
| 767 | |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 768 | static void p54_rx_trap(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 769 | { |
| 770 | struct p54_hdr *hdr = (struct p54_hdr *) skb->data; |
| 771 | struct p54_trap *trap = (struct p54_trap *) hdr->data; |
| 772 | u16 event = le16_to_cpu(trap->event); |
| 773 | u16 freq = le16_to_cpu(trap->frequency); |
| 774 | |
| 775 | switch (event) { |
| 776 | case P54_TRAP_BEACON_TX: |
| 777 | break; |
| 778 | case P54_TRAP_RADAR: |
| 779 | printk(KERN_INFO "%s: radar (freq:%d MHz)\n", |
| 780 | wiphy_name(dev->wiphy), freq); |
| 781 | break; |
| 782 | case P54_TRAP_NO_BEACON: |
| 783 | break; |
| 784 | case P54_TRAP_SCAN: |
| 785 | break; |
| 786 | case P54_TRAP_TBTT: |
| 787 | break; |
| 788 | case P54_TRAP_TIMER: |
| 789 | break; |
| 790 | default: |
| 791 | printk(KERN_INFO "%s: received event:%x freq:%d\n", |
| 792 | wiphy_name(dev->wiphy), event, freq); |
| 793 | break; |
| 794 | } |
| 795 | } |
| 796 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 797 | static int p54_rx_control(struct ieee80211_hw *dev, struct sk_buff *skb) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 798 | { |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 799 | struct p54_hdr *hdr = (struct p54_hdr *) skb->data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 800 | |
| 801 | switch (le16_to_cpu(hdr->type)) { |
| 802 | case P54_CONTROL_TYPE_TXDONE: |
| 803 | p54_rx_frame_sent(dev, skb); |
| 804 | break; |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 805 | case P54_CONTROL_TYPE_TRAP: |
| 806 | p54_rx_trap(dev, skb); |
| 807 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 808 | case P54_CONTROL_TYPE_BBP: |
| 809 | break; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 810 | case P54_CONTROL_TYPE_STAT_READBACK: |
| 811 | p54_rx_stats(dev, skb); |
| 812 | break; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 813 | case P54_CONTROL_TYPE_EEPROM_READBACK: |
| 814 | p54_rx_eeprom_readback(dev, skb); |
| 815 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 816 | default: |
| 817 | printk(KERN_DEBUG "%s: not handling 0x%02x type control frame\n", |
| 818 | wiphy_name(dev->wiphy), le16_to_cpu(hdr->type)); |
| 819 | break; |
| 820 | } |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 821 | |
| 822 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | /* returns zero if skb can be reused */ |
| 826 | int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 827 | { |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 828 | u16 type = le16_to_cpu(*((__le16 *)skb->data)); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 829 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 830 | if (type & P54_HDR_FLAG_CONTROL) |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 831 | return p54_rx_control(dev, skb); |
| 832 | else |
| 833 | return p54_rx_data(dev, skb); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 834 | } |
| 835 | EXPORT_SYMBOL_GPL(p54_rx); |
| 836 | |
| 837 | /* |
| 838 | * So, the firmware is somewhat stupid and doesn't know what places in its |
| 839 | * memory incoming data should go to. By poking around in the firmware, we |
| 840 | * can find some unused memory to upload our packets to. However, data that we |
| 841 | * want the card to TX needs to stay intact until the card has told us that |
| 842 | * it is done with it. This function finds empty places we can upload to and |
| 843 | * marks allocated areas as reserved if necessary. p54_rx_frame_sent frees |
| 844 | * allocated areas. |
| 845 | */ |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 846 | static int p54_assign_address(struct ieee80211_hw *dev, struct sk_buff *skb, |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 847 | struct p54_hdr *data, u32 len) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 848 | { |
| 849 | struct p54_common *priv = dev->priv; |
| 850 | struct sk_buff *entry = priv->tx_queue.next; |
| 851 | struct sk_buff *target_skb = NULL; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 852 | struct ieee80211_tx_info *info; |
| 853 | struct memrecord *range; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 854 | u32 last_addr = priv->rx_start; |
| 855 | u32 largest_hole = 0; |
| 856 | u32 target_addr = priv->rx_start; |
| 857 | unsigned long flags; |
| 858 | unsigned int left; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 859 | len = (len + priv->headroom + priv->tailroom + 3) & ~0x3; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 860 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 861 | if (!skb) |
| 862 | return -EINVAL; |
| 863 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 864 | spin_lock_irqsave(&priv->tx_queue.lock, flags); |
| 865 | left = skb_queue_len(&priv->tx_queue); |
| 866 | while (left--) { |
| 867 | u32 hole_size; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 868 | info = IEEE80211_SKB_CB(entry); |
| 869 | range = (void *)info->rate_driver_data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 870 | hole_size = range->start_addr - last_addr; |
| 871 | if (!target_skb && hole_size >= len) { |
| 872 | target_skb = entry->prev; |
| 873 | hole_size -= len; |
| 874 | target_addr = last_addr; |
| 875 | } |
| 876 | largest_hole = max(largest_hole, hole_size); |
| 877 | last_addr = range->end_addr; |
| 878 | entry = entry->next; |
| 879 | } |
| 880 | if (!target_skb && priv->rx_end - last_addr >= len) { |
| 881 | target_skb = priv->tx_queue.prev; |
| 882 | largest_hole = max(largest_hole, priv->rx_end - last_addr - len); |
| 883 | if (!skb_queue_empty(&priv->tx_queue)) { |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 884 | info = IEEE80211_SKB_CB(target_skb); |
| 885 | range = (void *)info->rate_driver_data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 886 | target_addr = range->end_addr; |
| 887 | } |
| 888 | } else |
| 889 | largest_hole = max(largest_hole, priv->rx_end - last_addr); |
| 890 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 891 | if (!target_skb) { |
| 892 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
| 893 | ieee80211_stop_queues(dev); |
| 894 | return -ENOMEM; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 895 | } |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 896 | |
| 897 | info = IEEE80211_SKB_CB(skb); |
| 898 | range = (void *)info->rate_driver_data; |
| 899 | range->start_addr = target_addr; |
| 900 | range->end_addr = target_addr + len; |
| 901 | __skb_queue_after(&priv->tx_queue, target_skb, skb); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 902 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
| 903 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 904 | if (largest_hole < priv->headroom + sizeof(struct p54_hdr) + |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 905 | 48 + IEEE80211_MAX_RTS_THRESHOLD + priv->tailroom) |
| 906 | ieee80211_stop_queues(dev); |
| 907 | |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 908 | data->req_id = cpu_to_le32(target_addr + priv->headroom); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 909 | return 0; |
| 910 | } |
| 911 | |
| 912 | static struct sk_buff *p54_alloc_skb(struct ieee80211_hw *dev, |
| 913 | u16 hdr_flags, u16 len, u16 type, gfp_t memflags) |
| 914 | { |
| 915 | struct p54_common *priv = dev->priv; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 916 | struct p54_hdr *hdr; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 917 | struct sk_buff *skb; |
| 918 | |
| 919 | skb = __dev_alloc_skb(len + priv->tx_hdr_len, memflags); |
| 920 | if (!skb) |
| 921 | return NULL; |
| 922 | skb_reserve(skb, priv->tx_hdr_len); |
| 923 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 924 | hdr = (struct p54_hdr *) skb_put(skb, sizeof(*hdr)); |
| 925 | hdr->flags = cpu_to_le16(hdr_flags); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 926 | hdr->len = cpu_to_le16(len - sizeof(*hdr)); |
| 927 | hdr->type = cpu_to_le16(type); |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 928 | hdr->tries = hdr->rts_tries = 0; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 929 | |
| 930 | if (unlikely(p54_assign_address(dev, skb, hdr, len))) { |
| 931 | kfree_skb(skb); |
| 932 | return NULL; |
| 933 | } |
| 934 | return skb; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 935 | } |
| 936 | |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 937 | int p54_read_eeprom(struct ieee80211_hw *dev) |
| 938 | { |
| 939 | struct p54_common *priv = dev->priv; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 940 | struct p54_hdr *hdr = NULL; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 941 | struct p54_eeprom_lm86 *eeprom_hdr; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 942 | struct sk_buff *skb; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 943 | size_t eeprom_size = 0x2020, offset = 0, blocksize; |
| 944 | int ret = -ENOMEM; |
| 945 | void *eeprom = NULL; |
| 946 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 947 | skb = p54_alloc_skb(dev, 0x8000, sizeof(*hdr) + sizeof(*eeprom_hdr) + |
| 948 | EEPROM_READBACK_LEN, |
| 949 | P54_CONTROL_TYPE_EEPROM_READBACK, GFP_KERNEL); |
| 950 | if (!skb) |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 951 | goto free; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 952 | priv->eeprom = kzalloc(EEPROM_READBACK_LEN, GFP_KERNEL); |
| 953 | if (!priv->eeprom) |
| 954 | goto free; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 955 | eeprom = kzalloc(eeprom_size, GFP_KERNEL); |
| 956 | if (!eeprom) |
| 957 | goto free; |
| 958 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 959 | eeprom_hdr = (struct p54_eeprom_lm86 *) skb_put(skb, |
| 960 | sizeof(*eeprom_hdr) + EEPROM_READBACK_LEN); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 961 | |
| 962 | while (eeprom_size) { |
| 963 | blocksize = min(eeprom_size, (size_t)EEPROM_READBACK_LEN); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 964 | eeprom_hdr->offset = cpu_to_le16(offset); |
| 965 | eeprom_hdr->len = cpu_to_le16(blocksize); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 966 | priv->tx(dev, skb, 0); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 967 | |
| 968 | if (!wait_for_completion_interruptible_timeout(&priv->eeprom_comp, HZ)) { |
| 969 | printk(KERN_ERR "%s: device does not respond!\n", |
| 970 | wiphy_name(dev->wiphy)); |
| 971 | ret = -EBUSY; |
| 972 | goto free; |
| 973 | } |
| 974 | |
| 975 | memcpy(eeprom + offset, priv->eeprom, blocksize); |
| 976 | offset += blocksize; |
| 977 | eeprom_size -= blocksize; |
| 978 | } |
| 979 | |
| 980 | ret = p54_parse_eeprom(dev, eeprom, offset); |
| 981 | free: |
| 982 | kfree(priv->eeprom); |
| 983 | priv->eeprom = NULL; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 984 | p54_free_skb(dev, skb); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 985 | kfree(eeprom); |
| 986 | |
| 987 | return ret; |
| 988 | } |
| 989 | EXPORT_SYMBOL_GPL(p54_read_eeprom); |
| 990 | |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 991 | static int p54_set_tim(struct ieee80211_hw *dev, struct ieee80211_sta *sta, |
| 992 | bool set) |
| 993 | { |
| 994 | struct p54_common *priv = dev->priv; |
| 995 | struct sk_buff *skb; |
| 996 | struct p54_tim *tim; |
| 997 | |
| 998 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, |
| 999 | sizeof(struct p54_hdr) + sizeof(*tim), |
| 1000 | P54_CONTROL_TYPE_TIM, GFP_KERNEL); |
| 1001 | if (!skb) |
| 1002 | return -ENOMEM; |
| 1003 | |
| 1004 | tim = (struct p54_tim *) skb_put(skb, sizeof(*tim)); |
| 1005 | tim->count = 1; |
| 1006 | tim->entry[0] = cpu_to_le16(set ? (sta->aid | 0x8000) : sta->aid); |
| 1007 | priv->tx(dev, skb, 1); |
| 1008 | return 0; |
| 1009 | } |
| 1010 | |
| 1011 | static int p54_sta_unlock(struct ieee80211_hw *dev, u8 *addr) |
| 1012 | { |
| 1013 | struct p54_common *priv = dev->priv; |
| 1014 | struct sk_buff *skb; |
| 1015 | struct p54_sta_unlock *sta; |
| 1016 | |
| 1017 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, |
| 1018 | sizeof(struct p54_hdr) + sizeof(*sta), |
| 1019 | P54_CONTROL_TYPE_PSM_STA_UNLOCK, GFP_ATOMIC); |
| 1020 | if (!skb) |
| 1021 | return -ENOMEM; |
| 1022 | |
| 1023 | sta = (struct p54_sta_unlock *)skb_put(skb, sizeof(*sta)); |
| 1024 | memcpy(sta->addr, addr, ETH_ALEN); |
| 1025 | priv->tx(dev, skb, 1); |
| 1026 | return 0; |
| 1027 | } |
| 1028 | |
Christian Lamparter | c772a08 | 2008-11-29 22:33:57 +0100 | [diff] [blame] | 1029 | static void p54_sta_notify_ps(struct ieee80211_hw *dev, |
| 1030 | enum sta_notify_ps_cmd notify_cmd, |
| 1031 | struct ieee80211_sta *sta) |
| 1032 | { |
| 1033 | switch (notify_cmd) { |
| 1034 | case STA_NOTIFY_AWAKE: |
| 1035 | p54_sta_unlock(dev, sta->addr); |
| 1036 | break; |
| 1037 | default: |
| 1038 | break; |
| 1039 | } |
| 1040 | } |
| 1041 | |
| 1042 | static void p54_sta_notify(struct ieee80211_hw *dev, struct ieee80211_vif *vif, |
| 1043 | enum sta_notify_cmd notify_cmd, |
| 1044 | struct ieee80211_sta *sta) |
| 1045 | { |
| 1046 | switch (notify_cmd) { |
| 1047 | case STA_NOTIFY_ADD: |
| 1048 | case STA_NOTIFY_REMOVE: |
| 1049 | /* |
| 1050 | * Notify the firmware that we don't want or we don't |
| 1051 | * need to buffer frames for this station anymore. |
| 1052 | */ |
| 1053 | |
| 1054 | p54_sta_unlock(dev, sta->addr); |
| 1055 | break; |
| 1056 | default: |
| 1057 | break; |
| 1058 | } |
| 1059 | } |
| 1060 | |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1061 | static int p54_tx_cancel(struct ieee80211_hw *dev, struct sk_buff *entry) |
| 1062 | { |
| 1063 | struct p54_common *priv = dev->priv; |
| 1064 | struct sk_buff *skb; |
| 1065 | struct p54_hdr *hdr; |
| 1066 | struct p54_txcancel *cancel; |
| 1067 | |
| 1068 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, |
| 1069 | sizeof(struct p54_hdr) + sizeof(*cancel), |
| 1070 | P54_CONTROL_TYPE_TXCANCEL, GFP_ATOMIC); |
| 1071 | if (!skb) |
| 1072 | return -ENOMEM; |
| 1073 | |
| 1074 | hdr = (void *)entry->data; |
| 1075 | cancel = (struct p54_txcancel *)skb_put(skb, sizeof(*cancel)); |
| 1076 | cancel->req_id = hdr->req_id; |
| 1077 | priv->tx(dev, skb, 1); |
| 1078 | return 0; |
| 1079 | } |
| 1080 | |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 1081 | static int p54_tx_fill(struct ieee80211_hw *dev, struct sk_buff *skb, |
| 1082 | struct ieee80211_tx_info *info, u8 *queue, size_t *extra_len, |
| 1083 | u16 *flags, u16 *aid) |
| 1084 | { |
| 1085 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 1086 | struct p54_common *priv = dev->priv; |
| 1087 | int ret = 0; |
| 1088 | |
| 1089 | if (unlikely(ieee80211_is_mgmt(hdr->frame_control))) { |
| 1090 | if (ieee80211_is_beacon(hdr->frame_control)) { |
| 1091 | *aid = 0; |
| 1092 | *queue = 0; |
| 1093 | *extra_len = IEEE80211_MAX_TIM_LEN; |
| 1094 | *flags = P54_HDR_FLAG_DATA_OUT_TIMESTAMP; |
| 1095 | return 0; |
| 1096 | } else if (ieee80211_is_probe_resp(hdr->frame_control)) { |
| 1097 | *aid = 0; |
| 1098 | *queue = 2; |
| 1099 | *flags = P54_HDR_FLAG_DATA_OUT_TIMESTAMP | |
| 1100 | P54_HDR_FLAG_DATA_OUT_NOCANCEL; |
| 1101 | return 0; |
| 1102 | } else { |
| 1103 | *queue = 2; |
| 1104 | ret = 0; |
| 1105 | } |
| 1106 | } else { |
| 1107 | *queue += 4; |
| 1108 | ret = 1; |
| 1109 | } |
| 1110 | |
| 1111 | switch (priv->mode) { |
| 1112 | case NL80211_IFTYPE_STATION: |
| 1113 | *aid = 1; |
| 1114 | break; |
| 1115 | case NL80211_IFTYPE_AP: |
| 1116 | case NL80211_IFTYPE_ADHOC: |
Christian Lamparter | d131bb5 | 2008-11-15 17:02:31 +0100 | [diff] [blame] | 1117 | case NL80211_IFTYPE_MESH_POINT: |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 1118 | if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) { |
| 1119 | *aid = 0; |
| 1120 | *queue = 3; |
| 1121 | return 0; |
| 1122 | } |
| 1123 | if (info->control.sta) |
| 1124 | *aid = info->control.sta->aid; |
| 1125 | else |
Christian Lamparter | c772a08 | 2008-11-29 22:33:57 +0100 | [diff] [blame] | 1126 | *flags |= P54_HDR_FLAG_DATA_OUT_NOCANCEL; |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 1127 | } |
| 1128 | return ret; |
| 1129 | } |
| 1130 | |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1131 | static u8 p54_convert_algo(enum ieee80211_key_alg alg) |
| 1132 | { |
| 1133 | switch (alg) { |
| 1134 | case ALG_WEP: |
| 1135 | return P54_CRYPTO_WEP; |
| 1136 | case ALG_TKIP: |
| 1137 | return P54_CRYPTO_TKIPMICHAEL; |
| 1138 | case ALG_CCMP: |
| 1139 | return P54_CRYPTO_AESCCMP; |
| 1140 | default: |
| 1141 | return 0; |
| 1142 | } |
| 1143 | } |
| 1144 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1145 | static int p54_tx(struct ieee80211_hw *dev, struct sk_buff *skb) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1146 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1147 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1148 | struct ieee80211_tx_queue_stats *current_queue = NULL; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1149 | struct p54_common *priv = dev->priv; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1150 | struct p54_hdr *hdr; |
| 1151 | struct p54_tx_data *txhdr; |
John W. Linville | db4186c | 2008-10-31 15:53:12 -0400 | [diff] [blame] | 1152 | size_t padding, len, tim_len = 0; |
Christian Lamparter | c772a08 | 2008-11-29 22:33:57 +0100 | [diff] [blame] | 1153 | int i, j, ridx, ret; |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 1154 | u16 hdr_flags = 0, aid = 0; |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1155 | u8 rate, queue, crypt_offset = 0; |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 1156 | u8 cts_rate = 0x20; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 1157 | u8 rc_flags; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 1158 | u8 calculated_tries[4]; |
| 1159 | u8 nrates = 0, nremaining = 8; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1160 | |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 1161 | queue = skb_get_queue_mapping(skb); |
| 1162 | |
Christian Lamparter | c772a08 | 2008-11-29 22:33:57 +0100 | [diff] [blame] | 1163 | ret = p54_tx_fill(dev, skb, info, &queue, &tim_len, &hdr_flags, &aid); |
| 1164 | current_queue = &priv->tx_stats[queue]; |
| 1165 | if (unlikely((current_queue->len > current_queue->limit) && ret)) |
| 1166 | return NETDEV_TX_BUSY; |
| 1167 | current_queue->len++; |
| 1168 | current_queue->count++; |
| 1169 | if ((current_queue->len == current_queue->limit) && ret) |
| 1170 | ieee80211_stop_queue(dev, skb_get_queue_mapping(skb)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1171 | |
| 1172 | padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3; |
| 1173 | len = skb->len; |
| 1174 | |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1175 | if (info->control.hw_key) { |
| 1176 | crypt_offset = ieee80211_get_hdrlen_from_skb(skb); |
| 1177 | if (info->control.hw_key->alg == ALG_TKIP) { |
| 1178 | u8 *iv = (u8 *)(skb->data + crypt_offset); |
| 1179 | /* |
| 1180 | * The firmware excepts that the IV has to have |
| 1181 | * this special format |
| 1182 | */ |
| 1183 | iv[1] = iv[0]; |
| 1184 | iv[0] = iv[2]; |
| 1185 | iv[2] = 0; |
| 1186 | } |
| 1187 | } |
| 1188 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1189 | txhdr = (struct p54_tx_data *) skb_push(skb, sizeof(*txhdr) + padding); |
| 1190 | hdr = (struct p54_hdr *) skb_push(skb, sizeof(*hdr)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1191 | |
| 1192 | if (padding) |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1193 | hdr_flags |= P54_HDR_FLAG_DATA_ALIGN; |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 1194 | hdr->type = cpu_to_le16(aid); |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1195 | hdr->rts_tries = info->control.rates[0].count; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1196 | |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 1197 | /* |
| 1198 | * we register the rates in perfect order, and |
| 1199 | * RTS/CTS won't happen on 5 GHz |
| 1200 | */ |
| 1201 | cts_rate = info->control.rts_cts_rate_idx; |
| 1202 | |
| 1203 | memset(&txhdr->rateset, 0, sizeof(txhdr->rateset)); |
| 1204 | |
| 1205 | /* see how many rates got used */ |
| 1206 | for (i = 0; i < 4; i++) { |
| 1207 | if (info->control.rates[i].idx < 0) |
| 1208 | break; |
| 1209 | nrates++; |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 1210 | } |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 1211 | |
| 1212 | /* limit tries to 8/nrates per rate */ |
| 1213 | for (i = 0; i < nrates; i++) { |
| 1214 | /* |
| 1215 | * The magic expression here is equivalent to 8/nrates for |
| 1216 | * all values that matter, but avoids division and jumps. |
| 1217 | * Note that nrates can only take the values 1 through 4. |
| 1218 | */ |
| 1219 | calculated_tries[i] = min_t(int, ((15 >> nrates) | 1) + 1, |
| 1220 | info->control.rates[i].count); |
| 1221 | nremaining -= calculated_tries[i]; |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 1222 | } |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 1223 | |
| 1224 | /* if there are tries left, distribute from back to front */ |
| 1225 | for (i = nrates - 1; nremaining > 0 && i >= 0; i--) { |
| 1226 | int tmp = info->control.rates[i].count - calculated_tries[i]; |
| 1227 | |
| 1228 | if (tmp <= 0) |
| 1229 | continue; |
| 1230 | /* RC requested more tries at this rate */ |
| 1231 | |
| 1232 | tmp = min_t(int, tmp, nremaining); |
| 1233 | calculated_tries[i] += tmp; |
| 1234 | nremaining -= tmp; |
| 1235 | } |
| 1236 | |
| 1237 | ridx = 0; |
| 1238 | for (i = 0; i < nrates && ridx < 8; i++) { |
| 1239 | /* we register the rates in perfect order */ |
| 1240 | rate = info->control.rates[i].idx; |
| 1241 | if (info->band == IEEE80211_BAND_5GHZ) |
| 1242 | rate += 4; |
| 1243 | |
| 1244 | /* store the count we actually calculated for TX status */ |
| 1245 | info->control.rates[i].count = calculated_tries[i]; |
| 1246 | |
| 1247 | rc_flags = info->control.rates[i].flags; |
| 1248 | if (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) { |
| 1249 | rate |= 0x10; |
| 1250 | cts_rate |= 0x10; |
| 1251 | } |
| 1252 | if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) |
| 1253 | rate |= 0x40; |
| 1254 | else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) |
| 1255 | rate |= 0x20; |
| 1256 | for (j = 0; j < calculated_tries[i] && ridx < 8; j++) { |
| 1257 | txhdr->rateset[ridx] = rate; |
| 1258 | ridx++; |
| 1259 | } |
| 1260 | } |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1261 | |
| 1262 | if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) |
| 1263 | hdr_flags |= P54_HDR_FLAG_DATA_OUT_SEQNR; |
| 1264 | |
| 1265 | /* TODO: enable bursting */ |
| 1266 | hdr->flags = cpu_to_le16(hdr_flags); |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1267 | hdr->tries = ridx; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1268 | txhdr->rts_rate_idx = 0; |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1269 | if (info->control.hw_key) { |
| 1270 | crypt_offset += info->control.hw_key->iv_len; |
| 1271 | txhdr->key_type = p54_convert_algo(info->control.hw_key->alg); |
| 1272 | txhdr->key_len = min((u8)16, info->control.hw_key->keylen); |
| 1273 | memcpy(txhdr->key, info->control.hw_key->key, txhdr->key_len); |
| 1274 | if (info->control.hw_key->alg == ALG_TKIP) { |
| 1275 | if (unlikely(skb_tailroom(skb) < 12)) |
| 1276 | goto err; |
| 1277 | /* reserve space for the MIC key */ |
| 1278 | len += 8; |
| 1279 | memcpy(skb_put(skb, 8), &(info->control.hw_key->key |
| 1280 | [NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY]), 8); |
| 1281 | } |
| 1282 | /* reserve some space for ICV */ |
| 1283 | len += info->control.hw_key->icv_len; |
| 1284 | } else { |
| 1285 | txhdr->key_type = 0; |
| 1286 | txhdr->key_len = 0; |
| 1287 | } |
| 1288 | txhdr->crypt_offset = crypt_offset; |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 1289 | txhdr->hw_queue = queue; |
Christian Lamparter | ffed785 | 2008-11-14 19:41:22 +0100 | [diff] [blame] | 1290 | if (current_queue) |
| 1291 | txhdr->backlog = current_queue->len; |
| 1292 | else |
| 1293 | txhdr->backlog = 0; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1294 | memset(txhdr->durations, 0, sizeof(txhdr->durations)); |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 1295 | txhdr->tx_antenna = (info->antenna_sel_tx == 0) ? |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1296 | 2 : info->antenna_sel_tx - 1; |
Christian Lamparter | 09adf28 | 2008-09-06 14:25:53 +0200 | [diff] [blame] | 1297 | txhdr->output_power = priv->output_power; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1298 | txhdr->cts_rate = cts_rate; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1299 | if (padding) |
| 1300 | txhdr->align[0] = padding; |
| 1301 | |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1302 | hdr->len = cpu_to_le16(len); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1303 | /* modifies skb->cb and with it info, so must be last! */ |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1304 | if (unlikely(p54_assign_address(dev, skb, hdr, skb->len + tim_len))) |
| 1305 | goto err; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1306 | priv->tx(dev, skb, 0); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1307 | return 0; |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1308 | |
| 1309 | err: |
| 1310 | skb_pull(skb, sizeof(*hdr) + sizeof(*txhdr) + padding); |
| 1311 | if (current_queue) { |
| 1312 | current_queue->len--; |
| 1313 | current_queue->count--; |
| 1314 | } |
| 1315 | return NETDEV_TX_BUSY; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1316 | } |
| 1317 | |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1318 | static int p54_setup_mac(struct ieee80211_hw *dev, u16 mode, const u8 *bssid) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1319 | { |
| 1320 | struct p54_common *priv = dev->priv; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1321 | struct sk_buff *skb; |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1322 | struct p54_setup_mac *setup; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1323 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1324 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*setup) + |
| 1325 | sizeof(struct p54_hdr), P54_CONTROL_TYPE_SETUP, |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1326 | GFP_ATOMIC); |
| 1327 | if (!skb) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1328 | return -ENOMEM; |
| 1329 | |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1330 | setup = (struct p54_setup_mac *) skb_put(skb, sizeof(*setup)); |
| 1331 | priv->mac_mode = mode; |
| 1332 | setup->mac_mode = cpu_to_le16(mode); |
| 1333 | memcpy(setup->mac_addr, priv->mac_addr, ETH_ALEN); |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 1334 | if (!bssid) |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1335 | memset(setup->bssid, ~0, ETH_ALEN); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1336 | else |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1337 | memcpy(setup->bssid, bssid, ETH_ALEN); |
| 1338 | setup->rx_antenna = priv->rx_antenna; |
Chr | 9483407 | 2008-10-29 22:39:50 +0100 | [diff] [blame] | 1339 | setup->rx_align = 0; |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1340 | if (priv->fw_var < 0x500) { |
Christian Lamparter | ced0957 | 2008-11-14 19:42:39 +0100 | [diff] [blame] | 1341 | setup->v1.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask); |
Chr | 9483407 | 2008-10-29 22:39:50 +0100 | [diff] [blame] | 1342 | memset(setup->v1.rts_rates, 0, 8); |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1343 | setup->v1.rx_addr = cpu_to_le32(priv->rx_end); |
| 1344 | setup->v1.max_rx = cpu_to_le16(priv->rx_mtu); |
| 1345 | setup->v1.rxhw = cpu_to_le16(priv->rxhw); |
Christian Lamparter | ced0957 | 2008-11-14 19:42:39 +0100 | [diff] [blame] | 1346 | setup->v1.wakeup_timer = cpu_to_le16(priv->wakeup_timer); |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1347 | setup->v1.unalloc0 = cpu_to_le16(0); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1348 | } else { |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1349 | setup->v2.rx_addr = cpu_to_le32(priv->rx_end); |
| 1350 | setup->v2.max_rx = cpu_to_le16(priv->rx_mtu); |
| 1351 | setup->v2.rxhw = cpu_to_le16(priv->rxhw); |
Christian Lamparter | ced0957 | 2008-11-14 19:42:39 +0100 | [diff] [blame] | 1352 | setup->v2.timer = cpu_to_le16(priv->wakeup_timer); |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1353 | setup->v2.truncate = cpu_to_le16(48896); |
Christian Lamparter | ced0957 | 2008-11-14 19:42:39 +0100 | [diff] [blame] | 1354 | setup->v2.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask); |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1355 | setup->v2.sbss_offset = 0; |
| 1356 | setup->v2.mcast_window = 0; |
| 1357 | setup->v2.rx_rssi_threshold = 0; |
| 1358 | setup->v2.rx_ed_threshold = 0; |
| 1359 | setup->v2.ref_clock = cpu_to_le32(644245094); |
| 1360 | setup->v2.lpf_bandwidth = cpu_to_le16(65535); |
| 1361 | setup->v2.osc_start_delay = cpu_to_le16(65535); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1362 | } |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1363 | priv->tx(dev, skb, 1); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1364 | return 0; |
| 1365 | } |
| 1366 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1367 | static int p54_set_freq(struct ieee80211_hw *dev, u16 frequency) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1368 | { |
| 1369 | struct p54_common *priv = dev->priv; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1370 | struct sk_buff *skb; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1371 | struct p54_scan *chan; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1372 | unsigned int i; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1373 | void *entry; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1374 | __le16 freq = cpu_to_le16(frequency); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1375 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1376 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*chan) + |
| 1377 | sizeof(struct p54_hdr), P54_CONTROL_TYPE_SCAN, |
| 1378 | GFP_ATOMIC); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1379 | if (!skb) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1380 | return -ENOMEM; |
| 1381 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1382 | chan = (struct p54_scan *) skb_put(skb, sizeof(*chan)); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1383 | memset(chan->padding1, 0, sizeof(chan->padding1)); |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1384 | chan->mode = cpu_to_le16(P54_SCAN_EXIT); |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 1385 | chan->dwell = cpu_to_le16(0x0); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1386 | |
| 1387 | for (i = 0; i < priv->iq_autocal_len; i++) { |
| 1388 | if (priv->iq_autocal[i].freq != freq) |
| 1389 | continue; |
| 1390 | |
| 1391 | memcpy(&chan->iq_autocal, &priv->iq_autocal[i], |
| 1392 | sizeof(*priv->iq_autocal)); |
| 1393 | break; |
| 1394 | } |
| 1395 | if (i == priv->iq_autocal_len) |
| 1396 | goto err; |
| 1397 | |
| 1398 | for (i = 0; i < priv->output_limit_len; i++) { |
| 1399 | if (priv->output_limit[i].freq != freq) |
| 1400 | continue; |
| 1401 | |
| 1402 | chan->val_barker = 0x38; |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 1403 | chan->val_bpsk = chan->dup_bpsk = |
| 1404 | priv->output_limit[i].val_bpsk; |
| 1405 | chan->val_qpsk = chan->dup_qpsk = |
| 1406 | priv->output_limit[i].val_qpsk; |
| 1407 | chan->val_16qam = chan->dup_16qam = |
| 1408 | priv->output_limit[i].val_16qam; |
| 1409 | chan->val_64qam = chan->dup_64qam = |
| 1410 | priv->output_limit[i].val_64qam; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1411 | break; |
| 1412 | } |
| 1413 | if (i == priv->output_limit_len) |
| 1414 | goto err; |
| 1415 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1416 | entry = priv->curve_data->data; |
| 1417 | for (i = 0; i < priv->curve_data->channels; i++) { |
| 1418 | if (*((__le16 *)entry) != freq) { |
| 1419 | entry += sizeof(__le16); |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 1420 | entry += sizeof(struct p54_pa_curve_data_sample) * |
| 1421 | priv->curve_data->points_per_channel; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1422 | continue; |
| 1423 | } |
| 1424 | |
| 1425 | entry += sizeof(__le16); |
Chr | 9483407 | 2008-10-29 22:39:50 +0100 | [diff] [blame] | 1426 | chan->pa_points_per_curve = 8; |
| 1427 | memset(chan->curve_data, 0, sizeof(*chan->curve_data)); |
| 1428 | memcpy(chan->curve_data, entry, |
| 1429 | sizeof(struct p54_pa_curve_data_sample) * |
| 1430 | min((u8)8, priv->curve_data->points_per_channel)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1431 | break; |
| 1432 | } |
| 1433 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1434 | if (priv->fw_var < 0x500) { |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1435 | chan->v1.rssical_mul = cpu_to_le16(130); |
| 1436 | chan->v1.rssical_add = cpu_to_le16(0xfe70); |
| 1437 | } else { |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1438 | chan->v2.rssical_mul = cpu_to_le16(130); |
| 1439 | chan->v2.rssical_add = cpu_to_le16(0xfe70); |
Christian Lamparter | ced0957 | 2008-11-14 19:42:39 +0100 | [diff] [blame] | 1440 | chan->v2.basic_rate_mask = cpu_to_le32(priv->basic_rate_mask); |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1441 | memset(chan->v2.rts_rates, 0, 8); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1442 | } |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1443 | priv->tx(dev, skb, 1); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1444 | return 0; |
| 1445 | |
| 1446 | err: |
| 1447 | printk(KERN_ERR "%s: frequency change failed\n", wiphy_name(dev->wiphy)); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1448 | kfree_skb(skb); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1449 | return -EINVAL; |
| 1450 | } |
| 1451 | |
| 1452 | static int p54_set_leds(struct ieee80211_hw *dev, int mode, int link, int act) |
| 1453 | { |
| 1454 | struct p54_common *priv = dev->priv; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1455 | struct sk_buff *skb; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1456 | struct p54_led *led; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1457 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1458 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*led) + |
| 1459 | sizeof(struct p54_hdr), P54_CONTROL_TYPE_LED, |
| 1460 | GFP_ATOMIC); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1461 | if (!skb) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1462 | return -ENOMEM; |
| 1463 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1464 | led = (struct p54_led *)skb_put(skb, sizeof(*led)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1465 | led->mode = cpu_to_le16(mode); |
| 1466 | led->led_permanent = cpu_to_le16(link); |
| 1467 | led->led_temporary = cpu_to_le16(act); |
| 1468 | led->duration = cpu_to_le16(1000); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1469 | priv->tx(dev, skb, 1); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1470 | return 0; |
| 1471 | } |
| 1472 | |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 1473 | #define P54_SET_QUEUE(queue, ai_fs, cw_min, cw_max, _txop) \ |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1474 | do { \ |
| 1475 | queue.aifs = cpu_to_le16(ai_fs); \ |
| 1476 | queue.cwmin = cpu_to_le16(cw_min); \ |
| 1477 | queue.cwmax = cpu_to_le16(cw_max); \ |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 1478 | queue.txop = cpu_to_le16(_txop); \ |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1479 | } while(0) |
| 1480 | |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1481 | static int p54_set_edcf(struct ieee80211_hw *dev) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1482 | { |
| 1483 | struct p54_common *priv = dev->priv; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1484 | struct sk_buff *skb; |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1485 | struct p54_edcf *edcf; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1486 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1487 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*edcf) + |
| 1488 | sizeof(struct p54_hdr), P54_CONTROL_TYPE_DCFINIT, |
| 1489 | GFP_ATOMIC); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1490 | if (!skb) |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1491 | return -ENOMEM; |
| 1492 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1493 | edcf = (struct p54_edcf *)skb_put(skb, sizeof(*edcf)); |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1494 | if (priv->use_short_slot) { |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1495 | edcf->slottime = 9; |
| 1496 | edcf->sifs = 0x10; |
| 1497 | edcf->eofpad = 0x00; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1498 | } else { |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1499 | edcf->slottime = 20; |
| 1500 | edcf->sifs = 0x0a; |
| 1501 | edcf->eofpad = 0x06; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1502 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1503 | /* (see prism54/isl_oid.h for further details) */ |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1504 | edcf->frameburst = cpu_to_le16(0); |
| 1505 | edcf->round_trip_delay = cpu_to_le16(0); |
Chr | 9483407 | 2008-10-29 22:39:50 +0100 | [diff] [blame] | 1506 | edcf->flags = 0; |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1507 | memset(edcf->mapping, 0, sizeof(edcf->mapping)); |
| 1508 | memcpy(edcf->queue, priv->qos_params, sizeof(edcf->queue)); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1509 | priv->tx(dev, skb, 1); |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1510 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame] | 1513 | static int p54_init_stats(struct ieee80211_hw *dev) |
| 1514 | { |
| 1515 | struct p54_common *priv = dev->priv; |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame] | 1516 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1517 | priv->cached_stats = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL, |
| 1518 | sizeof(struct p54_hdr) + sizeof(struct p54_statistics), |
| 1519 | P54_CONTROL_TYPE_STAT_READBACK, GFP_KERNEL); |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame] | 1520 | if (!priv->cached_stats) |
| 1521 | return -ENOMEM; |
| 1522 | |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame] | 1523 | mod_timer(&priv->stats_timer, jiffies + HZ); |
| 1524 | return 0; |
| 1525 | } |
| 1526 | |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1527 | static int p54_beacon_tim(struct sk_buff *skb) |
| 1528 | { |
| 1529 | /* |
| 1530 | * the good excuse for this mess is ... the firmware. |
| 1531 | * The dummy TIM MUST be at the end of the beacon frame, |
| 1532 | * because it'll be overwritten! |
| 1533 | */ |
| 1534 | |
| 1535 | struct ieee80211_mgmt *mgmt = (void *)skb->data; |
| 1536 | u8 *pos, *end; |
| 1537 | |
| 1538 | if (skb->len <= sizeof(mgmt)) { |
| 1539 | printk(KERN_ERR "p54: beacon is too short!\n"); |
| 1540 | return -EINVAL; |
| 1541 | } |
| 1542 | |
| 1543 | pos = (u8 *)mgmt->u.beacon.variable; |
| 1544 | end = skb->data + skb->len; |
| 1545 | while (pos < end) { |
| 1546 | if (pos + 2 + pos[1] > end) { |
| 1547 | printk(KERN_ERR "p54: parsing beacon failed\n"); |
| 1548 | return -EINVAL; |
| 1549 | } |
| 1550 | |
| 1551 | if (pos[0] == WLAN_EID_TIM) { |
| 1552 | u8 dtim_len = pos[1]; |
| 1553 | u8 dtim_period = pos[3]; |
| 1554 | u8 *next = pos + 2 + dtim_len; |
| 1555 | |
| 1556 | if (dtim_len < 3) { |
| 1557 | printk(KERN_ERR "p54: invalid dtim len!\n"); |
| 1558 | return -EINVAL; |
| 1559 | } |
| 1560 | memmove(pos, next, end - next); |
| 1561 | |
| 1562 | if (dtim_len > 3) |
| 1563 | skb_trim(skb, skb->len - (dtim_len - 3)); |
| 1564 | |
| 1565 | pos = end - (dtim_len + 2); |
| 1566 | |
| 1567 | /* add the dummy at the end */ |
| 1568 | pos[0] = WLAN_EID_TIM; |
| 1569 | pos[1] = 3; |
| 1570 | pos[2] = 0; |
| 1571 | pos[3] = dtim_period; |
| 1572 | pos[4] = 0; |
| 1573 | return 0; |
| 1574 | } |
| 1575 | pos += 2 + pos[1]; |
| 1576 | } |
| 1577 | return 0; |
| 1578 | } |
| 1579 | |
| 1580 | static int p54_beacon_update(struct ieee80211_hw *dev, |
| 1581 | struct ieee80211_vif *vif) |
| 1582 | { |
| 1583 | struct p54_common *priv = dev->priv; |
| 1584 | struct sk_buff *beacon; |
| 1585 | int ret; |
| 1586 | |
| 1587 | if (priv->cached_beacon) { |
| 1588 | p54_tx_cancel(dev, priv->cached_beacon); |
| 1589 | /* wait for the last beacon the be freed */ |
| 1590 | msleep(10); |
| 1591 | } |
| 1592 | |
| 1593 | beacon = ieee80211_beacon_get(dev, vif); |
| 1594 | if (!beacon) |
| 1595 | return -ENOMEM; |
| 1596 | ret = p54_beacon_tim(beacon); |
| 1597 | if (ret) |
| 1598 | return ret; |
| 1599 | ret = p54_tx(dev, beacon); |
| 1600 | if (ret) |
| 1601 | return ret; |
| 1602 | priv->cached_beacon = beacon; |
| 1603 | priv->tsf_high32 = 0; |
| 1604 | priv->tsf_low32 = 0; |
| 1605 | |
| 1606 | return 0; |
| 1607 | } |
| 1608 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1609 | static int p54_start(struct ieee80211_hw *dev) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1610 | { |
| 1611 | struct p54_common *priv = dev->priv; |
| 1612 | int err; |
| 1613 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1614 | mutex_lock(&priv->conf_mutex); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1615 | err = priv->open(dev); |
Christian Lamparter | 40db0b2 | 2008-11-16 12:20:32 +0100 | [diff] [blame] | 1616 | if (err) |
| 1617 | goto out; |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1618 | P54_SET_QUEUE(priv->qos_params[0], 0x0002, 0x0003, 0x0007, 47); |
| 1619 | P54_SET_QUEUE(priv->qos_params[1], 0x0002, 0x0007, 0x000f, 94); |
| 1620 | P54_SET_QUEUE(priv->qos_params[2], 0x0003, 0x000f, 0x03ff, 0); |
| 1621 | P54_SET_QUEUE(priv->qos_params[3], 0x0007, 0x000f, 0x03ff, 0); |
| 1622 | err = p54_set_edcf(dev); |
Christian Lamparter | 40db0b2 | 2008-11-16 12:20:32 +0100 | [diff] [blame] | 1623 | if (err) |
| 1624 | goto out; |
| 1625 | err = p54_init_stats(dev); |
| 1626 | if (err) |
| 1627 | goto out; |
| 1628 | err = p54_setup_mac(dev, P54_FILTER_TYPE_NONE, NULL); |
| 1629 | if (err) |
| 1630 | goto out; |
| 1631 | priv->mode = NL80211_IFTYPE_MONITOR; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1632 | |
Christian Lamparter | 40db0b2 | 2008-11-16 12:20:32 +0100 | [diff] [blame] | 1633 | out: |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1634 | mutex_unlock(&priv->conf_mutex); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1635 | return err; |
| 1636 | } |
| 1637 | |
| 1638 | static void p54_stop(struct ieee80211_hw *dev) |
| 1639 | { |
| 1640 | struct p54_common *priv = dev->priv; |
| 1641 | struct sk_buff *skb; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1642 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1643 | mutex_lock(&priv->conf_mutex); |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1644 | del_timer(&priv->stats_timer); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1645 | p54_free_skb(dev, priv->cached_stats); |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame] | 1646 | priv->cached_stats = NULL; |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1647 | if (priv->cached_beacon) |
| 1648 | p54_tx_cancel(dev, priv->cached_beacon); |
| 1649 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1650 | while ((skb = skb_dequeue(&priv->tx_queue))) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1651 | kfree_skb(skb); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1652 | |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1653 | priv->cached_beacon = NULL; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1654 | priv->stop(dev); |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 1655 | priv->tsf_high32 = priv->tsf_low32 = 0; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1656 | priv->mode = NL80211_IFTYPE_UNSPECIFIED; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1657 | mutex_unlock(&priv->conf_mutex); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1658 | } |
| 1659 | |
| 1660 | static int p54_add_interface(struct ieee80211_hw *dev, |
| 1661 | struct ieee80211_if_init_conf *conf) |
| 1662 | { |
| 1663 | struct p54_common *priv = dev->priv; |
| 1664 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1665 | mutex_lock(&priv->conf_mutex); |
| 1666 | if (priv->mode != NL80211_IFTYPE_MONITOR) { |
| 1667 | mutex_unlock(&priv->conf_mutex); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1668 | return -EOPNOTSUPP; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1669 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1670 | |
| 1671 | switch (conf->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1672 | case NL80211_IFTYPE_STATION: |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1673 | case NL80211_IFTYPE_ADHOC: |
| 1674 | case NL80211_IFTYPE_AP: |
Christian Lamparter | d131bb5 | 2008-11-15 17:02:31 +0100 | [diff] [blame] | 1675 | case NL80211_IFTYPE_MESH_POINT: |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1676 | priv->mode = conf->type; |
| 1677 | break; |
| 1678 | default: |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1679 | mutex_unlock(&priv->conf_mutex); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1680 | return -EOPNOTSUPP; |
| 1681 | } |
| 1682 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1683 | memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1684 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1685 | p54_setup_mac(dev, P54_FILTER_TYPE_NONE, NULL); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1686 | |
| 1687 | switch (conf->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1688 | case NL80211_IFTYPE_STATION: |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1689 | p54_setup_mac(dev, P54_FILTER_TYPE_STATION, NULL); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1690 | break; |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1691 | case NL80211_IFTYPE_AP: |
| 1692 | p54_setup_mac(dev, P54_FILTER_TYPE_AP, priv->mac_addr); |
| 1693 | break; |
| 1694 | case NL80211_IFTYPE_ADHOC: |
Christian Lamparter | d131bb5 | 2008-11-15 17:02:31 +0100 | [diff] [blame] | 1695 | case NL80211_IFTYPE_MESH_POINT: |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1696 | p54_setup_mac(dev, P54_FILTER_TYPE_IBSS, NULL); |
| 1697 | break; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1698 | default: |
| 1699 | BUG(); /* impossible */ |
| 1700 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1701 | } |
| 1702 | |
| 1703 | p54_set_leds(dev, 1, 0, 0); |
| 1704 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1705 | mutex_unlock(&priv->conf_mutex); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1706 | return 0; |
| 1707 | } |
| 1708 | |
| 1709 | static void p54_remove_interface(struct ieee80211_hw *dev, |
| 1710 | struct ieee80211_if_init_conf *conf) |
| 1711 | { |
| 1712 | struct p54_common *priv = dev->priv; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1713 | |
| 1714 | mutex_lock(&priv->conf_mutex); |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1715 | if (priv->cached_beacon) |
| 1716 | p54_tx_cancel(dev, priv->cached_beacon); |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1717 | p54_setup_mac(dev, P54_FILTER_TYPE_NONE, NULL); |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1718 | priv->mode = NL80211_IFTYPE_MONITOR; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1719 | memset(priv->mac_addr, 0, ETH_ALEN); |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1720 | mutex_unlock(&priv->conf_mutex); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1721 | } |
| 1722 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1723 | static int p54_config(struct ieee80211_hw *dev, u32 changed) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1724 | { |
| 1725 | int ret; |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1726 | struct p54_common *priv = dev->priv; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1727 | struct ieee80211_conf *conf = &dev->conf; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1728 | |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1729 | mutex_lock(&priv->conf_mutex); |
Johannes Berg | 0f4ac38 | 2008-10-09 12:18:04 +0200 | [diff] [blame] | 1730 | priv->rx_antenna = 2; /* automatic */ |
Christian Lamparter | 09adf28 | 2008-09-06 14:25:53 +0200 | [diff] [blame] | 1731 | priv->output_power = conf->power_level << 2; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1732 | ret = p54_set_freq(dev, conf->channel->center_freq); |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1733 | if (!ret) |
| 1734 | ret = p54_set_edcf(dev); |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1735 | mutex_unlock(&priv->conf_mutex); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1736 | return ret; |
| 1737 | } |
| 1738 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1739 | static int p54_config_interface(struct ieee80211_hw *dev, |
| 1740 | struct ieee80211_vif *vif, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1741 | struct ieee80211_if_conf *conf) |
| 1742 | { |
| 1743 | struct p54_common *priv = dev->priv; |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1744 | int ret = 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1745 | |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1746 | mutex_lock(&priv->conf_mutex); |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1747 | switch (priv->mode) { |
| 1748 | case NL80211_IFTYPE_STATION: |
| 1749 | ret = p54_setup_mac(dev, P54_FILTER_TYPE_STATION, conf->bssid); |
| 1750 | if (ret) |
| 1751 | goto out; |
| 1752 | ret = p54_set_leds(dev, 1, |
| 1753 | !is_multicast_ether_addr(conf->bssid), 0); |
| 1754 | if (ret) |
| 1755 | goto out; |
| 1756 | memcpy(priv->bssid, conf->bssid, ETH_ALEN); |
| 1757 | break; |
| 1758 | case NL80211_IFTYPE_AP: |
| 1759 | case NL80211_IFTYPE_ADHOC: |
Christian Lamparter | d131bb5 | 2008-11-15 17:02:31 +0100 | [diff] [blame] | 1760 | case NL80211_IFTYPE_MESH_POINT: |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1761 | memcpy(priv->bssid, conf->bssid, ETH_ALEN); |
| 1762 | ret = p54_set_freq(dev, dev->conf.channel->center_freq); |
| 1763 | if (ret) |
| 1764 | goto out; |
| 1765 | ret = p54_setup_mac(dev, priv->mac_mode, priv->bssid); |
| 1766 | if (ret) |
| 1767 | goto out; |
| 1768 | if (conf->changed & IEEE80211_IFCC_BEACON) { |
| 1769 | ret = p54_beacon_update(dev, vif); |
| 1770 | if (ret) |
| 1771 | goto out; |
| 1772 | ret = p54_set_edcf(dev); |
| 1773 | if (ret) |
| 1774 | goto out; |
| 1775 | } |
| 1776 | } |
| 1777 | out: |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1778 | mutex_unlock(&priv->conf_mutex); |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 1779 | return ret; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1780 | } |
| 1781 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1782 | static void p54_configure_filter(struct ieee80211_hw *dev, |
| 1783 | unsigned int changed_flags, |
| 1784 | unsigned int *total_flags, |
| 1785 | int mc_count, struct dev_mc_list *mclist) |
| 1786 | { |
| 1787 | struct p54_common *priv = dev->priv; |
| 1788 | |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 1789 | *total_flags &= FIF_BCN_PRBRESP_PROMISC | |
| 1790 | FIF_PROMISC_IN_BSS | |
| 1791 | FIF_FCSFAIL; |
| 1792 | |
| 1793 | priv->filter_flags = *total_flags; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1794 | |
| 1795 | if (changed_flags & FIF_BCN_PRBRESP_PROMISC) { |
| 1796 | if (*total_flags & FIF_BCN_PRBRESP_PROMISC) |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1797 | p54_setup_mac(dev, priv->mac_mode, NULL); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1798 | else |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1799 | p54_setup_mac(dev, priv->mac_mode, priv->bssid); |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 1800 | } |
| 1801 | |
| 1802 | if (changed_flags & FIF_PROMISC_IN_BSS) { |
| 1803 | if (*total_flags & FIF_PROMISC_IN_BSS) |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1804 | p54_setup_mac(dev, priv->mac_mode | 0x8, NULL); |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 1805 | else |
Christian Lamparter | 5e73444 | 2008-10-15 04:07:56 +0200 | [diff] [blame] | 1806 | p54_setup_mac(dev, priv->mac_mode & ~0x8, priv->bssid); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1807 | } |
| 1808 | } |
| 1809 | |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 1810 | static int p54_conf_tx(struct ieee80211_hw *dev, u16 queue, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1811 | const struct ieee80211_tx_queue_params *params) |
| 1812 | { |
| 1813 | struct p54_common *priv = dev->priv; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1814 | int ret; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1815 | |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1816 | mutex_lock(&priv->conf_mutex); |
John W. Linville | 3df5ee6 | 2008-05-01 17:07:32 -0400 | [diff] [blame] | 1817 | if ((params) && !(queue > 4)) { |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1818 | P54_SET_QUEUE(priv->qos_params[queue], params->aifs, |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 1819 | params->cw_min, params->cw_max, params->txop); |
Christian Lamparter | b50563a | 2008-11-24 14:52:51 +0100 | [diff] [blame] | 1820 | ret = p54_set_edcf(dev); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1821 | } else |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1822 | ret = -EINVAL; |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 1823 | mutex_unlock(&priv->conf_mutex); |
| 1824 | return ret; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1825 | } |
| 1826 | |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 1827 | static int p54_init_xbow_synth(struct ieee80211_hw *dev) |
| 1828 | { |
| 1829 | struct p54_common *priv = dev->priv; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1830 | struct sk_buff *skb; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1831 | struct p54_xbow_synth *xbow; |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 1832 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1833 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*xbow) + |
| 1834 | sizeof(struct p54_hdr), |
| 1835 | P54_CONTROL_TYPE_XBOW_SYNTH_CFG, |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1836 | GFP_KERNEL); |
| 1837 | if (!skb) |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 1838 | return -ENOMEM; |
| 1839 | |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 1840 | xbow = (struct p54_xbow_synth *)skb_put(skb, sizeof(*xbow)); |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 1841 | xbow->magic1 = cpu_to_le16(0x1); |
| 1842 | xbow->magic2 = cpu_to_le16(0x2); |
| 1843 | xbow->freq = cpu_to_le16(5390); |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1844 | memset(xbow->padding, 0, sizeof(xbow->padding)); |
| 1845 | priv->tx(dev, skb, 1); |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 1846 | return 0; |
| 1847 | } |
| 1848 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1849 | static void p54_statistics_timer(unsigned long data) |
| 1850 | { |
| 1851 | struct ieee80211_hw *dev = (struct ieee80211_hw *) data; |
| 1852 | struct p54_common *priv = dev->priv; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1853 | |
| 1854 | BUG_ON(!priv->cached_stats); |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1855 | |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 1856 | priv->tx(dev, priv->cached_stats, 0); |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1857 | } |
| 1858 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1859 | static int p54_get_stats(struct ieee80211_hw *dev, |
| 1860 | struct ieee80211_low_level_stats *stats) |
| 1861 | { |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1862 | struct p54_common *priv = dev->priv; |
| 1863 | |
| 1864 | del_timer(&priv->stats_timer); |
| 1865 | p54_statistics_timer((unsigned long)dev); |
| 1866 | |
| 1867 | if (!wait_for_completion_interruptible_timeout(&priv->stats_comp, HZ)) { |
| 1868 | printk(KERN_ERR "%s: device does not respond!\n", |
| 1869 | wiphy_name(dev->wiphy)); |
| 1870 | return -EBUSY; |
| 1871 | } |
| 1872 | |
| 1873 | memcpy(stats, &priv->stats, sizeof(*stats)); |
| 1874 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1875 | return 0; |
| 1876 | } |
| 1877 | |
| 1878 | static int p54_get_tx_stats(struct ieee80211_hw *dev, |
| 1879 | struct ieee80211_tx_queue_stats *stats) |
| 1880 | { |
| 1881 | struct p54_common *priv = dev->priv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1882 | |
Chr | 84df3ed | 2008-08-24 03:15:16 +0200 | [diff] [blame] | 1883 | memcpy(stats, &priv->tx_stats[4], sizeof(stats[0]) * dev->queues); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1884 | |
| 1885 | return 0; |
| 1886 | } |
| 1887 | |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1888 | static void p54_bss_info_changed(struct ieee80211_hw *dev, |
| 1889 | struct ieee80211_vif *vif, |
| 1890 | struct ieee80211_bss_conf *info, |
| 1891 | u32 changed) |
| 1892 | { |
| 1893 | struct p54_common *priv = dev->priv; |
| 1894 | |
| 1895 | if (changed & BSS_CHANGED_ERP_SLOT) { |
| 1896 | priv->use_short_slot = info->use_short_slot; |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1897 | p54_set_edcf(dev); |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1898 | } |
Christian Lamparter | ced0957 | 2008-11-14 19:42:39 +0100 | [diff] [blame] | 1899 | if (changed & BSS_CHANGED_BASIC_RATES) { |
| 1900 | if (dev->conf.channel->band == IEEE80211_BAND_5GHZ) |
| 1901 | priv->basic_rate_mask = (info->basic_rates << 4); |
| 1902 | else |
| 1903 | priv->basic_rate_mask = info->basic_rates; |
| 1904 | p54_setup_mac(dev, priv->mac_mode, priv->bssid); |
| 1905 | if (priv->fw_var >= 0x500) |
| 1906 | p54_set_freq(dev, dev->conf.channel->center_freq); |
| 1907 | } |
| 1908 | if (changed & BSS_CHANGED_ASSOC) { |
| 1909 | if (info->assoc) { |
| 1910 | priv->aid = info->aid; |
| 1911 | priv->wakeup_timer = info->beacon_int * |
| 1912 | info->dtim_period * 5; |
| 1913 | p54_setup_mac(dev, priv->mac_mode, priv->bssid); |
| 1914 | } |
| 1915 | } |
| 1916 | |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1917 | } |
| 1918 | |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 1919 | static int p54_set_key(struct ieee80211_hw *dev, enum set_key_cmd cmd, |
| 1920 | const u8 *local_address, const u8 *address, |
| 1921 | struct ieee80211_key_conf *key) |
| 1922 | { |
| 1923 | struct p54_common *priv = dev->priv; |
| 1924 | struct sk_buff *skb; |
| 1925 | struct p54_keycache *rxkey; |
| 1926 | u8 algo = 0; |
| 1927 | |
| 1928 | if (modparam_nohwcrypt) |
| 1929 | return -EOPNOTSUPP; |
| 1930 | |
| 1931 | if (cmd == DISABLE_KEY) |
| 1932 | algo = 0; |
| 1933 | else { |
| 1934 | switch (key->alg) { |
| 1935 | case ALG_TKIP: |
| 1936 | if (!(priv->privacy_caps & (BR_DESC_PRIV_CAP_MICHAEL | |
| 1937 | BR_DESC_PRIV_CAP_TKIP))) |
| 1938 | return -EOPNOTSUPP; |
| 1939 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 1940 | algo = P54_CRYPTO_TKIPMICHAEL; |
| 1941 | break; |
| 1942 | case ALG_WEP: |
| 1943 | if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_WEP)) |
| 1944 | return -EOPNOTSUPP; |
| 1945 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 1946 | algo = P54_CRYPTO_WEP; |
| 1947 | break; |
| 1948 | case ALG_CCMP: |
| 1949 | if (!(priv->privacy_caps & BR_DESC_PRIV_CAP_AESCCMP)) |
| 1950 | return -EOPNOTSUPP; |
| 1951 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 1952 | algo = P54_CRYPTO_AESCCMP; |
| 1953 | break; |
| 1954 | default: |
| 1955 | return -EINVAL; |
| 1956 | } |
| 1957 | } |
| 1958 | |
| 1959 | if (key->keyidx > priv->rx_keycache_size) { |
| 1960 | /* |
| 1961 | * The device supports the choosen algorithm, but the firmware |
| 1962 | * does not provide enough key slots to store all of them. |
| 1963 | * So, incoming frames have to be decoded by the mac80211 stack, |
| 1964 | * but we can still offload encryption for outgoing frames. |
| 1965 | */ |
| 1966 | |
| 1967 | return 0; |
| 1968 | } |
| 1969 | |
| 1970 | mutex_lock(&priv->conf_mutex); |
| 1971 | skb = p54_alloc_skb(dev, P54_HDR_FLAG_CONTROL_OPSET, sizeof(*rxkey) + |
| 1972 | sizeof(struct p54_hdr), P54_CONTROL_TYPE_RX_KEYCACHE, |
| 1973 | GFP_ATOMIC); |
| 1974 | if (!skb) { |
| 1975 | mutex_unlock(&priv->conf_mutex); |
| 1976 | return -ENOMEM; |
| 1977 | } |
| 1978 | |
| 1979 | /* TODO: some devices have 4 more free slots for rx keys */ |
| 1980 | rxkey = (struct p54_keycache *)skb_put(skb, sizeof(*rxkey)); |
| 1981 | rxkey->entry = key->keyidx; |
| 1982 | rxkey->key_id = key->keyidx; |
| 1983 | rxkey->key_type = algo; |
| 1984 | if (address) |
| 1985 | memcpy(rxkey->mac, address, ETH_ALEN); |
| 1986 | else |
| 1987 | memset(rxkey->mac, ~0, ETH_ALEN); |
| 1988 | if (key->alg != ALG_TKIP) { |
| 1989 | rxkey->key_len = min((u8)16, key->keylen); |
| 1990 | memcpy(rxkey->key, key->key, rxkey->key_len); |
| 1991 | } else { |
| 1992 | rxkey->key_len = 24; |
| 1993 | memcpy(rxkey->key, key->key, 16); |
| 1994 | memcpy(&(rxkey->key[16]), &(key->key |
| 1995 | [NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY]), 8); |
| 1996 | } |
| 1997 | |
| 1998 | priv->tx(dev, skb, 1); |
| 1999 | mutex_unlock(&priv->conf_mutex); |
| 2000 | return 0; |
| 2001 | } |
| 2002 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2003 | static const struct ieee80211_ops p54_ops = { |
| 2004 | .tx = p54_tx, |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 2005 | .start = p54_start, |
| 2006 | .stop = p54_stop, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2007 | .add_interface = p54_add_interface, |
| 2008 | .remove_interface = p54_remove_interface, |
Christian Lamparter | e5ea92a | 2008-10-18 23:19:00 +0200 | [diff] [blame] | 2009 | .set_tim = p54_set_tim, |
Christian Lamparter | c772a08 | 2008-11-29 22:33:57 +0100 | [diff] [blame] | 2010 | .sta_notify_ps = p54_sta_notify_ps, |
| 2011 | .sta_notify = p54_sta_notify, |
Christian Lamparter | 25900ef | 2008-11-29 22:34:37 +0100 | [diff] [blame^] | 2012 | .set_key = p54_set_key, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2013 | .config = p54_config, |
| 2014 | .config_interface = p54_config_interface, |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 2015 | .bss_info_changed = p54_bss_info_changed, |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 2016 | .configure_filter = p54_configure_filter, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2017 | .conf_tx = p54_conf_tx, |
| 2018 | .get_stats = p54_get_stats, |
| 2019 | .get_tx_stats = p54_get_tx_stats |
| 2020 | }; |
| 2021 | |
| 2022 | struct ieee80211_hw *p54_init_common(size_t priv_data_len) |
| 2023 | { |
| 2024 | struct ieee80211_hw *dev; |
| 2025 | struct p54_common *priv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2026 | |
| 2027 | dev = ieee80211_alloc_hw(priv_data_len, &p54_ops); |
| 2028 | if (!dev) |
| 2029 | return NULL; |
| 2030 | |
| 2031 | priv = dev->priv; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2032 | priv->mode = NL80211_IFTYPE_UNSPECIFIED; |
Christian Lamparter | ced0957 | 2008-11-14 19:42:39 +0100 | [diff] [blame] | 2033 | priv->basic_rate_mask = 0x15f; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2034 | skb_queue_head_init(&priv->tx_queue); |
Christian Lamparter | 94585b0 | 2008-10-18 23:18:44 +0200 | [diff] [blame] | 2035 | dev->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 2036 | IEEE80211_HW_SIGNAL_DBM | |
| 2037 | IEEE80211_HW_NOISE_DBM; |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 2038 | |
Christian Lamparter | d131bb5 | 2008-11-15 17:02:31 +0100 | [diff] [blame] | 2039 | dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
| 2040 | BIT(NL80211_IFTYPE_ADHOC) | |
| 2041 | BIT(NL80211_IFTYPE_AP) | |
| 2042 | BIT(NL80211_IFTYPE_MESH_POINT); |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 2043 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2044 | dev->channel_change_time = 1000; /* TODO: find actual value */ |
Christian Lamparter | 9e7f3f8 | 2008-10-18 23:18:01 +0200 | [diff] [blame] | 2045 | priv->tx_stats[0].limit = 1; /* Beacon queue */ |
| 2046 | priv->tx_stats[1].limit = 1; /* Probe queue for HW scan */ |
| 2047 | priv->tx_stats[2].limit = 3; /* queue for MLMEs */ |
| 2048 | priv->tx_stats[3].limit = 3; /* Broadcast / MC queue */ |
| 2049 | priv->tx_stats[4].limit = 5; /* Data */ |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2050 | dev->queues = 1; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 2051 | priv->noise = -94; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 2052 | /* |
| 2053 | * We support at most 8 tries no matter which rate they're at, |
| 2054 | * we cannot support max_rates * max_rate_tries as we set it |
| 2055 | * here, but setting it correctly to 4/2 or so would limit us |
| 2056 | * artificially if the RC algorithm wants just two rates, so |
| 2057 | * let's say 4/7, we'll redistribute it at TX time, see the |
| 2058 | * comments there. |
| 2059 | */ |
| 2060 | dev->max_rates = 4; |
| 2061 | dev->max_rate_tries = 7; |
John W. Linville | 27df605 | 2008-10-22 16:41:55 -0400 | [diff] [blame] | 2062 | dev->extra_tx_headroom = sizeof(struct p54_hdr) + 4 + |
| 2063 | sizeof(struct p54_tx_data); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2064 | |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 2065 | mutex_init(&priv->conf_mutex); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 2066 | init_completion(&priv->eeprom_comp); |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 2067 | init_completion(&priv->stats_comp); |
| 2068 | setup_timer(&priv->stats_timer, p54_statistics_timer, |
| 2069 | (unsigned long)dev); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2070 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2071 | return dev; |
| 2072 | } |
| 2073 | EXPORT_SYMBOL_GPL(p54_init_common); |
| 2074 | |
| 2075 | void p54_free_common(struct ieee80211_hw *dev) |
| 2076 | { |
| 2077 | struct p54_common *priv = dev->priv; |
Christian Lamparter | b92f30d | 2008-10-15 04:07:16 +0200 | [diff] [blame] | 2078 | del_timer(&priv->stats_timer); |
| 2079 | kfree_skb(priv->cached_stats); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2080 | kfree(priv->iq_autocal); |
| 2081 | kfree(priv->output_limit); |
| 2082 | kfree(priv->curve_data); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 2083 | } |
| 2084 | EXPORT_SYMBOL_GPL(p54_free_common); |
| 2085 | |
| 2086 | static int __init p54_init(void) |
| 2087 | { |
| 2088 | return 0; |
| 2089 | } |
| 2090 | |
| 2091 | static void __exit p54_exit(void) |
| 2092 | { |
| 2093 | } |
| 2094 | |
| 2095 | module_init(p54_init); |
| 2096 | module_exit(p54_exit); |