1d422ce2eSmrg/*
2d422ce2eSmrg * Copyright (c) 1995-2003 by The XFree86 Project, Inc.
3d422ce2eSmrg *
4d422ce2eSmrg * Permission is hereby granted, free of charge, to any person obtaining a
5d422ce2eSmrg * copy of this software and associated documentation files (the "Software"),
6d422ce2eSmrg * to deal in the Software without restriction, including without limitation
7d422ce2eSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8d422ce2eSmrg * and/or sell copies of the Software, and to permit persons to whom the
9d422ce2eSmrg * Software is furnished to do so, subject to the following conditions:
10d422ce2eSmrg *
11d422ce2eSmrg * The above copyright notice and this permission notice shall be included in
12d422ce2eSmrg * all copies or substantial portions of the Software.
13d422ce2eSmrg *
14d422ce2eSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15d422ce2eSmrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16d422ce2eSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17d422ce2eSmrg * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18d422ce2eSmrg * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19d422ce2eSmrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20d422ce2eSmrg * OTHER DEALINGS IN THE SOFTWARE.
21d422ce2eSmrg *
22d422ce2eSmrg * Except as contained in this notice, the name of the copyright holder(s)
23d422ce2eSmrg * and author(s) shall not be used in advertising or otherwise to promote
24d422ce2eSmrg * the sale, use or other dealings in this Software without prior written
25d422ce2eSmrg * authorization from the copyright holder(s) and author(s).
26d422ce2eSmrg */
27d422ce2eSmrg
28d422ce2eSmrg
29d422ce2eSmrg/* VENDOR */
30d422ce2eSmrg#define PCI_VENDOR_NVIDIA               0x10DE
31d422ce2eSmrg#define PCI_VENDOR_NVIDIA_SGS           0x12D2
32d422ce2eSmrg
33d422ce2eSmrg/* DEVICE */
34d422ce2eSmrg#define PCI_CHIP_NV1                    0x0008
35d422ce2eSmrg#define PCI_CHIP_DAC64                  0x0009
36d422ce2eSmrg#define PCI_CHIP_TNT                    0x0020
37d422ce2eSmrg#define PCI_CHIP_TNT2                   0x0028
38d422ce2eSmrg#define PCI_CHIP_UTNT2                  0x0029
39d422ce2eSmrg#define PCI_CHIP_VTNT2                  0x002C
40d422ce2eSmrg#define PCI_CHIP_UVTNT2                 0x002D
41d422ce2eSmrg#define PCI_CHIP_ITNT2                  0x00A0
42d422ce2eSmrg#define PCI_CHIP_GEFORCE_256            0x0100
43d422ce2eSmrg#define PCI_CHIP_GEFORCE_DDR            0x0101
44d422ce2eSmrg#define PCI_CHIP_QUADRO                 0x0103
45d422ce2eSmrg#define PCI_CHIP_GEFORCE2_MX            0x0110
46d422ce2eSmrg#define PCI_CHIP_GEFORCE2_MX_100        0x0111
47d422ce2eSmrg#define PCI_CHIP_GEFORCE2_GO            0x0112
48d422ce2eSmrg#define PCI_CHIP_QUADRO2_MXR            0x0113
49d422ce2eSmrg#define PCI_CHIP_GEFORCE2_GTS           0x0150
50d422ce2eSmrg#define PCI_CHIP_GEFORCE2_TI            0x0151
51d422ce2eSmrg#define PCI_CHIP_GEFORCE2_ULTRA         0x0152
52d422ce2eSmrg#define PCI_CHIP_QUADRO2_PRO            0x0153
53d422ce2eSmrg#define PCI_CHIP_GEFORCE4_MX_460        0x0170
54d422ce2eSmrg#define PCI_CHIP_GEFORCE4_MX_440        0x0171
55d422ce2eSmrg#define PCI_CHIP_GEFORCE4_MX_420        0x0172
56d422ce2eSmrg#define PCI_CHIP_GEFORCE4_440_GO        0x0174
57d422ce2eSmrg#define PCI_CHIP_GEFORCE4_420_GO        0x0175
58d422ce2eSmrg#define PCI_CHIP_GEFORCE4_420_GO_M32    0x0176
59d422ce2eSmrg#define PCI_CHIP_QUADRO4_500XGL         0x0178
60d422ce2eSmrg#define PCI_CHIP_GEFORCE4_440_GO_M64    0x0179
61d422ce2eSmrg#define PCI_CHIP_QUADRO4_200            0x017A
62d422ce2eSmrg#define PCI_CHIP_QUADRO4_550XGL         0x017B
63d422ce2eSmrg#define PCI_CHIP_QUADRO4_500_GOGL       0x017C
64d422ce2eSmrg#define PCI_CHIP_IGEFORCE2              0x01A0
65d422ce2eSmrg#define PCI_CHIP_GEFORCE3               0x0200
66d422ce2eSmrg#define PCI_CHIP_GEFORCE3_TI_200        0x0201
67d422ce2eSmrg#define PCI_CHIP_GEFORCE3_TI_500        0x0202
68d422ce2eSmrg#define PCI_CHIP_QUADRO_DCC             0x0203
69d422ce2eSmrg#define PCI_CHIP_GEFORCE4_TI_4600       0x0250
70d422ce2eSmrg#define PCI_CHIP_GEFORCE4_TI_4400       0x0251
71d422ce2eSmrg#define PCI_CHIP_GEFORCE4_TI_4200       0x0253
72d422ce2eSmrg#define PCI_CHIP_QUADRO4_900XGL         0x0258
73d422ce2eSmrg#define PCI_CHIP_QUADRO4_750XGL         0x0259
74d422ce2eSmrg#define PCI_CHIP_QUADRO4_700XGL         0x025B
75d422ce2eSmrg
76d422ce2eSmrg/* NVIDIA & SGS */
77d422ce2eSmrg#define PCI_CHIP_RIVA128                0x0018
78