diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2007-09-25 19:46:54 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:38 -0400 |
commit | 75388acd0cd827dc1498043daa7d1c760902cd67 (patch) | |
tree | 43fac7501291145963444e439f2ff30b9e5726e3 /drivers/net/wireless/b43legacy/main.h | |
parent | e4d6b7951812d98417feb10784e400e253caf633 (diff) |
[B43LEGACY]: add mac80211-based driver for legacy BCM43xx devices
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/b43legacy/main.h')
-rw-r--r-- | drivers/net/wireless/b43legacy/main.h | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43legacy/main.h b/drivers/net/wireless/b43legacy/main.h new file mode 100644 index 000000000000..673935e67e64 --- /dev/null +++ b/drivers/net/wireless/b43legacy/main.h | |||
@@ -0,0 +1,147 @@ | |||
1 | /* | ||
2 | |||
3 | Broadcom B43legacy wireless driver | ||
4 | |||
5 | Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>, | ||
6 | Copyright (c) 2005 Stefano Brivio <st3@riseup.net> | ||
7 | Copyright (c) 2005, 2006 Michael Buesch <mb@bu3sch.de> | ||
8 | Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org> | ||
9 | Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch> | ||
10 | Copyright (c) 2007 Larry Finger <Larry.Finger@lwfinger.net> | ||
11 | |||
12 | Some parts of the code in this file are derived from the ipw2200 | ||
13 | driver Copyright(c) 2003 - 2004 Intel Corporation. | ||
14 | |||
15 | This program is free software; you can redistribute it and/or modify | ||
16 | it under the terms of the GNU General Public License as published by | ||
17 | the Free Software Foundation; either version 2 of the License, or | ||
18 | (at your option) any later version. | ||
19 | |||
20 | This program is distributed in the hope that it will be useful, | ||
21 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
23 | GNU General Public License for more details. | ||
24 | |||
25 | You should have received a copy of the GNU General Public License | ||
26 | along with this program; see the file COPYING. If not, write to | ||
27 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, | ||
28 | Boston, MA 02110-1301, USA. | ||
29 | |||
30 | */ | ||
31 | |||
32 | #ifndef B43legacy_MAIN_H_ | ||
33 | #define B43legacy_MAIN_H_ | ||
34 | |||
35 | #include "b43legacy.h" | ||
36 | |||
37 | |||
38 | #define P4D_BYT3S(magic, nr_bytes) u8 __p4dding##magic[nr_bytes] | ||
39 | #define P4D_BYTES(line, nr_bytes) P4D_BYT3S(line, nr_bytes) | ||
40 | /* Magic helper macro to pad structures. Ignore those above. It's magic. */ | ||
41 | #define PAD_BYTES(nr_bytes) P4D_BYTES(__LINE__ , (nr_bytes)) | ||
42 | |||
43 | |||
44 | /* Lightweight function to convert a frequency (in Mhz) to a channel number. */ | ||
45 | static inline | ||
46 | u8 b43legacy_freq_to_channel_bg(int freq) | ||
47 | { | ||
48 | u8 channel; | ||
49 | |||
50 | if (freq == 2484) | ||
51 | channel = 14; | ||
52 | else | ||
53 | channel = (freq - 2407) / 5; | ||
54 | |||
55 | return channel; | ||
56 | } | ||
57 | static inline | ||
58 | u8 b43legacy_freq_to_channel(struct b43legacy_wldev *dev, | ||
59 | int freq) | ||
60 | { | ||
61 | return b43legacy_freq_to_channel_bg(freq); | ||
62 | } | ||
63 | |||
64 | /* Lightweight function to convert a channel number to a frequency (in Mhz). */ | ||
65 | static inline | ||
66 | int b43legacy_channel_to_freq_bg(u8 channel) | ||
67 | { | ||
68 | int freq; | ||
69 | |||
70 | if (channel == 14) | ||
71 | freq = 2484; | ||
72 | else | ||
73 | freq = 2407 + (5 * channel); | ||
74 | |||
75 | return freq; | ||
76 | } | ||
77 | |||
78 | static inline | ||
79 | int b43legacy_channel_to_freq(struct b43legacy_wldev *dev, | ||
80 | u8 channel) | ||
81 | { | ||
82 | return b43legacy_channel_to_freq_bg(channel); | ||
83 | } | ||
84 | |||
85 | static inline | ||
86 | int b43legacy_is_cck_rate(int rate) | ||
87 | { | ||
88 | return (rate == B43legacy_CCK_RATE_1MB || | ||
89 | rate == B43legacy_CCK_RATE_2MB || | ||
90 | rate == B43legacy_CCK_RATE_5MB || | ||
91 | rate == B43legacy_CCK_RATE_11MB); | ||
92 | } | ||
93 | |||
94 | static inline | ||
95 | int b43legacy_is_ofdm_rate(int rate) | ||
96 | { | ||
97 | return !b43legacy_is_cck_rate(rate); | ||
98 | } | ||
99 | |||
100 | static inline | ||
101 | int b43legacy_is_hw_radio_enabled(struct b43legacy_wldev *dev) | ||
102 | { | ||
103 | /* function to return state of hardware enable of radio | ||
104 | * returns 0 if radio disabled, 1 if radio enabled | ||
105 | */ | ||
106 | struct b43legacy_phy *phy = &dev->phy; | ||
107 | |||
108 | if (phy->rev >= 3) | ||
109 | return ((b43legacy_read32(dev, | ||
110 | B43legacy_MMIO_RADIO_HWENABLED_HI) | ||
111 | & B43legacy_MMIO_RADIO_HWENABLED_HI_MASK) | ||
112 | == 0) ? 1 : 0; | ||
113 | else | ||
114 | return ((b43legacy_read16(dev, | ||
115 | B43legacy_MMIO_RADIO_HWENABLED_LO) | ||
116 | & B43legacy_MMIO_RADIO_HWENABLED_LO_MASK) | ||
117 | == 0) ? 0 : 1; | ||
118 | } | ||
119 | |||
120 | void b43legacy_tsf_read(struct b43legacy_wldev *dev, u64 *tsf); | ||
121 | void b43legacy_tsf_write(struct b43legacy_wldev *dev, u64 tsf); | ||
122 | |||
123 | u32 b43legacy_shm_read32(struct b43legacy_wldev *dev, | ||
124 | u16 routing, u16 offset); | ||
125 | u16 b43legacy_shm_read16(struct b43legacy_wldev *dev, | ||
126 | u16 routing, u16 offset); | ||
127 | void b43legacy_shm_write32(struct b43legacy_wldev *dev, | ||
128 | u16 routing, u16 offset, | ||
129 | u32 value); | ||
130 | void b43legacy_shm_write16(struct b43legacy_wldev *dev, | ||
131 | u16 routing, u16 offset, | ||
132 | u16 value); | ||
133 | |||
134 | u32 b43legacy_hf_read(struct b43legacy_wldev *dev); | ||
135 | void b43legacy_hf_write(struct b43legacy_wldev *dev, u32 value); | ||
136 | |||
137 | void b43legacy_dummy_transmission(struct b43legacy_wldev *dev); | ||
138 | |||
139 | void b43legacy_wireless_core_reset(struct b43legacy_wldev *dev, u32 flags); | ||
140 | |||
141 | void b43legacy_mac_suspend(struct b43legacy_wldev *dev); | ||
142 | void b43legacy_mac_enable(struct b43legacy_wldev *dev); | ||
143 | |||
144 | void b43legacy_controller_restart(struct b43legacy_wldev *dev, | ||
145 | const char *reason); | ||
146 | |||
147 | #endif /* B43legacy_MAIN_H_ */ | ||