blob: 26c5d4a60d17bcdb74deadbbbfba9b74453d5515 [file] [log] [blame]
Jay Sternberge1228372009-01-19 15:30:34 -08001/******************************************************************************
2 *
3 * Copyright(c) 2008-2009 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/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/dma-mapping.h>
32#include <linux/delay.h>
33#include <linux/skbuff.h>
34#include <linux/netdevice.h>
35#include <linux/wireless.h>
36#include <net/mac80211.h>
37#include <linux/etherdevice.h>
38#include <asm/unaligned.h>
39
40#include "iwl-eeprom.h"
41#include "iwl-dev.h"
42#include "iwl-core.h"
43#include "iwl-io.h"
44#include "iwl-sta.h"
45#include "iwl-helpers.h"
46#include "iwl-5000-hw.h"
47
48/* Highest firmware API version supported */
Jay Sternbergcc0f5552009-07-17 09:30:16 -070049#define IWL6000_UCODE_API_MAX 3
50#define IWL6050_UCODE_API_MAX 3
Jay Sternberge1228372009-01-19 15:30:34 -080051
52/* Lowest firmware API version supported */
53#define IWL6000_UCODE_API_MIN 1
54#define IWL6050_UCODE_API_MIN 1
55
56#define IWL6000_FW_PRE "iwlwifi-6000-"
57#define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode"
58#define IWL6000_MODULE_FIRMWARE(api) _IWL6000_MODULE_FIRMWARE(api)
59
60#define IWL6050_FW_PRE "iwlwifi-6050-"
61#define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode"
62#define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api)
63
Jay Sternberg29f35c12009-01-29 11:09:16 -080064static struct iwl_hcmd_utils_ops iwl6000_hcmd_utils = {
65 .get_hcmd_size = iwl5000_get_hcmd_size,
66 .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
67 .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag,
68 .calc_rssi = iwl5000_calc_rssi,
69};
70
71static struct iwl_ops iwl6000_ops = {
Jay Sternbergcc0f5552009-07-17 09:30:16 -070072 .ucode = &iwl5000_ucode,
Jay Sternberg29f35c12009-01-29 11:09:16 -080073 .lib = &iwl5000_lib,
74 .hcmd = &iwl5000_hcmd,
75 .utils = &iwl6000_hcmd_utils,
76};
77
Jay Sternberge1228372009-01-19 15:30:34 -080078struct iwl_cfg iwl6000_2ag_cfg = {
79 .name = "6000 Series 2x2 AG",
80 .fw_name_pre = IWL6000_FW_PRE,
81 .ucode_api_max = IWL6000_UCODE_API_MAX,
82 .ucode_api_min = IWL6000_UCODE_API_MIN,
83 .sku = IWL_SKU_A|IWL_SKU_G,
Jay Sternberg29f35c12009-01-29 11:09:16 -080084 .ops = &iwl6000_ops,
Jay Sternberge1228372009-01-19 15:30:34 -080085 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
86 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
87 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
88 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -080089 .valid_tx_ant = ANT_BC,
90 .valid_rx_ant = ANT_BC,
Jay Sternberg050681b2009-01-29 11:09:13 -080091 .need_pll_cfg = false,
Jay Sternberge1228372009-01-19 15:30:34 -080092};
93
94struct iwl_cfg iwl6000_2agn_cfg = {
95 .name = "6000 Series 2x2 AGN",
96 .fw_name_pre = IWL6000_FW_PRE,
97 .ucode_api_max = IWL6000_UCODE_API_MAX,
98 .ucode_api_min = IWL6000_UCODE_API_MIN,
99 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800100 .ops = &iwl6000_ops,
Jay Sternberge1228372009-01-19 15:30:34 -0800101 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
102 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
103 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
104 .mod_params = &iwl50_mod_params,
Jay Sternberg542cc792009-05-08 13:44:46 -0700105 .valid_tx_ant = ANT_AB,
106 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -0800107 .need_pll_cfg = false,
Jay Sternberge1228372009-01-19 15:30:34 -0800108};
109
110struct iwl_cfg iwl6050_2agn_cfg = {
111 .name = "6050 Series 2x2 AGN",
112 .fw_name_pre = IWL6050_FW_PRE,
113 .ucode_api_max = IWL6050_UCODE_API_MAX,
114 .ucode_api_min = IWL6050_UCODE_API_MIN,
115 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800116 .ops = &iwl6000_ops,
Jay Sternberge1228372009-01-19 15:30:34 -0800117 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
118 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
119 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
120 .mod_params = &iwl50_mod_params,
Jay Sternberg542cc792009-05-08 13:44:46 -0700121 .valid_tx_ant = ANT_AB,
122 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -0800123 .need_pll_cfg = false,
Jay Sternberge1228372009-01-19 15:30:34 -0800124};
125
126struct iwl_cfg iwl6000_3agn_cfg = {
127 .name = "6000 Series 3x3 AGN",
128 .fw_name_pre = IWL6000_FW_PRE,
129 .ucode_api_max = IWL6000_UCODE_API_MAX,
130 .ucode_api_min = IWL6000_UCODE_API_MIN,
131 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800132 .ops = &iwl6000_ops,
Jay Sternberge1228372009-01-19 15:30:34 -0800133 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
134 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
135 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
136 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -0800137 .valid_tx_ant = ANT_ABC,
138 .valid_rx_ant = ANT_ABC,
Jay Sternberg050681b2009-01-29 11:09:13 -0800139 .need_pll_cfg = false,
Jay Sternberge1228372009-01-19 15:30:34 -0800140};
141
142struct iwl_cfg iwl6050_3agn_cfg = {
143 .name = "6050 Series 3x3 AGN",
144 .fw_name_pre = IWL6050_FW_PRE,
145 .ucode_api_max = IWL6050_UCODE_API_MAX,
146 .ucode_api_min = IWL6050_UCODE_API_MIN,
147 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800148 .ops = &iwl6000_ops,
Jay Sternberge1228372009-01-19 15:30:34 -0800149 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
150 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
151 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
152 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -0800153 .valid_tx_ant = ANT_ABC,
154 .valid_rx_ant = ANT_ABC,
Jay Sternberg050681b2009-01-29 11:09:13 -0800155 .need_pll_cfg = false,
Jay Sternberge1228372009-01-19 15:30:34 -0800156};
157
158MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
159MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));