| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1 | /* | 
 | 2 |  | 
 | 3 |   Broadcom B43 wireless driver | 
 | 4 |  | 
 | 5 |   Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>, | 
| Stefano Brivio | 1f21ad2 | 2007-11-06 22:49:20 +0100 | [diff] [blame] | 6 |                      Stefano Brivio <stefano.brivio@polimi.it> | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 7 |                      Michael Buesch <mb@bu3sch.de> | 
 | 8 |                      Danny van Dyk <kugelfang@gentoo.org> | 
 | 9 |                      Andreas Jaggi <andreas.jaggi@waterwave.ch> | 
 | 10 |  | 
 | 11 |   Some parts of the code in this file are derived from the ipw2200 | 
 | 12 |   driver  Copyright(c) 2003 - 2004 Intel Corporation. | 
 | 13 |  | 
 | 14 |   This program is free software; you can redistribute it and/or modify | 
 | 15 |   it under the terms of the GNU General Public License as published by | 
 | 16 |   the Free Software Foundation; either version 2 of the License, or | 
 | 17 |   (at your option) any later version. | 
 | 18 |  | 
 | 19 |   This program is distributed in the hope that it will be useful, | 
 | 20 |   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 21 |   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 22 |   GNU General Public License for more details. | 
 | 23 |  | 
 | 24 |   You should have received a copy of the GNU General Public License | 
 | 25 |   along with this program; see the file COPYING.  If not, write to | 
 | 26 |   the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, | 
 | 27 |   Boston, MA 02110-1301, USA. | 
 | 28 |  | 
 | 29 | */ | 
 | 30 |  | 
 | 31 | #ifndef B43_MAIN_H_ | 
 | 32 | #define B43_MAIN_H_ | 
 | 33 |  | 
 | 34 | #include "b43.h" | 
 | 35 |  | 
 | 36 | #define P4D_BYT3S(magic, nr_bytes)	u8 __p4dding##magic[nr_bytes] | 
 | 37 | #define P4D_BYTES(line, nr_bytes)	P4D_BYT3S(line, nr_bytes) | 
 | 38 | /* Magic helper macro to pad structures. Ignore those above. It's magic. */ | 
 | 39 | #define PAD_BYTES(nr_bytes)		P4D_BYTES( __LINE__ , (nr_bytes)) | 
 | 40 |  | 
| Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 41 |  | 
 | 42 | extern int b43_modparam_qos; | 
| Michael Buesch | 060210f | 2009-01-25 15:49:59 +0100 | [diff] [blame] | 43 | extern int b43_modparam_verbose; | 
 | 44 |  | 
 | 45 | /* Logmessage verbosity levels. Update the b43_modparam_verbose helptext, if | 
 | 46 |  * you add or remove levels. */ | 
 | 47 | enum b43_verbosity { | 
 | 48 | 	B43_VERBOSITY_ERROR, | 
 | 49 | 	B43_VERBOSITY_WARN, | 
 | 50 | 	B43_VERBOSITY_INFO, | 
 | 51 | 	B43_VERBOSITY_DEBUG, | 
 | 52 | 	__B43_VERBOSITY_AFTERLAST, /* keep last */ | 
 | 53 |  | 
 | 54 | 	B43_VERBOSITY_MAX = __B43_VERBOSITY_AFTERLAST - 1, | 
 | 55 | #if B43_DEBUG | 
 | 56 | 	B43_VERBOSITY_DEFAULT = B43_VERBOSITY_DEBUG, | 
 | 57 | #else | 
 | 58 | 	B43_VERBOSITY_DEFAULT = B43_VERBOSITY_INFO, | 
 | 59 | #endif | 
 | 60 | }; | 
| Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 61 |  | 
 | 62 |  | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 63 | /* Lightweight function to convert a frequency (in Mhz) to a channel number. */ | 
| Michael Buesch | d987160 | 2008-01-02 18:55:53 +0100 | [diff] [blame] | 64 | static inline u8 b43_freq_to_channel_5ghz(int freq) | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 65 | { | 
 | 66 | 	return ((freq - 5000) / 5); | 
 | 67 | } | 
| Michael Buesch | d987160 | 2008-01-02 18:55:53 +0100 | [diff] [blame] | 68 | static inline u8 b43_freq_to_channel_2ghz(int freq) | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 69 | { | 
 | 70 | 	u8 channel; | 
 | 71 |  | 
 | 72 | 	if (freq == 2484) | 
 | 73 | 		channel = 14; | 
 | 74 | 	else | 
 | 75 | 		channel = (freq - 2407) / 5; | 
 | 76 |  | 
 | 77 | 	return channel; | 
 | 78 | } | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 79 |  | 
 | 80 | /* Lightweight function to convert a channel number to a frequency (in Mhz). */ | 
| Michael Buesch | d987160 | 2008-01-02 18:55:53 +0100 | [diff] [blame] | 81 | static inline int b43_channel_to_freq_5ghz(u8 channel) | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 82 | { | 
 | 83 | 	return (5000 + (5 * channel)); | 
 | 84 | } | 
| Michael Buesch | d987160 | 2008-01-02 18:55:53 +0100 | [diff] [blame] | 85 | static inline int b43_channel_to_freq_2ghz(u8 channel) | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 86 | { | 
 | 87 | 	int freq; | 
 | 88 |  | 
 | 89 | 	if (channel == 14) | 
 | 90 | 		freq = 2484; | 
 | 91 | 	else | 
 | 92 | 		freq = 2407 + (5 * channel); | 
 | 93 |  | 
 | 94 | 	return freq; | 
 | 95 | } | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 96 |  | 
 | 97 | static inline int b43_is_cck_rate(int rate) | 
 | 98 | { | 
 | 99 | 	return (rate == B43_CCK_RATE_1MB || | 
 | 100 | 		rate == B43_CCK_RATE_2MB || | 
 | 101 | 		rate == B43_CCK_RATE_5MB || rate == B43_CCK_RATE_11MB); | 
 | 102 | } | 
 | 103 |  | 
 | 104 | static inline int b43_is_ofdm_rate(int rate) | 
 | 105 | { | 
 | 106 | 	return !b43_is_cck_rate(rate); | 
 | 107 | } | 
 | 108 |  | 
| Michael Buesch | 9db1f6d | 2007-12-22 21:54:20 +0100 | [diff] [blame] | 109 | u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev, | 
 | 110 | 				  u8 antenna_nr); | 
 | 111 |  | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 112 | void b43_tsf_read(struct b43_wldev *dev, u64 * tsf); | 
 | 113 | void b43_tsf_write(struct b43_wldev *dev, u64 tsf); | 
 | 114 |  | 
 | 115 | u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset); | 
| Michael Buesch | 6bbc321 | 2008-06-19 19:33:51 +0200 | [diff] [blame] | 116 | u32 __b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset); | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 117 | u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset); | 
| Michael Buesch | 6bbc321 | 2008-06-19 19:33:51 +0200 | [diff] [blame] | 118 | u16 __b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset); | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 119 | void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value); | 
| Michael Buesch | 6bbc321 | 2008-06-19 19:33:51 +0200 | [diff] [blame] | 120 | void __b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value); | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 121 | void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value); | 
| Michael Buesch | 6bbc321 | 2008-06-19 19:33:51 +0200 | [diff] [blame] | 122 | void __b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value); | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 123 |  | 
| Michael Buesch | 35f0d35 | 2008-02-13 14:31:08 +0100 | [diff] [blame] | 124 | u64 b43_hf_read(struct b43_wldev *dev); | 
 | 125 | void b43_hf_write(struct b43_wldev *dev, u64 value); | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 126 |  | 
 | 127 | void b43_dummy_transmission(struct b43_wldev *dev); | 
 | 128 |  | 
 | 129 | void b43_wireless_core_reset(struct b43_wldev *dev, u32 flags); | 
 | 130 |  | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 131 | void b43_controller_restart(struct b43_wldev *dev, const char *reason); | 
 | 132 |  | 
 | 133 | #define B43_PS_ENABLED	(1 << 0)	/* Force enable hardware power saving */ | 
 | 134 | #define B43_PS_DISABLED	(1 << 1)	/* Force disable hardware power saving */ | 
 | 135 | #define B43_PS_AWAKE	(1 << 2)	/* Force device awake */ | 
 | 136 | #define B43_PS_ASLEEP	(1 << 3)	/* Force device asleep */ | 
 | 137 | void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags); | 
 | 138 |  | 
| Michael Buesch | f5eda47 | 2008-04-20 16:03:32 +0200 | [diff] [blame] | 139 | void b43_mac_suspend(struct b43_wldev *dev); | 
 | 140 | void b43_mac_enable(struct b43_wldev *dev); | 
 | 141 |  | 
| Michael Buesch | 1a9f509 | 2009-01-23 21:21:51 +0100 | [diff] [blame] | 142 |  | 
 | 143 | struct b43_request_fw_context; | 
 | 144 | int b43_do_request_fw(struct b43_request_fw_context *ctx, | 
 | 145 | 		      const char *name, | 
 | 146 | 		      struct b43_firmware_file *fw); | 
 | 147 | void b43_do_release_fw(struct b43_firmware_file *fw); | 
 | 148 |  | 
| Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 149 | #endif /* B43_MAIN_H_ */ |