Lines Matching refs:stop

115 	struct mmc_command *stop;  in dw_mci_req_show()  local
125 stop = mrq->stop; in dw_mci_req_show()
137 if (stop) in dw_mci_req_show()
140 stop->opcode, stop->arg, stop->flags, in dw_mci_req_show()
141 stop->resp[0], stop->resp[1], stop->resp[2], in dw_mci_req_show()
142 stop->resp[2], stop->error); in dw_mci_req_show()
307 struct mmc_command *stop; in dw_mci_prep_stop_abort() local
313 stop = &host->stop_abort; in dw_mci_prep_stop_abort()
315 memset(stop, 0, sizeof(struct mmc_command)); in dw_mci_prep_stop_abort()
323 stop->opcode = MMC_STOP_TRANSMISSION; in dw_mci_prep_stop_abort()
324 stop->arg = 0; in dw_mci_prep_stop_abort()
325 stop->flags = MMC_RSP_R1B | MMC_CMD_AC; in dw_mci_prep_stop_abort()
327 stop->opcode = SD_IO_RW_DIRECT; in dw_mci_prep_stop_abort()
328 stop->arg |= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT << 9) | in dw_mci_prep_stop_abort()
330 stop->flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_AC; in dw_mci_prep_stop_abort()
335 cmdr = stop->opcode | SDMMC_CMD_STOP | in dw_mci_prep_stop_abort()
383 struct mmc_command *stop = data->stop ? data->stop : &host->stop_abort; in send_stop_abort() local
385 dw_mci_start_command(host, stop, host->stop_cmdr); in send_stop_abort()
392 host->dma_ops->stop(host); in dw_mci_stop_dma()
679 .stop = dw_mci_idmac_stop_dma,
780 .stop = dw_mci_edmac_stop_dma,
957 host->dma_ops->stop(host); in dw_mci_submit_data_dma()
1203 if (mrq->stop) in __dw_mci_start_request()
1204 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop); in __dw_mci_start_request()
1771 if (data->stop || in dw_mci_tasklet_func()
1809 if (data->stop || in dw_mci_tasklet_func()
1839 if (!data->stop || mrq->sbc) { in dw_mci_tasklet_func()
1840 if (mrq->sbc && data->stop) in dw_mci_tasklet_func()
1841 data->stop->error = 0; in dw_mci_tasklet_func()
1847 if (data->stop) in dw_mci_tasklet_func()
1887 if (mrq->stop) in dw_mci_tasklet_func()
1888 dw_mci_command_complete(host, mrq->stop); in dw_mci_tasklet_func()
2711 host->dma_ops->stop && host->dma_ops->cleanup) { in dw_mci_init_dma()