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", |
Ed Tanous | da798dc | 2025-03-14 15:27:55 -0700 | [diff] [blame] | 4 | "description": "Memory 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 | "errorStatus": { |
| 9 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 10 | "description": "Memory error status information.", |
Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame] | 11 | "$ref": "./common/cper-json-error-status.json" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 12 | }, |
| 13 | "bank": { |
| 14 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 15 | "description": "The bank number of the memory associated with the error.", |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 16 | "oneOf": [ |
| 17 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 18 | "$id": "cper-json-bank0", |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 19 | "type": "object", |
Ed Tanous | 7a531ff | 2025-03-14 17:06:49 -0700 | [diff] [blame^] | 20 | "additionalProperties": false, |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 21 | "required": ["value"], |
| 22 | "properties": { |
| 23 | "value": { |
| 24 | "type": "integer" |
| 25 | } |
| 26 | } |
| 27 | }, |
| 28 | { |
Aushim Nagarkatti | 382ad4c | 2024-09-19 13:39:04 -0700 | [diff] [blame] | 29 | "$id": "cper-json-bank1", |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 30 | "type": "object", |
Ed Tanous | 7a531ff | 2025-03-14 17:06:49 -0700 | [diff] [blame^] | 31 | "additionalProperties": false, |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 32 | "required": ["address", "group"], |
| 33 | "properties": { |
| 34 | "address": { |
| 35 | "type": "integer" |
| 36 | }, |
| 37 | "group": { |
| 38 | "type": "integer" |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | ] |
| 43 | }, |
| 44 | "memoryErrorType": { |
| 45 | "type": "object", |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 46 | "description": "Identifies the type of error that occurred", |
Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame] | 47 | "$ref": "./common/cper-json-nvp.json" |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 48 | }, |
| 49 | "extended": { |
| 50 | "type": "object", |
Ed Tanous | 7a531ff | 2025-03-14 17:06:49 -0700 | [diff] [blame^] | 51 | "additionalProperties": false, |
Ed Tanous | da798dc | 2025-03-14 15:27:55 -0700 | [diff] [blame] | 52 | "required": ["rowBit16", "rowBit17"], |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 53 | "properties": { |
| 54 | "rowBit16": { |
| 55 | "type": "boolean" |
| 56 | }, |
| 57 | "rowBit17": { |
| 58 | "type": "boolean" |
| 59 | }, |
| 60 | "chipIdentification": { |
| 61 | "type": "integer" |
| 62 | } |
| 63 | } |
| 64 | }, |
| 65 | "physicalAddress": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 66 | "type": "integer", |
| 67 | "description": "The physical address at which the memory error occurred." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 68 | }, |
Aushim Nagarkatti | cc36701 | 2024-12-05 18:17:27 -0800 | [diff] [blame] | 69 | "physicalAddressHex": { |
| 70 | "type": "string" |
| 71 | }, |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 72 | "physicalAddressMask": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 73 | "type": "integer", |
| 74 | "description": "Defines the valid address bits in the Physical Address field. The mask specifies the granularity of the physical address." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 75 | }, |
| 76 | "node": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 77 | "type": "integer", |
| 78 | "description": "In a multi-node system, this value identifies the node containing the memory in error." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 79 | }, |
| 80 | "card": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 81 | "type": "integer", |
| 82 | "description": "The card number of the memory error location." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 83 | }, |
| 84 | "moduleRank": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 85 | "type": "integer", |
| 86 | "description": "The module or rank number of the memory error location." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 87 | }, |
| 88 | "device": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 89 | "type": "integer", |
| 90 | "description": "The device number of the memory associated with the error." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 91 | }, |
| 92 | "row": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 93 | "type": "integer", |
| 94 | "description": "The row number of the memory error location." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 95 | }, |
| 96 | "column": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 97 | "type": "integer", |
| 98 | "description": "The column number of the memory error location." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 99 | }, |
| 100 | "bitPosition": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 101 | "type": "integer", |
| 102 | "description": "The bit position at which the memory error occurred." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 103 | }, |
| 104 | "requestorID": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 105 | "type": "integer", |
| 106 | "description": "Hardware address of the device that initiated the transaction that took the error." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 107 | }, |
| 108 | "responderID": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 109 | "type": "integer", |
| 110 | "description": "Hardware address of the device that responded to the transaction." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 111 | }, |
| 112 | "targetID": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 113 | "type": "integer", |
| 114 | "description": "Hardware address of the intended target of the transaction." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 115 | }, |
| 116 | "rankNumber": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 117 | "type": "integer", |
| 118 | "description": "The Rank number of the memory error location." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 119 | }, |
| 120 | "cardSmbiosHandle": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 121 | "type": "integer", |
| 122 | "description": "This field contains the SMBIOS handle for the Type 16 Memory Array Structure that represents the memory card." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 123 | }, |
| 124 | "moduleSmbiosHandle": { |
Andrew Adriance | d9835a1 | 2024-12-05 14:41:42 -0800 | [diff] [blame] | 125 | "type": "integer", |
| 126 | "description": "This field contains the SMBIOS handle for the Type 17 Memory Device Structure that represents the Memory Module." |
Lawrence Tang | 079d581 | 2022-07-12 14:15:32 +0100 | [diff] [blame] | 127 | } |
| 128 | } |
John Chung | 044afd0 | 2024-05-03 19:58:02 +0800 | [diff] [blame] | 129 | } |