Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Reinette Chatre | eb7ae89 | 2008-03-11 16:17:17 -0700 | [diff] [blame] | 3 | * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of version 2 of the GNU General Public License as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called LICENSE. |
| 20 | * |
| 21 | * Contact Information: |
Winkler, Tomas | 759ef89 | 2008-12-09 11:28:58 -0800 | [diff] [blame] | 22 | * Intel Linux Wireless <ilw@linux.intel.com> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 24 | * |
| 25 | *****************************************************************************/ |
| 26 | |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/module.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 29 | #include <linux/init.h> |
| 30 | #include <linux/pci.h> |
| 31 | #include <linux/dma-mapping.h> |
| 32 | #include <linux/delay.h> |
| 33 | #include <linux/skbuff.h> |
| 34 | #include <linux/netdevice.h> |
| 35 | #include <linux/wireless.h> |
| 36 | #include <linux/firmware.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 37 | #include <linux/etherdevice.h> |
Zhu Yi | 12342c4 | 2007-12-20 11:27:32 +0800 | [diff] [blame] | 38 | #include <asm/unaligned.h> |
| 39 | #include <net/mac80211.h> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 40 | |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 41 | #include "iwl-3945-core.h" |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 42 | #include "iwl-3945-fh.h" |
Tomas Winkler | 600c0e1 | 2008-12-19 10:37:04 +0800 | [diff] [blame] | 43 | #include "iwl-commands.h" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 44 | #include "iwl-3945.h" |
Christoph Hellwig | 5d08cd1 | 2007-10-25 17:15:50 +0800 | [diff] [blame] | 45 | #include "iwl-helpers.h" |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 46 | #include "iwl-3945-rs.h" |
| 47 | |
| 48 | #define IWL_DECLARE_RATE_INFO(r, ip, in, rp, rn, pp, np) \ |
| 49 | [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP, \ |
| 50 | IWL_RATE_##r##M_IEEE, \ |
| 51 | IWL_RATE_##ip##M_INDEX, \ |
| 52 | IWL_RATE_##in##M_INDEX, \ |
| 53 | IWL_RATE_##rp##M_INDEX, \ |
| 54 | IWL_RATE_##rn##M_INDEX, \ |
| 55 | IWL_RATE_##pp##M_INDEX, \ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 56 | IWL_RATE_##np##M_INDEX, \ |
| 57 | IWL_RATE_##r##M_INDEX_TABLE, \ |
| 58 | IWL_RATE_##ip##M_INDEX_TABLE } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * Parameter order: |
| 62 | * rate, prev rate, next rate, prev tgg rate, next tgg rate |
| 63 | * |
| 64 | * If there isn't a valid next or previous rate then INV is used which |
| 65 | * maps to IWL_RATE_INVALID |
| 66 | * |
| 67 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 68 | const struct iwl3945_rate_info iwl3945_rates[IWL_RATE_COUNT] = { |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 69 | IWL_DECLARE_RATE_INFO(1, INV, 2, INV, 2, INV, 2), /* 1mbps */ |
| 70 | IWL_DECLARE_RATE_INFO(2, 1, 5, 1, 5, 1, 5), /* 2mbps */ |
| 71 | IWL_DECLARE_RATE_INFO(5, 2, 6, 2, 11, 2, 11), /*5.5mbps */ |
| 72 | IWL_DECLARE_RATE_INFO(11, 9, 12, 5, 12, 5, 18), /* 11mbps */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 73 | IWL_DECLARE_RATE_INFO(6, 5, 9, 5, 11, 5, 11), /* 6mbps */ |
| 74 | IWL_DECLARE_RATE_INFO(9, 6, 11, 5, 11, 5, 11), /* 9mbps */ |
| 75 | IWL_DECLARE_RATE_INFO(12, 11, 18, 11, 18, 11, 18), /* 12mbps */ |
| 76 | IWL_DECLARE_RATE_INFO(18, 12, 24, 12, 24, 11, 24), /* 18mbps */ |
| 77 | IWL_DECLARE_RATE_INFO(24, 18, 36, 18, 36, 18, 36), /* 24mbps */ |
| 78 | IWL_DECLARE_RATE_INFO(36, 24, 48, 24, 48, 24, 48), /* 36mbps */ |
| 79 | IWL_DECLARE_RATE_INFO(48, 36, 54, 36, 54, 36, 54), /* 48mbps */ |
| 80 | IWL_DECLARE_RATE_INFO(54, 48, INV, 48, INV, 48, INV),/* 54mbps */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 81 | }; |
| 82 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 83 | /* 1 = enable the iwl3945_disable_events() function */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 84 | #define IWL_EVT_DISABLE (0) |
| 85 | #define IWL_EVT_DISABLE_SIZE (1532/32) |
| 86 | |
| 87 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 88 | * iwl3945_disable_events - Disable selected events in uCode event log |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 89 | * |
| 90 | * Disable an event by writing "1"s into "disable" |
| 91 | * bitmap in SRAM. Bit position corresponds to Event # (id/type). |
| 92 | * Default values of 0 enable uCode events to be logged. |
| 93 | * Use for only special debugging. This function is just a placeholder as-is, |
| 94 | * you'll need to provide the special bits! ... |
| 95 | * ... and set IWL_EVT_DISABLE to 1. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 96 | void iwl3945_disable_events(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 97 | { |
Tomas Winkler | af7cca2 | 2007-10-25 17:15:36 +0800 | [diff] [blame] | 98 | int ret; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 99 | int i; |
| 100 | u32 base; /* SRAM address of event log header */ |
| 101 | u32 disable_ptr; /* SRAM address of event-disable bitmap array */ |
| 102 | u32 array_size; /* # of u32 entries in array */ |
| 103 | u32 evt_disable[IWL_EVT_DISABLE_SIZE] = { |
| 104 | 0x00000000, /* 31 - 0 Event id numbers */ |
| 105 | 0x00000000, /* 63 - 32 */ |
| 106 | 0x00000000, /* 95 - 64 */ |
| 107 | 0x00000000, /* 127 - 96 */ |
| 108 | 0x00000000, /* 159 - 128 */ |
| 109 | 0x00000000, /* 191 - 160 */ |
| 110 | 0x00000000, /* 223 - 192 */ |
| 111 | 0x00000000, /* 255 - 224 */ |
| 112 | 0x00000000, /* 287 - 256 */ |
| 113 | 0x00000000, /* 319 - 288 */ |
| 114 | 0x00000000, /* 351 - 320 */ |
| 115 | 0x00000000, /* 383 - 352 */ |
| 116 | 0x00000000, /* 415 - 384 */ |
| 117 | 0x00000000, /* 447 - 416 */ |
| 118 | 0x00000000, /* 479 - 448 */ |
| 119 | 0x00000000, /* 511 - 480 */ |
| 120 | 0x00000000, /* 543 - 512 */ |
| 121 | 0x00000000, /* 575 - 544 */ |
| 122 | 0x00000000, /* 607 - 576 */ |
| 123 | 0x00000000, /* 639 - 608 */ |
| 124 | 0x00000000, /* 671 - 640 */ |
| 125 | 0x00000000, /* 703 - 672 */ |
| 126 | 0x00000000, /* 735 - 704 */ |
| 127 | 0x00000000, /* 767 - 736 */ |
| 128 | 0x00000000, /* 799 - 768 */ |
| 129 | 0x00000000, /* 831 - 800 */ |
| 130 | 0x00000000, /* 863 - 832 */ |
| 131 | 0x00000000, /* 895 - 864 */ |
| 132 | 0x00000000, /* 927 - 896 */ |
| 133 | 0x00000000, /* 959 - 928 */ |
| 134 | 0x00000000, /* 991 - 960 */ |
| 135 | 0x00000000, /* 1023 - 992 */ |
| 136 | 0x00000000, /* 1055 - 1024 */ |
| 137 | 0x00000000, /* 1087 - 1056 */ |
| 138 | 0x00000000, /* 1119 - 1088 */ |
| 139 | 0x00000000, /* 1151 - 1120 */ |
| 140 | 0x00000000, /* 1183 - 1152 */ |
| 141 | 0x00000000, /* 1215 - 1184 */ |
| 142 | 0x00000000, /* 1247 - 1216 */ |
| 143 | 0x00000000, /* 1279 - 1248 */ |
| 144 | 0x00000000, /* 1311 - 1280 */ |
| 145 | 0x00000000, /* 1343 - 1312 */ |
| 146 | 0x00000000, /* 1375 - 1344 */ |
| 147 | 0x00000000, /* 1407 - 1376 */ |
| 148 | 0x00000000, /* 1439 - 1408 */ |
| 149 | 0x00000000, /* 1471 - 1440 */ |
| 150 | 0x00000000, /* 1503 - 1472 */ |
| 151 | }; |
| 152 | |
| 153 | base = le32_to_cpu(priv->card_alive.log_event_table_ptr); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 154 | if (!iwl3945_hw_valid_rtc_data_addr(base)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 155 | IWL_ERROR("Invalid event log pointer 0x%08X\n", base); |
| 156 | return; |
| 157 | } |
| 158 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 159 | ret = iwl3945_grab_nic_access(priv); |
Tomas Winkler | af7cca2 | 2007-10-25 17:15:36 +0800 | [diff] [blame] | 160 | if (ret) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 161 | IWL_WARNING("Can not read from adapter at this time.\n"); |
| 162 | return; |
| 163 | } |
| 164 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 165 | disable_ptr = iwl3945_read_targ_mem(priv, base + (4 * sizeof(u32))); |
| 166 | array_size = iwl3945_read_targ_mem(priv, base + (5 * sizeof(u32))); |
| 167 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 168 | |
| 169 | if (IWL_EVT_DISABLE && (array_size == IWL_EVT_DISABLE_SIZE)) { |
| 170 | IWL_DEBUG_INFO("Disabling selected uCode log events at 0x%x\n", |
| 171 | disable_ptr); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 172 | ret = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 173 | for (i = 0; i < IWL_EVT_DISABLE_SIZE; i++) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 174 | iwl3945_write_targ_mem(priv, |
Tomas Winkler | af7cca2 | 2007-10-25 17:15:36 +0800 | [diff] [blame] | 175 | disable_ptr + (i * sizeof(u32)), |
| 176 | evt_disable[i]); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 177 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 178 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 179 | } else { |
| 180 | IWL_DEBUG_INFO("Selected uCode log events may be disabled\n"); |
| 181 | IWL_DEBUG_INFO(" by writing \"1\"s into disable bitmap\n"); |
| 182 | IWL_DEBUG_INFO(" in SRAM at 0x%x, size %d u32s\n", |
| 183 | disable_ptr, array_size); |
| 184 | } |
| 185 | |
| 186 | } |
| 187 | |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 188 | static int iwl3945_hwrate_to_plcp_idx(u8 plcp) |
| 189 | { |
| 190 | int idx; |
| 191 | |
| 192 | for (idx = 0; idx < IWL_RATE_COUNT; idx++) |
| 193 | if (iwl3945_rates[idx].plcp == plcp) |
| 194 | return idx; |
| 195 | return -1; |
| 196 | } |
| 197 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 198 | /** |
| 199 | * iwl3945_get_antenna_flags - Get antenna flags for RXON command |
| 200 | * @priv: eeprom and antenna fields are used to determine antenna flags |
| 201 | * |
| 202 | * priv->eeprom is used to determine if antenna AUX/MAIN are reversed |
| 203 | * priv->antenna specifies the antenna diversity mode: |
| 204 | * |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 205 | * IWL_ANTENNA_DIVERSITY - NIC selects best antenna by itself |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 206 | * IWL_ANTENNA_MAIN - Force MAIN antenna |
| 207 | * IWL_ANTENNA_AUX - Force AUX antenna |
| 208 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 209 | __le32 iwl3945_get_antenna_flags(const struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 210 | { |
| 211 | switch (priv->antenna) { |
| 212 | case IWL_ANTENNA_DIVERSITY: |
| 213 | return 0; |
| 214 | |
| 215 | case IWL_ANTENNA_MAIN: |
| 216 | if (priv->eeprom.antenna_switch_type) |
| 217 | return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK; |
| 218 | return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK; |
| 219 | |
| 220 | case IWL_ANTENNA_AUX: |
| 221 | if (priv->eeprom.antenna_switch_type) |
| 222 | return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_A_MSK; |
| 223 | return RXON_FLG_DIS_DIV_MSK | RXON_FLG_ANT_B_MSK; |
| 224 | } |
| 225 | |
| 226 | /* bad antenna selector value */ |
| 227 | IWL_ERROR("Bad antenna selector value (0x%x)\n", priv->antenna); |
| 228 | return 0; /* "diversity" is default if error */ |
| 229 | } |
| 230 | |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 231 | #ifdef CONFIG_IWL3945_DEBUG |
| 232 | #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x |
| 233 | |
| 234 | static const char *iwl3945_get_tx_fail_reason(u32 status) |
| 235 | { |
| 236 | switch (status & TX_STATUS_MSK) { |
| 237 | case TX_STATUS_SUCCESS: |
| 238 | return "SUCCESS"; |
| 239 | TX_STATUS_ENTRY(SHORT_LIMIT); |
| 240 | TX_STATUS_ENTRY(LONG_LIMIT); |
| 241 | TX_STATUS_ENTRY(FIFO_UNDERRUN); |
| 242 | TX_STATUS_ENTRY(MGMNT_ABORT); |
| 243 | TX_STATUS_ENTRY(NEXT_FRAG); |
| 244 | TX_STATUS_ENTRY(LIFE_EXPIRE); |
| 245 | TX_STATUS_ENTRY(DEST_PS); |
| 246 | TX_STATUS_ENTRY(ABORTED); |
| 247 | TX_STATUS_ENTRY(BT_RETRY); |
| 248 | TX_STATUS_ENTRY(STA_INVALID); |
| 249 | TX_STATUS_ENTRY(FRAG_DROPPED); |
| 250 | TX_STATUS_ENTRY(TID_DISABLE); |
| 251 | TX_STATUS_ENTRY(FRAME_FLUSHED); |
| 252 | TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL); |
| 253 | TX_STATUS_ENTRY(TX_LOCKED); |
| 254 | TX_STATUS_ENTRY(NO_BEACON_ON_RADAR); |
| 255 | } |
| 256 | |
| 257 | return "UNKNOWN"; |
| 258 | } |
| 259 | #else |
| 260 | static inline const char *iwl3945_get_tx_fail_reason(u32 status) |
| 261 | { |
| 262 | return ""; |
| 263 | } |
| 264 | #endif |
| 265 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 266 | /* |
| 267 | * get ieee prev rate from rate scale table. |
| 268 | * for A and B mode we need to overright prev |
| 269 | * value |
| 270 | */ |
| 271 | int iwl3945_rs_next_rate(struct iwl3945_priv *priv, int rate) |
| 272 | { |
| 273 | int next_rate = iwl3945_get_prev_ieee_rate(rate); |
| 274 | |
| 275 | switch (priv->band) { |
| 276 | case IEEE80211_BAND_5GHZ: |
| 277 | if (rate == IWL_RATE_12M_INDEX) |
| 278 | next_rate = IWL_RATE_9M_INDEX; |
| 279 | else if (rate == IWL_RATE_6M_INDEX) |
| 280 | next_rate = IWL_RATE_6M_INDEX; |
| 281 | break; |
Abbas, Mohamed | 7262796 | 2008-12-05 07:58:37 -0800 | [diff] [blame] | 282 | case IEEE80211_BAND_2GHZ: |
| 283 | if (!(priv->sta_supp_rates & IWL_OFDM_RATES_MASK) && |
| 284 | iwl3945_is_associated(priv)) { |
| 285 | if (rate == IWL_RATE_11M_INDEX) |
| 286 | next_rate = IWL_RATE_5M_INDEX; |
| 287 | } |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 288 | break; |
Abbas, Mohamed | 7262796 | 2008-12-05 07:58:37 -0800 | [diff] [blame] | 289 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 290 | default: |
| 291 | break; |
| 292 | } |
| 293 | |
| 294 | return next_rate; |
| 295 | } |
| 296 | |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 297 | |
| 298 | /** |
| 299 | * iwl3945_tx_queue_reclaim - Reclaim Tx queue entries already Tx'd |
| 300 | * |
| 301 | * When FW advances 'R' index, all entries between old and new 'R' index |
| 302 | * need to be reclaimed. As result, some free space forms. If there is |
| 303 | * enough free space (> low mark), wake the stack that feeds us. |
| 304 | */ |
| 305 | static void iwl3945_tx_queue_reclaim(struct iwl3945_priv *priv, |
| 306 | int txq_id, int index) |
| 307 | { |
| 308 | struct iwl3945_tx_queue *txq = &priv->txq[txq_id]; |
| 309 | struct iwl3945_queue *q = &txq->q; |
| 310 | struct iwl3945_tx_info *tx_info; |
| 311 | |
| 312 | BUG_ON(txq_id == IWL_CMD_QUEUE_NUM); |
| 313 | |
| 314 | for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index; |
| 315 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) { |
| 316 | |
| 317 | tx_info = &txq->txb[txq->q.read_ptr]; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 318 | ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb[0]); |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 319 | tx_info->skb[0] = NULL; |
| 320 | iwl3945_hw_txq_free_tfd(priv, txq); |
| 321 | } |
| 322 | |
| 323 | if (iwl3945_queue_space(q) > q->low_mark && (txq_id >= 0) && |
| 324 | (txq_id != IWL_CMD_QUEUE_NUM) && |
| 325 | priv->mac80211_registered) |
| 326 | ieee80211_wake_queue(priv->hw, txq_id); |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * iwl3945_rx_reply_tx - Handle Tx response |
| 331 | */ |
| 332 | static void iwl3945_rx_reply_tx(struct iwl3945_priv *priv, |
| 333 | struct iwl3945_rx_mem_buffer *rxb) |
| 334 | { |
Tomas Winkler | 3d24a9f | 2008-12-19 10:37:07 +0800 | [diff] [blame] | 335 | struct iwl_rx_packet *pkt = (void *)rxb->skb->data; |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 336 | u16 sequence = le16_to_cpu(pkt->hdr.sequence); |
| 337 | int txq_id = SEQ_TO_QUEUE(sequence); |
| 338 | int index = SEQ_TO_INDEX(sequence); |
| 339 | struct iwl3945_tx_queue *txq = &priv->txq[txq_id]; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 340 | struct ieee80211_tx_info *info; |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 341 | struct iwl3945_tx_resp *tx_resp = (void *)&pkt->u.raw[0]; |
| 342 | u32 status = le32_to_cpu(tx_resp->status); |
| 343 | int rate_idx; |
Abbas, Mohamed | 74221d0 | 2008-12-02 12:14:03 -0800 | [diff] [blame] | 344 | int fail; |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 345 | |
| 346 | if ((index >= txq->q.n_bd) || (iwl3945_x2_queue_used(&txq->q, index) == 0)) { |
| 347 | IWL_ERROR("Read index for DMA queue txq_id (%d) index %d " |
| 348 | "is out of range [0-%d] %d %d\n", txq_id, |
| 349 | index, txq->q.n_bd, txq->q.write_ptr, |
| 350 | txq->q.read_ptr); |
| 351 | return; |
| 352 | } |
| 353 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 354 | info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb[0]); |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 355 | ieee80211_tx_info_clear_status(info); |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 356 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 357 | /* Fill the MRR chain with some info about on-chip retransmissions */ |
| 358 | rate_idx = iwl3945_hwrate_to_plcp_idx(tx_resp->rate); |
| 359 | if (info->band == IEEE80211_BAND_5GHZ) |
| 360 | rate_idx -= IWL_FIRST_OFDM_RATE; |
| 361 | |
| 362 | fail = tx_resp->failure_frame; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 363 | |
Abbas, Mohamed | 74221d0 | 2008-12-02 12:14:03 -0800 | [diff] [blame] | 364 | info->status.rates[0].idx = rate_idx; |
| 365 | info->status.rates[0].count = fail + 1; /* add final attempt */ |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 366 | |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 367 | /* tx_status->rts_retry_count = tx_resp->failure_rts; */ |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 368 | info->flags |= ((status & TX_STATUS_MSK) == TX_STATUS_SUCCESS) ? |
| 369 | IEEE80211_TX_STAT_ACK : 0; |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 370 | |
| 371 | IWL_DEBUG_TX("Tx queue %d Status %s (0x%08x) plcp rate %d retries %d\n", |
| 372 | txq_id, iwl3945_get_tx_fail_reason(status), status, |
| 373 | tx_resp->rate, tx_resp->failure_frame); |
| 374 | |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 375 | IWL_DEBUG_TX_REPLY("Tx queue reclaim %d\n", index); |
| 376 | iwl3945_tx_queue_reclaim(priv, txq_id, index); |
| 377 | |
| 378 | if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK)) |
| 379 | IWL_ERROR("TODO: Implement Tx ABORT REQUIRED!!!\n"); |
| 380 | } |
| 381 | |
| 382 | |
| 383 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 384 | /***************************************************************************** |
| 385 | * |
| 386 | * Intel PRO/Wireless 3945ABG/BG Network Connection |
| 387 | * |
| 388 | * RX handler implementations |
| 389 | * |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 390 | *****************************************************************************/ |
| 391 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 392 | void iwl3945_hw_rx_statistics(struct iwl3945_priv *priv, struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 393 | { |
Tomas Winkler | 3d24a9f | 2008-12-19 10:37:07 +0800 | [diff] [blame] | 394 | struct iwl_rx_packet *pkt = (void *)rxb->skb->data; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 395 | IWL_DEBUG_RX("Statistics notification received (%d vs %d).\n", |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 396 | (int)sizeof(struct iwl3945_notif_statistics), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 397 | le32_to_cpu(pkt->len)); |
| 398 | |
| 399 | memcpy(&priv->statistics, pkt->u.raw, sizeof(priv->statistics)); |
| 400 | |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame] | 401 | iwl3945_led_background(priv); |
| 402 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 403 | priv->last_statistics_time = jiffies; |
| 404 | } |
| 405 | |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 406 | /****************************************************************************** |
| 407 | * |
| 408 | * Misc. internal state and helper functions |
| 409 | * |
| 410 | ******************************************************************************/ |
| 411 | #ifdef CONFIG_IWL3945_DEBUG |
| 412 | |
| 413 | /** |
| 414 | * iwl3945_report_frame - dump frame to syslog during debug sessions |
| 415 | * |
| 416 | * You may hack this function to show different aspects of received frames, |
| 417 | * including selective frame dumps. |
| 418 | * group100 parameter selects whether to show 1 out of 100 good frames. |
| 419 | */ |
| 420 | static void iwl3945_dbg_report_frame(struct iwl3945_priv *priv, |
Tomas Winkler | 3d24a9f | 2008-12-19 10:37:07 +0800 | [diff] [blame] | 421 | struct iwl_rx_packet *pkt, |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 422 | struct ieee80211_hdr *header, int group100) |
| 423 | { |
| 424 | u32 to_us; |
| 425 | u32 print_summary = 0; |
| 426 | u32 print_dump = 0; /* set to 1 to dump all frames' contents */ |
| 427 | u32 hundred = 0; |
| 428 | u32 dataframe = 0; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 429 | __le16 fc; |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 430 | u16 seq_ctl; |
| 431 | u16 channel; |
| 432 | u16 phy_flags; |
| 433 | u16 length; |
| 434 | u16 status; |
| 435 | u16 bcn_tmr; |
| 436 | u32 tsf_low; |
| 437 | u64 tsf; |
| 438 | u8 rssi; |
| 439 | u8 agc; |
| 440 | u16 sig_avg; |
| 441 | u16 noise_diff; |
| 442 | struct iwl3945_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt); |
| 443 | struct iwl3945_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt); |
| 444 | struct iwl3945_rx_frame_end *rx_end = IWL_RX_END(pkt); |
| 445 | u8 *data = IWL_RX_DATA(pkt); |
| 446 | |
| 447 | /* MAC header */ |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 448 | fc = header->frame_control; |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 449 | seq_ctl = le16_to_cpu(header->seq_ctrl); |
| 450 | |
| 451 | /* metadata */ |
| 452 | channel = le16_to_cpu(rx_hdr->channel); |
| 453 | phy_flags = le16_to_cpu(rx_hdr->phy_flags); |
| 454 | length = le16_to_cpu(rx_hdr->len); |
| 455 | |
| 456 | /* end-of-frame status and timestamp */ |
| 457 | status = le32_to_cpu(rx_end->status); |
| 458 | bcn_tmr = le32_to_cpu(rx_end->beacon_timestamp); |
| 459 | tsf_low = le64_to_cpu(rx_end->timestamp) & 0x0ffffffff; |
| 460 | tsf = le64_to_cpu(rx_end->timestamp); |
| 461 | |
| 462 | /* signal statistics */ |
| 463 | rssi = rx_stats->rssi; |
| 464 | agc = rx_stats->agc; |
| 465 | sig_avg = le16_to_cpu(rx_stats->sig_avg); |
| 466 | noise_diff = le16_to_cpu(rx_stats->noise_diff); |
| 467 | |
| 468 | to_us = !compare_ether_addr(header->addr1, priv->mac_addr); |
| 469 | |
| 470 | /* if data frame is to us and all is good, |
| 471 | * (optionally) print summary for only 1 out of every 100 */ |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 472 | if (to_us && (fc & ~cpu_to_le16(IEEE80211_FCTL_PROTECTED)) == |
| 473 | cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) { |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 474 | dataframe = 1; |
| 475 | if (!group100) |
| 476 | print_summary = 1; /* print each frame */ |
| 477 | else if (priv->framecnt_to_us < 100) { |
| 478 | priv->framecnt_to_us++; |
| 479 | print_summary = 0; |
| 480 | } else { |
| 481 | priv->framecnt_to_us = 0; |
| 482 | print_summary = 1; |
| 483 | hundred = 1; |
| 484 | } |
| 485 | } else { |
| 486 | /* print summary for all other frames */ |
| 487 | print_summary = 1; |
| 488 | } |
| 489 | |
| 490 | if (print_summary) { |
| 491 | char *title; |
Darren Jenkins | 0ff1cca | 2008-07-03 09:41:38 +1000 | [diff] [blame] | 492 | int rate; |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 493 | |
| 494 | if (hundred) |
| 495 | title = "100Frames"; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 496 | else if (ieee80211_has_retry(fc)) |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 497 | title = "Retry"; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 498 | else if (ieee80211_is_assoc_resp(fc)) |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 499 | title = "AscRsp"; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 500 | else if (ieee80211_is_reassoc_resp(fc)) |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 501 | title = "RasRsp"; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 502 | else if (ieee80211_is_probe_resp(fc)) { |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 503 | title = "PrbRsp"; |
| 504 | print_dump = 1; /* dump frame contents */ |
| 505 | } else if (ieee80211_is_beacon(fc)) { |
| 506 | title = "Beacon"; |
| 507 | print_dump = 1; /* dump frame contents */ |
| 508 | } else if (ieee80211_is_atim(fc)) |
| 509 | title = "ATIM"; |
| 510 | else if (ieee80211_is_auth(fc)) |
| 511 | title = "Auth"; |
| 512 | else if (ieee80211_is_deauth(fc)) |
| 513 | title = "DeAuth"; |
| 514 | else if (ieee80211_is_disassoc(fc)) |
| 515 | title = "DisAssoc"; |
| 516 | else |
| 517 | title = "Frame"; |
| 518 | |
| 519 | rate = iwl3945_hwrate_to_plcp_idx(rx_hdr->rate); |
| 520 | if (rate == -1) |
| 521 | rate = 0; |
| 522 | else |
| 523 | rate = iwl3945_rates[rate].ieee / 2; |
| 524 | |
| 525 | /* print frame summary. |
| 526 | * MAC addresses show just the last byte (for brevity), |
| 527 | * but you can hack it to show more, if you'd like to. */ |
| 528 | if (dataframe) |
| 529 | IWL_DEBUG_RX("%s: mhd=0x%04x, dst=0x%02x, " |
Darren Jenkins | 0ff1cca | 2008-07-03 09:41:38 +1000 | [diff] [blame] | 530 | "len=%u, rssi=%d, chnl=%d, rate=%d, \n", |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 531 | title, le16_to_cpu(fc), header->addr1[5], |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 532 | length, rssi, channel, rate); |
| 533 | else { |
| 534 | /* src/dst addresses assume managed mode */ |
| 535 | IWL_DEBUG_RX("%s: 0x%04x, dst=0x%02x, " |
| 536 | "src=0x%02x, rssi=%u, tim=%lu usec, " |
| 537 | "phy=0x%02x, chnl=%d\n", |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 538 | title, le16_to_cpu(fc), header->addr1[5], |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 539 | header->addr3[5], rssi, |
| 540 | tsf_low - priv->scan_start_tsf, |
| 541 | phy_flags, channel); |
| 542 | } |
| 543 | } |
| 544 | if (print_dump) |
Samuel Ortiz | 40b8ec0 | 2008-12-19 10:37:08 +0800 | [diff] [blame] | 545 | iwl_print_hex_dump(priv, IWL_DL_RX, data, length); |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 546 | } |
| 547 | #else |
| 548 | static inline void iwl3945_dbg_report_frame(struct iwl3945_priv *priv, |
Tomas Winkler | 3d24a9f | 2008-12-19 10:37:07 +0800 | [diff] [blame] | 549 | struct iwl_rx_packet *pkt, |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 550 | struct ieee80211_hdr *header, int group100) |
| 551 | { |
| 552 | } |
| 553 | #endif |
| 554 | |
Adel Gadllah | 4bd9b4f | 2008-07-11 11:53:29 +0800 | [diff] [blame] | 555 | /* This is necessary only for a number of statistics, see the caller. */ |
| 556 | static int iwl3945_is_network_packet(struct iwl3945_priv *priv, |
| 557 | struct ieee80211_hdr *header) |
| 558 | { |
| 559 | /* Filter incoming packets to determine if they are targeted toward |
| 560 | * this network, discarding packets coming from ourselves */ |
| 561 | switch (priv->iw_mode) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 562 | case NL80211_IFTYPE_ADHOC: /* Header: Dest. | Source | BSSID */ |
Adel Gadllah | 4bd9b4f | 2008-07-11 11:53:29 +0800 | [diff] [blame] | 563 | /* packets to our IBSS update information */ |
| 564 | return !compare_ether_addr(header->addr3, priv->bssid); |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 565 | case NL80211_IFTYPE_STATION: /* Header: Dest. | AP{BSSID} | Source */ |
Adel Gadllah | 4bd9b4f | 2008-07-11 11:53:29 +0800 | [diff] [blame] | 566 | /* packets to our IBSS update information */ |
| 567 | return !compare_ether_addr(header->addr2, priv->bssid); |
| 568 | default: |
| 569 | return 1; |
| 570 | } |
| 571 | } |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 572 | |
Adel Gadllah | 4bd9b4f | 2008-07-11 11:53:29 +0800 | [diff] [blame] | 573 | static void iwl3945_pass_packet_to_mac80211(struct iwl3945_priv *priv, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 574 | struct iwl3945_rx_mem_buffer *rxb, |
Zhu Yi | 12342c4 | 2007-12-20 11:27:32 +0800 | [diff] [blame] | 575 | struct ieee80211_rx_status *stats) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 576 | { |
Tomas Winkler | 3d24a9f | 2008-12-19 10:37:07 +0800 | [diff] [blame] | 577 | struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data; |
Rami Rosen | 699669f | 2008-07-16 16:39:56 +0300 | [diff] [blame] | 578 | #ifdef CONFIG_IWL3945_LEDS |
Adel Gadllah | 4bd9b4f | 2008-07-11 11:53:29 +0800 | [diff] [blame] | 579 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)IWL_RX_DATA(pkt); |
Rami Rosen | 699669f | 2008-07-16 16:39:56 +0300 | [diff] [blame] | 580 | #endif |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 581 | struct iwl3945_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt); |
| 582 | struct iwl3945_rx_frame_end *rx_end = IWL_RX_END(pkt); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 583 | short len = le16_to_cpu(rx_hdr->len); |
| 584 | |
| 585 | /* We received data from the HW, so stop the watchdog */ |
Tomas Winkler | 3d24a9f | 2008-12-19 10:37:07 +0800 | [diff] [blame] | 586 | if (unlikely((len + IWL39_RX_FRAME_SIZE) > skb_tailroom(rxb->skb))) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 587 | IWL_DEBUG_DROP("Corruption detected!\n"); |
| 588 | return; |
| 589 | } |
| 590 | |
| 591 | /* We only process data packets if the interface is open */ |
| 592 | if (unlikely(!priv->is_open)) { |
| 593 | IWL_DEBUG_DROP_LIMIT |
| 594 | ("Dropping packet while interface is not open.\n"); |
| 595 | return; |
| 596 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 597 | |
| 598 | skb_reserve(rxb->skb, (void *)rx_hdr->payload - (void *)pkt); |
| 599 | /* Set the size of the skb to the size of the frame */ |
| 600 | skb_put(rxb->skb, le16_to_cpu(rx_hdr->len)); |
| 601 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 602 | if (iwl3945_param_hwcrypto) |
| 603 | iwl3945_set_decrypted_flag(priv, rxb->skb, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 604 | le32_to_cpu(rx_end->status), stats); |
| 605 | |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame] | 606 | #ifdef CONFIG_IWL3945_LEDS |
Adel Gadllah | 4bd9b4f | 2008-07-11 11:53:29 +0800 | [diff] [blame] | 607 | if (ieee80211_is_data(hdr->frame_control)) |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame] | 608 | priv->rxtxpackets += len; |
| 609 | #endif |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 610 | ieee80211_rx_irqsafe(priv->hw, rxb->skb, stats); |
| 611 | rxb->skb = NULL; |
| 612 | } |
| 613 | |
Mohamed Abbas | 7878a5a | 2007-11-29 11:10:13 +0800 | [diff] [blame] | 614 | #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6) |
| 615 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 616 | static void iwl3945_rx_reply_rx(struct iwl3945_priv *priv, |
| 617 | struct iwl3945_rx_mem_buffer *rxb) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 618 | { |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 619 | struct ieee80211_hdr *header; |
| 620 | struct ieee80211_rx_status rx_status; |
Tomas Winkler | 3d24a9f | 2008-12-19 10:37:07 +0800 | [diff] [blame] | 621 | struct iwl_rx_packet *pkt = (void *)rxb->skb->data; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 622 | struct iwl3945_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt); |
| 623 | struct iwl3945_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt); |
| 624 | struct iwl3945_rx_frame_end *rx_end = IWL_RX_END(pkt); |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 625 | int snr; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 626 | u16 rx_stats_sig_avg = le16_to_cpu(rx_stats->sig_avg); |
| 627 | u16 rx_stats_noise_diff = le16_to_cpu(rx_stats->noise_diff); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 628 | u8 network_packet; |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 629 | |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 630 | rx_status.flag = 0; |
| 631 | rx_status.mactime = le64_to_cpu(rx_end->timestamp); |
Tomas Winkler | dc92e49 | 2008-04-03 16:05:22 -0700 | [diff] [blame] | 632 | rx_status.freq = |
Emmanuel Grumbach | c018607 | 2008-05-08 11:34:05 +0800 | [diff] [blame] | 633 | ieee80211_channel_to_frequency(le16_to_cpu(rx_hdr->channel)); |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 634 | rx_status.band = (rx_hdr->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ? |
| 635 | IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; |
| 636 | |
| 637 | rx_status.rate_idx = iwl3945_hwrate_to_plcp_idx(rx_hdr->rate); |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 638 | if (rx_status.band == IEEE80211_BAND_5GHZ) |
| 639 | rx_status.rate_idx -= IWL_FIRST_OFDM_RATE; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 640 | |
Bruno Randolf | 6f0a2c4 | 2008-07-30 17:20:14 +0200 | [diff] [blame] | 641 | rx_status.antenna = le16_to_cpu(rx_hdr->phy_flags & |
| 642 | RX_RES_PHY_FLAGS_ANTENNA_MSK) >> 4; |
| 643 | |
| 644 | /* set the preamble flag if appropriate */ |
| 645 | if (rx_hdr->phy_flags & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK) |
| 646 | rx_status.flag |= RX_FLAG_SHORTPRE; |
| 647 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 648 | if ((unlikely(rx_stats->phy_count > 20))) { |
| 649 | IWL_DEBUG_DROP |
| 650 | ("dsp size out of range [0,20]: " |
| 651 | "%d/n", rx_stats->phy_count); |
| 652 | return; |
| 653 | } |
| 654 | |
| 655 | if (!(rx_end->status & RX_RES_STATUS_NO_CRC32_ERROR) |
| 656 | || !(rx_end->status & RX_RES_STATUS_NO_RXE_OVERFLOW)) { |
| 657 | IWL_DEBUG_RX("Bad CRC or FIFO: 0x%08X.\n", rx_end->status); |
| 658 | return; |
| 659 | } |
| 660 | |
Maxim Levitsky | 56decd3 | 2008-08-01 12:54:27 +0300 | [diff] [blame] | 661 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 662 | |
| 663 | /* Convert 3945's rssi indicator to dBm */ |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 664 | rx_status.signal = rx_stats->rssi - IWL_RSSI_OFFSET; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 665 | |
| 666 | /* Set default noise value to -127 */ |
| 667 | if (priv->last_rx_noise == 0) |
| 668 | priv->last_rx_noise = IWL_NOISE_MEAS_NOT_AVAILABLE; |
| 669 | |
| 670 | /* 3945 provides noise info for OFDM frames only. |
| 671 | * sig_avg and noise_diff are measured by the 3945's digital signal |
| 672 | * processor (DSP), and indicate linear levels of signal level and |
| 673 | * distortion/noise within the packet preamble after |
| 674 | * automatic gain control (AGC). sig_avg should stay fairly |
| 675 | * constant if the radio's AGC is working well. |
| 676 | * Since these values are linear (not dB or dBm), linear |
| 677 | * signal-to-noise ratio (SNR) is (sig_avg / noise_diff). |
| 678 | * Convert linear SNR to dB SNR, then subtract that from rssi dBm |
| 679 | * to obtain noise level in dBm. |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 680 | * Calculate rx_status.signal (quality indicator in %) based on SNR. */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 681 | if (rx_stats_noise_diff) { |
| 682 | snr = rx_stats_sig_avg / rx_stats_noise_diff; |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 683 | rx_status.noise = rx_status.signal - |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 684 | iwl3945_calc_db_from_ratio(snr); |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 685 | rx_status.qual = iwl3945_calc_sig_qual(rx_status.signal, |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 686 | rx_status.noise); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 687 | |
| 688 | /* If noise info not available, calculate signal quality indicator (%) |
| 689 | * using just the dBm signal level. */ |
| 690 | } else { |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 691 | rx_status.noise = priv->last_rx_noise; |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 692 | rx_status.qual = iwl3945_calc_sig_qual(rx_status.signal, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | |
| 696 | IWL_DEBUG_STATS("Rssi %d noise %d qual %d sig_avg %d noise_diff %d\n", |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 697 | rx_status.signal, rx_status.noise, rx_status.qual, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 698 | rx_stats_sig_avg, rx_stats_noise_diff); |
| 699 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 700 | header = (struct ieee80211_hdr *)IWL_RX_DATA(pkt); |
| 701 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 702 | network_packet = iwl3945_is_network_packet(priv, header); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 703 | |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 704 | IWL_DEBUG_STATS_LIMIT("[%c] %d RSSI:%d Signal:%u, Noise:%u, Rate:%u\n", |
| 705 | network_packet ? '*' : ' ', |
| 706 | le16_to_cpu(rx_hdr->channel), |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 707 | rx_status.signal, rx_status.signal, |
| 708 | rx_status.noise, rx_status.rate_idx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 709 | |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 710 | #ifdef CONFIG_IWL3945_DEBUG |
Samuel Ortiz | 40b8ec0 | 2008-12-19 10:37:08 +0800 | [diff] [blame] | 711 | if (priv->debug_level & (IWL_DL_RX)) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 712 | /* Set "1" to report good data frames in groups of 100 */ |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 713 | iwl3945_dbg_report_frame(priv, pkt, header, 1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 714 | #endif |
| 715 | |
| 716 | if (network_packet) { |
| 717 | priv->last_beacon_time = le32_to_cpu(rx_end->beacon_timestamp); |
| 718 | priv->last_tsf = le64_to_cpu(rx_end->timestamp); |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 719 | priv->last_rx_rssi = rx_status.signal; |
Tomas Winkler | 17744ff | 2008-03-02 01:52:00 +0200 | [diff] [blame] | 720 | priv->last_rx_noise = rx_status.noise; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 721 | } |
| 722 | |
Abhijeet Kolekar | 12e5e22 | 2008-09-09 10:54:52 +0800 | [diff] [blame] | 723 | iwl3945_pass_packet_to_mac80211(priv, rxb, &rx_status); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 724 | } |
| 725 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 726 | int iwl3945_hw_txq_attach_buf_to_tfd(struct iwl3945_priv *priv, void *ptr, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 727 | dma_addr_t addr, u16 len) |
| 728 | { |
| 729 | int count; |
| 730 | u32 pad; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 731 | struct iwl3945_tfd_frame *tfd = (struct iwl3945_tfd_frame *)ptr; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 732 | |
| 733 | count = TFD_CTL_COUNT_GET(le32_to_cpu(tfd->control_flags)); |
| 734 | pad = TFD_CTL_PAD_GET(le32_to_cpu(tfd->control_flags)); |
| 735 | |
| 736 | if ((count >= NUM_TFD_CHUNKS) || (count < 0)) { |
| 737 | IWL_ERROR("Error can not send more than %d chunks\n", |
| 738 | NUM_TFD_CHUNKS); |
| 739 | return -EINVAL; |
| 740 | } |
| 741 | |
| 742 | tfd->pa[count].addr = cpu_to_le32(addr); |
| 743 | tfd->pa[count].len = cpu_to_le32(len); |
| 744 | |
| 745 | count++; |
| 746 | |
| 747 | tfd->control_flags = cpu_to_le32(TFD_CTL_COUNT_SET(count) | |
| 748 | TFD_CTL_PAD_SET(pad)); |
| 749 | |
| 750 | return 0; |
| 751 | } |
| 752 | |
| 753 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 754 | * iwl3945_hw_txq_free_tfd - Free one TFD, those at index [txq->q.read_ptr] |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 755 | * |
| 756 | * Does NOT advance any indexes |
| 757 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 758 | int iwl3945_hw_txq_free_tfd(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 759 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 760 | struct iwl3945_tfd_frame *bd_tmp = (struct iwl3945_tfd_frame *)&txq->bd[0]; |
| 761 | struct iwl3945_tfd_frame *bd = &bd_tmp[txq->q.read_ptr]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 762 | struct pci_dev *dev = priv->pci_dev; |
| 763 | int i; |
| 764 | int counter; |
| 765 | |
| 766 | /* classify bd */ |
| 767 | if (txq->q.id == IWL_CMD_QUEUE_NUM) |
| 768 | /* nothing to cleanup after for host commands */ |
| 769 | return 0; |
| 770 | |
| 771 | /* sanity check */ |
| 772 | counter = TFD_CTL_COUNT_GET(le32_to_cpu(bd->control_flags)); |
| 773 | if (counter > NUM_TFD_CHUNKS) { |
| 774 | IWL_ERROR("Too many chunks: %i\n", counter); |
| 775 | /* @todo issue fatal error, it is quite serious situation */ |
| 776 | return 0; |
| 777 | } |
| 778 | |
| 779 | /* unmap chunks if any */ |
| 780 | |
| 781 | for (i = 1; i < counter; i++) { |
| 782 | pci_unmap_single(dev, le32_to_cpu(bd->pa[i].addr), |
| 783 | le32_to_cpu(bd->pa[i].len), PCI_DMA_TODEVICE); |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 784 | if (txq->txb[txq->q.read_ptr].skb[0]) { |
| 785 | struct sk_buff *skb = txq->txb[txq->q.read_ptr].skb[0]; |
| 786 | if (txq->txb[txq->q.read_ptr].skb[0]) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 787 | /* Can be called from interrupt context */ |
| 788 | dev_kfree_skb_any(skb); |
Tomas Winkler | fc4b685 | 2007-10-25 17:15:24 +0800 | [diff] [blame] | 789 | txq->txb[txq->q.read_ptr].skb[0] = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 790 | } |
| 791 | } |
| 792 | } |
| 793 | return 0; |
| 794 | } |
| 795 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 796 | u8 iwl3945_hw_find_station(struct iwl3945_priv *priv, const u8 *addr) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 797 | { |
Samuel Ortiz | c93007e | 2008-12-02 12:13:59 -0800 | [diff] [blame] | 798 | int i, start = IWL_AP_ID; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 799 | int ret = IWL_INVALID_STATION; |
| 800 | unsigned long flags; |
| 801 | |
Samuel Ortiz | c93007e | 2008-12-02 12:13:59 -0800 | [diff] [blame] | 802 | if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) || |
| 803 | (priv->iw_mode == NL80211_IFTYPE_AP)) |
| 804 | start = IWL_STA_ID; |
| 805 | |
| 806 | if (is_broadcast_ether_addr(addr)) |
| 807 | return priv->hw_setting.bcast_sta_id; |
| 808 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 809 | spin_lock_irqsave(&priv->sta_lock, flags); |
Samuel Ortiz | c93007e | 2008-12-02 12:13:59 -0800 | [diff] [blame] | 810 | for (i = start; i < priv->hw_setting.max_stations; i++) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 811 | if ((priv->stations[i].used) && |
| 812 | (!compare_ether_addr |
| 813 | (priv->stations[i].sta.sta.addr, addr))) { |
| 814 | ret = i; |
| 815 | goto out; |
| 816 | } |
| 817 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 818 | IWL_DEBUG_INFO("can not find STA %pM (total %d)\n", |
| 819 | addr, priv->num_stations); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 820 | out: |
| 821 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 822 | return ret; |
| 823 | } |
| 824 | |
| 825 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 826 | * iwl3945_hw_build_tx_cmd_rate - Add rate portion to TX_CMD: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 827 | * |
| 828 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 829 | void iwl3945_hw_build_tx_cmd_rate(struct iwl3945_priv *priv, |
| 830 | struct iwl3945_cmd *cmd, |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 831 | struct ieee80211_tx_info *info, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 832 | struct ieee80211_hdr *hdr, int sta_id, int tx_id) |
| 833 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 834 | u16 hw_value = ieee80211_get_tx_rate(priv->hw, info)->hw_value; |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 835 | u16 rate_index = min(hw_value & 0xffff, IWL_RATE_COUNT - 1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 836 | u16 rate_mask; |
| 837 | int rate; |
| 838 | u8 rts_retry_limit; |
| 839 | u8 data_retry_limit; |
| 840 | __le32 tx_flags; |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 841 | __le16 fc = hdr->frame_control; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 842 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 843 | rate = iwl3945_rates[rate_index].plcp; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 844 | tx_flags = cmd->cmd.tx.tx_flags; |
| 845 | |
| 846 | /* We need to figure out how to get the sta->supp_rates while |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 847 | * in this running context */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 848 | rate_mask = IWL_RATES_MASK; |
| 849 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 850 | if (tx_id >= IWL_CMD_QUEUE_NUM) |
| 851 | rts_retry_limit = 3; |
| 852 | else |
| 853 | rts_retry_limit = 7; |
| 854 | |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 855 | if (ieee80211_is_probe_resp(fc)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 856 | data_retry_limit = 3; |
| 857 | if (data_retry_limit < rts_retry_limit) |
| 858 | rts_retry_limit = data_retry_limit; |
| 859 | } else |
| 860 | data_retry_limit = IWL_DEFAULT_TX_RETRY; |
| 861 | |
| 862 | if (priv->data_retry_limit != -1) |
| 863 | data_retry_limit = priv->data_retry_limit; |
| 864 | |
Harvey Harrison | fd7c8a4 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 865 | if (ieee80211_is_mgmt(fc)) { |
| 866 | switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) { |
| 867 | case cpu_to_le16(IEEE80211_STYPE_AUTH): |
| 868 | case cpu_to_le16(IEEE80211_STYPE_DEAUTH): |
| 869 | case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ): |
| 870 | case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ): |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 871 | if (tx_flags & TX_CMD_FLG_RTS_MSK) { |
| 872 | tx_flags &= ~TX_CMD_FLG_RTS_MSK; |
| 873 | tx_flags |= TX_CMD_FLG_CTS_MSK; |
| 874 | } |
| 875 | break; |
| 876 | default: |
| 877 | break; |
| 878 | } |
| 879 | } |
| 880 | |
| 881 | cmd->cmd.tx.rts_retry_limit = rts_retry_limit; |
| 882 | cmd->cmd.tx.data_retry_limit = data_retry_limit; |
| 883 | cmd->cmd.tx.rate = rate; |
| 884 | cmd->cmd.tx.tx_flags = tx_flags; |
| 885 | |
| 886 | /* OFDM */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 887 | cmd->cmd.tx.supp_rates[0] = |
| 888 | ((rate_mask & IWL_OFDM_RATES_MASK) >> IWL_FIRST_OFDM_RATE) & 0xFF; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 889 | |
| 890 | /* CCK */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 891 | cmd->cmd.tx.supp_rates[1] = (rate_mask & 0xF); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 892 | |
| 893 | IWL_DEBUG_RATE("Tx sta id: %d, rate: %d (plcp), flags: 0x%4X " |
| 894 | "cck/ofdm mask: 0x%x/0x%x\n", sta_id, |
| 895 | cmd->cmd.tx.rate, le32_to_cpu(cmd->cmd.tx.tx_flags), |
| 896 | cmd->cmd.tx.supp_rates[1], cmd->cmd.tx.supp_rates[0]); |
| 897 | } |
| 898 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 899 | u8 iwl3945_sync_sta(struct iwl3945_priv *priv, int sta_id, u16 tx_rate, u8 flags) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 900 | { |
| 901 | unsigned long flags_spin; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 902 | struct iwl3945_station_entry *station; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 903 | |
| 904 | if (sta_id == IWL_INVALID_STATION) |
| 905 | return IWL_INVALID_STATION; |
| 906 | |
| 907 | spin_lock_irqsave(&priv->sta_lock, flags_spin); |
| 908 | station = &priv->stations[sta_id]; |
| 909 | |
| 910 | station->sta.sta.modify_mask = STA_MODIFY_TX_RATE_MSK; |
| 911 | station->sta.rate_n_flags = cpu_to_le16(tx_rate); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 912 | station->sta.mode = STA_CONTROL_MODIFY_MSK; |
| 913 | |
| 914 | spin_unlock_irqrestore(&priv->sta_lock, flags_spin); |
| 915 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 916 | iwl3945_send_add_station(priv, &station->sta, flags); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 917 | IWL_DEBUG_RATE("SCALE sync station %d to rate %d\n", |
| 918 | sta_id, tx_rate); |
| 919 | return sta_id; |
| 920 | } |
| 921 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 922 | static int iwl3945_nic_set_pwr_src(struct iwl3945_priv *priv, int pwr_max) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 923 | { |
| 924 | int rc; |
| 925 | unsigned long flags; |
| 926 | |
| 927 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 928 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 929 | if (rc) { |
| 930 | spin_unlock_irqrestore(&priv->lock, flags); |
| 931 | return rc; |
| 932 | } |
| 933 | |
| 934 | if (!pwr_max) { |
| 935 | u32 val; |
| 936 | |
| 937 | rc = pci_read_config_dword(priv->pci_dev, |
| 938 | PCI_POWER_SOURCE, &val); |
| 939 | if (val & PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 940 | iwl3945_set_bits_mask_prph(priv, APMG_PS_CTRL_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 941 | APMG_PS_CTRL_VAL_PWR_SRC_VAUX, |
| 942 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 943 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 944 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 945 | iwl3945_poll_bit(priv, CSR_GPIO_IN, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 946 | CSR_GPIO_IN_VAL_VAUX_PWR_SRC, |
| 947 | CSR_GPIO_IN_BIT_AUX_POWER, 5000); |
| 948 | } else |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 949 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 950 | } else { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 951 | iwl3945_set_bits_mask_prph(priv, APMG_PS_CTRL_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 952 | APMG_PS_CTRL_VAL_PWR_SRC_VMAIN, |
| 953 | ~APMG_PS_CTRL_MSK_PWR_SRC); |
| 954 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 955 | iwl3945_release_nic_access(priv); |
| 956 | iwl3945_poll_bit(priv, CSR_GPIO_IN, CSR_GPIO_IN_VAL_VMAIN_PWR_SRC, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 957 | CSR_GPIO_IN_BIT_AUX_POWER, 5000); /* uS */ |
| 958 | } |
| 959 | spin_unlock_irqrestore(&priv->lock, flags); |
| 960 | |
| 961 | return rc; |
| 962 | } |
| 963 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 964 | static int iwl3945_rx_init(struct iwl3945_priv *priv, struct iwl3945_rx_queue *rxq) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 965 | { |
| 966 | int rc; |
| 967 | unsigned long flags; |
| 968 | |
| 969 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 970 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 971 | if (rc) { |
| 972 | spin_unlock_irqrestore(&priv->lock, flags); |
| 973 | return rc; |
| 974 | } |
| 975 | |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 976 | iwl3945_write_direct32(priv, FH39_RCSR_RBD_BASE(0), rxq->dma_addr); |
| 977 | iwl3945_write_direct32(priv, FH39_RCSR_RPTR_ADDR(0), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 978 | priv->hw_setting.shared_phys + |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 979 | offsetof(struct iwl3945_shared, rx_read_ptr[0])); |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 980 | iwl3945_write_direct32(priv, FH39_RCSR_WPTR(0), 0); |
| 981 | iwl3945_write_direct32(priv, FH39_RCSR_CONFIG(0), |
| 982 | FH39_RCSR_RX_CONFIG_REG_VAL_DMA_CHNL_EN_ENABLE | |
| 983 | FH39_RCSR_RX_CONFIG_REG_VAL_RDRBD_EN_ENABLE | |
| 984 | FH39_RCSR_RX_CONFIG_REG_BIT_WR_STTS_EN | |
| 985 | FH39_RCSR_RX_CONFIG_REG_VAL_MAX_FRAG_SIZE_128 | |
| 986 | (RX_QUEUE_SIZE_LOG << FH39_RCSR_RX_CONFIG_REG_POS_RBDC_SIZE) | |
| 987 | FH39_RCSR_RX_CONFIG_REG_VAL_IRQ_DEST_INT_HOST | |
| 988 | (1 << FH39_RCSR_RX_CONFIG_REG_POS_IRQ_RBTH) | |
| 989 | FH39_RCSR_RX_CONFIG_REG_VAL_MSG_MODE_FH); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 990 | |
| 991 | /* fake read to flush all prev I/O */ |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 992 | iwl3945_read_direct32(priv, FH39_RSSR_CTRL); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 993 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 994 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 995 | spin_unlock_irqrestore(&priv->lock, flags); |
| 996 | |
| 997 | return 0; |
| 998 | } |
| 999 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1000 | static int iwl3945_tx_reset(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1001 | { |
| 1002 | int rc; |
| 1003 | unsigned long flags; |
| 1004 | |
| 1005 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1006 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1007 | if (rc) { |
| 1008 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1009 | return rc; |
| 1010 | } |
| 1011 | |
| 1012 | /* bypass mode */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1013 | iwl3945_write_prph(priv, ALM_SCD_MODE_REG, 0x2); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1014 | |
| 1015 | /* RA 0 is active */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1016 | iwl3945_write_prph(priv, ALM_SCD_ARASTAT_REG, 0x01); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1017 | |
| 1018 | /* all 6 fifo are active */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1019 | iwl3945_write_prph(priv, ALM_SCD_TXFACT_REG, 0x3f); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1020 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1021 | iwl3945_write_prph(priv, ALM_SCD_SBYP_MODE_1_REG, 0x010000); |
| 1022 | iwl3945_write_prph(priv, ALM_SCD_SBYP_MODE_2_REG, 0x030002); |
| 1023 | iwl3945_write_prph(priv, ALM_SCD_TXF4MF_REG, 0x000004); |
| 1024 | iwl3945_write_prph(priv, ALM_SCD_TXF5MF_REG, 0x000005); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1025 | |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 1026 | iwl3945_write_direct32(priv, FH39_TSSR_CBB_BASE, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1027 | priv->hw_setting.shared_phys); |
| 1028 | |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 1029 | iwl3945_write_direct32(priv, FH39_TSSR_MSG_CONFIG, |
| 1030 | FH39_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TXPD_ON | |
| 1031 | FH39_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_TXPD_ON | |
| 1032 | FH39_TSSR_TX_MSG_CONFIG_REG_VAL_MAX_FRAG_SIZE_128B | |
| 1033 | FH39_TSSR_TX_MSG_CONFIG_REG_VAL_SNOOP_RD_TFD_ON | |
| 1034 | FH39_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RD_CBB_ON | |
| 1035 | FH39_TSSR_TX_MSG_CONFIG_REG_VAL_ORDER_RSP_WAIT_TH | |
| 1036 | FH39_TSSR_TX_MSG_CONFIG_REG_VAL_RSP_WAIT_TH); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1037 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1038 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1039 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1040 | |
| 1041 | return 0; |
| 1042 | } |
| 1043 | |
| 1044 | /** |
| 1045 | * iwl3945_txq_ctx_reset - Reset TX queue context |
| 1046 | * |
| 1047 | * Destroys all DMA structures and initialize them again |
| 1048 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1049 | static int iwl3945_txq_ctx_reset(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1050 | { |
| 1051 | int rc; |
| 1052 | int txq_id, slots_num; |
| 1053 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1054 | iwl3945_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1055 | |
| 1056 | /* Tx CMD queue */ |
| 1057 | rc = iwl3945_tx_reset(priv); |
| 1058 | if (rc) |
| 1059 | goto error; |
| 1060 | |
| 1061 | /* Tx queue(s) */ |
| 1062 | for (txq_id = 0; txq_id < TFD_QUEUE_MAX; txq_id++) { |
| 1063 | slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ? |
| 1064 | TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1065 | rc = iwl3945_tx_queue_init(priv, &priv->txq[txq_id], slots_num, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1066 | txq_id); |
| 1067 | if (rc) { |
| 1068 | IWL_ERROR("Tx %d queue init failed\n", txq_id); |
| 1069 | goto error; |
| 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | return rc; |
| 1074 | |
| 1075 | error: |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1076 | iwl3945_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1077 | return rc; |
| 1078 | } |
| 1079 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1080 | int iwl3945_hw_nic_init(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1081 | { |
| 1082 | u8 rev_id; |
| 1083 | int rc; |
| 1084 | unsigned long flags; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1085 | struct iwl3945_rx_queue *rxq = &priv->rxq; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1086 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1087 | iwl3945_power_init_handle(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1088 | |
| 1089 | spin_lock_irqsave(&priv->lock, flags); |
Tomas Winkler | a693f18 | 2008-04-17 16:03:38 -0700 | [diff] [blame] | 1090 | iwl3945_set_bit(priv, CSR_ANA_PLL_CFG, CSR39_ANA_PLL_CFG_VAL); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1091 | iwl3945_set_bit(priv, CSR_GIO_CHICKEN_BITS, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1092 | CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX); |
| 1093 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1094 | iwl3945_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE); |
Zhu, Yi | 73d7b5a | 2008-12-05 07:58:40 -0800 | [diff] [blame] | 1095 | rc = iwl3945_poll_direct_bit(priv, CSR_GP_CNTRL, |
| 1096 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1097 | if (rc < 0) { |
| 1098 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1099 | IWL_DEBUG_INFO("Failed to init the card\n"); |
| 1100 | return rc; |
| 1101 | } |
| 1102 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1103 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1104 | if (rc) { |
| 1105 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1106 | return rc; |
| 1107 | } |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1108 | iwl3945_write_prph(priv, APMG_CLK_EN_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1109 | APMG_CLK_VAL_DMA_CLK_RQT | |
| 1110 | APMG_CLK_VAL_BSM_CLK_RQT); |
| 1111 | udelay(20); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1112 | iwl3945_set_bits_prph(priv, APMG_PCIDEV_STT_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1113 | APMG_PCIDEV_STT_VAL_L1_ACT_DIS); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1114 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1115 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1116 | |
| 1117 | /* Determine HW type */ |
| 1118 | rc = pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &rev_id); |
| 1119 | if (rc) |
| 1120 | return rc; |
| 1121 | IWL_DEBUG_INFO("HW Revision ID = 0x%X\n", rev_id); |
| 1122 | |
| 1123 | iwl3945_nic_set_pwr_src(priv, 1); |
| 1124 | spin_lock_irqsave(&priv->lock, flags); |
| 1125 | |
| 1126 | if (rev_id & PCI_CFG_REV_ID_BIT_RTP) |
| 1127 | IWL_DEBUG_INFO("RTP type \n"); |
| 1128 | else if (rev_id & PCI_CFG_REV_ID_BIT_BASIC_SKU) { |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1129 | IWL_DEBUG_INFO("3945 RADIO-MB type\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1130 | iwl3945_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1131 | CSR39_HW_IF_CONFIG_REG_BIT_3945_MB); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1132 | } else { |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1133 | IWL_DEBUG_INFO("3945 RADIO-MM type\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1134 | iwl3945_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1135 | CSR39_HW_IF_CONFIG_REG_BIT_3945_MM); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1136 | } |
| 1137 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1138 | if (EEPROM_SKU_CAP_OP_MODE_MRC == priv->eeprom.sku_cap) { |
| 1139 | IWL_DEBUG_INFO("SKU OP mode is mrc\n"); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1140 | iwl3945_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1141 | CSR39_HW_IF_CONFIG_REG_BIT_SKU_MRC); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1142 | } else |
| 1143 | IWL_DEBUG_INFO("SKU OP mode is basic\n"); |
| 1144 | |
| 1145 | if ((priv->eeprom.board_revision & 0xF0) == 0xD0) { |
| 1146 | IWL_DEBUG_INFO("3945ABG revision is 0x%X\n", |
| 1147 | priv->eeprom.board_revision); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1148 | iwl3945_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1149 | CSR39_HW_IF_CONFIG_REG_BIT_BOARD_TYPE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1150 | } else { |
| 1151 | IWL_DEBUG_INFO("3945ABG revision is 0x%X\n", |
| 1152 | priv->eeprom.board_revision); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1153 | iwl3945_clear_bit(priv, CSR_HW_IF_CONFIG_REG, |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1154 | CSR39_HW_IF_CONFIG_REG_BIT_BOARD_TYPE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1155 | } |
| 1156 | |
| 1157 | if (priv->eeprom.almgor_m_version <= 1) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1158 | iwl3945_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1159 | CSR39_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_A); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1160 | IWL_DEBUG_INFO("Card M type A version is 0x%X\n", |
| 1161 | priv->eeprom.almgor_m_version); |
| 1162 | } else { |
| 1163 | IWL_DEBUG_INFO("Card M type B version is 0x%X\n", |
| 1164 | priv->eeprom.almgor_m_version); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1165 | iwl3945_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
Tomas Winkler | 6f83eaa | 2008-03-04 18:09:28 -0800 | [diff] [blame] | 1166 | CSR39_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_B); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1167 | } |
| 1168 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1169 | |
| 1170 | if (priv->eeprom.sku_cap & EEPROM_SKU_CAP_SW_RF_KILL_ENABLE) |
| 1171 | IWL_DEBUG_RF_KILL("SW RF KILL supported in EEPROM.\n"); |
| 1172 | |
| 1173 | if (priv->eeprom.sku_cap & EEPROM_SKU_CAP_HW_RF_KILL_ENABLE) |
| 1174 | IWL_DEBUG_RF_KILL("HW RF KILL supported in EEPROM.\n"); |
| 1175 | |
| 1176 | /* Allocate the RX queue, or reset if it is already allocated */ |
| 1177 | if (!rxq->bd) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1178 | rc = iwl3945_rx_queue_alloc(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1179 | if (rc) { |
| 1180 | IWL_ERROR("Unable to initialize Rx queue\n"); |
| 1181 | return -ENOMEM; |
| 1182 | } |
| 1183 | } else |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1184 | iwl3945_rx_queue_reset(priv, rxq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1185 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1186 | iwl3945_rx_replenish(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1187 | |
| 1188 | iwl3945_rx_init(priv, rxq); |
| 1189 | |
| 1190 | spin_lock_irqsave(&priv->lock, flags); |
| 1191 | |
| 1192 | /* Look at using this instead: |
| 1193 | rxq->need_update = 1; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1194 | iwl3945_rx_queue_update_write_ptr(priv, rxq); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1195 | */ |
| 1196 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1197 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1198 | if (rc) { |
| 1199 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1200 | return rc; |
| 1201 | } |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 1202 | iwl3945_write_direct32(priv, FH39_RCSR_WPTR(0), rxq->write & ~7); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1203 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1204 | |
| 1205 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1206 | |
| 1207 | rc = iwl3945_txq_ctx_reset(priv); |
| 1208 | if (rc) |
| 1209 | return rc; |
| 1210 | |
| 1211 | set_bit(STATUS_INIT, &priv->status); |
| 1212 | |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1217 | * iwl3945_hw_txq_ctx_free - Free TXQ Context |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1218 | * |
| 1219 | * Destroy all TX DMA queues and structures |
| 1220 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1221 | void iwl3945_hw_txq_ctx_free(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1222 | { |
| 1223 | int txq_id; |
| 1224 | |
| 1225 | /* Tx queues */ |
| 1226 | for (txq_id = 0; txq_id < TFD_QUEUE_MAX; txq_id++) |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1227 | iwl3945_tx_queue_free(priv, &priv->txq[txq_id]); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1228 | } |
| 1229 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1230 | void iwl3945_hw_txq_ctx_stop(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1231 | { |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 1232 | int txq_id; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1233 | unsigned long flags; |
| 1234 | |
| 1235 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1236 | if (iwl3945_grab_nic_access(priv)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1237 | spin_unlock_irqrestore(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1238 | iwl3945_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1239 | return; |
| 1240 | } |
| 1241 | |
| 1242 | /* stop SCD */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1243 | iwl3945_write_prph(priv, ALM_SCD_MODE_REG, 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1244 | |
| 1245 | /* reset TFD queues */ |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 1246 | for (txq_id = 0; txq_id < TFD_QUEUE_MAX; txq_id++) { |
| 1247 | iwl3945_write_direct32(priv, FH39_TCSR_CONFIG(txq_id), 0x0); |
| 1248 | iwl3945_poll_direct_bit(priv, FH39_TSSR_TX_STATUS, |
| 1249 | FH39_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(txq_id), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1250 | 1000); |
| 1251 | } |
| 1252 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1253 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1254 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1255 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1256 | iwl3945_hw_txq_ctx_free(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1257 | } |
| 1258 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1259 | int iwl3945_hw_nic_stop_master(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1260 | { |
| 1261 | int rc = 0; |
| 1262 | u32 reg_val; |
| 1263 | unsigned long flags; |
| 1264 | |
| 1265 | spin_lock_irqsave(&priv->lock, flags); |
| 1266 | |
| 1267 | /* set stop master bit */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1268 | iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1269 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1270 | reg_val = iwl3945_read32(priv, CSR_GP_CNTRL); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1271 | |
| 1272 | if (CSR_GP_CNTRL_REG_FLAG_MAC_POWER_SAVE == |
| 1273 | (reg_val & CSR_GP_CNTRL_REG_MSK_POWER_SAVE_TYPE)) |
| 1274 | IWL_DEBUG_INFO("Card in power save, master is already " |
| 1275 | "stopped\n"); |
| 1276 | else { |
Zhu, Yi | 73d7b5a | 2008-12-05 07:58:40 -0800 | [diff] [blame] | 1277 | rc = iwl3945_poll_direct_bit(priv, CSR_RESET, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1278 | CSR_RESET_REG_FLAG_MASTER_DISABLED, 100); |
| 1279 | if (rc < 0) { |
| 1280 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1281 | return rc; |
| 1282 | } |
| 1283 | } |
| 1284 | |
| 1285 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1286 | IWL_DEBUG_INFO("stop master\n"); |
| 1287 | |
| 1288 | return rc; |
| 1289 | } |
| 1290 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1291 | int iwl3945_hw_nic_reset(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1292 | { |
| 1293 | int rc; |
| 1294 | unsigned long flags; |
| 1295 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1296 | iwl3945_hw_nic_stop_master(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1297 | |
| 1298 | spin_lock_irqsave(&priv->lock, flags); |
| 1299 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1300 | iwl3945_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1301 | |
Zhu, Yi | 73d7b5a | 2008-12-05 07:58:40 -0800 | [diff] [blame] | 1302 | iwl3945_poll_direct_bit(priv, CSR_GP_CNTRL, |
| 1303 | CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1304 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1305 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1306 | if (!rc) { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1307 | iwl3945_write_prph(priv, APMG_CLK_CTRL_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1308 | APMG_CLK_VAL_BSM_CLK_RQT); |
| 1309 | |
| 1310 | udelay(10); |
| 1311 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1312 | iwl3945_set_bit(priv, CSR_GP_CNTRL, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1313 | CSR_GP_CNTRL_REG_FLAG_INIT_DONE); |
| 1314 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1315 | iwl3945_write_prph(priv, APMG_RTC_INT_MSK_REG, 0x0); |
| 1316 | iwl3945_write_prph(priv, APMG_RTC_INT_STT_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1317 | 0xFFFFFFFF); |
| 1318 | |
| 1319 | /* enable DMA */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1320 | iwl3945_write_prph(priv, APMG_CLK_EN_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1321 | APMG_CLK_VAL_DMA_CLK_RQT | |
| 1322 | APMG_CLK_VAL_BSM_CLK_RQT); |
| 1323 | udelay(10); |
| 1324 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1325 | iwl3945_set_bits_prph(priv, APMG_PS_CTRL_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1326 | APMG_PS_CTRL_VAL_RESET_REQ); |
| 1327 | udelay(5); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1328 | iwl3945_clear_bits_prph(priv, APMG_PS_CTRL_REG, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1329 | APMG_PS_CTRL_VAL_RESET_REQ); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1330 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1331 | } |
| 1332 | |
| 1333 | /* Clear the 'host command active' bit... */ |
| 1334 | clear_bit(STATUS_HCMD_ACTIVE, &priv->status); |
| 1335 | |
| 1336 | wake_up_interruptible(&priv->wait_command_queue); |
| 1337 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1338 | |
| 1339 | return rc; |
| 1340 | } |
| 1341 | |
| 1342 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1343 | * iwl3945_hw_reg_adjust_power_by_temp |
Ian Schram | bbc5807 | 2007-10-25 17:15:28 +0800 | [diff] [blame] | 1344 | * return index delta into power gain settings table |
| 1345 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1346 | static int iwl3945_hw_reg_adjust_power_by_temp(int new_reading, int old_reading) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1347 | { |
| 1348 | return (new_reading - old_reading) * (-11) / 100; |
| 1349 | } |
| 1350 | |
| 1351 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1352 | * iwl3945_hw_reg_temp_out_of_range - Keep temperature in sane range |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1353 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1354 | static inline int iwl3945_hw_reg_temp_out_of_range(int temperature) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1355 | { |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 1356 | return ((temperature < -260) || (temperature > 25)) ? 1 : 0; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1357 | } |
| 1358 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1359 | int iwl3945_hw_get_temperature(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1360 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1361 | return iwl3945_read32(priv, CSR_UCODE_DRV_GP2); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1365 | * iwl3945_hw_reg_txpower_get_temperature |
Ian Schram | bbc5807 | 2007-10-25 17:15:28 +0800 | [diff] [blame] | 1366 | * get the current temperature by reading from NIC |
| 1367 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1368 | static int iwl3945_hw_reg_txpower_get_temperature(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1369 | { |
| 1370 | int temperature; |
| 1371 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1372 | temperature = iwl3945_hw_get_temperature(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1373 | |
| 1374 | /* driver's okay range is -260 to +25. |
| 1375 | * human readable okay range is 0 to +285 */ |
| 1376 | IWL_DEBUG_INFO("Temperature: %d\n", temperature + IWL_TEMP_CONVERT); |
| 1377 | |
| 1378 | /* handle insane temp reading */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1379 | if (iwl3945_hw_reg_temp_out_of_range(temperature)) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1380 | IWL_ERROR("Error bad temperature value %d\n", temperature); |
| 1381 | |
| 1382 | /* if really really hot(?), |
| 1383 | * substitute the 3rd band/group's temp measured at factory */ |
| 1384 | if (priv->last_temperature > 100) |
| 1385 | temperature = priv->eeprom.groups[2].temperature; |
| 1386 | else /* else use most recent "sane" value from driver */ |
| 1387 | temperature = priv->last_temperature; |
| 1388 | } |
| 1389 | |
| 1390 | return temperature; /* raw, not "human readable" */ |
| 1391 | } |
| 1392 | |
| 1393 | /* Adjust Txpower only if temperature variance is greater than threshold. |
| 1394 | * |
| 1395 | * Both are lower than older versions' 9 degrees */ |
| 1396 | #define IWL_TEMPERATURE_LIMIT_TIMER 6 |
| 1397 | |
| 1398 | /** |
| 1399 | * is_temp_calib_needed - determines if new calibration is needed |
| 1400 | * |
| 1401 | * records new temperature in tx_mgr->temperature. |
| 1402 | * replaces tx_mgr->last_temperature *only* if calib needed |
| 1403 | * (assumes caller will actually do the calibration!). */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1404 | static int is_temp_calib_needed(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1405 | { |
| 1406 | int temp_diff; |
| 1407 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1408 | priv->temperature = iwl3945_hw_reg_txpower_get_temperature(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1409 | temp_diff = priv->temperature - priv->last_temperature; |
| 1410 | |
| 1411 | /* get absolute value */ |
| 1412 | if (temp_diff < 0) { |
| 1413 | IWL_DEBUG_POWER("Getting cooler, delta %d,\n", temp_diff); |
| 1414 | temp_diff = -temp_diff; |
| 1415 | } else if (temp_diff == 0) |
| 1416 | IWL_DEBUG_POWER("Same temp,\n"); |
| 1417 | else |
| 1418 | IWL_DEBUG_POWER("Getting warmer, delta %d,\n", temp_diff); |
| 1419 | |
| 1420 | /* if we don't need calibration, *don't* update last_temperature */ |
| 1421 | if (temp_diff < IWL_TEMPERATURE_LIMIT_TIMER) { |
| 1422 | IWL_DEBUG_POWER("Timed thermal calib not needed\n"); |
| 1423 | return 0; |
| 1424 | } |
| 1425 | |
| 1426 | IWL_DEBUG_POWER("Timed thermal calib needed\n"); |
| 1427 | |
| 1428 | /* assume that caller will actually do calib ... |
| 1429 | * update the "last temperature" value */ |
| 1430 | priv->last_temperature = priv->temperature; |
| 1431 | return 1; |
| 1432 | } |
| 1433 | |
| 1434 | #define IWL_MAX_GAIN_ENTRIES 78 |
| 1435 | #define IWL_CCK_FROM_OFDM_POWER_DIFF -5 |
| 1436 | #define IWL_CCK_FROM_OFDM_INDEX_DIFF (10) |
| 1437 | |
| 1438 | /* radio and DSP power table, each step is 1/2 dB. |
| 1439 | * 1st number is for RF analog gain, 2nd number is for DSP pre-DAC gain. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1440 | static struct iwl3945_tx_power power_gain_table[2][IWL_MAX_GAIN_ENTRIES] = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1441 | { |
| 1442 | {251, 127}, /* 2.4 GHz, highest power */ |
| 1443 | {251, 127}, |
| 1444 | {251, 127}, |
| 1445 | {251, 127}, |
| 1446 | {251, 125}, |
| 1447 | {251, 110}, |
| 1448 | {251, 105}, |
| 1449 | {251, 98}, |
| 1450 | {187, 125}, |
| 1451 | {187, 115}, |
| 1452 | {187, 108}, |
| 1453 | {187, 99}, |
| 1454 | {243, 119}, |
| 1455 | {243, 111}, |
| 1456 | {243, 105}, |
| 1457 | {243, 97}, |
| 1458 | {243, 92}, |
| 1459 | {211, 106}, |
| 1460 | {211, 100}, |
| 1461 | {179, 120}, |
| 1462 | {179, 113}, |
| 1463 | {179, 107}, |
| 1464 | {147, 125}, |
| 1465 | {147, 119}, |
| 1466 | {147, 112}, |
| 1467 | {147, 106}, |
| 1468 | {147, 101}, |
| 1469 | {147, 97}, |
| 1470 | {147, 91}, |
| 1471 | {115, 107}, |
| 1472 | {235, 121}, |
| 1473 | {235, 115}, |
| 1474 | {235, 109}, |
| 1475 | {203, 127}, |
| 1476 | {203, 121}, |
| 1477 | {203, 115}, |
| 1478 | {203, 108}, |
| 1479 | {203, 102}, |
| 1480 | {203, 96}, |
| 1481 | {203, 92}, |
| 1482 | {171, 110}, |
| 1483 | {171, 104}, |
| 1484 | {171, 98}, |
| 1485 | {139, 116}, |
| 1486 | {227, 125}, |
| 1487 | {227, 119}, |
| 1488 | {227, 113}, |
| 1489 | {227, 107}, |
| 1490 | {227, 101}, |
| 1491 | {227, 96}, |
| 1492 | {195, 113}, |
| 1493 | {195, 106}, |
| 1494 | {195, 102}, |
| 1495 | {195, 95}, |
| 1496 | {163, 113}, |
| 1497 | {163, 106}, |
| 1498 | {163, 102}, |
| 1499 | {163, 95}, |
| 1500 | {131, 113}, |
| 1501 | {131, 106}, |
| 1502 | {131, 102}, |
| 1503 | {131, 95}, |
| 1504 | {99, 113}, |
| 1505 | {99, 106}, |
| 1506 | {99, 102}, |
| 1507 | {99, 95}, |
| 1508 | {67, 113}, |
| 1509 | {67, 106}, |
| 1510 | {67, 102}, |
| 1511 | {67, 95}, |
| 1512 | {35, 113}, |
| 1513 | {35, 106}, |
| 1514 | {35, 102}, |
| 1515 | {35, 95}, |
| 1516 | {3, 113}, |
| 1517 | {3, 106}, |
| 1518 | {3, 102}, |
| 1519 | {3, 95} }, /* 2.4 GHz, lowest power */ |
| 1520 | { |
| 1521 | {251, 127}, /* 5.x GHz, highest power */ |
| 1522 | {251, 120}, |
| 1523 | {251, 114}, |
| 1524 | {219, 119}, |
| 1525 | {219, 101}, |
| 1526 | {187, 113}, |
| 1527 | {187, 102}, |
| 1528 | {155, 114}, |
| 1529 | {155, 103}, |
| 1530 | {123, 117}, |
| 1531 | {123, 107}, |
| 1532 | {123, 99}, |
| 1533 | {123, 92}, |
| 1534 | {91, 108}, |
| 1535 | {59, 125}, |
| 1536 | {59, 118}, |
| 1537 | {59, 109}, |
| 1538 | {59, 102}, |
| 1539 | {59, 96}, |
| 1540 | {59, 90}, |
| 1541 | {27, 104}, |
| 1542 | {27, 98}, |
| 1543 | {27, 92}, |
| 1544 | {115, 118}, |
| 1545 | {115, 111}, |
| 1546 | {115, 104}, |
| 1547 | {83, 126}, |
| 1548 | {83, 121}, |
| 1549 | {83, 113}, |
| 1550 | {83, 105}, |
| 1551 | {83, 99}, |
| 1552 | {51, 118}, |
| 1553 | {51, 111}, |
| 1554 | {51, 104}, |
| 1555 | {51, 98}, |
| 1556 | {19, 116}, |
| 1557 | {19, 109}, |
| 1558 | {19, 102}, |
| 1559 | {19, 98}, |
| 1560 | {19, 93}, |
| 1561 | {171, 113}, |
| 1562 | {171, 107}, |
| 1563 | {171, 99}, |
| 1564 | {139, 120}, |
| 1565 | {139, 113}, |
| 1566 | {139, 107}, |
| 1567 | {139, 99}, |
| 1568 | {107, 120}, |
| 1569 | {107, 113}, |
| 1570 | {107, 107}, |
| 1571 | {107, 99}, |
| 1572 | {75, 120}, |
| 1573 | {75, 113}, |
| 1574 | {75, 107}, |
| 1575 | {75, 99}, |
| 1576 | {43, 120}, |
| 1577 | {43, 113}, |
| 1578 | {43, 107}, |
| 1579 | {43, 99}, |
| 1580 | {11, 120}, |
| 1581 | {11, 113}, |
| 1582 | {11, 107}, |
| 1583 | {11, 99}, |
| 1584 | {131, 107}, |
| 1585 | {131, 99}, |
| 1586 | {99, 120}, |
| 1587 | {99, 113}, |
| 1588 | {99, 107}, |
| 1589 | {99, 99}, |
| 1590 | {67, 120}, |
| 1591 | {67, 113}, |
| 1592 | {67, 107}, |
| 1593 | {67, 99}, |
| 1594 | {35, 120}, |
| 1595 | {35, 113}, |
| 1596 | {35, 107}, |
| 1597 | {35, 99}, |
| 1598 | {3, 120} } /* 5.x GHz, lowest power */ |
| 1599 | }; |
| 1600 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1601 | static inline u8 iwl3945_hw_reg_fix_power_index(int index) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1602 | { |
| 1603 | if (index < 0) |
| 1604 | return 0; |
| 1605 | if (index >= IWL_MAX_GAIN_ENTRIES) |
| 1606 | return IWL_MAX_GAIN_ENTRIES - 1; |
| 1607 | return (u8) index; |
| 1608 | } |
| 1609 | |
| 1610 | /* Kick off thermal recalibration check every 60 seconds */ |
| 1611 | #define REG_RECALIB_PERIOD (60) |
| 1612 | |
| 1613 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1614 | * iwl3945_hw_reg_set_scan_power - Set Tx power for scan probe requests |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1615 | * |
| 1616 | * Set (in our channel info database) the direct scan Tx power for 1 Mbit (CCK) |
| 1617 | * or 6 Mbit (OFDM) rates. |
| 1618 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1619 | static void iwl3945_hw_reg_set_scan_power(struct iwl3945_priv *priv, u32 scan_tbl_index, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1620 | s32 rate_index, const s8 *clip_pwrs, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1621 | struct iwl3945_channel_info *ch_info, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1622 | int band_index) |
| 1623 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1624 | struct iwl3945_scan_power_info *scan_power_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1625 | s8 power; |
| 1626 | u8 power_index; |
| 1627 | |
| 1628 | scan_power_info = &ch_info->scan_pwr_info[scan_tbl_index]; |
| 1629 | |
| 1630 | /* use this channel group's 6Mbit clipping/saturation pwr, |
| 1631 | * but cap at regulatory scan power restriction (set during init |
| 1632 | * based on eeprom channel data) for this channel. */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1633 | power = min(ch_info->scan_power, clip_pwrs[IWL_RATE_6M_INDEX_TABLE]); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1634 | |
| 1635 | /* further limit to user's max power preference. |
| 1636 | * FIXME: Other spectrum management power limitations do not |
| 1637 | * seem to apply?? */ |
| 1638 | power = min(power, priv->user_txpower_limit); |
| 1639 | scan_power_info->requested_power = power; |
| 1640 | |
| 1641 | /* find difference between new scan *power* and current "normal" |
| 1642 | * Tx *power* for 6Mb. Use this difference (x2) to adjust the |
| 1643 | * current "normal" temperature-compensated Tx power *index* for |
| 1644 | * this rate (1Mb or 6Mb) to yield new temp-compensated scan power |
| 1645 | * *index*. */ |
| 1646 | power_index = ch_info->power_info[rate_index].power_table_index |
| 1647 | - (power - ch_info->power_info |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1648 | [IWL_RATE_6M_INDEX_TABLE].requested_power) * 2; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1649 | |
| 1650 | /* store reference index that we use when adjusting *all* scan |
| 1651 | * powers. So we can accommodate user (all channel) or spectrum |
| 1652 | * management (single channel) power changes "between" temperature |
| 1653 | * feedback compensation procedures. |
| 1654 | * don't force fit this reference index into gain table; it may be a |
| 1655 | * negative number. This will help avoid errors when we're at |
| 1656 | * the lower bounds (highest gains, for warmest temperatures) |
| 1657 | * of the table. */ |
| 1658 | |
| 1659 | /* don't exceed table bounds for "real" setting */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1660 | power_index = iwl3945_hw_reg_fix_power_index(power_index); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1661 | |
| 1662 | scan_power_info->power_table_index = power_index; |
| 1663 | scan_power_info->tpc.tx_gain = |
| 1664 | power_gain_table[band_index][power_index].tx_gain; |
| 1665 | scan_power_info->tpc.dsp_atten = |
| 1666 | power_gain_table[band_index][power_index].dsp_atten; |
| 1667 | } |
| 1668 | |
| 1669 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1670 | * iwl3945_hw_reg_send_txpower - fill in Tx Power command with gain settings |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1671 | * |
| 1672 | * Configures power settings for all rates for the current channel, |
| 1673 | * using values from channel info struct, and send to NIC |
| 1674 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1675 | int iwl3945_hw_reg_send_txpower(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1676 | { |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1677 | int rate_idx, i; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1678 | const struct iwl3945_channel_info *ch_info = NULL; |
| 1679 | struct iwl3945_txpowertable_cmd txpower = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1680 | .channel = priv->active_rxon.channel, |
| 1681 | }; |
| 1682 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1683 | txpower.band = (priv->band == IEEE80211_BAND_5GHZ) ? 0 : 1; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1684 | ch_info = iwl3945_get_channel_info(priv, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1685 | priv->band, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1686 | le16_to_cpu(priv->active_rxon.channel)); |
| 1687 | if (!ch_info) { |
| 1688 | IWL_ERROR |
| 1689 | ("Failed to get channel info for channel %d [%d]\n", |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1690 | le16_to_cpu(priv->active_rxon.channel), priv->band); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1691 | return -EINVAL; |
| 1692 | } |
| 1693 | |
| 1694 | if (!is_channel_valid(ch_info)) { |
| 1695 | IWL_DEBUG_POWER("Not calling TX_PWR_TABLE_CMD on " |
| 1696 | "non-Tx channel.\n"); |
| 1697 | return 0; |
| 1698 | } |
| 1699 | |
| 1700 | /* fill cmd with power settings for all rates for current channel */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1701 | /* Fill OFDM rate */ |
| 1702 | for (rate_idx = IWL_FIRST_OFDM_RATE, i = 0; |
| 1703 | rate_idx <= IWL_LAST_OFDM_RATE; rate_idx++, i++) { |
| 1704 | |
| 1705 | txpower.power[i].tpc = ch_info->power_info[i].tpc; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1706 | txpower.power[i].rate = iwl3945_rates[rate_idx].plcp; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1707 | |
| 1708 | IWL_DEBUG_POWER("ch %d:%d rf %d dsp %3d rate code 0x%02x\n", |
| 1709 | le16_to_cpu(txpower.channel), |
| 1710 | txpower.band, |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1711 | txpower.power[i].tpc.tx_gain, |
| 1712 | txpower.power[i].tpc.dsp_atten, |
| 1713 | txpower.power[i].rate); |
| 1714 | } |
| 1715 | /* Fill CCK rates */ |
| 1716 | for (rate_idx = IWL_FIRST_CCK_RATE; |
| 1717 | rate_idx <= IWL_LAST_CCK_RATE; rate_idx++, i++) { |
| 1718 | txpower.power[i].tpc = ch_info->power_info[i].tpc; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1719 | txpower.power[i].rate = iwl3945_rates[rate_idx].plcp; |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1720 | |
| 1721 | IWL_DEBUG_POWER("ch %d:%d rf %d dsp %3d rate code 0x%02x\n", |
| 1722 | le16_to_cpu(txpower.channel), |
| 1723 | txpower.band, |
| 1724 | txpower.power[i].tpc.tx_gain, |
| 1725 | txpower.power[i].tpc.dsp_atten, |
| 1726 | txpower.power[i].rate); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1727 | } |
| 1728 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1729 | return iwl3945_send_cmd_pdu(priv, REPLY_TX_PWR_TABLE_CMD, |
| 1730 | sizeof(struct iwl3945_txpowertable_cmd), &txpower); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1731 | |
| 1732 | } |
| 1733 | |
| 1734 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1735 | * iwl3945_hw_reg_set_new_power - Configures power tables at new levels |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1736 | * @ch_info: Channel to update. Uses power_info.requested_power. |
| 1737 | * |
| 1738 | * Replace requested_power and base_power_index ch_info fields for |
| 1739 | * one channel. |
| 1740 | * |
| 1741 | * Called if user or spectrum management changes power preferences. |
| 1742 | * Takes into account h/w and modulation limitations (clip power). |
| 1743 | * |
| 1744 | * This does *not* send anything to NIC, just sets up ch_info for one channel. |
| 1745 | * |
| 1746 | * NOTE: reg_compensate_for_temperature_dif() *must* be run after this to |
| 1747 | * properly fill out the scan powers, and actual h/w gain settings, |
| 1748 | * and send changes to NIC |
| 1749 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1750 | static int iwl3945_hw_reg_set_new_power(struct iwl3945_priv *priv, |
| 1751 | struct iwl3945_channel_info *ch_info) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1752 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1753 | struct iwl3945_channel_power_info *power_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1754 | int power_changed = 0; |
| 1755 | int i; |
| 1756 | const s8 *clip_pwrs; |
| 1757 | int power; |
| 1758 | |
| 1759 | /* Get this chnlgrp's rate-to-max/clip-powers table */ |
| 1760 | clip_pwrs = priv->clip_groups[ch_info->group_index].clip_powers; |
| 1761 | |
| 1762 | /* Get this channel's rate-to-current-power settings table */ |
| 1763 | power_info = ch_info->power_info; |
| 1764 | |
| 1765 | /* update OFDM Txpower settings */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1766 | for (i = IWL_RATE_6M_INDEX_TABLE; i <= IWL_RATE_54M_INDEX_TABLE; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1767 | i++, ++power_info) { |
| 1768 | int delta_idx; |
| 1769 | |
| 1770 | /* limit new power to be no more than h/w capability */ |
| 1771 | power = min(ch_info->curr_txpow, clip_pwrs[i]); |
| 1772 | if (power == power_info->requested_power) |
| 1773 | continue; |
| 1774 | |
| 1775 | /* find difference between old and new requested powers, |
| 1776 | * update base (non-temp-compensated) power index */ |
| 1777 | delta_idx = (power - power_info->requested_power) * 2; |
| 1778 | power_info->base_power_index -= delta_idx; |
| 1779 | |
| 1780 | /* save new requested power value */ |
| 1781 | power_info->requested_power = power; |
| 1782 | |
| 1783 | power_changed = 1; |
| 1784 | } |
| 1785 | |
| 1786 | /* update CCK Txpower settings, based on OFDM 12M setting ... |
| 1787 | * ... all CCK power settings for a given channel are the *same*. */ |
| 1788 | if (power_changed) { |
| 1789 | power = |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1790 | ch_info->power_info[IWL_RATE_12M_INDEX_TABLE]. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1791 | requested_power + IWL_CCK_FROM_OFDM_POWER_DIFF; |
| 1792 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1793 | /* do all CCK rates' iwl3945_channel_power_info structures */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1794 | for (i = IWL_RATE_1M_INDEX_TABLE; i <= IWL_RATE_11M_INDEX_TABLE; i++) { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1795 | power_info->requested_power = power; |
| 1796 | power_info->base_power_index = |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1797 | ch_info->power_info[IWL_RATE_12M_INDEX_TABLE]. |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1798 | base_power_index + IWL_CCK_FROM_OFDM_INDEX_DIFF; |
| 1799 | ++power_info; |
| 1800 | } |
| 1801 | } |
| 1802 | |
| 1803 | return 0; |
| 1804 | } |
| 1805 | |
| 1806 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1807 | * iwl3945_hw_reg_get_ch_txpower_limit - returns new power limit for channel |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1808 | * |
| 1809 | * NOTE: Returned power limit may be less (but not more) than requested, |
| 1810 | * based strictly on regulatory (eeprom and spectrum mgt) limitations |
| 1811 | * (no consideration for h/w clipping limitations). |
| 1812 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1813 | static int iwl3945_hw_reg_get_ch_txpower_limit(struct iwl3945_channel_info *ch_info) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1814 | { |
| 1815 | s8 max_power; |
| 1816 | |
| 1817 | #if 0 |
| 1818 | /* if we're using TGd limits, use lower of TGd or EEPROM */ |
| 1819 | if (ch_info->tgd_data.max_power != 0) |
| 1820 | max_power = min(ch_info->tgd_data.max_power, |
| 1821 | ch_info->eeprom.max_power_avg); |
| 1822 | |
| 1823 | /* else just use EEPROM limits */ |
| 1824 | else |
| 1825 | #endif |
| 1826 | max_power = ch_info->eeprom.max_power_avg; |
| 1827 | |
| 1828 | return min(max_power, ch_info->max_power_avg); |
| 1829 | } |
| 1830 | |
| 1831 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1832 | * iwl3945_hw_reg_comp_txpower_temp - Compensate for temperature |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1833 | * |
| 1834 | * Compensate txpower settings of *all* channels for temperature. |
| 1835 | * This only accounts for the difference between current temperature |
| 1836 | * and the factory calibration temperatures, and bases the new settings |
| 1837 | * on the channel's base_power_index. |
| 1838 | * |
| 1839 | * If RxOn is "associated", this sends the new Txpower to NIC! |
| 1840 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1841 | static int iwl3945_hw_reg_comp_txpower_temp(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1842 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1843 | struct iwl3945_channel_info *ch_info = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1844 | int delta_index; |
| 1845 | const s8 *clip_pwrs; /* array of h/w max power levels for each rate */ |
| 1846 | u8 a_band; |
| 1847 | u8 rate_index; |
| 1848 | u8 scan_tbl_index; |
| 1849 | u8 i; |
| 1850 | int ref_temp; |
| 1851 | int temperature = priv->temperature; |
| 1852 | |
| 1853 | /* set up new Tx power info for each and every channel, 2.4 and 5.x */ |
| 1854 | for (i = 0; i < priv->channel_count; i++) { |
| 1855 | ch_info = &priv->channel_info[i]; |
| 1856 | a_band = is_channel_a_band(ch_info); |
| 1857 | |
| 1858 | /* Get this chnlgrp's factory calibration temperature */ |
| 1859 | ref_temp = (s16)priv->eeprom.groups[ch_info->group_index]. |
| 1860 | temperature; |
| 1861 | |
Tomas Winkler | a96a27f | 2008-10-23 23:48:56 -0700 | [diff] [blame] | 1862 | /* get power index adjustment based on current and factory |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1863 | * temps */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1864 | delta_index = iwl3945_hw_reg_adjust_power_by_temp(temperature, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1865 | ref_temp); |
| 1866 | |
| 1867 | /* set tx power value for all rates, OFDM and CCK */ |
| 1868 | for (rate_index = 0; rate_index < IWL_RATE_COUNT; |
| 1869 | rate_index++) { |
| 1870 | int power_idx = |
| 1871 | ch_info->power_info[rate_index].base_power_index; |
| 1872 | |
| 1873 | /* temperature compensate */ |
| 1874 | power_idx += delta_index; |
| 1875 | |
| 1876 | /* stay within table range */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1877 | power_idx = iwl3945_hw_reg_fix_power_index(power_idx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1878 | ch_info->power_info[rate_index]. |
| 1879 | power_table_index = (u8) power_idx; |
| 1880 | ch_info->power_info[rate_index].tpc = |
| 1881 | power_gain_table[a_band][power_idx]; |
| 1882 | } |
| 1883 | |
| 1884 | /* Get this chnlgrp's rate-to-max/clip-powers table */ |
| 1885 | clip_pwrs = priv->clip_groups[ch_info->group_index].clip_powers; |
| 1886 | |
| 1887 | /* set scan tx power, 1Mbit for CCK, 6Mbit for OFDM */ |
| 1888 | for (scan_tbl_index = 0; |
| 1889 | scan_tbl_index < IWL_NUM_SCAN_RATES; scan_tbl_index++) { |
| 1890 | s32 actual_index = (scan_tbl_index == 0) ? |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 1891 | IWL_RATE_1M_INDEX_TABLE : IWL_RATE_6M_INDEX_TABLE; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1892 | iwl3945_hw_reg_set_scan_power(priv, scan_tbl_index, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1893 | actual_index, clip_pwrs, |
| 1894 | ch_info, a_band); |
| 1895 | } |
| 1896 | } |
| 1897 | |
| 1898 | /* send Txpower command for current channel to ucode */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1899 | return iwl3945_hw_reg_send_txpower(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1900 | } |
| 1901 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1902 | int iwl3945_hw_reg_set_txpower(struct iwl3945_priv *priv, s8 power) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1903 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1904 | struct iwl3945_channel_info *ch_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1905 | s8 max_power; |
| 1906 | u8 a_band; |
| 1907 | u8 i; |
| 1908 | |
| 1909 | if (priv->user_txpower_limit == power) { |
| 1910 | IWL_DEBUG_POWER("Requested Tx power same as current " |
| 1911 | "limit: %ddBm.\n", power); |
| 1912 | return 0; |
| 1913 | } |
| 1914 | |
| 1915 | IWL_DEBUG_POWER("Setting upper limit clamp to %ddBm.\n", power); |
| 1916 | priv->user_txpower_limit = power; |
| 1917 | |
| 1918 | /* set up new Tx powers for each and every channel, 2.4 and 5.x */ |
| 1919 | |
| 1920 | for (i = 0; i < priv->channel_count; i++) { |
| 1921 | ch_info = &priv->channel_info[i]; |
| 1922 | a_band = is_channel_a_band(ch_info); |
| 1923 | |
| 1924 | /* find minimum power of all user and regulatory constraints |
| 1925 | * (does not consider h/w clipping limitations) */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1926 | max_power = iwl3945_hw_reg_get_ch_txpower_limit(ch_info); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1927 | max_power = min(power, max_power); |
| 1928 | if (max_power != ch_info->curr_txpow) { |
| 1929 | ch_info->curr_txpow = max_power; |
| 1930 | |
| 1931 | /* this considers the h/w clipping limitations */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1932 | iwl3945_hw_reg_set_new_power(priv, ch_info); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1933 | } |
| 1934 | } |
| 1935 | |
| 1936 | /* update txpower settings for all channels, |
| 1937 | * send to NIC if associated. */ |
| 1938 | is_temp_calib_needed(priv); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1939 | iwl3945_hw_reg_comp_txpower_temp(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1940 | |
| 1941 | return 0; |
| 1942 | } |
| 1943 | |
| 1944 | /* will add 3945 channel switch cmd handling later */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1945 | int iwl3945_hw_channel_switch(struct iwl3945_priv *priv, u16 channel) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1946 | { |
| 1947 | return 0; |
| 1948 | } |
| 1949 | |
| 1950 | /** |
| 1951 | * iwl3945_reg_txpower_periodic - called when time to check our temperature. |
| 1952 | * |
| 1953 | * -- reset periodic timer |
| 1954 | * -- see if temp has changed enough to warrant re-calibration ... if so: |
| 1955 | * -- correct coeffs for temp (can reset temp timer) |
| 1956 | * -- save this temp as "last", |
| 1957 | * -- send new set of gain settings to NIC |
| 1958 | * NOTE: This should continue working, even when we're not associated, |
| 1959 | * so we can keep our internal table of scan powers current. */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1960 | void iwl3945_reg_txpower_periodic(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1961 | { |
| 1962 | /* This will kick in the "brute force" |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1963 | * iwl3945_hw_reg_comp_txpower_temp() below */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1964 | if (!is_temp_calib_needed(priv)) |
| 1965 | goto reschedule; |
| 1966 | |
| 1967 | /* Set up a new set of temp-adjusted TxPowers, send to NIC. |
| 1968 | * This is based *only* on current temperature, |
| 1969 | * ignoring any previous power measurements */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1970 | iwl3945_hw_reg_comp_txpower_temp(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1971 | |
| 1972 | reschedule: |
| 1973 | queue_delayed_work(priv->workqueue, |
| 1974 | &priv->thermal_periodic, REG_RECALIB_PERIOD * HZ); |
| 1975 | } |
| 1976 | |
Christoph Hellwig | 416e143 | 2007-10-25 17:15:49 +0800 | [diff] [blame] | 1977 | static void iwl3945_bg_reg_txpower_periodic(struct work_struct *work) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1978 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1979 | struct iwl3945_priv *priv = container_of(work, struct iwl3945_priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1980 | thermal_periodic.work); |
| 1981 | |
| 1982 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) |
| 1983 | return; |
| 1984 | |
| 1985 | mutex_lock(&priv->mutex); |
| 1986 | iwl3945_reg_txpower_periodic(priv); |
| 1987 | mutex_unlock(&priv->mutex); |
| 1988 | } |
| 1989 | |
| 1990 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 1991 | * iwl3945_hw_reg_get_ch_grp_index - find the channel-group index (0-4) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 1992 | * for the channel. |
| 1993 | * |
| 1994 | * This function is used when initializing channel-info structs. |
| 1995 | * |
| 1996 | * NOTE: These channel groups do *NOT* match the bands above! |
| 1997 | * These channel groups are based on factory-tested channels; |
| 1998 | * on A-band, EEPROM's "group frequency" entries represent the top |
| 1999 | * channel in each group 1-4. Group 5 All B/G channels are in group 0. |
| 2000 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2001 | static u16 iwl3945_hw_reg_get_ch_grp_index(struct iwl3945_priv *priv, |
| 2002 | const struct iwl3945_channel_info *ch_info) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2003 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2004 | struct iwl3945_eeprom_txpower_group *ch_grp = &priv->eeprom.groups[0]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2005 | u8 group; |
| 2006 | u16 group_index = 0; /* based on factory calib frequencies */ |
| 2007 | u8 grp_channel; |
| 2008 | |
| 2009 | /* Find the group index for the channel ... don't use index 1(?) */ |
| 2010 | if (is_channel_a_band(ch_info)) { |
| 2011 | for (group = 1; group < 5; group++) { |
| 2012 | grp_channel = ch_grp[group].group_channel; |
| 2013 | if (ch_info->channel <= grp_channel) { |
| 2014 | group_index = group; |
| 2015 | break; |
| 2016 | } |
| 2017 | } |
| 2018 | /* group 4 has a few channels *above* its factory cal freq */ |
| 2019 | if (group == 5) |
| 2020 | group_index = 4; |
| 2021 | } else |
| 2022 | group_index = 0; /* 2.4 GHz, group 0 */ |
| 2023 | |
| 2024 | IWL_DEBUG_POWER("Chnl %d mapped to grp %d\n", ch_info->channel, |
| 2025 | group_index); |
| 2026 | return group_index; |
| 2027 | } |
| 2028 | |
| 2029 | /** |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2030 | * iwl3945_hw_reg_get_matched_power_index - Interpolate to get nominal index |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2031 | * |
| 2032 | * Interpolate to get nominal (i.e. at factory calibration temperature) index |
| 2033 | * into radio/DSP gain settings table for requested power. |
| 2034 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2035 | static int iwl3945_hw_reg_get_matched_power_index(struct iwl3945_priv *priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2036 | s8 requested_power, |
| 2037 | s32 setting_index, s32 *new_index) |
| 2038 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2039 | const struct iwl3945_eeprom_txpower_group *chnl_grp = NULL; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2040 | s32 index0, index1; |
| 2041 | s32 power = 2 * requested_power; |
| 2042 | s32 i; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2043 | const struct iwl3945_eeprom_txpower_sample *samples; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2044 | s32 gains0, gains1; |
| 2045 | s32 res; |
| 2046 | s32 denominator; |
| 2047 | |
| 2048 | chnl_grp = &priv->eeprom.groups[setting_index]; |
| 2049 | samples = chnl_grp->samples; |
| 2050 | for (i = 0; i < 5; i++) { |
| 2051 | if (power == samples[i].power) { |
| 2052 | *new_index = samples[i].gain_index; |
| 2053 | return 0; |
| 2054 | } |
| 2055 | } |
| 2056 | |
| 2057 | if (power > samples[1].power) { |
| 2058 | index0 = 0; |
| 2059 | index1 = 1; |
| 2060 | } else if (power > samples[2].power) { |
| 2061 | index0 = 1; |
| 2062 | index1 = 2; |
| 2063 | } else if (power > samples[3].power) { |
| 2064 | index0 = 2; |
| 2065 | index1 = 3; |
| 2066 | } else { |
| 2067 | index0 = 3; |
| 2068 | index1 = 4; |
| 2069 | } |
| 2070 | |
| 2071 | denominator = (s32) samples[index1].power - (s32) samples[index0].power; |
| 2072 | if (denominator == 0) |
| 2073 | return -EINVAL; |
| 2074 | gains0 = (s32) samples[index0].gain_index * (1 << 19); |
| 2075 | gains1 = (s32) samples[index1].gain_index * (1 << 19); |
| 2076 | res = gains0 + (gains1 - gains0) * |
| 2077 | ((s32) power - (s32) samples[index0].power) / denominator + |
| 2078 | (1 << 18); |
| 2079 | *new_index = res >> 19; |
| 2080 | return 0; |
| 2081 | } |
| 2082 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2083 | static void iwl3945_hw_reg_init_channel_groups(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2084 | { |
| 2085 | u32 i; |
| 2086 | s32 rate_index; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2087 | const struct iwl3945_eeprom_txpower_group *group; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2088 | |
| 2089 | IWL_DEBUG_POWER("Initializing factory calib info from EEPROM\n"); |
| 2090 | |
| 2091 | for (i = 0; i < IWL_NUM_TX_CALIB_GROUPS; i++) { |
| 2092 | s8 *clip_pwrs; /* table of power levels for each rate */ |
| 2093 | s8 satur_pwr; /* saturation power for each chnl group */ |
| 2094 | group = &priv->eeprom.groups[i]; |
| 2095 | |
| 2096 | /* sanity check on factory saturation power value */ |
| 2097 | if (group->saturation_power < 40) { |
| 2098 | IWL_WARNING("Error: saturation power is %d, " |
| 2099 | "less than minimum expected 40\n", |
| 2100 | group->saturation_power); |
| 2101 | return; |
| 2102 | } |
| 2103 | |
| 2104 | /* |
| 2105 | * Derive requested power levels for each rate, based on |
| 2106 | * hardware capabilities (saturation power for band). |
| 2107 | * Basic value is 3dB down from saturation, with further |
| 2108 | * power reductions for highest 3 data rates. These |
| 2109 | * backoffs provide headroom for high rate modulation |
| 2110 | * power peaks, without too much distortion (clipping). |
| 2111 | */ |
| 2112 | /* we'll fill in this array with h/w max power levels */ |
| 2113 | clip_pwrs = (s8 *) priv->clip_groups[i].clip_powers; |
| 2114 | |
| 2115 | /* divide factory saturation power by 2 to find -3dB level */ |
| 2116 | satur_pwr = (s8) (group->saturation_power >> 1); |
| 2117 | |
| 2118 | /* fill in channel group's nominal powers for each rate */ |
| 2119 | for (rate_index = 0; |
| 2120 | rate_index < IWL_RATE_COUNT; rate_index++, clip_pwrs++) { |
| 2121 | switch (rate_index) { |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2122 | case IWL_RATE_36M_INDEX_TABLE: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2123 | if (i == 0) /* B/G */ |
| 2124 | *clip_pwrs = satur_pwr; |
| 2125 | else /* A */ |
| 2126 | *clip_pwrs = satur_pwr - 5; |
| 2127 | break; |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2128 | case IWL_RATE_48M_INDEX_TABLE: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2129 | if (i == 0) |
| 2130 | *clip_pwrs = satur_pwr - 7; |
| 2131 | else |
| 2132 | *clip_pwrs = satur_pwr - 10; |
| 2133 | break; |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2134 | case IWL_RATE_54M_INDEX_TABLE: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2135 | if (i == 0) |
| 2136 | *clip_pwrs = satur_pwr - 9; |
| 2137 | else |
| 2138 | *clip_pwrs = satur_pwr - 12; |
| 2139 | break; |
| 2140 | default: |
| 2141 | *clip_pwrs = satur_pwr; |
| 2142 | break; |
| 2143 | } |
| 2144 | } |
| 2145 | } |
| 2146 | } |
| 2147 | |
| 2148 | /** |
| 2149 | * iwl3945_txpower_set_from_eeprom - Set channel power info based on EEPROM |
| 2150 | * |
| 2151 | * Second pass (during init) to set up priv->channel_info |
| 2152 | * |
| 2153 | * Set up Tx-power settings in our channel info database for each VALID |
| 2154 | * (for this geo/SKU) channel, at all Tx data rates, based on eeprom values |
| 2155 | * and current temperature. |
| 2156 | * |
| 2157 | * Since this is based on current temperature (at init time), these values may |
| 2158 | * not be valid for very long, but it gives us a starting/default point, |
| 2159 | * and allows us to active (i.e. using Tx) scan. |
| 2160 | * |
| 2161 | * This does *not* write values to NIC, just sets up our internal table. |
| 2162 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2163 | int iwl3945_txpower_set_from_eeprom(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2164 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2165 | struct iwl3945_channel_info *ch_info = NULL; |
| 2166 | struct iwl3945_channel_power_info *pwr_info; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2167 | int delta_index; |
| 2168 | u8 rate_index; |
| 2169 | u8 scan_tbl_index; |
| 2170 | const s8 *clip_pwrs; /* array of power levels for each rate */ |
| 2171 | u8 gain, dsp_atten; |
| 2172 | s8 power; |
| 2173 | u8 pwr_index, base_pwr_index, a_band; |
| 2174 | u8 i; |
| 2175 | int temperature; |
| 2176 | |
| 2177 | /* save temperature reference, |
| 2178 | * so we can determine next time to calibrate */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2179 | temperature = iwl3945_hw_reg_txpower_get_temperature(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2180 | priv->last_temperature = temperature; |
| 2181 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2182 | iwl3945_hw_reg_init_channel_groups(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2183 | |
| 2184 | /* initialize Tx power info for each and every channel, 2.4 and 5.x */ |
| 2185 | for (i = 0, ch_info = priv->channel_info; i < priv->channel_count; |
| 2186 | i++, ch_info++) { |
| 2187 | a_band = is_channel_a_band(ch_info); |
| 2188 | if (!is_channel_valid(ch_info)) |
| 2189 | continue; |
| 2190 | |
| 2191 | /* find this channel's channel group (*not* "band") index */ |
| 2192 | ch_info->group_index = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2193 | iwl3945_hw_reg_get_ch_grp_index(priv, ch_info); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2194 | |
| 2195 | /* Get this chnlgrp's rate->max/clip-powers table */ |
| 2196 | clip_pwrs = priv->clip_groups[ch_info->group_index].clip_powers; |
| 2197 | |
| 2198 | /* calculate power index *adjustment* value according to |
| 2199 | * diff between current temperature and factory temperature */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2200 | delta_index = iwl3945_hw_reg_adjust_power_by_temp(temperature, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2201 | priv->eeprom.groups[ch_info->group_index]. |
| 2202 | temperature); |
| 2203 | |
| 2204 | IWL_DEBUG_POWER("Delta index for channel %d: %d [%d]\n", |
| 2205 | ch_info->channel, delta_index, temperature + |
| 2206 | IWL_TEMP_CONVERT); |
| 2207 | |
| 2208 | /* set tx power value for all OFDM rates */ |
| 2209 | for (rate_index = 0; rate_index < IWL_OFDM_RATES; |
| 2210 | rate_index++) { |
John W. Linville | 25a4cce | 2009-01-12 14:44:52 -0500 | [diff] [blame] | 2211 | s32 uninitialized_var(power_idx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2212 | int rc; |
| 2213 | |
| 2214 | /* use channel group's clip-power table, |
| 2215 | * but don't exceed channel's max power */ |
| 2216 | s8 pwr = min(ch_info->max_power_avg, |
| 2217 | clip_pwrs[rate_index]); |
| 2218 | |
| 2219 | pwr_info = &ch_info->power_info[rate_index]; |
| 2220 | |
| 2221 | /* get base (i.e. at factory-measured temperature) |
| 2222 | * power table index for this rate's power */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2223 | rc = iwl3945_hw_reg_get_matched_power_index(priv, pwr, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2224 | ch_info->group_index, |
| 2225 | &power_idx); |
| 2226 | if (rc) { |
| 2227 | IWL_ERROR("Invalid power index\n"); |
| 2228 | return rc; |
| 2229 | } |
| 2230 | pwr_info->base_power_index = (u8) power_idx; |
| 2231 | |
| 2232 | /* temperature compensate */ |
| 2233 | power_idx += delta_index; |
| 2234 | |
| 2235 | /* stay within range of gain table */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2236 | power_idx = iwl3945_hw_reg_fix_power_index(power_idx); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2237 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2238 | /* fill 1 OFDM rate's iwl3945_channel_power_info struct */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2239 | pwr_info->requested_power = pwr; |
| 2240 | pwr_info->power_table_index = (u8) power_idx; |
| 2241 | pwr_info->tpc.tx_gain = |
| 2242 | power_gain_table[a_band][power_idx].tx_gain; |
| 2243 | pwr_info->tpc.dsp_atten = |
| 2244 | power_gain_table[a_band][power_idx].dsp_atten; |
| 2245 | } |
| 2246 | |
| 2247 | /* set tx power for CCK rates, based on OFDM 12 Mbit settings*/ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2248 | pwr_info = &ch_info->power_info[IWL_RATE_12M_INDEX_TABLE]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2249 | power = pwr_info->requested_power + |
| 2250 | IWL_CCK_FROM_OFDM_POWER_DIFF; |
| 2251 | pwr_index = pwr_info->power_table_index + |
| 2252 | IWL_CCK_FROM_OFDM_INDEX_DIFF; |
| 2253 | base_pwr_index = pwr_info->base_power_index + |
| 2254 | IWL_CCK_FROM_OFDM_INDEX_DIFF; |
| 2255 | |
| 2256 | /* stay within table range */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2257 | pwr_index = iwl3945_hw_reg_fix_power_index(pwr_index); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2258 | gain = power_gain_table[a_band][pwr_index].tx_gain; |
| 2259 | dsp_atten = power_gain_table[a_band][pwr_index].dsp_atten; |
| 2260 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2261 | /* fill each CCK rate's iwl3945_channel_power_info structure |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2262 | * NOTE: All CCK-rate Txpwrs are the same for a given chnl! |
| 2263 | * NOTE: CCK rates start at end of OFDM rates! */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2264 | for (rate_index = 0; |
| 2265 | rate_index < IWL_CCK_RATES; rate_index++) { |
| 2266 | pwr_info = &ch_info->power_info[rate_index+IWL_OFDM_RATES]; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2267 | pwr_info->requested_power = power; |
| 2268 | pwr_info->power_table_index = pwr_index; |
| 2269 | pwr_info->base_power_index = base_pwr_index; |
| 2270 | pwr_info->tpc.tx_gain = gain; |
| 2271 | pwr_info->tpc.dsp_atten = dsp_atten; |
| 2272 | } |
| 2273 | |
| 2274 | /* set scan tx power, 1Mbit for CCK, 6Mbit for OFDM */ |
| 2275 | for (scan_tbl_index = 0; |
| 2276 | scan_tbl_index < IWL_NUM_SCAN_RATES; scan_tbl_index++) { |
| 2277 | s32 actual_index = (scan_tbl_index == 0) ? |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2278 | IWL_RATE_1M_INDEX_TABLE : IWL_RATE_6M_INDEX_TABLE; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2279 | iwl3945_hw_reg_set_scan_power(priv, scan_tbl_index, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2280 | actual_index, clip_pwrs, ch_info, a_band); |
| 2281 | } |
| 2282 | } |
| 2283 | |
| 2284 | return 0; |
| 2285 | } |
| 2286 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2287 | int iwl3945_hw_rxq_stop(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2288 | { |
| 2289 | int rc; |
| 2290 | unsigned long flags; |
| 2291 | |
| 2292 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2293 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2294 | if (rc) { |
| 2295 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2296 | return rc; |
| 2297 | } |
| 2298 | |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 2299 | iwl3945_write_direct32(priv, FH39_RCSR_CONFIG(0), 0); |
| 2300 | rc = iwl3945_poll_direct_bit(priv, FH39_RSSR_STATUS, |
| 2301 | FH39_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2302 | if (rc < 0) |
| 2303 | IWL_ERROR("Can't stop Rx DMA.\n"); |
| 2304 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2305 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2306 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2307 | |
| 2308 | return 0; |
| 2309 | } |
| 2310 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2311 | int iwl3945_hw_tx_queue_init(struct iwl3945_priv *priv, struct iwl3945_tx_queue *txq) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2312 | { |
| 2313 | int rc; |
| 2314 | unsigned long flags; |
| 2315 | int txq_id = txq->q.id; |
| 2316 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2317 | struct iwl3945_shared *shared_data = priv->hw_setting.shared_virt; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2318 | |
| 2319 | shared_data->tx_base_ptr[txq_id] = cpu_to_le32((u32)txq->q.dma_addr); |
| 2320 | |
| 2321 | spin_lock_irqsave(&priv->lock, flags); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2322 | rc = iwl3945_grab_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2323 | if (rc) { |
| 2324 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2325 | return rc; |
| 2326 | } |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 2327 | iwl3945_write_direct32(priv, FH39_CBCC_CTRL(txq_id), 0); |
| 2328 | iwl3945_write_direct32(priv, FH39_CBCC_BASE(txq_id), 0); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2329 | |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 2330 | iwl3945_write_direct32(priv, FH39_TCSR_CONFIG(txq_id), |
| 2331 | FH39_TCSR_TX_CONFIG_REG_VAL_CIRQ_RTC_NOINT | |
| 2332 | FH39_TCSR_TX_CONFIG_REG_VAL_MSG_MODE_TXF | |
| 2333 | FH39_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_IFTFD | |
| 2334 | FH39_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL | |
| 2335 | FH39_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE); |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2336 | iwl3945_release_nic_access(priv); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2337 | |
| 2338 | /* fake read to flush all prev. writes */ |
Tomas Winkler | bddadf8 | 2008-12-19 10:37:01 +0800 | [diff] [blame] | 2339 | iwl3945_read32(priv, FH39_TSSR_CBB_BASE); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2340 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2341 | |
| 2342 | return 0; |
| 2343 | } |
| 2344 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2345 | int iwl3945_hw_get_rx_read(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2346 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2347 | struct iwl3945_shared *shared_data = priv->hw_setting.shared_virt; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2348 | |
| 2349 | return le32_to_cpu(shared_data->rx_read_ptr[0]); |
| 2350 | } |
| 2351 | |
| 2352 | /** |
| 2353 | * iwl3945_init_hw_rate_table - Initialize the hardware rate fallback table |
| 2354 | */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2355 | int iwl3945_init_hw_rate_table(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2356 | { |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2357 | int rc, i, index, prev_index; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2358 | struct iwl3945_rate_scaling_cmd rate_cmd = { |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2359 | .reserved = {0, 0, 0}, |
| 2360 | }; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2361 | struct iwl3945_rate_scaling_info *table = rate_cmd.table; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2362 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2363 | for (i = 0; i < ARRAY_SIZE(iwl3945_rates); i++) { |
| 2364 | index = iwl3945_rates[i].table_rs_index; |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2365 | |
| 2366 | table[index].rate_n_flags = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2367 | iwl3945_hw_set_rate_n_flags(iwl3945_rates[i].plcp, 0); |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2368 | table[index].try_cnt = priv->retry_rate; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2369 | prev_index = iwl3945_get_prev_ieee_rate(i); |
Abbas, Mohamed | 7262796 | 2008-12-05 07:58:37 -0800 | [diff] [blame] | 2370 | table[index].next_rate_index = |
| 2371 | iwl3945_rates[prev_index].table_rs_index; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2372 | } |
| 2373 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2374 | switch (priv->band) { |
| 2375 | case IEEE80211_BAND_5GHZ: |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2376 | IWL_DEBUG_RATE("Select A mode rate scale\n"); |
| 2377 | /* If one of the following CCK rates is used, |
| 2378 | * have it fall back to the 6M OFDM rate */ |
Abbas, Mohamed | 7262796 | 2008-12-05 07:58:37 -0800 | [diff] [blame] | 2379 | for (i = IWL_RATE_1M_INDEX_TABLE; |
| 2380 | i <= IWL_RATE_11M_INDEX_TABLE; i++) |
| 2381 | table[i].next_rate_index = |
| 2382 | iwl3945_rates[IWL_FIRST_OFDM_RATE].table_rs_index; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2383 | |
| 2384 | /* Don't fall back to CCK rates */ |
Abbas, Mohamed | 7262796 | 2008-12-05 07:58:37 -0800 | [diff] [blame] | 2385 | table[IWL_RATE_12M_INDEX_TABLE].next_rate_index = |
| 2386 | IWL_RATE_9M_INDEX_TABLE; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2387 | |
| 2388 | /* Don't drop out of OFDM rates */ |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2389 | table[IWL_RATE_6M_INDEX_TABLE].next_rate_index = |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2390 | iwl3945_rates[IWL_FIRST_OFDM_RATE].table_rs_index; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2391 | break; |
| 2392 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2393 | case IEEE80211_BAND_2GHZ: |
| 2394 | IWL_DEBUG_RATE("Select B/G mode rate scale\n"); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2395 | /* If an OFDM rate is used, have it fall back to the |
| 2396 | * 1M CCK rates */ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2397 | |
Abbas, Mohamed | 7262796 | 2008-12-05 07:58:37 -0800 | [diff] [blame] | 2398 | if (!(priv->sta_supp_rates & IWL_OFDM_RATES_MASK) && |
| 2399 | iwl3945_is_associated(priv)) { |
| 2400 | |
| 2401 | index = IWL_FIRST_CCK_RATE; |
| 2402 | for (i = IWL_RATE_6M_INDEX_TABLE; |
| 2403 | i <= IWL_RATE_54M_INDEX_TABLE; i++) |
| 2404 | table[i].next_rate_index = |
| 2405 | iwl3945_rates[index].table_rs_index; |
| 2406 | |
| 2407 | index = IWL_RATE_11M_INDEX_TABLE; |
| 2408 | /* CCK shouldn't fall back to OFDM... */ |
| 2409 | table[index].next_rate_index = IWL_RATE_5M_INDEX_TABLE; |
| 2410 | } |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2411 | break; |
| 2412 | |
| 2413 | default: |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2414 | WARN_ON(1); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2415 | break; |
| 2416 | } |
| 2417 | |
| 2418 | /* Update the rate scaling for control frame Tx */ |
| 2419 | rate_cmd.table_id = 0; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2420 | rc = iwl3945_send_cmd_pdu(priv, REPLY_RATE_SCALE, sizeof(rate_cmd), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2421 | &rate_cmd); |
| 2422 | if (rc) |
| 2423 | return rc; |
| 2424 | |
| 2425 | /* Update the rate scaling for data frame Tx */ |
| 2426 | rate_cmd.table_id = 1; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2427 | return iwl3945_send_cmd_pdu(priv, REPLY_RATE_SCALE, sizeof(rate_cmd), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2428 | &rate_cmd); |
| 2429 | } |
| 2430 | |
Ben Cahill | 796083c | 2007-11-29 11:09:45 +0800 | [diff] [blame] | 2431 | /* Called when initializing driver */ |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2432 | int iwl3945_hw_set_hw_setting(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2433 | { |
| 2434 | memset((void *)&priv->hw_setting, 0, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2435 | sizeof(struct iwl3945_driver_hw_info)); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2436 | |
| 2437 | priv->hw_setting.shared_virt = |
| 2438 | pci_alloc_consistent(priv->pci_dev, |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2439 | sizeof(struct iwl3945_shared), |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2440 | &priv->hw_setting.shared_phys); |
| 2441 | |
| 2442 | if (!priv->hw_setting.shared_virt) { |
| 2443 | IWL_ERROR("failed to allocate pci memory\n"); |
| 2444 | mutex_unlock(&priv->mutex); |
| 2445 | return -ENOMEM; |
| 2446 | } |
| 2447 | |
Ron Rindjunsky | 9ee1ba4 | 2007-11-26 16:14:42 +0200 | [diff] [blame] | 2448 | priv->hw_setting.rx_buf_size = IWL_RX_BUF_SIZE; |
| 2449 | priv->hw_setting.max_pkt_size = 2342; |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2450 | priv->hw_setting.tx_cmd_len = sizeof(struct iwl3945_tx_cmd); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2451 | priv->hw_setting.max_rxq_size = RX_QUEUE_SIZE; |
| 2452 | priv->hw_setting.max_rxq_log = RX_QUEUE_SIZE_LOG; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2453 | priv->hw_setting.max_stations = IWL3945_STATION_COUNT; |
| 2454 | priv->hw_setting.bcast_sta_id = IWL3945_BROADCAST_ID; |
Tomas Winkler | 3e82a82 | 2008-02-13 11:32:31 -0800 | [diff] [blame] | 2455 | |
| 2456 | priv->hw_setting.tx_ant_num = 2; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2457 | return 0; |
| 2458 | } |
| 2459 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2460 | unsigned int iwl3945_hw_get_beacon_cmd(struct iwl3945_priv *priv, |
| 2461 | struct iwl3945_frame *frame, u8 rate) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2462 | { |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2463 | struct iwl3945_tx_beacon_cmd *tx_beacon_cmd; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2464 | unsigned int frame_size; |
| 2465 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2466 | tx_beacon_cmd = (struct iwl3945_tx_beacon_cmd *)&frame->u; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2467 | memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd)); |
| 2468 | |
Tomas Winkler | a4062b8 | 2008-03-11 16:17:16 -0700 | [diff] [blame] | 2469 | tx_beacon_cmd->tx.sta_id = priv->hw_setting.bcast_sta_id; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2470 | tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
| 2471 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2472 | frame_size = iwl3945_fill_beacon_frame(priv, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2473 | tx_beacon_cmd->frame, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2474 | sizeof(frame->u) - sizeof(*tx_beacon_cmd)); |
| 2475 | |
| 2476 | BUG_ON(frame_size > MAX_MPDU_SIZE); |
| 2477 | tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size); |
| 2478 | |
| 2479 | tx_beacon_cmd->tx.rate = rate; |
| 2480 | tx_beacon_cmd->tx.tx_flags = (TX_CMD_FLG_SEQ_CTL_MSK | |
| 2481 | TX_CMD_FLG_TSF_MSK); |
| 2482 | |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2483 | /* supp_rates[0] == OFDM start at IWL_FIRST_OFDM_RATE*/ |
| 2484 | tx_beacon_cmd->tx.supp_rates[0] = |
| 2485 | (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2486 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2487 | tx_beacon_cmd->tx.supp_rates[1] = |
Mohamed Abbas | 14577f2 | 2007-11-12 11:37:42 +0800 | [diff] [blame] | 2488 | (IWL_CCK_BASIC_RATES_MASK & 0xF); |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2489 | |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 2490 | return sizeof(struct iwl3945_tx_beacon_cmd) + frame_size; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2491 | } |
| 2492 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2493 | void iwl3945_hw_rx_handler_setup(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2494 | { |
Tomas Winkler | 91c066f | 2008-03-06 17:36:55 -0800 | [diff] [blame] | 2495 | priv->rx_handlers[REPLY_TX] = iwl3945_rx_reply_tx; |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2496 | priv->rx_handlers[REPLY_3945_RX] = iwl3945_rx_reply_rx; |
| 2497 | } |
| 2498 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2499 | void iwl3945_hw_setup_deferred_work(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2500 | { |
| 2501 | INIT_DELAYED_WORK(&priv->thermal_periodic, |
| 2502 | iwl3945_bg_reg_txpower_periodic); |
| 2503 | } |
| 2504 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2505 | void iwl3945_hw_cancel_deferred_work(struct iwl3945_priv *priv) |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2506 | { |
| 2507 | cancel_delayed_work(&priv->thermal_periodic); |
| 2508 | } |
| 2509 | |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 2510 | static struct iwl_3945_cfg iwl3945_bg_cfg = { |
| 2511 | .name = "3945BG", |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2512 | .fw_name_pre = IWL3945_FW_PRE, |
| 2513 | .ucode_api_max = IWL3945_UCODE_API_MAX, |
| 2514 | .ucode_api_min = IWL3945_UCODE_API_MIN, |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 2515 | .sku = IWL_SKU_G, |
| 2516 | }; |
| 2517 | |
| 2518 | static struct iwl_3945_cfg iwl3945_abg_cfg = { |
| 2519 | .name = "3945ABG", |
Reinette Chatre | a0987a8 | 2008-12-02 12:14:06 -0800 | [diff] [blame] | 2520 | .fw_name_pre = IWL3945_FW_PRE, |
| 2521 | .ucode_api_max = IWL3945_UCODE_API_MAX, |
| 2522 | .ucode_api_min = IWL3945_UCODE_API_MIN, |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 2523 | .sku = IWL_SKU_A|IWL_SKU_G, |
| 2524 | }; |
| 2525 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2526 | struct pci_device_id iwl3945_hw_card_ids[] = { |
Tomas Winkler | 82b9a12 | 2008-03-04 18:09:30 -0800 | [diff] [blame] | 2527 | {IWL_PCI_DEVICE(0x4222, 0x1005, iwl3945_bg_cfg)}, |
| 2528 | {IWL_PCI_DEVICE(0x4222, 0x1034, iwl3945_bg_cfg)}, |
| 2529 | {IWL_PCI_DEVICE(0x4222, 0x1044, iwl3945_bg_cfg)}, |
| 2530 | {IWL_PCI_DEVICE(0x4227, 0x1014, iwl3945_bg_cfg)}, |
| 2531 | {IWL_PCI_DEVICE(0x4222, PCI_ANY_ID, iwl3945_abg_cfg)}, |
| 2532 | {IWL_PCI_DEVICE(0x4227, PCI_ANY_ID, iwl3945_abg_cfg)}, |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2533 | {0} |
| 2534 | }; |
| 2535 | |
Christoph Hellwig | bb8c093 | 2008-01-27 16:41:47 -0800 | [diff] [blame] | 2536 | MODULE_DEVICE_TABLE(pci, iwl3945_hw_card_ids); |