2

Использование fedora 18 с последними обновлениями (ядро 3.10.12-100.fc18.x86_64, xorg 1.13.3).

Компьютер м / б имеет собственный разъем VGA, предоставленный:

00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core 
processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])

И дополнительная карта Radeon HD 7000 с двумя выходами.

xorg настроен на отображение двух мониторов 1920x1200 через Radeon, и оба работают нормально. Я использую xfce.

Проблема: я пытаюсь добавить 3-й дисплей 1920x1080, подключив его к разъему m/b vga.

3-й дисплей показывает сообщения о запуске компьютера bios, параметры загрузки fedora (выбор ядра), затем небольшой анимированный логотип fedora, но когда X должен запуститься, он показывает только черный экран с текстом:

[1.215074] [drm:drm_pci_agp_init] *ERROR* Cannot initialize the agpgart module.
[1.215668] DRM: Fill_in_dev failed.

в то же время X правильно запускается на двух дисплеях, подключенных к Radeon, и на них все работает нормально.

мой xorg.conf:


Section "ServerLayout"
    Identifier     "aticonfig Layout"
    Screen      0  "aticonfig-Screen[0]-0" 0 0
    Screen      1  "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0"
    Screen      2  "intelvga-Screen[0]-0" LeftOf "aticonfig-Screen[0]-0"
    Option      "Clone" "off"
    Option      "Xinerama" "off"
EndSection

Section "Module" Load "freetype" Load "glx" Load "dbe" Load "extmod" Load "dri" EndSection

Section "ServerFlags" Option "AIGLX" "on" Option "AllowMouseOpenFail" "on" Option "IgnoreABI" "on" Option "ZapWarning" "on" Option "Xinerama" "off" EndSection

Section "Monitor" Identifier "aticonfig-Monitor[0]-0" Option "VendorName" "ATI Proprietary Driver" Option "ModelName" "Generic Autodetecting Monitor" Option "DPMS" "true" EndSection

Section "Monitor" Identifier "aticonfig-Monitor[0]-1" Option "VendorName" "ATI Proprietary Driver" Option "ModelName" "Generic Autodetecting Monitor" Option "DPMS" "true" EndSection

Section "Monitor" Identifier "intelvga-Monitor[0]-0" Option "VendorName" "Intel Proprietary Driver" Option "ModelName" "Generic Autodetecting Monitor" Option "DPMS" "true" EndSection

Section "Device" Identifier "aticonfig-Device[0]-0" Driver "fglrx" BusID "PCI:1:0:0" EndSection

Section "Device" Identifier "aticonfig-Device[0]-1" Driver "fglrx" BusID "PCI:1:0:0" Screen 1 EndSection

Section "Device" Identifier "intelvga-Device[0]-0" Driver "intel" BusID "PCI:0:2:0" Screen 2 EndSection

Section "Screen" Identifier "aticonfig-Screen[0]-0" Device "aticonfig-Device[0]-0" Monitor "aticonfig-Monitor[0]-0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection

Section "Screen" Identifier "aticonfig-Screen[0]-1" Device "aticonfig-Device[0]-1" Monitor "aticonfig-Monitor[0]-1" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection

Section "Screen" Identifier "intelvga-Screen[0]-0" Device "intelvga-Device[0]-0" Monitor "intelvga-Monitor[0]-0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Modes "1920x1080" EndSubSection EndSection

0