mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-08 16:26:58 +02:00
Revert "mmc: sdhci: set to INT_DATA_END when there are data"
This reverts commit 17ea3c8628
.
In eMMC specification, for the response-with-busy(R1b, R5b)
command, the DAT0 will driven to LOW as BUSY status, and in
sdhci specification, the transfer complete bit should be wait
for BUSY status de-assert.
All response-with-busy commands don't contain data, the data
judgement is no need.
Signed-off-by: Yuezhang.Mo <Yuezhang.Mo@sony.com>
Reviewed-by: Andy Wu <Andy.Wu@sony.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
parent
4412fd8ba2
commit
4a3ea75de4
@ -258,8 +258,7 @@ static int sdhci_send_command(struct mmc *mmc, struct mmc_cmd *cmd,
|
|||||||
flags = SDHCI_CMD_RESP_LONG;
|
flags = SDHCI_CMD_RESP_LONG;
|
||||||
else if (cmd->resp_type & MMC_RSP_BUSY) {
|
else if (cmd->resp_type & MMC_RSP_BUSY) {
|
||||||
flags = SDHCI_CMD_RESP_SHORT_BUSY;
|
flags = SDHCI_CMD_RESP_SHORT_BUSY;
|
||||||
if (data)
|
mask |= SDHCI_INT_DATA_END;
|
||||||
mask |= SDHCI_INT_DATA_END;
|
|
||||||
} else
|
} else
|
||||||
flags = SDHCI_CMD_RESP_SHORT;
|
flags = SDHCI_CMD_RESP_SHORT;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user