Lines Matching defs:status
39 * Poll status until status bit is set or we have a timeout.
47 u32 status, illegal, ctrl;
66 status = readl(priv->base_addr + FREEZE_CSR_STATUS_OFFSET);
67 dev_dbg(dev, "%s %x %x\n", __func__, status, req_ack);
68 status &= req_ack;
69 if (status) {
72 __func__, req_ack, status, ctrl);
93 u32 status;
96 status = readl(priv->base_addr + FREEZE_CSR_STATUS_OFFSET);
98 dev_dbg(dev, "%s %d %d\n", __func__, status, readl(csr_ctrl_addr));
100 if (status & FREEZE_CSR_STATUS_FREEZE_REQ_DONE) {
102 __func__, status);
104 } else if (!(status & FREEZE_CSR_STATUS_UNFREEZE_REQ_DONE)) {
105 dev_err(dev, "%s bridge not enabled %d\n", __func__, status);
128 u32 status;
133 status = readl(priv->base_addr + FREEZE_CSR_STATUS_OFFSET);
135 dev_dbg(dev, "%s %d %d\n", __func__, status, readl(csr_ctrl_addr));
137 if (status & FREEZE_CSR_STATUS_UNFREEZE_REQ_DONE) {
139 __func__, status);
141 } else if (!(status & FREEZE_CSR_STATUS_FREEZE_REQ_DONE)) {
142 dev_err(dev, "%s bridge not frozen %d\n", __func__, status);
151 status = readl(priv->base_addr + FREEZE_CSR_STATUS_OFFSET);
153 dev_dbg(dev, "%s %d %d\n", __func__, status, readl(csr_ctrl_addr));
215 u32 status, revision;
240 status = readl(base_addr + FREEZE_CSR_STATUS_OFFSET);
241 if (status & FREEZE_CSR_STATUS_UNFREEZE_REQ_DONE)