1da10ea93SMatthew Dillon /*- 2da10ea93SMatthew Dillon * Copyright (c) 2013 Cedric GROSS <cg@cgross.info> 3da10ea93SMatthew Dillon * 4da10ea93SMatthew Dillon * Permission to use, copy, modify, and distribute this software for any 5da10ea93SMatthew Dillon * purpose with or without fee is hereby granted, provided that the above 6da10ea93SMatthew Dillon * copyright notice and this permission notice appear in all copies. 7da10ea93SMatthew Dillon * 8da10ea93SMatthew Dillon * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9da10ea93SMatthew Dillon * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10da10ea93SMatthew Dillon * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11da10ea93SMatthew Dillon * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12da10ea93SMatthew Dillon * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13da10ea93SMatthew Dillon * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14da10ea93SMatthew Dillon * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15da10ea93SMatthew Dillon * 1605538f72SMatthew Dillon * $FreeBSD$ 17da10ea93SMatthew Dillon */ 18da10ea93SMatthew Dillon 19da10ea93SMatthew Dillon #ifndef __IF_IWN_DEVID_H__ 20da10ea93SMatthew Dillon #define __IF_IWN_DEVID_H__ 21da10ea93SMatthew Dillon 22da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_SHIFT 4 23da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_MASK 0x1f 24da10ea93SMatthew Dillon 25da10ea93SMatthew Dillon /* Device revision */ 26da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_4965 0 27da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_5300 2 28da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_5350 3 29da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_5150 4 30da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_5100 5 31da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_1000 6 32da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_6000 7 33da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_6050 8 34da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_6005 11 35da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_2030 12 36da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_2000 16 37da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_105 17 38da10ea93SMatthew Dillon #define IWN_HW_REV_TYPE_135 18 39da10ea93SMatthew Dillon 40da10ea93SMatthew Dillon /* ========================================================================== 41da10ea93SMatthew Dillon * DEVICE ID BLOCK 42da10ea93SMatthew Dillon * ========================================================================== 43da10ea93SMatthew Dillon */ 44da10ea93SMatthew Dillon 45da10ea93SMatthew Dillon /* 46da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 47da10ea93SMatthew Dillon * Device ID for 2x00 series 48da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 49da10ea93SMatthew Dillon */ 50da10ea93SMatthew Dillon #define IWN_DID_2x00_1 0x0890 51da10ea93SMatthew Dillon #define IWN_DID_2x00_2 0x0891 52da10ea93SMatthew Dillon /* SubDevice ID */ 53da10ea93SMatthew Dillon #define IWN_SDID_2x00_1 0x4022 54da10ea93SMatthew Dillon #define IWN_SDID_2x00_2 0x4222 55da10ea93SMatthew Dillon #define IWN_SDID_2x00_3 0x4422 56da10ea93SMatthew Dillon #define IWN_SDID_2x00_4 0x4822 57da10ea93SMatthew Dillon 58da10ea93SMatthew Dillon /* 59da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 60da10ea93SMatthew Dillon * Device ID for 2x30 series 61da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 62da10ea93SMatthew Dillon */ 63da10ea93SMatthew Dillon #define IWN_DID_2x30_1 0x0887 64da10ea93SMatthew Dillon #define IWN_DID_2x30_2 0x0888 65da10ea93SMatthew Dillon /* SubDevice ID */ 66da10ea93SMatthew Dillon #define IWN_SDID_2x30_1 0x4062 67da10ea93SMatthew Dillon #define IWN_SDID_2x30_2 0x4262 68da10ea93SMatthew Dillon #define IWN_SDID_2x30_3 0x4462 69da10ea93SMatthew Dillon #define IWN_SDID_2x30_4 0x4066 70da10ea93SMatthew Dillon #define IWN_SDID_2x30_5 0x4266 71da10ea93SMatthew Dillon #define IWN_SDID_2x30_6 0x4466 72da10ea93SMatthew Dillon /* 73da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 74da10ea93SMatthew Dillon * Device ID for 1000 series 75da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 76da10ea93SMatthew Dillon */ 77da10ea93SMatthew Dillon #define IWN_DID_1000_1 0x0083 78da10ea93SMatthew Dillon #define IWN_DID_1000_2 0x0084 79da10ea93SMatthew Dillon /* SubDevice ID */ 80da10ea93SMatthew Dillon #define IWN_SDID_1000_1 0x1205 81da10ea93SMatthew Dillon #define IWN_SDID_1000_2 0x1305 82da10ea93SMatthew Dillon #define IWN_SDID_1000_3 0x1225 83da10ea93SMatthew Dillon #define IWN_SDID_1000_4 0x1325 84da10ea93SMatthew Dillon #define IWN_SDID_1000_5 0x1215 85da10ea93SMatthew Dillon #define IWN_SDID_1000_6 0x1315 86da10ea93SMatthew Dillon #define IWN_SDID_1000_7 0x1206 87da10ea93SMatthew Dillon #define IWN_SDID_1000_8 0x1306 88da10ea93SMatthew Dillon #define IWN_SDID_1000_9 0x1226 89da10ea93SMatthew Dillon #define IWN_SDID_1000_10 0x1326 90da10ea93SMatthew Dillon #define IWN_SDID_1000_11 0x1216 91da10ea93SMatthew Dillon #define IWN_SDID_1000_12 0x1316 92da10ea93SMatthew Dillon 93da10ea93SMatthew Dillon /* 94da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 95da10ea93SMatthew Dillon * Device ID for 6x00 series 96da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 97da10ea93SMatthew Dillon */ 98da10ea93SMatthew Dillon #define IWN_DID_6x00_1 0x422B 99da10ea93SMatthew Dillon #define IWN_DID_6x00_2 0x422C 100da10ea93SMatthew Dillon #define IWN_DID_6x00_3 0x4238 101da10ea93SMatthew Dillon #define IWN_DID_6x00_4 0x4239 102da10ea93SMatthew Dillon /* SubDevice ID */ 103da10ea93SMatthew Dillon #define IWN_SDID_6x00_1 0x1101 104da10ea93SMatthew Dillon #define IWN_SDID_6x00_2 0x1121 105da10ea93SMatthew Dillon #define IWN_SDID_6x00_3 0x1301 106da10ea93SMatthew Dillon #define IWN_SDID_6x00_4 0x1306 107da10ea93SMatthew Dillon #define IWN_SDID_6x00_5 0x1307 108da10ea93SMatthew Dillon #define IWN_SDID_6x00_6 0x1321 109da10ea93SMatthew Dillon #define IWN_SDID_6x00_7 0x1326 110da10ea93SMatthew Dillon #define IWN_SDID_6x00_8 0x1111 111da10ea93SMatthew Dillon #define IWN_SDID_6x00_9 0x1311 112da10ea93SMatthew Dillon #define IWN_SDID_6x00_10 0x1316 113da10ea93SMatthew Dillon /* 114da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 115da10ea93SMatthew Dillon * Device ID for 6x05 series 116da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 117da10ea93SMatthew Dillon */ 118da10ea93SMatthew Dillon #define IWN_DID_6x05_1 0x0082 119da10ea93SMatthew Dillon #define IWN_DID_6x05_2 0x0085 120da10ea93SMatthew Dillon /* SubDevice ID */ 121da10ea93SMatthew Dillon #define IWN_SDID_6x05_1 0x1301 122da10ea93SMatthew Dillon #define IWN_SDID_6x05_2 0x1306 123da10ea93SMatthew Dillon #define IWN_SDID_6x05_3 0x1307 124da10ea93SMatthew Dillon #define IWN_SDID_6x05_4 0x1321 125da10ea93SMatthew Dillon #define IWN_SDID_6x05_5 0x1326 126da10ea93SMatthew Dillon #define IWN_SDID_6x05_6 0x1311 127da10ea93SMatthew Dillon #define IWN_SDID_6x05_7 0x1316 128da10ea93SMatthew Dillon #define IWN_SDID_6x05_8 0xC020 129da10ea93SMatthew Dillon #define IWN_SDID_6x05_9 0xC220 130da10ea93SMatthew Dillon #define IWN_SDID_6x05_10 0x4820 131da10ea93SMatthew Dillon #define IWN_SDID_6x05_11 0x1304 132da10ea93SMatthew Dillon #define IWN_SDID_6x05_12 0x1305 133da10ea93SMatthew Dillon /* 134da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 135da10ea93SMatthew Dillon * Device ID for 6050 WiFi/WiMax Series 136da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 137da10ea93SMatthew Dillon */ 138da10ea93SMatthew Dillon #define IWN_DID_6050_1 0x0087 139da10ea93SMatthew Dillon #define IWN_DID_6050_2 0x0089 140da10ea93SMatthew Dillon /* SubDevice ID */ 141da10ea93SMatthew Dillon #define IWN_SDID_6050_1 0x1301 142da10ea93SMatthew Dillon #define IWN_SDID_6050_2 0x1306 143da10ea93SMatthew Dillon #define IWN_SDID_6050_3 0x1321 144da10ea93SMatthew Dillon #define IWN_SDID_6050_4 0x1326 145da10ea93SMatthew Dillon #define IWN_SDID_6050_5 0x1311 146da10ea93SMatthew Dillon #define IWN_SDID_6050_6 0x1316 147da10ea93SMatthew Dillon /* 148da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 149da10ea93SMatthew Dillon * Device ID for 6150 Series 150da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 151da10ea93SMatthew Dillon */ 152da10ea93SMatthew Dillon #define IWN_DID_6150_1 0x0885 153da10ea93SMatthew Dillon #define IWN_DID_6150_2 0x0886 154da10ea93SMatthew Dillon /* SubDevice ID */ 155da10ea93SMatthew Dillon #define IWN_SDID_6150_1 0x1305 156da10ea93SMatthew Dillon #define IWN_SDID_6150_2 0x1307 157da10ea93SMatthew Dillon #define IWN_SDID_6150_3 0x1325 158da10ea93SMatthew Dillon #define IWN_SDID_6150_4 0x1327 159da10ea93SMatthew Dillon #define IWN_SDID_6150_5 0x1315 160da10ea93SMatthew Dillon #define IWN_SDID_6150_6 0x1317 161da10ea93SMatthew Dillon /* 162da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 163da10ea93SMatthew Dillon * Device ID for 6035 Series 164da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 165da10ea93SMatthew Dillon */ 166da10ea93SMatthew Dillon #define IWN_DID_6035_1 0x088E 167da10ea93SMatthew Dillon #define IWN_DID_6035_2 0x088F 168da10ea93SMatthew Dillon /* SubDevice ID */ 169da10ea93SMatthew Dillon #define IWN_SDID_6035_1 0x4060 170da10ea93SMatthew Dillon #define IWN_SDID_6035_2 0x4260 171da10ea93SMatthew Dillon #define IWN_SDID_6035_3 0x4460 172da10ea93SMatthew Dillon #define IWN_SDID_6035_4 0x4860 173*36c2fb3eSTobias Heilig #define IWN_SDID_6035_5 0x5260 174da10ea93SMatthew Dillon /* 175da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 176da10ea93SMatthew Dillon * Device ID for 1030 and 6030 Series 177da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 178da10ea93SMatthew Dillon */ 179da10ea93SMatthew Dillon #define IWN_DID_x030_1 0x008A 180da10ea93SMatthew Dillon #define IWN_DID_x030_2 0x008B 181da10ea93SMatthew Dillon #define IWN_DID_x030_3 0x0090 182da10ea93SMatthew Dillon #define IWN_DID_x030_4 0x0091 183da10ea93SMatthew Dillon /* SubDevice ID */ 184da10ea93SMatthew Dillon #define IWN_SDID_x030_1 0x5305 185da10ea93SMatthew Dillon #define IWN_SDID_x030_2 0x5307 186da10ea93SMatthew Dillon #define IWN_SDID_x030_3 0x5325 187da10ea93SMatthew Dillon #define IWN_SDID_x030_4 0x5327 188da10ea93SMatthew Dillon #define IWN_SDID_x030_5 0x5315 189da10ea93SMatthew Dillon #define IWN_SDID_x030_6 0x5317 190da10ea93SMatthew Dillon #define IWN_SDID_x030_7 0x5211 191da10ea93SMatthew Dillon #define IWN_SDID_x030_8 0x5215 192da10ea93SMatthew Dillon #define IWN_SDID_x030_9 0x5216 193da10ea93SMatthew Dillon #define IWN_SDID_x030_10 0x5201 194da10ea93SMatthew Dillon #define IWN_SDID_x030_11 0x5205 195da10ea93SMatthew Dillon #define IWN_SDID_x030_12 0x5206 196da10ea93SMatthew Dillon #define IWN_SDID_x030_13 0x5207 197da10ea93SMatthew Dillon #define IWN_SDID_x030_14 0x5221 198da10ea93SMatthew Dillon #define IWN_SDID_x030_15 0x5225 199da10ea93SMatthew Dillon #define IWN_SDID_x030_16 0x5226 200da10ea93SMatthew Dillon /* 201da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 202da10ea93SMatthew Dillon * Device ID for 130 Series 203da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 204da10ea93SMatthew Dillon */ 205da10ea93SMatthew Dillon #define IWN_DID_130_1 0x0896 206da10ea93SMatthew Dillon #define IWN_DID_130_2 0x0897 207da10ea93SMatthew Dillon /* SubDevice ID */ 208da10ea93SMatthew Dillon #define IWN_SDID_130_1 0x5005 209da10ea93SMatthew Dillon #define IWN_SDID_130_2 0x5007 210da10ea93SMatthew Dillon #define IWN_SDID_130_3 0x5015 211da10ea93SMatthew Dillon #define IWN_SDID_130_4 0x5017 212da10ea93SMatthew Dillon #define IWN_SDID_130_5 0x5025 213da10ea93SMatthew Dillon #define IWN_SDID_130_6 0x5027 214da10ea93SMatthew Dillon 215da10ea93SMatthew Dillon /* 216da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 217da10ea93SMatthew Dillon * Device ID for 100 Series 218da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 219da10ea93SMatthew Dillon */ 220da10ea93SMatthew Dillon #define IWN_DID_100_1 0x08AE 221da10ea93SMatthew Dillon #define IWN_DID_100_2 0x08AF 222da10ea93SMatthew Dillon /* SubDevice ID */ 223da10ea93SMatthew Dillon #define IWN_SDID_100_1 0x1005 224da10ea93SMatthew Dillon #define IWN_SDID_100_2 0x1007 225da10ea93SMatthew Dillon #define IWN_SDID_100_3 0x1015 226da10ea93SMatthew Dillon #define IWN_SDID_100_4 0x1017 227da10ea93SMatthew Dillon #define IWN_SDID_100_5 0x1025 228da10ea93SMatthew Dillon #define IWN_SDID_100_6 0x1027 229da10ea93SMatthew Dillon 230da10ea93SMatthew Dillon /* 231da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 232fd49669cSMichael Neumann * Device ID for 105 Series 233fd49669cSMichael Neumann * -------------------------------------------------------------------------- 234fd49669cSMichael Neumann */ 235fd49669cSMichael Neumann #define IWN_DID_105_1 0x0894 236fd49669cSMichael Neumann #define IWN_DID_105_2 0x0895 237fd49669cSMichael Neumann /* SubDevice ID */ 238fd49669cSMichael Neumann #define IWN_SDID_105_1 0x0022 239fd49669cSMichael Neumann #define IWN_SDID_105_2 0x0222 240fd49669cSMichael Neumann #define IWN_SDID_105_3 0x0422 241fd49669cSMichael Neumann #define IWN_SDID_105_4 0x0822 242fd49669cSMichael Neumann 243fd49669cSMichael Neumann /* 244fd49669cSMichael Neumann * -------------------------------------------------------------------------- 245fd49669cSMichael Neumann * Device ID for 135 Series 246fd49669cSMichael Neumann * -------------------------------------------------------------------------- 247fd49669cSMichael Neumann */ 248fd49669cSMichael Neumann #define IWN_DID_135_1 0x0892 249fd49669cSMichael Neumann #define IWN_DID_135_2 0x0893 250fd49669cSMichael Neumann /* SubDevice ID */ 251fd49669cSMichael Neumann #define IWN_SDID_135_1 0x0062 252fd49669cSMichael Neumann #define IWN_SDID_135_2 0x0262 253fd49669cSMichael Neumann #define IWN_SDID_135_3 0x0462 254fd49669cSMichael Neumann 255fd49669cSMichael Neumann /* 256fd49669cSMichael Neumann * -------------------------------------------------------------------------- 257da10ea93SMatthew Dillon * Device ID for 5x00 Series 258da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 259da10ea93SMatthew Dillon */ 260da10ea93SMatthew Dillon #define IWN_DID_5x00_1 0x4232 261da10ea93SMatthew Dillon #define IWN_DID_5x00_2 0x4237 262da10ea93SMatthew Dillon #define IWN_DID_5x00_3 0x4235 263da10ea93SMatthew Dillon #define IWN_DID_5x00_4 0x4236 264da10ea93SMatthew Dillon /* SubDevice ID */ 265da10ea93SMatthew Dillon #define IWN_SDID_5x00_1 0x1201 266da10ea93SMatthew Dillon #define IWN_SDID_5x00_2 0x1301 267da10ea93SMatthew Dillon #define IWN_SDID_5x00_3 0x1204 268da10ea93SMatthew Dillon #define IWN_SDID_5x00_4 0x1304 269da10ea93SMatthew Dillon #define IWN_SDID_5x00_5 0x1205 270da10ea93SMatthew Dillon #define IWN_SDID_5x00_6 0x1305 271da10ea93SMatthew Dillon #define IWN_SDID_5x00_7 0x1206 272da10ea93SMatthew Dillon #define IWN_SDID_5x00_8 0x1306 273da10ea93SMatthew Dillon #define IWN_SDID_5x00_9 0x1221 274da10ea93SMatthew Dillon #define IWN_SDID_5x00_10 0x1321 275da10ea93SMatthew Dillon #define IWN_SDID_5x00_11 0x1224 276da10ea93SMatthew Dillon #define IWN_SDID_5x00_12 0x1324 277da10ea93SMatthew Dillon #define IWN_SDID_5x00_13 0x1225 278da10ea93SMatthew Dillon #define IWN_SDID_5x00_14 0x1325 279da10ea93SMatthew Dillon #define IWN_SDID_5x00_15 0x1226 280da10ea93SMatthew Dillon #define IWN_SDID_5x00_16 0x1326 281da10ea93SMatthew Dillon #define IWN_SDID_5x00_17 0x1211 282da10ea93SMatthew Dillon #define IWN_SDID_5x00_18 0x1311 283da10ea93SMatthew Dillon #define IWN_SDID_5x00_19 0x1214 284da10ea93SMatthew Dillon #define IWN_SDID_5x00_20 0x1314 285da10ea93SMatthew Dillon #define IWN_SDID_5x00_21 0x1215 286da10ea93SMatthew Dillon #define IWN_SDID_5x00_22 0x1315 287da10ea93SMatthew Dillon #define IWN_SDID_5x00_23 0x1216 288da10ea93SMatthew Dillon #define IWN_SDID_5x00_24 0x1316 289da10ea93SMatthew Dillon #define IWN_SDID_5x00_25 0x1021 290da10ea93SMatthew Dillon #define IWN_SDID_5x00_26 0x1121 291da10ea93SMatthew Dillon #define IWN_SDID_5x00_27 0x1024 292da10ea93SMatthew Dillon #define IWN_SDID_5x00_28 0x1124 293da10ea93SMatthew Dillon #define IWN_SDID_5x00_29 0x1001 294da10ea93SMatthew Dillon #define IWN_SDID_5x00_30 0x1101 295da10ea93SMatthew Dillon #define IWN_SDID_5x00_31 0x1004 296da10ea93SMatthew Dillon #define IWN_SDID_5x00_32 0x1104 297da10ea93SMatthew Dillon #define IWN_SDID_5x00_33 0x1011 298da10ea93SMatthew Dillon #define IWN_SDID_5x00_34 0x1111 299da10ea93SMatthew Dillon #define IWN_SDID_5x00_35 0x1014 300da10ea93SMatthew Dillon #define IWN_SDID_5x00_36 0x1114 301da10ea93SMatthew Dillon /* 302da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 303da10ea93SMatthew Dillon * Device ID for 5x50 Series 304da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 305da10ea93SMatthew Dillon */ 306da10ea93SMatthew Dillon #define IWN_DID_5x50_1 0x423A 307da10ea93SMatthew Dillon #define IWN_DID_5x50_2 0x423B 308da10ea93SMatthew Dillon #define IWN_DID_5x50_3 0x423C 309da10ea93SMatthew Dillon #define IWN_DID_5x50_4 0x423D 310da10ea93SMatthew Dillon /* SubDevice ID */ 311da10ea93SMatthew Dillon #define IWN_SDID_5x50_1 0x1001 312da10ea93SMatthew Dillon #define IWN_SDID_5x50_2 0x1021 313da10ea93SMatthew Dillon #define IWN_SDID_5x50_3 0x1011 314da10ea93SMatthew Dillon #define IWN_SDID_5x50_4 0x1201 315da10ea93SMatthew Dillon #define IWN_SDID_5x50_5 0x1301 316da10ea93SMatthew Dillon #define IWN_SDID_5x50_6 0x1206 317da10ea93SMatthew Dillon #define IWN_SDID_5x50_7 0x1306 318da10ea93SMatthew Dillon #define IWN_SDID_5x50_8 0x1221 319da10ea93SMatthew Dillon #define IWN_SDID_5x50_9 0x1321 320da10ea93SMatthew Dillon #define IWN_SDID_5x50_10 0x1211 321da10ea93SMatthew Dillon #define IWN_SDID_5x50_11 0x1311 322da10ea93SMatthew Dillon #define IWN_SDID_5x50_12 0x1216 323da10ea93SMatthew Dillon #define IWN_SDID_5x50_13 0x1316 324da10ea93SMatthew Dillon /* 325da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 326da10ea93SMatthew Dillon * Device ID for 4965 Series 327da10ea93SMatthew Dillon * -------------------------------------------------------------------------- 328da10ea93SMatthew Dillon */ 329da10ea93SMatthew Dillon #define IWN_DID_4965_1 0x4229 330da10ea93SMatthew Dillon #define IWN_DID_4965_2 0x422d 331da10ea93SMatthew Dillon #define IWN_DID_4965_3 0x4230 332da10ea93SMatthew Dillon #define IWN_DID_4965_4 0x4233 333da10ea93SMatthew Dillon 334da10ea93SMatthew Dillon #endif /* ! __IF_IWN_DEVID_H__ */ 335