From: Peter Korsgaard <jacmet@sunsite.dk>
To: monstr@monstr.eu
Cc: linux-serial@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>
Subject: Re: Uartlite - ulite_transmit
Date: Sun, 16 Jan 2011 22:02:06 +0100 [thread overview]
Message-ID: <87r5cc5zqp.fsf@macbook.be.48ers.dk> (raw)
In-Reply-To: <4D32B5A2.1070508@monstr.eu> (Michal Simek's message of "Sun, 16 Jan 2011 10:08:50 +0100")
>>>>> "Michal" == Michal Simek <monstr@monstr.eu> writes:
Hi,
Michal> Hi Peter,
Michal> sorry for delay. I had to look at another issue.
No problem.
Michal> Below is full log:
Michal> 1. I setup baudrate to 50. (It could be possible to set it up to 0 too)
Michal> That's why I think that doesn't matter what baudrate is setup.
Michal> 2. You see where ulite_startup is called. It is called only once.
Ok, good.
Michal> 3. You see that there is no call __uart_wait_until_sent(). It could be
Michal> called for ASYNC mode. The second thing is __uart_wait_until_sent
Michal> function is checking if tx fifo is empty not circ buffer is empty.
Yes, that's afaik what that function should do.
Michal> 4. Next thing is that in uart_close. port->count is 2 which means that
Michal> the executing path is
Michal> if (port->count) {
Michal> spin_unlock_irqrestore(&port->lock, flags);
Michal> goto done;
Michal> }
Michal> which means that there is no chance to call __uart_wait_until_sent
Michal> function anyway.
And no buffer flushing, so that's fine.
Michal> 5. I did one modification to add simple while loop till circ buffer is
Michal> empty to the same location to see what happen (timouts are bogus
Michal> values).
Michal> if (port->count) {
Michal> spin_unlock_irqrestore(&port->lock, flags);
Michal> printk("************ %x %x\n", (&uport->state->xmit)->tail,
Michal> (&uport->state->xmit)->head);
Michal> while (!uart_circ_empty(&uport->state->xmit)) {
Michal> msleep_interruptible(jiffies_to_msecs((uport->timeout - HZ/50)));
Michal> if (signal_pending(current))
Michal> break;
Michal> if (time_after(jiffies, jiffies + uport->timeout))
Michal> break;
Michal> }
Michal> printk("************\n");
Michal> goto done;
Michal> }
Ok, so this shows that there's still data in the circular buffer when
uart is closed, like expected.
For me, it all looks normal:
1. serial port gets opened, uart_open -> uart_startup -> ulite_startup
gets called, ASYNC_INITIALIZED gets set, circular buffer and hardware
TX fifo cleared.
2. Some time later serial port gets opened again, and uart_startup is a
NOP because ASYNC_INITIALIZED is set. No circular buffer / hw fifo
clear.
3. serial port gets closed, uart_close is a NOP because port->count > 0
4. serial port gets opened again, NOP like in 2.
The problem is the uart_flush_buffer() call we see after uart_open() in
4. If doesn't seem to come from serial_core (only called from uart_close
/ uart_hangup), so presumably it comes from the TTY core or
userspace. Could you add a bit more debug to figure out where exactly it
comes from?
Michal> ************
Michal> uart_open(0) called
Michal> uart_flush_buffer(0) called
--
Bye, Peter Korsgaard
next prev parent reply other threads:[~2011-01-16 21:02 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <4D2465E0.2000707@monstr.eu>
[not found] ` <4D246672.3070002@monstr.eu>
[not found] ` <87vd22h3dq.fsf@macbook.be.48ers.dk>
[not found] ` <4D257D61.2060400@monstr.eu>
[not found] ` <87r5cqh0bn.fsf@macbook.be.48ers.dk>
[not found] ` <4D25871D.2000408@monstr.eu>
[not found] ` <87mxnegy4u.fsf@macbook.be.48ers.dk>
[not found] ` <4D26C538.3010101@monstr.eu>
[not found] ` <4D26D79C.8060304@monstr.eu>
[not found] ` <4D2D78F3.2040903@monstr.eu>
[not found] ` <87aaj6zays.fsf@macbook.be.48ers.dk>
[not found] ` <4D2D8113.1020504@monstr.eu>
[not found] ` <8739oyza2n.fsf@macbook.be.48ers.dk>
2011-01-16 9:08 ` Uartlite - ulite_transmit Michal Simek
2011-01-16 21:02 ` Peter Korsgaard [this message]
2011-01-17 6:35 ` Michal Simek
2011-01-17 15:17 ` Michal Simek
2011-01-19 15:27 ` Peter Korsgaard
2011-01-20 8:04 ` Michal Simek
2011-01-20 8:06 ` Peter Korsgaard
2011-01-20 8:08 ` Michal Simek
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=87r5cc5zqp.fsf@macbook.be.48ers.dk \
--to=jacmet@sunsite.dk \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=monstr@monstr.eu \
/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