Home
last modified time | relevance | path

Searched refs:NVME_VS (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/drivers/nvme/target/
H A Dpassthru.c618 if (subsys->ver < NVME_VS(1, 2, 1)) { in nvmet_passthru_ctrl_enable()
622 subsys->ver = NVME_VS(1, 2, 1); in nvmet_passthru_ctrl_enable()
H A Dnvmet.h24 #define NVMET_DEFAULT_VS NVME_VS(1, 3, 0)
H A Dconfigfs.c1087 subsys->ver = NVME_VS(major, minor, tertiary); in nvmet_subsys_attr_version_store_locked()
/openbmc/u-boot/drivers/nvme/
H A Dnvme.h582 #define NVME_VS(major, minor) (((major) << 16) | ((minor) << 8)) macro
/openbmc/linux/drivers/nvme/host/
H A Dcore.c1296 return ctrl->vs < NVME_VS(1, 2, 0); in nvme_ctrl_limited_cns()
1297 return ctrl->vs < NVME_VS(1, 1, 0); in nvme_ctrl_limited_cns()
1380 if (ctrl->vs < NVME_VS(1, 3, 0) && !nvme_multi_css(ctrl)) in nvme_identify_ns_descs()
1475 if (ctrl->vs >= NVME_VS(1, 1, 0) && in nvme_ns_info_from_identify()
1478 if (ctrl->vs >= NVME_VS(1, 2, 0) && in nvme_ns_info_from_identify()
2635 if (ctrl->vs >= NVME_VS(1, 2, 1)) in nvme_init_subnqn()
3169 if (ctrl->vs >= NVME_VS(1, 1, 0)) in nvme_init_ctrl_finish()
H A Dpci.c1732 dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1, 0) ? in nvme_pci_configure_admin_queue()
/openbmc/linux/include/linux/
H A Dnvme.h2007 #define NVME_VS(major, minor, tertiary) \ macro