Valley View “Tela Negra da Morte”

1

Acabei de obter um HP 15-d030nr e instalado o Mint 16 ao lado do Win 8.1. Meu problema é que, sem usar nomodeset , imediatamente depois de escolher uma opção no GRUB, os pixels aleatórios piscam ao longo do primeiro ou terceiro terço da tela, que fica em branco e a luz de fundo se apaga. Eu posso digitar minha senha e ouvir o som de login, por isso ainda está inicializando, apenas sem exibição. Eu tentei muitas das soluções para este problema listado para hardware Intel mais antigo sem sucesso.

A execução de lspci | grep -i vga me dá 00:02.0 VGA compatible controller: Intel Corporation ValleyView Gen7 (rev 0a)

Pelo que eu posso dizer, o Valley View deve ser suportado pelo kernel (3.11), então estou bastante perdido aqui.

Um dos meus registros do dmesg é aqui .

Além disso, encontrei o mesmo problema ao experimentar o Fedora, por isso não é apenas Ubuntu / Mint.

    
por 9nonnatus 17.02.2014 / 01:37

2 respostas

0

Juredy nos fóruns Linux Mint descobriu isso. Aqui está a sua solução na íntegra:

  1. Comece aqui: link
  2. eu usei "drm-intel-next / 2013-11-05-saucy". (Inicialmente eu tentei o kernel "confiável" mais recente, mas meu laptop acabou sendo alérgico a ele. 30 segundos após a inicialização, o ventilador ficava descontrolado por alguns segundos e o sistema se desligava.)
  3. Faça o download e instale, na ordem, "linux-headers ... all.deb", "linux-headers ... amd64.deb" e "linux-image ... amd64.deb".
  4. Reinicie! Escolha 3.12.0-997 no menu Grub. Voila.

[Minha nota: Mesmo depois de remover nomodeset ou i915.modeset=0 dos parâmetros do kernel eu continuei a inicializar no Software Rendering Mode até que eu deletei meu antigo xorg.conf do / etc / X11]

Eu também tive que mexer para fazer a luz de fundo funcionar corretamente. Foi constantemente definido em 100% e ignorando meus esforços para mudá-lo. Após alguns minutos de pesquisa, você pode descobrir ... link

If passing parameter to the kernel about acpi_backlight does not work for you with an Intel HD Graphic Controller, or gives you freezes and/or crashes, there is a better way to get it to work.

You simply need to tell the graphic controller which backlight interface to use, i.e. the intel_backlight interface instead of the acpi one.

Create a new file called /usr/share/X11/xorg.conf.d/80-backlight.conf and paste into it the following code

Section "Device" Identifier "Intel Graphics" Driver "intel" Option "AccelMethod" "sna" Option "Backlight" "intel_backlight" # use your backlight that works here BusID "PCI:0:2:0" EndSection

If you don't want to use the SNA Acceleration method, remove the appropriate line.

Funciona como um encanto! Eu também tentei com e sem "acpi_osi = Linux" e "acpi_backlight = fornecedor", mas não houve efeito de qualquer maneira.

    
por 21.02.2014 / 21:27
-1

você pode tentar isso:

Pesquisa no Fórum Debian ...

Este é o meu xorg.conf

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/X11/misc"
    FontPath     "/usr/share/fonts/X11/cyrillic"
    FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath     "/usr/share/fonts/X11/Type1"
    FontPath     "/usr/share/fonts/X11/100dpi"
    FontPath     "/usr/share/fonts/X11/75dpi"
    FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    FontPath     "built-ins"
EndSection

Section "Module"
    Load  "dri"
    Load  "record"
    Load  "dri2"
    Load  "glx"
    Load  "dbe"
    Load  "extmod"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option      "Protocol" "auto"
    Option      "Device" "/dev/input/mice"
    Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"              # [<bool>]
        #Option     "DefaultRefresh"        # [<bool>]
        #Option     "ModeSetClearScreen"    # [<bool>]
    Identifier  "Card0"
    Driver      "vesa"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection
    
por 06.05.2014 / 14:25