web-dev-qa-db-fra.com

Moniteur intégré pour ordinateur portable non détecté, double GPU

Le moniteur intégré de mon ordinateur portable ne semble pas être reconnu par Ubuntu. L'écran est noir mais illuminé. Moniteur externe connecté via HDMI fonctionne très bien. Peu importe s'il est branché au démarrage.

Mon ordinateur portable est Samsung 670Z5E (processeur graphique AMD HD8850M + Intel intégré). Il exécute Ubuntu 14.04 installé avec Windows 8.1. J'ai installé le pilote propriétaire et le Catalyst Control Center à partir du site Web d'AMD, mais cela n'a fait aucune différence.

Quel pourrait être le problème?

Voici le résultat de lshw -c display:

  *-display               
       description: Display controller
       product: Venus XT [Radeon HD 8870M / R9 M270X/M370X]
       vendor: Advanced Micro Devices, Inc. [AMD/ATI]
       physical id: 0
       bus info: pci@0000:01:00.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: pm pciexpress msi bus_master cap_list rom
       configuration: driver=fglrx_pci latency=0
       resources: irq:50 memory:e0000000-efffffff memory:f7d00000-f7d3ffff ioport:e000(size=256) memory:f7d40000-f7d5ffff
  *-display
       description: VGA compatible controller
       product: 3rd Gen Core processor Graphics Controller
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 09
       width: 64 bits
       clock: 33MHz
       capabilities: msi pm vga_controller bus_master cap_list rom
       configuration: driver=i915 latency=0
       resources: irq:47 memory:f7800000-f7bfffff memory:d0000000-dfffffff ioport:f000(size=64)

Et xrandr -q:

Screen 0: minimum 320 x 200, current 1280 x 1024, maximum 8192 x 8192
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 connected primary 1280x1024+0+0 (normal left inverted right x axis y axis) 376mm x 301mm
   1280x1024      60.0*+   75.0  
   1152x864       75.0  
   1024x768       75.1     72.0     70.1     60.0  
   832x624        74.6  
   800x600        72.2     75.0     60.3     56.2  
   640x480        75.0     72.8     66.7     60.0  
   720x400        70.1  
DP1 disconnected (normal left inverted right x axis y axis)

Edit: Voici xorg.conf:

Section "ServerLayout"
    Identifier "AMD-layout"
    Screen 0 "AMD-screen" 0 0
EndSection

Section "Device"
    Identifier "intel"
    Driver "intel"
    Option "AccelMethod" "uxa"
    BusID "PCI:0@0:2:0"
EndSection

Section "Device"
    Identifier "AMD-device"
    Driver "fglrx"
    BusID "PCI:1:0:0"
EndSection

Section "Monitor"
    Identifier "AMD-monitor"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
EndSection

Section "Screen"
    Identifier "AMD-screen"
    Device "AMD-device"
    Monitor "AMD-monitor"
    DefaultDepth 24
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection
3
tom

J'ai réussi à résoudre le problème en passant d'UEFI à UEFI/BIOS.

0
tom