Lines Matching refs:stat
274 static int pxamci_cmd_done(struct pxamci_host *host, unsigned int stat)
297 if (stat & STAT_TIME_OUT_RESPONSE) {
299 } else if (stat & STAT_RES_CRC_ERR && cmd->flags & MMC_RSP_CRC) {
329 static int pxamci_data_done(struct pxamci_host *host, unsigned int stat)
344 if (stat & STAT_READ_TIME_OUT)
346 else if (stat & (STAT_CRC_READ_ERROR|STAT_CRC_WRITE_ERROR))
382 unsigned stat = readl(host->base + MMC_STAT);
384 pr_debug("PXAMCI: irq %08x stat %08x\n", ireg, stat);
387 handled |= pxamci_cmd_done(host, stat);
389 handled |= pxamci_data_done(host, stat);