@@ -1713,6 +1713,13 @@ static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
(do_data_tag ? (1 << 29) : 0);
brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
brq->mrq.sbc = &brq->sbc;
+
+ if (mmc_card_is_sduc(card->host)) {
+ brq->ext.opcode = SD_ADDR_EXT;
+ brq->ext.arg = FIELD_GET(SDUC_ADDR_EXT_MASK, blk_rq_pos(req));
+ brq->ext.flags = MMC_RSP_R1 | MMC_CMD_AC;
+ brq->mrq.ext = &brq->ext;
+ }
} else if (mmc_card_is_sduc(card->host)) {
u8 ext_addr = FIELD_GET(SDUC_ADDR_EXT_MASK, blk_rq_pos(req));
@@ -184,6 +184,14 @@ void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
mrq->sbc->resp[2], mrq->sbc->resp[3]);
}
+ if (mrq->ext) {
+ pr_debug("%s: req done <CMD%u>: %d: %08x %08x %08x %08x\n",
+ mmc_hostname(host), mrq->ext->opcode,
+ mrq->ext->error,
+ mrq->ext->resp[0], mrq->ext->resp[1],
+ mrq->ext->resp[2], mrq->ext->resp[3]);
+ }
+
pr_debug("%s: req done (CMD%u): %d: %08x %08x %08x %08x\n",
mmc_hostname(host), cmd->opcode, err,
cmd->resp[0], cmd->resp[1],
@@ -270,6 +278,12 @@ static void mmc_mrq_pr_debug(struct mmc_host *host, struct mmc_request *mrq,
mrq->sbc->arg, mrq->sbc->flags);
}
+ if (mrq->ext) {
+ pr_debug("<%s: starting CMD%u arg %08x flags %08x>\n",
+ mmc_hostname(host), mrq->ext->opcode,
+ mrq->ext->arg, mrq->ext->flags);
+ }
+
if (mrq->cmd) {
pr_debug("%s: starting %sCMD%u arg %08x flags %08x\n",
mmc_hostname(host), cqe ? "CQE direct " : "",
@@ -309,6 +323,10 @@ static int mmc_mrq_prep(struct mmc_host *host, struct mmc_request *mrq)
mrq->sbc->error = 0;
mrq->sbc->mrq = mrq;
}
+ if (mrq->ext) {
+ mrq->ext->error = 0;
+ mrq->ext->mrq = mrq;
+ }
if (mrq->data) {
if (mrq->data->blksz > host->max_blk_size ||
mrq->data->blocks > host->max_blk_count ||
In a multi-block data transfer, CMD23 shall precede CMD22. Prepare CMD22 in advance as an additional extension of the mrq, to be handle by the host once CMD23 is done. Signed-off-by: Avri Altman <avri.altman@wdc.com> --- drivers/mmc/core/block.c | 7 +++++++ drivers/mmc/core/core.c | 18 ++++++++++++++++++ 2 files changed, 25 insertions(+)