|
Description
|
We need to integrate these recent changes from Xorg CVS into the Solaris Xorg nv driver:
Changes by: xxxxx@xxxxx.org 06/01/22 16:04:41
Log message:
* man/nv.man:
* src/nv_driver.c: (NVProbe), (NVPreInit):
* src/nv_hw.c: (nvGetClocks), (NVCalcStateExt), (NVLoadStateExt):
New chip support from Mark Vojkovich's 2006-01-20 and 2006-01-21 XFree86 CVS
updates.
Modified files:
driver/xf86-video-nv/:
ChangeLog
driver/xf86-video-nv/man/:
nv.man
driver/xf86-video-nv/src/:
nv_driver.c nv_hw.c
Revision Changes Path
1.10 +8 -0 driver/xf86-video-nv/ChangeLog
http://cvs.freedesktop.org/xorg/driver/xf86-video-nv/ChangeLog
1.6 +4 -3 driver/xf86-video-nv/man/nv.man
http://cvs.freedesktop.org/xorg/driver/xf86-video-nv/man/nv.man
1.20 +61 -63 driver/xf86-video-nv/src/nv_driver.c
http://cvs.freedesktop.org/xorg/driver/xf86-video-nv/src/nv_driver.c
1.12 +26 -10 driver/xf86-video-nv/src/nv_hw.c
http://cvs.freedesktop.org/xorg/driver/xf86-video-nv/src/nv_hw.c
These add support for these PCI ids/devices:
+ { 0x10DE0047, "GeForce 6800 GS" },
+ { 0x10DE0095, "GeForce 7800 SLI" },
+ { 0x10DE01D1, "GeForce 7300 LE" },
+ { 0x10DE01D6, "GeForce Go 7200" },
+ { 0x10DE01D7, "GeForce Go 7300" },
+ { 0x10DE01D8, "GeForce Go 7400" },
+ { 0x10DE01DA, "Quadro NVS 110M" },
+ { 0x10DE01DB, "Quadro NVS 120M" },
+ { 0x10DE01DC, "Quadro FX 350M" },
+ { 0x10DE01DE, "Quadro FX 350" },
+ { 0x10DE01DF, "GeForce 7300 GS" },
+
+ { 0x10DE0398, "GeForce Go 7600" },
+ { 0x10DE0399, "GeForce Go 7600 GT"},
+ { 0x10DE039A, "Quadro NVS 300M" },
+ { 0x10DE039C, "Quadro FX 550M" },
+
+ { 0x10DE0298, "GeForce Go 7900 GS" },
+ { 0x10DE0299, "GeForce Go 7900 GTX" },
+ { 0x10DE029A, "Quadro FX 2500M" },
+ { 0x10DE029B, "Quadro FX 1500M" },
+
+ { 0x10DE0240, "GeForce 6150" },
+ { 0x10DE0241, "GeForce 6150 LE" },
+ { 0x10DE0242, "GeForce 6100" },
+ { 0x10DE0244, "GeForce Go 6150" },
+ { 0x10DE0247, "GeForce Go 6100" },
|