main.h 4.6 KB

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