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