From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Russ Cox" To: 9fans@cse.psu.edu Subject: Re: [9fans] AOpen MX200 Geforce2(32MB) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20011019063225.2E5EA19A58@mail.cse.psu.edu> Date: Fri, 19 Oct 2001 02:32:20 -0400 Topicbox-Message-UUID: 0aee6be6-eaca-11e9-9e20-41e7f4b1d025 > What does this mean? > 1 0/0 0300 10de 0111 9 0:fd000000 16777216 1:f0000008 134217728 It means that your nvidia card has PCI vendor id 0x10DE and device id 0x0111, the best way to identify a vga card. No grubbing around in the bios. I think I've mentioned it here before, but I changed our as-yet-unreleased aux/vga to identify cards by vendor/device id pairs exactly as above. For example, our current nvidia vgadb entry looks like: ctlr vid=0x10DE did=0x0020 # Riva TNT vid=0x10DE did=0x0028 # Riva TNT2 vid=0x10DE did=0x0029 # Riva TNT2 Ultra vid=0x10DE did=0x002C # Riva TNT2 Vanta vid=0x10DE did=0x002D # Riva TNT2 M64 vid=0x10DE did=0x00A0 # Riva TNT2 Integrated vid=0x10DE did=0x0100 # GeForce 256 vid=0x10DE did=0x0101 # GeForce DDR vid=0x10DE did=0x0103 # Quadro vid=0x10DE did=0x0110 # GeForce2 MMX vid=0x10DE did=0x0111 # GeForce2 MMX DDR vid=0x10DE did=0x0112 # GeForce2 Go vid=0x10DE did=0x0113 # Quadro 2 MXR vid=0x10DE did=0x0150 # GeForce2 GTS vid=0x10DE did=0x0151 # GeForce2 GTS (rev 1) vid=0x10DE did=0x0152 # GeForce2 Ultra vid=0x10DE did=0x0153 # Quadro 2 Pro link=vga ctlr=nvidia linear=1 hwgc=nvidiahwgc which would have detected your card just fine. I started a rewrite of aux/vga a year ago to go even further toward making vgadb a last resort, but it got stalled. Maybe I'll return to it some day. Russ