162306a36Sopenharmony_ci/* 262306a36Sopenharmony_ci * Adaptec AIC79xx device driver for Linux. 362306a36Sopenharmony_ci * 462306a36Sopenharmony_ci * Copyright (c) 2000-2001 Adaptec Inc. 562306a36Sopenharmony_ci * All rights reserved. 662306a36Sopenharmony_ci * 762306a36Sopenharmony_ci * Redistribution and use in source and binary forms, with or without 862306a36Sopenharmony_ci * modification, are permitted provided that the following conditions 962306a36Sopenharmony_ci * are met: 1062306a36Sopenharmony_ci * 1. Redistributions of source code must retain the above copyright 1162306a36Sopenharmony_ci * notice, this list of conditions, and the following disclaimer, 1262306a36Sopenharmony_ci * without modification. 1362306a36Sopenharmony_ci * 2. Redistributions in binary form must reproduce at minimum a disclaimer 1462306a36Sopenharmony_ci * substantially similar to the "NO WARRANTY" disclaimer below 1562306a36Sopenharmony_ci * ("Disclaimer") and any redistribution must be conditioned upon 1662306a36Sopenharmony_ci * including a substantially similar Disclaimer requirement for further 1762306a36Sopenharmony_ci * binary redistribution. 1862306a36Sopenharmony_ci * 3. Neither the names of the above-listed copyright holders nor the names 1962306a36Sopenharmony_ci * of any contributors may be used to endorse or promote products derived 2062306a36Sopenharmony_ci * from this software without specific prior written permission. 2162306a36Sopenharmony_ci * 2262306a36Sopenharmony_ci * Alternatively, this software may be distributed under the terms of the 2362306a36Sopenharmony_ci * GNU General Public License ("GPL") version 2 as published by the Free 2462306a36Sopenharmony_ci * Software Foundation. 2562306a36Sopenharmony_ci * 2662306a36Sopenharmony_ci * NO WARRANTY 2762306a36Sopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 2862306a36Sopenharmony_ci * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 2962306a36Sopenharmony_ci * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 3062306a36Sopenharmony_ci * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 3162306a36Sopenharmony_ci * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 3262306a36Sopenharmony_ci * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 3362306a36Sopenharmony_ci * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 3462306a36Sopenharmony_ci * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 3562306a36Sopenharmony_ci * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 3662306a36Sopenharmony_ci * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 3762306a36Sopenharmony_ci * POSSIBILITY OF SUCH DAMAGES. 3862306a36Sopenharmony_ci * 3962306a36Sopenharmony_ci * $Id$ 4062306a36Sopenharmony_ci * 4162306a36Sopenharmony_ci */ 4262306a36Sopenharmony_ci#ifndef _AIC79XX_PCI_H_ 4362306a36Sopenharmony_ci#define _AIC79XX_PCI_H_ 4462306a36Sopenharmony_ci 4562306a36Sopenharmony_ci#define ID_ALL_MASK 0xFFFFFFFFFFFFFFFFull 4662306a36Sopenharmony_ci#define ID_ALL_IROC_MASK 0xFF7FFFFFFFFFFFFFull 4762306a36Sopenharmony_ci#define ID_DEV_VENDOR_MASK 0xFFFFFFFF00000000ull 4862306a36Sopenharmony_ci#define ID_9005_GENERIC_MASK 0xFFF0FFFF00000000ull 4962306a36Sopenharmony_ci#define ID_9005_GENERIC_IROC_MASK 0xFF70FFFF00000000ull 5062306a36Sopenharmony_ci 5162306a36Sopenharmony_ci#define ID_AIC7901 0x800F9005FFFF9005ull 5262306a36Sopenharmony_ci#define ID_AHA_29320A 0x8000900500609005ull 5362306a36Sopenharmony_ci#define ID_AHA_29320ALP 0x8017900500449005ull 5462306a36Sopenharmony_ci#define ID_AHA_29320LPE 0x8017900500459005ull 5562306a36Sopenharmony_ci 5662306a36Sopenharmony_ci#define ID_AIC7901A 0x801E9005FFFF9005ull 5762306a36Sopenharmony_ci#define ID_AHA_29320LP 0x8014900500449005ull 5862306a36Sopenharmony_ci 5962306a36Sopenharmony_ci#define ID_AIC7902 0x801F9005FFFF9005ull 6062306a36Sopenharmony_ci#define ID_AIC7902_B 0x801D9005FFFF9005ull 6162306a36Sopenharmony_ci#define ID_AHA_39320 0x8010900500409005ull 6262306a36Sopenharmony_ci#define ID_AHA_29320 0x8012900500429005ull 6362306a36Sopenharmony_ci#define ID_AHA_29320B 0x8013900500439005ull 6462306a36Sopenharmony_ci#define ID_AHA_39320_B 0x8015900500409005ull 6562306a36Sopenharmony_ci#define ID_AHA_39320_B_DELL 0x8015900501681028ull 6662306a36Sopenharmony_ci#define ID_AHA_39320A 0x8016900500409005ull 6762306a36Sopenharmony_ci#define ID_AHA_39320D 0x8011900500419005ull 6862306a36Sopenharmony_ci#define ID_AHA_39320D_B 0x801C900500419005ull 6962306a36Sopenharmony_ci#define ID_AHA_39320D_HP 0x8011900500AC0E11ull 7062306a36Sopenharmony_ci#define ID_AHA_39320D_B_HP 0x801C900500AC0E11ull 7162306a36Sopenharmony_ci 7262306a36Sopenharmony_ci#endif /* _AIC79XX_PCI_H_ */ 73