Home
last modified time | relevance | path

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

/openbmc/linux/drivers/nvme/target/
H A Dcore.c1176 ctrl->csts = NVME_CSTS_CFS; in nvmet_start_ctrl()
1183 ctrl->csts = NVME_CSTS_CFS; in nvmet_start_ctrl()
1523 if (!(ctrl->csts & NVME_CSTS_CFS)) { in nvmet_ctrl_fatal_error()
1524 ctrl->csts |= NVME_CSTS_CFS; in nvmet_ctrl_fatal_error()
/openbmc/u-boot/drivers/nvme/
H A Dnvme.h598 NVME_CSTS_CFS = 1 << 1, enumerator
/openbmc/linux/drivers/nvme/host/
H A Dapple.c808 if (csts & NVME_CSTS_CFS) in apple_nvme_disable()
912 if (!apple_rtkit_is_crashed(anv->rtk) && !(csts & NVME_CSTS_CFS)) { in apple_nvme_timeout()
H A Dpci.c1246 if (!(csts & NVME_CSTS_CFS) && !nssro) in nvme_should_reset()
2594 return (csts & NVME_CSTS_CFS) || !(csts & NVME_CSTS_RDY); in nvme_pci_ctrl_is_dead()
/openbmc/linux/drivers/net/ethernet/fungible/funcore/
H A Dfun_dev.c334 return (csts & (NVME_CSTS_CFS | NVME_CSTS_RDY)) != NVME_CSTS_RDY; in fun_adminq_stopped()
/openbmc/linux/include/linux/
H A Dnvme.h218 NVME_CSTS_CFS = 1 << 1, enumerator
/openbmc/qemu/include/block/
H A Dnvme.h223 #define NVME_CSTS_CFS(csts) ((csts >> CSTS_CFS_SHIFT) & CSTS_CFS_MASK) macro