Home
last modified time | relevance | path

Searched refs:MMC_RSP_CRC (Results 1 – 18 of 18) sorted by relevance

/linux-4.1.27/include/linux/mmc/
Dcore.h28 #define MMC_RSP_CRC (1 << 2) /* expect valid crc */ macro
49 #define MMC_RSP_R1 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
50 #define MMC_RSP_R1B (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE|MMC_RSP_BUSY)
51 #define MMC_RSP_R2 (MMC_RSP_PRESENT|MMC_RSP_136|MMC_RSP_CRC)
54 #define MMC_RSP_R5 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
55 #define MMC_RSP_R6 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
56 #define MMC_RSP_R7 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
58 #define mmc_resp_type(cmd) ((cmd)->flags & (MMC_RSP_PRESENT|MMC_RSP_136|MMC_RSP_CRC|MMC_RSP_BUSY|MM…
/linux-4.1.27/drivers/mmc/host/
Dmxs-mmc.c301 ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ? in mxs_mmc_ac()
370 ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ? in mxs_mmc_adtc()
Dbfin_sdh.c274 else if (stat & CMD_CRC_FAIL && cmd->flags & MMC_RSP_CRC) in sdh_cmd_done()
Dcb710-mmc.c389 if (!(flags & MMC_RSP_CRC)) in cb710_encode_cmd_flags()
Dpxamci.c324 } else if (stat & STAT_RES_CRC_ERR && cmd->flags & MMC_RSP_CRC) { in pxamci_cmd_done()
Dmvsdio.c167 if (cmd->flags & MMC_RSP_CRC) in mvsd_request()
Dsunxi-mmc.c808 if (cmd->flags & MMC_RSP_CRC) in sunxi_mmc_request()
Dtmio_mmc_pio.c596 else if (stat & TMIO_STAT_CRCFAIL && cmd->flags & MMC_RSP_CRC) in tmio_mmc_cmd_irq()
Dmxcmmc.c513 } else if (stat & STATUS_RESP_CRC_ERR && cmd->flags & MMC_RSP_CRC) { in mxcmci_read_response()
Dwbsd.c401 else if ((cmd->flags & MMC_RSP_CRC) && (isr & WBSD_INT_CRC)) in wbsd_send_command()
Ddw_mmc.c289 if (cmd->flags & MMC_RSP_CRC) in dw_mci_prepare_command()
1509 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC)) in dw_mci_command_complete()
Drtsx_usb_sdmmc.c327 case MMC_RSP_R1 & ~MMC_RSP_CRC: in sd_send_cmd_get_rsp()
Drtsx_pci_sdmmc.c130 case MMC_RSP_R1 & ~MMC_RSP_CRC: in sd_response_type()
Dmmci.c1021 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) { in mmci_cmd_irq()
Ds3cmci.c696 if (cmd->flags & MMC_RSP_CRC) { in s3cmci_irq()
Datmel-mci.c1538 else if ((cmd->flags & MMC_RSP_CRC) && (status & ATMCI_RCRCE)) in atmci_command_complete()
Dsdhci.c1092 if (cmd->flags & MMC_RSP_CRC) in sdhci_send_command()
/linux-4.1.27/drivers/mmc/core/
Dmmc_ops.c70 cmd.flags &= ~MMC_RSP_CRC; in __mmc_send_status()