Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 1 | { |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 4 | "description": "Generic Processor Error Section", |
Aushim Nagarkatti | 517282f | 2025-03-03 17:08:31 -0800 | [diff] [blame] | 5 | "required": [], |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 6 | "additionalProperties": false, |
| 7 | "properties": { |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 8 | "processorType": { |
| 9 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 10 | "description": "Identifies the type of the processor architecture.", |
Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame] | 11 | "$ref": "./common/cper-json-nvp.json" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 12 | }, |
| 13 | "processorISA": { |
| 14 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 15 | "description": "Identifies the type of the instruction set executing when the error occurred", |
Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame] | 16 | "$ref": "./common/cper-json-nvp.json" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 17 | }, |
| 18 | "errorType": { |
| 19 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 20 | "description": "Indicates the type of error that occurred", |
Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame] | 21 | "$ref": "./common/cper-json-nvp.json" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 22 | }, |
| 23 | "operation": { |
| 24 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 25 | "description": "Indicates the type of operation", |
Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame] | 26 | "$ref": "./common/cper-json-nvp.json" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 27 | }, |
| 28 | "flags": { |
| 29 | "type": "object", |
Ed Tanous | 7a531ff | 2025-03-14 17:06:49 -0700 | [diff] [blame] | 30 | "additionalProperties": false, |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 31 | "description": "Indicates additional information about the error", |
Lawrence Tang | d34f2b1 | 2022-07-19 15:36:31 +0100 | [diff] [blame] | 32 | "required": ["restartable", "preciseIP", "overflow", "corrected"], |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 33 | "properties": { |
Lawrence Tang | d34f2b1 | 2022-07-19 15:36:31 +0100 | [diff] [blame] | 34 | "restartable": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 35 | "type": "boolean", |
| 36 | "description": "program execution can be restarted reliably after the error" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 37 | }, |
| 38 | "preciseIP": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 39 | "type": "boolean", |
| 40 | "description": "the instruction IP captured is directly associated with the error" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 41 | }, |
| 42 | "overflow": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 43 | "type": "boolean", |
| 44 | "description": "a machine check overflow occurred (a second error occurred while the results of a previous error were still in the error reporting resources)" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 45 | }, |
| 46 | "corrected": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 47 | "type": "boolean", |
| 48 | "description": "the error was corrected by hardware and/or firmware" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 49 | } |
| 50 | } |
| 51 | }, |
| 52 | "level": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 53 | "type": "integer", |
| 54 | "description": "Level of the structure where the error occurred, with 0 being the lowest level of cache." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 55 | }, |
| 56 | "cpuVersionInfo": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 57 | "type": "integer", |
| 58 | "description": "This field represents the CPU Version Information and returns Family, Model, and stepping information" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 59 | }, |
| 60 | "cpuBrandString": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 61 | "type": "string", |
| 62 | "description": "This field represents the null-terminated ASCII Processor Brand String" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 63 | }, |
| 64 | "processorID": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 65 | "type": "integer", |
| 66 | "description": "This value uniquely identifies the logical processor" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 67 | }, |
| 68 | "targetAddress": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 69 | "type": "integer", |
| 70 | "description": "Identifies the target address associated with the error" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 71 | }, |
| 72 | "requestorID": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 73 | "type": "integer", |
| 74 | "description": "Identifies the requestor associated with the error" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 75 | }, |
| 76 | "responderID": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 77 | "type": "integer", |
| 78 | "description": "Identifies the responder associated with the error" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 79 | }, |
| 80 | "instructionIP": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 81 | "type": "integer", |
| 82 | "description": "Identifies the instruction pointer when the error occurred" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 83 | } |
| 84 | } |
John Chung | 044afd0 | 2024-05-03 19:58:02 +0800 | [diff] [blame] | 85 | } |