[personal profile] mjg59
I bricked a Samsung laptop today. Unlike most of the reported cases of Samsung laptops refusing to boot, I never booted Linux on it - all experimentation was performed under Windows. It seems that the bug we've been seeing is simultaneously simpler in some ways and more complicated in others than we'd previously realised.

So, some background. The original belief was that the samsung-laptop driver was doing something that caused the system to stop working. This driver was coded to a Samsung specification in order to support certain laptop features that weren't accessible via any standardised mechanism. It works by searching a specific area of memory for a Samsung-specific signature. If it finds it, it follows a pointer to a table that contains various magic values that need to be written in order to trigger some system management code that actually performs the requested change. This is unusual in this day and age, but not unique. The problem is that the magic signature is still present on UEFI systems, but attempting to use the data contained in the table causes problems.

We're not quite sure what those problems are yet. Originally we assumed that the magic values we wrote were causing the problem, so the samsung-laptop driver was patched to disable it on UEFI systems. Unfortunately, this doesn't actually fix the problem - it just avoids the easiest way of triggering it. It turns out that it wasn't the writes that caused the problem, it was what happened next. Performing the writes triggered a hardware error of some description. The Linux kernel caught and logged this. In the old days, people would often never see these logs - the system would then be frozen and it would be impossible to access the hard drive, so they never got written to disk. There's code in the kernel to make this easier on UEFI systems. Whenever a severe error is encountered, the kernel copies recent messages to the UEFI variable storage space. They're then available to userspace after a reboot, allowing more accurate diagnostics of what caused the crash.

That crash dump takes about 10K of UEFI storage space. Microsoft require that Windows 8 systems have at least 64K of storage space available. We only keep one crash dump - if the system crashes again it'll simply overwrite the existing one rather than creating another. This is all completely compatible with the UEFI specification, and Apple actually do something very similar on their hardware. Unfortunately, it turns out that some Samsung laptops will fail to boot if too much of the variable storage space is used. We don't know what "too much" is yet, but writing a bunch of variables from Windows is enough to trigger it. I put some sample code here - it writes out 36 variables each containing a kilobyte of random data. I ran this as an administrator under Windows and then rebooted the system. It never came back.

This is pretty obviously a firmware bug. Writing UEFI variables is expressly permitted by the specification, and there should never be a situation in which an OS can fill the variable store in such a way that the firmware refuses to boot the system. We've seen similar bugs in Intel's reference code in the past, but they were all fixed early last year. For now the safest thing to do is not to use UEFI on any Samsung laptops. Unfortunately, if you're using Windows, that'll require you to reinstall it from scratch.

Date: 2013-02-09 06:00 am (UTC)
From: [personal profile] idupree
Does replacing the laptop's hard disk allow it to boot? (I assume you tested and it doesn't help— I'm just thinking of my old MacBook that was never bricked, but had difficulty booting with certain bit patterns on the internal disk.)

Date: 2013-02-09 08:56 am (UTC)
From: (Anonymous)
No, this breaks the firmware, and replacing or removing the disk wouldn't help.

UEFI data in NAND Flash on motherboard

Date: 2013-02-09 09:32 am (UTC)
From: (Anonymous)
The storage space in question is in a NAND flash chip on the motherboard. Swapping out a drive changes nothing.

CMOS Battery?

Date: 2013-02-09 11:11 am (UTC)
From: (Anonymous)
Hi Matt!

Great writeup as always. Can you comment on the rumors going around that removing the CMOS NVRAM battery will make the board bootable again? Obviously that would mean taking apart the laptop to get at the motherboard, which voids the warranty. But for testing the fix, a developer might be willing to give up their warranty to iterate faster.

https://bugs.launchpad.net/ubuntu-cdimage/+bug/1040557/comments/23 on https://bugs.launchpad.net/ubuntu-cdimage/+bug/1040557 is one example of this.

UEFI to BIOS

Date: 2013-02-09 11:56 am (UTC)
From: (Anonymous)
I'm on Linux. How do I do this without reinstalling?

Re: UEFI to BIOS

From: (Anonymous) - Date: 2013-02-13 09:49 am (UTC) - Expand

Re: UEFI to BIOS

From: (Anonymous) - Date: 2013-02-09 04:30 pm (UTC) - Expand

Re: UEFI to BIOS

From: (Anonymous) - Date: 2013-02-09 04:31 pm (UTC) - Expand

Re: UEFI to BIOS

From: (Anonymous) - Date: 2014-01-10 03:18 am (UTC) - Expand

Seriously, why?

Date: 2013-02-09 01:02 pm (UTC)
From: (Anonymous)
Why are people buying Samsung when they could have Apple hardware? Do they not realize that (if you must) you can run Windows on a Mac?

Seriously. If it's price you are worried about, I'll gladly sell you a brick of wood for a VERY good price if you are willing to believe that it's an equivalent piece of hardware and the only difference is price. You get what you pay for, people.

OK was that predictable enough? Well I'm sorry about that. But come on, when are people going to learn?

Re: Seriously, why?

Date: 2013-02-09 01:44 pm (UTC)
From: (Anonymous)
I'm actually running linux (Mageia2 to be specific) on a macbook pro. I buyed it to try triple boot, but soon discovered that windows runs better virtualized, and osx is not worth the pain on free software.

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-09 01:50 pm (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-09 03:24 pm (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-09 10:26 pm (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-10 12:12 am (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-09 09:57 pm (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-09 10:29 pm (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-09 11:59 pm (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-12 08:05 pm (UTC) - Expand

Re: Seriously, why?

From: (Anonymous) - Date: 2013-02-18 06:49 am (UTC) - Expand

Date: 2013-02-09 03:16 pm (UTC)
From: (Anonymous)
This doesn't make the bug any less disastrous, but at least story titles will now shift from "Samsung laptops bricked by Linux" to "Samsung laptops bricked by buggy UEFI".

Regarding Windows, I recently discovered that you can actually migrate a Windows 8 install from MBR+BIOS to GPT+UEFI. It's not straightforward, but it's possible (using bootrec and bcdboot). I haven't tried the other way around or with Windows 7, but I think that should be doable as well.

Date: 2013-02-09 03:28 pm (UTC)
From: (Anonymous)
You can use Paragon's Migrate to UEFI to shift a Windows install from MBR+BIOS to GPT+UEFI (doesn't officially support Windows 8, and Windows 8 will block its launcher from running, but you can just run explauncher.exe it installs as Administrator, and it'll work - tested on my own install).

That doesn´t change anything

From: (Anonymous) - Date: 2013-02-10 11:54 pm (UTC) - Expand

Fix for windows 8

From: (Anonymous) - Date: 2013-05-23 03:11 am (UTC) - Expand

Do you know *what* is broken?

Date: 2013-02-09 05:38 pm (UTC)
From: (Anonymous)
Matthew, I had a similar issue some time ago regarding notebooks that got "bricked" by a bug in the proprietary nVidia driver. The issue that time was that the driver somehow managed to overwrite the EDID data of the display with garbage. So the driver failed to load and on the next start the BIOS failed to load as well because the video BIOS couldn't identify the display and stopped at that problem. So it would be interesting to know what really gets broken when that bug occurs. Does Samsung know what is dead and how to fix it yet? In my case the bug could be fixed by removing the display and booting with an external monitor. Then reconnect the display and flash the correct data back to the display. Dunno if something like that would help here. Samsung should probably know. The question is if they tell you?

QueryVariableInfo()?

Date: 2013-02-09 09:51 pm (UTC)
From: (Anonymous)
Hi Matt, is there any way to run RuntimeServices->QueryVariableInfo() in Windows to at least be safer with this? I tried looking through the Windows docs and found nothing.

Re: QueryVariableInfo()?

From: (Anonymous) - Date: 2013-02-10 07:36 am (UTC) - Expand

geez what a surprise........

Date: 2013-02-10 04:12 am (UTC)
From: (Anonymous)
NOT

How to prevent bricking laptop?

Date: 2013-02-10 07:53 am (UTC)
From: (Anonymous)
I have a Samsung laptop Serie9 which is vulnerable to this bug I believe (NP900X3C-A05NL). I have not bricked my laptop yet.

Is there any setting to prevent running into this bug accidentally?

I precise that I run Linux (xubuntu-12.10) exclusively (Windows8 has been wiped out) and UEFI is disabled in BIOS.

Re: How to prevent bricking laptop?

Date: 2013-02-12 02:51 pm (UTC)
From: (Anonymous)
According to what Matthew wrote, you should be more or less fine with UEFI disabled in BIOS.

I would do the same, i.e. wipe Windows if I didn't need it sometimes. But I guess there's no way to install Ubuntu using CM mode without removing Windows partitions first that occupy the beginning of the hard drive as it uses the new GTP partition table.

36?

Date: 2013-02-10 02:18 pm (UTC)
From: (Anonymous)
Hi Matt,
thanks for the insights! One small and insignificant question: how do you figure that your code writes 36 variables? The maximum of the loop is 48 and I don't see how you could notice from the error code that it stopped in iteration 36.

Have a great day!

Bios mode may also have problems

Date: 2013-02-10 04:37 pm (UTC)
From: (Anonymous)
I bought my samsung NP530U3B last July and never booted it in UEFI mode, only Bios mode. Installed Linux next to the pre-installed Windows 7 and after 3 days tun into a problem. I don't know what caused it, could be i was installing updates in Windows, or that is was cause by Linux (opensuse), but suddenly it would not poweroff anymore nor hibernate/sleep. Sent it for repair by samsung and they replaced the motherboard. SO I suspect something in their firmware that may be triggered either in UEFI or Bios mode can damage this laptop. Since then it has been working ok

Date: 2013-02-10 09:54 pm (UTC)
From: (Anonymous)
I do not think you bricked it. You might have created a kernel panic that caused the system to halt. Nevertheless, if you can read the logs fully it will point to the sector that caused the issue in most cases you need the source code to remove the abnormality from becoming prevalent in major system releases.

Worst case scenario take legal action against the creator.


Can the system boot or show a bios splash screen upon powering it on?

My Samsung Chronos returns to life

From: (Anonymous) - Date: 2013-02-14 09:31 am (UTC) - Expand

hello

From: (Anonymous) - Date: 2014-11-19 04:30 pm (UTC) - Expand

Way to recover

Date: 2013-02-11 08:21 am (UTC)
From: (Anonymous)
Did you look at the board if it has the firmware in a socket? If not you may be able to find a connector for SPI. I don't own such da device but there is a list:

http://flashrom.org/FT2232SPI_Programmer

If you need to send it back to Samsung for each test you want to run it would take most likely a bit long.

How does one recover from this?

Date: 2013-02-24 05:19 pm (UTC)
From: (Anonymous)
I have a Samsung Chronos that just randomly died recently. I had destroyed my Fedora 17 install for the second time, but that's not relevant. I got a Fedora 18 disc to install from. Then, as I was installing it, it yelled about a hardware issue, and went into the world-famous kernel panic. I assumed it was a fluke, and it rebooted again. The same thing happened, and it never came back after this. After it died, the CD was stuck in the drive, so I figured that was the problem, but I'm guessing this is what caused it. I surgically removed the CD, and nothing happened. It doesn't show boot or anything, and I'm unable to use my laptop. Oh, well. At least I now know not to pay for this again. I had some pretty interesting programming on the drive, and I was hoping to recover it, so has anyone found any way to recover from this apart from telling Samsung to fix it? I think I might have voided my warranty by messing with the hardware.

Re: How does one recover from this?

Date: 2013-06-21 03:13 am (UTC)
From: (Anonymous)
Pop the hard disk into an external drive enclosure, plug that into a different machine, and read it there. A USB drive bay shouldn't cost you more than about 20 bucks. Easy peasy.

Date: 2013-02-26 06:25 pm (UTC)
From: [identity profile] hanishkvc [launchpad.net]
I have a query related to using a linux distro on a Samsung laptop with this UEFI bug, while still using Secure boot/UEFI for Linux.

Should the proper solution to using Linux in UEFI/Secure boot mode in such a samsung laptop be to use a Linux kernel with the below Bug fix i.e

commit 266c43c175a51002b04c18a453a39708d1775ced
Author: Satoru Takeuchi
Date: Thu Feb 14 09:12:52 2013 +0900

efi: Clear EFI_RUNTIME_SERVICES rather than EFI_BOOT by "noefi" boot parameter

And in turn pass the noefi boot param to the kernel while booting into Linux.

The reason for my above assumption being that passing noefi to linux kernel as a boot param will I assume disable the use of efi runtime services by the kernel and its modules. And thus in no circumstance (including kernel crash) the Linux kernel will use the efi runtime service to write to the efi storage (I am also assuming that it will not allow any other logic to use efi service, by telling efi that it is relinquishing use of efi runtime service for this instance of the boot) And that is the 100% sure way of ensuring that under linux one cann't trigger this bug in the normal sense (Still is it 100% safe from a security perspective I am not sure if Samsung efi logic doesn't have any loop holes which allows one to call efi services even if one has already relinquished it - I am talking logically here, because I haven't looked into efi in detail so am making some/many assumptions).

So if one wants to dual boot a system with win8 already installed in Secure boot UEFI mode and Linux (in Secureboot/UEFI mode) THEN one should use a distro of linux which is using linux kernels later than Feb 15 with the above mentioned noefi bug fix included and in turn one should boot such a linux distro with noefi boot param to ensure that the Samsung laptops with this efi bug cann't be triggered from Linux during that boot.

Is my above understanding correct.

NOTE: I am not sure the linux kernel handles the transition from efi to no efi runtime mode gracefully if noefi is passed as a argument and the system is already in uefi boot mode. But I am assuming for now that the kernel handles this situation properly as well as that it is required to handle this in a specific manner, which it does. This is my assumption currently because I haven't looked into EFI specs at any level currently.

NOTE: A related query I have posted in the ubuntu launchpad tracked Bug related to this.

Also does anyone know when Samsung will release a fixed efi firmware.

測試

Date: 2013-02-27 03:11 pm (UTC)
From: (Anonymous)
測試

New Samsung BIOS ver P05ABK

Date: 2013-03-01 09:49 pm (UTC)
From: (Anonymous)
I was just running Samsung Update on my 900X4C, when it shows me that there is a BIOS update. The new version is P05ABK, i followed the steps (straight forward) and instaled it.
I just cant find release notes regarding the update in samsung site, and this means that i stil dont have the courage to install linux in this machine.

Is there any chance taht this firmware upgrade could correct the error reported?

Re: New Samsung BIOS ver P05ABK

Date: 2013-03-03 10:22 am (UTC)
From: (Anonymous)
There is always a chance but I don't trust software that is secretive about what it does. With something as critical as a BIOS you don't want to take chances. I can't even recommend installing the update (as any good systems administrator reviews updates before he applies them).

I just hope they fix things before some scriptkiddy with a grudge on Samsung starts exploiting it.

Date: 2013-03-03 12:30 pm (UTC)
From: (Anonymous)
After the installation of the new P05ABK Bios update, my system/bios detects only 4 of my 8gb of ram. So I would not recommend to update the BIOS on a 900X4C.

Date: 2013-03-09 06:22 am (UTC)
From: (Anonymous)
Wow. Bricked laptop, fauly bios updates... Samsung really knows how to make customers happy.

Thinkoad Bricked... related?

Date: 2013-03-13 03:31 am (UTC)
From: (Anonymous)
This might be totally unrelated and coincidental, but a couple days ago my thinkpad was bricked.

I have an Edge E430 (3254-CTO). I was booting Arch on kernel 3.8.2 (CK patchset) when it stalled. This wasn't unusual as there has been major changes in LVM2 with Arch that I have been still trying to figure out. So I manually scanned for the PV when I had a kernel panic.

The kernel panic was really funky looking with very little info having been dumped (maybe 7-10 short jumbled lines). Though this may have been because I was in the initrd still.

After that I was not able to boot whatsoever. No POST or anything. The fan spins like it is going to do something, but nothing after. I even put the optical drive back in so that i could see if it saw that. It spins like it always does when power is applied, but nothing else.

Since you are the only person who seems to be an authority on this particular problem, I am trying to contact you.

Hopefully I will get a reply from you here. I will check periodically. My computer has been sent for repair, but I should contact you at the very least.

Re: Thinkoad Bricked... related?

Date: 2013-03-13 03:32 am (UTC)
From: (Anonymous)
Wow auto-correct on my Nexus 7 really sucks sometimes.

Re: Thinkoad Bricked... related?

From: (Anonymous) - Date: 2013-03-13 02:39 pm (UTC) - Expand

CSM Ubuntu

Date: 2013-04-18 11:46 pm (UTC)
From: (Anonymous)
I have a np530u4e-s20de and i need Ubuntu with ROS so my quastion is.

Can i install Ubuntu on it in the CSM Mode - i will format the whole system- . I hope you can help me. Tanks alot.

Greetings

Re: CSM Ubuntu

Date: 2013-04-26 11:31 am (UTC)
From: (Anonymous)
Hello Dude,

i write from ths machine ... Yeah you can, but is a little bit difficult. You must formate the whole Plate. Patch the Bootloader (see wiki), create /boot on SDA (HDD)with EXT2 format.

The rest in EXt4 and enjoy Ubuntu. The only problem is, that the linux kernel does not use your ATI graphic Card ... the hardwareID is not in the current Kernel. But the primary Intel is good enough for work and midlevel simulations.

Greetings

bricked samsung laptop np300 in SA

Date: 2014-06-20 08:00 am (UTC)
From: (Anonymous)
Hi Guys,

same issue here, with my NP 300E5C its one of the affected ones,
my one started slowly at first, take long to shut down, start up show no boot devices, start up and immediately switch off, would also show no drive plugged in even though its plugged in, at first I though it was the initial BIOS firmware I put on but then I read more affecting it.

taken it to samsung SA replaced my board, seems to have fixed it temporarily but not too sure how long it will last as its starting its acting up again,

what else can I do to prevent this, I am using win 7 and secure boot off and CSM mode on, UEFI disabled, is their any way to flash a diffrent BIOS firmware instead of the phoenix secure-core tiano BIOS firmware, is there any other BIOS alternatives I can flash that don't have this bug?

Date: 2021-10-07 07:04 pm (UTC)
From: [personal profile] ber999
The Hwinfo64 report delivers the following results for my HP Pavilion:

1. in the motherboard section

Motherboard Slots: 2xPCI Express x1, 1xPCI Express x8, 1xPCI Express x16

1. in the bus section

PCI Express x8 Bus #1 [J6B2]
NVIDIA GeForce GTX 1050 Ti [HP]
[General Information]
Device Name: NVIDIA GeForce GTX 1050 Ti [HP]
Original Device Name: NVIDIA GeForce GTX 1050 Ti (GP107M)
Device Class: VGA Compatible Adapter
Revision ID: A1
PCI Address (Bus: Device:
Function) Number: 1:0:0
PCI Latency Timer: 0
Hardware ID: PCI\VEN_10DE&DEV_1C8C&SUBSYS_84ED103C&REV_A1
[PCI Express]
Version: 3.0
Maximum Link Width: 16x
Current Link Width: 8x
Maximum Link Speed: 8.0 GT/s
Current Link Speed: 2.5 GT/s
Device/Port Type: PCI Express Endpoint
Slot Implemented: No
Emergency Power Reduction: Not Supported
Active State Power Management (ASPM) Support: L0s and L1
Active State Power Management (ASPM) Status: L0s and L1 Entry
L0s Exit Latency: 256 - 512 ns
L1 Exit Latency: 2 - 4 us
Maximum Payload Size Supported: 256 bytes
Maximum Payload Size: 256 bytes
Resizable BAR Support: Not Supported
[System Resources]
Interrupt Line: N/A
Interrupt Pin: INTA#
Memory Base Address 0 63000000
Memory Base Address 1 50000000
Memory Base Address 3 60000000
I/O Base Address 5 0
[Features]
Bus Mastering: Enabled
Running At 66 MHz: Not Capable
Fast Back-to-Back Transactions: Not Capable
[Driver Information]
Driver Manufacturer: NVIDIA
Driver Description: NVIDIA GeForce GTX 1050 Ti
Driver Provider: NVIDIA
Driver Version: 27.21.14.6627 (GeForce 466.27)
Driver Date: 23-Apr-2021
DCH/UWD Driver: Capable
DeviceInstanceId PCI\VEN_10DE&DEV_1C8C&SUBSYS_84ED103C&REV_A1\4&33ECA368&0&0008
Location Paths PCIROOT(0)#PCI(0100)#PCI(0000)

The PCI Express bus enumeration ends with #3 and the NVMe PCIe SSD controller is not listed.

However, a Hwinfo64 report of a comparable board can be found on the Internet.

There, an NVMe PCIe SSD controller is listed in the Bus section (see below) under PCI Express x4.

PCI Express x4 Bus #4
Samsung NVMe PCIe SSD Controller

[General Information]
Device Name: Samsung NVMe PCIe SSD Controller
Original Device Name: Samsung Electronics NVMe PCIe SSD Controller
Device Class: NVMe Controller
Revision ID: 0
PCI Address (Bus: Device: Function) Number: 4:0:0
PCI Latency Timer: 0
Hardware ID: PCI\VEN_144D&DEV_A808&SUBSYS_A801144D&REV_00
[PCI Express]
Version: 3.0
Maximum Link Width: 4x
Current Link Width: 4x
Maximum Link Speed: 8.0 GT/s
Current Link Speed: 8.0 GT/s
Device/Port Type: PCI Express Endpoint
Slot Implemented: No
Emergency Power Reduction: Not Supported
Active State Power Management (ASPM) Support: L1
Active State Power Management (ASPM) Status: L1 Entry
L0s Exit Latency: >4 us
L1 Exit Latency: 32 - 64 us
Maximum Payload Size Supported: 256 bytes
Maximum Payload Size: 256 bytes
[System Resources]
Interrupt Line: N/A
Interrupt Pin: INTA#
Memory Base Address 0 AD200000
[Features]
Bus Mastering: Enabled
Running At 66 MHz: Not Capable
Fast Back-to-Back Transactions: Not Capable
[Driver Information]
Driver Manufacturer: Standard NVM Express Controller
Driver Description: Standard NVM Express Controller
Driver Provider: Microsoft
Driver Version: 10.0.19041.488
Driver Date: 21-Jun-2006
DeviceInstanceId PCI\VEN_144D&DEV_A808&SUBSYS_A801144D&REV_00\4&CDF9F35&0&00DC
Location Paths PCIROOT(0)#PCI(1B04)#PCI(0000)

My HP Pavilion, on the other hand, does not have a PCI Express x4 slot, but it does have a PCI Express x8 slot. According to the Hwinfo64 report of my HP Pavilion notebook, the graphics card NVIDIA GeForce GTX 1050 Ti (GP107M) sits in the PCI Express x8 slot. Specified for this graphics card is: x4.

Maximum Link Width: 16x

In the Hwinfo64 report of the board used for comparison, the graphics card is attached to the PCI Express x16 bus #1 (see below) as listed in the Bus section, i.e. in the correct place (16 lanes).

PCI Express x16 Bus #1
NVIDIA GeForce GTX 1060 [GIGABYTE]

[General Information]
Device Name: NVIDIA GeForce GTX 1060 [GIGABYTE]
Original Device Name: NVIDIA GeForce GTX 1060 (GP106M/N17P-G1)
Device Class: VGA Compatible Adapter
Revision ID: A1
PCI Address (Bus:Device:Function) Number: 1:0:0
PCI Latency Timer: 0
Hardware ID: PCI\VEN_10DE&DEV_1C20&SUBSYS_16521458&REV_A1


Version: 3.0
Maximum Link Width: 16x
Current Link Width: 16x
Maximum Link Speed: 8.0 GT/s
Current Link Speed: 2.5 GT/s
Device/Port Type: PCI Express Endpoint
Slot Implemented: No
Emergency Power Reduction: Not Supported
Active State Power Management (ASPM) Support: L0s and L1
Active State Power Management (ASPM) Status: L0s and L1 Entry
L0s Exit Latency: 256 - 512 ns
L1 Exit Latency: 8 - 16 us
Maximum Payload Size Supported: 256 bytes
Maximum Payload Size: 256 bytes

[System Resources]
Interrupt Line: N/A
Interrupt Pin: INTA#
Memory Base Address 0 AC000000
Memory Base Address 1 80000000
Memory Base Address 3 90000000
I/O Base Address 5 0

[Features]
Bus Mastering: Enabled
Running At 66 MHz: Not Capable
Fast Back-to-Back Transactions: Not Capable

[Driver Information]
Driver Manufacturer: NVIDIA
Driver Description: NVIDIA GeForce GTX 1060
Driver Provider: NVIDIA
Driver Version: 27.21.14.5167 (GeForce 451.67)
Driver Date: 05-Jul-2020
DCH/UWD Driver: Capable
DeviceInstanceId PCI\VEN_10DE&DEV_1C20&SUBSYS_16521458&REV_A1\4&DAED9F9&0&0008
Location Paths PCIROOT(0)#PCI(0100)#PCI(0000)

In the System Buses section of the SiSoft Sandra report of my Pavilion notebook (see below), there is a warning 1204 at the end. Possibly, the reference there to the higher maximum supported speed is due to the lower number of lanes (8 in the bus instead of 16).

SiSoftware Sandra Systembusse
Systembusse
Schnittstellenversion: 2.30
PCI Busse: 4
PCIe Busse: 3
Systembus
Typ: PCI
Gerätenummer: 0
Multiplikator: 1x
Systembus
Typ: PCIe 3.0 x8 2.5Gbps
Gerätenummer: 1
Multiplikator: 3x
Bridge: Intel Core6 (Skylake) PCIe Controller (x16)
Systembus
Typ: PCIe 3.0 x1 2.5Gbps
Gerätenummer: 2
Multiplikator: 3x
Bridge: Intel ICH300 (Cannon Point) PCI Express Root Port #14
Gerät mit Anschluss verbunden: HP RTL8168/8111 PCI-E Gigabit Ethernet NIC
Systembus
Typ: PCIe 3.0 x1 2.5Gbps
Gerätenummer: 3
Multiplikator: 3x
Bridge: Intel ICH300 (Cannon Point) PCI Express Root Port #16
Gerät mit Anschluss verbunden: HP RTS522A PCI Express Card Reader
Leistungstipps
Warning 1204: Speed is below the maximum supported speed. The device may be in power-saving mode.
Tip 3: Press Enter or double-click on a tip to find out more information.

If there is a possibility to disconnect the NVIDIA graphics card electrically, I could unscrew the notebook, do the disconnection and boot the Windows partition (In the default setting, another graphics card is active, after all). The hardware initialization should then assign the NVMe SSD to the correct port, since the NVIDIA graphics card is no longer present.

What could be the reason that the PCI Express x16 Bus is not listed by HWINFO in the BUS section of the HP notebook and why the NVIDIA Graphics card is assigned to the PCI Express x8 Bus of the HP notebook instead of the PCI Express x16 Bus?

Thank you very much.

Profile

Matthew Garrett

About Matthew

Power management, mobile and firmware developer on Linux. Security developer at Aurora. Ex-biologist. [personal profile] mjg59 on Twitter. Content here should not be interpreted as the opinion of my employer. Also on Mastodon.

Page Summary

Expand Cut Tags

No cut tags