Thomas Gleixner | ca47d34 | 2019-05-19 15:51:50 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 2 | /* |
| 3 | |
| 4 | Broadcom B43 wireless driver |
| 5 | |
| 6 | Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>, |
Stefano Brivio | 1f21ad2 | 2007-11-06 22:49:20 +0100 | [diff] [blame] | 7 | Stefano Brivio <stefano.brivio@polimi.it> |
Michael Büsch | eb032b9 | 2011-07-04 20:50:05 +0200 | [diff] [blame] | 8 | Michael Buesch <m@bues.ch> |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 9 | Danny van Dyk <kugelfang@gentoo.org> |
| 10 | Andreas Jaggi <andreas.jaggi@waterwave.ch> |
| 11 | |
| 12 | Some parts of the code in this file are derived from the ipw2200 |
| 13 | driver Copyright(c) 2003 - 2004 Intel Corporation. |
| 14 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 15 | |
| 16 | */ |
| 17 | |
| 18 | #ifndef B43_MAIN_H_ |
| 19 | #define B43_MAIN_H_ |
| 20 | |
| 21 | #include "b43.h" |
| 22 | |
| 23 | #define P4D_BYT3S(magic, nr_bytes) u8 __p4dding##magic[nr_bytes] |
| 24 | #define P4D_BYTES(line, nr_bytes) P4D_BYT3S(line, nr_bytes) |
| 25 | /* Magic helper macro to pad structures. Ignore those above. It's magic. */ |
| 26 | #define PAD_BYTES(nr_bytes) P4D_BYTES( __LINE__ , (nr_bytes)) |
| 27 | |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 28 | |
Michael Buesch | 060210f | 2009-01-25 15:49:59 +0100 | [diff] [blame] | 29 | extern int b43_modparam_verbose; |
| 30 | |
| 31 | /* Logmessage verbosity levels. Update the b43_modparam_verbose helptext, if |
| 32 | * you add or remove levels. */ |
| 33 | enum b43_verbosity { |
| 34 | B43_VERBOSITY_ERROR, |
| 35 | B43_VERBOSITY_WARN, |
| 36 | B43_VERBOSITY_INFO, |
| 37 | B43_VERBOSITY_DEBUG, |
| 38 | __B43_VERBOSITY_AFTERLAST, /* keep last */ |
| 39 | |
| 40 | B43_VERBOSITY_MAX = __B43_VERBOSITY_AFTERLAST - 1, |
| 41 | #if B43_DEBUG |
| 42 | B43_VERBOSITY_DEFAULT = B43_VERBOSITY_DEBUG, |
| 43 | #else |
| 44 | B43_VERBOSITY_DEFAULT = B43_VERBOSITY_INFO, |
| 45 | #endif |
| 46 | }; |
Michael Buesch | e6f5b93 | 2008-03-05 21:18:49 +0100 | [diff] [blame] | 47 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 48 | static inline int b43_is_cck_rate(int rate) |
| 49 | { |
| 50 | return (rate == B43_CCK_RATE_1MB || |
| 51 | rate == B43_CCK_RATE_2MB || |
| 52 | rate == B43_CCK_RATE_5MB || rate == B43_CCK_RATE_11MB); |
| 53 | } |
| 54 | |
| 55 | static inline int b43_is_ofdm_rate(int rate) |
| 56 | { |
| 57 | return !b43_is_cck_rate(rate); |
| 58 | } |
| 59 | |
Michael Buesch | 9db1f6d | 2007-12-22 21:54:20 +0100 | [diff] [blame] | 60 | u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev, |
| 61 | u8 antenna_nr); |
| 62 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 63 | void b43_tsf_read(struct b43_wldev *dev, u64 * tsf); |
| 64 | void b43_tsf_write(struct b43_wldev *dev, u64 tsf); |
| 65 | |
| 66 | u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset); |
| 67 | u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset); |
| 68 | void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value); |
| 69 | void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value); |
| 70 | |
Michael Buesch | 35f0d35 | 2008-02-13 14:31:08 +0100 | [diff] [blame] | 71 | u64 b43_hf_read(struct b43_wldev *dev); |
| 72 | void b43_hf_write(struct b43_wldev *dev, u64 value); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 73 | |
Gábor Stefanik | 2f19c28 | 2009-08-13 16:51:51 +0200 | [diff] [blame] | 74 | void b43_dummy_transmission(struct b43_wldev *dev, bool ofdm, bool pa_on); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 75 | |
Rafał Miłecki | 4da909e | 2011-06-02 01:07:12 +0200 | [diff] [blame] | 76 | void b43_wireless_core_reset(struct b43_wldev *dev, bool gmode); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 77 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 78 | void b43_controller_restart(struct b43_wldev *dev, const char *reason); |
| 79 | |
| 80 | #define B43_PS_ENABLED (1 << 0) /* Force enable hardware power saving */ |
| 81 | #define B43_PS_DISABLED (1 << 1) /* Force disable hardware power saving */ |
| 82 | #define B43_PS_AWAKE (1 << 2) /* Force device awake */ |
| 83 | #define B43_PS_ASLEEP (1 << 3) /* Force device asleep */ |
| 84 | void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags); |
| 85 | |
Rafał Miłecki | 737f657 | 2014-09-12 18:37:26 +0200 | [diff] [blame] | 86 | void b43_wireless_core_phy_pll_reset(struct b43_wldev *dev); |
| 87 | |
Michael Buesch | f5eda47 | 2008-04-20 16:03:32 +0200 | [diff] [blame] | 88 | void b43_mac_suspend(struct b43_wldev *dev); |
| 89 | void b43_mac_enable(struct b43_wldev *dev); |
Rafał Miłecki | 858a165 | 2011-05-10 16:05:33 +0200 | [diff] [blame] | 90 | void b43_mac_phy_clock_set(struct b43_wldev *dev, bool on); |
Rafał Miłecki | c2cb2c4 | 2014-07-17 19:31:05 +0200 | [diff] [blame] | 91 | void b43_mac_switch_freq(struct b43_wldev *dev, u8 spurmode); |
Michael Buesch | f5eda47 | 2008-04-20 16:03:32 +0200 | [diff] [blame] | 92 | |
Michael Buesch | 1a9f509 | 2009-01-23 21:21:51 +0100 | [diff] [blame] | 93 | |
| 94 | struct b43_request_fw_context; |
Larry Finger | 5e20a4b | 2012-12-20 15:55:01 -0600 | [diff] [blame] | 95 | int b43_do_request_fw(struct b43_request_fw_context *ctx, const char *name, |
| 96 | struct b43_firmware_file *fw, bool async); |
Michael Buesch | 1a9f509 | 2009-01-23 21:21:51 +0100 | [diff] [blame] | 97 | void b43_do_release_fw(struct b43_firmware_file *fw); |
| 98 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 99 | #endif /* B43_MAIN_H_ */ |