Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
xorg with raptor gfx card
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Gentoo on Sparc
View previous topic :: View next topic  
Author Message
Sugarat
Guru
Guru


Joined: 24 Jul 2002
Posts: 348

PostPosted: Sun Oct 31, 2004 8:17 pm    Post subject: xorg with raptor gfx card Reply with quote

Does anyone know what to put in an xorg.conf to get X running on a raptor gfx card?
_________________
--[ UltraSPARC ]--
Accept no imitations
Back to top
View user's profile Send private message
riposte
n00b
n00b


Joined: 17 Nov 2003
Posts: 69
Location: New Zealand

PostPosted: Sun Oct 31, 2004 11:51 pm    Post subject: Reply with quote

Hi there

On mine anyway, the chipset is a 3DLabs Permedia 2 and the driver used is 'glint'.

HTH
Back to top
View user's profile Send private message
cyan051
n00b
n00b


Joined: 21 Aug 2004
Posts: 64

PostPosted: Mon Nov 01, 2004 10:05 am    Post subject: Reply with quote

here is a device section from my xorg.conf...to save u some time...

Code:

# target hardware: Sun E250 platform, Raptor GFX adapter on 21" monitor
Section "Device"
        Identifier      "Sun Raptor GFX"
        BoardName       "3DLabs Glint Permedia 2v"
        VendorName      "Sun Microsystems"
        Driver          "glint"
        ChipSet         "pm2v"
        Option          "hw cursor" "on"
        Option          "UseFBDev"              "false"
        VideoRam        8192
EndSection

[/code]
Back to top
View user's profile Send private message
Sugarat
Guru
Guru


Joined: 24 Jul 2002
Posts: 348

PostPosted: Mon Nov 01, 2004 1:24 pm    Post subject: Reply with quote

Many thanks for that. Can i be cheeky and ask that you post the rest of the config file? I'm now having trouble getting things like the sun keyboard and mouse working!

Thanks
_________________
--[ UltraSPARC ]--
Accept no imitations
Back to top
View user's profile Send private message
cyan051
n00b
n00b


Joined: 21 Aug 2004
Posts: 64

PostPosted: Mon Nov 01, 2004 2:51 pm    Post subject: Reply with quote

no problem....

Code:
# Cyan xorg.conf
# built for Xorg-X11 R6.8
# target hardware: Sun E250 platform, Raptor GFX adapter on 21" monitor
 
Section "Files"
    RgbPath     "/usr/X11R6/lib/X11/rgb"
    FontPath    "/usr/share/fonts/misc/"
    FontPath    "/usr/share/fonts/75dpi/:unscaled"
    FontPath    "/usr/share/fonts/100dpi/:unscaled"
    FontPath    "/usr/share/fonts/Type1/"
    FontPath    "/usr/share/fonts/TTF/"
    FontPath    "/usr/share/fonts/75dpi/"
    FontPath    "/usr/share/fonts/100dpi/"
EndSection
 
Section "ServerFlags"
    Option      "blank time"    "0"
    Option      "standby time"  "0"
    Option      "suspend time"  "0"
    Option      "off time"      "0"
    #    Option     "EstimateSizesAggresively" "1"
EndSection
 
Section "Module"
        Load    "ddc"
        Load    "dbe"
#       Load    "GLcore"
        Load    "extmod"
        Load    "glx"
        Load    "record"
        Load    "bitmap"
        Load    "type1"
        Load    "freetype"
#       Load    "dri"
#    SubSection  "extmod"
#        Option  "omit xfree86-dga"
#    EndSubSection
#       Load    "vbe"
#       Load    "int10"
EndSection
 
Section "InputDevice"
        Identifier      "Sun Keyboard"
        Driver          "kbd"
        Option          "CoreKeyboard"
        Option          "XkbModel"              "type5"
        Option          "XkbLayout"             "us"
EndSection
 
Section "InputDevice"
        Identifier      "Sun Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mouse0"
        Option          "Protocol"              "auto"
#       Option          "ZAxisMapping"          "4 5"
EndSection
 
Section "Device"
        Identifier      "Sun Raptor GFX"
        BoardName       "3DLabs Glint Permedia 2v"
        VendorName      "Sun Microsystems"
        Driver          "glint"
        ChipSet         "pm2v"
#       Clocks          25.2 28.3
#       BusID           "pci:80:01:00"
        Option          "hw cursor" "on"
        Option          "UseFBDev"              "false"
        VideoRam        8192
#       Option          "pci retry"
EndSection
 
Section "Monitor"
        Identifier      "Compaq P1100"
        HorizSync       30-120
        VertRefresh     50-160
        Option          "DPMS"
#       Option          "TargetRefresh"         "75.0"
        Modeline "1024x768@75" 85.52 1024 1056 1376 1408 768 782 792 807
        Modeline "1152x864@75" 111.72 1152 1184 1608 1640 864 880 891 908
        Modeline "1280x960@75" 142.76 1280 1312 1848 1880 960 978 990 1009
        Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
#        Modeline "1600x1280@60" 193.68 1600 1632 2360 2392 1280 1306 1319 1345
 
EndSection
 
Section "Screen"
        Identifier      "Primary Screen"
        Device          "Sun Raptor GFX"
        Monitor         "Compaq P1100"
        DefaultDepth    16
        SubSection "Display"
                Depth           8
                Modes           "1600x1280" "1280x1024" "1280x960" "1152x864" "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1600x1280" "1280x1024" "1280x960" "1152x864" "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1600x1280" "1280x1024" "1280x960" "1152x864" "1024x768"
        EndSubSection
                SubSection "Display"
                Depth           32
                Modes           "1600x1280" "1280x1024" "1280x960" "1152x864" "1024x768"
        EndSubSection
EndSection
 
Section "ServerLayout"
        Identifier      "Cyan Layout"
        Screen          "Primary Screen"
        InputDevice     "Sun Keyboard"
        InputDevice     "Sun Mouse"
EndSection
 
# Section "DRI"
#       Mode    0666
# EndSection
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Gentoo on Sparc All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum