rtl871x_rf.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. * Modifications for inclusion into the Linux staging tree are
  19. * Copyright(c) 2010 Larry Finger. All rights reserved.
  20. *
  21. * Contact information:
  22. * WLAN FAE <wlanfae@realtek.com>
  23. * Larry Finger <Larry.Finger@lwfinger.net>
  24. *
  25. ******************************************************************************/
  26. #ifndef __RTL871X_RF_H_
  27. #define __RTL871X_RF_H_
  28. #include "rtl871x_cmd.h"
  29. #include "rtl871x_mp_phy_regdef.h"
  30. #define OFDM_PHY 1
  31. #define MIXED_PHY 2
  32. #define CCK_PHY 3
  33. #define NumRates (13)
  34. #define RTL8711_RF_MAX_SENS 6
  35. #define RTL8711_RF_DEF_SENS 4
  36. #define NUM_CHANNELS 15
  37. struct regulatory_class {
  38. u32 starting_freq; /*MHz, */
  39. u8 channel_set[NUM_CHANNELS];
  40. u8 channel_cck_power[NUM_CHANNELS]; /*dbm*/
  41. u8 channel_ofdm_power[NUM_CHANNELS];/*dbm*/
  42. u8 txpower_limit; /*dbm*/
  43. u8 channel_spacing; /*MHz*/
  44. u8 modem;
  45. };
  46. enum _REG_PREAMBLE_MODE {
  47. PREAMBLE_LONG = 1,
  48. PREAMBLE_AUTO = 2,
  49. PREAMBLE_SHORT = 3,
  50. };
  51. enum {
  52. RTL8712_RFC_1T = 0x10,
  53. RTL8712_RFC_2T = 0x20,
  54. RTL8712_RFC_1R = 0x01,
  55. RTL8712_RFC_2R = 0x02,
  56. RTL8712_RFC_1T1R = 0x11,
  57. RTL8712_RFC_1T2R = 0x12,
  58. RTL8712_RFC_TURBO = 0x92,
  59. RTL8712_RFC_2T2R = 0x22
  60. };
  61. #endif /*_RTL8711_RF_H_*/