Opened 17 years ago

Closed 17 years ago

#1218 closed enhancement (fixed)

Support for GeForce 7100 GS

Reported by: cyrus Owned by: axeld
Priority: normal Milestone: R1
Component: Drivers/Graphics/nVidia Version: R1/pre-alpha1
Keywords: Cc:
Blocked By: Blocking:
Platform: x86

Description

I have a GeForce 7100 GS Card (016a), based on NV44 that works great with this modifications:

Index: kernel/drivers/graphics/nvidia/driver.c =================================================================== --- kernel/drivers/graphics/nvidia/driver.c (revision 21076) +++ kernel/drivers/graphics/nvidia/driver.c (working copy) @@ -181,6 +181,7 @@

0x0168, /* Nvidia GeForce 6400 Go */ 0x0169, /* Nvidia GeForce 6250 Go */ 0x016b, /* Nvidia unknown FX Go */

+ 0x016a, /* Nvidia Geforce 7100 GS */

0x016c, /* Nvidia unknown FX Go */ 0x016d, /* Nvidia unknown FX Go */ 0x016e, /* Nvidia unknown FX */

Index: accelerants/nvidia/engine/nv_general.c =================================================================== --- accelerants/nvidia/engine/nv_general.c (revision 21076) +++ accelerants/nvidia/engine/nv_general.c (working copy) @@ -553,6 +553,13 @@

sprintf(si->adi.chipset, "NV44"); status = nvxx_general_powerup(); break;

+ case 0x016a10de: /* Nvidia 7100 GS */ + si->ps.card_type = NV44; + si->ps.card_arch = NV40A; + sprintf(si->adi.name, "Nvidia GeForce 7100 GS"); + sprintf(si->adi.chipset, "NV44"); + status = nvxx_general_powerup(); + break;

case 0x016b10de: /* Nvidia unknown FX Go */ case 0x016c10de: /* Nvidia unknown FX Go */ case 0x016d10de: /* Nvidia unknown FX Go */

It would be nice if that could go into upstream.

Change History (2)

comment:1 by korli, 17 years ago

BTW you can provide patchs as attachments, not in the ticket description :)

comment:2 by axeld, 17 years ago

Resolution: fixed
Status: newclosed

Indeed, a patch file would have been nicer. Anyway, I've applied the patch with hrev21084 - thanks!

Note: See TracTickets for help on using tickets.