/*-1* SPDX-License-Identifier: ISC2*3* Copyright (c) 2002-2008 Sam Leffler, Errno Consulting4* Copyright (c) 2002-2008 Atheros Communications, Inc.5*6* Permission to use, copy, modify, and/or distribute this software for any7* purpose with or without fee is hereby granted, provided that the above8* copyright notice and this permission notice appear in all copies.9*10* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES11* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF12* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR13* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES14* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN15* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF16* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.17*/1819#ifndef _DEV_ATH_DEVID_H_20#define _DEV_ATH_DEVID_H_2122#define ATHEROS_VENDOR_ID 0x168c /* Atheros PCI vendor ID */23/*24* NB: all Atheros-based devices should have a PCI vendor ID25* of 0x168c, but some vendors, in their infinite wisdom26* do not follow this so we must handle them specially.27*/28#define ATHEROS_3COM_VENDOR_ID 0xa727 /* 3Com 3CRPAG175 vendor ID */29#define ATHEROS_3COM2_VENDOR_ID 0x10b7 /* 3Com 3CRDAG675 vendor ID */3031/* AR5210 (for reference) */32#define AR5210_DEFAULT 0x1107 /* No eeprom HW default */33#define AR5210_PROD 0x0007 /* Final device ID */34#define AR5210_AP 0x0207 /* Early AP11s */3536/* AR5211 */37#define AR5211_DEFAULT 0x1112 /* No eeprom HW default */38#define AR5311_DEVID 0x0011 /* Final ar5311 devid */39#define AR5211_DEVID 0x0012 /* Final ar5211 devid */40#define AR5211_LEGACY 0xff12 /* Original emulation board */41#define AR5211_FPGA11B 0xf11b /* 11b emulation board */4243/* AR5212 */44#define AR5212_DEFAULT 0x1113 /* No eeprom HW default */45#define AR5212_DEVID 0x0013 /* Final ar5212 devid */46#define AR5212_FPGA 0xf013 /* Emulation board */47#define AR5212_DEVID_IBM 0x1014 /* IBM minipci ID */48#define AR5212_AR5312_REV2 0x0052 /* AR5312 WMAC (AP31) */49#define AR5212_AR5312_REV7 0x0057 /* AR5312 WMAC (AP30-040) */50#define AR5212_AR2313_REV8 0x0058 /* AR2313 WMAC (AP43-030) */51#define AR5212_AR2315_REV6 0x0086 /* AR2315 WMAC (AP51-Light) */52#define AR5212_AR2315_REV7 0x0087 /* AR2315 WMAC (AP51-Full) */53#define AR5212_AR2317_REV1 0x0090 /* AR2317 WMAC (AP61-Light) */54#define AR5212_AR2317_REV2 0x0091 /* AR2317 WMAC (AP61-Full) */5556/* AR5212 compatible devid's also attach to 5212 */57#define AR5212_DEVID_0014 0x001458#define AR5212_DEVID_0015 0x001559#define AR5212_DEVID_0016 0x001660#define AR5212_DEVID_0017 0x001761#define AR5212_DEVID_0018 0x001862#define AR5212_DEVID_0019 0x001963#define AR5212_AR2413 0x001a /* AR2413 aka Griffin-lite */64#define AR5212_AR5413 0x001b /* Eagle */65#define AR5212_AR5424 0x001c /* Condor (PCI express) */66#define AR5212_AR2417 0x001d /* Nala, PCI */67#define AR5212_DEVID_FF19 0xff19 /* XXX PCI express */6869/* AR5213 */70#define AR5213_SREV_1_0 0x005571#define AR5213_SREV_REG 0x40207273/* AR5416 compatible devid's */74#define AR5416_DEVID_PCI 0x0023 /* AR5416 PCI (MB/CB) Owl */75#define AR5416_DEVID_PCIE 0x0024 /* AR5418 PCI-E (XB) Owl */76#define AR5416_AR9130_DEVID 0x000b /* AR9130 SoC WiMAC */77#define AR9160_DEVID_PCI 0x0027 /* AR9160 PCI Sowl */78#define AR9280_DEVID_PCI 0x0029 /* AR9280 PCI Merlin */79#define AR9280_DEVID_PCIE 0x002a /* AR9220 PCI-E Merlin */80#define AR9285_DEVID_PCIE 0x002b /* AR9285 PCI-E Kite */81#define AR2427_DEVID_PCIE 0x002c /* AR2427 PCI-E w/ 802.11n bonded out */82#define AR9287_DEVID_PCI 0x002d /* AR9227 PCI Kiwi */83#define AR9287_DEVID_PCIE 0x002e /* AR9287 PCI-E Kiwi */8485/* AR9300 */86#define AR9300_DEVID_AR9380_PCIE 0x003087#define AR9300_DEVID_EMU_PCIE 0xabcd88#define AR9300_DEVID_AR9340 0x003189#define AR9300_DEVID_AR9485_PCIE 0x003290#define AR9300_DEVID_AR9580_PCIE 0x003391#define AR9300_DEVID_AR946X_PCIE 0x003492#define AR9300_DEVID_AR9330 0x003593#define AR9300_DEVID_QCA9565 0x003694#define AR9300_DEVID_AR1111_PCIE 0x003795#define AR9300_DEVID_QCA955X 0x003996#define AR9300_DEVID_QCA953X 0x003d /* Honey Bee */9798#define AR_SUBVENDOR_ID_NOG 0x0e11 /* No 11G subvendor ID */99#define AR_SUBVENDOR_ID_NEW_A 0x7065 /* Update device to new RD */100#endif /* _DEV_ATH_DEVID_H */101102103