18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * Adaptec AIC79xx device driver for Linux. 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * Copyright (c) 2000-2001 Adaptec Inc. 58c2ecf20Sopenharmony_ci * All rights reserved. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * Redistribution and use in source and binary forms, with or without 88c2ecf20Sopenharmony_ci * modification, are permitted provided that the following conditions 98c2ecf20Sopenharmony_ci * are met: 108c2ecf20Sopenharmony_ci * 1. Redistributions of source code must retain the above copyright 118c2ecf20Sopenharmony_ci * notice, this list of conditions, and the following disclaimer, 128c2ecf20Sopenharmony_ci * without modification. 138c2ecf20Sopenharmony_ci * 2. Redistributions in binary form must reproduce at minimum a disclaimer 148c2ecf20Sopenharmony_ci * substantially similar to the "NO WARRANTY" disclaimer below 158c2ecf20Sopenharmony_ci * ("Disclaimer") and any redistribution must be conditioned upon 168c2ecf20Sopenharmony_ci * including a substantially similar Disclaimer requirement for further 178c2ecf20Sopenharmony_ci * binary redistribution. 188c2ecf20Sopenharmony_ci * 3. Neither the names of the above-listed copyright holders nor the names 198c2ecf20Sopenharmony_ci * of any contributors may be used to endorse or promote products derived 208c2ecf20Sopenharmony_ci * from this software without specific prior written permission. 218c2ecf20Sopenharmony_ci * 228c2ecf20Sopenharmony_ci * Alternatively, this software may be distributed under the terms of the 238c2ecf20Sopenharmony_ci * GNU General Public License ("GPL") version 2 as published by the Free 248c2ecf20Sopenharmony_ci * Software Foundation. 258c2ecf20Sopenharmony_ci * 268c2ecf20Sopenharmony_ci * NO WARRANTY 278c2ecf20Sopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 288c2ecf20Sopenharmony_ci * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 298c2ecf20Sopenharmony_ci * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 308c2ecf20Sopenharmony_ci * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 318c2ecf20Sopenharmony_ci * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 328c2ecf20Sopenharmony_ci * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 338c2ecf20Sopenharmony_ci * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 348c2ecf20Sopenharmony_ci * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 358c2ecf20Sopenharmony_ci * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 368c2ecf20Sopenharmony_ci * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 378c2ecf20Sopenharmony_ci * POSSIBILITY OF SUCH DAMAGES. 388c2ecf20Sopenharmony_ci * 398c2ecf20Sopenharmony_ci * $Id$ 408c2ecf20Sopenharmony_ci * 418c2ecf20Sopenharmony_ci */ 428c2ecf20Sopenharmony_ci#ifndef _AIC79XX_PCI_H_ 438c2ecf20Sopenharmony_ci#define _AIC79XX_PCI_H_ 448c2ecf20Sopenharmony_ci 458c2ecf20Sopenharmony_ci#define ID_ALL_MASK 0xFFFFFFFFFFFFFFFFull 468c2ecf20Sopenharmony_ci#define ID_ALL_IROC_MASK 0xFF7FFFFFFFFFFFFFull 478c2ecf20Sopenharmony_ci#define ID_DEV_VENDOR_MASK 0xFFFFFFFF00000000ull 488c2ecf20Sopenharmony_ci#define ID_9005_GENERIC_MASK 0xFFF0FFFF00000000ull 498c2ecf20Sopenharmony_ci#define ID_9005_GENERIC_IROC_MASK 0xFF70FFFF00000000ull 508c2ecf20Sopenharmony_ci 518c2ecf20Sopenharmony_ci#define ID_AIC7901 0x800F9005FFFF9005ull 528c2ecf20Sopenharmony_ci#define ID_AHA_29320A 0x8000900500609005ull 538c2ecf20Sopenharmony_ci#define ID_AHA_29320ALP 0x8017900500449005ull 548c2ecf20Sopenharmony_ci#define ID_AHA_29320LPE 0x8017900500459005ull 558c2ecf20Sopenharmony_ci 568c2ecf20Sopenharmony_ci#define ID_AIC7901A 0x801E9005FFFF9005ull 578c2ecf20Sopenharmony_ci#define ID_AHA_29320LP 0x8014900500449005ull 588c2ecf20Sopenharmony_ci 598c2ecf20Sopenharmony_ci#define ID_AIC7902 0x801F9005FFFF9005ull 608c2ecf20Sopenharmony_ci#define ID_AIC7902_B 0x801D9005FFFF9005ull 618c2ecf20Sopenharmony_ci#define ID_AHA_39320 0x8010900500409005ull 628c2ecf20Sopenharmony_ci#define ID_AHA_29320 0x8012900500429005ull 638c2ecf20Sopenharmony_ci#define ID_AHA_29320B 0x8013900500439005ull 648c2ecf20Sopenharmony_ci#define ID_AHA_39320_B 0x8015900500409005ull 658c2ecf20Sopenharmony_ci#define ID_AHA_39320_B_DELL 0x8015900501681028ull 668c2ecf20Sopenharmony_ci#define ID_AHA_39320A 0x8016900500409005ull 678c2ecf20Sopenharmony_ci#define ID_AHA_39320D 0x8011900500419005ull 688c2ecf20Sopenharmony_ci#define ID_AHA_39320D_B 0x801C900500419005ull 698c2ecf20Sopenharmony_ci#define ID_AHA_39320D_HP 0x8011900500AC0E11ull 708c2ecf20Sopenharmony_ci#define ID_AHA_39320D_B_HP 0x801C900500AC0E11ull 718c2ecf20Sopenharmony_ci 728c2ecf20Sopenharmony_ci#endif /* _AIC79XX_PCI_H_ */ 73