Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
David Pu | 70f6597 | 2019-03-18 15:14:49 -0700 | [diff] [blame] | 3 | * Copyright (c) 2020, NVIDIA Corporation. All rights reserved. |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 4 | * |
| 5 | * SPDX-License-Identifier: BSD-3-Clause |
| 6 | */ |
| 7 | |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 8 | #ifndef RAS_ARCH_H |
| 9 | #define RAS_ARCH_H |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 10 | |
| 11 | /* |
| 12 | * Size of nodes implementing Standard Error Records - currently only 4k is |
| 13 | * supported. |
| 14 | */ |
Jeenu Viswambharan | 31ac01e | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 15 | #define STD_ERR_NODE_SIZE_NUM_K 4U |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 16 | |
| 17 | /* |
| 18 | * Individual register offsets within an error record in Standard Error Record |
| 19 | * format when error records are accessed through memory-mapped registers. |
| 20 | */ |
Jeenu Viswambharan | 31ac01e | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 21 | #define ERR_FR(n) (0x0ULL + (64ULL * (n))) |
| 22 | #define ERR_CTLR(n) (0x8ULL + (64ULL * (n))) |
| 23 | #define ERR_STATUS(n) (0x10ULL + (64ULL * (n))) |
| 24 | #define ERR_ADDR(n) (0x18ULL + (64ULL * (n))) |
| 25 | #define ERR_MISC0(n) (0x20ULL + (64ULL * (n))) |
| 26 | #define ERR_MISC1(n) (0x28ULL + (64ULL * (n))) |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 27 | |
| 28 | /* Group Status Register (ERR_STATUS) offset */ |
| 29 | #define ERR_GSR(base, size_num_k, n) \ |
Jeenu Viswambharan | 31ac01e | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 30 | ((base) + (0x380ULL * (size_num_k)) + (8ULL * (n))) |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 31 | |
| 32 | /* Management register offsets */ |
| 33 | #define ERR_DEVID(base, size_num_k) \ |
Jeenu Viswambharan | 31ac01e | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 34 | ((base) + ((0x400ULL * (size_num_k)) - 0x100ULL) + 0xc8ULL) |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 35 | |
Jeenu Viswambharan | 31ac01e | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 36 | #define ERR_DEVID_MASK 0xffffUL |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 37 | |
| 38 | /* Standard Error Record status register fields */ |
| 39 | #define ERR_STATUS_AV_SHIFT 31 |
| 40 | #define ERR_STATUS_AV_MASK U(0x1) |
| 41 | |
| 42 | #define ERR_STATUS_V_SHIFT 30 |
| 43 | #define ERR_STATUS_V_MASK U(0x1) |
| 44 | |
| 45 | #define ERR_STATUS_UE_SHIFT 29 |
| 46 | #define ERR_STATUS_UE_MASK U(0x1) |
| 47 | |
| 48 | #define ERR_STATUS_ER_SHIFT 28 |
| 49 | #define ERR_STATUS_ER_MASK U(0x1) |
| 50 | |
| 51 | #define ERR_STATUS_OF_SHIFT 27 |
| 52 | #define ERR_STATUS_OF_MASK U(0x1) |
| 53 | |
| 54 | #define ERR_STATUS_MV_SHIFT 26 |
| 55 | #define ERR_STATUS_MV_MASK U(0x1) |
| 56 | |
| 57 | #define ERR_STATUS_CE_SHIFT 24 |
| 58 | #define ERR_STATUS_CE_MASK U(0x3) |
| 59 | |
| 60 | #define ERR_STATUS_DE_SHIFT 23 |
| 61 | #define ERR_STATUS_DE_MASK U(0x1) |
| 62 | |
| 63 | #define ERR_STATUS_PN_SHIFT 22 |
| 64 | #define ERR_STATUS_PN_MASK U(0x1) |
| 65 | |
| 66 | #define ERR_STATUS_UET_SHIFT 20 |
| 67 | #define ERR_STATUS_UET_MASK U(0x3) |
| 68 | |
| 69 | #define ERR_STATUS_IERR_SHIFT 8 |
| 70 | #define ERR_STATUS_IERR_MASK U(0xff) |
| 71 | |
| 72 | #define ERR_STATUS_SERR_SHIFT 0 |
| 73 | #define ERR_STATUS_SERR_MASK U(0xff) |
| 74 | |
| 75 | #define ERR_STATUS_GET_FIELD(_status, _field) \ |
| 76 | (((_status) >> ERR_STATUS_ ##_field ##_SHIFT) & ERR_STATUS_ ##_field ##_MASK) |
| 77 | |
| 78 | #define ERR_STATUS_CLR_FIELD(_status, _field) \ |
| 79 | (_status) &= ~(ERR_STATUS_ ##_field ##_MASK << ERR_STATUS_ ##_field ##_SHIFT) |
| 80 | |
| 81 | #define ERR_STATUS_SET_FIELD(_status, _field, _value) \ |
| 82 | (_status) |= (((_value) & ERR_STATUS_ ##_field ##_MASK) << ERR_STATUS_ ##_field ##_SHIFT) |
| 83 | |
| 84 | #define ERR_STATUS_WRITE_FIELD(_status, _field, _value) do { \ |
| 85 | ERR_STATUS_CLR_FIELD(_status, _field, _value); \ |
| 86 | ERR_STATUS_SET_FIELD(_status, _field, _value); \ |
| 87 | } while (0) |
| 88 | |
| 89 | |
| 90 | /* Standard Error Record control register fields */ |
| 91 | #define ERR_CTLR_WDUI_SHIFT 11 |
| 92 | #define ERR_CTLR_WDUI_MASK 0x1 |
| 93 | |
| 94 | #define ERR_CTLR_RDUI_SHIFT 10 |
| 95 | #define ERR_CTLR_RDUI_MASK 0x1 |
| 96 | #define ERR_CTLR_DUI_SHIFT ERR_CTLR_RDUI_SHIFT |
| 97 | #define ERR_CTLR_DUI_MASK ERR_CTLR_RDUI_MASK |
| 98 | |
| 99 | #define ERR_CTLR_WCFI_SHIFT 9 |
| 100 | #define ERR_CTLR_WCFI_MASK 0x1 |
| 101 | |
| 102 | #define ERR_CTLR_RCFI_SHIFT 8 |
| 103 | #define ERR_CTLR_RCFI_MASK 0x1 |
| 104 | #define ERR_CTLR_CFI_SHIFT ERR_CTLR_RCFI_SHIFT |
| 105 | #define ERR_CTLR_CFI_MASK ERR_CTLR_RCFI_MASK |
| 106 | |
| 107 | #define ERR_CTLR_WUE_SHIFT 7 |
| 108 | #define ERR_CTLR_WUE_MASK 0x1 |
| 109 | |
| 110 | #define ERR_CTLR_WFI_SHIFT 6 |
| 111 | #define ERR_CTLR_WFI_MASK 0x1 |
| 112 | |
| 113 | #define ERR_CTLR_WUI_SHIFT 5 |
| 114 | #define ERR_CTLR_WUI_MASK 0x1 |
| 115 | |
| 116 | #define ERR_CTLR_RUE_SHIFT 4 |
| 117 | #define ERR_CTLR_RUE_MASK 0x1 |
| 118 | #define ERR_CTLR_UE_SHIFT ERR_CTLR_RUE_SHIFT |
| 119 | #define ERR_CTLR_UE_MASK ERR_CTLR_RUE_MASK |
| 120 | |
| 121 | #define ERR_CTLR_RFI_SHIFT 3 |
| 122 | #define ERR_CTLR_RFI_MASK 0x1 |
| 123 | #define ERR_CTLR_FI_SHIFT ERR_CTLR_RFI_SHIFT |
| 124 | #define ERR_CTLR_FI_MASK ERR_CTLR_RFI_MASK |
| 125 | |
| 126 | #define ERR_CTLR_RUI_SHIFT 2 |
| 127 | #define ERR_CTLR_RUI_MASK 0x1 |
| 128 | #define ERR_CTLR_UI_SHIFT ERR_CTLR_RUI_SHIFT |
| 129 | #define ERR_CTLR_UI_MASK ERR_CTLR_RUI_MASK |
| 130 | |
| 131 | #define ERR_CTLR_ED_SHIFT 0 |
| 132 | #define ERR_CTLR_ED_MASK 0x1 |
| 133 | |
| 134 | #define ERR_CTLR_CLR_FIELD(_ctlr, _field) \ |
| 135 | (_ctlr) &= ~(ERR_CTLR_ ##_field _MASK << ERR_CTLR_ ##_field ##_SHIFT) |
| 136 | |
| 137 | #define ERR_CTLR_SET_FIELD(_ctlr, _field, _value) \ |
| 138 | (_ctlr) |= (((_value) & ERR_CTLR_ ##_field ##_MASK) << ERR_CTLR_ ##_field ##_SHIFT) |
| 139 | |
| 140 | #define ERR_CTLR_ENABLE_FIELD(_ctlr, _field) \ |
| 141 | ERR_CTLR_SET_FIELD(_ctlr, _field, ERR_CTLR_ ##_field ##_MASK) |
| 142 | |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 143 | /* Uncorrected error types for Asynchronous exceptions */ |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 144 | #define ERROR_STATUS_UET_UC 0x0 /* Uncontainable */ |
| 145 | #define ERROR_STATUS_UET_UEU 0x1 /* Unrecoverable */ |
| 146 | #define ERROR_STATUS_UET_UEO 0x2 /* Restable */ |
| 147 | #define ERROR_STATUS_UET_UER 0x3 /* Recoverable */ |
| 148 | |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 149 | /* Error types for Synchronous exceptions */ |
| 150 | #define ERROR_STATUS_SET_UER 0x0 /* Recoverable */ |
| 151 | #define ERROR_STATUS_SET_UEO 0x1 /* Restable */ |
| 152 | #define ERROR_STATUS_SET_UC 0x2 /* Uncontainable */ |
| 153 | #define ERROR_STATUS_SET_CE 0x3 /* Corrected */ |
| 154 | |
David Pu | 70f6597 | 2019-03-18 15:14:49 -0700 | [diff] [blame] | 155 | /* Number of architecturally-defined primary error codes */ |
| 156 | #define ERROR_STATUS_NUM_SERR U(22) |
| 157 | |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 158 | /* Implementation Defined Syndrome bit in ESR */ |
| 159 | #define SERROR_IDS_BIT U(24) |
| 160 | |
| 161 | /* |
| 162 | * Asynchronous Error Type in exception syndrome. The field has same values in |
| 163 | * both DISR_EL1 and ESR_EL3 for SError. |
| 164 | */ |
| 165 | #define EABORT_AET_SHIFT U(10) |
| 166 | #define EABORT_AET_WIDTH U(3) |
| 167 | #define EABORT_AET_MASK U(0x7) |
| 168 | |
| 169 | /* DFSC field in Asynchronous exception syndrome */ |
| 170 | #define EABORT_DFSC_SHIFT U(0) |
| 171 | #define EABORT_DFSC_WIDTH U(6) |
| 172 | #define EABORT_DFSC_MASK U(0x3f) |
| 173 | |
| 174 | /* Synchronous Error Type in exception syndrome. */ |
| 175 | #define EABORT_SET_SHIFT U(11) |
| 176 | #define EABORT_SET_WIDTH U(2) |
| 177 | #define EABORT_SET_MASK U(0x3) |
| 178 | |
| 179 | /* DFSC code for SErrors */ |
| 180 | #define DFSC_SERROR 0x11 |
| 181 | |
| 182 | /* I/DFSC code for synchronous external abort */ |
| 183 | #define SYNC_EA_FSC 0x10 |
| 184 | |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 185 | #ifndef __ASSEMBLER__ |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 186 | |
| 187 | #include <arch.h> |
| 188 | #include <arch_helpers.h> |
| 189 | #include <assert.h> |
| 190 | #include <context.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 191 | #include <lib/mmio.h> |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 192 | #include <stdint.h> |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 193 | |
| 194 | /* |
| 195 | * Standard Error Record accessors for memory-mapped registers. |
| 196 | */ |
| 197 | |
| 198 | static inline uint64_t ser_get_feature(uintptr_t base, unsigned int idx) |
| 199 | { |
| 200 | return mmio_read_64(base + ERR_FR(idx)); |
| 201 | } |
| 202 | |
| 203 | static inline uint64_t ser_get_control(uintptr_t base, unsigned int idx) |
| 204 | { |
| 205 | return mmio_read_64(base + ERR_CTLR(idx)); |
| 206 | } |
| 207 | |
| 208 | static inline uint64_t ser_get_status(uintptr_t base, unsigned int idx) |
| 209 | { |
| 210 | return mmio_read_64(base + ERR_STATUS(idx)); |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Error handling agent would write to the status register to clear an |
| 215 | * identified/handled error. Most fields in the status register are |
| 216 | * conditional write-one-to-clear. |
| 217 | * |
| 218 | * Typically, to clear the status, it suffices to write back the same value |
| 219 | * previously read. However, if there were new, higher-priority errors recorded |
| 220 | * on the node since status was last read, writing read value won't clear the |
| 221 | * status. Therefore, an error handling agent must wait on and verify the status |
| 222 | * has indeed been cleared. |
| 223 | */ |
| 224 | static inline void ser_set_status(uintptr_t base, unsigned int idx, |
| 225 | uint64_t status) |
| 226 | { |
| 227 | mmio_write_64(base + ERR_STATUS(idx), status); |
| 228 | } |
| 229 | |
| 230 | static inline uint64_t ser_get_addr(uintptr_t base, unsigned int idx) |
| 231 | { |
| 232 | return mmio_read_64(base + ERR_ADDR(idx)); |
| 233 | } |
| 234 | |
| 235 | static inline uint64_t ser_get_misc0(uintptr_t base, unsigned int idx) |
| 236 | { |
| 237 | return mmio_read_64(base + ERR_MISC0(idx)); |
| 238 | } |
| 239 | |
| 240 | static inline uint64_t ser_get_misc1(uintptr_t base, unsigned int idx) |
| 241 | { |
| 242 | return mmio_read_64(base + ERR_MISC1(idx)); |
| 243 | } |
| 244 | |
| 245 | |
| 246 | /* |
| 247 | * Standard Error Record helpers for System registers. |
| 248 | */ |
| 249 | static inline void ser_sys_select_record(unsigned int idx) |
| 250 | { |
Jeenu Viswambharan | 31ac01e | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 251 | unsigned int max_idx __unused = |
| 252 | (unsigned int) read_erridr_el1() & ERRIDR_MASK; |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 253 | |
| 254 | assert(idx < max_idx); |
| 255 | |
| 256 | write_errselr_el1(idx); |
| 257 | isb(); |
| 258 | } |
| 259 | |
| 260 | /* Library functions to probe Standard Error Record */ |
| 261 | int ser_probe_memmap(uintptr_t base, unsigned int size_num_k, int *probe_data); |
| 262 | int ser_probe_sysreg(unsigned int idx_start, unsigned int num_idx, int *probe_data); |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 263 | #endif /* __ASSEMBLER__ */ |
Jeenu Viswambharan | 19f6cf2 | 2017-12-07 08:43:05 +0000 | [diff] [blame] | 264 | |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 265 | #endif /* RAS_ARCH_H */ |