Lines Matching refs:stat
275 static int pxamci_cmd_done(struct pxamci_host *host, unsigned int stat)
298 if (stat & STAT_TIME_OUT_RESPONSE) {
300 } else if (stat & STAT_RES_CRC_ERR && cmd->flags & MMC_RSP_CRC) {
330 static int pxamci_data_done(struct pxamci_host *host, unsigned int stat)
345 if (stat & STAT_READ_TIME_OUT)
347 else if (stat & (STAT_CRC_READ_ERROR|STAT_CRC_WRITE_ERROR))
383 unsigned stat = readl(host->base + MMC_STAT);
385 pr_debug("PXAMCI: irq %08x stat %08x\n", ireg, stat);
388 handled |= pxamci_cmd_done(host, stat);
390 handled |= pxamci_data_done(host, stat);