2 * This file is part of wl1271
4 * Copyright (C) 2010 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
27 #define WL1271_INI_MAX_SMART_REFLEX_PARAM 16
29 struct wl1271_ini_general_params
{
32 u8 clk_valid_on_wakeup
;
35 u8 tx_bip_fem_auto_detect
;
36 u8 tx_bip_fem_manufacturer
;
39 u8 srf1
[WL1271_INI_MAX_SMART_REFLEX_PARAM
];
40 u8 srf2
[WL1271_INI_MAX_SMART_REFLEX_PARAM
];
41 u8 srf3
[WL1271_INI_MAX_SMART_REFLEX_PARAM
];
44 #define WL1271_INI_RSSI_PROCESS_COMPENS_SIZE 15
46 struct wl1271_ini_band_params_2
{
47 u8 rx_trace_insertion_loss
;
49 u8 rx_rssi_process_compens
[WL1271_INI_RSSI_PROCESS_COMPENS_SIZE
];
52 #define WL1271_INI_RATE_GROUP_COUNT 6
53 #define WL1271_INI_CHANNEL_COUNT_2 14
55 struct wl1271_ini_fem_params_2
{
56 __le16 tx_bip_ref_pd_voltage
;
59 u8 tx_per_rate_pwr_limits_normal
[WL1271_INI_RATE_GROUP_COUNT
];
60 u8 tx_per_rate_pwr_limits_degraded
[WL1271_INI_RATE_GROUP_COUNT
];
61 u8 tx_per_rate_pwr_limits_extreme
[WL1271_INI_RATE_GROUP_COUNT
];
62 u8 tx_per_chan_pwr_limits_11b
[WL1271_INI_CHANNEL_COUNT_2
];
63 u8 tx_per_chan_pwr_limits_ofdm
[WL1271_INI_CHANNEL_COUNT_2
];
64 u8 tx_pd_vs_rate_offsets
[WL1271_INI_RATE_GROUP_COUNT
];
65 u8 tx_ibias
[WL1271_INI_RATE_GROUP_COUNT
];
66 u8 rx_fem_insertion_loss
;
67 u8 degraded_low_to_normal_thr
;
68 u8 normal_to_degraded_high_thr
;
71 #define WL1271_INI_CHANNEL_COUNT_5 35
72 #define WL1271_INI_SUB_BAND_COUNT_5 7
74 struct wl1271_ini_band_params_5
{
75 u8 rx_trace_insertion_loss
[WL1271_INI_SUB_BAND_COUNT_5
];
76 u8 tx_trace_loss
[WL1271_INI_SUB_BAND_COUNT_5
];
77 u8 rx_rssi_process_compens
[WL1271_INI_RSSI_PROCESS_COMPENS_SIZE
];
80 struct wl1271_ini_fem_params_5
{
81 __le16 tx_bip_ref_pd_voltage
[WL1271_INI_SUB_BAND_COUNT_5
];
82 u8 tx_bip_ref_power
[WL1271_INI_SUB_BAND_COUNT_5
];
83 u8 tx_bip_ref_offset
[WL1271_INI_SUB_BAND_COUNT_5
];
84 u8 tx_per_rate_pwr_limits_normal
[WL1271_INI_RATE_GROUP_COUNT
];
85 u8 tx_per_rate_pwr_limits_degraded
[WL1271_INI_RATE_GROUP_COUNT
];
86 u8 tx_per_rate_pwr_limits_extreme
[WL1271_INI_RATE_GROUP_COUNT
];
87 u8 tx_per_chan_pwr_limits_ofdm
[WL1271_INI_CHANNEL_COUNT_5
];
88 u8 tx_pd_vs_rate_offsets
[WL1271_INI_RATE_GROUP_COUNT
];
89 u8 tx_ibias
[WL1271_INI_RATE_GROUP_COUNT
];
90 u8 rx_fem_insertion_loss
[WL1271_INI_SUB_BAND_COUNT_5
];
91 u8 degraded_low_to_normal_thr
;
92 u8 normal_to_degraded_high_thr
;
96 /* NVS data structure */
97 #define WL1271_INI_NVS_SECTION_SIZE 468
98 #define WL1271_INI_FEM_MODULE_COUNT 2
100 #define WL1271_INI_LEGACY_NVS_FILE_SIZE 800
102 struct wl1271_nvs_file
{
104 u8 nvs
[WL1271_INI_NVS_SECTION_SIZE
];
107 struct wl1271_ini_general_params general_params
;
109 struct wl1271_ini_band_params_2 stat_radio_params_2
;
112 struct wl1271_ini_fem_params_2 params
;
114 } dyn_radio_params_2
[WL1271_INI_FEM_MODULE_COUNT
];
115 struct wl1271_ini_band_params_5 stat_radio_params_5
;
118 struct wl1271_ini_fem_params_5 params
;
120 } dyn_radio_params_5
[WL1271_INI_FEM_MODULE_COUNT
];