2017-12-19 10:45:09

by Mark Rutland

[permalink] [raw]
Subject: Re: Linux Kernel handling AXI DECERR/SLVERR

On Tue, Dec 19, 2017 at 10:23:25AM +0000, Bharat Kumar Gogada wrote:
> Hi All,

Hi,

> When Linux is booted on ARM64 platform and an access to peripheral returns
> DECERR or SLVERR on AXI.
>
> In the above error cases how would Linux kernel handle these faults ? Will it
> hang/recover ?

I believe that on contemporary CPUs these will result in an SError. As
SErrors are asynchronous, and (in the absence of RAS extensions) their
cause cannot be determined, these are treated as fatal, and the kernel
will panic().

Thanks,
Mark.


2017-12-19 11:28:59

by Bharat Kumar Gogada

[permalink] [raw]
Subject: RE: Linux Kernel handling AXI DECERR/SLVERR

Hi,

> When Linux is booted on ARM64 platform and an access to peripheral
> returns DECERR or SLVERR on AXI.
>
> In the above error cases how would Linux kernel handle these faults ?
> Will it hang/recover ?

I believe that on contemporary CPUs these will result in an SError. As SErrors are asynchronous, and (in the absence of RAS extensions) their cause cannot be determined, these are treated as fatal, and the kernel will panic().

Thanks, Mark.
In our case the peripheral returns SLVERR first time and we see the following print but kernel do not hang.
[ 231.484186] Unhandled fault: synchronous external abort (0x92000210) at 0x0000007f9241f880
Bus error

And from simulation we know that subsequent access to peripheral returns OKAY response, however we
see subsequent access fail with same above bus error when we boot Linux.

Is there a way to handle these synchronous abort gracefully in Linux or are these fatal ?

Regards,
Bharat

2017-12-19 11:38:54

by Mark Rutland

[permalink] [raw]
Subject: Re: Linux Kernel handling AXI DECERR/SLVERR

On Tue, Dec 19, 2017 at 11:28:49AM +0000, Bharat Kumar Gogada wrote:
> In our case the peripheral returns SLVERR first time and we see the following print but kernel do not hang.
> [ 231.484186] Unhandled fault: synchronous external abort (0x92000210) at 0x0000007f9241f880
> Bus error
>
> And from simulation we know that subsequent access to peripheral
> returns OKAY response, however we see subsequent access fail with same
> above bus error when we boot Linux.
>
> Is there a way to handle these synchronous abort gracefully in Linux
> or are these fatal ?

We don't currently have any mechanism to handle these, though it might
be possible for synchronous aborts.

Do you know why the device is returning SLVERR in this case?

Thanks,
Mark.

2017-12-20 10:33:55

by Bharat Kumar Gogada

[permalink] [raw]
Subject: RE: Linux Kernel handling AXI DECERR/SLVERR

On Tue, Dec 19, 2017 at 11:28:49AM +0000, Bharat Kumar Gogada wrote:
> In our case the peripheral returns SLVERR first time and we see the following print but kernel do not hang.
> [ 231.484186] Unhandled fault: synchronous external abort
> (0x92000210) at 0x0000007f9241f880 Bus error
>
> And from simulation we know that subsequent access to peripheral
> returns OKAY response, however we see subsequent access fail with same
> above bus error when we boot Linux.
>
> Is there a way to handle these synchronous abort gracefully in Linux
> or are these fatal ?

We don't currently have any mechanism to handle these, though it might be possible for synchronous abort.
Since currently there is no mechanism to handle, if once synchronous abort is received from a peripheral,
consecutive access will show up same error even peripheral responds with OKAY ?
What are the possible ways for handling these ?

Do you know why the device is returning SLVERR in this case?
There is an error being detected by the device.

Bharat