From: Julien Grall <julien.grall@linaro.org>
To: Laszlo Ersek <lersek@redhat.com>,
"Zeng, Star" <star.zeng@intel.com>,
edk2-devel-01 <edk2-devel@lists.01.org>,
"heyi.guo@linaro.org" <heyi.guo@linaro.org>,
"Ni, Ruiyu" <ruiyu.ni@intel.com>
Cc: Anthony PERARD <anthony.perard@citrix.com>,
Leif Lindholm <leif.lindholm@linaro.org>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>
Subject: Re: Xen Console input very slow in recent UEFI
Date: Fri, 27 Oct 2017 14:19:10 +0100 [thread overview]
Message-ID: <fab34d56-2540-7d94-ed2b-a96f3986d348@linaro.org> (raw)
In-Reply-To: <68c947a5-34f9-f91e-3670-88182163a2f2@redhat.com>
Hi Laszlo & Star,
On 27/10/17 13:38, Laszlo Ersek wrote:
> On 10/27/17 05:20, Zeng, Star wrote:
>> Hi,
>>
>> The TimeOut handling in SerialRead() in SerialDxe(MdeModulepkg), IsaSerialRead() in IsaSerialDxe(IntelFrameworkModulePkg) and SerialRead() in PciSioSerialDxe(MdeModulePkg) are consistent, and we did not see this kind of "slow down" before.
>>
>> After some investigation, I found it is related to the Timeout value.
>>
>> The Timeout is 1000000 (1s) by default to follow UEFI spec. And the Terminal driver will recalculate and set the Timeout value based on the properties of UART in TerminalDriverBindingStart()/TerminalConInTimerHandler().
>>
>> SerialInTimeOut = 0;
>> if (Mode->BaudRate != 0) {
>> //
>> // According to BAUD rate to calculate the timeout value.
>> //
>> SerialInTimeOut = (1 + Mode->DataBits + Mode->StopBits) * 2 * 1000000 / (UINTN) Mode->BaudRate;
>> }
>>
>> For example, based on the PCD values of PcdUartDefaultBaudRate, PcdUartDefaultDataBits and PcdUartDefaultStopBits, SerialInTimeOut = (1 + 8 + 1) * 2 * 1000000 / (UINTN) 115200 = 173 (us).
>>
>> When SerialDxe is used,
>> TerminalDriverBindingStart()/TerminalConInTimerHandler() ->
>> SerialIo->SetAttributes() ->
>> SerialSetAttributes() ->
>> SerialPortSetAttributes()
>>
>> Some implementations of SerialPortSetAttributes() could handle the input parameters and return RETURN_SUCCESS, for example BaseSerialPortLib16550, then Timeout value will be changed to 173 (us), no "slow down" will be observed.
The slow down could be observed on BaseSerialPortLib16550 if you pass
invalid parameters. Therefore EFI_INVALID_PARAMETER will be returned.
>> But some implementations of SerialPortSetAttributes() just return RETURN_UNSUPPORTED, for example XenConsoleSerialPortLib, then Timeout value will be not changed and kept to be 1000000 (1s), "slow down" will be observed.
>>
>> Here, how about to?
>> 1. Handle the input parameters and return status accordingly instead of just returning RETURN_UNSUPPORTED in SerialPortSetAttributes().
>> 2. Just return RETURN_SUCCESS instead of RETURN_UNSUPPORTED in SerialPortSetAttributes() if the instance does not care the input parameters at all.
>
> I can't speak authoritatively on Xen's behalf, of course, but option (2)
> appears sane to me -- it is a virtual serial port; in theory it should
> be able to accept all these parameter values.
>
> (My understanding is that the virtual serial port need not change its
> *behavior* based on the changed attributes. I.e., when keystrokes are
> available, it doesn't have to slow down itself in providing those
> keystrokes, just so it match the baud rate.)
That's correct, none of the parameters but Timeout matters for Xen. But
given that other driver are using that value, would not it be better to
use the patch suggested by Start (see below)?
>>
>> And SerialDxe may can be enhanced like below to be more robust.
You definitely want such patch in the tree as EFI_UNSUPPORTED is a valid
return parameter and used by other serial driver (for instance
DxeEmuSerialPortLib).
>>
>> ==========
>> 6ec9c40f91fc675ee77f3e54aea4e5a41a2de504
>> MdeModulePkg/Universal/SerialDxe/SerialIo.c | 16 +++++++++++++++-
>> 1 file changed, 15 insertions(+), 1 deletion(-)
>>
>> diff --git a/MdeModulePkg/Universal/SerialDxe/SerialIo.c b/MdeModulePkg/Universal/SerialDxe/SerialIo.c
>> index ebcd92726314..060ea56c2b1a 100644
>> --- a/MdeModulePkg/Universal/SerialDxe/SerialIo.c
>> +++ b/MdeModulePkg/Universal/SerialDxe/SerialIo.c
>> @@ -285,7 +285,21 @@ SerialSetAttributes (
>>
>> Status = SerialPortSetAttributes (&BaudRate, &ReceiveFifoDepth, &Timeout, &Parity, &DataBits, &StopBits);
>> if (EFI_ERROR (Status)) {
>> - return Status;
>> + //
>> + // If it is just to set Timeout value and unsupported is returned,
>> + // do not return error.
>> + //
>> + if ((Status == EFI_UNSUPPORTED) &&
I would also check EFI_INVALID_PARAMETER as the implementation may not
support some values, but it is still fine to modify the Timeout.
>> + (This->Mode->Timeout != Timeout) &&
>> + (This->Mode->ReceiveFifoDepth == ReceiveFifoDepth) &&
>> + (This->Mode->BaudRate == BaudRate) &&
>> + (This->Mode->DataBits == (UINT32) DataBits) &&
>> + (This->Mode->Parity == (UINT32) Parity) &&
>> + (This->Mode->StopBits == (UINT32) StopBits)) {
>> + Status = EFI_SUCCESS;
>> + } else {
>> + return Status;
>> + }
>> }
>>
>> //
>> ====================
>
Cheers,
--
Julien Grall
next prev parent reply other threads:[~2017-10-27 13:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-26 11:05 Xen Console input very slow in recent UEFI Julien Grall
2017-10-26 15:13 ` Laszlo Ersek
2017-10-26 15:20 ` Laszlo Ersek
2017-10-26 18:31 ` Julien Grall
2017-10-27 3:20 ` Zeng, Star
2017-10-27 12:38 ` Laszlo Ersek
2017-10-27 13:19 ` Julien Grall [this message]
2017-10-27 15:43 ` Laszlo Ersek
2017-10-30 1:09 ` Zeng, Star
2017-11-01 12:46 ` Julien Grall
2017-11-02 1:43 ` Zeng, Star
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-list 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=fab34d56-2540-7d94-ed2b-a96f3986d348@linaro.org \
--to=devel@edk2.groups.io \
/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