Lines Matching refs:status
443 * @attempts: max number of polls of the status register
446 * Wait for a flash operation to complete by polling the status register.
452 uint32_t status;
459 ret = csio_hw_sf1_read(hw, 1, 0, 1, &status);
463 if (!(status & 1))
3102 * @reg: the interrupt status register to process
3106 * interrupt status word and performs the corresponding actions if the
3118 unsigned int status = csio_rd_reg32(hw, reg);
3121 if (!(status & acts->mask))
3126 acts->msg, status & acts->mask);
3129 acts->msg, status & acts->mask);
3132 status &= mask;
3133 if (status) /* clear processed interrupts */
3134 csio_wr_reg32(hw, status, reg);
3508 uint32_t v, status = csio_rd_reg32(hw, MA_INT_CAUSE_A);
3510 if (status & MEM_PERR_INT_CAUSE_F)
3511 csio_fatal(hw, "MA parity error, parity status %#x\n",
3513 if (status & MEM_WRAP_INT_CAUSE_F) {
3519 csio_wr_reg32(hw, status, MA_INT_CAUSE_A);