main.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. Broadcom B43 wireless driver
  4. Copyright (c) 2005 Martin Langer <[email protected]>,
  5. Stefano Brivio <[email protected]>
  6. Michael Buesch <[email protected]>
  7. Danny van Dyk <[email protected]>
  8. Andreas Jaggi <[email protected]>
  9. Some parts of the code in this file are derived from the ipw2200
  10. driver Copyright(c) 2003 - 2004 Intel Corporation.
  11. */
  12. #ifndef B43_MAIN_H_
  13. #define B43_MAIN_H_
  14. #include "b43.h"
  15. #define P4D_BYT3S(magic, nr_bytes) u8 __p4dding##magic[nr_bytes]
  16. #define P4D_BYTES(line, nr_bytes) P4D_BYT3S(line, nr_bytes)
  17. /* Magic helper macro to pad structures. Ignore those above. It's magic. */
  18. #define PAD_BYTES(nr_bytes) P4D_BYTES( __LINE__ , (nr_bytes))
  19. extern int b43_modparam_verbose;
  20. /* Logmessage verbosity levels. Update the b43_modparam_verbose helptext, if
  21. * you add or remove levels. */
  22. enum b43_verbosity {
  23. B43_VERBOSITY_ERROR,
  24. B43_VERBOSITY_WARN,
  25. B43_VERBOSITY_INFO,
  26. B43_VERBOSITY_DEBUG,
  27. __B43_VERBOSITY_AFTERLAST, /* keep last */
  28. B43_VERBOSITY_MAX = __B43_VERBOSITY_AFTERLAST - 1,
  29. #if B43_DEBUG
  30. B43_VERBOSITY_DEFAULT = B43_VERBOSITY_DEBUG,
  31. #else
  32. B43_VERBOSITY_DEFAULT = B43_VERBOSITY_INFO,
  33. #endif
  34. };
  35. static inline int b43_is_cck_rate(int rate)
  36. {
  37. return (rate == B43_CCK_RATE_1MB ||
  38. rate == B43_CCK_RATE_2MB ||
  39. rate == B43_CCK_RATE_5MB || rate == B43_CCK_RATE_11MB);
  40. }
  41. static inline int b43_is_ofdm_rate(int rate)
  42. {
  43. return !b43_is_cck_rate(rate);
  44. }
  45. u8 b43_ieee80211_antenna_sanitize(struct b43_wldev *dev,
  46. u8 antenna_nr);
  47. void b43_tsf_read(struct b43_wldev *dev, u64 * tsf);
  48. void b43_tsf_write(struct b43_wldev *dev, u64 tsf);
  49. u32 b43_shm_read32(struct b43_wldev *dev, u16 routing, u16 offset);
  50. u16 b43_shm_read16(struct b43_wldev *dev, u16 routing, u16 offset);
  51. void b43_shm_write32(struct b43_wldev *dev, u16 routing, u16 offset, u32 value);
  52. void b43_shm_write16(struct b43_wldev *dev, u16 routing, u16 offset, u16 value);
  53. u64 b43_hf_read(struct b43_wldev *dev);
  54. void b43_hf_write(struct b43_wldev *dev, u64 value);
  55. void b43_dummy_transmission(struct b43_wldev *dev, bool ofdm, bool pa_on);
  56. void b43_wireless_core_reset(struct b43_wldev *dev, bool gmode);
  57. void b43_controller_restart(struct b43_wldev *dev, const char *reason);
  58. #define B43_PS_ENABLED (1 << 0) /* Force enable hardware power saving */
  59. #define B43_PS_DISABLED (1 << 1) /* Force disable hardware power saving */
  60. #define B43_PS_AWAKE (1 << 2) /* Force device awake */
  61. #define B43_PS_ASLEEP (1 << 3) /* Force device asleep */
  62. void b43_power_saving_ctl_bits(struct b43_wldev *dev, unsigned int ps_flags);
  63. void b43_wireless_core_phy_pll_reset(struct b43_wldev *dev);
  64. void b43_mac_suspend(struct b43_wldev *dev);
  65. void b43_mac_enable(struct b43_wldev *dev);
  66. void b43_mac_phy_clock_set(struct b43_wldev *dev, bool on);
  67. void b43_mac_switch_freq(struct b43_wldev *dev, u8 spurmode);
  68. struct b43_request_fw_context;
  69. int b43_do_request_fw(struct b43_request_fw_context *ctx, const char *name,
  70. struct b43_firmware_file *fw, bool async);
  71. void b43_do_release_fw(struct b43_firmware_file *fw);
  72. #endif /* B43_MAIN_H_ */