1aa9e3350Smrg/* 2aa9e3350Smrg * Copyright 2011 X.Org Foundation 3aa9e3350Smrg * 4aa9e3350Smrg * Permission is hereby granted, free of charge, to any person obtaining a 5aa9e3350Smrg * copy of this software and associated documentation files (the "Software"), 6aa9e3350Smrg * to deal in the Software without restriction, including without limitation 7aa9e3350Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8aa9e3350Smrg * and/or sell copies of the Software, and to permit persons to whom the 9aa9e3350Smrg * Software is furnished to do so, subject to the following conditions: 10aa9e3350Smrg * 11aa9e3350Smrg * The above copyright notice and this permission notice shall be included in 12aa9e3350Smrg * all copies or substantial portions of the Software. 13aa9e3350Smrg * 14aa9e3350Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15aa9e3350Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16aa9e3350Smrg * FITESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17aa9e3350Smrg * COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18aa9e3350Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19aa9e3350Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20aa9e3350Smrg * DEALINGS IN THE SOFTWARE. 21aa9e3350Smrg * 22aa9e3350Smrg * Except as contained in this notice, the name of the copyright holder(s) 23aa9e3350Smrg * and author(s) shall not be used in advertising or otherwise to promote 24aa9e3350Smrg * the sale, use or other dealings in this Software without prior written 25aa9e3350Smrg * authorization from the copyright holder(s) and author(s). 26aa9e3350Smrg */ 27aa9e3350Smrg 28aa9e3350Smrg#ifndef SAVAGE_PCIIDS_H 29aa9e3350Smrg#define SAVAGE_PCIIDS_H 30aa9e3350Smrg 31aa9e3350Smrg#define PCI_CHIP_SAVAGE3D 0x8A20 32aa9e3350Smrg#define PCI_CHIP_SAVAGE3D_MV 0x8A21 33aa9e3350Smrg#define PCI_CHIP_SAVAGE4 0x8A22 34aa9e3350Smrg#define PCI_CHIP_PROSAVAGE_PM 0x8A25 35aa9e3350Smrg#define PCI_CHIP_PROSAVAGE_KM 0x8A26 36aa9e3350Smrg#define PCI_CHIP_SAVAGE_MX_MV 0x8C10 37aa9e3350Smrg#define PCI_CHIP_SAVAGE_MX 0x8C11 38aa9e3350Smrg#define PCI_CHIP_SAVAGE_IX_MV 0x8C12 39aa9e3350Smrg#define PCI_CHIP_SAVAGE_IX 0x8C13 40aa9e3350Smrg#define PCI_CHIP_SUPSAV_MX128 0x8C22 41aa9e3350Smrg#define PCI_CHIP_SUPSAV_MX64 0x8C24 42aa9e3350Smrg#define PCI_CHIP_SUPSAV_MX64C 0x8C26 43aa9e3350Smrg#define PCI_CHIP_SUPSAV_IX128SDR 0x8C2A 44aa9e3350Smrg#define PCI_CHIP_SUPSAV_IX128DDR 0x8C2B 45aa9e3350Smrg#define PCI_CHIP_SUPSAV_IX64SDR 0x8C2C 46aa9e3350Smrg#define PCI_CHIP_SUPSAV_IX64DDR 0x8C2D 47aa9e3350Smrg#define PCI_CHIP_SUPSAV_IXCSDR 0x8C2E 48aa9e3350Smrg#define PCI_CHIP_SUPSAV_IXCDDR 0x8C2F 49aa9e3350Smrg#define PCI_CHIP_S3TWISTER_P 0x8D01 50aa9e3350Smrg#define PCI_CHIP_S3TWISTER_K 0x8D02 51aa9e3350Smrg#define PCI_CHIP_PROSAVAGE_DDR 0x8D03 52aa9e3350Smrg#define PCI_CHIP_PROSAVAGE_DDRK 0x8D04 53aa9e3350Smrg#define PCI_CHIP_SAVAGE2000 0x9102 54aa9e3350Smrg 55aa9e3350Smrg#endif /* SAVAGE_PCIIDS_H */ 56