From: P J P <ppandit@redhat.com>
To: Qemu Developers <qemu-devel@nongnu.org>
Cc: Alistair Francis <alistair23@gmail.com>,
Peter Maydell <peter.maydell@linaro.org>,
Wjjzhang <wjjzhang@tencent.com>, Jiang Xin <jiangxin1@huawei.com>,
"Edgar E . Iglesias" <edgar.iglesias@gmail.com>,
Prasad J Pandit <pjp@fedoraproject.org>
Subject: [Qemu-devel] [PATCH v2 2/3] sd: sdhci: conditionally invoke multi block transfer
Date: Wed, 8 Feb 2017 12:12:11 +0530 [thread overview]
Message-ID: <20170208064212.25307-3-ppandit@redhat.com> (raw)
In-Reply-To: <20170208064212.25307-1-ppandit@redhat.com>
From: Prasad J Pandit <pjp@fedoraproject.org>
In sdhci_write invoke multi block transfer if it is enabled
in the transfer mode register 's->trnmod'.
Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
---
hw/sd/sdhci.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c
index cf400c8..532ef87 100644
--- a/hw/sd/sdhci.c
+++ b/hw/sd/sdhci.c
@@ -1022,7 +1022,11 @@ sdhci_write(void *opaque, hwaddr offset, uint64_t val, unsigned size)
/* Writing to last byte of sdmasysad might trigger transfer */
if (!(mask & 0xFF000000) && TRANSFERRING_DATA(s->prnsts) && s->blkcnt &&
s->blksize && SDHC_DMA_TYPE(s->hostctl) == SDHC_CTRL_SDMA) {
- sdhci_sdma_transfer_multi_blocks(s);
+ if (!(s->trnmod & SDHC_TRNS_MULTI)) {
+ sdhci_sdma_transfer_single_block(s);
+ } else {
+ sdhci_sdma_transfer_multi_blocks(s);
+ }
}
break;
case SDHC_BLKSIZE:
--
2.9.3
next prev parent reply other threads:[~2017-02-08 6:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-08 6:42 [Qemu-devel] [PATCH v2 0/3] sd: sdhci: correct transfer mode register usage P J P
2017-02-08 6:42 ` [Qemu-devel] [PATCH v2 1/3] sd: sdhci: check transfer mode register in multi block transfer P J P
2017-02-10 22:45 ` Alistair Francis
2017-02-08 6:42 ` P J P [this message]
2017-02-10 23:10 ` [Qemu-devel] [PATCH v2 2/3] sd: sdhci: conditionally invoke " Alistair Francis
2017-02-08 6:42 ` [Qemu-devel] [PATCH v2 3/3] sd: sdhci: Remove block count enable check in single block transfers P J P
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170208064212.25307-3-ppandit@redhat.com \
--to=ppandit@redhat.com \
--cc=alistair23@gmail.com \
--cc=edgar.iglesias@gmail.com \
--cc=jiangxin1@huawei.com \
--cc=peter.maydell@linaro.org \
--cc=pjp@fedoraproject.org \
--cc=qemu-devel@nongnu.org \
--cc=wjjzhang@tencent.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).