pcmcia: CompactFlash driver for PA Semi Electra boards
[pv_ops_mirror.git] / drivers / net / wireless / rt2x00 / rt2x00lib.h
blob298faa9d3f61520a79565eff5194c744b835d4a9
1 /*
2 Copyright (C) 2004 - 2007 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 Module: rt2x00lib
23 Abstract: Data structures and definitions for the rt2x00lib module.
26 #ifndef RT2X00LIB_H
27 #define RT2X00LIB_H
30 * Interval defines
31 * Both the link tuner as the rfkill will be called once per second.
33 #define LINK_TUNE_INTERVAL ( round_jiffies(HZ) )
34 #define RFKILL_POLL_INTERVAL ( 1000 )
37 * Radio control handlers.
39 int rt2x00lib_enable_radio(struct rt2x00_dev *rt2x00dev);
40 void rt2x00lib_disable_radio(struct rt2x00_dev *rt2x00dev);
41 void rt2x00lib_toggle_rx(struct rt2x00_dev *rt2x00dev, enum dev_state state);
42 void rt2x00lib_reset_link_tuner(struct rt2x00_dev *rt2x00dev);
45 * Initialization handlers.
47 int rt2x00lib_initialize(struct rt2x00_dev *rt2x00dev);
48 void rt2x00lib_uninitialize(struct rt2x00_dev *rt2x00dev);
51 * Configuration handlers.
53 void rt2x00lib_config_mac_addr(struct rt2x00_dev *rt2x00dev, u8 *mac);
54 void rt2x00lib_config_bssid(struct rt2x00_dev *rt2x00dev, u8 *bssid);
55 void rt2x00lib_config_type(struct rt2x00_dev *rt2x00dev, const int type);
56 void rt2x00lib_config(struct rt2x00_dev *rt2x00dev,
57 struct ieee80211_conf *conf, const int force_config);
60 * Firmware handlers.
62 #ifdef CONFIG_RT2X00_LIB_FIRMWARE
63 int rt2x00lib_load_firmware(struct rt2x00_dev *rt2x00dev);
64 void rt2x00lib_free_firmware(struct rt2x00_dev *rt2x00dev);
65 #else
66 static inline int rt2x00lib_load_firmware(struct rt2x00_dev *rt2x00dev)
68 return 0;
70 static inline void rt2x00lib_free_firmware(struct rt2x00_dev *rt2x00dev)
73 #endif /* CONFIG_RT2X00_LIB_FIRMWARE */
76 * Debugfs handlers.
78 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
79 void rt2x00debug_register(struct rt2x00_dev *rt2x00dev);
80 void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev);
81 #else
82 static inline void rt2x00debug_register(struct rt2x00_dev *rt2x00dev)
86 static inline void rt2x00debug_deregister(struct rt2x00_dev *rt2x00dev)
89 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
92 * RFkill handlers.
94 #ifdef CONFIG_RT2X00_LIB_RFKILL
95 int rt2x00rfkill_register(struct rt2x00_dev *rt2x00dev);
96 void rt2x00rfkill_unregister(struct rt2x00_dev *rt2x00dev);
97 int rt2x00rfkill_allocate(struct rt2x00_dev *rt2x00dev);
98 void rt2x00rfkill_free(struct rt2x00_dev *rt2x00dev);
99 #else
100 static inline int rt2x00rfkill_register(struct rt2x00_dev *rt2x00dev)
102 return 0;
105 static inline void rt2x00rfkill_unregister(struct rt2x00_dev *rt2x00dev)
109 static inline int rt2x00rfkill_allocate(struct rt2x00_dev *rt2x00dev)
111 return 0;
114 static inline void rt2x00rfkill_free(struct rt2x00_dev *rt2x00dev)
117 #endif /* CONFIG_RT2X00_LIB_RFKILL */
119 #endif /* RT2X00LIB_H */