Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/disk/nvme/
Dnvme_controller.c33 uint32_t csts; in nvme_controller_wait_for_ready() local
36 csts = nvme_mmio_read_4(regs, csts); in nvme_controller_wait_for_ready()
37 if (csts == NVME_GONE) { in nvme_controller_wait_for_ready()
42 if (((csts >> NVME_CSTS_REG_RDY_SHIFT) & in nvme_controller_wait_for_ready()
62 uint32_t cc, csts; in nvme_controller_disable() local
67 csts = nvme_mmio_read_4(regs, csts); in nvme_controller_disable()
69 ready = (csts >> NVME_CSTS_REG_RDY_SHIFT) & NVME_CSTS_REG_RDY_MASK; in nvme_controller_disable()
100 uint32_t cc, csts; in nvme_controller_enable() local
104 csts = nvme_mmio_read_4(regs, csts); in nvme_controller_enable()
106 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.h24 uint32_t csts; /* controller status */ member