mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-07 21:33:54 +00:00
fix(ras): fix status synchronous error type fields
Based on SET bits of ISS encoding for an exception from Data or Instruction Abort. (Refer to ESR_EL3) 1. Fix Synchronous error type restartable value from 1 to 3 2. Remove corrected CE field which is not applicable to SET Change-Id: If357da9881bee962825bc3b9423ba7fc107f9b1d Signed-off-by: Vinoj Soundararajan <vinojs@google.com>
This commit is contained in:
parent
ee5915e2ff
commit
9c17687aab
1 changed files with 1 additions and 2 deletions
|
@ -148,9 +148,8 @@
|
|||
|
||||
/* Error types for Synchronous exceptions */
|
||||
#define ERROR_STATUS_SET_UER 0x0 /* Recoverable */
|
||||
#define ERROR_STATUS_SET_UEO 0x1 /* Restable */
|
||||
#define ERROR_STATUS_SET_UC 0x2 /* Uncontainable */
|
||||
#define ERROR_STATUS_SET_CE 0x3 /* Corrected */
|
||||
#define ERROR_STATUS_SET_UEO 0x3 /* Restartable */
|
||||
|
||||
/* Number of architecturally-defined primary error codes */
|
||||
#define ERROR_STATUS_NUM_SERR U(22)
|
||||
|
|
Loading…
Add table
Reference in a new issue