mensagens de erro PCI no Lenovo B50-10

2

Recentemente eu instalei o Ubuntu LTS 16.04 em um novo laptop Lenovo B50-10. Aparentemente, tudo está funcionando corretamente, no entanto, algumas mensagens de erro aparecem em relação aos dispositivos pci no dmesg.

dmesg |grep fail

[    1.268776] pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
[    1.268789] pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[    1.268803] pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[    1.268830] pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[    1.268839] pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
[    1.268852] pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]

E algumas outras mensagens como esta:

[    0.537659] pci 0000:00:1c.1: BAR 15: no space for [mem size 0x00200000 64bit pref]

Eu pesquisei esses erros no Google e tudo indica que pode ser um bug do bios. Ao lado, uma mensagem de erro relacionada aparece na saída do dmesg, como você pode ver acima:

[    2.867219] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
  • Atualizei o BIOS com a nova versão disponível no site de suporte da Lenovo, v2.07, lançado em outubro de 2016, mas o problema continua.

  • Se eu passar a opção 'acpi = off' para o kernel, nenhuma mensagem de erro aparece, mas a placa wifi não funciona.

  • Se uma correção 'Padrão otimizado do sistema operacional' for Ativada no Bios e clicar em 'Carregar configurações padrão', os erros permanecerão.

IMHO, tudo está relacionado com um bug do bios. No passado, sofri um problema semelhante com um Lenovo b50-30, mas, nesse caso, uma atualização do BIOS corrigiu o problema.

Qualquer ajuda seria importante.

De antemão,

Cumprimentos.

    
por ragb1 17.12.2016 / 18:02

2 respostas

2

execute o conjunto de testes de firmware, fwts klog test em um sistema recém-inicializado, isso pode explicar algumas dessas mensagens de erro:

apt-get install fwts
fwts klog -
    
por Colin Ian King 17.12.2016 / 23:44
-1

Obrigado pela resposta !. Eu colo o resultado, não é uma informação muito útil:

Results generated by fwts: Version V16.03.00 (2016-03-14 09:10:20).

Some of this work - Copyright (c) 1999 - 2016, Intel Corp. All rights reserved.
Some of this work - Copyright (c) 2010 - 2016, Canonical.

This test run on 18/12/16 at 01:03:27 on host Linux lenovo 4.4.0-53-generic
#74-Ubuntu SMP Fri Dec 2 15:59:10 UTC 2016 x86_64.

Command: "fwts klog -".
Running tests: klog.

klog: Scan kernel log for errors and warnings.
--------------------------------------------------------------------------------
Test 1 of 1: Kernel log error check.
Kernel message: [ 0.030056] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'

ADVICE: This is not exactly a failure but a warning from the kernel. The
MSR_IA32_ENERGY_PERF_BIAS was initialized and defaulted to a high performance
bias setting. The kernel has detected this and changed it down to a 'normal'
bias setting.

Kernel message: [ 0.164916] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored

ADVICE: This is not exactly a failure mode but a warning from the kernel. The
_OSI() method has implemented a match to the 'Linux' query in the DSDT and this
is redundant because the ACPI driver matches onto the Windows _OSI strings by
default.

FAILED [CRITICAL] KlogAcpiNoValidCrt: Test 1, CRITICAL Kernel message: [
1.473105] [Firmware Bug]: No valid trip found

ADVICE: No valid ACPI _CRT (Critical Trip Point) was found.

Found 1 unique errors in kernel log.

================================================================================
0 passed, 1 failed, 0 warning, 0 aborted, 0 skipped, 0 info only.
================================================================================


0 passed, 1 failed, 0 warning, 0 aborted, 0 skipped, 0 info only.

Test Failure Summary
================================================================================

Critical failures: 1
 klog: CRITICAL Kernel message: [    1.473105] [Firmware Bug]: No valid trip found

High failures: NONE

Medium failures: NONE

Low failures: NONE

Other failures: NONE

Test           |Pass |Fail |Abort|Warn |Skip |Info |
---------------+-----+-----+-----+-----+-----+-----+
klog           |     |    1|     |     |     |     |
---------------+-----+-----+-----+-----+-----+-----+
Total:         |    0|    1|    0|    0|    0|    0|
---------------+-----+-----+-----+-----+-----+-----+
    
por ragb1 18.12.2016 / 01:07