eaf6a10849
o change os glue API to be compatible with Linux so hal.o's can be used on any system o add ABI version to catch driver-HAL mismatches o move hal version information from ah_osdep.c to binary component o remove ath_hal_wait os glue component o assign constant values to all enums to avoid potential compiler incompatibilities o add support for 3Com badged cards (PCI vendor ID) o add support for IBM mini-pci cards (PCI device ID) o expose MAC, PHY, and radio hardware revisions o support for big-endian platforms o new method to set slot time in us o bug fix for 5211: beacon timers not setup correctly o bug fix for 5212: don't crash when handed a 5112 radio
70 lines
3.2 KiB
C
70 lines
3.2 KiB
C
/*-
|
|
* Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting, Atheros
|
|
* Communications, Inc. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms are permitted
|
|
* provided that the following conditions are met:
|
|
* 1. The materials contained herein are unmodified and are used
|
|
* unmodified.
|
|
* 2. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following NO
|
|
* ''WARRANTY'' disclaimer below (''Disclaimer''), without
|
|
* modification.
|
|
* 3. Redistributions in binary form must reproduce at minimum a
|
|
* disclaimer similar to the Disclaimer below and any redistribution
|
|
* must be conditioned upon including a substantially similar
|
|
* Disclaimer requirement for further binary redistribution.
|
|
* 4. Neither the names of the above-listed copyright holders nor the
|
|
* names of any contributors may be used to endorse or promote
|
|
* product derived from this software without specific prior written
|
|
* permission.
|
|
*
|
|
* NO WARRANTY
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT,
|
|
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
|
|
* FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGES.
|
|
*
|
|
* $Id: ah_devid.h,v 1.7 2003/10/22 21:17:40 sam Exp $
|
|
*/
|
|
|
|
#ifndef _DEV_ATH_DEVID_H_
|
|
#define _DEV_ATH_DEVID_H_
|
|
|
|
#define ATHEROS_VENDOR_ID 0x168c /* Atheros PCI vendor ID */
|
|
/*
|
|
* NB: all Atheros-based devices should have a PCI vendor ID
|
|
* of 0x168c, but some vendors, in their infinite wisdom
|
|
* do not follow this so we must handle them specially.
|
|
*/
|
|
#define ATHEROS_3COM_VENDOR_ID 0xa727 /* 3Com PCI vendor ID */
|
|
|
|
/* AR5210 (for reference) */
|
|
#define AR5210_DEFAULT 0x1107 /* No eeprom HW default */
|
|
#define AR5210_PROD 0x0007 /* Final device ID */
|
|
#define AR5210_AP 0x0207 /* Early AP11s */
|
|
|
|
/* AR5211 */
|
|
#define AR5211_DEFAULT 0x1112 /* No eeprom HW default */
|
|
#define AR5311_DEVID 0x0011 /* Final ar5311 devid */
|
|
#define AR5211_DEVID 0x0012 /* Final ar5211 devid */
|
|
#define AR5211_LEGACY 0xff12 /* Original emulation board */
|
|
#define AR5211_FPGA11B 0xf11b /* 11b emulation board */
|
|
|
|
/* AR5212 */
|
|
#define AR5212_DEFAULT 0x1113 /* No eeprom HW default */
|
|
#define AR5212_DEVID 0x0013 /* Final ar5212 devid */
|
|
#define AR5212_FPGA 0xf013 /* Emulation board */
|
|
#define AR5212_DEVID_IBM 0x1014 /* IBM minipci ID */
|
|
|
|
#define AR_SUBVENDOR_ID_NOG 0x0e11 /* No 11G subvendor ID */
|
|
#endif /* _DEV_ATH_DEVID_H */
|