conf.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * This file is part of wl18xx
  3. *
  4. * Copyright (C) 2011 Texas Instruments Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  18. * 02110-1301 USA
  19. *
  20. */
  21. #ifndef __WL18XX_CONF_H__
  22. #define __WL18XX_CONF_H__
  23. #define WL18XX_CONF_MAGIC 0x10e100ca
  24. #define WL18XX_CONF_VERSION (WLCORE_CONF_VERSION | 0x0004)
  25. #define WL18XX_CONF_MASK 0x0000ffff
  26. #define WL18XX_CONF_SIZE (WLCORE_CONF_SIZE + \
  27. sizeof(struct wl18xx_priv_conf))
  28. #define NUM_OF_CHANNELS_11_ABG 150
  29. #define NUM_OF_CHANNELS_11_P 7
  30. #define SRF_TABLE_LEN 16
  31. #define PIN_MUXING_SIZE 2
  32. #define WL18XX_TRACE_LOSS_GAPS_TX 10
  33. #define WL18XX_TRACE_LOSS_GAPS_RX 18
  34. struct wl18xx_mac_and_phy_params {
  35. u8 phy_standalone;
  36. u8 spare0;
  37. u8 enable_clpc;
  38. u8 enable_tx_low_pwr_on_siso_rdl;
  39. u8 auto_detect;
  40. u8 dedicated_fem;
  41. u8 low_band_component;
  42. /* Bit 0: One Hot, Bit 1: Control Enable, Bit 2: 1.8V, Bit 3: 3V */
  43. u8 low_band_component_type;
  44. u8 high_band_component;
  45. /* Bit 0: One Hot, Bit 1: Control Enable, Bit 2: 1.8V, Bit 3: 3V */
  46. u8 high_band_component_type;
  47. u8 number_of_assembled_ant2_4;
  48. u8 number_of_assembled_ant5;
  49. u8 pin_muxing_platform_options[PIN_MUXING_SIZE];
  50. u8 external_pa_dc2dc;
  51. u8 tcxo_ldo_voltage;
  52. u8 xtal_itrim_val;
  53. u8 srf_state;
  54. u8 srf1[SRF_TABLE_LEN];
  55. u8 srf2[SRF_TABLE_LEN];
  56. u8 srf3[SRF_TABLE_LEN];
  57. u8 io_configuration;
  58. u8 sdio_configuration;
  59. u8 settings;
  60. u8 rx_profile;
  61. u8 per_chan_pwr_limit_arr_11abg[NUM_OF_CHANNELS_11_ABG];
  62. u8 pwr_limit_reference_11_abg;
  63. u8 per_chan_pwr_limit_arr_11p[NUM_OF_CHANNELS_11_P];
  64. u8 pwr_limit_reference_11p;
  65. u8 spare1[9];
  66. u8 spare2[9];
  67. u8 primary_clock_setting_time;
  68. u8 clock_valid_on_wake_up;
  69. u8 secondary_clock_setting_time;
  70. u8 board_type;
  71. /* enable point saturation */
  72. u8 psat;
  73. /* low/medium/high Tx power in dBm */
  74. s8 low_power_val;
  75. s8 med_power_val;
  76. s8 high_power_val;
  77. s8 per_sub_band_tx_trace_loss[WL18XX_TRACE_LOSS_GAPS_TX];
  78. s8 per_sub_band_rx_trace_loss[WL18XX_TRACE_LOSS_GAPS_RX];
  79. u8 tx_rf_margin;
  80. u8 padding[4];
  81. } __packed;
  82. enum wl18xx_ht_mode {
  83. /* Default - use MIMO, fallback to SISO20 */
  84. HT_MODE_DEFAULT = 0,
  85. /* Wide - use SISO40 */
  86. HT_MODE_WIDE = 1,
  87. /* Use SISO20 */
  88. HT_MODE_SISO20 = 2,
  89. };
  90. struct wl18xx_ht_settings {
  91. /* DEFAULT / WIDE / SISO20 */
  92. u8 mode;
  93. } __packed;
  94. struct wl18xx_priv_conf {
  95. /* Module params structures */
  96. struct wl18xx_ht_settings ht;
  97. /* this structure is copied wholesale to FW */
  98. struct wl18xx_mac_and_phy_params phy;
  99. } __packed;
  100. #endif /* __WL18XX_CONF_H__ */