Searched refs:csts (Results 1 – 3 of 3) sorted by relevance
31 uint32_t csts; in nvme_controller_wait_for_ready() local34 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() local65 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() local102 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()
108 #define NVME_CSTS_GET_SHST(csts) \ argument109 (((csts) >> NVME_CSTS_REG_SHST_SHIFT) & NVME_CSTS_REG_SHST_MASK)
22 uint32_t csts; /* controller status */ member