Difference between revisions of "ATi video (2.6)"
From linux360
 (Added secondary category binding)  | 
				|
| (7 intermediate revisions by 6 users not shown) | |
(No difference) 
 | |
Latest revision as of 12:41, 13 February 2006
Vom trece pe rand prin urmatoarele etape:
- Setarile din kernel
 - Instalarea driverelor ATI
 - Configurarea /etc/X11/XF86Config
 
Setari kernel
Ca de obicei
cd /usr/src/linux make menuconfig
Mergem in meniul care ne intereseaza:
Device Drivers ---> Character devices --->
Si avem grija sa avem selectate urmatoarele:
<M> Enhanced Real Time Clock Support 
(...) 
<*> /dev/agpgart (AGP Support) 
    < >   ALI chipset support 
    <*>   ATI chipset support   # depinde de ce chipset avem pe northbridge
    < >   AMD Irongate, 761, and 762 chipset support 
    < >   AMD Opteron/Athlon64 on-CPU GART support 
    < >   Intel 440LX/BX/GX, I8xx and E7x05 chipset support 
    < >   NVIDIA nForce/nForce2 chipset support 
    < >   SiS chipset support 
    < >   Serverworks LE/HE chipset support 
    < >   VIA chipset support 
[*] Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) 
    < >   3dfx Banshee/Voodoo3+ 
    < >   3dlabs GMX 2000 
    < >   ATI Rage 128 
    < >   ATI Radeon 
    < >   Intel I810 
    < >   Intel 830M, 845G, 852GM, 855GM, 865G 
    < >   Matrox g200/g400 
    < >   SiS video cards
Nota!! Se pare ca nu este nevoie sa compilam suportul DRI pentru ATI direct in kernel, deoarece driverele ATi vin cu acest suport
Acum instalam kernelul, cu noul suport
make && make modules_install install
Daca aveti LILO (pentru GRUB nu este nevoie), atunci rulati /usr/sbin/lilo pentru a incarca noile setari si rebootati.
Instalarea driverelor ATI
Instalam driverele corespunzatoare placii noastre, de la de pe pagina, apoi dam urmatoarea comanda
opengl-update
Configurare XF86Config
Pentru aceasta, avem mai multe variante:
XFree86 --configure
sau
xf86config
sau
xf86cfg
sau
fglrxconfig #utilitarul ce vine odata cu driverele
In continuare aveti un exemplu de /etc/X11/XF86Config:
# ********************************************************************** 
# Refer to the XF86Config(4/5) man page for details about the format of 
# this file. 
# **********************************************************************  
# ********************************************************************** 
# DRI Section 
# ********************************************************************** 
Section "dri" 
        Mode 0666 
EndSection
# ********************************************************************** 
# Module section -- this  section  is used to specify 
# which dynamically loadable modules to load. 
# ********************************************************************** 
Section "Module" 
# This loads the DBE extension module. 
       Load            "dbe"   # Double buffer extension 
       SubSection      "extmod" 
#               Option  "omit xfree86-dga" 
       EndSubSection 
# This loads the Type1 and FreeType font modules 
       Load            "type1" 
       Load            "freetype" 
# This loads the GLX module 
       Load            "glx"   # libglx.a 
       Load            "dri"   # libdri.a 
EndSection 
# ********************************************************************** 
# Files section.  This allows default font and rgb paths to be set 
# ********************************************************************** 
Section "Files" 
       RgbPath         "/usr/X11R6/lib/X11/rgb" 
       FontPath        "unix/:-1" 
EndSection 
# ********************************************************************** 
# Server flags section. 
# ********************************************************************** 
Section "ServerFlags" 
       # This option allows the X server to start up even if the 
       # mouse device can't be opened/initialized. 
       AllowMouseOpenFail 
EndSection 
# ********************************************************************** 
# Input devices 
# ********************************************************************** 
# ********************************************************************** 
# Core keyboard's InputDevice section 
# ********************************************************************** 
Section "InputDevice" 
       Identifier      "Keyboard1" 
       Driver          "Keyboard" 
       Option          "AutoRepeat"    "500 30" 
       Option          "XkbRules"      "xfree86" 
       Option          "XkbModel"      "pc105" 
       Option          "XkbLayout"     "no" 
       Option          "XkbOptions"    "" 
       Option          "XkbCompat"     "" 
EndSection 
# ********************************************************************** 
# Core Pointer's InputDevice section 
# ********************************************************************** 
Section "InputDevice" 
# Identifier and driver 
       Identifier      "TouchPad" 
       Driver          "mouse" 
       Option          "Protocol"      "PS/2" 
       Option          "Device"        "/dev/misc/psaux" 
       Option          "ZAxisMapping"  "6 7" 
EndSection 
Section "InputDevice" 
       Identifier      "USBmouse" 
       Driver          "mouse" 
       Option          "Protocol"      "IMPS/2" 
       Option          "Device"        "/dev/input/mice" 
       Option          "ZAxisMapping"  "4 5" 
EndSection 
# ********************************************************************** 
# Monitor section 
# ********************************************************************** 
# Any number of monitor sections may be present 
Section "Monitor" 
       Identifier  "Monitor0" 
       HorizSync   31.5 - 48.5 
       VertRefresh 40 - 70 
       Option "DPMS" 
EndSection 
Section "Monitor" 
       Identifier      "LCD-WXSGA" 
       ModelName       "Flat Panel" 
       VendorName      "hp" 
       Option          "DPMS" 
       HorizSync       31.5 - 48.5 
       VertRefresh     40-70 
EndSection 
Section "Monitor" 
       Identifier      "CRT-21@Work" 
       ModelName       "G550" 
       VendorName      "Sony" 
       Option          "DPMS" 
       #       HorizSync       "" 
       #       VertRefresh     "" 
EndSection 
Section "Monitor" 
       Identifier      "CRT-19@Home" 
       ModelName       "96P" 
       VendorName      "Samtron" 
       HorizSync       30-96 
       VertRefresh     50-160 
       Option          "DPMS" 
EndSection 
# ********************************************************************** 
# Graphics device section 
# ********************************************************************** 
# Any number of graphics device sections may be present 
# Standard VGA Device: 
Section "Device" 
       Identifier      "Standard VGA" 
       VendorName      "Unknown" 
       BoardName       "Unknown" 
       Driver          "vga" 
EndSection 
# === ATI device section === 
Section "Device" 
       Identifier      "vga0" 
       VendorName      "ATI" 
       BoardName       "ATI Mobility Radeon 9200" 
       Driver          "fglrx" 
# === Own Settings (CTh) === 
#       VideoRam        65536 
       Option          "AGPMode"               "4" 
       Option          "AGPFastWrite"          "True" 
       Option          "EnablePageFlip"        "True" 
# === disable PnP Monitor  === 
#       Option          "NoDDC" 
# === disable/enable XAA/DRI === 
       Option          "no_accel"      "no" 
       Option          "no_dri"        "no" 
# === FireGL DDX driver module specific settings === 
# === Screen Management === 
       Option          "DesktopSetup"          "0x00000100" 
       Option          "MonitorLayout"         "AUTO, NONE" 
       Option          "IgnoreEDID"            "off" 
       Option          "HSync2"                "unspecified" 
       Option          "VRefresh2"             "unspecified" 
       Option          "ScreenOverlap"         "0" 
# === TV-out Management === 
       Option          "NoTV"                  "yes"   # "no" to turn on TV out 
       Option          "TVStandard"            "PAL-B" 
       Option          "TVHSizeAdj"            "0" 
       Option          "TVVSizeAdj"            "0" 
       Option          "TVHPosAdj"             "0" 
       Option          "TVVPosAdj"             "0" 
       Option          "TVHStartAdj"           "0" 
       Option          "TVColorAdj"            "0" 
       Option          "GammaCorrectionI"      "0x00000000" 
       Option          "GammaCorrectionII"     "0x00000000" 
# === OpenGL specific profiles/settings === 
       Option          "Capabilities"          "0x00000000" 
# === Video Overlay for the Xv extension === 
       Option          "VideoOverlay"          "on" 
# === OpenGL Overlay === 
# Note: When OpenGL Overlay is enabled, Video Overlay 
#       will be disabled automatically 
       Option          "OpenGLOverlay"         "off" 
# === Center Mode (Laptops only) === 
       Option          "CenterMode"            "off" 
# === Pseudo Color Visuals (8-bit visuals) === 
       Option          "PseudoColorVisuals"    "off" 
# === QBS Support === 
       Option          "Stereo"                "off" 
       Option          "StereoSyncEnable"      "1" 
# === FSAA Management === 
       Option          "FSAAScale"             "1" 
       Option          "FSAADisableGamma"      "no" 
       Option          "FSAACustomizeMSPos"    "no" 
       Option          "FSAAMSPosX0"           "0.000000" 
       Option          "FSAAMSPosY0"           "0.000000" 
       Option          "FSAAMSPosX1"           "0.000000" 
       Option          "FSAAMSPosY1"           "0.000000" 
       Option          "FSAAMSPosX2"           "0.000000" 
       Option          "FSAAMSPosY2"           "0.000000" 
       Option          "FSAAMSPosX3"           "0.000000" 
       Option          "FSAAMSPosY3"           "0.000000" 
       Option          "FSAAMSPosX4"           "0.000000" 
       Option          "FSAAMSPosY4"           "0.000000" 
       Option          "FSAAMSPosX5"           "0.000000" 
       Option          "FSAAMSPosY5"           "0.000000" 
# === Misc Options === 
       Option          "UseFastTLS"            "1" 
       Option          "BlockSignalsOnLock"    "on" 
       Option          "UseInternalAGPGART"    "no" 
       Option          "ForceGenericCPU"       "no" 
       BusID           "PCI:1:0:0"             # vendor=1002, device=4c66 
       Screen 0 
EndSection 
# ********************************************************************** 
# Screen sections 
# ********************************************************************** 
Section "Screen" 
       Identifier      "Screen0" 
       Device          "vga0"          # ATI Radeon Mobility 9200 
       Monitor         "LCD-WXSGA" 
       DefaultDepth    24 
#       Option          "backingstore" 
       Subsection      "Display" 
               Depth           24 
               Modes           "1680x1050" "1280x1024" "1024x768" "800x600" "640x480" 
               ViewPort        0 0     # initial origin if mode is smaller than desktop 
#               Virtual         1280 1024 
       EndSubsection 
EndSection 
# ********************************************************************** 
# ServerLayout sections. 
# ********************************************************************** 
Section "ServerLayout" 
# The Identifier line must be present 
       Identifier      "Server Layout" 
       Screen          "Screen0" 
       InputDevice     "TouchPad"      "CorePointer" 
       InputDevice     "Keyboard1"     "CoreKeyboard" 
EndSection 
Versiunea intiala de mayday147.
