Hello,

I have a radeon 9600xt and am wondering what I can do with it in freebsd. I do not game and from browsing the list have seen that 3d acceleration is not possible anyway. I am running freebsd 6.0 and have an up to date port tree (As well as installed ports). The most important thing right now is getting tv out (s-video) to work. I have searched the lists and the forums and have not found any info on getting it to work with ati. I came accross the firegl driver that has been ported to freebsd, but it fails to install. Here is my xorg.conf:

Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen          "Screen 1"
        InputDevice "Mouse1" "CorePointer"
        InputDevice "Keyboard1" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        ModulePath   "/usr/X11R6/lib/modules"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
        FontPath     "/usr/X11R6/lib/X11/font/URW/"
        FontPath     "/usr/X11R6/lib/X11/fonts/local/"
EndSection

Section "Module"
        Load  "extmod"
        Load  "glx"
        Load  "dri"
        Load  "dbe"
        Load  "record"
        Load  "xtrap"
        Load  "type1"
        Load  "freetype"
EndSection

Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "kbd"
        Option "AutoRepeat" "500 30"
        Option "XkbRules"     "xorg"
        Option "XkbModel"     "pc104"
        Option "XkbLayout"    "us"
EndSection

Section "InputDevice"
        Identifier  "Mouse1"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/sysmouse"
        Option      "Buttons" "5"
        Option      "ZAxisMapping" "4 5"
        Option      "ChordMiddle"
EndSection

Section "Monitor"
        #DisplaySize      370   270     # mm
        Identifier   "My Monitor"
        VendorName   "NEC"
        ModelName    "AccuSync 95F"
 ### Comment all HorizSync and VertSync values to use DDC:
        HorizSync    31.0 - 96.0
        VertRefresh  55.0 - 160.0
        Option      "DPMS"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"                 # [<bool>]
        #Option     "SWcursor"                # [<bool>]
        #Option     "Dac6Bit"                 # [<bool>]
        #Option     "Dac8Bit"                 # [<bool>]
        #Option     "BusType"                 # [<str>]
        #Option     "CPPIOMode"               # [<bool>]
        #Option     "CPusecTimeout"           # <i>
        #Option     "AGPMode"                 # <i>
        #Option     "AGPFastWrite"            # [<bool>]
        #Option     "AGPSize"                 # <i>
        #Option     "GARTSize"                # <i>
        #Option     "RingSize"                # <i>
        #Option     "BufferSize"              # <i>
        #Option     "EnableDepthMoves"        # [<bool>]
        #Option     "EnablePageFlip"          # [<bool>]
        #Option     "NoBackBuffer"            # [<bool>]
        #Option     "DMAForXv"                # [<bool>]
        #Option     "PanelOff"                # [<bool>]
        #Option     "DDCMode"                 # [<bool>]
        #Option     "MonitorLayout"           # [<str>]
        #Option     "IgnoreEDID"              # [<bool>]
        #Option     "UseFBDev"                # [<bool>]
        #Option     "MergedFB"                # [<bool>]
        #Option     "CRT2HSync"               # [<str>]
        #Option     "CRT2VRefresh"            # [<str>]
        #Option     "CRT2Position"            # [<str>]
        #Option     "MetaModes"               # [<str>]
        #Option     "MergedDPI"               # [<str>]
        #Option     "MergedXinerama"          # [<bool>]
        #Option     "MergedXineramaCRT2IsScreen0"     # [<bool>]
        #Option     "MergedNonRectangular"    # [<bool>]
        #Option     "MergedMouseRestriction"  # [<bool>]
        #Option     "DisplayPriority"         # [<str>]
        #Option     "PanelSize"               # [<str>]
        #Option     "ForceMinDotClock"        # <freq>
        #Option     "ColorTiling"             # [<bool>]
        #Option     "VideoKey"                # <i>
        #Option     "RageTheatreCrystal"      # <i>
        #Option     "RageTheatreTunerPort"    # <i>
        #Option     "RageTheatreCompositePort"        # <i>
        #Option     "RageTheatreSVideoPort"   # <i>
        #Option     "TunerType"               # <i>
        #Option     "RageTheatreMicrocPath"   # <str>
        #Option     "RageTheatreMicrocType"   # <str>
        #Option     "RenderAccel"             # [<bool>]
        #Option     "SubPixelOrder"           # [<str>]
        #Option     "ShowCache"               # [<bool>]
        #Option     "DynamicClocks"           # [<bool>]
        #Option     "BIOSHotkeys"             # [<bool>]
        #Option     "VGAAccess"               # [<bool>]
        #Option     "ReverseDDC"              # [<bool>]
        #Option     "LVDSProbePLL"            # [<bool>]
        #Option     "AccelMethod"             # <str>
        Identifier  "** ATI Radeon (generic) [radeon]"
        Driver      "ati"
        VendorName  "ATI Technologies Inc"
        BoardName   "RV350 AR [Radeon 9600]"
        BusID       "PCI:3:0:0"
EndSection

Section "Screen"
    Identifier  "Screen 1"
    Device      "** ATI Radeon (generic) [radeon]"
    Monitor     "My Monitor"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection

-------

Is this optimal?

Sorry if I am all over the place, I am just confused by the ati setup in freebsd, but essentially what I want is maximum 2d performance and the ability to play movies on my tv (s-video out).

Thank you very much,

Casimir Loeber
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hardware
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to