blob: dc0ad4a21d5225475a5d6c21d2c35f16b520ff54 [file] [log] [blame]
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -04001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -04003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include "hw.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040018#include "ar9003_mac.h"
Luis R. Rodriguez72846352010-05-12 21:15:05 -040019#include "ar9003_2p2_initvals.h"
Vasanthakumar Thiagarajanc88457e2010-12-06 04:27:37 -080020#include "ar9485_initvals.h"
Vasanthakumar Thiagarajand89baac2011-04-19 19:29:04 +053021#include "ar9340_initvals.h"
Gabor Juhos172805a2011-06-21 11:23:26 +020022#include "ar9330_1p1_initvals.h"
23#include "ar9330_1p2_initvals.h"
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -040024
25/* General hardware code for the AR9003 hadware family */
26
Luis R. Rodriguez886b42b2010-10-14 11:44:27 -070027/*
28 * The AR9003 family uses a new INI format (pre, core, post
29 * arrays per subsystem). This provides support for the
30 * AR9003 2.2 chipsets.
31 */
32static void ar9003_hw_init_mode_regs(struct ath_hw *ah)
Luis R. Rodriguez72846352010-05-12 21:15:05 -040033{
Gabor Juhos172805a2011-06-21 11:23:26 +020034 if (AR_SREV_9330_11(ah)) {
35 /* mac */
36 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0);
37 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_CORE],
38 ar9331_1p1_mac_core,
39 ARRAY_SIZE(ar9331_1p1_mac_core), 2);
40 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_POST],
41 ar9331_1p1_mac_postamble,
42 ARRAY_SIZE(ar9331_1p1_mac_postamble), 5);
43
44 /* bb */
45 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_PRE], NULL, 0, 0);
46 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_CORE],
47 ar9331_1p1_baseband_core,
48 ARRAY_SIZE(ar9331_1p1_baseband_core), 2);
49 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_POST],
50 ar9331_1p1_baseband_postamble,
51 ARRAY_SIZE(ar9331_1p1_baseband_postamble), 5);
52
53 /* radio */
54 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_PRE], NULL, 0, 0);
55 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_CORE],
56 ar9331_1p1_radio_core,
57 ARRAY_SIZE(ar9331_1p1_radio_core), 2);
58 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_POST], NULL, 0, 0);
59
60 /* soc */
61 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_PRE],
62 ar9331_1p1_soc_preamble,
63 ARRAY_SIZE(ar9331_1p1_soc_preamble), 2);
64 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_CORE], NULL, 0, 0);
65 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_POST],
66 ar9331_1p1_soc_postamble,
67 ARRAY_SIZE(ar9331_1p1_soc_postamble), 2);
68
69 /* rx/tx gain */
70 INIT_INI_ARRAY(&ah->iniModesRxGain,
71 ar9331_common_rx_gain_1p1,
72 ARRAY_SIZE(ar9331_common_rx_gain_1p1), 2);
73 INIT_INI_ARRAY(&ah->iniModesTxGain,
74 ar9331_modes_lowest_ob_db_tx_gain_1p1,
75 ARRAY_SIZE(ar9331_modes_lowest_ob_db_tx_gain_1p1),
76 5);
77
78 /* additional clock settings */
79 if (ah->is_clk_25mhz)
80 INIT_INI_ARRAY(&ah->iniModesAdditional,
81 ar9331_1p1_xtal_25M,
82 ARRAY_SIZE(ar9331_1p1_xtal_25M), 2);
83 else
84 INIT_INI_ARRAY(&ah->iniModesAdditional,
85 ar9331_1p1_xtal_40M,
86 ARRAY_SIZE(ar9331_1p1_xtal_40M), 2);
87 } else if (AR_SREV_9330_12(ah)) {
88 /* mac */
89 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0);
90 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_CORE],
91 ar9331_1p2_mac_core,
92 ARRAY_SIZE(ar9331_1p2_mac_core), 2);
93 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_POST],
94 ar9331_1p2_mac_postamble,
95 ARRAY_SIZE(ar9331_1p2_mac_postamble), 5);
96
97 /* bb */
98 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_PRE], NULL, 0, 0);
99 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_CORE],
100 ar9331_1p2_baseband_core,
101 ARRAY_SIZE(ar9331_1p2_baseband_core), 2);
102 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_POST],
103 ar9331_1p2_baseband_postamble,
104 ARRAY_SIZE(ar9331_1p2_baseband_postamble), 5);
105
106 /* radio */
107 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_PRE], NULL, 0, 0);
108 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_CORE],
109 ar9331_1p2_radio_core,
110 ARRAY_SIZE(ar9331_1p2_radio_core), 2);
111 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_POST], NULL, 0, 0);
112
113 /* soc */
114 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_PRE],
115 ar9331_1p2_soc_preamble,
116 ARRAY_SIZE(ar9331_1p2_soc_preamble), 2);
117 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_CORE], NULL, 0, 0);
118 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_POST],
119 ar9331_1p2_soc_postamble,
120 ARRAY_SIZE(ar9331_1p2_soc_postamble), 2);
121
122 /* rx/tx gain */
123 INIT_INI_ARRAY(&ah->iniModesRxGain,
124 ar9331_common_rx_gain_1p2,
125 ARRAY_SIZE(ar9331_common_rx_gain_1p2), 2);
126 INIT_INI_ARRAY(&ah->iniModesTxGain,
127 ar9331_modes_lowest_ob_db_tx_gain_1p2,
128 ARRAY_SIZE(ar9331_modes_lowest_ob_db_tx_gain_1p2),
129 5);
130
131 /* additional clock settings */
132 if (ah->is_clk_25mhz)
133 INIT_INI_ARRAY(&ah->iniModesAdditional,
134 ar9331_1p2_xtal_25M,
135 ARRAY_SIZE(ar9331_1p2_xtal_25M), 2);
136 else
137 INIT_INI_ARRAY(&ah->iniModesAdditional,
138 ar9331_1p2_xtal_40M,
139 ARRAY_SIZE(ar9331_1p2_xtal_40M), 2);
140 } else if (AR_SREV_9340(ah)) {
Vasanthakumar Thiagarajand89baac2011-04-19 19:29:04 +0530141 /* mac */
142 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0);
143 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_CORE],
144 ar9340_1p0_mac_core,
145 ARRAY_SIZE(ar9340_1p0_mac_core), 2);
146 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_POST],
147 ar9340_1p0_mac_postamble,
148 ARRAY_SIZE(ar9340_1p0_mac_postamble), 5);
149
150 /* bb */
151 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_PRE], NULL, 0, 0);
152 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_CORE],
153 ar9340_1p0_baseband_core,
154 ARRAY_SIZE(ar9340_1p0_baseband_core), 2);
155 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_POST],
156 ar9340_1p0_baseband_postamble,
157 ARRAY_SIZE(ar9340_1p0_baseband_postamble), 5);
158
159 /* radio */
160 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_PRE], NULL, 0, 0);
161 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_CORE],
162 ar9340_1p0_radio_core,
163 ARRAY_SIZE(ar9340_1p0_radio_core), 2);
164 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_POST],
165 ar9340_1p0_radio_postamble,
166 ARRAY_SIZE(ar9340_1p0_radio_postamble), 5);
167
168 /* soc */
169 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_PRE],
170 ar9340_1p0_soc_preamble,
171 ARRAY_SIZE(ar9340_1p0_soc_preamble), 2);
172 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_CORE], NULL, 0, 0);
173 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_POST],
174 ar9340_1p0_soc_postamble,
175 ARRAY_SIZE(ar9340_1p0_soc_postamble), 5);
176
177 /* rx/tx gain */
178 INIT_INI_ARRAY(&ah->iniModesRxGain,
179 ar9340Common_wo_xlna_rx_gain_table_1p0,
180 ARRAY_SIZE(ar9340Common_wo_xlna_rx_gain_table_1p0),
181 5);
182 INIT_INI_ARRAY(&ah->iniModesTxGain,
183 ar9340Modes_high_ob_db_tx_gain_table_1p0,
184 ARRAY_SIZE(ar9340Modes_high_ob_db_tx_gain_table_1p0),
185 5);
186
187 INIT_INI_ARRAY(&ah->iniModesAdditional,
188 ar9340Modes_fast_clock_1p0,
189 ARRAY_SIZE(ar9340Modes_fast_clock_1p0),
190 3);
191
192 INIT_INI_ARRAY(&ah->iniModesAdditional_40M,
193 ar9340_1p0_radio_core_40M,
194 ARRAY_SIZE(ar9340_1p0_radio_core_40M),
195 2);
196 } else if (AR_SREV_9485_11(ah)) {
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530197 /* mac */
198 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0);
199 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_CORE],
200 ar9485_1_1_mac_core,
201 ARRAY_SIZE(ar9485_1_1_mac_core), 2);
202 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_POST],
203 ar9485_1_1_mac_postamble,
204 ARRAY_SIZE(ar9485_1_1_mac_postamble), 5);
205
206 /* bb */
207 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_PRE], ar9485_1_1,
208 ARRAY_SIZE(ar9485_1_1), 2);
209 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_CORE],
210 ar9485_1_1_baseband_core,
211 ARRAY_SIZE(ar9485_1_1_baseband_core), 2);
212 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_POST],
213 ar9485_1_1_baseband_postamble,
214 ARRAY_SIZE(ar9485_1_1_baseband_postamble), 5);
215
216 /* radio */
217 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_PRE], NULL, 0, 0);
218 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_CORE],
219 ar9485_1_1_radio_core,
220 ARRAY_SIZE(ar9485_1_1_radio_core), 2);
221 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_POST],
222 ar9485_1_1_radio_postamble,
223 ARRAY_SIZE(ar9485_1_1_radio_postamble), 2);
224
225 /* soc */
226 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_PRE],
227 ar9485_1_1_soc_preamble,
228 ARRAY_SIZE(ar9485_1_1_soc_preamble), 2);
229 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_CORE], NULL, 0, 0);
230 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_POST], NULL, 0, 0);
231
232 /* rx/tx gain */
233 INIT_INI_ARRAY(&ah->iniModesRxGain,
Vasanthakumar Thiagarajan832fd352011-04-01 15:32:16 +0530234 ar9485Common_wo_xlna_rx_gain_1_1,
235 ARRAY_SIZE(ar9485Common_wo_xlna_rx_gain_1_1), 2);
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530236 INIT_INI_ARRAY(&ah->iniModesTxGain,
237 ar9485_modes_lowest_ob_db_tx_gain_1_1,
238 ARRAY_SIZE(ar9485_modes_lowest_ob_db_tx_gain_1_1),
239 5);
240
241 /* Load PCIE SERDES settings from INI */
242
243 /* Awake Setting */
244
245 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Vivek Natarajan06fed572011-02-25 17:31:01 +0530246 ar9485_1_1_pcie_phy_clkreq_disable_L1,
247 ARRAY_SIZE(ar9485_1_1_pcie_phy_clkreq_disable_L1),
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530248 2);
249
250 /* Sleep Setting */
251
252 INIT_INI_ARRAY(&ah->iniPcieSerdesLowPower,
Vivek Natarajan06fed572011-02-25 17:31:01 +0530253 ar9485_1_1_pcie_phy_clkreq_disable_L1,
254 ARRAY_SIZE(ar9485_1_1_pcie_phy_clkreq_disable_L1),
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530255 2);
Vasanthakumar Thiagarajanc88457e2010-12-06 04:27:37 -0800256 } else {
257 /* mac */
258 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_PRE], NULL, 0, 0);
259 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_CORE],
260 ar9300_2p2_mac_core,
261 ARRAY_SIZE(ar9300_2p2_mac_core), 2);
262 INIT_INI_ARRAY(&ah->iniMac[ATH_INI_POST],
263 ar9300_2p2_mac_postamble,
264 ARRAY_SIZE(ar9300_2p2_mac_postamble), 5);
Luis R. Rodriguez72846352010-05-12 21:15:05 -0400265
Vasanthakumar Thiagarajanc88457e2010-12-06 04:27:37 -0800266 /* bb */
267 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_PRE], NULL, 0, 0);
268 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_CORE],
269 ar9300_2p2_baseband_core,
270 ARRAY_SIZE(ar9300_2p2_baseband_core), 2);
271 INIT_INI_ARRAY(&ah->iniBB[ATH_INI_POST],
272 ar9300_2p2_baseband_postamble,
273 ARRAY_SIZE(ar9300_2p2_baseband_postamble), 5);
274
275 /* radio */
276 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_PRE], NULL, 0, 0);
277 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_CORE],
278 ar9300_2p2_radio_core,
279 ARRAY_SIZE(ar9300_2p2_radio_core), 2);
280 INIT_INI_ARRAY(&ah->iniRadio[ATH_INI_POST],
281 ar9300_2p2_radio_postamble,
282 ARRAY_SIZE(ar9300_2p2_radio_postamble), 5);
283
284 /* soc */
285 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_PRE],
286 ar9300_2p2_soc_preamble,
287 ARRAY_SIZE(ar9300_2p2_soc_preamble), 2);
288 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_CORE], NULL, 0, 0);
289 INIT_INI_ARRAY(&ah->iniSOC[ATH_INI_POST],
290 ar9300_2p2_soc_postamble,
291 ARRAY_SIZE(ar9300_2p2_soc_postamble), 5);
292
293 /* rx/tx gain */
294 INIT_INI_ARRAY(&ah->iniModesRxGain,
295 ar9300Common_rx_gain_table_2p2,
296 ARRAY_SIZE(ar9300Common_rx_gain_table_2p2), 2);
297 INIT_INI_ARRAY(&ah->iniModesTxGain,
298 ar9300Modes_lowest_ob_db_tx_gain_table_2p2,
299 ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p2),
300 5);
301
302 /* Load PCIE SERDES settings from INI */
303
304 /* Awake Setting */
305
306 INIT_INI_ARRAY(&ah->iniPcieSerdes,
307 ar9300PciePhy_pll_on_clkreq_disable_L1_2p2,
308 ARRAY_SIZE(ar9300PciePhy_pll_on_clkreq_disable_L1_2p2),
309 2);
310
311 /* Sleep Setting */
312
313 INIT_INI_ARRAY(&ah->iniPcieSerdesLowPower,
Luis R. Rodriguez58c52962011-01-13 18:19:29 -0800314 ar9300PciePhy_pll_on_clkreq_disable_L1_2p2,
315 ARRAY_SIZE(ar9300PciePhy_pll_on_clkreq_disable_L1_2p2),
Vasanthakumar Thiagarajanc88457e2010-12-06 04:27:37 -0800316 2);
317
318 /* Fast clock modal settings */
319 INIT_INI_ARRAY(&ah->iniModesAdditional,
320 ar9300Modes_fast_clock_2p2,
321 ARRAY_SIZE(ar9300Modes_fast_clock_2p2),
322 3);
323 }
Luis R. Rodriguez72846352010-05-12 21:15:05 -0400324}
325
Luis R. Rodriguezc14a85d2010-04-15 17:39:21 -0400326static void ar9003_tx_gain_table_apply(struct ath_hw *ah)
327{
328 switch (ar9003_hw_get_tx_gain_idx(ah)) {
329 case 0:
330 default:
Vasanthakumar Thiagarajand7fd52a2011-04-19 19:29:06 +0530331 if (AR_SREV_9340(ah))
332 INIT_INI_ARRAY(&ah->iniModesTxGain,
333 ar9340Modes_lowest_ob_db_tx_gain_table_1p0,
334 ARRAY_SIZE(ar9340Modes_lowest_ob_db_tx_gain_table_1p0),
335 5);
336 else if (AR_SREV_9485_11(ah))
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530337 INIT_INI_ARRAY(&ah->iniModesTxGain,
338 ar9485_modes_lowest_ob_db_tx_gain_1_1,
339 ARRAY_SIZE(ar9485_modes_lowest_ob_db_tx_gain_1_1),
340 5);
Vasanthakumar Thiagarajanff48ba42010-12-06 04:27:38 -0800341 else
342 INIT_INI_ARRAY(&ah->iniModesTxGain,
343 ar9300Modes_lowest_ob_db_tx_gain_table_2p2,
344 ARRAY_SIZE(ar9300Modes_lowest_ob_db_tx_gain_table_2p2),
345 5);
Luis R. Rodriguezc14a85d2010-04-15 17:39:21 -0400346 break;
347 case 1:
Vasanthakumar Thiagarajand7fd52a2011-04-19 19:29:06 +0530348 if (AR_SREV_9340(ah))
349 INIT_INI_ARRAY(&ah->iniModesTxGain,
350 ar9340Modes_lowest_ob_db_tx_gain_table_1p0,
351 ARRAY_SIZE(ar9340Modes_lowest_ob_db_tx_gain_table_1p0),
352 5);
353 else if (AR_SREV_9485_11(ah))
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530354 INIT_INI_ARRAY(&ah->iniModesTxGain,
355 ar9485Modes_high_ob_db_tx_gain_1_1,
356 ARRAY_SIZE(ar9485Modes_high_ob_db_tx_gain_1_1),
357 5);
Vasanthakumar Thiagarajanff48ba42010-12-06 04:27:38 -0800358 else
359 INIT_INI_ARRAY(&ah->iniModesTxGain,
360 ar9300Modes_high_ob_db_tx_gain_table_2p2,
361 ARRAY_SIZE(ar9300Modes_high_ob_db_tx_gain_table_2p2),
362 5);
Luis R. Rodriguezc14a85d2010-04-15 17:39:21 -0400363 break;
364 case 2:
Vasanthakumar Thiagarajand7fd52a2011-04-19 19:29:06 +0530365 if (AR_SREV_9340(ah))
366 INIT_INI_ARRAY(&ah->iniModesTxGain,
367 ar9340Modes_lowest_ob_db_tx_gain_table_1p0,
368 ARRAY_SIZE(ar9340Modes_lowest_ob_db_tx_gain_table_1p0),
369 5);
370 else if (AR_SREV_9485_11(ah))
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530371 INIT_INI_ARRAY(&ah->iniModesTxGain,
372 ar9485Modes_low_ob_db_tx_gain_1_1,
373 ARRAY_SIZE(ar9485Modes_low_ob_db_tx_gain_1_1),
374 5);
Vasanthakumar Thiagarajanff48ba42010-12-06 04:27:38 -0800375 else
376 INIT_INI_ARRAY(&ah->iniModesTxGain,
377 ar9300Modes_low_ob_db_tx_gain_table_2p2,
378 ARRAY_SIZE(ar9300Modes_low_ob_db_tx_gain_table_2p2),
379 5);
380 break;
381 case 3:
Vasanthakumar Thiagarajand7fd52a2011-04-19 19:29:06 +0530382 if (AR_SREV_9340(ah))
383 INIT_INI_ARRAY(&ah->iniModesTxGain,
384 ar9340Modes_lowest_ob_db_tx_gain_table_1p0,
385 ARRAY_SIZE(ar9340Modes_lowest_ob_db_tx_gain_table_1p0),
386 5);
387 else if (AR_SREV_9485_11(ah))
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530388 INIT_INI_ARRAY(&ah->iniModesTxGain,
389 ar9485Modes_high_power_tx_gain_1_1,
390 ARRAY_SIZE(ar9485Modes_high_power_tx_gain_1_1),
391 5);
Vasanthakumar Thiagarajanff48ba42010-12-06 04:27:38 -0800392 else
393 INIT_INI_ARRAY(&ah->iniModesTxGain,
394 ar9300Modes_high_power_tx_gain_table_2p2,
395 ARRAY_SIZE(ar9300Modes_high_power_tx_gain_table_2p2),
396 5);
Luis R. Rodriguezc14a85d2010-04-15 17:39:21 -0400397 break;
398 }
399}
400
401static void ar9003_rx_gain_table_apply(struct ath_hw *ah)
402{
403 switch (ar9003_hw_get_rx_gain_idx(ah)) {
404 case 0:
405 default:
Vasanthakumar Thiagarajand7fd52a2011-04-19 19:29:06 +0530406 if (AR_SREV_9340(ah))
407 INIT_INI_ARRAY(&ah->iniModesRxGain,
408 ar9340Common_rx_gain_table_1p0,
409 ARRAY_SIZE(ar9340Common_rx_gain_table_1p0),
410 2);
411 else if (AR_SREV_9485_11(ah))
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530412 INIT_INI_ARRAY(&ah->iniModesRxGain,
Vasanthakumar Thiagarajan832fd352011-04-01 15:32:16 +0530413 ar9485Common_wo_xlna_rx_gain_1_1,
414 ARRAY_SIZE(ar9485Common_wo_xlna_rx_gain_1_1),
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530415 2);
Vasanthakumar Thiagarajanff48ba42010-12-06 04:27:38 -0800416 else
417 INIT_INI_ARRAY(&ah->iniModesRxGain,
418 ar9300Common_rx_gain_table_2p2,
419 ARRAY_SIZE(ar9300Common_rx_gain_table_2p2),
420 2);
Luis R. Rodriguezc14a85d2010-04-15 17:39:21 -0400421 break;
422 case 1:
Vasanthakumar Thiagarajand7fd52a2011-04-19 19:29:06 +0530423 if (AR_SREV_9340(ah))
424 INIT_INI_ARRAY(&ah->iniModesRxGain,
425 ar9340Common_wo_xlna_rx_gain_table_1p0,
426 ARRAY_SIZE(ar9340Common_wo_xlna_rx_gain_table_1p0),
427 2);
428 else if (AR_SREV_9485_11(ah))
Vivek Natarajan1a63e2c2011-02-18 16:49:47 +0530429 INIT_INI_ARRAY(&ah->iniModesRxGain,
430 ar9485Common_wo_xlna_rx_gain_1_1,
431 ARRAY_SIZE(ar9485Common_wo_xlna_rx_gain_1_1),
432 2);
Vasanthakumar Thiagarajanff48ba42010-12-06 04:27:38 -0800433 else
434 INIT_INI_ARRAY(&ah->iniModesRxGain,
435 ar9300Common_wo_xlna_rx_gain_table_2p2,
436 ARRAY_SIZE(ar9300Common_wo_xlna_rx_gain_table_2p2),
437 2);
Luis R. Rodriguezc14a85d2010-04-15 17:39:21 -0400438 break;
439 }
440}
441
442/* set gain table pointers according to values read from the eeprom */
443static void ar9003_hw_init_mode_gain_regs(struct ath_hw *ah)
444{
445 ar9003_tx_gain_table_apply(ah);
446 ar9003_rx_gain_table_apply(ah);
447}
448
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -0400449/*
450 * Helper for ASPM support.
451 *
452 * Disable PLL when in L0s as well as receiver clock when in L1.
453 * This power saving option must be enabled through the SerDes.
454 *
455 * Programming the SerDes must go through the same 288 bit serial shift
456 * register as the other analog registers. Hence the 9 writes.
457 */
458static void ar9003_hw_configpcipowersave(struct ath_hw *ah,
459 int restore,
460 int power_off)
461{
462 if (ah->is_pciexpress != true)
463 return;
464
465 /* Do not touch SerDes registers */
466 if (ah->config.pcie_powersave_enable == 2)
467 return;
468
469 /* Nothing to do on restore for 11N */
470 if (!restore) {
471 /* set bit 19 to allow forcing of pcie core into L1 state */
472 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
473
474 /* Several PCIe massages to ensure proper behaviour */
475 if (ah->config.pcie_waen)
476 REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400477 else
478 REG_WRITE(ah, AR_WA, ah->WARegVal);
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -0400479 }
Luis R. Rodriguez653fe372010-06-21 18:38:48 -0400480
481 /*
482 * Configire PCIE after Ini init. SERDES values now come from ini file
483 * This enables PCIe low power mode.
484 */
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400485 if (ah->config.pcieSerDesWrite) {
Luis R. Rodriguez653fe372010-06-21 18:38:48 -0400486 unsigned int i;
Luis R. Rodriguezd5c4d192010-06-21 18:38:50 -0400487 struct ar5416IniArray *array;
Luis R. Rodriguez653fe372010-06-21 18:38:48 -0400488
Luis R. Rodriguezd5c4d192010-06-21 18:38:50 -0400489 array = power_off ? &ah->iniPcieSerdes :
490 &ah->iniPcieSerdesLowPower;
491
492 for (i = 0; i < array->ia_rows; i++) {
Luis R. Rodriguez653fe372010-06-21 18:38:48 -0400493 REG_WRITE(ah,
Luis R. Rodriguezd5c4d192010-06-21 18:38:50 -0400494 INI_RA(array, i, 0),
495 INI_RA(array, i, 1));
Luis R. Rodriguez653fe372010-06-21 18:38:48 -0400496 }
497 }
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -0400498}
499
500/* Sets up the AR9003 hardware familiy callbacks */
501void ar9003_hw_attach_ops(struct ath_hw *ah)
502{
503 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
504 struct ath_hw_ops *ops = ath9k_hw_ops(ah);
505
506 priv_ops->init_mode_regs = ar9003_hw_init_mode_regs;
Luis R. Rodriguezc14a85d2010-04-15 17:39:21 -0400507 priv_ops->init_mode_gain_regs = ar9003_hw_init_mode_gain_regs;
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -0400508
509 ops->config_pci_powersave = ar9003_hw_configpcipowersave;
510
511 ar9003_hw_attach_phy_ops(ah);
512 ar9003_hw_attach_calib_ops(ah);
513 ar9003_hw_attach_mac_ops(ah);
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -0400514}