main.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. Broadcom B43 wireless driver
  3. Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
  4. Stefano Brivio <st3@riseup.net>
  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. /* Lightweight function to convert a frequency (in Mhz) to a channel number. */
  31. static inline u8 b43_freq_to_channel_a(int freq)
  32. {
  33. return ((freq - 5000) / 5);
  34. }
  35. static inline u8 b43_freq_to_channel_bg(int freq)
  36. {
  37. u8 channel;
  38. if (freq == 2484)
  39. channel = 14;
  40. else
  41. channel = (freq - 2407) / 5;
  42. return channel;
  43. }
  44. static inline u8 b43_freq_to_channel(struct b43_wldev *dev, int freq)
  45. {
  46. if (dev->phy.type == B43_PHYTYPE_A)
  47. return b43_freq_to_channel_a(freq);
  48. return b43_freq_to_channel_bg(freq);
  49. }
  50. /* Lightweight function to convert a channel number to a frequency (in Mhz). */
  51. static inline int b43_channel_to_freq_a(u8 channel)
  52. {
  53. return (5000 + (5 * channel));
  54. }
  55. static inline int b43_channel_to_freq_bg(u8 channel)
  56. {
  57. int freq;
  58. if (channel == 14)
  59. freq = 2484;
  60. else
  61. freq = 2407 + (5 * channel);
  62. return freq;
  63. }
  64. static inline int b43_channel_to_freq(struct b43_wldev *dev, u8 channel)
  65. {
  66. if (dev->phy.type == B43_PHYTYPE_A)
  67. return b43_channel_to_freq_a(channel);
  68. return b43_channel_to_freq_bg(channel);
  69. }
  70. static inline int b43_is_cck_rate(int rate)
  71. {
  72. return (rate == B43_CCK_RATE_1MB ||
  73. rate == B43_CCK_RATE_2MB ||
  74. rate == B43_CCK_RATE_5MB || rate == B43_CCK_RATE_11MB);
  75. }
  76. static inline int b43_is_ofdm_rate(int rate)
  77. {
  78. return !b43_is_cck_rate(rate);
  79. }
  80. static inline int b43_is_hw_radio_enabled(struct b43_wldev *dev)
  81. {
  82. /* function to return state of hardware enable of radio
  83. * returns 0 if radio disabled, 1 if radio enabled
  84. */
  85. struct b43_phy *phy = &dev->phy;
  86. if (phy->rev >= 3)
  87. return ((b43_read32(dev, B43_MMIO_RADIO_HWENABLED_HI)
  88. & B43_MMIO_RADIO_HWENABLED_HI_MASK)
  89. == 0) ? 1 : 0;
  90. else
  91. return ((b43_read16(dev, B43_MMIO_RADIO_HWENABLED_LO)
  92. & B43_MMIO_RADIO_HWENABLED_LO_MASK)
  93. == 0) ? 0 : 1;
  94. }
  95. void b43_tsf_read(struct b43_wldev *dev, u64 * tsf);
  96. void b43_tsf_write(struct b43_wldev *dev, u64 tsf);
  97. u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset);
  98. u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset);
  99. void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value);
  100. void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value);
  101. u32 b43_hf_read(struct b43_wldev *dev);
  102. void b43_hf_write(struct b43_wldev *dev, u32 value);
  103. void b43_dummy_transmission(struct b43_wldev *dev);
  104. void b43_wireless_core_reset(struct b43_wldev *dev, u32 flags);
  105. void b43_mac_suspend(struct b43_wldev *dev);
  106. void b43_mac_enable(struct b43_wldev *dev);
  107. void b43_controller_restart(struct b43_wldev *dev, const char *reason);
  108. #define B43_PS_ENABLED (1 << 0) /* Force enable hardware power saving */
  109. #define B43_PS_DISABLED (1 << 1) /* Force disable hardware power saving */
  110. #define B43_PS_AWAKE (1 << 2) /* Force device awake */
  111. #define B43_PS_ASLEEP (1 << 3) /* Force device asleep */
  112. void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags);
  113. #endif /* B43_MAIN_H_ */