From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=217.140.101.70; helo=foss.arm.com; envelope-from=julien.grall@arm.com; receiver=edk2-devel@lists.01.org Received: from foss.arm.com (usa-sjc-mx-foss1.foss.arm.com [217.140.101.70]) by ml01.01.org (Postfix) with ESMTP id 334AC226612AF for ; Wed, 25 Apr 2018 10:26:42 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 6FC6980D; Wed, 25 Apr 2018 10:26:42 -0700 (PDT) Received: from [10.1.206.53] (e108454-lin.cambridge.arm.com [10.1.206.53]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id A817C3F590; Wed, 25 Apr 2018 10:26:41 -0700 (PDT) To: Ard Biesheuvel , edk2-devel@lists.01.org Cc: leif.lindholm@linaro.org, lersek@redhat.com References: <20180423150057.13515-1-ard.biesheuvel@linaro.org> From: Julien Grall Message-ID: <783155fd-41d3-2f17-a24b-6f9fea52f05c@arm.com> Date: Wed, 25 Apr 2018 18:26:40 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: <20180423150057.13515-1-ard.biesheuvel@linaro.org> Subject: Re: [PATCH 0/2] Reenable timer mask quirk for Xen X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Apr 2018 17:26:43 -0000 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Hi Ard, Thank you for the series, I confirm it fixes EDK2 boot in Xen guest. Tested-by: Julien Grall Acked-by: Julien Grall Cheers, On 23/04/18 16:00, Ard Biesheuvel wrote: > Reinstate the timer mask quirk for Xen that we recently removed under the > assumption that only ancient KVM host implementations still needed it. > > Ard Biesheuvel (2): > ArmPkg: add reenable hook to ArmGenericTimerCounterLib > ArmVirtPkg: reinstate timer unmask quirk for Xen > > ArmPkg/Drivers/TimerDxe/TimerDxe.c | 1 + > .../Library/ArmGenericTimerCounterLib.h | 6 + > .../ArmGenericTimerPhyCounterLib.c | 8 + > .../ArmGenericTimerVirtCounterLib.c | 8 + > ArmVirtPkg/ArmVirtXen.dsc | 1 + > .../XenArmGenericTimerVirtCounterLib.c | 146 ++++++++++++++++++ > .../XenArmGenericTimerVirtCounterLib.inf | 33 ++++ > 7 files changed, 203 insertions(+) > create mode 100644 ArmVirtPkg/Library/XenArmGenericTimerVirtCounterLib/XenArmGenericTimerVirtCounterLib.c > create mode 100644 ArmVirtPkg/Library/XenArmGenericTimerVirtCounterLib/XenArmGenericTimerVirtCounterLib.inf > -- Julien Grall