iwlwifi: dynamically determine lib_ops
[pandora-kernel.git] / drivers / net / wireless / iwlwifi / iwl-1000.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2008 - 2012 Intel 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  * The full GNU General Public License is included in this distribution in the
19  * file called LICENSE.
20  *
21  * Contact Information:
22  *  Intel Linux Wireless <ilw@linux.intel.com>
23  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24  *
25  *****************************************************************************/
26
27 #include <linux/module.h>
28 #include <linux/stringify.h>
29 #include "iwl-config.h"
30 #include "iwl-cfg.h"
31 #include "iwl-dev.h" /* still needed */
32
33 /* Highest firmware API version supported */
34 #define IWL1000_UCODE_API_MAX 6
35 #define IWL100_UCODE_API_MAX 6
36
37 /* Oldest version we won't warn about */
38 #define IWL1000_UCODE_API_OK 5
39 #define IWL100_UCODE_API_OK 5
40
41 /* Lowest firmware API version supported */
42 #define IWL1000_UCODE_API_MIN 1
43 #define IWL100_UCODE_API_MIN 5
44
45 #define IWL1000_FW_PRE "iwlwifi-1000-"
46 #define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode"
47
48 #define IWL100_FW_PRE "iwlwifi-100-"
49 #define IWL100_MODULE_FIRMWARE(api) IWL100_FW_PRE __stringify(api) ".ucode"
50
51
52 static const struct iwl_base_params iwl1000_base_params = {
53         .num_of_queues = IWLAGN_NUM_QUEUES,
54         .eeprom_size = OTP_LOW_IMAGE_SIZE,
55         .pll_cfg_val = CSR50_ANA_PLL_CFG_VAL,
56         .max_ll_items = OTP_MAX_LL_ITEMS_1000,
57         .shadow_ram_support = false,
58         .led_compensation = 51,
59         .support_ct_kill_exit = true,
60         .plcp_delta_threshold = IWL_MAX_PLCP_ERR_EXT_LONG_THRESHOLD_DEF,
61         .chain_noise_scale = 1000,
62         .wd_timeout = IWL_WATCHHDOG_DISABLED,
63         .max_event_log_size = 128,
64 };
65
66 static const struct iwl_ht_params iwl1000_ht_params = {
67         .ht_greenfield_support = true,
68         .use_rts_for_aggregation = true, /* use rts/cts protection */
69         .smps_mode = IEEE80211_SMPS_DYNAMIC,
70 };
71
72 #define IWL_DEVICE_1000                                         \
73         .fw_name_pre = IWL1000_FW_PRE,                          \
74         .ucode_api_max = IWL1000_UCODE_API_MAX,                 \
75         .ucode_api_ok = IWL1000_UCODE_API_OK,                   \
76         .ucode_api_min = IWL1000_UCODE_API_MIN,                 \
77         .device_family = IWL_DEVICE_FAMILY_1000,                \
78         .max_inst_size = IWLAGN_RTC_INST_SIZE,                  \
79         .max_data_size = IWLAGN_RTC_DATA_SIZE,                  \
80         .eeprom_ver = EEPROM_1000_EEPROM_VERSION,               \
81         .eeprom_calib_ver = EEPROM_1000_TX_POWER_VERSION,       \
82         .base_params = &iwl1000_base_params,                    \
83         .led_mode = IWL_LED_BLINK
84
85 const struct iwl_cfg iwl1000_bgn_cfg = {
86         .name = "Intel(R) Centrino(R) Wireless-N 1000 BGN",
87         IWL_DEVICE_1000,
88         .ht_params = &iwl1000_ht_params,
89 };
90
91 const struct iwl_cfg iwl1000_bg_cfg = {
92         .name = "Intel(R) Centrino(R) Wireless-N 1000 BG",
93         IWL_DEVICE_1000,
94 };
95
96 #define IWL_DEVICE_100                                          \
97         .fw_name_pre = IWL100_FW_PRE,                           \
98         .ucode_api_max = IWL100_UCODE_API_MAX,                  \
99         .ucode_api_ok = IWL100_UCODE_API_OK,                    \
100         .ucode_api_min = IWL100_UCODE_API_MIN,                  \
101         .device_family = IWL_DEVICE_FAMILY_100,                 \
102         .max_inst_size = IWLAGN_RTC_INST_SIZE,                  \
103         .max_data_size = IWLAGN_RTC_DATA_SIZE,                  \
104         .eeprom_ver = EEPROM_1000_EEPROM_VERSION,               \
105         .eeprom_calib_ver = EEPROM_1000_TX_POWER_VERSION,       \
106         .base_params = &iwl1000_base_params,                    \
107         .led_mode = IWL_LED_RF_STATE,                           \
108         .rx_with_siso_diversity = true
109
110 const struct iwl_cfg iwl100_bgn_cfg = {
111         .name = "Intel(R) Centrino(R) Wireless-N 100 BGN",
112         IWL_DEVICE_100,
113         .ht_params = &iwl1000_ht_params,
114 };
115
116 const struct iwl_cfg iwl100_bg_cfg = {
117         .name = "Intel(R) Centrino(R) Wireless-N 100 BG",
118         IWL_DEVICE_100,
119 };
120
121 MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX));
122 MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_MAX));