From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 214862095B9D1 for ; Thu, 17 Aug 2017 05:14:36 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B74C25D686; Thu, 17 Aug 2017 12:17:02 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com B74C25D686 Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=lersek@redhat.com Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-76.phx2.redhat.com [10.3.116.76]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3415A88D7B; Thu, 17 Aug 2017 12:17:00 +0000 (UTC) To: "Zeng, Star" , Ard Biesheuvel , Brijesh Singh Cc: edk2-devel-01 , Heyi Guo References: <20170816121040.15757-1-lersek@redhat.com> <20170816121040.15757-2-lersek@redhat.com> <0C09AFA07DD0434D9E2A0C6AEB0483103B919A71@shsmsx102.ccr.corp.intel.com> From: Laszlo Ersek Message-ID: <8da5c314-485e-0938-41f3-2188a843ce2c@redhat.com> Date: Thu, 17 Aug 2017 14:17:00 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <0C09AFA07DD0434D9E2A0C6AEB0483103B919A71@shsmsx102.ccr.corp.intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Thu, 17 Aug 2017 12:17:02 +0000 (UTC) Subject: Re: [PATCH 1/1] ArmVirtPkg/FdtPL011SerialPortLib: call PL011UartLib in all SerialPortLib APIs X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 12:14:36 -0000 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 08/17/17 03:02, Zeng, Star wrote: > Very good commit log, history information and code change. :) > > Reviewed-by: Star Zeng Thank you all for the comments; patch pushed as commit 5f0f5e90ae8c. Cheers, Laszlo > -----Original Message----- > From: Laszlo Ersek [mailto:lersek@redhat.com] > Sent: Wednesday, August 16, 2017 8:11 PM > To: edk2-devel-01 > Cc: Ard Biesheuvel ; Brijesh Singh ; Heyi Guo ; Zeng, Star > Subject: [PATCH 1/1] ArmVirtPkg/FdtPL011SerialPortLib: call PL011UartLib in all SerialPortLib APIs > > With the SerialDxe change in commit 4cf3f37c87ba ("MdeModulePkg SerialDxe: > Process timeout consistently in SerialRead", 2017-07-18), setting EFI_SERIAL_INPUT_BUFFER_EMPTY in the "Control" output parameter, in the > GetControl() SerialPortLib function, is no longer a "small optimization". > Namely, due to the SerialDxe change, the GetOneKeyFromSerial() call in TerminalDxe's TerminalConInTimerHandler() can take very long if the input queue is empty, even if GetOneKeyFromSerial()'s return value causes the loop to be exited right after, in the first iteration. > > This issue causes a boot hang in ArmVirtQemu: with the input queue empty, > TerminalConInTimerHandler() takes so long to return that, by the time it returns, there's another execution queued already (due to the associated timer event being signaled meanwhile). The boot process is stuck in the timer event handler. > > Therefore even the first GetOneKeyFromSerial() iteration must be prevented in TerminalConInTimerHandler() if the input queue is empty, and that requires implementing GetControl() for real. > > Implement the SetAttributes(), SetControl() and GetControl() APIs (of SerialPortExtLib origin) in FdtPL011SerialPortLib with calls to matching PL011UartLib functions. This follows the example of "ArmPlatformPkg/Library/PL011SerialPortLib" and also matches Star's original idea under [1]. > > The patch can be considered a continuation of commit ad7f6bc2e116 > ("ArmVirtPkg: Use SerialDxe in MdeModulePkg instead of EmbeddedPkg", 2015-11-26), based on the mailing list threads [1] [2] [3]. > > [1] http://mid.mail-archive.com/1447752930-32880-12-git-send-email-star.zeng@intel.com > [2] http://mid.mail-archive.com/1448243067-1880-12-git-send-email-star.zeng@intel.com > [3] http://mid.mail-archive.com/b748580c-cb51-32c9-acf9-780841ef15da@redhat.com > > Cc: Ard Biesheuvel > Cc: Brijesh Singh > Cc: Heyi Guo > Cc: Star Zeng > Originally-suggested-by: Star Zeng > Reported-by: Brijesh Singh > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Laszlo Ersek > --- > ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c | 38 ++++++++++++++++++-- > 1 file changed, 35 insertions(+), 3 deletions(-) > > diff --git a/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c b/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c > index 48a0530dcc2f..05d3547fda91 100644 > --- a/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c > +++ b/ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c > @@ -200,7 +200,23 @@ SerialPortSetAttributes ( > IN OUT EFI_STOP_BITS_TYPE *StopBits > ) > { > - return RETURN_UNSUPPORTED; > + RETURN_STATUS Status; > + > + if (mSerialBaseAddress == 0) { > + Status = RETURN_UNSUPPORTED; > + } else { > + Status = PL011UartInitializePort ( > + mSerialBaseAddress, > + FixedPcdGet32 (PL011UartClkInHz), > + BaudRate, > + ReceiveFifoDepth, > + Parity, > + DataBits, > + StopBits > + ); > + } > + > + return Status; > } > > /** > @@ -219,7 +235,15 @@ SerialPortSetControl ( > IN UINT32 Control > ) > { > - return RETURN_UNSUPPORTED; > + RETURN_STATUS Status; > + > + if (mSerialBaseAddress == 0) { > + Status = RETURN_UNSUPPORTED; > + } else { > + Status = PL011UartSetControl (mSerialBaseAddress, Control); } > + > + return Status; > } > > /** > @@ -238,6 +262,14 @@ SerialPortGetControl ( > OUT UINT32 *Control > ) > { > - return RETURN_UNSUPPORTED; > + RETURN_STATUS Status; > + > + if (mSerialBaseAddress == 0) { > + Status = RETURN_UNSUPPORTED; > + } else { > + Status = PL011UartGetControl (mSerialBaseAddress, Control); } > + > + return Status; > } > > -- > 2.14.1.3.gb7cf6e02401b > > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel >