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 | * |
| 8 | * Based on the islsm (softmac prism54) driver, which is: |
| 9 | * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/firmware.h> |
| 18 | #include <linux/etherdevice.h> |
| 19 | |
| 20 | #include <net/mac80211.h> |
| 21 | |
| 22 | #include "p54.h" |
| 23 | #include "p54common.h" |
| 24 | |
| 25 | MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>"); |
| 26 | MODULE_DESCRIPTION("Softmac Prism54 common code"); |
| 27 | MODULE_LICENSE("GPL"); |
| 28 | MODULE_ALIAS("prism54common"); |
| 29 | |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 30 | static struct ieee80211_rate p54_bgrates[] = { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 31 | { .bitrate = 10, .hw_value = 0, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 32 | { .bitrate = 20, .hw_value = 1, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 33 | { .bitrate = 55, .hw_value = 2, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 34 | { .bitrate = 110, .hw_value = 3, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 35 | { .bitrate = 60, .hw_value = 4, }, |
| 36 | { .bitrate = 90, .hw_value = 5, }, |
| 37 | { .bitrate = 120, .hw_value = 6, }, |
| 38 | { .bitrate = 180, .hw_value = 7, }, |
| 39 | { .bitrate = 240, .hw_value = 8, }, |
| 40 | { .bitrate = 360, .hw_value = 9, }, |
| 41 | { .bitrate = 480, .hw_value = 10, }, |
| 42 | { .bitrate = 540, .hw_value = 11, }, |
| 43 | }; |
| 44 | |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 45 | static struct ieee80211_channel p54_bgchannels[] = { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 46 | { .center_freq = 2412, .hw_value = 1, }, |
| 47 | { .center_freq = 2417, .hw_value = 2, }, |
| 48 | { .center_freq = 2422, .hw_value = 3, }, |
| 49 | { .center_freq = 2427, .hw_value = 4, }, |
| 50 | { .center_freq = 2432, .hw_value = 5, }, |
| 51 | { .center_freq = 2437, .hw_value = 6, }, |
| 52 | { .center_freq = 2442, .hw_value = 7, }, |
| 53 | { .center_freq = 2447, .hw_value = 8, }, |
| 54 | { .center_freq = 2452, .hw_value = 9, }, |
| 55 | { .center_freq = 2457, .hw_value = 10, }, |
| 56 | { .center_freq = 2462, .hw_value = 11, }, |
| 57 | { .center_freq = 2467, .hw_value = 12, }, |
| 58 | { .center_freq = 2472, .hw_value = 13, }, |
| 59 | { .center_freq = 2484, .hw_value = 14, }, |
| 60 | }; |
| 61 | |
Johannes Berg | c2976ab | 2008-02-20 12:08:12 +0100 | [diff] [blame] | 62 | static struct ieee80211_supported_band band_2GHz = { |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 63 | .channels = p54_bgchannels, |
| 64 | .n_channels = ARRAY_SIZE(p54_bgchannels), |
| 65 | .bitrates = p54_bgrates, |
| 66 | .n_bitrates = ARRAY_SIZE(p54_bgrates), |
| 67 | }; |
| 68 | |
| 69 | static struct ieee80211_rate p54_arates[] = { |
| 70 | { .bitrate = 60, .hw_value = 4, }, |
| 71 | { .bitrate = 90, .hw_value = 5, }, |
| 72 | { .bitrate = 120, .hw_value = 6, }, |
| 73 | { .bitrate = 180, .hw_value = 7, }, |
| 74 | { .bitrate = 240, .hw_value = 8, }, |
| 75 | { .bitrate = 360, .hw_value = 9, }, |
| 76 | { .bitrate = 480, .hw_value = 10, }, |
| 77 | { .bitrate = 540, .hw_value = 11, }, |
| 78 | }; |
| 79 | |
| 80 | static struct ieee80211_channel p54_achannels[] = { |
| 81 | { .center_freq = 4920 }, |
| 82 | { .center_freq = 4940 }, |
| 83 | { .center_freq = 4960 }, |
| 84 | { .center_freq = 4980 }, |
| 85 | { .center_freq = 5040 }, |
| 86 | { .center_freq = 5060 }, |
| 87 | { .center_freq = 5080 }, |
| 88 | { .center_freq = 5170 }, |
| 89 | { .center_freq = 5180 }, |
| 90 | { .center_freq = 5190 }, |
| 91 | { .center_freq = 5200 }, |
| 92 | { .center_freq = 5210 }, |
| 93 | { .center_freq = 5220 }, |
| 94 | { .center_freq = 5230 }, |
| 95 | { .center_freq = 5240 }, |
| 96 | { .center_freq = 5260 }, |
| 97 | { .center_freq = 5280 }, |
| 98 | { .center_freq = 5300 }, |
| 99 | { .center_freq = 5320 }, |
| 100 | { .center_freq = 5500 }, |
| 101 | { .center_freq = 5520 }, |
| 102 | { .center_freq = 5540 }, |
| 103 | { .center_freq = 5560 }, |
| 104 | { .center_freq = 5580 }, |
| 105 | { .center_freq = 5600 }, |
| 106 | { .center_freq = 5620 }, |
| 107 | { .center_freq = 5640 }, |
| 108 | { .center_freq = 5660 }, |
| 109 | { .center_freq = 5680 }, |
| 110 | { .center_freq = 5700 }, |
| 111 | { .center_freq = 5745 }, |
| 112 | { .center_freq = 5765 }, |
| 113 | { .center_freq = 5785 }, |
| 114 | { .center_freq = 5805 }, |
| 115 | { .center_freq = 5825 }, |
| 116 | }; |
| 117 | |
| 118 | static struct ieee80211_supported_band band_5GHz = { |
| 119 | .channels = p54_achannels, |
| 120 | .n_channels = ARRAY_SIZE(p54_achannels), |
| 121 | .bitrates = p54_arates, |
| 122 | .n_bitrates = ARRAY_SIZE(p54_arates), |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 123 | }; |
| 124 | |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 125 | int p54_parse_firmware(struct ieee80211_hw *dev, const struct firmware *fw) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 126 | { |
| 127 | struct p54_common *priv = dev->priv; |
| 128 | struct bootrec_exp_if *exp_if; |
| 129 | struct bootrec *bootrec; |
| 130 | u32 *data = (u32 *)fw->data; |
| 131 | u32 *end_data = (u32 *)fw->data + (fw->size >> 2); |
| 132 | u8 *fw_version = NULL; |
| 133 | size_t len; |
| 134 | int i; |
| 135 | |
| 136 | if (priv->rx_start) |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 137 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 138 | |
| 139 | while (data < end_data && *data) |
| 140 | data++; |
| 141 | |
| 142 | while (data < end_data && !*data) |
| 143 | data++; |
| 144 | |
| 145 | bootrec = (struct bootrec *) data; |
| 146 | |
| 147 | while (bootrec->data <= end_data && |
| 148 | (bootrec->data + (len = le32_to_cpu(bootrec->len))) <= end_data) { |
| 149 | u32 code = le32_to_cpu(bootrec->code); |
| 150 | switch (code) { |
| 151 | case BR_CODE_COMPONENT_ID: |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 152 | priv->fw_interface = be32_to_cpup((__be32 *) |
| 153 | bootrec->data); |
Christian Lamparter | 2b80848 | 2008-09-04 12:29:38 +0200 | [diff] [blame] | 154 | switch (priv->fw_interface) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 155 | case FW_FMAC: |
| 156 | printk(KERN_INFO "p54: FreeMAC firmware\n"); |
| 157 | break; |
| 158 | case FW_LM20: |
| 159 | printk(KERN_INFO "p54: LM20 firmware\n"); |
| 160 | break; |
| 161 | case FW_LM86: |
| 162 | printk(KERN_INFO "p54: LM86 firmware\n"); |
| 163 | break; |
| 164 | case FW_LM87: |
Christian Lamparter | 2b80848 | 2008-09-04 12:29:38 +0200 | [diff] [blame] | 165 | printk(KERN_INFO "p54: LM87 firmware\n"); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 166 | break; |
| 167 | default: |
| 168 | printk(KERN_INFO "p54: unknown firmware\n"); |
| 169 | break; |
| 170 | } |
| 171 | break; |
| 172 | case BR_CODE_COMPONENT_VERSION: |
| 173 | /* 24 bytes should be enough for all firmwares */ |
| 174 | if (strnlen((unsigned char*)bootrec->data, 24) < 24) |
| 175 | fw_version = (unsigned char*)bootrec->data; |
| 176 | break; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 177 | case BR_CODE_DESCR: { |
| 178 | struct bootrec_desc *desc = |
| 179 | (struct bootrec_desc *)bootrec->data; |
| 180 | priv->rx_start = le32_to_cpu(desc->rx_start); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 181 | /* FIXME add sanity checking */ |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 182 | priv->rx_end = le32_to_cpu(desc->rx_end) - 0x3500; |
| 183 | priv->headroom = desc->headroom; |
| 184 | priv->tailroom = desc->tailroom; |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 185 | if (le32_to_cpu(bootrec->len) == 11) |
Larry Finger | 2e20cc3 | 2008-10-09 17:38:52 -0700 | [diff] [blame] | 186 | priv->rx_mtu = le16_to_cpu(desc->rx_mtu); |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 187 | else |
| 188 | priv->rx_mtu = (size_t) |
| 189 | 0x620 - priv->tx_hdr_len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 190 | break; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 191 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 192 | case BR_CODE_EXPOSED_IF: |
| 193 | exp_if = (struct bootrec_exp_if *) bootrec->data; |
| 194 | for (i = 0; i < (len * sizeof(*exp_if) / 4); i++) |
Al Viro | dc73c62 | 2007-12-21 23:49:02 -0500 | [diff] [blame] | 195 | if (exp_if[i].if_id == cpu_to_le16(0x1a)) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 196 | priv->fw_var = le16_to_cpu(exp_if[i].variant); |
| 197 | break; |
| 198 | case BR_CODE_DEPENDENT_IF: |
| 199 | break; |
| 200 | case BR_CODE_END_OF_BRA: |
| 201 | case LEGACY_BR_CODE_END_OF_BRA: |
| 202 | end_data = NULL; |
| 203 | break; |
| 204 | default: |
| 205 | break; |
| 206 | } |
| 207 | bootrec = (struct bootrec *)&bootrec->data[len]; |
| 208 | } |
| 209 | |
| 210 | if (fw_version) |
| 211 | printk(KERN_INFO "p54: FW rev %s - Softmac protocol %x.%x\n", |
| 212 | fw_version, priv->fw_var >> 8, priv->fw_var & 0xff); |
| 213 | |
| 214 | if (priv->fw_var >= 0x300) { |
| 215 | /* Firmware supports QoS, use it! */ |
Chr | 84df3ed | 2008-08-24 03:15:16 +0200 | [diff] [blame] | 216 | priv->tx_stats[4].limit = 3; |
| 217 | priv->tx_stats[5].limit = 4; |
| 218 | priv->tx_stats[6].limit = 3; |
| 219 | priv->tx_stats[7].limit = 1; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 220 | dev->queues = 4; |
| 221 | } |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 222 | |
| 223 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 224 | } |
| 225 | EXPORT_SYMBOL_GPL(p54_parse_firmware); |
| 226 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 227 | static int p54_convert_rev0(struct ieee80211_hw *dev, |
| 228 | struct pda_pa_curve_data *curve_data) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 229 | { |
| 230 | struct p54_common *priv = dev->priv; |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 231 | struct p54_pa_curve_data_sample *dst; |
| 232 | struct pda_pa_curve_data_sample_rev0 *src; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 233 | size_t cd_len = sizeof(*curve_data) + |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 234 | (curve_data->points_per_channel*sizeof(*dst) + 2) * |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 235 | curve_data->channels; |
| 236 | unsigned int i, j; |
| 237 | void *source, *target; |
| 238 | |
| 239 | priv->curve_data = kmalloc(cd_len, GFP_KERNEL); |
| 240 | if (!priv->curve_data) |
| 241 | return -ENOMEM; |
| 242 | |
| 243 | memcpy(priv->curve_data, curve_data, sizeof(*curve_data)); |
| 244 | source = curve_data->data; |
| 245 | target = priv->curve_data->data; |
| 246 | for (i = 0; i < curve_data->channels; i++) { |
| 247 | __le16 *freq = source; |
| 248 | source += sizeof(__le16); |
| 249 | *((__le16 *)target) = *freq; |
| 250 | target += sizeof(__le16); |
| 251 | for (j = 0; j < curve_data->points_per_channel; j++) { |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 252 | dst = target; |
| 253 | src = source; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 254 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 255 | dst->rf_power = src->rf_power; |
| 256 | dst->pa_detector = src->pa_detector; |
| 257 | dst->data_64qam = src->pcv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 258 | /* "invent" the points for the other modulations */ |
| 259 | #define SUB(x,y) (u8)((x) - (y)) > (x) ? 0 : (x) - (y) |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 260 | dst->data_16qam = SUB(src->pcv, 12); |
| 261 | dst->data_qpsk = SUB(dst->data_16qam, 12); |
| 262 | dst->data_bpsk = SUB(dst->data_qpsk, 12); |
| 263 | dst->data_barker = SUB(dst->data_bpsk, 14); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 264 | #undef SUB |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 265 | target += sizeof(*dst); |
| 266 | source += sizeof(*src); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 267 | } |
| 268 | } |
| 269 | |
| 270 | return 0; |
| 271 | } |
| 272 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 273 | static int p54_convert_rev1(struct ieee80211_hw *dev, |
| 274 | struct pda_pa_curve_data *curve_data) |
| 275 | { |
| 276 | struct p54_common *priv = dev->priv; |
| 277 | struct p54_pa_curve_data_sample *dst; |
| 278 | struct pda_pa_curve_data_sample_rev1 *src; |
| 279 | size_t cd_len = sizeof(*curve_data) + |
| 280 | (curve_data->points_per_channel*sizeof(*dst) + 2) * |
| 281 | curve_data->channels; |
| 282 | unsigned int i, j; |
| 283 | void *source, *target; |
| 284 | |
| 285 | priv->curve_data = kmalloc(cd_len, GFP_KERNEL); |
| 286 | if (!priv->curve_data) |
| 287 | return -ENOMEM; |
| 288 | |
| 289 | memcpy(priv->curve_data, curve_data, sizeof(*curve_data)); |
| 290 | source = curve_data->data; |
| 291 | target = priv->curve_data->data; |
| 292 | for (i = 0; i < curve_data->channels; i++) { |
| 293 | __le16 *freq = source; |
| 294 | source += sizeof(__le16); |
| 295 | *((__le16 *)target) = *freq; |
| 296 | target += sizeof(__le16); |
| 297 | for (j = 0; j < curve_data->points_per_channel; j++) { |
| 298 | memcpy(target, source, sizeof(*src)); |
| 299 | |
| 300 | target += sizeof(*dst); |
| 301 | source += sizeof(*src); |
| 302 | } |
| 303 | source++; |
| 304 | } |
| 305 | |
| 306 | return 0; |
| 307 | } |
| 308 | |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 309 | static const char *p54_rf_chips[] = { "NULL", "Duette3", "Duette2", |
| 310 | "Frisbee", "Xbow", "Longbow", "NULL", "NULL" }; |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 311 | static int p54_init_xbow_synth(struct ieee80211_hw *dev); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 312 | |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 313 | 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] | 314 | { |
| 315 | struct p54_common *priv = dev->priv; |
| 316 | struct eeprom_pda_wrap *wrap = NULL; |
| 317 | struct pda_entry *entry; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 318 | unsigned int data_len, entry_len; |
| 319 | void *tmp; |
| 320 | int err; |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 321 | u8 *end = (u8 *)eeprom + len; |
Christian Lamparter | f2c2e25 | 2008-10-25 16:14:14 +0200 | [diff] [blame] | 322 | u16 synth = 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 323 | |
| 324 | wrap = (struct eeprom_pda_wrap *) eeprom; |
Johannes Berg | 8c28293 | 2008-02-29 13:56:33 +0100 | [diff] [blame] | 325 | entry = (void *)wrap->data + le16_to_cpu(wrap->len); |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 326 | |
| 327 | /* verify that at least the entry length/code fits */ |
| 328 | while ((u8 *)entry <= end - sizeof(*entry)) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 329 | entry_len = le16_to_cpu(entry->len); |
| 330 | data_len = ((entry_len - 1) << 1); |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 331 | |
| 332 | /* abort if entry exceeds whole structure */ |
| 333 | if ((u8 *)entry + sizeof(*entry) + data_len > end) |
| 334 | break; |
| 335 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 336 | switch (le16_to_cpu(entry->code)) { |
| 337 | case PDR_MAC_ADDRESS: |
| 338 | SET_IEEE80211_PERM_ADDR(dev, entry->data); |
| 339 | break; |
| 340 | case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS: |
| 341 | if (data_len < 2) { |
| 342 | err = -EINVAL; |
| 343 | goto err; |
| 344 | } |
| 345 | |
| 346 | if (2 + entry->data[1]*sizeof(*priv->output_limit) > data_len) { |
| 347 | err = -EINVAL; |
| 348 | goto err; |
| 349 | } |
| 350 | |
| 351 | priv->output_limit = kmalloc(entry->data[1] * |
| 352 | sizeof(*priv->output_limit), GFP_KERNEL); |
| 353 | |
| 354 | if (!priv->output_limit) { |
| 355 | err = -ENOMEM; |
| 356 | goto err; |
| 357 | } |
| 358 | |
| 359 | memcpy(priv->output_limit, &entry->data[2], |
| 360 | entry->data[1]*sizeof(*priv->output_limit)); |
| 361 | priv->output_limit_len = entry->data[1]; |
| 362 | break; |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 363 | case PDR_PRISM_PA_CAL_CURVE_DATA: { |
| 364 | struct pda_pa_curve_data *curve_data = |
| 365 | (struct pda_pa_curve_data *)entry->data; |
| 366 | if (data_len < sizeof(*curve_data)) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 367 | err = -EINVAL; |
| 368 | goto err; |
| 369 | } |
| 370 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 371 | switch (curve_data->cal_method_rev) { |
| 372 | case 0: |
| 373 | err = p54_convert_rev0(dev, curve_data); |
| 374 | break; |
| 375 | case 1: |
| 376 | err = p54_convert_rev1(dev, curve_data); |
| 377 | break; |
| 378 | default: |
| 379 | printk(KERN_ERR "p54: unknown curve data " |
| 380 | "revision %d\n", |
| 381 | curve_data->cal_method_rev); |
| 382 | err = -ENODEV; |
| 383 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 384 | } |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 385 | if (err) |
| 386 | goto err; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 387 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 388 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 389 | case PDR_PRISM_ZIF_TX_IQ_CALIBRATION: |
| 390 | priv->iq_autocal = kmalloc(data_len, GFP_KERNEL); |
| 391 | if (!priv->iq_autocal) { |
| 392 | err = -ENOMEM; |
| 393 | goto err; |
| 394 | } |
| 395 | |
| 396 | memcpy(priv->iq_autocal, entry->data, data_len); |
| 397 | priv->iq_autocal_len = data_len / sizeof(struct pda_iq_autocal_entry); |
| 398 | break; |
| 399 | case PDR_INTERFACE_LIST: |
| 400 | tmp = entry->data; |
| 401 | while ((u8 *)tmp < entry->data + data_len) { |
| 402 | struct bootrec_exp_if *exp_if = tmp; |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 403 | if (le16_to_cpu(exp_if->if_id) == 0xf) |
| 404 | synth = le16_to_cpu(exp_if->variant); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 405 | tmp += sizeof(struct bootrec_exp_if); |
| 406 | } |
| 407 | break; |
| 408 | case PDR_HARDWARE_PLATFORM_COMPONENT_ID: |
| 409 | priv->version = *(u8 *)(entry->data + 1); |
| 410 | break; |
| 411 | case PDR_END: |
Johannes Berg | c2f2d3a | 2008-02-29 23:28:25 +0100 | [diff] [blame] | 412 | /* make it overrun */ |
| 413 | entry_len = len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 414 | break; |
Florian Fainelli | 58e3073 | 2008-02-25 17:51:53 +0100 | [diff] [blame] | 415 | default: |
| 416 | printk(KERN_INFO "p54: unknown eeprom code : 0x%x\n", |
| 417 | le16_to_cpu(entry->code)); |
| 418 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | entry = (void *)entry + (entry_len + 1)*2; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 422 | } |
| 423 | |
Christian Lamparter | f2c2e25 | 2008-10-25 16:14:14 +0200 | [diff] [blame] | 424 | if (!synth || !priv->iq_autocal || !priv->output_limit || |
| 425 | !priv->curve_data) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 426 | printk(KERN_ERR "p54: not all required entries found in eeprom!\n"); |
| 427 | err = -EINVAL; |
| 428 | goto err; |
| 429 | } |
| 430 | |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 431 | priv->rxhw = synth & 0x07; |
| 432 | if (priv->rxhw == 4) |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 433 | p54_init_xbow_synth(dev); |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 434 | if (!(synth & 0x40)) |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 435 | dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &band_2GHz; |
Christian Lamparter | 4cc683c | 2008-10-15 03:30:06 +0200 | [diff] [blame] | 436 | if (!(synth & 0x80)) |
| 437 | dev->wiphy->bands[IEEE80211_BAND_5GHZ] = &band_5GHz; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 438 | |
| 439 | if (!is_valid_ether_addr(dev->wiphy->perm_addr)) { |
| 440 | u8 perm_addr[ETH_ALEN]; |
| 441 | |
| 442 | printk(KERN_WARNING "%s: Invalid hwaddr! Using randomly generated MAC addr\n", |
| 443 | wiphy_name(dev->wiphy)); |
| 444 | random_ether_addr(perm_addr); |
| 445 | SET_IEEE80211_PERM_ADDR(dev, perm_addr); |
| 446 | } |
| 447 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 448 | printk(KERN_INFO "%s: hwaddr %pM, MAC:isl38%02x RF:%s\n", |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 449 | wiphy_name(dev->wiphy), |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 450 | dev->wiphy->perm_addr, |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 451 | priv->version, p54_rf_chips[priv->rxhw]); |
| 452 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 453 | return 0; |
| 454 | |
| 455 | err: |
| 456 | if (priv->iq_autocal) { |
| 457 | kfree(priv->iq_autocal); |
| 458 | priv->iq_autocal = NULL; |
| 459 | } |
| 460 | |
| 461 | if (priv->output_limit) { |
| 462 | kfree(priv->output_limit); |
| 463 | priv->output_limit = NULL; |
| 464 | } |
| 465 | |
| 466 | if (priv->curve_data) { |
| 467 | kfree(priv->curve_data); |
| 468 | priv->curve_data = NULL; |
| 469 | } |
| 470 | |
| 471 | printk(KERN_ERR "p54: eeprom parse failed!\n"); |
| 472 | return err; |
| 473 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 474 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 475 | static int p54_rssi_to_dbm(struct ieee80211_hw *dev, int rssi) |
| 476 | { |
| 477 | /* TODO: get the rssi_add & rssi_mul data from the eeprom */ |
| 478 | return ((rssi * 0x83) / 64 - 400) / 4; |
| 479 | } |
| 480 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 481 | 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] | 482 | { |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 483 | struct p54_common *priv = dev->priv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 484 | struct p54_rx_hdr *hdr = (struct p54_rx_hdr *) skb->data; |
| 485 | struct ieee80211_rx_status rx_status = {0}; |
| 486 | u16 freq = le16_to_cpu(hdr->freq); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 487 | size_t header_len = sizeof(*hdr); |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 488 | u32 tsf32; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 489 | |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 490 | if (!(hdr->magic & cpu_to_le16(0x0001))) { |
| 491 | if (priv->filter_flags & FIF_FCSFAIL) |
| 492 | rx_status.flag |= RX_FLAG_FAILED_FCS_CRC; |
| 493 | else |
| 494 | return 0; |
| 495 | } |
| 496 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 497 | rx_status.signal = p54_rssi_to_dbm(dev, hdr->rssi); |
| 498 | rx_status.noise = priv->noise; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 499 | /* XX correct? */ |
Larry.Finger@lwfinger.net | 18d7260 | 2008-06-30 10:39:49 -0500 | [diff] [blame] | 500 | rx_status.qual = (100 * hdr->rssi) / 127; |
Christian Lamparter | cf3e74c | 2008-09-30 23:36:00 +0200 | [diff] [blame] | 501 | rx_status.rate_idx = (dev->conf.channel->band == IEEE80211_BAND_2GHZ ? |
| 502 | hdr->rate : (hdr->rate - 4)) & 0xf; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 503 | rx_status.freq = freq; |
Christian Lamparter | cf3e74c | 2008-09-30 23:36:00 +0200 | [diff] [blame] | 504 | rx_status.band = dev->conf.channel->band; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 505 | rx_status.antenna = hdr->antenna; |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 506 | |
| 507 | tsf32 = le32_to_cpu(hdr->tsf32); |
| 508 | if (tsf32 < priv->tsf_low32) |
| 509 | priv->tsf_high32++; |
| 510 | rx_status.mactime = ((u64)priv->tsf_high32) << 32 | tsf32; |
| 511 | priv->tsf_low32 = tsf32; |
| 512 | |
Johannes Berg | 03bffc1 | 2007-12-04 20:33:40 +0100 | [diff] [blame] | 513 | rx_status.flag |= RX_FLAG_TSFT; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 514 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 515 | if (hdr->magic & cpu_to_le16(0x4000)) |
| 516 | header_len += hdr->align[0]; |
| 517 | |
| 518 | skb_pull(skb, header_len); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 519 | skb_trim(skb, le16_to_cpu(hdr->len)); |
| 520 | |
| 521 | ieee80211_rx_irqsafe(dev, skb, &rx_status); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 522 | |
| 523 | return -1; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | static void inline p54_wake_free_queues(struct ieee80211_hw *dev) |
| 527 | { |
| 528 | struct p54_common *priv = dev->priv; |
| 529 | int i; |
| 530 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 531 | for (i = 0; i < dev->queues; i++) |
Chr | 84df3ed | 2008-08-24 03:15:16 +0200 | [diff] [blame] | 532 | 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] | 533 | ieee80211_wake_queue(dev, i); |
| 534 | } |
| 535 | |
| 536 | static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 537 | { |
| 538 | struct p54_common *priv = dev->priv; |
| 539 | struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data; |
| 540 | struct p54_frame_sent_hdr *payload = (struct p54_frame_sent_hdr *) hdr->data; |
| 541 | struct sk_buff *entry = (struct sk_buff *) priv->tx_queue.next; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 542 | u32 addr = le32_to_cpu(hdr->req_id) - priv->headroom; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 543 | struct memrecord *range = NULL; |
| 544 | u32 freed = 0; |
| 545 | u32 last_addr = priv->rx_start; |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 546 | unsigned long flags; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 547 | int count, idx; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 548 | |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 549 | spin_lock_irqsave(&priv->tx_queue.lock, flags); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 550 | while (entry != (struct sk_buff *)&priv->tx_queue) { |
Johannes Berg | 552fe53 | 2008-05-30 21:07:15 +0200 | [diff] [blame] | 551 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 552 | range = (void *)info->rate_driver_data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 553 | if (range->start_addr == addr) { |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 554 | struct p54_control_hdr *entry_hdr; |
| 555 | struct p54_tx_control_allocdata *entry_data; |
| 556 | int pad = 0; |
| 557 | |
Johannes Berg | 552fe53 | 2008-05-30 21:07:15 +0200 | [diff] [blame] | 558 | if (entry->next != (struct sk_buff *)&priv->tx_queue) { |
| 559 | struct ieee80211_tx_info *ni; |
| 560 | struct memrecord *mr; |
| 561 | |
| 562 | ni = IEEE80211_SKB_CB(entry->next); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 563 | mr = (struct memrecord *)ni->rate_driver_data; |
Johannes Berg | 552fe53 | 2008-05-30 21:07:15 +0200 | [diff] [blame] | 564 | freed = mr->start_addr - last_addr; |
| 565 | } else |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 566 | freed = priv->rx_end - last_addr; |
| 567 | |
| 568 | last_addr = range->end_addr; |
| 569 | __skb_unlink(entry, &priv->tx_queue); |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 570 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
| 571 | |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 572 | /* |
| 573 | * Clear manually, ieee80211_tx_info_clear_status would |
| 574 | * clear the counts too and we need them. |
| 575 | */ |
| 576 | memset(&info->status.ampdu_ack_len, 0, |
| 577 | sizeof(struct ieee80211_tx_info) - |
| 578 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len)); |
| 579 | BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, |
| 580 | status.ampdu_ack_len) != 23); |
| 581 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 582 | entry_hdr = (struct p54_control_hdr *) entry->data; |
| 583 | entry_data = (struct p54_tx_control_allocdata *) entry_hdr->data; |
| 584 | if ((entry_hdr->magic1 & cpu_to_le16(0x4000)) != 0) |
| 585 | pad = entry_data->align[0]; |
| 586 | |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 587 | /* walk through the rates array and adjust the counts */ |
| 588 | count = payload->retries; |
| 589 | for (idx = 0; idx < 4; idx++) { |
| 590 | if (count >= info->status.rates[idx].count) { |
| 591 | count -= info->status.rates[idx].count; |
| 592 | } else if (count > 0) { |
| 593 | info->status.rates[idx].count = count; |
| 594 | count = 0; |
| 595 | } else { |
| 596 | info->status.rates[idx].idx = -1; |
| 597 | info->status.rates[idx].count = 0; |
| 598 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 599 | } |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 600 | |
| 601 | priv->tx_stats[entry_data->hw_queue].len--; |
| 602 | if (!(info->flags & IEEE80211_TX_CTL_NO_ACK) && |
| 603 | !(payload->status & 0x01)) |
| 604 | info->flags |= IEEE80211_TX_STAT_ACK; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 605 | info->status.ack_signal = p54_rssi_to_dbm(dev, |
| 606 | le16_to_cpu(payload->ack_rssi)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 607 | skb_pull(entry, sizeof(*hdr) + pad + sizeof(*entry_data)); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 608 | ieee80211_tx_status_irqsafe(dev, entry); |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 609 | goto out; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 610 | } else |
| 611 | last_addr = range->end_addr; |
| 612 | entry = entry->next; |
| 613 | } |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 614 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 615 | |
Chr | 031d10e | 2008-08-24 03:15:06 +0200 | [diff] [blame] | 616 | out: |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 617 | if (freed >= IEEE80211_MAX_RTS_THRESHOLD + 0x170 + |
| 618 | sizeof(struct p54_control_hdr)) |
| 619 | p54_wake_free_queues(dev); |
| 620 | } |
| 621 | |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 622 | static void p54_rx_eeprom_readback(struct ieee80211_hw *dev, |
| 623 | struct sk_buff *skb) |
| 624 | { |
| 625 | struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data; |
| 626 | struct p54_eeprom_lm86 *eeprom = (struct p54_eeprom_lm86 *) hdr->data; |
| 627 | struct p54_common *priv = dev->priv; |
| 628 | |
| 629 | if (!priv->eeprom) |
| 630 | return ; |
| 631 | |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 632 | memcpy(priv->eeprom, eeprom->data, le16_to_cpu(eeprom->len)); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 633 | |
| 634 | complete(&priv->eeprom_comp); |
| 635 | } |
| 636 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 637 | static void p54_rx_stats(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 638 | { |
| 639 | struct p54_common *priv = dev->priv; |
| 640 | struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data; |
| 641 | struct p54_statistics *stats = (struct p54_statistics *) hdr->data; |
| 642 | u32 tsf32 = le32_to_cpu(stats->tsf32); |
| 643 | |
| 644 | if (tsf32 < priv->tsf_low32) |
| 645 | priv->tsf_high32++; |
| 646 | priv->tsf_low32 = tsf32; |
| 647 | |
| 648 | priv->stats.dot11RTSFailureCount = le32_to_cpu(stats->rts_fail); |
| 649 | priv->stats.dot11RTSSuccessCount = le32_to_cpu(stats->rts_success); |
| 650 | priv->stats.dot11FCSErrorCount = le32_to_cpu(stats->rx_bad_fcs); |
| 651 | |
| 652 | priv->noise = p54_rssi_to_dbm(dev, le32_to_cpu(stats->noise)); |
| 653 | complete(&priv->stats_comp); |
| 654 | |
| 655 | mod_timer(&priv->stats_timer, jiffies + 5 * HZ); |
| 656 | } |
| 657 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 658 | 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] | 659 | { |
| 660 | struct p54_control_hdr *hdr = (struct p54_control_hdr *) skb->data; |
| 661 | |
| 662 | switch (le16_to_cpu(hdr->type)) { |
| 663 | case P54_CONTROL_TYPE_TXDONE: |
| 664 | p54_rx_frame_sent(dev, skb); |
| 665 | break; |
| 666 | case P54_CONTROL_TYPE_BBP: |
| 667 | break; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 668 | case P54_CONTROL_TYPE_STAT_READBACK: |
| 669 | p54_rx_stats(dev, skb); |
| 670 | break; |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 671 | case P54_CONTROL_TYPE_EEPROM_READBACK: |
| 672 | p54_rx_eeprom_readback(dev, skb); |
| 673 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 674 | default: |
| 675 | printk(KERN_DEBUG "%s: not handling 0x%02x type control frame\n", |
| 676 | wiphy_name(dev->wiphy), le16_to_cpu(hdr->type)); |
| 677 | break; |
| 678 | } |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 679 | |
| 680 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | /* returns zero if skb can be reused */ |
| 684 | int p54_rx(struct ieee80211_hw *dev, struct sk_buff *skb) |
| 685 | { |
| 686 | u8 type = le16_to_cpu(*((__le16 *)skb->data)) >> 8; |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 687 | |
| 688 | if (type == 0x80) |
| 689 | return p54_rx_control(dev, skb); |
| 690 | else |
| 691 | return p54_rx_data(dev, skb); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 692 | } |
| 693 | EXPORT_SYMBOL_GPL(p54_rx); |
| 694 | |
| 695 | /* |
| 696 | * So, the firmware is somewhat stupid and doesn't know what places in its |
| 697 | * memory incoming data should go to. By poking around in the firmware, we |
| 698 | * can find some unused memory to upload our packets to. However, data that we |
| 699 | * want the card to TX needs to stay intact until the card has told us that |
| 700 | * it is done with it. This function finds empty places we can upload to and |
| 701 | * marks allocated areas as reserved if necessary. p54_rx_frame_sent frees |
| 702 | * allocated areas. |
| 703 | */ |
| 704 | static void p54_assign_address(struct ieee80211_hw *dev, struct sk_buff *skb, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 705 | struct p54_control_hdr *data, u32 len) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 706 | { |
| 707 | struct p54_common *priv = dev->priv; |
| 708 | struct sk_buff *entry = priv->tx_queue.next; |
| 709 | struct sk_buff *target_skb = NULL; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 710 | u32 last_addr = priv->rx_start; |
| 711 | u32 largest_hole = 0; |
| 712 | u32 target_addr = priv->rx_start; |
| 713 | unsigned long flags; |
| 714 | unsigned int left; |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 715 | len = (len + priv->headroom + priv->tailroom + 3) & ~0x3; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 716 | |
| 717 | spin_lock_irqsave(&priv->tx_queue.lock, flags); |
| 718 | left = skb_queue_len(&priv->tx_queue); |
| 719 | while (left--) { |
| 720 | u32 hole_size; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 721 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 722 | struct memrecord *range = (void *)info->rate_driver_data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 723 | hole_size = range->start_addr - last_addr; |
| 724 | if (!target_skb && hole_size >= len) { |
| 725 | target_skb = entry->prev; |
| 726 | hole_size -= len; |
| 727 | target_addr = last_addr; |
| 728 | } |
| 729 | largest_hole = max(largest_hole, hole_size); |
| 730 | last_addr = range->end_addr; |
| 731 | entry = entry->next; |
| 732 | } |
| 733 | if (!target_skb && priv->rx_end - last_addr >= len) { |
| 734 | target_skb = priv->tx_queue.prev; |
| 735 | largest_hole = max(largest_hole, priv->rx_end - last_addr - len); |
| 736 | if (!skb_queue_empty(&priv->tx_queue)) { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 737 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(target_skb); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 738 | struct memrecord *range = (void *)info->rate_driver_data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 739 | target_addr = range->end_addr; |
| 740 | } |
| 741 | } else |
| 742 | largest_hole = max(largest_hole, priv->rx_end - last_addr); |
| 743 | |
| 744 | if (skb) { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 745 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 746 | struct memrecord *range = (void *)info->rate_driver_data; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 747 | range->start_addr = target_addr; |
| 748 | range->end_addr = target_addr + len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 749 | __skb_queue_after(&priv->tx_queue, target_skb, skb); |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 750 | if (largest_hole < priv->rx_mtu + priv->headroom + |
| 751 | priv->tailroom + |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 752 | sizeof(struct p54_control_hdr)) |
| 753 | ieee80211_stop_queues(dev); |
| 754 | } |
| 755 | spin_unlock_irqrestore(&priv->tx_queue.lock, flags); |
| 756 | |
Christian Lamparter | 4e416a6 | 2008-09-01 22:48:41 +0200 | [diff] [blame] | 757 | data->req_id = cpu_to_le32(target_addr + priv->headroom); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 758 | } |
| 759 | |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 760 | int p54_read_eeprom(struct ieee80211_hw *dev) |
| 761 | { |
| 762 | struct p54_common *priv = dev->priv; |
| 763 | struct p54_control_hdr *hdr = NULL; |
| 764 | struct p54_eeprom_lm86 *eeprom_hdr; |
| 765 | size_t eeprom_size = 0x2020, offset = 0, blocksize; |
| 766 | int ret = -ENOMEM; |
| 767 | void *eeprom = NULL; |
| 768 | |
| 769 | hdr = (struct p54_control_hdr *)kzalloc(sizeof(*hdr) + |
| 770 | sizeof(*eeprom_hdr) + EEPROM_READBACK_LEN, GFP_KERNEL); |
| 771 | if (!hdr) |
| 772 | goto free; |
| 773 | |
| 774 | priv->eeprom = kzalloc(EEPROM_READBACK_LEN, GFP_KERNEL); |
| 775 | if (!priv->eeprom) |
| 776 | goto free; |
| 777 | |
| 778 | eeprom = kzalloc(eeprom_size, GFP_KERNEL); |
| 779 | if (!eeprom) |
| 780 | goto free; |
| 781 | |
| 782 | hdr->magic1 = cpu_to_le16(0x8000); |
| 783 | hdr->type = cpu_to_le16(P54_CONTROL_TYPE_EEPROM_READBACK); |
| 784 | hdr->retry1 = hdr->retry2 = 0; |
| 785 | eeprom_hdr = (struct p54_eeprom_lm86 *) hdr->data; |
| 786 | |
| 787 | while (eeprom_size) { |
| 788 | blocksize = min(eeprom_size, (size_t)EEPROM_READBACK_LEN); |
| 789 | hdr->len = cpu_to_le16(blocksize + sizeof(*eeprom_hdr)); |
| 790 | eeprom_hdr->offset = cpu_to_le16(offset); |
| 791 | eeprom_hdr->len = cpu_to_le16(blocksize); |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 792 | p54_assign_address(dev, NULL, hdr, le16_to_cpu(hdr->len) + |
| 793 | sizeof(*hdr)); |
| 794 | priv->tx(dev, hdr, le16_to_cpu(hdr->len) + sizeof(*hdr), 0); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 795 | |
| 796 | if (!wait_for_completion_interruptible_timeout(&priv->eeprom_comp, HZ)) { |
| 797 | printk(KERN_ERR "%s: device does not respond!\n", |
| 798 | wiphy_name(dev->wiphy)); |
| 799 | ret = -EBUSY; |
| 800 | goto free; |
| 801 | } |
| 802 | |
| 803 | memcpy(eeprom + offset, priv->eeprom, blocksize); |
| 804 | offset += blocksize; |
| 805 | eeprom_size -= blocksize; |
| 806 | } |
| 807 | |
| 808 | ret = p54_parse_eeprom(dev, eeprom, offset); |
| 809 | free: |
| 810 | kfree(priv->eeprom); |
| 811 | priv->eeprom = NULL; |
| 812 | kfree(hdr); |
| 813 | kfree(eeprom); |
| 814 | |
| 815 | return ret; |
| 816 | } |
| 817 | EXPORT_SYMBOL_GPL(p54_read_eeprom); |
| 818 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 819 | static int p54_tx(struct ieee80211_hw *dev, struct sk_buff *skb) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 820 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 821 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Johannes Berg | 57ffc58 | 2008-04-29 17:18:59 +0200 | [diff] [blame] | 822 | struct ieee80211_tx_queue_stats *current_queue; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 823 | struct p54_common *priv = dev->priv; |
| 824 | struct p54_control_hdr *hdr; |
| 825 | struct p54_tx_control_allocdata *txhdr; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 826 | size_t padding, len; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 827 | int i, j, ridx; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 828 | u8 rate; |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 829 | u8 cts_rate = 0x20; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 830 | u8 rc_flags; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 831 | u8 calculated_tries[4]; |
| 832 | u8 nrates = 0, nremaining = 8; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 833 | |
Chr | 84df3ed | 2008-08-24 03:15:16 +0200 | [diff] [blame] | 834 | current_queue = &priv->tx_stats[skb_get_queue_mapping(skb) + 4]; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 835 | if (unlikely(current_queue->len > current_queue->limit)) |
| 836 | return NETDEV_TX_BUSY; |
| 837 | current_queue->len++; |
| 838 | current_queue->count++; |
| 839 | if (current_queue->len == current_queue->limit) |
Johannes Berg | e253008 | 2008-05-17 00:57:14 +0200 | [diff] [blame] | 840 | ieee80211_stop_queue(dev, skb_get_queue_mapping(skb)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 841 | |
| 842 | padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3; |
| 843 | len = skb->len; |
| 844 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 845 | txhdr = (struct p54_tx_control_allocdata *) |
| 846 | skb_push(skb, sizeof(*txhdr) + padding); |
| 847 | hdr = (struct p54_control_hdr *) skb_push(skb, sizeof(*hdr)); |
| 848 | |
| 849 | if (padding) |
| 850 | hdr->magic1 = cpu_to_le16(0x4010); |
| 851 | else |
| 852 | hdr->magic1 = cpu_to_le16(0x0010); |
| 853 | hdr->len = cpu_to_le16(len); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 854 | hdr->type = (info->flags & IEEE80211_TX_CTL_NO_ACK) ? 0 : cpu_to_le16(1); |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 855 | hdr->retry1 = info->control.rates[0].count; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 856 | |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 857 | /* |
| 858 | * we register the rates in perfect order, and |
| 859 | * RTS/CTS won't happen on 5 GHz |
| 860 | */ |
| 861 | cts_rate = info->control.rts_cts_rate_idx; |
| 862 | |
| 863 | memset(&txhdr->rateset, 0, sizeof(txhdr->rateset)); |
| 864 | |
| 865 | /* see how many rates got used */ |
| 866 | for (i = 0; i < 4; i++) { |
| 867 | if (info->control.rates[i].idx < 0) |
| 868 | break; |
| 869 | nrates++; |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 870 | } |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 871 | |
| 872 | /* limit tries to 8/nrates per rate */ |
| 873 | for (i = 0; i < nrates; i++) { |
| 874 | /* |
| 875 | * The magic expression here is equivalent to 8/nrates for |
| 876 | * all values that matter, but avoids division and jumps. |
| 877 | * Note that nrates can only take the values 1 through 4. |
| 878 | */ |
| 879 | calculated_tries[i] = min_t(int, ((15 >> nrates) | 1) + 1, |
| 880 | info->control.rates[i].count); |
| 881 | nremaining -= calculated_tries[i]; |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 882 | } |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 883 | |
| 884 | /* if there are tries left, distribute from back to front */ |
| 885 | for (i = nrates - 1; nremaining > 0 && i >= 0; i--) { |
| 886 | int tmp = info->control.rates[i].count - calculated_tries[i]; |
| 887 | |
| 888 | if (tmp <= 0) |
| 889 | continue; |
| 890 | /* RC requested more tries at this rate */ |
| 891 | |
| 892 | tmp = min_t(int, tmp, nremaining); |
| 893 | calculated_tries[i] += tmp; |
| 894 | nremaining -= tmp; |
| 895 | } |
| 896 | |
| 897 | ridx = 0; |
| 898 | for (i = 0; i < nrates && ridx < 8; i++) { |
| 899 | /* we register the rates in perfect order */ |
| 900 | rate = info->control.rates[i].idx; |
| 901 | if (info->band == IEEE80211_BAND_5GHZ) |
| 902 | rate += 4; |
| 903 | |
| 904 | /* store the count we actually calculated for TX status */ |
| 905 | info->control.rates[i].count = calculated_tries[i]; |
| 906 | |
| 907 | rc_flags = info->control.rates[i].flags; |
| 908 | if (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) { |
| 909 | rate |= 0x10; |
| 910 | cts_rate |= 0x10; |
| 911 | } |
| 912 | if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) |
| 913 | rate |= 0x40; |
| 914 | else if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) |
| 915 | rate |= 0x20; |
| 916 | for (j = 0; j < calculated_tries[i] && ridx < 8; j++) { |
| 917 | txhdr->rateset[ridx] = rate; |
| 918 | ridx++; |
| 919 | } |
| 920 | } |
| 921 | hdr->retry2 = ridx; |
| 922 | |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 923 | txhdr->key_type = 0; |
| 924 | txhdr->key_len = 0; |
| 925 | txhdr->hw_queue = skb_get_queue_mapping(skb) + 4; |
| 926 | txhdr->tx_antenna = (info->antenna_sel_tx == 0) ? |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 927 | 2 : info->antenna_sel_tx - 1; |
Christian Lamparter | 09adf28 | 2008-09-06 14:25:53 +0200 | [diff] [blame] | 928 | txhdr->output_power = priv->output_power; |
Christian Lamparter | aaa1553 | 2008-08-09 19:20:47 -0500 | [diff] [blame] | 929 | txhdr->cts_rate = (info->flags & IEEE80211_TX_CTL_NO_ACK) ? |
| 930 | 0 : cts_rate; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 931 | if (padding) |
| 932 | txhdr->align[0] = padding; |
| 933 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 934 | /* modifies skb->cb and with it info, so must be last! */ |
| 935 | p54_assign_address(dev, skb, hdr, skb->len); |
| 936 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 937 | priv->tx(dev, hdr, skb->len, 0); |
| 938 | return 0; |
| 939 | } |
| 940 | |
| 941 | static int p54_set_filter(struct ieee80211_hw *dev, u16 filter_type, |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 942 | const u8 *bssid) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 943 | { |
| 944 | struct p54_common *priv = dev->priv; |
| 945 | struct p54_control_hdr *hdr; |
| 946 | struct p54_tx_control_filter *filter; |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 947 | size_t data_len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 948 | |
| 949 | hdr = kzalloc(sizeof(*hdr) + sizeof(*filter) + |
Michael Wu | ba8007c | 2007-10-13 20:35:05 -0400 | [diff] [blame] | 950 | priv->tx_hdr_len, GFP_ATOMIC); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 951 | if (!hdr) |
| 952 | return -ENOMEM; |
| 953 | |
| 954 | hdr = (void *)hdr + priv->tx_hdr_len; |
| 955 | |
| 956 | filter = (struct p54_tx_control_filter *) hdr->data; |
| 957 | hdr->magic1 = cpu_to_le16(0x8001); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 958 | hdr->type = cpu_to_le16(P54_CONTROL_TYPE_FILTER_SET); |
| 959 | |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 960 | priv->filter_type = filter->filter_type = cpu_to_le16(filter_type); |
| 961 | memcpy(filter->mac_addr, priv->mac_addr, ETH_ALEN); |
| 962 | if (!bssid) |
| 963 | memset(filter->bssid, ~0, ETH_ALEN); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 964 | else |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 965 | memcpy(filter->bssid, bssid, ETH_ALEN); |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 966 | filter->rx_antenna = priv->rx_antenna; |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 967 | if (priv->fw_var < 0x500) { |
| 968 | data_len = P54_TX_CONTROL_FILTER_V1_LEN; |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 969 | filter->v1.basic_rate_mask = cpu_to_le32(0x15f); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 970 | filter->v1.rx_addr = cpu_to_le32(priv->rx_end); |
| 971 | filter->v1.max_rx = cpu_to_le16(priv->rx_mtu); |
| 972 | filter->v1.rxhw = cpu_to_le16(priv->rxhw); |
| 973 | filter->v1.wakeup_timer = cpu_to_le16(500); |
| 974 | } else { |
| 975 | data_len = P54_TX_CONTROL_FILTER_V2_LEN; |
| 976 | filter->v2.rx_addr = cpu_to_le32(priv->rx_end); |
| 977 | filter->v2.max_rx = cpu_to_le16(priv->rx_mtu); |
| 978 | filter->v2.rxhw = cpu_to_le16(priv->rxhw); |
| 979 | filter->v2.timer = cpu_to_le16(1000); |
| 980 | } |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 981 | hdr->len = cpu_to_le16(data_len); |
| 982 | p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + data_len); |
| 983 | priv->tx(dev, hdr, sizeof(*hdr) + data_len, 1); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 984 | return 0; |
| 985 | } |
| 986 | |
| 987 | static int p54_set_freq(struct ieee80211_hw *dev, __le16 freq) |
| 988 | { |
| 989 | struct p54_common *priv = dev->priv; |
| 990 | struct p54_control_hdr *hdr; |
| 991 | struct p54_tx_control_channel *chan; |
| 992 | unsigned int i; |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 993 | size_t data_len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 994 | void *entry; |
| 995 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 996 | hdr = kzalloc(sizeof(*hdr) + sizeof(*chan) + |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 997 | priv->tx_hdr_len, GFP_KERNEL); |
| 998 | if (!hdr) |
| 999 | return -ENOMEM; |
| 1000 | |
| 1001 | hdr = (void *)hdr + priv->tx_hdr_len; |
| 1002 | |
| 1003 | chan = (struct p54_tx_control_channel *) hdr->data; |
| 1004 | |
| 1005 | hdr->magic1 = cpu_to_le16(0x8001); |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1006 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1007 | hdr->type = cpu_to_le16(P54_CONTROL_TYPE_CHANNEL_CHANGE); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1008 | |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 1009 | chan->flags = cpu_to_le16(0x1); |
| 1010 | chan->dwell = cpu_to_le16(0x0); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1011 | |
| 1012 | for (i = 0; i < priv->iq_autocal_len; i++) { |
| 1013 | if (priv->iq_autocal[i].freq != freq) |
| 1014 | continue; |
| 1015 | |
| 1016 | memcpy(&chan->iq_autocal, &priv->iq_autocal[i], |
| 1017 | sizeof(*priv->iq_autocal)); |
| 1018 | break; |
| 1019 | } |
| 1020 | if (i == priv->iq_autocal_len) |
| 1021 | goto err; |
| 1022 | |
| 1023 | for (i = 0; i < priv->output_limit_len; i++) { |
| 1024 | if (priv->output_limit[i].freq != freq) |
| 1025 | continue; |
| 1026 | |
| 1027 | chan->val_barker = 0x38; |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 1028 | chan->val_bpsk = chan->dup_bpsk = |
| 1029 | priv->output_limit[i].val_bpsk; |
| 1030 | chan->val_qpsk = chan->dup_qpsk = |
| 1031 | priv->output_limit[i].val_qpsk; |
| 1032 | chan->val_16qam = chan->dup_16qam = |
| 1033 | priv->output_limit[i].val_16qam; |
| 1034 | chan->val_64qam = chan->dup_64qam = |
| 1035 | priv->output_limit[i].val_64qam; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1036 | break; |
| 1037 | } |
| 1038 | if (i == priv->output_limit_len) |
| 1039 | goto err; |
| 1040 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1041 | entry = priv->curve_data->data; |
| 1042 | for (i = 0; i < priv->curve_data->channels; i++) { |
| 1043 | if (*((__le16 *)entry) != freq) { |
| 1044 | entry += sizeof(__le16); |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 1045 | entry += sizeof(struct p54_pa_curve_data_sample) * |
| 1046 | priv->curve_data->points_per_channel; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1047 | continue; |
| 1048 | } |
| 1049 | |
| 1050 | entry += sizeof(__le16); |
Christian Lamparter | 154e3af | 2008-08-23 22:15:25 +0200 | [diff] [blame] | 1051 | chan->pa_points_per_curve = |
| 1052 | min(priv->curve_data->points_per_channel, (u8) 8); |
| 1053 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1054 | memcpy(chan->curve_data, entry, sizeof(*chan->curve_data) * |
| 1055 | chan->pa_points_per_curve); |
| 1056 | break; |
| 1057 | } |
| 1058 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1059 | if (priv->fw_var < 0x500) { |
| 1060 | data_len = P54_TX_CONTROL_CHANNEL_V1_LEN; |
| 1061 | chan->v1.rssical_mul = cpu_to_le16(130); |
| 1062 | chan->v1.rssical_add = cpu_to_le16(0xfe70); |
| 1063 | } else { |
| 1064 | data_len = P54_TX_CONTROL_CHANNEL_V2_LEN; |
| 1065 | chan->v2.rssical_mul = cpu_to_le16(130); |
| 1066 | chan->v2.rssical_add = cpu_to_le16(0xfe70); |
| 1067 | chan->v2.basic_rate_mask = cpu_to_le32(0x15f); |
| 1068 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1069 | |
Christian Lamparter | 19c19d5 | 2008-09-03 22:25:25 +0200 | [diff] [blame] | 1070 | hdr->len = cpu_to_le16(data_len); |
| 1071 | p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + data_len); |
| 1072 | priv->tx(dev, hdr, sizeof(*hdr) + data_len, 1); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1073 | return 0; |
| 1074 | |
| 1075 | err: |
| 1076 | printk(KERN_ERR "%s: frequency change failed\n", wiphy_name(dev->wiphy)); |
| 1077 | kfree(hdr); |
| 1078 | return -EINVAL; |
| 1079 | } |
| 1080 | |
| 1081 | static int p54_set_leds(struct ieee80211_hw *dev, int mode, int link, int act) |
| 1082 | { |
| 1083 | struct p54_common *priv = dev->priv; |
| 1084 | struct p54_control_hdr *hdr; |
| 1085 | struct p54_tx_control_led *led; |
| 1086 | |
| 1087 | hdr = kzalloc(sizeof(*hdr) + sizeof(*led) + |
| 1088 | priv->tx_hdr_len, GFP_KERNEL); |
| 1089 | if (!hdr) |
| 1090 | return -ENOMEM; |
| 1091 | |
| 1092 | hdr = (void *)hdr + priv->tx_hdr_len; |
| 1093 | hdr->magic1 = cpu_to_le16(0x8001); |
| 1094 | hdr->len = cpu_to_le16(sizeof(*led)); |
| 1095 | hdr->type = cpu_to_le16(P54_CONTROL_TYPE_LED); |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1096 | p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*led)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1097 | |
| 1098 | led = (struct p54_tx_control_led *) hdr->data; |
| 1099 | led->mode = cpu_to_le16(mode); |
| 1100 | led->led_permanent = cpu_to_le16(link); |
| 1101 | led->led_temporary = cpu_to_le16(act); |
| 1102 | led->duration = cpu_to_le16(1000); |
| 1103 | |
| 1104 | priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*led), 1); |
| 1105 | |
| 1106 | return 0; |
| 1107 | } |
| 1108 | |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 1109 | #define P54_SET_QUEUE(queue, ai_fs, cw_min, cw_max, _txop) \ |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1110 | do { \ |
| 1111 | queue.aifs = cpu_to_le16(ai_fs); \ |
| 1112 | queue.cwmin = cpu_to_le16(cw_min); \ |
| 1113 | queue.cwmax = cpu_to_le16(cw_max); \ |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 1114 | queue.txop = cpu_to_le16(_txop); \ |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1115 | } while(0) |
| 1116 | |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1117 | static int p54_set_edcf(struct ieee80211_hw *dev) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1118 | { |
| 1119 | struct p54_common *priv = dev->priv; |
| 1120 | struct p54_control_hdr *hdr; |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1121 | struct p54_edcf *edcf; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1122 | |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1123 | hdr = kzalloc(priv->tx_hdr_len + sizeof(*hdr) + sizeof(*edcf), |
| 1124 | GFP_ATOMIC); |
| 1125 | if (!hdr) |
| 1126 | return -ENOMEM; |
| 1127 | |
| 1128 | hdr = (void *)hdr + priv->tx_hdr_len; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1129 | hdr->magic1 = cpu_to_le16(0x8001); |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1130 | hdr->len = cpu_to_le16(sizeof(*edcf)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1131 | hdr->type = cpu_to_le16(P54_CONTROL_TYPE_DCFINIT); |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1132 | hdr->retry1 = hdr->retry2 = 0; |
| 1133 | edcf = (struct p54_edcf *)hdr->data; |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1134 | if (priv->use_short_slot) { |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1135 | edcf->slottime = 9; |
| 1136 | edcf->sifs = 0x10; |
| 1137 | edcf->eofpad = 0x00; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1138 | } else { |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1139 | edcf->slottime = 20; |
| 1140 | edcf->sifs = 0x0a; |
| 1141 | edcf->eofpad = 0x06; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1142 | } |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1143 | /* (see prism54/isl_oid.h for further details) */ |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1144 | edcf->frameburst = cpu_to_le16(0); |
| 1145 | edcf->round_trip_delay = cpu_to_le16(0); |
| 1146 | memset(edcf->mapping, 0, sizeof(edcf->mapping)); |
| 1147 | memcpy(edcf->queue, priv->qos_params, sizeof(edcf->queue)); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1148 | |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1149 | p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*edcf)); |
| 1150 | priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*edcf), 1); |
| 1151 | return 0; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1152 | } |
| 1153 | |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame^] | 1154 | static int p54_init_stats(struct ieee80211_hw *dev) |
| 1155 | { |
| 1156 | struct p54_common *priv = dev->priv; |
| 1157 | struct p54_control_hdr *hdr; |
| 1158 | struct p54_statistics *stats; |
| 1159 | |
| 1160 | priv->cached_stats = kzalloc(priv->tx_hdr_len + |
| 1161 | sizeof(*hdr) + sizeof(*stats), GFP_KERNEL); |
| 1162 | |
| 1163 | if (!priv->cached_stats) |
| 1164 | return -ENOMEM; |
| 1165 | |
| 1166 | hdr = (void *) priv->cached_stats + priv->tx_hdr_len; |
| 1167 | hdr->magic1 = cpu_to_le16(0x8000); |
| 1168 | hdr->len = cpu_to_le16(sizeof(*stats)); |
| 1169 | hdr->type = cpu_to_le16(P54_CONTROL_TYPE_STAT_READBACK); |
| 1170 | hdr->retry1 = hdr->retry2 = 0; |
| 1171 | |
| 1172 | mod_timer(&priv->stats_timer, jiffies + HZ); |
| 1173 | return 0; |
| 1174 | } |
| 1175 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1176 | static int p54_start(struct ieee80211_hw *dev) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1177 | { |
| 1178 | struct p54_common *priv = dev->priv; |
| 1179 | int err; |
| 1180 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1181 | err = priv->open(dev); |
| 1182 | if (!err) |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1183 | priv->mode = NL80211_IFTYPE_MONITOR; |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1184 | P54_SET_QUEUE(priv->qos_params[0], 0x0002, 0x0003, 0x0007, 47); |
| 1185 | P54_SET_QUEUE(priv->qos_params[1], 0x0002, 0x0007, 0x000f, 94); |
| 1186 | P54_SET_QUEUE(priv->qos_params[2], 0x0003, 0x000f, 0x03ff, 0); |
| 1187 | P54_SET_QUEUE(priv->qos_params[3], 0x0007, 0x000f, 0x03ff, 0); |
| 1188 | err = p54_set_edcf(dev); |
| 1189 | if (!err) |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame^] | 1190 | err = p54_init_stats(dev); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1191 | |
| 1192 | return err; |
| 1193 | } |
| 1194 | |
| 1195 | static void p54_stop(struct ieee80211_hw *dev) |
| 1196 | { |
| 1197 | struct p54_common *priv = dev->priv; |
| 1198 | struct sk_buff *skb; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1199 | |
| 1200 | del_timer(&priv->stats_timer); |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame^] | 1201 | kfree(priv->cached_stats); |
| 1202 | priv->cached_stats = NULL; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1203 | while ((skb = skb_dequeue(&priv->tx_queue))) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1204 | kfree_skb(skb); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1205 | priv->stop(dev); |
Christian Lamparter | a0db663 | 2008-09-06 02:56:04 +0200 | [diff] [blame] | 1206 | priv->tsf_high32 = priv->tsf_low32 = 0; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1207 | priv->mode = NL80211_IFTYPE_UNSPECIFIED; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | static int p54_add_interface(struct ieee80211_hw *dev, |
| 1211 | struct ieee80211_if_init_conf *conf) |
| 1212 | { |
| 1213 | struct p54_common *priv = dev->priv; |
| 1214 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1215 | if (priv->mode != NL80211_IFTYPE_MONITOR) |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1216 | return -EOPNOTSUPP; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1217 | |
| 1218 | switch (conf->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1219 | case NL80211_IFTYPE_STATION: |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1220 | priv->mode = conf->type; |
| 1221 | break; |
| 1222 | default: |
| 1223 | return -EOPNOTSUPP; |
| 1224 | } |
| 1225 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1226 | memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1227 | |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 1228 | p54_set_filter(dev, 0, NULL); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1229 | |
| 1230 | switch (conf->type) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1231 | case NL80211_IFTYPE_STATION: |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 1232 | p54_set_filter(dev, 1, NULL); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1233 | break; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1234 | default: |
| 1235 | BUG(); /* impossible */ |
| 1236 | break; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1237 | } |
| 1238 | |
| 1239 | p54_set_leds(dev, 1, 0, 0); |
| 1240 | |
| 1241 | return 0; |
| 1242 | } |
| 1243 | |
| 1244 | static void p54_remove_interface(struct ieee80211_hw *dev, |
| 1245 | struct ieee80211_if_init_conf *conf) |
| 1246 | { |
| 1247 | struct p54_common *priv = dev->priv; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1248 | priv->mode = NL80211_IFTYPE_MONITOR; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1249 | memset(priv->mac_addr, 0, ETH_ALEN); |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 1250 | p54_set_filter(dev, 0, NULL); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1251 | } |
| 1252 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1253 | static int p54_config(struct ieee80211_hw *dev, u32 changed) |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1254 | { |
| 1255 | int ret; |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1256 | struct p54_common *priv = dev->priv; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1257 | struct ieee80211_conf *conf = &dev->conf; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1258 | |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1259 | mutex_lock(&priv->conf_mutex); |
Johannes Berg | 0f4ac38 | 2008-10-09 12:18:04 +0200 | [diff] [blame] | 1260 | priv->rx_antenna = 2; /* automatic */ |
Christian Lamparter | 09adf28 | 2008-09-06 14:25:53 +0200 | [diff] [blame] | 1261 | priv->output_power = conf->power_level << 2; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1262 | ret = p54_set_freq(dev, cpu_to_le16(conf->channel->center_freq)); |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1263 | if (!ret) |
| 1264 | ret = p54_set_edcf(dev); |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1265 | mutex_unlock(&priv->conf_mutex); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1266 | return ret; |
| 1267 | } |
| 1268 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1269 | static int p54_config_interface(struct ieee80211_hw *dev, |
| 1270 | struct ieee80211_vif *vif, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1271 | struct ieee80211_if_conf *conf) |
| 1272 | { |
| 1273 | struct p54_common *priv = dev->priv; |
| 1274 | |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1275 | mutex_lock(&priv->conf_mutex); |
Christian Lamparter | e0a58ea | 2008-09-03 22:25:20 +0200 | [diff] [blame] | 1276 | p54_set_filter(dev, 0, conf->bssid); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1277 | p54_set_leds(dev, 1, !is_multicast_ether_addr(conf->bssid), 0); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1278 | memcpy(priv->bssid, conf->bssid, ETH_ALEN); |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1279 | mutex_unlock(&priv->conf_mutex); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1280 | return 0; |
| 1281 | } |
| 1282 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1283 | static void p54_configure_filter(struct ieee80211_hw *dev, |
| 1284 | unsigned int changed_flags, |
| 1285 | unsigned int *total_flags, |
| 1286 | int mc_count, struct dev_mc_list *mclist) |
| 1287 | { |
| 1288 | struct p54_common *priv = dev->priv; |
| 1289 | |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 1290 | *total_flags &= FIF_BCN_PRBRESP_PROMISC | |
| 1291 | FIF_PROMISC_IN_BSS | |
| 1292 | FIF_FCSFAIL; |
| 1293 | |
| 1294 | priv->filter_flags = *total_flags; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1295 | |
| 1296 | if (changed_flags & FIF_BCN_PRBRESP_PROMISC) { |
| 1297 | if (*total_flags & FIF_BCN_PRBRESP_PROMISC) |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 1298 | p54_set_filter(dev, le16_to_cpu(priv->filter_type), |
| 1299 | NULL); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1300 | else |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 1301 | p54_set_filter(dev, le16_to_cpu(priv->filter_type), |
| 1302 | priv->bssid); |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 1303 | } |
| 1304 | |
| 1305 | if (changed_flags & FIF_PROMISC_IN_BSS) { |
| 1306 | if (*total_flags & FIF_PROMISC_IN_BSS) |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 1307 | p54_set_filter(dev, le16_to_cpu(priv->filter_type) | |
| 1308 | 0x8, NULL); |
Christian Lamparter | 78d57eb | 2008-09-06 02:56:12 +0200 | [diff] [blame] | 1309 | else |
Larry Finger | 1f1c0e3 | 2008-09-25 14:54:28 -0500 | [diff] [blame] | 1310 | p54_set_filter(dev, le16_to_cpu(priv->filter_type) & |
| 1311 | ~0x8, priv->bssid); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1312 | } |
| 1313 | } |
| 1314 | |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 1315 | static int p54_conf_tx(struct ieee80211_hw *dev, u16 queue, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1316 | const struct ieee80211_tx_queue_params *params) |
| 1317 | { |
| 1318 | struct p54_common *priv = dev->priv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1319 | |
John W. Linville | 3df5ee6 | 2008-05-01 17:07:32 -0400 | [diff] [blame] | 1320 | if ((params) && !(queue > 4)) { |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1321 | P54_SET_QUEUE(priv->qos_params[queue], params->aifs, |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 1322 | params->cw_min, params->cw_max, params->txop); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1323 | } else |
| 1324 | return -EINVAL; |
| 1325 | |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1326 | return p54_set_edcf(dev); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1327 | } |
| 1328 | |
Christian Lamparter | 1b99753 | 2008-09-06 14:25:58 +0200 | [diff] [blame] | 1329 | static int p54_init_xbow_synth(struct ieee80211_hw *dev) |
| 1330 | { |
| 1331 | struct p54_common *priv = dev->priv; |
| 1332 | struct p54_control_hdr *hdr; |
| 1333 | struct p54_tx_control_xbow_synth *xbow; |
| 1334 | |
| 1335 | hdr = kzalloc(sizeof(*hdr) + sizeof(*xbow) + |
| 1336 | priv->tx_hdr_len, GFP_KERNEL); |
| 1337 | if (!hdr) |
| 1338 | return -ENOMEM; |
| 1339 | |
| 1340 | hdr = (void *)hdr + priv->tx_hdr_len; |
| 1341 | hdr->magic1 = cpu_to_le16(0x8001); |
| 1342 | hdr->len = cpu_to_le16(sizeof(*xbow)); |
| 1343 | hdr->type = cpu_to_le16(P54_CONTROL_TYPE_XBOW_SYNTH_CFG); |
| 1344 | p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*xbow)); |
| 1345 | |
| 1346 | xbow = (struct p54_tx_control_xbow_synth *) hdr->data; |
| 1347 | xbow->magic1 = cpu_to_le16(0x1); |
| 1348 | xbow->magic2 = cpu_to_le16(0x2); |
| 1349 | xbow->freq = cpu_to_le16(5390); |
| 1350 | |
| 1351 | priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*xbow), 1); |
| 1352 | |
| 1353 | return 0; |
| 1354 | } |
| 1355 | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1356 | static void p54_statistics_timer(unsigned long data) |
| 1357 | { |
| 1358 | struct ieee80211_hw *dev = (struct ieee80211_hw *) data; |
| 1359 | struct p54_common *priv = dev->priv; |
| 1360 | struct p54_control_hdr *hdr; |
| 1361 | struct p54_statistics *stats; |
| 1362 | |
| 1363 | BUG_ON(!priv->cached_stats); |
Christian Lamparter | 0f1be97 | 2008-10-15 03:56:20 +0200 | [diff] [blame^] | 1364 | hdr = (void *) priv->cached_stats + priv->tx_hdr_len; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1365 | p54_assign_address(dev, NULL, hdr, sizeof(*hdr) + sizeof(*stats)); |
| 1366 | |
| 1367 | priv->tx(dev, hdr, sizeof(*hdr) + sizeof(*stats), 0); |
| 1368 | } |
| 1369 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1370 | static int p54_get_stats(struct ieee80211_hw *dev, |
| 1371 | struct ieee80211_low_level_stats *stats) |
| 1372 | { |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1373 | struct p54_common *priv = dev->priv; |
| 1374 | |
| 1375 | del_timer(&priv->stats_timer); |
| 1376 | p54_statistics_timer((unsigned long)dev); |
| 1377 | |
| 1378 | if (!wait_for_completion_interruptible_timeout(&priv->stats_comp, HZ)) { |
| 1379 | printk(KERN_ERR "%s: device does not respond!\n", |
| 1380 | wiphy_name(dev->wiphy)); |
| 1381 | return -EBUSY; |
| 1382 | } |
| 1383 | |
| 1384 | memcpy(stats, &priv->stats, sizeof(*stats)); |
| 1385 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1386 | return 0; |
| 1387 | } |
| 1388 | |
| 1389 | static int p54_get_tx_stats(struct ieee80211_hw *dev, |
| 1390 | struct ieee80211_tx_queue_stats *stats) |
| 1391 | { |
| 1392 | struct p54_common *priv = dev->priv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1393 | |
Chr | 84df3ed | 2008-08-24 03:15:16 +0200 | [diff] [blame] | 1394 | memcpy(stats, &priv->tx_stats[4], sizeof(stats[0]) * dev->queues); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1395 | |
| 1396 | return 0; |
| 1397 | } |
| 1398 | |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1399 | static void p54_bss_info_changed(struct ieee80211_hw *dev, |
| 1400 | struct ieee80211_vif *vif, |
| 1401 | struct ieee80211_bss_conf *info, |
| 1402 | u32 changed) |
| 1403 | { |
| 1404 | struct p54_common *priv = dev->priv; |
| 1405 | |
| 1406 | if (changed & BSS_CHANGED_ERP_SLOT) { |
| 1407 | priv->use_short_slot = info->use_short_slot; |
Christian Lamparter | 0fdd7c5 | 2008-10-15 03:55:37 +0200 | [diff] [blame] | 1408 | p54_set_edcf(dev); |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1409 | } |
| 1410 | } |
| 1411 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1412 | static const struct ieee80211_ops p54_ops = { |
| 1413 | .tx = p54_tx, |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1414 | .start = p54_start, |
| 1415 | .stop = p54_stop, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1416 | .add_interface = p54_add_interface, |
| 1417 | .remove_interface = p54_remove_interface, |
| 1418 | .config = p54_config, |
| 1419 | .config_interface = p54_config_interface, |
Christian Lamparter | 40333e4 | 2008-10-08 20:52:22 +0200 | [diff] [blame] | 1420 | .bss_info_changed = p54_bss_info_changed, |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1421 | .configure_filter = p54_configure_filter, |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1422 | .conf_tx = p54_conf_tx, |
| 1423 | .get_stats = p54_get_stats, |
| 1424 | .get_tx_stats = p54_get_tx_stats |
| 1425 | }; |
| 1426 | |
| 1427 | struct ieee80211_hw *p54_init_common(size_t priv_data_len) |
| 1428 | { |
| 1429 | struct ieee80211_hw *dev; |
| 1430 | struct p54_common *priv; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1431 | |
| 1432 | dev = ieee80211_alloc_hw(priv_data_len, &p54_ops); |
| 1433 | if (!dev) |
| 1434 | return NULL; |
| 1435 | |
| 1436 | priv = dev->priv; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1437 | priv->mode = NL80211_IFTYPE_UNSPECIFIED; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1438 | skb_queue_head_init(&priv->tx_queue); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1439 | dev->flags = IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | /* not sure */ |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 1440 | IEEE80211_HW_RX_INCLUDES_FCS | |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1441 | IEEE80211_HW_SIGNAL_DBM | |
| 1442 | IEEE80211_HW_NOISE_DBM; |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 1443 | |
Johannes Berg | 9477828 | 2008-10-10 13:21:59 +0200 | [diff] [blame] | 1444 | /* |
| 1445 | * XXX: when this driver gets support for any mode that |
| 1446 | * requires beacons (AP, MESH, IBSS) then it must |
| 1447 | * implement IEEE80211_TX_CTL_ASSIGN_SEQ. |
| 1448 | */ |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 1449 | dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION); |
| 1450 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1451 | dev->channel_change_time = 1000; /* TODO: find actual value */ |
Chr | 84df3ed | 2008-08-24 03:15:16 +0200 | [diff] [blame] | 1452 | priv->tx_stats[0].limit = 1; |
| 1453 | priv->tx_stats[1].limit = 1; |
| 1454 | priv->tx_stats[2].limit = 1; |
| 1455 | priv->tx_stats[3].limit = 1; |
| 1456 | priv->tx_stats[4].limit = 5; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1457 | dev->queues = 1; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1458 | priv->noise = -94; |
Johannes Berg | c12abae | 2008-10-14 16:56:51 +0200 | [diff] [blame] | 1459 | /* |
| 1460 | * We support at most 8 tries no matter which rate they're at, |
| 1461 | * we cannot support max_rates * max_rate_tries as we set it |
| 1462 | * here, but setting it correctly to 4/2 or so would limit us |
| 1463 | * artificially if the RC algorithm wants just two rates, so |
| 1464 | * let's say 4/7, we'll redistribute it at TX time, see the |
| 1465 | * comments there. |
| 1466 | */ |
| 1467 | dev->max_rates = 4; |
| 1468 | dev->max_rate_tries = 7; |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1469 | dev->extra_tx_headroom = sizeof(struct p54_control_hdr) + 4 + |
| 1470 | sizeof(struct p54_tx_control_allocdata); |
| 1471 | |
Larry Finger | 6041e2a | 2008-08-03 17:58:36 -0500 | [diff] [blame] | 1472 | mutex_init(&priv->conf_mutex); |
Christian Lamparter | 7cb7707 | 2008-09-01 22:48:51 +0200 | [diff] [blame] | 1473 | init_completion(&priv->eeprom_comp); |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1474 | init_completion(&priv->stats_comp); |
| 1475 | setup_timer(&priv->stats_timer, p54_statistics_timer, |
| 1476 | (unsigned long)dev); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1477 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1478 | return dev; |
| 1479 | } |
| 1480 | EXPORT_SYMBOL_GPL(p54_init_common); |
| 1481 | |
| 1482 | void p54_free_common(struct ieee80211_hw *dev) |
| 1483 | { |
| 1484 | struct p54_common *priv = dev->priv; |
Christian Lamparter | cc6de66 | 2008-09-06 02:56:23 +0200 | [diff] [blame] | 1485 | kfree(priv->cached_stats); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1486 | kfree(priv->iq_autocal); |
| 1487 | kfree(priv->output_limit); |
| 1488 | kfree(priv->curve_data); |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 1489 | } |
| 1490 | EXPORT_SYMBOL_GPL(p54_free_common); |
| 1491 | |
| 1492 | static int __init p54_init(void) |
| 1493 | { |
| 1494 | return 0; |
| 1495 | } |
| 1496 | |
| 1497 | static void __exit p54_exit(void) |
| 1498 | { |
| 1499 | } |
| 1500 | |
| 1501 | module_init(p54_init); |
| 1502 | module_exit(p54_exit); |