Home
last modified time | relevance | path

Searched refs:csts (Results 1 – 3 of 3) sorted by relevance

/Zephyr-Core-3.6.0/drivers/disk/nvme/
Dnvme_controller.c31 uint32_t csts; in nvme_controller_wait_for_ready() local
34 csts = nvme_mmio_read_4(regs, csts); in nvme_controller_wait_for_ready()
35 if (csts == NVME_GONE) { in nvme_controller_wait_for_ready()
40 if (((csts >> NVME_CSTS_REG_RDY_SHIFT) & in nvme_controller_wait_for_ready()
60 uint32_t cc, csts; in nvme_controller_disable() local
65 csts = nvme_mmio_read_4(regs, csts); in nvme_controller_disable()
67 ready = (csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK; in nvme_controller_disable()
98 uint32_t cc, csts; in nvme_controller_enable() local
102 csts = nvme_mmio_read_4(regs, csts); in nvme_controller_enable()
104 ready = (csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK; in nvme_controller_enable()
Dnvme_helpers.h108 #define NVME_CSTS_GET_SHST(csts) \ argument
109 (((csts) >> NVME_CSTS_REG_SHST_SHIFT) & NVME_CSTS_REG_SHST_MASK)
Dnvme.h22 uint32_t csts; /* controller status */ member