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