View Full Version : radeon 9100 solo con driver vesa?
ToysLand
20-02-2003, 22:30
la radeon 9100 proprio non ha driver x girare sotto linux?
devo x forza metterla come vesa?
#!/bin/sh
20-02-2003, 23:04
E' basata sul chip r200 come la radeon8500 e quindi è supportata e accelerata.
per maggiori dettagli:
http://dri.sourceforge.net/
Io ho lo stesso problema con una Ti4200....se provo a mettere i driver per geforce4 che ci sono in MDK mi da dei problemi e nn mi parte in modalità grafica!!!!
se invece metto i driver vesa nn i sono problemi!!!
HELP ME PLZ :muro: :muro:
ilsensine
21-02-2003, 10:41
Problema interessante che anch'io ho dovuto in passato affrontare con una Radeon 7000; anche la soluzione è interessante: far credere a XFree che la scheda video sia una di quelle che lui supporta, purché il driver sia ovviamente compatibile. Ad esempio spacciandola per una 8500.
Questo esempio, fatto per la 9000 pro, vale anche per la 9100:
Xfree 4.2.0 and Radeon 9000 Pro
The Radeon 9000 Pro card is not suppored with xfree 4.2 but there are two ways to get it working. The vesa driver works with this card but without support for Hardware acceleration, TV in (Video capturing (gatos)) etc. its no fun.
Xfree 4.3 will support the Radeon 9000 Pro so one way is to build Xfree 4.3beta from CVS. The simple, 2nd solution is to fake a
Radeon 8500 which is supported and compatible with the Radeon 9000. The 8500 has a R200 Chip the 9000 Pro a R250 which is faster and has some more features. The XF86Config file 'driver section' has to be modified a bit:
Section "Device"
Identifier "Videocard0"
VendorName "ATI"
Driver "radeon"
VideoRam 65536
ChipID 0x4242
Option "AGPMODE" "4"
EndSection
This chooses the radeon driver and sets the ChipID to the value of the Radeon 8500. Before starting X the agpgart module has to be loaded :
modprobe agpgart agp_try_unsupported=1 // the agp_try argument is optional and sometimes necesary to get the mod loaded !
If X starts - hopefully - glxgears should run 3.x times faster than before and the video0 device should be present (xawtx needs it
to work !). For more Info see the gatos website and look for 'drm'.
Configuration : Redhat 8 with Kernel 2.4.19 (Redhat .config file / Kernel conf)
Il "trucco" è nella linea ChipID.
Fonte: http://home.t-online.de/home/hburde/linux.html
#!/bin/sh
21-02-2003, 11:21
ma con il dri il 3d funge bene? es unreal con i driver proprietari di ati non mi sembra vada, con dri si? se è cosi' quasi quasi ci faccio un pensiero ad una ti al posto della mia vecchi geffo2mx....
ilsensine
21-02-2003, 11:22
Regalamela e te lo faccio sapere :p
#!/bin/sh
21-02-2003, 11:25
ho capito mi tengo la mia geppo :cry:
ToysLand
21-02-2003, 11:36
vi ringrazio, questa sera provo, ma non mancherò a farmi risentire visto che con linux non ci so fare proprio..
x il sensine... se vuoi te svendo vienitela a prendere :D
Fabrizio73
24-02-2003, 09:05
Ok ragazzi... ho bisogno di tutta la vostra esperienza.
Ho seguito le istruzioni riportate in questa discussione ma non c'è nulla da fare sto dannato XFree proprio non vuole saperne di far funzionare la mia M9.
Delle istruzioni riportate l'unica cosa che non sono riuscito ad eseguire è il comando modprobe ecc..., infatti quando ivoco questo comando Debian mi risponde dicendomi che non può trovare (o localizzare... non ricordo bene) il modulo agpgart.
Questo modulo l'ho installato quando ho ricompilato il kernel e l'ho anche trovato in /dev.
Quando lancio startx, esso mi dice che non trova il dispositivo.
Un'altra cosa... le istruzioni riportate in qs discussione fanno riferimento XFree86 4.2 ma io ho Xfree86 4.1.qualcosa.
Help :cry:
ilsensine
24-02-2003, 09:09
Originally posted by "Fabrizio73"
Un'altra cosa... le istruzioni riportate in qs discussione fanno riferimento XFree86 4.2 ma io ho Xfree86 4.1.qualcosa.
L'xfree 4.1 non ha il supporto per la Radeon 8500.
Puoi tentare di spacciare la tua scheda per una 7500:
ChipID 0x5157
ma non garantisco...
Fabrizio73
24-02-2003, 09:17
Accidenti :eek: ... intervento immediato... perché non cambi il tuo nick in ilsensine113prontointervento :D ?
Provo subito e ti faccio sapere...
Thank 1G.
Fabrizio73
24-02-2003, 09:48
Nulla da fare :( ...
blunotte
24-02-2003, 17:24
Originally posted by "ilsensine"
Problema interessante che anch'io ho dovuto in passato affrontare con una Radeon 7000; anche la soluzione è interessante far credere a XFree che la scheda video sia una di quelle che lui supporta, purché il driver sia ovviamente compatibile. Ad esempio spacciandola per una 8500.
Questo esempio, fatto per la 9000 pro, vale anche per la 9100
Xfree 4.2.0 and Radeon 9000 Pro
The Radeon 9000 Pro card is not suppored with xfree 4.2 but there are two ways to get it working. The vesa driver works with this card but without support for Hardware acceleration, TV in (Video capturing (gatos)) etc. its no fun.
Xfree 4.3 will support the Radeon 9000 Pro so one way is to build Xfree 4.3beta from CVS. The simple, 2nd solution is to fake a
Radeon 8500 which is supported and compatible with the Radeon 9000. The 8500 has a R200 Chip the 9000 Pro a R250 which is faster and has some more features. The XF86Config file 'driver section' has to be modified a bit
Section "Device"
Identifier "Videocard0"
VendorName "ATI"
Driver "radeon"
VideoRam 65536
ChipID 0x4242
Option "AGPMODE" "4"
EndSection
This chooses the radeon driver and sets the ChipID to the value of the Radeon 8500. Before starting X the agpgart module has to be loaded
modprobe agpgart agp_try_unsupported=1 // the agp_try argument is optional and sometimes necesary to get the mod loaded !
If X starts - hopefully - glxgears should run 3.x times faster than before and the video0 device should be present (xawtx needs it
to work !). For more Info see the gatos website and look for 'drm'.
Configuration Redhat 8 with Kernel 2.4.19 (Redhat .config file / Kernel conf)
Il "trucco" è nella linea ChipID.
Fonte http//home.t-online.de/home/hburde/linux.html
con me quel trucco non ha funzionato, ho dovuto patchare X a mano.
ho una 9000 e ora funza anche se a mio avviso ha qualcosa che non va'... la cache si riempie molto velocemente.. ho una cache di 256 mega (128 di ram) e se ogni tanto non esco da x dopo 3-4 giorni di uptime mi ritrovo la cache piena.
vBulletin® v3.6.4, Copyright ©2000-2025, Jelsoft Enterprises Ltd.