Não é possível desligar a placa de vídeo discreta com drivers apropriados e Bumblebee / Prime no Ubuntu 14.04

0

Eu tenho um laptop Optimus. Eu vou estar executando algumas simulações pesadas, então eu preciso usar minha GPU Nvidia discreta com drivers de propriedade. E como usar a GPU da Nvidia para tudo o que consome muita energia, eu preciso ser capaz de alternar entre Intel e Nvidia. Eu tentei tanto Bumblebee e Prime, e ambos têm o mesmo problema: mesmo quando estou usando Intel GPU, a GPU da Nvidia ainda está ligada. Instalei nvidia-361 ( nvidia-364 faz com que a tela preta) e nvidia-prime pacotes, reiniciei, mudei para Intel das configurações do NVIDIA X Server, reiniciei novamente e a primeira coisa que observei foi calor extenso que meu laptop estava gerando, então corri o poder apenas para veja isto:

          100,0%      PCI Device: NVIDIA Corporation GK107M [GeForce GT 740M]

Esse valor de uso foi de 0% com o driver nouveau. Então eu instalei o Bumblebee com este comando:

sudo apt-get install bumblebee bumblebee-nvidia primus linux-headers-generic

Eu editei /etc/bumblebee/bumblebee.conf , agora está assim:

# Configuration file for Bumblebee. Values should **not** be put between quotes

## Server options. Any change made in this section will need a server restart
# to take effect.
[bumblebeed]
# The secondary Xorg server DISPLAY number
VirtualDisplay=:8
# Should the unused Xorg server be kept running? Set this to true if waiting
# for X to be ready is too long and don't need power management at all.
KeepUnusedXServer=false
# The name of the Bumbleblee server group name (GID name)
ServerGroup=bumblebee
# Card power state at exit. Set to false if the card shoud be ON when Bumblebee
# server exits.
TurnCardOffAtExit=false
# The default behavior of '-f' option on optirun. If set to "true", '-f' will
# be ignored.
NoEcoModeOverride=false
# The Driver used by Bumblebee server. If this value is not set (or empty),
# auto-detection is performed. The available drivers are nvidia and nouveau
# (See also the driver-specific sections below)
Driver=nvidia
# Directory with a dummy config file to pass as a -configdir to secondary X
XorgConfDir=/etc/bumblebee/xorg.conf.d

## Client options. Will take effect on the next optirun executed.
[optirun]
# Acceleration/ rendering bridge, possible values are auto, virtualgl and
# primus.
Bridge=auto
# The method used for VirtualGL to transport frames between X servers.
# Possible values are proxy, jpeg, rgb, xv and yuv.
VGLTransport=proxy
# List of paths which are searched for the primus libGL.so.1 when using
# the primus bridge
PrimusLibraryPath=/usr/lib/x86_64-linux-gnu/primus:/usr/lib/i386-linux-gnu/primus
# Should the program run under optirun even if Bumblebee server or nvidia card
# is not available?
AllowFallbackToIGC=false


# Driver-specific settings are grouped under [driver-NAME]. The sections are
# parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
# detection resolves to NAME).
# PMMethod: method to use for saving power by disabling the nvidia card, valid
# values are: auto - automatically detect which PM method to use
#         bbswitch - new in BB 3, recommended if available
#       switcheroo - vga_switcheroo method, use at your own risk
#             none - disable PM completely
# https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods

## Section with nvidia driver specific options, only parsed if Driver=nvidia
[driver-nvidia]
# Module name to load, defaults to Driver if empty or unset
KernelDriver=nvidia-361
PMMethod=auto
# colon-separated path to the nvidia libraries
LibraryPath=/usr/lib/nvidia-361:/usr/lib32/nvidia-361
# comma-separated path of the directory containing nvidia_drv.so and the
# default Xorg modules path
XorgModulePath=/usr/lib/nvidia-361/xorg,/usr/lib/xorg/modules
XorgConfFile=/etc/bumblebee/xorg.conf.nvidia

## Section with nouveau driver specific options, only parsed if Driver=nouveau
[driver-nouveau]
KernelDriver=nouveau
PMMethod=auto
XorgConfFile=/etc/bumblebee/xorg.conf.nouveau

Eu reiniciei e verifiquei o powertop novamente e o resultado foi o mesmo, 100% de uso. Então eu chequei minha saída do kernel. dmesg | grep bbswitch :

[   26.135632] bbswitch: version 0.7
[   26.135640] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
[   26.135646] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
[   26.135741] bbswitch: detected an Optimus _DSM function
[   26.135751] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on

dmesg | grep nvidia :

[   14.803636] nvidia: module license 'NVIDIA' taints kernel.
[   14.805959] nvidia: module verification failed: signature and/or  required key missing - tainting kernel
[   14.809434] nvidia-nvlink: Nvlink Core is being initialized, major device number 251
[   15.139887] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:01:00.0 on minor 1
[   15.554841] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  361.45.11  Tue May 17 17:49:04 PDT 2016
[   15.875205] nvidia-uvm: Loaded the UVM driver in lite mode, major device number 250
[   26.147993] nvidia-uvm: Unloaded the UVM driver in lite mode

Saída de cat /proc/acpi/bbswitch :

0000:01:00.0 ON

Em seguida, executei sudo tee /proc/acpi/bbswitch <<<OFF e executei o comando acima novamente e a saída foi a mesma. Então eu chequei dmesg para as entradas do bbswitch e vi isso:

[  953.576760] bbswitch: device 0000:01:00.0 is in use by driver 'nvidia', refusing OFF

Eu tentei descarregar nvidia com sudo rmmod nvidia :

rmmod: ERROR: Module nvidia is in use by: nvidia_modeset

Após descarregar nvidia_modeset , consegui descarregar nvidia e depois disso, executei sudo tee /proc/acpi/bbswitch <<<OFF novamente, desta vez funcionou, mas a saída de powertop não mudou. Após uma reinicialização, a GPU Nvidia ainda estava em execução. Eu adicionei esta linha ao meu /etc/modprobe.d/bbswitch.conf :

options bbswitch load_state=0 unload_state=1

nouveau e nvidia também estão na lista negra e ainda não consigo desativar minha GPU da Nvidia. Eu não sei o que mais posso fazer. O que estou fazendo errado?

    
por LazyLucretia 23.06.2016 / 14:49

1 resposta

1

Você precisa desativar o carregamento de drivers nvidia para que o bumblebee possa fazer isso mais tarde.

Então edite:

sudo nano /etc/modprobe.d/bumblebee.conf

adicione uma nova entrada no final, com nvidia-xxx, no meu caso:

# nvidia-375
#375
blacklist nvidia-375
blacklist nvidia-375-drm
blacklist nvidia-375-updates
blacklist nvidia-experimental-375

certifique-se de ter a entrada drm. Isso desativará completamente o carregamento de gráficos da nvidia na inicialização e o bumblebee lidará com o restante.

Verifique o guia para fazer isso no xps-15 aqui: link

    
por whizzzkid 25.02.2017 / 21:08