[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Xen/ARM - Query about a data abort seen while reading GICD registers


  • To: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxxxxx>
  • From: Bertrand Marquis <Bertrand.Marquis@xxxxxxx>
  • Date: Wed, 17 Nov 2021 15:48:45 +0000
  • Accept-language: en-GB, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=arm.com; dmarc=pass action=none header.from=arm.com; dkim=pass header.d=arm.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=uqNeQg0bMhGZ+WBUbxRjqfnIBylKjZKx5WHeToWR4l0=; b=ZtSwxkPlW9PycMyBoSRAkqBOcUNRoQNSS10L7Cb8olxC01WvZKD/vOwvqa3tF7b8u9qntu6N7Hr4p8LCF8kIbJEk2XgUKF9jw1AkQUeVAvoguYKO6+FV3bNNPQdZSop2NnQ1+xnB6hQJUuwnKKZ1pYUsNa2HAp9iQ5ToBpPwJXAhC/0rqkw94oyUjI+pgUfEmi9QTmdaX1+1lcKZF/eii8b3avqcmPQypFUm/0NfuEUF/tGmjvTOJZulrOSwRgVbrkEtUHmAsBpJ/xHGCkwaZX0W2A/OQ7VHKOCN0MgFwLkfbNHP6nEg1NdrOiltqCj+UGR7Yr3hCgQVNOxkNxvSMQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=RrY7g+m8vqJ2K3Mg5zh6KNXURfsf8HzU4FpZifRvsaTVRba/lT/ACCG/tJx+8lisdFkwct36x9S9yUyn39CEUbRqel0F+PI5PfOG4VIVdu6BjW+H2YOSkmxx8SYZnThMdUSNiCbDZF3N++oSj+vY1VjIXtIvTDJzZjVF3dOzjuTS4CJPN6WZ8euz8Ujm5p7E3TIoFbXpoYF4KEjv6c7lI49KkQIe6mz1/qKUbWlOn75sZrhe5l700rbaWBKuJRYJsUozJ5ldDzEMsmN9I24P5lZ9K8t9Y/nfZRumeVGl3XlQwIDy4g+mE3Tpxjga/qdHc/crx2QxQqfnOBAwAoQUnw==
  • Authentication-results-original: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=arm.com;
  • Cc: "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>
  • Delivery-date: Wed, 17 Nov 2021 15:50:14 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Nodisclaimer: true
  • Original-authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=arm.com;
  • Thread-index: AQHX2v69rH0Wb2BjYUqXheWDWZOLqqwGSWAAgAANoACAAYg3gA==
  • Thread-topic: Xen/ARM - Query about a data abort seen while reading GICD registers

Hi Ayan,

> On 16 Nov 2021, at 16:24, Ayan Kumar Halder <ayan.kumar.halder@xxxxxxxxxx> 
> wrote:
> 
> Hi Bertrand,
> 
> Thanks for looking into it.
> 
> On 16/11/2021 15:36, Bertrand Marquis wrote:
>> Hi Ayan,
>>> On 16 Nov 2021, at 15:27, Ayan Kumar Halder <ayan.kumar.halder@xxxxxxxxxx> 
>>> wrote:
>>> 
>>> Hi Xen/Arm experts,
>>> 
>>> I am facing a very strange issue while running a baremetal application as a 
>>> DomU guest on arm64 platform.
>>> 
>>> The baremetal app tries to read the GICD register with post indexing as 
>>> follows :-
>>> ldr x1, =0x3001000
>>> ldr w2, [x1], #4 <<<------ PC = 0x40000ca8
>> Increment on on load is not supported by the emulation layer.
> 
> That is surprising. The reason being if I try to read the GICC register 
> (0x3002000) with post indexing then it works fine.

When the ISV bit is not set, Xen would have to decode the instruction to 
actually emulate the access and properly modify the registers values as long as 
providing the “emulated” access value.
There is not such a decoder in Xen right now which means those kind of accesses 
are not supported for emulated mmio accesses.

> 
> Can you point me in source where this limitation is set ?

In this case the isv field is set to 0 when the exception is received by Xen 
which means the decoding part of HSR is invalid so Xen is not handling the 
emulation of the access.

@julien and Stefano: I have been going around and around the code but I cannot 
find where the valid bit of hsr_dabt is checked, could you help me here ?

>> Could you try with:
>> add x1, x1, #4
>> ldr w2, [x1]
> 
> This worked fine.

Good :-)

Bertrand

> 
> -Ayan
>> Regards
>> Bertrand
>>> 
>>> And then I get :-
>>> HSR=0x92000005 pc=0x00000040000ca8 gva=0x3001000 gpa=0x00000003001000
>>> 
>>> This problem occurs only while reading the GICD registers with post 
>>> indexing. If I read the register with pre-indexing, then I do not see any 
>>> abort. Alternatively, if I read GICC register with post indexing, I don't 
>>> see the abort either.
>>> 
>>> From the HSR value, I interpret it as
>>> EC = 100100b # Data abort from lower exception
>>> IL = 1b # 32 bit instruction trapped
>>> DFSC = 101 # Translation fault level 1
>>> 
>>> On debugging, I found that the abort is triggered from
>>> 
>>> try_handle_mmio()
>>> { ...
>>>    /* All the instructions used on emulated MMIO region should be valid */
>>>    if ( !dabt.valid ) {
>>> 
>>>        return IO_ABORT;
>>>    }
>>> ...
>>> }
>>> 
>>> From the Arm V8 Arm specs, I understand that dabt.valid is ISV, bit[24] in 
>>> "ISS encoding for an exception from a Data Abort".
>>> 
>>> 
>>> I saw that the caller is
>>> 
>>> do_trap_guest_sync() "case HSR_EC_DATA_ABORT_LOWER_EL"
>>> where dabt.valid is false.
>>> In the success scenario, dabt.valid is true.
>>> 
>>> I could not find the caller for do_trap_guest_sync()
>>> 
>>> So, can anyone help me here
>>> 1. Who is the caller for do_trap_guest_sync() ?
>>> 2. Any idea on what the issue is and how I can debug it further ?
>>> 
>>> Kind regards,
>>> Ayan
>>> 


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.