Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

nvme-pci: add quirk for Memblaze Pblaze5 (0x1c5f:0x0555)

The Memblaze Pblaze5 NVMe device (PCI ID 0x1c5f:0x0555)
is detected as a controller on recent kernels (tested on 5.15.85
and 6.8.4), but no namespace is exposed.

Tools like lsblk and fdisk do not report any block device.

dmesg shows:
nvme nvme0: missing or invalid SUBNQN field.

The device works correctly on older kernels (e.g. 4.19), suggesting
a compatibility issue with newer namespace handling.

This indicates the device does not properly support the
Namespace Descriptor List feature.

Applying NVME_QUIRK_NO_NS_DESC_LIST allows the namespace to be
discovered correctly.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Tao Jiang <tanroame.kyle@gmail.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>

authored by

Tao Jiang and committed by
Keith Busch
cf92d78a 3f150f0f

+2
+2
drivers/nvme/host/pci.c
··· 4102 4102 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, }, 4103 4103 { PCI_DEVICE(0x1c5f, 0x0540), /* Memblaze Pblaze4 adapter */ 4104 4104 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, }, 4105 + { PCI_DEVICE(0x1c5f, 0x0555), /* Memblaze Pblaze5 adapter */ 4106 + .driver_data = NVME_QUIRK_NO_NS_DESC_LIST, }, 4105 4107 { PCI_DEVICE(0x144d, 0xa808), /* Samsung PM981/983 */ 4106 4108 .driver_data = NVME_QUIRK_IGNORE_DEV_SUBNQN, }, 4107 4109 { PCI_DEVICE(0x144d, 0xa821), /* Samsung PM1725 */