Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 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 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 8 | * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 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 |
Emmanuel Grumbach | 410dc5a | 2013-02-18 09:22:28 +0200 | [diff] [blame] | 25 | * in the file called COPYING. |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 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 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 33 | * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 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 | *****************************************************************************/ |
Joe Perches | 69b8797 | 2012-03-26 08:27:40 -0700 | [diff] [blame] | 63 | |
| 64 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 65 | |
Paul Gortmaker | 9d9779e | 2011-07-03 15:21:01 -0400 | [diff] [blame] | 66 | #include <linux/module.h> |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 67 | #include <linux/pci.h> |
| 68 | #include <linux/pci-aspm.h> |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 69 | #include <linux/acpi.h> |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 70 | |
Emmanuel Grumbach | 332a4ba | 2011-08-25 23:11:16 -0700 | [diff] [blame] | 71 | #include "iwl-trans.h" |
Emmanuel Grumbach | 5c58edc | 2012-02-07 14:18:40 +0200 | [diff] [blame] | 72 | #include "iwl-drv.h" |
Johannes Berg | 6468a01 | 2012-05-16 19:13:54 +0200 | [diff] [blame] | 73 | #include "internal.h" |
Wey-Yi Guy | d57fa99 | 2011-06-10 11:23:36 -0700 | [diff] [blame] | 74 | |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 75 | #define IWL_PCI_DEVICE(dev, subdev, cfg) \ |
| 76 | .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \ |
| 77 | .subvendor = PCI_ANY_ID, .subdevice = (subdev), \ |
| 78 | .driver_data = (kernel_ulong_t)&(cfg) |
| 79 | |
| 80 | /* Hardware specific file defines the PCI IDs table for that hardware module */ |
Benoit Taine | 9baa3c3 | 2014-08-08 15:56:03 +0200 | [diff] [blame] | 81 | static const struct pci_device_id iwl_hw_card_ids[] = { |
Johannes Berg | 4f25bbd | 2013-06-10 16:12:52 +0200 | [diff] [blame] | 82 | #if IS_ENABLED(CONFIG_IWLDVM) |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 83 | {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */ |
| 84 | {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 85 | {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */ |
| 86 | {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 87 | {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 88 | {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 89 | {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */ |
| 90 | {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 91 | {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */ |
| 92 | {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 93 | {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */ |
| 94 | {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 95 | {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 96 | {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 97 | {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */ |
| 98 | {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 99 | {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */ |
| 100 | {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 101 | {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */ |
| 102 | {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */ |
| 103 | {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */ |
| 104 | {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */ |
| 105 | {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */ |
| 106 | {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */ |
| 107 | |
| 108 | /* 5300 Series WiFi */ |
| 109 | {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */ |
| 110 | {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 111 | {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */ |
| 112 | {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 113 | {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */ |
| 114 | {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 115 | {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */ |
| 116 | {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 117 | {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */ |
| 118 | {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 119 | {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */ |
| 120 | {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */ |
| 121 | |
| 122 | /* 5350 Series WiFi/WiMax */ |
| 123 | {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */ |
| 124 | {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */ |
| 125 | {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */ |
| 126 | |
| 127 | /* 5150 Series Wifi/WiMax */ |
| 128 | {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */ |
| 129 | {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 130 | {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */ |
| 131 | {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */ |
| 132 | {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */ |
| 133 | {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */ |
Emmanuel Grumbach | a1923f1 | 2013-07-18 19:11:26 +0300 | [diff] [blame] | 134 | {IWL_PCI_DEVICE(0x423C, 0x1326, iwl5150_abg_cfg)}, /* Half Mini Card */ |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 135 | |
| 136 | {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */ |
| 137 | {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */ |
| 138 | {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */ |
| 139 | {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */ |
| 140 | |
| 141 | /* 6x00 Series */ |
| 142 | {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 143 | {IWL_PCI_DEVICE(0x422B, 0x1108, iwl6000_3agn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 144 | {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 145 | {IWL_PCI_DEVICE(0x422B, 0x1128, iwl6000_3agn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 146 | {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)}, |
| 147 | {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)}, |
| 148 | {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)}, |
| 149 | {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)}, |
| 150 | {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)}, |
| 151 | {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 152 | {IWL_PCI_DEVICE(0x4238, 0x1118, iwl6000_3agn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 153 | {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)}, |
| 154 | {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)}, |
| 155 | |
| 156 | /* 6x05 Series */ |
| 157 | {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6005_2agn_cfg)}, |
| 158 | {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6005_2abg_cfg)}, |
| 159 | {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6005_2bg_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 160 | {IWL_PCI_DEVICE(0x0082, 0x1308, iwl6005_2agn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 161 | {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6005_2agn_cfg)}, |
| 162 | {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6005_2abg_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 163 | {IWL_PCI_DEVICE(0x0082, 0x1328, iwl6005_2agn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 164 | {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6005_2agn_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 165 | {IWL_PCI_DEVICE(0x0085, 0x1318, iwl6005_2agn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 166 | {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6005_2abg_cfg)}, |
Wey-Yi Guy | 6a9ae0d | 2011-08-25 23:10:56 -0700 | [diff] [blame] | 167 | {IWL_PCI_DEVICE(0x0082, 0xC020, iwl6005_2agn_sff_cfg)}, |
Wey-Yi Guy | ff647af | 2011-09-15 11:46:36 -0700 | [diff] [blame] | 168 | {IWL_PCI_DEVICE(0x0085, 0xC220, iwl6005_2agn_sff_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 169 | {IWL_PCI_DEVICE(0x0085, 0xC228, iwl6005_2agn_sff_cfg)}, |
Wey-Yi Guy | 3789112 | 2012-02-22 10:21:09 -0800 | [diff] [blame] | 170 | {IWL_PCI_DEVICE(0x0082, 0x4820, iwl6005_2agn_d_cfg)}, |
| 171 | {IWL_PCI_DEVICE(0x0082, 0x1304, iwl6005_2agn_mow1_cfg)},/* low 5GHz active */ |
| 172 | {IWL_PCI_DEVICE(0x0082, 0x1305, iwl6005_2agn_mow2_cfg)},/* high 5GHz active */ |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 173 | |
| 174 | /* 6x30 Series */ |
| 175 | {IWL_PCI_DEVICE(0x008A, 0x5305, iwl1030_bgn_cfg)}, |
| 176 | {IWL_PCI_DEVICE(0x008A, 0x5307, iwl1030_bg_cfg)}, |
| 177 | {IWL_PCI_DEVICE(0x008A, 0x5325, iwl1030_bgn_cfg)}, |
| 178 | {IWL_PCI_DEVICE(0x008A, 0x5327, iwl1030_bg_cfg)}, |
| 179 | {IWL_PCI_DEVICE(0x008B, 0x5315, iwl1030_bgn_cfg)}, |
| 180 | {IWL_PCI_DEVICE(0x008B, 0x5317, iwl1030_bg_cfg)}, |
| 181 | {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6030_2agn_cfg)}, |
| 182 | {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6030_2bgn_cfg)}, |
| 183 | {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6030_2abg_cfg)}, |
| 184 | {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6030_2agn_cfg)}, |
| 185 | {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6030_2bgn_cfg)}, |
| 186 | {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6030_2abg_cfg)}, |
| 187 | {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6030_2bg_cfg)}, |
| 188 | {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6030_2agn_cfg)}, |
| 189 | {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6030_2bgn_cfg)}, |
| 190 | {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6030_2abg_cfg)}, |
| 191 | |
| 192 | /* 6x50 WiFi/WiMax Series */ |
| 193 | {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)}, |
| 194 | {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)}, |
| 195 | {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)}, |
| 196 | {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)}, |
| 197 | {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)}, |
| 198 | {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)}, |
| 199 | |
| 200 | /* 6150 WiFi/WiMax Series */ |
| 201 | {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6150_bgn_cfg)}, |
| 202 | {IWL_PCI_DEVICE(0x0885, 0x1307, iwl6150_bg_cfg)}, |
| 203 | {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6150_bgn_cfg)}, |
| 204 | {IWL_PCI_DEVICE(0x0885, 0x1327, iwl6150_bg_cfg)}, |
| 205 | {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6150_bgn_cfg)}, |
| 206 | {IWL_PCI_DEVICE(0x0886, 0x1317, iwl6150_bg_cfg)}, |
| 207 | |
| 208 | /* 1000 Series WiFi */ |
| 209 | {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)}, |
| 210 | {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)}, |
| 211 | {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)}, |
| 212 | {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)}, |
| 213 | {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)}, |
| 214 | {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)}, |
| 215 | {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)}, |
| 216 | {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)}, |
| 217 | {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)}, |
| 218 | {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)}, |
| 219 | {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)}, |
| 220 | {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)}, |
| 221 | |
| 222 | /* 100 Series WiFi */ |
| 223 | {IWL_PCI_DEVICE(0x08AE, 0x1005, iwl100_bgn_cfg)}, |
| 224 | {IWL_PCI_DEVICE(0x08AE, 0x1007, iwl100_bg_cfg)}, |
| 225 | {IWL_PCI_DEVICE(0x08AF, 0x1015, iwl100_bgn_cfg)}, |
| 226 | {IWL_PCI_DEVICE(0x08AF, 0x1017, iwl100_bg_cfg)}, |
| 227 | {IWL_PCI_DEVICE(0x08AE, 0x1025, iwl100_bgn_cfg)}, |
| 228 | {IWL_PCI_DEVICE(0x08AE, 0x1027, iwl100_bg_cfg)}, |
| 229 | |
| 230 | /* 130 Series WiFi */ |
| 231 | {IWL_PCI_DEVICE(0x0896, 0x5005, iwl130_bgn_cfg)}, |
| 232 | {IWL_PCI_DEVICE(0x0896, 0x5007, iwl130_bg_cfg)}, |
| 233 | {IWL_PCI_DEVICE(0x0897, 0x5015, iwl130_bgn_cfg)}, |
| 234 | {IWL_PCI_DEVICE(0x0897, 0x5017, iwl130_bg_cfg)}, |
| 235 | {IWL_PCI_DEVICE(0x0896, 0x5025, iwl130_bgn_cfg)}, |
| 236 | {IWL_PCI_DEVICE(0x0896, 0x5027, iwl130_bg_cfg)}, |
| 237 | |
| 238 | /* 2x00 Series */ |
| 239 | {IWL_PCI_DEVICE(0x0890, 0x4022, iwl2000_2bgn_cfg)}, |
| 240 | {IWL_PCI_DEVICE(0x0891, 0x4222, iwl2000_2bgn_cfg)}, |
| 241 | {IWL_PCI_DEVICE(0x0890, 0x4422, iwl2000_2bgn_cfg)}, |
Wey-Yi Guy | 1603dd4 | 2011-08-25 23:11:17 -0700 | [diff] [blame] | 242 | {IWL_PCI_DEVICE(0x0890, 0x4822, iwl2000_2bgn_d_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 243 | |
| 244 | /* 2x30 Series */ |
| 245 | {IWL_PCI_DEVICE(0x0887, 0x4062, iwl2030_2bgn_cfg)}, |
| 246 | {IWL_PCI_DEVICE(0x0888, 0x4262, iwl2030_2bgn_cfg)}, |
| 247 | {IWL_PCI_DEVICE(0x0887, 0x4462, iwl2030_2bgn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 248 | |
| 249 | /* 6x35 Series */ |
| 250 | {IWL_PCI_DEVICE(0x088E, 0x4060, iwl6035_2agn_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 251 | {IWL_PCI_DEVICE(0x088E, 0x406A, iwl6035_2agn_sff_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 252 | {IWL_PCI_DEVICE(0x088F, 0x4260, iwl6035_2agn_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 253 | {IWL_PCI_DEVICE(0x088F, 0x426A, iwl6035_2agn_sff_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 254 | {IWL_PCI_DEVICE(0x088E, 0x4460, iwl6035_2agn_cfg)}, |
Emmanuel Grumbach | 08a5dd3 | 2013-09-24 19:34:26 +0300 | [diff] [blame] | 255 | {IWL_PCI_DEVICE(0x088E, 0x446A, iwl6035_2agn_sff_cfg)}, |
Wey-Yi Guy | 259653d | 2012-02-22 08:18:55 -0800 | [diff] [blame] | 256 | {IWL_PCI_DEVICE(0x088E, 0x4860, iwl6035_2agn_cfg)}, |
Shuduo Sang | 20ecf9f | 2013-03-30 14:26:37 +0800 | [diff] [blame] | 257 | {IWL_PCI_DEVICE(0x088F, 0x5260, iwl6035_2agn_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 258 | |
| 259 | /* 105 Series */ |
| 260 | {IWL_PCI_DEVICE(0x0894, 0x0022, iwl105_bgn_cfg)}, |
| 261 | {IWL_PCI_DEVICE(0x0895, 0x0222, iwl105_bgn_cfg)}, |
| 262 | {IWL_PCI_DEVICE(0x0894, 0x0422, iwl105_bgn_cfg)}, |
Wey-Yi Guy | b319d3e | 2011-10-10 07:27:01 -0700 | [diff] [blame] | 263 | {IWL_PCI_DEVICE(0x0894, 0x0822, iwl105_bgn_d_cfg)}, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 264 | |
| 265 | /* 135 Series */ |
| 266 | {IWL_PCI_DEVICE(0x0892, 0x0062, iwl135_bgn_cfg)}, |
| 267 | {IWL_PCI_DEVICE(0x0893, 0x0262, iwl135_bgn_cfg)}, |
| 268 | {IWL_PCI_DEVICE(0x0892, 0x0462, iwl135_bgn_cfg)}, |
Johannes Berg | 4f25bbd | 2013-06-10 16:12:52 +0200 | [diff] [blame] | 269 | #endif /* CONFIG_IWLDVM */ |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 270 | |
Johannes Berg | 4f25bbd | 2013-06-10 16:12:52 +0200 | [diff] [blame] | 271 | #if IS_ENABLED(CONFIG_IWLMVM) |
Eran Harary | c4aee08 | 2013-10-08 08:03:07 +0200 | [diff] [blame] | 272 | /* 7260 Series */ |
Johannes Berg | 99cd471 | 2013-01-24 13:52:01 +0100 | [diff] [blame] | 273 | {IWL_PCI_DEVICE(0x08B1, 0x4070, iwl7260_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 274 | {IWL_PCI_DEVICE(0x08B1, 0x4072, iwl7260_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 275 | {IWL_PCI_DEVICE(0x08B1, 0x4170, iwl7260_2ac_cfg)}, |
| 276 | {IWL_PCI_DEVICE(0x08B1, 0x4060, iwl7260_2n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 277 | {IWL_PCI_DEVICE(0x08B1, 0x406A, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 278 | {IWL_PCI_DEVICE(0x08B1, 0x4160, iwl7260_2n_cfg)}, |
| 279 | {IWL_PCI_DEVICE(0x08B1, 0x4062, iwl7260_n_cfg)}, |
| 280 | {IWL_PCI_DEVICE(0x08B1, 0x4162, iwl7260_n_cfg)}, |
| 281 | {IWL_PCI_DEVICE(0x08B2, 0x4270, iwl7260_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 282 | {IWL_PCI_DEVICE(0x08B2, 0x4272, iwl7260_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 283 | {IWL_PCI_DEVICE(0x08B2, 0x4260, iwl7260_2n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 284 | {IWL_PCI_DEVICE(0x08B2, 0x426A, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 285 | {IWL_PCI_DEVICE(0x08B2, 0x4262, iwl7260_n_cfg)}, |
| 286 | {IWL_PCI_DEVICE(0x08B1, 0x4470, iwl7260_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 287 | {IWL_PCI_DEVICE(0x08B1, 0x4472, iwl7260_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 288 | {IWL_PCI_DEVICE(0x08B1, 0x4460, iwl7260_2n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 289 | {IWL_PCI_DEVICE(0x08B1, 0x446A, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 290 | {IWL_PCI_DEVICE(0x08B1, 0x4462, iwl7260_n_cfg)}, |
| 291 | {IWL_PCI_DEVICE(0x08B1, 0x4870, iwl7260_2ac_cfg)}, |
| 292 | {IWL_PCI_DEVICE(0x08B1, 0x486E, iwl7260_2ac_cfg)}, |
Eytan Lifshitz | 6be497f | 2013-07-24 14:49:18 +0300 | [diff] [blame] | 293 | {IWL_PCI_DEVICE(0x08B1, 0x4A70, iwl7260_2ac_cfg_high_temp)}, |
| 294 | {IWL_PCI_DEVICE(0x08B1, 0x4A6E, iwl7260_2ac_cfg_high_temp)}, |
| 295 | {IWL_PCI_DEVICE(0x08B1, 0x4A6C, iwl7260_2ac_cfg_high_temp)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 296 | {IWL_PCI_DEVICE(0x08B1, 0x4570, iwl7260_2ac_cfg)}, |
| 297 | {IWL_PCI_DEVICE(0x08B1, 0x4560, iwl7260_2n_cfg)}, |
| 298 | {IWL_PCI_DEVICE(0x08B2, 0x4370, iwl7260_2ac_cfg)}, |
| 299 | {IWL_PCI_DEVICE(0x08B2, 0x4360, iwl7260_2n_cfg)}, |
| 300 | {IWL_PCI_DEVICE(0x08B1, 0x5070, iwl7260_2ac_cfg)}, |
Emmanuel Grumbach | 8c21c53 | 2013-10-23 15:44:25 +0300 | [diff] [blame] | 301 | {IWL_PCI_DEVICE(0x08B1, 0x5072, iwl7260_2ac_cfg)}, |
| 302 | {IWL_PCI_DEVICE(0x08B1, 0x5170, iwl7260_2ac_cfg)}, |
| 303 | {IWL_PCI_DEVICE(0x08B1, 0x5770, iwl7260_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 304 | {IWL_PCI_DEVICE(0x08B1, 0x4020, iwl7260_2n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 305 | {IWL_PCI_DEVICE(0x08B1, 0x402A, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 306 | {IWL_PCI_DEVICE(0x08B2, 0x4220, iwl7260_2n_cfg)}, |
| 307 | {IWL_PCI_DEVICE(0x08B1, 0x4420, iwl7260_2n_cfg)}, |
Johannes Berg | 99cd471 | 2013-01-24 13:52:01 +0100 | [diff] [blame] | 308 | {IWL_PCI_DEVICE(0x08B1, 0xC070, iwl7260_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 309 | {IWL_PCI_DEVICE(0x08B1, 0xC072, iwl7260_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 310 | {IWL_PCI_DEVICE(0x08B1, 0xC170, iwl7260_2ac_cfg)}, |
| 311 | {IWL_PCI_DEVICE(0x08B1, 0xC060, iwl7260_2n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 312 | {IWL_PCI_DEVICE(0x08B1, 0xC06A, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 313 | {IWL_PCI_DEVICE(0x08B1, 0xC160, iwl7260_2n_cfg)}, |
| 314 | {IWL_PCI_DEVICE(0x08B1, 0xC062, iwl7260_n_cfg)}, |
| 315 | {IWL_PCI_DEVICE(0x08B1, 0xC162, iwl7260_n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 316 | {IWL_PCI_DEVICE(0x08B1, 0xC770, iwl7260_2ac_cfg)}, |
| 317 | {IWL_PCI_DEVICE(0x08B1, 0xC760, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 318 | {IWL_PCI_DEVICE(0x08B2, 0xC270, iwl7260_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 319 | {IWL_PCI_DEVICE(0x08B2, 0xC272, iwl7260_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 320 | {IWL_PCI_DEVICE(0x08B2, 0xC260, iwl7260_2n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 321 | {IWL_PCI_DEVICE(0x08B2, 0xC26A, iwl7260_n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 322 | {IWL_PCI_DEVICE(0x08B2, 0xC262, iwl7260_n_cfg)}, |
| 323 | {IWL_PCI_DEVICE(0x08B1, 0xC470, iwl7260_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 324 | {IWL_PCI_DEVICE(0x08B1, 0xC472, iwl7260_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 325 | {IWL_PCI_DEVICE(0x08B1, 0xC460, iwl7260_2n_cfg)}, |
| 326 | {IWL_PCI_DEVICE(0x08B1, 0xC462, iwl7260_n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 327 | {IWL_PCI_DEVICE(0x08B1, 0xC570, iwl7260_2ac_cfg)}, |
| 328 | {IWL_PCI_DEVICE(0x08B1, 0xC560, iwl7260_2n_cfg)}, |
| 329 | {IWL_PCI_DEVICE(0x08B2, 0xC370, iwl7260_2ac_cfg)}, |
| 330 | {IWL_PCI_DEVICE(0x08B1, 0xC360, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 331 | {IWL_PCI_DEVICE(0x08B1, 0xC020, iwl7260_2n_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 332 | {IWL_PCI_DEVICE(0x08B1, 0xC02A, iwl7260_2n_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 333 | {IWL_PCI_DEVICE(0x08B2, 0xC220, iwl7260_2n_cfg)}, |
| 334 | {IWL_PCI_DEVICE(0x08B1, 0xC420, iwl7260_2n_cfg)}, |
| 335 | |
| 336 | /* 3160 Series */ |
| 337 | {IWL_PCI_DEVICE(0x08B3, 0x0070, iwl3160_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 338 | {IWL_PCI_DEVICE(0x08B3, 0x0072, iwl3160_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 339 | {IWL_PCI_DEVICE(0x08B3, 0x0170, iwl3160_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 340 | {IWL_PCI_DEVICE(0x08B3, 0x0172, iwl3160_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 341 | {IWL_PCI_DEVICE(0x08B3, 0x0060, iwl3160_2n_cfg)}, |
| 342 | {IWL_PCI_DEVICE(0x08B3, 0x0062, iwl3160_n_cfg)}, |
| 343 | {IWL_PCI_DEVICE(0x08B4, 0x0270, iwl3160_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 344 | {IWL_PCI_DEVICE(0x08B4, 0x0272, iwl3160_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 345 | {IWL_PCI_DEVICE(0x08B3, 0x0470, iwl3160_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 346 | {IWL_PCI_DEVICE(0x08B3, 0x0472, iwl3160_2ac_cfg)}, |
| 347 | {IWL_PCI_DEVICE(0x08B4, 0x0370, iwl3160_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 348 | {IWL_PCI_DEVICE(0x08B3, 0x8070, iwl3160_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 349 | {IWL_PCI_DEVICE(0x08B3, 0x8072, iwl3160_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 350 | {IWL_PCI_DEVICE(0x08B3, 0x8170, iwl3160_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 351 | {IWL_PCI_DEVICE(0x08B3, 0x8172, iwl3160_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 352 | {IWL_PCI_DEVICE(0x08B3, 0x8060, iwl3160_2n_cfg)}, |
| 353 | {IWL_PCI_DEVICE(0x08B3, 0x8062, iwl3160_n_cfg)}, |
| 354 | {IWL_PCI_DEVICE(0x08B4, 0x8270, iwl3160_2ac_cfg)}, |
Oren Givon | 498abba | 2014-09-08 08:57:05 +0300 | [diff] [blame] | 355 | {IWL_PCI_DEVICE(0x08B4, 0x8370, iwl3160_2ac_cfg)}, |
| 356 | {IWL_PCI_DEVICE(0x08B4, 0x8272, iwl3160_2ac_cfg)}, |
Oren Givon | 93fc641 | 2013-04-23 18:19:11 +0300 | [diff] [blame] | 357 | {IWL_PCI_DEVICE(0x08B3, 0x8470, iwl3160_2ac_cfg)}, |
Matti Gottlieb | b499266 | 2013-09-22 08:23:23 +0300 | [diff] [blame] | 358 | {IWL_PCI_DEVICE(0x08B3, 0x8570, iwl3160_2ac_cfg)}, |
Emmanuel Grumbach | 8c21c53 | 2013-10-23 15:44:25 +0300 | [diff] [blame] | 359 | {IWL_PCI_DEVICE(0x08B3, 0x1070, iwl3160_2ac_cfg)}, |
| 360 | {IWL_PCI_DEVICE(0x08B3, 0x1170, iwl3160_2ac_cfg)}, |
Eran Harary | c4aee08 | 2013-10-08 08:03:07 +0200 | [diff] [blame] | 361 | |
Oren Givon | 498abba | 2014-09-08 08:57:05 +0300 | [diff] [blame] | 362 | /* 3165 Series */ |
| 363 | {IWL_PCI_DEVICE(0x3165, 0x4010, iwl3165_2ac_cfg)}, |
| 364 | {IWL_PCI_DEVICE(0x3165, 0x4210, iwl3165_2ac_cfg)}, |
| 365 | |
Eran Harary | c4aee08 | 2013-10-08 08:03:07 +0200 | [diff] [blame] | 366 | /* 7265 Series */ |
| 367 | {IWL_PCI_DEVICE(0x095A, 0x5010, iwl7265_2ac_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 368 | {IWL_PCI_DEVICE(0x095A, 0x5110, iwl7265_2ac_cfg)}, |
Oren Givon | f769091 | 2014-01-23 01:19:33 +0200 | [diff] [blame] | 369 | {IWL_PCI_DEVICE(0x095A, 0x5100, iwl7265_2ac_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 370 | {IWL_PCI_DEVICE(0x095B, 0x5310, iwl7265_2ac_cfg)}, |
Oren Givon | acfcd9e | 2014-03-04 14:47:39 +0200 | [diff] [blame] | 371 | {IWL_PCI_DEVICE(0x095B, 0x5302, iwl7265_n_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 372 | {IWL_PCI_DEVICE(0x095B, 0x5210, iwl7265_2ac_cfg)}, |
Oren Givon | efc5520 | 2013-12-19 05:07:21 +0200 | [diff] [blame] | 373 | {IWL_PCI_DEVICE(0x095A, 0x5012, iwl7265_2ac_cfg)}, |
Oren Givon | acfcd9e | 2014-03-04 14:47:39 +0200 | [diff] [blame] | 374 | {IWL_PCI_DEVICE(0x095A, 0x5412, iwl7265_2ac_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 375 | {IWL_PCI_DEVICE(0x095A, 0x5410, iwl7265_2ac_cfg)}, |
Oren Givon | b3c063a | 2014-05-25 16:31:58 +0300 | [diff] [blame] | 376 | {IWL_PCI_DEVICE(0x095A, 0x5510, iwl7265_2ac_cfg)}, |
Oren Givon | efc5520 | 2013-12-19 05:07:21 +0200 | [diff] [blame] | 377 | {IWL_PCI_DEVICE(0x095A, 0x5400, iwl7265_2ac_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 378 | {IWL_PCI_DEVICE(0x095A, 0x1010, iwl7265_2ac_cfg)}, |
| 379 | {IWL_PCI_DEVICE(0x095A, 0x5000, iwl7265_2n_cfg)}, |
Oren Givon | f769091 | 2014-01-23 01:19:33 +0200 | [diff] [blame] | 380 | {IWL_PCI_DEVICE(0x095A, 0x500A, iwl7265_2n_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 381 | {IWL_PCI_DEVICE(0x095B, 0x5200, iwl7265_2n_cfg)}, |
| 382 | {IWL_PCI_DEVICE(0x095A, 0x5002, iwl7265_n_cfg)}, |
Oren Givon | 80f2679 | 2014-04-02 14:04:20 +0300 | [diff] [blame] | 383 | {IWL_PCI_DEVICE(0x095A, 0x5102, iwl7265_n_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 384 | {IWL_PCI_DEVICE(0x095B, 0x5202, iwl7265_n_cfg)}, |
| 385 | {IWL_PCI_DEVICE(0x095A, 0x9010, iwl7265_2ac_cfg)}, |
Oren Givon | f769091 | 2014-01-23 01:19:33 +0200 | [diff] [blame] | 386 | {IWL_PCI_DEVICE(0x095A, 0x9012, iwl7265_2ac_cfg)}, |
Oren Givon | 498abba | 2014-09-08 08:57:05 +0300 | [diff] [blame] | 387 | {IWL_PCI_DEVICE(0x095A, 0x900A, iwl7265_2ac_cfg)}, |
Oren Givon | efc5520 | 2013-12-19 05:07:21 +0200 | [diff] [blame] | 388 | {IWL_PCI_DEVICE(0x095A, 0x9110, iwl7265_2ac_cfg)}, |
Oren Givon | f769091 | 2014-01-23 01:19:33 +0200 | [diff] [blame] | 389 | {IWL_PCI_DEVICE(0x095A, 0x9112, iwl7265_2ac_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 390 | {IWL_PCI_DEVICE(0x095A, 0x9210, iwl7265_2ac_cfg)}, |
Oren Givon | b3c063a | 2014-05-25 16:31:58 +0300 | [diff] [blame] | 391 | {IWL_PCI_DEVICE(0x095B, 0x9200, iwl7265_2ac_cfg)}, |
Oren Givon | efc5520 | 2013-12-19 05:07:21 +0200 | [diff] [blame] | 392 | {IWL_PCI_DEVICE(0x095A, 0x9510, iwl7265_2ac_cfg)}, |
| 393 | {IWL_PCI_DEVICE(0x095A, 0x9310, iwl7265_2ac_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 394 | {IWL_PCI_DEVICE(0x095A, 0x9410, iwl7265_2ac_cfg)}, |
| 395 | {IWL_PCI_DEVICE(0x095A, 0x5020, iwl7265_2n_cfg)}, |
| 396 | {IWL_PCI_DEVICE(0x095A, 0x502A, iwl7265_2n_cfg)}, |
| 397 | {IWL_PCI_DEVICE(0x095A, 0x5420, iwl7265_2n_cfg)}, |
| 398 | {IWL_PCI_DEVICE(0x095A, 0x5090, iwl7265_2ac_cfg)}, |
Oren Givon | efc5520 | 2013-12-19 05:07:21 +0200 | [diff] [blame] | 399 | {IWL_PCI_DEVICE(0x095A, 0x5190, iwl7265_2ac_cfg)}, |
| 400 | {IWL_PCI_DEVICE(0x095A, 0x5590, iwl7265_2ac_cfg)}, |
Oren Givon | 53e88cb | 2013-11-19 03:48:19 +0200 | [diff] [blame] | 401 | {IWL_PCI_DEVICE(0x095B, 0x5290, iwl7265_2ac_cfg)}, |
| 402 | {IWL_PCI_DEVICE(0x095A, 0x5490, iwl7265_2ac_cfg)}, |
Eran Harary | 503ab8c | 2013-11-20 07:28:58 +0200 | [diff] [blame] | 403 | |
| 404 | /* 8000 Series */ |
| 405 | {IWL_PCI_DEVICE(0x24F3, 0x0010, iwl8260_2ac_cfg)}, |
| 406 | {IWL_PCI_DEVICE(0x24F4, 0x0030, iwl8260_2ac_cfg)}, |
Johannes Berg | 4f25bbd | 2013-06-10 16:12:52 +0200 | [diff] [blame] | 407 | #endif /* CONFIG_IWLMVM */ |
Johannes Berg | 99cd471 | 2013-01-24 13:52:01 +0100 | [diff] [blame] | 408 | |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 409 | {0} |
| 410 | }; |
| 411 | MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids); |
| 412 | |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 413 | #ifdef CONFIG_ACPI |
| 414 | #define SPL_METHOD "SPLC" |
| 415 | #define SPL_DOMAINTYPE_MODULE BIT(0) |
| 416 | #define SPL_DOMAINTYPE_WIFI BIT(1) |
| 417 | #define SPL_DOMAINTYPE_WIGIG BIT(2) |
| 418 | #define SPL_DOMAINTYPE_RFEM BIT(3) |
| 419 | |
| 420 | static u64 splx_get_pwr_limit(struct iwl_trans *trans, union acpi_object *splx) |
| 421 | { |
| 422 | union acpi_object *limits, *domain_type, *power_limit; |
| 423 | |
| 424 | if (splx->type != ACPI_TYPE_PACKAGE || |
| 425 | splx->package.count != 2 || |
| 426 | splx->package.elements[0].type != ACPI_TYPE_INTEGER || |
| 427 | splx->package.elements[0].integer.value != 0) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 428 | IWL_ERR(trans, "Unsupported splx structure\n"); |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 429 | return 0; |
| 430 | } |
| 431 | |
| 432 | limits = &splx->package.elements[1]; |
| 433 | if (limits->type != ACPI_TYPE_PACKAGE || |
| 434 | limits->package.count < 2 || |
| 435 | limits->package.elements[0].type != ACPI_TYPE_INTEGER || |
| 436 | limits->package.elements[1].type != ACPI_TYPE_INTEGER) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 437 | IWL_ERR(trans, "Invalid limits element\n"); |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 438 | return 0; |
| 439 | } |
| 440 | |
| 441 | domain_type = &limits->package.elements[0]; |
| 442 | power_limit = &limits->package.elements[1]; |
| 443 | if (!(domain_type->integer.value & SPL_DOMAINTYPE_WIFI)) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 444 | IWL_DEBUG_INFO(trans, "WiFi power is not limited\n"); |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 445 | return 0; |
| 446 | } |
| 447 | |
| 448 | return power_limit->integer.value; |
| 449 | } |
| 450 | |
| 451 | static void set_dflt_pwr_limit(struct iwl_trans *trans, struct pci_dev *pdev) |
| 452 | { |
| 453 | acpi_handle pxsx_handle; |
| 454 | acpi_handle handle; |
| 455 | struct acpi_buffer splx = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 456 | acpi_status status; |
| 457 | |
| 458 | pxsx_handle = ACPI_HANDLE(&pdev->dev); |
| 459 | if (!pxsx_handle) { |
Johannes Berg | c42e810 | 2014-02-26 11:16:56 +0100 | [diff] [blame] | 460 | IWL_DEBUG_INFO(trans, |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 461 | "Could not retrieve root port ACPI handle\n"); |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 462 | return; |
| 463 | } |
| 464 | |
| 465 | /* Get the method's handle */ |
| 466 | status = acpi_get_handle(pxsx_handle, (acpi_string)SPL_METHOD, &handle); |
| 467 | if (ACPI_FAILURE(status)) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 468 | IWL_DEBUG_INFO(trans, "SPL method not found\n"); |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 469 | return; |
| 470 | } |
| 471 | |
| 472 | /* Call SPLC with no arguments */ |
| 473 | status = acpi_evaluate_object(handle, NULL, NULL, &splx); |
| 474 | if (ACPI_FAILURE(status)) { |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 475 | IWL_ERR(trans, "SPLC invocation failed (0x%x)\n", status); |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 476 | return; |
| 477 | } |
| 478 | |
| 479 | trans->dflt_pwr_limit = splx_get_pwr_limit(trans, splx.pointer); |
Johannes Berg | 3c6acb6 | 2014-05-07 11:47:53 +0200 | [diff] [blame] | 480 | IWL_DEBUG_INFO(trans, "Default power limit set to %lld\n", |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 481 | trans->dflt_pwr_limit); |
| 482 | kfree(splx.pointer); |
| 483 | } |
| 484 | |
| 485 | #else /* CONFIG_ACPI */ |
| 486 | static void set_dflt_pwr_limit(struct iwl_trans *trans, struct pci_dev *pdev) {} |
| 487 | #endif |
| 488 | |
Emmanuel Grumbach | 99673ee | 2012-01-08 21:19:45 +0200 | [diff] [blame] | 489 | /* PCI registers */ |
| 490 | #define PCI_CFG_RETRY_TIMEOUT 0x041 |
| 491 | |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 492 | static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
| 493 | { |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 494 | const struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data); |
Emmanuel Grumbach | 36a7922 | 2012-02-27 13:53:32 -0800 | [diff] [blame] | 495 | struct iwl_trans *iwl_trans; |
Emmanuel Grumbach | 9130bab | 2012-03-26 08:51:09 -0700 | [diff] [blame] | 496 | struct iwl_trans_pcie *trans_pcie; |
Emmanuel Grumbach | 59f547a | 2012-11-28 16:42:09 +0200 | [diff] [blame] | 497 | int ret; |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 498 | |
Emmanuel Grumbach | 87ce05a | 2012-03-26 09:03:18 -0700 | [diff] [blame] | 499 | iwl_trans = iwl_trans_pcie_alloc(pdev, ent, cfg); |
Luciano Coelho | 6965a35 | 2013-08-10 16:35:45 +0300 | [diff] [blame] | 500 | if (IS_ERR(iwl_trans)) |
| 501 | return PTR_ERR(iwl_trans); |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 502 | |
Emmanuel Grumbach | 36a7922 | 2012-02-27 13:53:32 -0800 | [diff] [blame] | 503 | pci_set_drvdata(pdev, iwl_trans); |
| 504 | |
Emmanuel Grumbach | 9130bab | 2012-03-26 08:51:09 -0700 | [diff] [blame] | 505 | trans_pcie = IWL_TRANS_GET_PCIE_TRANS(iwl_trans); |
Emmanuel Grumbach | 87ce05a | 2012-03-26 09:03:18 -0700 | [diff] [blame] | 506 | trans_pcie->drv = iwl_drv_start(iwl_trans, cfg); |
Emmanuel Grumbach | 59f547a | 2012-11-28 16:42:09 +0200 | [diff] [blame] | 507 | |
Luciano Coelho | eafe25e | 2013-08-13 10:34:55 +0300 | [diff] [blame] | 508 | if (IS_ERR(trans_pcie->drv)) { |
Emmanuel Grumbach | 59f547a | 2012-11-28 16:42:09 +0200 | [diff] [blame] | 509 | ret = PTR_ERR(trans_pcie->drv); |
Emmanuel Grumbach | b52e7ea | 2012-02-02 14:16:59 -0800 | [diff] [blame] | 510 | goto out_free_trans; |
Emmanuel Grumbach | 59f547a | 2012-11-28 16:42:09 +0200 | [diff] [blame] | 511 | } |
Emmanuel Grumbach | a42a184 | 2012-02-02 14:33:08 -0800 | [diff] [blame] | 512 | |
Ido Yariv | bcb079a | 2014-01-16 21:00:11 -0500 | [diff] [blame] | 513 | set_dflt_pwr_limit(iwl_trans, pdev); |
| 514 | |
Meenakshi Venkataraman | 9da987a | 2012-07-16 18:43:56 -0700 | [diff] [blame] | 515 | /* register transport layer debugfs here */ |
Emmanuel Grumbach | 59f547a | 2012-11-28 16:42:09 +0200 | [diff] [blame] | 516 | ret = iwl_trans_dbgfs_register(iwl_trans, iwl_trans->dbgfs_dir); |
| 517 | if (ret) |
Meenakshi Venkataraman | 9da987a | 2012-07-16 18:43:56 -0700 | [diff] [blame] | 518 | goto out_free_drv; |
| 519 | |
Emmanuel Grumbach | a48709c | 2011-05-31 08:22:30 +0300 | [diff] [blame] | 520 | return 0; |
| 521 | |
Meenakshi Venkataraman | 9da987a | 2012-07-16 18:43:56 -0700 | [diff] [blame] | 522 | out_free_drv: |
| 523 | iwl_drv_stop(trans_pcie->drv); |
Emmanuel Grumbach | b52e7ea | 2012-02-02 14:16:59 -0800 | [diff] [blame] | 524 | out_free_trans: |
Johannes Berg | d1ff525 | 2012-04-12 06:24:30 -0700 | [diff] [blame] | 525 | iwl_trans_pcie_free(iwl_trans); |
Emmanuel Grumbach | 59f547a | 2012-11-28 16:42:09 +0200 | [diff] [blame] | 526 | return ret; |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 527 | } |
| 528 | |
Bill Pemberton | d00064d | 2012-12-03 09:56:34 -0500 | [diff] [blame] | 529 | static void iwl_pci_remove(struct pci_dev *pdev) |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 530 | { |
Emmanuel Grumbach | 9130bab | 2012-03-26 08:51:09 -0700 | [diff] [blame] | 531 | struct iwl_trans *trans = pci_get_drvdata(pdev); |
| 532 | struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); |
Emmanuel Grumbach | 65e291a | 2011-09-06 09:31:17 -0700 | [diff] [blame] | 533 | |
Emmanuel Grumbach | 9130bab | 2012-03-26 08:51:09 -0700 | [diff] [blame] | 534 | iwl_drv_stop(trans_pcie->drv); |
Johannes Berg | d1ff525 | 2012-04-12 06:24:30 -0700 | [diff] [blame] | 535 | iwl_trans_pcie_free(trans); |
Emmanuel Grumbach | 084dd791 | 2011-05-31 09:07:00 +0300 | [diff] [blame] | 536 | } |
| 537 | |
Daniel Halperin | f090fba | 2011-08-25 23:11:15 -0700 | [diff] [blame] | 538 | #ifdef CONFIG_PM_SLEEP |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 539 | |
| 540 | static int iwl_pci_suspend(struct device *device) |
| 541 | { |
Emmanuel Grumbach | b09b296d | 2011-07-11 13:14:37 +0300 | [diff] [blame] | 542 | /* Before you put code here, think about WoWLAN. You cannot check here |
| 543 | * whether WoWLAN is enabled or not, and your code will run even if |
| 544 | * WoWLAN is enabled - don't kill the NIC, someone may need it in Sx. |
| 545 | */ |
| 546 | |
Johannes Berg | 5fdda04 | 2013-08-02 10:51:22 +0200 | [diff] [blame] | 547 | return 0; |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | static int iwl_pci_resume(struct device *device) |
| 551 | { |
| 552 | struct pci_dev *pdev = to_pci_dev(device); |
Johannes Berg | 5fdda04 | 2013-08-02 10:51:22 +0200 | [diff] [blame] | 553 | struct iwl_trans *trans = pci_get_drvdata(pdev); |
| 554 | bool hw_rfkill; |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 555 | |
Emmanuel Grumbach | b09b296d | 2011-07-11 13:14:37 +0300 | [diff] [blame] | 556 | /* Before you put code here, think about WoWLAN. You cannot check here |
| 557 | * whether WoWLAN is enabled or not, and your code will run even if |
| 558 | * WoWLAN is enabled - the NIC may be alive. |
| 559 | */ |
| 560 | |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 561 | /* |
| 562 | * We disable the RETRY_TIMEOUT register (0x41) to keep |
| 563 | * PCI Tx retries from interfering with C3 CPU state. |
| 564 | */ |
| 565 | pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00); |
| 566 | |
Johannes Berg | 5fdda04 | 2013-08-02 10:51:22 +0200 | [diff] [blame] | 567 | if (!trans->op_mode) |
| 568 | return 0; |
| 569 | |
| 570 | iwl_enable_rfkill_int(trans); |
| 571 | |
| 572 | hw_rfkill = iwl_is_rfkill_set(trans); |
Johannes Berg | 14cfca7 | 2014-02-25 20:50:53 +0100 | [diff] [blame] | 573 | iwl_trans_pcie_rf_kill(trans, hw_rfkill); |
Johannes Berg | 5fdda04 | 2013-08-02 10:51:22 +0200 | [diff] [blame] | 574 | |
| 575 | return 0; |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 576 | } |
| 577 | |
Johannes Berg | 1e5cf9b | 2011-06-21 04:30:56 -0700 | [diff] [blame] | 578 | static SIMPLE_DEV_PM_OPS(iwl_dev_pm_ops, iwl_pci_suspend, iwl_pci_resume); |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 579 | |
| 580 | #define IWL_PM_OPS (&iwl_dev_pm_ops) |
| 581 | |
| 582 | #else |
| 583 | |
| 584 | #define IWL_PM_OPS NULL |
| 585 | |
| 586 | #endif |
| 587 | |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 588 | static struct pci_driver iwl_pci_driver = { |
| 589 | .name = DRV_NAME, |
| 590 | .id_table = iwl_hw_card_ids, |
| 591 | .probe = iwl_pci_probe, |
Bill Pemberton | d00064d | 2012-12-03 09:56:34 -0500 | [diff] [blame] | 592 | .remove = iwl_pci_remove, |
Emmanuel Grumbach | 48d1a21 | 2011-05-24 11:39:02 +0300 | [diff] [blame] | 593 | .driver.pm = IWL_PM_OPS, |
| 594 | }; |
| 595 | |
| 596 | int __must_check iwl_pci_register_driver(void) |
| 597 | { |
| 598 | int ret; |
| 599 | ret = pci_register_driver(&iwl_pci_driver); |
| 600 | if (ret) |
| 601 | pr_err("Unable to initialize PCI module\n"); |
| 602 | |
| 603 | return ret; |
| 604 | } |
| 605 | |
| 606 | void iwl_pci_unregister_driver(void) |
| 607 | { |
| 608 | pci_unregister_driver(&iwl_pci_driver); |
| 609 | } |