blob: 037ca266594057b6f67919652535730305186909 [file] [log] [blame]
Lawrence Tang079d5812022-07-12 14:15:32 +01001{
Lawrence Tang079d5812022-07-12 14:15:32 +01002 "$schema": "https://json-schema.org/draft/2020-12/schema",
3 "type": "object",
Ed Tanousda798dc2025-03-14 15:27:55 -07004 "description": "Memory Error Section",
Aushim Nagarkatti517282f2025-03-03 17:08:31 -08005 "required": [],
Lawrence Tang079d5812022-07-12 14:15:32 +01006 "additionalProperties": false,
7 "properties": {
Lawrence Tang079d5812022-07-12 14:15:32 +01008 "errorStatus": {
9 "type": "object",
Andrew Adrianced9835a12024-12-05 14:41:42 -080010 "description": "Memory error status information.",
Lawrence Tang8a2d7372022-07-12 16:44:49 +010011 "$ref": "./common/cper-json-error-status.json"
Lawrence Tang079d5812022-07-12 14:15:32 +010012 },
13 "bank": {
14 "type": "object",
Andrew Adrianced9835a12024-12-05 14:41:42 -080015 "description": "The bank number of the memory associated with the error.",
Lawrence Tang079d5812022-07-12 14:15:32 +010016 "oneOf": [
17 {
Aushim Nagarkatti382ad4c2024-09-19 13:39:04 -070018 "$id": "cper-json-bank0",
Lawrence Tang079d5812022-07-12 14:15:32 +010019 "type": "object",
Ed Tanous7a531ff2025-03-14 17:06:49 -070020 "additionalProperties": false,
Lawrence Tang079d5812022-07-12 14:15:32 +010021 "required": ["value"],
22 "properties": {
23 "value": {
24 "type": "integer"
25 }
26 }
27 },
28 {
Aushim Nagarkatti382ad4c2024-09-19 13:39:04 -070029 "$id": "cper-json-bank1",
Lawrence Tang079d5812022-07-12 14:15:32 +010030 "type": "object",
Ed Tanous7a531ff2025-03-14 17:06:49 -070031 "additionalProperties": false,
Lawrence Tang079d5812022-07-12 14:15:32 +010032 "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 Adrianced9835a12024-12-05 14:41:42 -080046 "description": "Identifies the type of error that occurred",
Lawrence Tang8a2d7372022-07-12 16:44:49 +010047 "$ref": "./common/cper-json-nvp.json"
Lawrence Tang079d5812022-07-12 14:15:32 +010048 },
49 "extended": {
50 "type": "object",
Ed Tanous7a531ff2025-03-14 17:06:49 -070051 "additionalProperties": false,
Ed Tanousda798dc2025-03-14 15:27:55 -070052 "required": ["rowBit16", "rowBit17"],
Lawrence Tang079d5812022-07-12 14:15:32 +010053 "properties": {
54 "rowBit16": {
55 "type": "boolean"
56 },
57 "rowBit17": {
58 "type": "boolean"
59 },
60 "chipIdentification": {
61 "type": "integer"
62 }
63 }
64 },
65 "physicalAddress": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080066 "type": "integer",
67 "description": "The physical address at which the memory error occurred."
Lawrence Tang079d5812022-07-12 14:15:32 +010068 },
Aushim Nagarkatticc367012024-12-05 18:17:27 -080069 "physicalAddressHex": {
70 "type": "string"
71 },
Lawrence Tang079d5812022-07-12 14:15:32 +010072 "physicalAddressMask": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080073 "type": "integer",
74 "description": "Defines the valid address bits in the Physical Address field. The mask specifies the granularity of the physical address."
Lawrence Tang079d5812022-07-12 14:15:32 +010075 },
76 "node": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080077 "type": "integer",
78 "description": "In a multi-node system, this value identifies the node containing the memory in error."
Lawrence Tang079d5812022-07-12 14:15:32 +010079 },
80 "card": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080081 "type": "integer",
82 "description": "The card number of the memory error location."
Lawrence Tang079d5812022-07-12 14:15:32 +010083 },
84 "moduleRank": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080085 "type": "integer",
86 "description": "The module or rank number of the memory error location."
Lawrence Tang079d5812022-07-12 14:15:32 +010087 },
88 "device": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080089 "type": "integer",
90 "description": "The device number of the memory associated with the error."
Lawrence Tang079d5812022-07-12 14:15:32 +010091 },
92 "row": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080093 "type": "integer",
94 "description": "The row number of the memory error location."
Lawrence Tang079d5812022-07-12 14:15:32 +010095 },
96 "column": {
Andrew Adrianced9835a12024-12-05 14:41:42 -080097 "type": "integer",
98 "description": "The column number of the memory error location."
Lawrence Tang079d5812022-07-12 14:15:32 +010099 },
100 "bitPosition": {
Andrew Adrianced9835a12024-12-05 14:41:42 -0800101 "type": "integer",
102 "description": "The bit position at which the memory error occurred."
Lawrence Tang079d5812022-07-12 14:15:32 +0100103 },
104 "requestorID": {
Andrew Adrianced9835a12024-12-05 14:41:42 -0800105 "type": "integer",
106 "description": "Hardware address of the device that initiated the transaction that took the error."
Lawrence Tang079d5812022-07-12 14:15:32 +0100107 },
108 "responderID": {
Andrew Adrianced9835a12024-12-05 14:41:42 -0800109 "type": "integer",
110 "description": "Hardware address of the device that responded to the transaction."
Lawrence Tang079d5812022-07-12 14:15:32 +0100111 },
112 "targetID": {
Andrew Adrianced9835a12024-12-05 14:41:42 -0800113 "type": "integer",
114 "description": "Hardware address of the intended target of the transaction."
Lawrence Tang079d5812022-07-12 14:15:32 +0100115 },
116 "rankNumber": {
Andrew Adrianced9835a12024-12-05 14:41:42 -0800117 "type": "integer",
118 "description": "The Rank number of the memory error location."
Lawrence Tang079d5812022-07-12 14:15:32 +0100119 },
120 "cardSmbiosHandle": {
Andrew Adrianced9835a12024-12-05 14:41:42 -0800121 "type": "integer",
122 "description": "This field contains the SMBIOS handle for the Type 16 Memory Array Structure that represents the memory card."
Lawrence Tang079d5812022-07-12 14:15:32 +0100123 },
124 "moduleSmbiosHandle": {
Andrew Adrianced9835a12024-12-05 14:41:42 -0800125 "type": "integer",
126 "description": "This field contains the SMBIOS handle for the Type 17 Memory Device Structure that represents the Memory Module."
Lawrence Tang079d5812022-07-12 14:15:32 +0100127 }
128 }
John Chung044afd02024-05-03 19:58:02 +0800129}