ath9k: merge common ->config_pci_powersave() checks
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / ath / ath9k / hw-ops.h
blobdd9003ee123bfbe6701eedd519cdb749c643960a
1 /*
2 * Copyright (c) 2010-2011 Atheros Communications Inc.
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.
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.
17 #ifndef ATH9K_HW_OPS_H
18 #define ATH9K_HW_OPS_H
20 #include "hw.h"
22 /* Hardware core and driver accessible callbacks */
24 static inline void ath9k_hw_configpcipowersave(struct ath_hw *ah,
25 bool power_off)
27 if (ah->aspm_enabled != true)
28 return;
30 ath9k_hw_ops(ah)->config_pci_powersave(ah, power_off);
33 static inline void ath9k_hw_rxena(struct ath_hw *ah)
35 ath9k_hw_ops(ah)->rx_enable(ah);
38 static inline void ath9k_hw_set_desc_link(struct ath_hw *ah, void *ds,
39 u32 link)
41 ath9k_hw_ops(ah)->set_desc_link(ds, link);
44 static inline bool ath9k_hw_calibrate(struct ath_hw *ah,
45 struct ath9k_channel *chan,
46 u8 rxchainmask,
47 bool longcal)
49 return ath9k_hw_ops(ah)->calibrate(ah, chan, rxchainmask, longcal);
52 static inline bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
54 return ath9k_hw_ops(ah)->get_isr(ah, masked);
57 static inline void ath9k_hw_filltxdesc(struct ath_hw *ah, void *ds, u32 seglen,
58 bool is_firstseg, bool is_lastseg,
59 const void *ds0, dma_addr_t buf_addr,
60 unsigned int qcu)
62 ath9k_hw_ops(ah)->fill_txdesc(ah, ds, seglen, is_firstseg, is_lastseg,
63 ds0, buf_addr, qcu);
66 static inline int ath9k_hw_txprocdesc(struct ath_hw *ah, void *ds,
67 struct ath_tx_status *ts)
69 return ath9k_hw_ops(ah)->proc_txdesc(ah, ds, ts);
72 static inline void ath9k_hw_set11n_txdesc(struct ath_hw *ah, void *ds,
73 u32 pktLen, enum ath9k_pkt_type type,
74 u32 txPower, u32 keyIx,
75 enum ath9k_key_type keyType,
76 u32 flags)
78 ath9k_hw_ops(ah)->set11n_txdesc(ah, ds, pktLen, type, txPower, keyIx,
79 keyType, flags);
82 static inline void ath9k_hw_set11n_ratescenario(struct ath_hw *ah, void *ds,
83 void *lastds,
84 u32 durUpdateEn, u32 rtsctsRate,
85 u32 rtsctsDuration,
86 struct ath9k_11n_rate_series series[],
87 u32 nseries, u32 flags)
89 ath9k_hw_ops(ah)->set11n_ratescenario(ah, ds, lastds, durUpdateEn,
90 rtsctsRate, rtsctsDuration, series,
91 nseries, flags);
94 static inline void ath9k_hw_set11n_aggr_first(struct ath_hw *ah, void *ds,
95 u32 aggrLen)
97 ath9k_hw_ops(ah)->set11n_aggr_first(ah, ds, aggrLen);
100 static inline void ath9k_hw_set11n_aggr_middle(struct ath_hw *ah, void *ds,
101 u32 numDelims)
103 ath9k_hw_ops(ah)->set11n_aggr_middle(ah, ds, numDelims);
106 static inline void ath9k_hw_set11n_aggr_last(struct ath_hw *ah, void *ds)
108 ath9k_hw_ops(ah)->set11n_aggr_last(ah, ds);
111 static inline void ath9k_hw_clr11n_aggr(struct ath_hw *ah, void *ds)
113 ath9k_hw_ops(ah)->clr11n_aggr(ah, ds);
116 static inline void ath9k_hw_set_clrdmask(struct ath_hw *ah, void *ds, bool val)
118 ath9k_hw_ops(ah)->set_clrdmask(ah, ds, val);
121 static inline void ath9k_hw_antdiv_comb_conf_get(struct ath_hw *ah,
122 struct ath_hw_antcomb_conf *antconf)
124 ath9k_hw_ops(ah)->antdiv_comb_conf_get(ah, antconf);
127 static inline void ath9k_hw_antdiv_comb_conf_set(struct ath_hw *ah,
128 struct ath_hw_antcomb_conf *antconf)
130 ath9k_hw_ops(ah)->antdiv_comb_conf_set(ah, antconf);
133 /* Private hardware call ops */
135 /* PHY ops */
137 static inline int ath9k_hw_rf_set_freq(struct ath_hw *ah,
138 struct ath9k_channel *chan)
140 return ath9k_hw_private_ops(ah)->rf_set_freq(ah, chan);
143 static inline void ath9k_hw_spur_mitigate_freq(struct ath_hw *ah,
144 struct ath9k_channel *chan)
146 ath9k_hw_private_ops(ah)->spur_mitigate_freq(ah, chan);
149 static inline int ath9k_hw_rf_alloc_ext_banks(struct ath_hw *ah)
151 if (!ath9k_hw_private_ops(ah)->rf_alloc_ext_banks)
152 return 0;
154 return ath9k_hw_private_ops(ah)->rf_alloc_ext_banks(ah);
157 static inline void ath9k_hw_rf_free_ext_banks(struct ath_hw *ah)
159 if (!ath9k_hw_private_ops(ah)->rf_free_ext_banks)
160 return;
162 ath9k_hw_private_ops(ah)->rf_free_ext_banks(ah);
165 static inline bool ath9k_hw_set_rf_regs(struct ath_hw *ah,
166 struct ath9k_channel *chan,
167 u16 modesIndex)
169 if (!ath9k_hw_private_ops(ah)->set_rf_regs)
170 return true;
172 return ath9k_hw_private_ops(ah)->set_rf_regs(ah, chan, modesIndex);
175 static inline void ath9k_hw_init_bb(struct ath_hw *ah,
176 struct ath9k_channel *chan)
178 return ath9k_hw_private_ops(ah)->init_bb(ah, chan);
181 static inline void ath9k_hw_set_channel_regs(struct ath_hw *ah,
182 struct ath9k_channel *chan)
184 return ath9k_hw_private_ops(ah)->set_channel_regs(ah, chan);
187 static inline int ath9k_hw_process_ini(struct ath_hw *ah,
188 struct ath9k_channel *chan)
190 return ath9k_hw_private_ops(ah)->process_ini(ah, chan);
193 static inline void ath9k_olc_init(struct ath_hw *ah)
195 if (!ath9k_hw_private_ops(ah)->olc_init)
196 return;
198 return ath9k_hw_private_ops(ah)->olc_init(ah);
201 static inline void ath9k_hw_set_rfmode(struct ath_hw *ah,
202 struct ath9k_channel *chan)
204 return ath9k_hw_private_ops(ah)->set_rfmode(ah, chan);
207 static inline void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
209 return ath9k_hw_private_ops(ah)->mark_phy_inactive(ah);
212 static inline void ath9k_hw_set_delta_slope(struct ath_hw *ah,
213 struct ath9k_channel *chan)
215 return ath9k_hw_private_ops(ah)->set_delta_slope(ah, chan);
218 static inline bool ath9k_hw_rfbus_req(struct ath_hw *ah)
220 return ath9k_hw_private_ops(ah)->rfbus_req(ah);
223 static inline void ath9k_hw_rfbus_done(struct ath_hw *ah)
225 return ath9k_hw_private_ops(ah)->rfbus_done(ah);
228 static inline void ath9k_hw_restore_chainmask(struct ath_hw *ah)
230 if (!ath9k_hw_private_ops(ah)->restore_chainmask)
231 return;
233 return ath9k_hw_private_ops(ah)->restore_chainmask(ah);
236 static inline void ath9k_hw_set_diversity(struct ath_hw *ah, bool value)
238 return ath9k_hw_private_ops(ah)->set_diversity(ah, value);
241 static inline bool ath9k_hw_ani_control(struct ath_hw *ah,
242 enum ath9k_ani_cmd cmd, int param)
244 return ath9k_hw_private_ops(ah)->ani_control(ah, cmd, param);
247 static inline void ath9k_hw_do_getnf(struct ath_hw *ah,
248 int16_t nfarray[NUM_NF_READINGS])
250 ath9k_hw_private_ops(ah)->do_getnf(ah, nfarray);
253 static inline bool ath9k_hw_init_cal(struct ath_hw *ah,
254 struct ath9k_channel *chan)
256 return ath9k_hw_private_ops(ah)->init_cal(ah, chan);
259 static inline void ath9k_hw_setup_calibration(struct ath_hw *ah,
260 struct ath9k_cal_list *currCal)
262 ath9k_hw_private_ops(ah)->setup_calibration(ah, currCal);
265 #endif /* ATH9K_HW_OPS_H */