Lines Matching refs:stop

117 	struct mmc_command *stop;  in dw_mci_req_show()  local
127 stop = mrq->stop; in dw_mci_req_show()
139 if (stop) in dw_mci_req_show()
142 stop->opcode, stop->arg, stop->flags, in dw_mci_req_show()
143 stop->resp[0], stop->resp[1], stop->resp[2], in dw_mci_req_show()
144 stop->resp[2], stop->error); in dw_mci_req_show()
309 struct mmc_command *stop; in dw_mci_prep_stop_abort() local
315 stop = &host->stop_abort; in dw_mci_prep_stop_abort()
317 memset(stop, 0, sizeof(struct mmc_command)); in dw_mci_prep_stop_abort()
325 stop->opcode = MMC_STOP_TRANSMISSION; in dw_mci_prep_stop_abort()
326 stop->arg = 0; in dw_mci_prep_stop_abort()
327 stop->flags = MMC_RSP_R1B | MMC_CMD_AC; in dw_mci_prep_stop_abort()
329 stop->opcode = SD_IO_RW_DIRECT; in dw_mci_prep_stop_abort()
330 stop->arg |= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT << 9) | in dw_mci_prep_stop_abort()
332 stop->flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_AC; in dw_mci_prep_stop_abort()
337 cmdr = stop->opcode | SDMMC_CMD_STOP | in dw_mci_prep_stop_abort()
385 struct mmc_command *stop = data->stop ? data->stop : &host->stop_abort; in send_stop_abort() local
386 dw_mci_start_command(host, stop, host->stop_cmdr); in send_stop_abort()
393 host->dma_ops->stop(host); in dw_mci_stop_dma()
664 .stop = dw_mci_idmac_stop_dma,
840 host->dma_ops->stop(host); in dw_mci_submit_data_dma()
1080 if (mrq->stop) in __dw_mci_start_request()
1081 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop); in __dw_mci_start_request()
1636 if (data->stop || in dw_mci_tasklet_func()
1666 if (data->stop || in dw_mci_tasklet_func()
1687 if (!data->stop || mrq->sbc) { in dw_mci_tasklet_func()
1688 if (mrq->sbc && data->stop) in dw_mci_tasklet_func()
1689 data->stop->error = 0; in dw_mci_tasklet_func()
1695 if (data->stop) in dw_mci_tasklet_func()
1735 if (mrq->stop) in dw_mci_tasklet_func()
1736 dw_mci_command_complete(host, mrq->stop); in dw_mci_tasklet_func()
2519 host->dma_ops->stop && host->dma_ops->cleanup) { in dw_mci_init_dma()