diff options
-rw-r--r-- | drivers/net/wireless/iwlwifi/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-6000-hw.h | 81 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-6000.c | 130 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn.c | 12 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 5 |
5 files changed, 229 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/Makefile b/drivers/net/wireless/iwlwifi/Makefile index 0be9e6b66aa0..1347d0cf03f8 100644 --- a/drivers/net/wireless/iwlwifi/Makefile +++ b/drivers/net/wireless/iwlwifi/Makefile | |||
@@ -12,6 +12,7 @@ iwlagn-objs := iwl-agn.o iwl-agn-rs.o iwl-agn-hcmd-check.o | |||
12 | 12 | ||
13 | iwlagn-$(CONFIG_IWL4965) += iwl-4965.o | 13 | iwlagn-$(CONFIG_IWL4965) += iwl-4965.o |
14 | iwlagn-$(CONFIG_IWL5000) += iwl-5000.o | 14 | iwlagn-$(CONFIG_IWL5000) += iwl-5000.o |
15 | iwlagn-$(CONFIG_IWL5000) += iwl-6000.o | ||
15 | 16 | ||
16 | obj-$(CONFIG_IWL3945) += iwl3945.o | 17 | obj-$(CONFIG_IWL3945) += iwl3945.o |
17 | iwl3945-objs := iwl3945-base.o iwl-3945.o iwl-3945-rs.o | 18 | iwl3945-objs := iwl3945-base.o iwl-3945.o iwl-3945-rs.o |
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000-hw.h b/drivers/net/wireless/iwlwifi/iwl-6000-hw.h new file mode 100644 index 000000000000..90185777d98b --- /dev/null +++ b/drivers/net/wireless/iwlwifi/iwl-6000-hw.h | |||
@@ -0,0 +1,81 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * This file is provided under a dual BSD/GPLv2 license. When using or | ||
4 | * redistributing this file, you may do so under either license. | ||
5 | * | ||
6 | * GPL LICENSE SUMMARY | ||
7 | * | ||
8 | * Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved. | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of version 2 of the GNU General Public License as | ||
12 | * published by the Free Software Foundation. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, | ||
22 | * USA | ||
23 | * | ||
24 | * The full GNU General Public License is included in this distribution | ||
25 | * in the file called LICENSE.GPL. | ||
26 | * | ||
27 | * Contact Information: | ||
28 | * Intel Linux Wireless <ilw@linux.intel.com> | ||
29 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
30 | * | ||
31 | * BSD LICENSE | ||
32 | * | ||
33 | * Copyright(c) 2005 - 2009 Intel Corporation. All rights reserved. | ||
34 | * All rights reserved. | ||
35 | * | ||
36 | * Redistribution and use in source and binary forms, with or without | ||
37 | * modification, are permitted provided that the following conditions | ||
38 | * are met: | ||
39 | * | ||
40 | * * Redistributions of source code must retain the above copyright | ||
41 | * notice, this list of conditions and the following disclaimer. | ||
42 | * * Redistributions in binary form must reproduce the above copyright | ||
43 | * notice, this list of conditions and the following disclaimer in | ||
44 | * the documentation and/or other materials provided with the | ||
45 | * distribution. | ||
46 | * * Neither the name Intel Corporation nor the names of its | ||
47 | * contributors may be used to endorse or promote products derived | ||
48 | * from this software without specific prior written permission. | ||
49 | * | ||
50 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
51 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
52 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
53 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
54 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
55 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
56 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
57 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
58 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
59 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
60 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
61 | * | ||
62 | *****************************************************************************/ | ||
63 | /* | ||
64 | * Please use this file (iwl-6000-hw.h) only for hardware-related definitions. | ||
65 | * Use iwl-5000-commands.h for uCode API definitions. | ||
66 | */ | ||
67 | |||
68 | #ifndef __iwl_6000_hw_h__ | ||
69 | #define __iwl_6000_hw_h__ | ||
70 | |||
71 | #define IWL60_RTC_INST_LOWER_BOUND (0x000000) | ||
72 | #define IWL60_RTC_INST_UPPER_BOUND (0x040000) | ||
73 | #define IWL60_RTC_DATA_LOWER_BOUND (0x800000) | ||
74 | #define IWL60_RTC_DATA_UPPER_BOUND (0x814000) | ||
75 | #define IWL60_RTC_INST_SIZE \ | ||
76 | (IWL60_RTC_INST_UPPER_BOUND - IWL60_RTC_INST_LOWER_BOUND) | ||
77 | #define IWL60_RTC_DATA_SIZE \ | ||
78 | (IWL60_RTC_DATA_UPPER_BOUND - IWL60_RTC_DATA_LOWER_BOUND) | ||
79 | |||
80 | #endif /* __iwl_6000_hw_h__ */ | ||
81 | |||
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c new file mode 100644 index 000000000000..4515a6053dd0 --- /dev/null +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
@@ -0,0 +1,130 @@ | |||
1 | /****************************************************************************** | ||
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 */ | ||
49 | #define IWL6000_UCODE_API_MAX 1 | ||
50 | #define IWL6050_UCODE_API_MAX 1 | ||
51 | |||
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 | |||
64 | struct iwl_cfg iwl6000_2ag_cfg = { | ||
65 | .name = "6000 Series 2x2 AG", | ||
66 | .fw_name_pre = IWL6000_FW_PRE, | ||
67 | .ucode_api_max = IWL6000_UCODE_API_MAX, | ||
68 | .ucode_api_min = IWL6000_UCODE_API_MIN, | ||
69 | .sku = IWL_SKU_A|IWL_SKU_G, | ||
70 | .ops = &iwl5000_ops, | ||
71 | .eeprom_size = IWL_5000_EEPROM_IMG_SIZE, | ||
72 | .eeprom_ver = EEPROM_5000_EEPROM_VERSION, | ||
73 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | ||
74 | .mod_params = &iwl50_mod_params, | ||
75 | }; | ||
76 | |||
77 | struct iwl_cfg iwl6000_2agn_cfg = { | ||
78 | .name = "6000 Series 2x2 AGN", | ||
79 | .fw_name_pre = IWL6000_FW_PRE, | ||
80 | .ucode_api_max = IWL6000_UCODE_API_MAX, | ||
81 | .ucode_api_min = IWL6000_UCODE_API_MIN, | ||
82 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, | ||
83 | .ops = &iwl5000_ops, | ||
84 | .eeprom_size = IWL_5000_EEPROM_IMG_SIZE, | ||
85 | .eeprom_ver = EEPROM_5000_EEPROM_VERSION, | ||
86 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | ||
87 | .mod_params = &iwl50_mod_params, | ||
88 | }; | ||
89 | |||
90 | struct iwl_cfg iwl6050_2agn_cfg = { | ||
91 | .name = "6050 Series 2x2 AGN", | ||
92 | .fw_name_pre = IWL6050_FW_PRE, | ||
93 | .ucode_api_max = IWL6050_UCODE_API_MAX, | ||
94 | .ucode_api_min = IWL6050_UCODE_API_MIN, | ||
95 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, | ||
96 | .ops = &iwl5000_ops, | ||
97 | .eeprom_size = IWL_5000_EEPROM_IMG_SIZE, | ||
98 | .eeprom_ver = EEPROM_5000_EEPROM_VERSION, | ||
99 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | ||
100 | .mod_params = &iwl50_mod_params, | ||
101 | }; | ||
102 | |||
103 | struct iwl_cfg iwl6000_3agn_cfg = { | ||
104 | .name = "6000 Series 3x3 AGN", | ||
105 | .fw_name_pre = IWL6000_FW_PRE, | ||
106 | .ucode_api_max = IWL6000_UCODE_API_MAX, | ||
107 | .ucode_api_min = IWL6000_UCODE_API_MIN, | ||
108 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, | ||
109 | .ops = &iwl5000_ops, | ||
110 | .eeprom_size = IWL_5000_EEPROM_IMG_SIZE, | ||
111 | .eeprom_ver = EEPROM_5000_EEPROM_VERSION, | ||
112 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | ||
113 | .mod_params = &iwl50_mod_params, | ||
114 | }; | ||
115 | |||
116 | struct iwl_cfg iwl6050_3agn_cfg = { | ||
117 | .name = "6050 Series 3x3 AGN", | ||
118 | .fw_name_pre = IWL6050_FW_PRE, | ||
119 | .ucode_api_max = IWL6050_UCODE_API_MAX, | ||
120 | .ucode_api_min = IWL6050_UCODE_API_MIN, | ||
121 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, | ||
122 | .ops = &iwl5000_ops, | ||
123 | .eeprom_size = IWL_5000_EEPROM_IMG_SIZE, | ||
124 | .eeprom_ver = EEPROM_5000_EEPROM_VERSION, | ||
125 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | ||
126 | .mod_params = &iwl50_mod_params, | ||
127 | }; | ||
128 | |||
129 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); | ||
130 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index 4a15e42ad00a..632add14fa9b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -4173,6 +4173,18 @@ static struct pci_device_id iwl_hw_card_ids[] = { | |||
4173 | /* 5150 Wifi/WiMax */ | 4173 | /* 5150 Wifi/WiMax */ |
4174 | {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)}, | 4174 | {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)}, |
4175 | {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)}, | 4175 | {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)}, |
4176 | /* 6000/6050 Series */ | ||
4177 | {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)}, | ||
4178 | {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)}, | ||
4179 | {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)}, | ||
4180 | {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)}, | ||
4181 | {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)}, | ||
4182 | {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)}, | ||
4183 | {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)}, | ||
4184 | {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)}, | ||
4185 | {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)}, | ||
4186 | {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)}, | ||
4187 | {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)}, | ||
4176 | #endif /* CONFIG_IWL5000 */ | 4188 | #endif /* CONFIG_IWL5000 */ |
4177 | 4189 | ||
4178 | {0} | 4190 | {0} |
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 2602944a08a3..199e331da4d6 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -57,6 +57,11 @@ extern struct iwl_cfg iwl5350_agn_cfg; | |||
57 | extern struct iwl_cfg iwl5100_bg_cfg; | 57 | extern struct iwl_cfg iwl5100_bg_cfg; |
58 | extern struct iwl_cfg iwl5100_abg_cfg; | 58 | extern struct iwl_cfg iwl5100_abg_cfg; |
59 | extern struct iwl_cfg iwl5150_agn_cfg; | 59 | extern struct iwl_cfg iwl5150_agn_cfg; |
60 | extern struct iwl_cfg iwl6000_2ag_cfg; | ||
61 | extern struct iwl_cfg iwl6000_2agn_cfg; | ||
62 | extern struct iwl_cfg iwl6000_3agn_cfg; | ||
63 | extern struct iwl_cfg iwl6050_2agn_cfg; | ||
64 | extern struct iwl_cfg iwl6050_3agn_cfg; | ||
60 | 65 | ||
61 | /* shared structures from iwl-5000.c */ | 66 | /* shared structures from iwl-5000.c */ |
62 | extern struct iwl_mod_params iwl50_mod_params; | 67 | extern struct iwl_mod_params iwl50_mod_params; |