blob: 3dd0b12b155e5e0cc2f751f65a7ee78515ae3dcb [file] [log] [blame]
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001/******************************************************************************
2 *
3 * Copyright(c) 2007-2008 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 Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
23 *
24 *****************************************************************************/
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/version.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-4965.h"
42#include "iwl-core.h"
43#include "iwl-io.h"
44#include "iwl-helpers.h"
45#include "iwl-5000-hw.h"
46
47#define IWL5000_UCODE_API "-1"
48
Tomas Winklerda8dec22008-04-24 11:55:24 -070049static struct iwl_hcmd_ops iwl5000_hcmd = {
50};
51
52static struct iwl_hcmd_utils_ops iwl5000_hcmd_utils = {
53};
54
55static struct iwl_lib_ops iwl5000_lib = {
56 .eeprom_ops = {
57 .verify_signature = iwlcore_eeprom_verify_signature,
58 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
59 .release_semaphore = iwlcore_eeprom_release_semaphore,
60 },
61};
62
63static struct iwl_ops iwl5000_ops = {
64 .lib = &iwl5000_lib,
65 .hcmd = &iwl5000_hcmd,
66 .utils = &iwl5000_hcmd_utils,
67};
68
Tomas Winkler5a6a2562008-04-24 11:55:23 -070069static struct iwl_mod_params iwl50_mod_params = {
70 .num_of_queues = IWL50_NUM_QUEUES,
71 .enable_qos = 1,
72 .amsdu_size_8K = 1,
73 /* the rest are 0 by default */
74};
75
76
77struct iwl_cfg iwl5300_agn_cfg = {
78 .name = "5300AGN",
79 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
80 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -070081 .ops = &iwl5000_ops,
Tomas Winkler5a6a2562008-04-24 11:55:23 -070082 .mod_params = &iwl50_mod_params,
83};
84
85struct iwl_cfg iwl5100_agn_cfg = {
86 .name = "5100AGN",
87 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
88 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -070089 .ops = &iwl5000_ops,
Tomas Winkler5a6a2562008-04-24 11:55:23 -070090 .mod_params = &iwl50_mod_params,
91};
92
93struct iwl_cfg iwl5350_agn_cfg = {
94 .name = "5350AGN",
95 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
96 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -070097 .ops = &iwl5000_ops,
Tomas Winkler5a6a2562008-04-24 11:55:23 -070098 .mod_params = &iwl50_mod_params,
99};
100
101module_param_named(disable50, iwl50_mod_params.disable, int, 0444);
102MODULE_PARM_DESC(disable50,
103 "manually disable the 50XX radio (default 0 [radio on])");
104module_param_named(swcrypto50, iwl50_mod_params.sw_crypto, bool, 0444);
105MODULE_PARM_DESC(swcrypto50,
106 "using software crypto engine (default 0 [hardware])\n");
107module_param_named(debug50, iwl50_mod_params.debug, int, 0444);
108MODULE_PARM_DESC(debug50, "50XX debug output mask");
109module_param_named(queues_num50, iwl50_mod_params.num_of_queues, int, 0444);
110MODULE_PARM_DESC(queues_num50, "number of hw queues in 50xx series");
111module_param_named(qos_enable50, iwl50_mod_params.enable_qos, int, 0444);
112MODULE_PARM_DESC(qos_enable50, "enable all 50XX QoS functionality");
113module_param_named(amsdu_size_8K50, iwl50_mod_params.amsdu_size_8K, int, 0444);
114MODULE_PARM_DESC(amsdu_size_8K50, "enable 8K amsdu size in 50XX series");
115
116