blob: a7701079a88ae8337ba02419f609a59fd09f8a72 [file] [log] [blame]
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04001/*
2 * Copyright (c) 2010 Atheros Communications Inc.
3 *
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#ifndef ATH9K_HW_OPS_H
18#define ATH9K_HW_OPS_H
19
20#include "hw.h"
21
22/* Hardware core and driver accessible callbacks */
23
24static inline void ath9k_hw_configpcipowersave(struct ath_hw *ah,
25 int restore,
26 int power_off)
27{
28 ath9k_hw_ops(ah)->config_pci_powersave(ah, restore, power_off);
29}
30
Vasanthakumar Thiagarajancee1f622010-04-15 17:38:26 -040031static inline void ath9k_hw_rxena(struct ath_hw *ah)
32{
33 ath9k_hw_ops(ah)->rx_enable(ah);
34}
35
Vasanthakumar Thiagarajan87d5efb2010-04-15 17:38:43 -040036static inline void ath9k_hw_set_desc_link(struct ath_hw *ah, void *ds,
37 u32 link)
38{
39 ath9k_hw_ops(ah)->set_desc_link(ds, link);
40}
41
42static inline void ath9k_hw_get_desc_link(struct ath_hw *ah, void *ds,
43 u32 **link)
44{
45 ath9k_hw_ops(ah)->get_desc_link(ds, link);
46}
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040047/* Private hardware call ops */
48
49/* PHY ops */
50
51static inline int ath9k_hw_rf_set_freq(struct ath_hw *ah,
52 struct ath9k_channel *chan)
53{
54 return ath9k_hw_private_ops(ah)->rf_set_freq(ah, chan);
55}
56
57static inline void ath9k_hw_spur_mitigate_freq(struct ath_hw *ah,
58 struct ath9k_channel *chan)
59{
60 ath9k_hw_private_ops(ah)->spur_mitigate_freq(ah, chan);
61}
62
63static inline int ath9k_hw_rf_alloc_ext_banks(struct ath_hw *ah)
64{
65 if (!ath9k_hw_private_ops(ah)->rf_alloc_ext_banks)
66 return 0;
67
68 return ath9k_hw_private_ops(ah)->rf_alloc_ext_banks(ah);
69}
70
71static inline void ath9k_hw_rf_free_ext_banks(struct ath_hw *ah)
72{
73 if (!ath9k_hw_private_ops(ah)->rf_free_ext_banks)
74 return;
75
76 ath9k_hw_private_ops(ah)->rf_free_ext_banks(ah);
77}
78
79static inline bool ath9k_hw_set_rf_regs(struct ath_hw *ah,
80 struct ath9k_channel *chan,
81 u16 modesIndex)
82{
83 if (!ath9k_hw_private_ops(ah)->set_rf_regs)
84 return true;
85
86 return ath9k_hw_private_ops(ah)->set_rf_regs(ah, chan, modesIndex);
87}
88
89static inline void ath9k_hw_init_bb(struct ath_hw *ah,
90 struct ath9k_channel *chan)
91{
92 return ath9k_hw_private_ops(ah)->init_bb(ah, chan);
93}
94
95static inline void ath9k_hw_set_channel_regs(struct ath_hw *ah,
96 struct ath9k_channel *chan)
97{
98 return ath9k_hw_private_ops(ah)->set_channel_regs(ah, chan);
99}
100
101static inline int ath9k_hw_process_ini(struct ath_hw *ah,
102 struct ath9k_channel *chan)
103{
104 return ath9k_hw_private_ops(ah)->process_ini(ah, chan);
105}
106
107static inline void ath9k_olc_init(struct ath_hw *ah)
108{
109 if (!ath9k_hw_private_ops(ah)->olc_init)
110 return;
111
112 return ath9k_hw_private_ops(ah)->olc_init(ah);
113}
114
115static inline void ath9k_hw_set_rfmode(struct ath_hw *ah,
116 struct ath9k_channel *chan)
117{
118 return ath9k_hw_private_ops(ah)->set_rfmode(ah, chan);
119}
120
121static inline void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
122{
123 return ath9k_hw_private_ops(ah)->mark_phy_inactive(ah);
124}
125
126static inline void ath9k_hw_set_delta_slope(struct ath_hw *ah,
127 struct ath9k_channel *chan)
128{
129 return ath9k_hw_private_ops(ah)->set_delta_slope(ah, chan);
130}
131
132static inline bool ath9k_hw_rfbus_req(struct ath_hw *ah)
133{
134 return ath9k_hw_private_ops(ah)->rfbus_req(ah);
135}
136
137static inline void ath9k_hw_rfbus_done(struct ath_hw *ah)
138{
139 return ath9k_hw_private_ops(ah)->rfbus_done(ah);
140}
141
142static inline void ath9k_enable_rfkill(struct ath_hw *ah)
143{
144 return ath9k_hw_private_ops(ah)->enable_rfkill(ah);
145}
146
147static inline void ath9k_hw_restore_chainmask(struct ath_hw *ah)
148{
149 if (!ath9k_hw_private_ops(ah)->restore_chainmask)
150 return;
151
152 return ath9k_hw_private_ops(ah)->restore_chainmask(ah);
153}
154
155static inline void ath9k_hw_set_diversity(struct ath_hw *ah, bool value)
156{
157 return ath9k_hw_private_ops(ah)->set_diversity(ah, value);
158}
159
Felix Fietkauc16fcb42010-04-15 17:38:39 -0400160static inline bool ath9k_hw_ani_control(struct ath_hw *ah,
161 enum ath9k_ani_cmd cmd, int param)
162{
163 return ath9k_hw_private_ops(ah)->ani_control(ah, cmd, param);
164}
165
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400166#endif /* ATH9K_HW_OPS_H */