From: John Snow <jsnow@redhat.com>
To: "Hervé Poussineau" <hpoussin@reactos.org>, qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] i8257: fix Terminal Count status
Date: Fri, 26 Feb 2016 18:51:46 -0500 [thread overview]
Message-ID: <56D0E512.8030606@redhat.com> (raw)
In-Reply-To: <1456404332-31556-1-git-send-email-hpoussin@reactos.org>
On 02/25/2016 07:45 AM, Hervé Poussineau wrote:
> When a DMA transfer is done (ie all bytes have been transfered), the corresponding
> Terminal Count bit must be set in the status register.
> This bit is already cleared in i8257_read_cont and i8257_write_cont when required.
>
> This fixes (at least) floppy transfer in IBM 40p firmware, which checks in DMA
> controller if everything went fine.
>
> Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
> ---
> hw/dma/i8257.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/hw/dma/i8257.c b/hw/dma/i8257.c
> index 5a52707..6078893 100644
> --- a/hw/dma/i8257.c
> +++ b/hw/dma/i8257.c
> @@ -342,6 +342,10 @@ static void i8257_channel_run(I8257State *d, int ichan)
> r->now[COUNT], (r->base[COUNT] + 1) << ncont);
> r->now[COUNT] = n;
> ldebug ("dma_pos %d size %d\n", n, (r->base[COUNT] + 1) << ncont);
> + if (n == (r->base[COUNT] + 1) << ncont) {
> + ldebug("transfer done\n");
> + d->status |= (1 << ichan);
> + }
> }
>
> static void i8257_dma_run(void *opaque)
>
As best as I can tell from the i8257 data sheet I found this seems to be
correct, assuming the size calculation is correct (looks right, based on
that existing ldebug print.)
Reviewed-by: John Snow <jsnow@redhat.com>
next prev parent reply other threads:[~2016-02-26 23:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-25 12:45 [Qemu-devel] [PATCH] i8257: fix Terminal Count status Hervé Poussineau
2016-02-26 23:51 ` John Snow [this message]
2016-02-29 14:26 ` Paolo Bonzini
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=56D0E512.8030606@redhat.com \
--to=jsnow@redhat.com \
--cc=hpoussin@reactos.org \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).