From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: imammedo@redhat.com, andrey@xdel.ru, qemu-devel@nongnu.org,
dslutz@verizon.com, batuzovk@ispras.ru
Subject: Re: [Qemu-devel] [PATCH v3 2/4] serial: clean up THRE/TEMT handling
Date: Mon, 15 Dec 2014 11:40:19 +0000 [thread overview]
Message-ID: <20141215114018.GC5502@work-vm> (raw)
In-Reply-To: <1418388243-1886-3-git-send-email-pbonzini@redhat.com>
* Paolo Bonzini (pbonzini@redhat.com) wrote:
> - assert THRE cleared and FIFO not empty (if enabled) before
> sending a character. Also assert TEMT cleared, since it is
> the combination of THRE && transmitter shift register empty.
>
> - raise THRI immediately after setting THRE
>
> - check THRE to see if another character has to be sent,
> which makes the assertions more obvious and also means TEMT
> has to be set as soon as the loop ends
>
> - clear TEMT together with THRE even in the non-FIFO case
>
> There are certainly a couple bugfixes in here, but nothing that
> squashes known bugs.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> hw/char/serial.c | 26 ++++++++++++--------------
> 1 file changed, 12 insertions(+), 14 deletions(-)
>
> diff --git a/hw/char/serial.c b/hw/char/serial.c
> index 8c42d03..4bce268 100644
> --- a/hw/char/serial.c
> +++ b/hw/char/serial.c
> @@ -224,21 +224,23 @@ static gboolean serial_xmit(GIOChannel *chan, GIOCondition cond, void *opaque)
> SerialState *s = opaque;
>
> do {
> + assert(!(s->lsr & UART_LSR_TEMT));
> + assert(!(s->lsr & UART_LSR_THRE));
> +
> if (s->tsr_retry <= 0) {
> if (s->fcr & UART_FCR_FE) {
> - if (fifo8_is_empty(&s->xmit_fifo)) {
> - return FALSE;
> - }
> + assert(!fifo8_is_empty(&s->xmit_fifo));
That's undoing dslutz@verizon.com's
dffacd46 - Fix emptyness checking
See, http://permalink.gmane.org/gmane.comp.emulators.qemu/262412
I don't think your assumptions are safe because of that qemu_chr_fe_add_watch.
Dave
> s->tsr = fifo8_pop(&s->xmit_fifo);
> if (!s->xmit_fifo.num) {
> s->lsr |= UART_LSR_THRE;
> }
> - } else if ((s->lsr & UART_LSR_THRE)) {
> - return FALSE;
> } else {
> s->tsr = s->thr;
> s->lsr |= UART_LSR_THRE;
> - s->lsr &= ~UART_LSR_TEMT;
> + }
> + if ((s->lsr & UART_LSR_THRE) && !s->thr_ipending) {
> + s->thr_ipending = 1;
> + serial_update_irq(s);
> }
> }
>
> @@ -256,17 +258,13 @@ static gboolean serial_xmit(GIOChannel *chan, GIOCondition cond, void *opaque)
> } else {
> s->tsr_retry = 0;
> }
> +
> /* Transmit another byte if it is already available. It is only
> possible when FIFO is enabled and not empty. */
> - } while ((s->fcr & UART_FCR_FE) && !fifo8_is_empty(&s->xmit_fifo));
> + } while (!(s->lsr & UART_LSR_THRE));
>
> s->last_xmit_ts = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
> -
> - if (s->lsr & UART_LSR_THRE) {
> - s->lsr |= UART_LSR_TEMT;
> - s->thr_ipending = 1;
> - serial_update_irq(s);
> - }
> + s->lsr |= UART_LSR_TEMT;
>
> return FALSE;
> }
> @@ -323,10 +321,10 @@ static void serial_ioport_write(void *opaque, hwaddr addr, uint64_t val,
> fifo8_pop(&s->xmit_fifo);
> }
> fifo8_push(&s->xmit_fifo, s->thr);
> - s->lsr &= ~UART_LSR_TEMT;
> }
> s->thr_ipending = 0;
> s->lsr &= ~UART_LSR_THRE;
> + s->lsr &= ~UART_LSR_TEMT;
> serial_update_irq(s);
> if (s->tsr_retry <= 0) {
> serial_xmit(NULL, G_IO_OUT, s);
> --
> 1.8.3.1
>
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2014-12-15 11:40 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-12 12:43 [Qemu-devel] [PATCH v3 0/4] serial fixes, including 2.2->2.1 migration Paolo Bonzini
2014-12-12 12:44 ` [Qemu-devel] [PATCH v3 1/4] serial: reset thri_pending on IER writes with THRI=0 Paolo Bonzini
2014-12-15 10:46 ` Dr. David Alan Gilbert
2014-12-15 11:51 ` Paolo Bonzini
2014-12-15 13:30 ` Dr. David Alan Gilbert
2014-12-15 13:34 ` Paolo Bonzini
2014-12-15 13:37 ` Dr. David Alan Gilbert
2014-12-15 13:45 ` Paolo Bonzini
2014-12-12 12:44 ` [Qemu-devel] [PATCH v3 2/4] serial: clean up THRE/TEMT handling Paolo Bonzini
2014-12-15 11:40 ` Dr. David Alan Gilbert [this message]
2014-12-15 12:03 ` Paolo Bonzini
2014-12-15 15:21 ` Dr. David Alan Gilbert
2014-12-15 15:26 ` Paolo Bonzini
2014-12-15 15:29 ` Dr. David Alan Gilbert
2014-12-12 12:44 ` [Qemu-devel] [PATCH v3 3/4] serial: update LSR on enabling/disabling FIFOs Paolo Bonzini
2014-12-15 15:50 ` Dr. David Alan Gilbert
2014-12-15 15:52 ` Paolo Bonzini
2014-12-12 12:44 ` [Qemu-devel] [PATCH v3 4/4] serial: only resample THR interrupt on rising edge of IER.THRI Paolo Bonzini
2014-12-15 16:05 ` Dr. David Alan Gilbert
2014-12-15 16:10 ` 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=20141215114018.GC5502@work-vm \
--to=dgilbert@redhat.com \
--cc=andrey@xdel.ru \
--cc=batuzovk@ispras.ru \
--cc=dslutz@verizon.com \
--cc=imammedo@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.