I'm trying to set up a Win 10 / Debian 10 dual boot on an Asus UX430UA that I've just bought new. I replaced the OEM SATA SSD with a larger NVMe SSD (ADATA XPG SX8200) and am trying to install both OS's on the same SSD, as I've done before on other systems. Debian installer does not detect the SSD.
Neither Debian Live 10.2 from USB stick, nor Debian 10.1 installer detect the drive:
But I know the drive works on this laptop and can work with Debian:
I've checked everything I can find based on a Google and superuser search:
In case it's helpful:
sudo dmesg | grep -i nvme
[ 1.441062] nvme nvme0: pci function 0000:03:00.0
[ 1.665679] nvme nvme0: missing or invalid SUBNQN field.
[ 1.668135] nvme0n1: p1 p2 p3 p4 p5
[ 36.017364] nvme nvme0: controller is down; will reset: CSTS=0xffffffff, PCI_STATUS=0xffff
[ 36.049640] print_req_error: I/O error, dev nvme0n1, sector 1000215040
[ 36.097358] nvme 0000:03:00.0: Refused to change power state, currently in D3
[ 36.097634] nvme nvme0: Removing after probe failure status: -19
[ 36.113518] Buffer I/O error on dev nvme0n1, logical block 125026880, async page read
[ 36.115717] Buffer I/O error on dev nvme0n1p4, logical block 204784, async page read
[ 36.115826] Buffer I/O error on dev nvme0n1p5, logical block 20479984, async page read
[ 36.117946] Buffer I/O error on dev nvme0n1p1, logical block 66544, async page read
[ 36.197378] nvme nvme0: failed to set APST feature (-19)
Any ideas would be appreciated!
Got it working. oldfred's advice in the comments above helped, as well as this post: https://unix.stackexchange.com/questions/470778/nvme-missing-or-invalid-subnqn-field
It seems that the ADATA XPG SX8200 doesn't play well with APST power management, so you have to disable that at boot. To do that I added this option to the linux line when the installer started:
nvme_core.default_ps_max_latency_us=0
Apparently values up to about 5500 work as well. My understanding is that this will cause the SSD not to go into power saving mode.
I contacted ADATA about this. They offered to replace the unit under warranty, but couldn't tell me whether this issue has been addressed in any newer version of their firmware.
User contributions licensed under CC BY-SA 3.0