csts              445 drivers/dma/tegra210-adma.c 	u32 csts;
csts              447 drivers/dma/tegra210-adma.c 	csts = tdma_ch_read(tdc, ADMA_CH_STATUS);
csts              448 drivers/dma/tegra210-adma.c 	csts &= ADMA_CH_STATUS_XFER_PAUSED;
csts              450 drivers/dma/tegra210-adma.c 	return csts ? true : false;
csts               58 drivers/gpu/drm/gma500/opregion.c 	u32 csts;	/* notification status */
csts              250 drivers/gpu/drm/gma500/opregion.c 	acpi->csts = 0;
csts              271 drivers/gpu/drm/gma500/opregion.c 		opregion->acpi->csts = 0;
csts               78 drivers/gpu/drm/i915/display/intel_opregion.c 	u32 csts;       /* notification status */
csts              640 drivers/gpu/drm/i915/display/intel_opregion.c 	acpi->csts = 0;
csts             1116 drivers/gpu/drm/i915/display/intel_opregion.c 		opregion->acpi->csts = 0;
csts             2075 drivers/nvme/host/core.c 	u32 csts, bit = enabled ? NVME_CSTS_RDY : 0;
csts             2078 drivers/nvme/host/core.c 	while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
csts             2079 drivers/nvme/host/core.c 		if (csts == ~0)
csts             2081 drivers/nvme/host/core.c 		if ((csts & NVME_CSTS_RDY) == bit)
csts             2164 drivers/nvme/host/core.c 	u32 csts;
csts             2174 drivers/nvme/host/core.c 	while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
csts             2175 drivers/nvme/host/core.c 		if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT)
csts             3850 drivers/nvme/host/core.c 	u32 csts;
csts             3852 drivers/nvme/host/core.c 	if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts))
csts             3855 drivers/nvme/host/core.c 	if (csts == ~0)
csts             3858 drivers/nvme/host/core.c 	return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP));
csts             1191 drivers/nvme/host/pci.c static bool nvme_should_reset(struct nvme_dev *dev, u32 csts)
csts             1197 drivers/nvme/host/pci.c 	bool nssro = dev->subsystem && (csts & NVME_CSTS_NSSRO);
csts             1211 drivers/nvme/host/pci.c 	if (!(csts & NVME_CSTS_CFS) && !nssro)
csts             1217 drivers/nvme/host/pci.c static void nvme_warn_reset(struct nvme_dev *dev, u32 csts)
csts             1228 drivers/nvme/host/pci.c 			 csts, pci_status);
csts             1232 drivers/nvme/host/pci.c 			 csts, result);
csts             1242 drivers/nvme/host/pci.c 	u32 csts = readl(dev->bar + NVME_REG_CSTS);
csts             1254 drivers/nvme/host/pci.c 	if (nvme_should_reset(dev, csts)) {
csts             1255 drivers/nvme/host/pci.c 		nvme_warn_reset(dev, csts);
csts             2422 drivers/nvme/host/pci.c 		u32 csts = readl(dev->bar + NVME_REG_CSTS);
csts             2429 drivers/nvme/host/pci.c 		dead = !!((csts & NVME_CSTS_CFS) || !(csts & NVME_CSTS_RDY) ||
csts             1033 drivers/nvme/target/core.c 		ctrl->csts = NVME_CSTS_CFS;
csts             1037 drivers/nvme/target/core.c 	ctrl->csts = NVME_CSTS_RDY;
csts             1053 drivers/nvme/target/core.c 	ctrl->csts &= ~NVME_CSTS_RDY;
csts             1071 drivers/nvme/target/core.c 		ctrl->csts |= NVME_CSTS_SHST_CMPLT;
csts             1074 drivers/nvme/target/core.c 		ctrl->csts &= ~NVME_CSTS_SHST_CMPLT;
csts             1137 drivers/nvme/target/core.c 	if (unlikely(!(req->sq->ctrl->csts & NVME_CSTS_RDY))) {
csts             1355 drivers/nvme/target/core.c 	if (!(ctrl->csts & NVME_CSTS_CFS)) {
csts             1356 drivers/nvme/target/core.c 		ctrl->csts |= NVME_CSTS_CFS;
csts              320 drivers/nvme/target/discovery.c 	if (unlikely(!(req->sq->ctrl->csts & NVME_CSTS_RDY))) {
csts               59 drivers/nvme/target/fabrics-cmd.c 			val = ctrl->csts;
csts              169 drivers/nvme/target/nvmet.h 	u32			csts;