summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/dimm_spd_attributes.xml
blob: 3b7f8aa5229621942667864defebf4d1e49a0f49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
<!-- IBM_PROLOG_BEGIN_TAG                                                   -->
<!-- This is an automatically generated prolog.                             -->
<!--                                                                        -->
<!-- $Source: src/usr/hwpf/hwp/dimm_spd_attributes.xml $                    -->
<!--                                                                        -->
<!-- IBM CONFIDENTIAL                                                       -->
<!--                                                                        -->
<!-- COPYRIGHT International Business Machines Corp. 2012,2013              -->
<!--                                                                        -->
<!-- p1                                                                     -->
<!--                                                                        -->
<!-- Object Code Only (OCO) source materials                                -->
<!-- Licensed Internal Code Source Materials                                -->
<!-- IBM HostBoot Licensed Internal Code                                    -->
<!--                                                                        -->
<!-- The source code for this program is not published or otherwise         -->
<!-- divested of its trade secrets, irrespective of what has been           -->
<!-- deposited with the U.S. Copyright Office.                              -->
<!--                                                                        -->
<!-- Origin: 30                                                             -->
<!--                                                                        -->
<!-- IBM_PROLOG_END_TAG                                                     -->
  <!-- $Id: dimm_spd_attributes.xml,v 1.21 2013/06/14 18:51:49 mjjones Exp $ -->
<!-- XML file specifying DIMM SPD attributes used by HW Procedures. -->
<attributes>

<!--
The following attributes can be queried from both DDR3 and DDR4 DIMMs
-->

<attribute>
    <id>ATTR_SPD_DRAM_DEVICE_TYPE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        DRAM Device Type.
        Located in DDR3/DDR4 SPD byte 2.
    </description>
    <valueType>uint8</valueType>
    <enum>DDR3 = 0x0b, DDR4 = 0x0c</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_TYPE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module Type.
        Located in DDR3/DDR4 SPD byte 3, bits 3-0.
        Note that CDIMM designation here is obsolete.  See ATTR_SPD_CUSTOM
    </description>
    <valueType>uint8</valueType>
    <enum>CDIMM = 0x00, RDIMM = 0x01, UDIMM = 0x02, SO_DIMM=0x03, LRDIMM = 0x0b</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_CUSTOM</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module Type is CUSTOM
        Located in DDR3/DDR4 SPD byte 3, bit 7. (Most significant bit)
        If bit 7 (reserved) is a '1' then this attribute value should be set to YES
    </description>
    <valueType>uint8</valueType>
    <enum>NO = 0x0, YES = 0x1</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_DENSITY</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        DRAM Density.
        Located in DDR3/DDR4 SPD byte 4, bits 3-0.
    </description>
    <valueType>uint8</valueType>
    <enum>
        D256MB = 0x00, D512Mb = 0x01, D1GB = 0x02, D2GB = 0x03, D4GB = 0x04,
        D8GB = 0x05, D16GB = 0x06, D32GB=0x07
    </enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_ROWS</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Number of Rows.
        Located in DDR3/DDR4 SPD byte 5, bits 5-3.
    </description>
    <valueType>uint8</valueType>
    <enum>R12 = 0x00, R13 = 0x01, R14 = 0x02, R15 = 0x03, 
          R16 = 0x04, R17 = 0x05, R18 = 0x06
    </enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_COLUMNS</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Number of Columns.
        Located in DDR3/DDR4 SPD byte 5, bits 2-0.
    </description>
    <valueType>uint8</valueType>
    <enum>C9 = 0x00, C10 = 0x01, C11 = 0x02, C12 = 0x03</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_NUM_RANKS</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Number of ranks.
        Located in DDR3 SPD byte 7, bits 5-3.
        Located in DDR4 SPD byte 12, bits 5-3.
    </description>
    <valueType>uint8</valueType>
    <enum>R1 = 0x00, R2 = 0x01, R3 = 0x02, R4 = 0x03</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_DRAM_WIDTH</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        DRAM Width.
        Located in DDR3 SPD byte 7, bits 2-0.
        Located in DDR4 SPD byte 12, bits 2-0.
    </description>
    <valueType>uint8</valueType>
    <enum>W4 = 0x00, W8 = 0x01, W16 = 0x02, W32 = 0x03</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_MEMORY_BUS_WIDTH</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module Memory Bus Width.
        Located in DDR3 SPD byte 8, bits 4-0
        Located in DDR4 SPD byte 13, bits 4-0.
           Bits 4-3 contain the Bus Width Extension (ECC)
           Bits 2-0 contain the Primary Bus Width
    </description>
    <valueType>uint8</valueType>
    <enum>
        W8 = 0x00, W16 = 0x01, W32 = 0x02, W64 = 0x03,
        WE8 = 0x08, WE16 = 0x09, WE32 = 0x0a, WE64 = 0x0b
    </enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TCKMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum cycle time (tCKmin).
        Located in DDR3 SPD byte 12.
        Located in DDR4 SPD byte 18.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TAAMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum CAS Latency Time (tAAmin).
        Located in DDR3 SPD byte 16.
        Located in DDR4 SPD byte 24.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRCDMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum RAS# to CAS# Delay Time (tRCDmin).
        Located in DDR3 SPD byte 18.
        Located in DDR4 SPD byte 25.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRPMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Row Precharge Delay Time (tRPmin).
        Located in DDR3 SPD byte 20.
        Located in DDR4 SPD byte 26.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRASMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Active to Precharge Delay Time (tRASmin).
        Located in DDR3 SPD byte 21, bits 3-0 and byte 22 (LSB).
        Located in DDR4 SPD byte 27, bits 3-0 and byte 28 (LSB)
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRCMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Active to Active/Refresh Delay Time (tRCmin).
        Located in DDR3 SPD byte 21, bits 7-4 and byte 23 (LSB).
        Located in DDR4 SPD byte 27, bits 7-4 and byte 29 (LSB)
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TFAWMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Four Activate Window Delay Time (tFAWmin).
        Located in DDR3 SPD byte 28, bits 3-0 and byte 29 (LSB).
        Located in DDR4 SPD byte 36, bits 3-0 and byte 37 (LSB).
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_OPTIONAL_FEATURES</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        SDRAM Optional Features (bitmap).
        Located in DDR3 SPD byte 30.
        Located in DDR4 SPD byte 7, will be reserved and set to 0x0.
    </description>
    <valueType>uint8</valueType>
    <enum>DLL_OFF = 0x80, RZQ7 = 0x02, RZQ6 = 0x01</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_THERMAL_AND_REFRESH_OPTIONS</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        SDRAM Thermal and Refresh Options (bitmap).
        Located in DDR3 SPD byte 31.
        Located in DDR4 SPD byte 8, will be reserved and set to 0x0.
    </description>
    <valueType>uint8</valueType>
    <enum>PASR = 0x80, ODTS = 0x08, ASR = 0x05, ETRR = 0x02, ETR = 0x01</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_THERMAL_SENSOR</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module Thermal Sensor.
        Located in DDR3 SPD byte 32.
        Located in DDR4 SPD byte 14.
    </description>
    <valueType>uint8</valueType>
    <enum>PRESENT = 0x80, ACCURACY_MASK = 0x7F</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_DEVICE_TYPE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        SDRAM Device Type.
        Located in DDR3 SPD byte 33, bit 7.
        Located in DDR4 SPD byte 6, bit 7.
    </description>
    <valueType>uint8</valueType>
    <enum>STANDARD_MONOLITHIC = 0x00, NON_STANDARD = 0x01</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_DEVICE_TYPE_SIGNAL_LOADING</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        SDRAM Device Type Signal Loading for stacked DRAMs.
        Located in DDR3 SPD byte 33, bits 1-0.
        Located in DDR4 SPD byte 6, bit 1-0.
    </description>
    <valueType>uint8</valueType>
    <enum>NOT_SPECIFIED = 0x00, MULTI_LOAD_STACK = 0x01, SINGLE_LOAD_STACK = 0x02</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_DIE_COUNT</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        SDRAM Device Type Die Count.
        Located in DDR3 SPD byte 33, bits 6-4.
        Located in DDR4 SPD byte 6, bit 6-4.
    </description>
    <valueType>uint8</valueType>
    <enum>DIE1 = 0x00, DIE2 = 0x01, DIE4 = 0x02, DIE8 = 0x03</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TCKMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Offset for SDRAM Minimum Cycle Time (tCKmin).
        Located in DDR3 SPD byte 34.
        Located in DDR4 SPD byte 125.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TAAMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Offset for Minimum CAS Latency Time (tAAmin).
        Located in DDR3 SPD byte 35.
        Located in DDR4 SPD byte 123.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TRCDMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Offset for Minimum RAS# to CAS# Delay Time (tRCDmin).
        Located in DDR3 SPD byte 36.
        Located in DDR4 SPD byte 122.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TRPMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Offset for Minimum Row Precharge Delay Time (tRPmin).
        Located in DDR3 SPD byte 37.
        Located in DDR4 SPD byte 121.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TRCMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Offset for Minimum Active to Active/Refresh Delay Time (tRCmin).
        Located in DDR3 SPD byte 38.
        Located in DDR4 SPD byte 120.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_NUM_OF_REGISTERS_USED_ON_RDIMM</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Number of Registers used on RDIMM.
        Located in DDR3 SPD byte 63 bits 1-0.
    </description> 
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_SPECIFIC_SECTION</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module Specific Section.
        Located in DDR3 SPD bytes 60d - 116d.
        Located in DDR4 SPD bytes 128 - 255d.
    </description>
    <valueType>uint8</valueType>
    <array>57</array>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_ID_MODULE_MANUFACTURERS_JEDEC_ID_CODE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module ID: Module Manufacturer's JEDEC ID Code.
        Located in DDR3 SPD bytes 117 (LSB) to 118.
        Located in DDR4 SPD bytes 320 (LSB) to 321.
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_ID_MODULE_MANUFACTURING_LOCATION</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module ID: Module Manufacturing Location.
        Located in DDR3 SPD byte 119.
        Located in DDR4 SPD byte 322.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_ID_MODULE_MANUFACTURING_DATE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module ID: Module Manufacturing Date.
        Located in DDR3 SPD bytes 120 (BCD year) to byte 121 (BCD week) (LSB).
        Located in DDR4 SPD bytes 323 (BCD year) to byte 324 (BCD week) (LSB).
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_ID_MODULE_SERIAL_NUMBER</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module ID: Module Serial Number.
        Located in DDR3 SPD bytes 122 (LSB) to 125.
        Located in DDR4 SPD bytes 325 (LSB) to 328.
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_CYCLICAL_REDUNDANCY_CODE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Cyclical Redundancy Code.
        Located in DDR3 SPD bytes 126 (LSB) to 127.
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_PART_NUMBER</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module Part Number.
        Located in DDR3 SPD bytes 128 - 145.
        Located in DDR4 SPD bytes 329 - 348.
    </description>
    <valueType>uint8</valueType>
    <array>18</array>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_REVISION_CODE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Module Revision Code.
        Located in DDR3 SPD bytes 146 (LSB) to 147.
        Located in DDR4 SPD bytes 349 
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_DRAM_MANUFACTURER_JEDEC_ID_CODE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        DRAM Manufacturer JEDEC ID Code.
        Located in DDR3 SPD bytes 148 (LSB) to 149.
        Located in DDR4 SPD bytes 350 (LSB) to 351.
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_BAD_DQ_DATA</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Bad DQ pin data stored in DIMM SPD. This data is in a special format.
        This must only be called by a firmware HWP that knows how to decode the data.       
        HWP/PLAT firmware that needs to get/set the Bad DQ Bitmap from a Centaur
        DQ point of view must call the dimmBadDqBitmapAccessHwp HWP.
    </description>
    <valueType>uint8</valueType>
    <array>80</array>
    <platInit/>
    <writeable/>
</attribute>

<!--
The following attributes can be queried from DDR3 DIMMs only
Querying them from DDR4 DIMMs will result in an error
-->

<attribute>
    <id>ATTR_SPD_SDRAM_BANKS</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Number of banks.
        Located in DDR3 SPD byte 4, bits 6-4.
    </description>
    <valueType>uint8</valueType>
    <enum>B8 = 0x00, B16 = 0x01, B32 = 0x02, B64 = 0x03</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_NOMINAL_VOLTAGE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Nominal voltage (bitmap).
        Located in DDR3 SPD byte 6, bits 2-0.
    </description>
    <valueType>uint8</valueType>
    <enum>NOTOP1_5 = 0x01, OP1_35 = 0x02, OP1_2X = 0x04</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FTB_DIVIDEND</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Timebase Dividend.
        Located in DDR3 SPD byte 9, bits 7-4.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FTB_DIVISOR</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Timebase Divisor.
        Located in DDR3 SPD byte 9, bits 3-0.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MTB_DIVIDEND</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Medium Timebase Dividend.
        Located in DDR3 SPD byte 10.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MTB_DIVISOR</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Medium Timebase Divisor.
        Located in DDR3 SPD byte 11.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_CAS_LATENCIES_SUPPORTED</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        CAS Latencies supported (bitmap).
        Located in DDR3 SPD byte 14 (LSB) and byte 15.
    </description>
    <valueType>uint32</valueType>
    <enum>
        CL_18 = 0x00004000,
        CL_17 = 0x00002000,
        CL_16 = 0x00001000,
        CL_15 = 0x00000800,
        CL_14 = 0x00000400,
        CL_13 = 0x00000200,
        CL_12 = 0x00000100,
        CL_11 = 0x00000080,
        CL_10 = 0x00000040,
        CL_9  = 0x00000020,
        CL_8  = 0x00000010,
        CL_7  = 0x00000008,
        CL_6  = 0x00000004,
        CL_5  = 0x00000002,
        CL_4  = 0x00000001
    </enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TWRMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Write Recovery Time (tWRmin).
        Located in DDR3 SPD byte 17.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRRDMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Row Active to Row Active Delay Time (tRRDmin).
        Located in DDR3 SPD byte 19.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRFCMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Refresh Recovery Delay Time (tRFCmin).
        Located in DDR3 SPD byte 24 (LSB) and byte 25.
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TWTRMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Internal Write to Read Command Delay Time (tWTRmin).
        Located in DDR3 SPD byte 26.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRTPMIN</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum Internal Read to Precharge Command Delay Time (tRTPmin).
        Located in DDR3 SPD byte 27.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_ADDR_MIRRORING</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced address mirroring attribute.
        Located in DDR3 SPD byte 63 bits 1-0.
    </description>
    <valueType>uint8</valueType>
    <enum>
        NO_RANKS = 0x00,
        ODD_RANKS = 0x01
    </enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F0RC3_F0RC2</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F0RC3/F0RC2.
        Timing control AND Drive strength, Address/Command AND QxCS_n
        Located in DDR3 SPD byte 67.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F0RC5_F0RC4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F0RC5/F0RC4.
        Drive strength, QxODT AND QxCKE and Clock.
        Located in DDR3 SPD byte 68.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F1RC11_F1RC8</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F1RC11/F1RC8.
        Extended delay for clocks, QxCS_n and QxODT AND QxCKE.
        Located in DDR3 SPD byte 69.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F1RC13_F1RC12</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F1RC13/F1RC12.
        Additive delay for QxCS_n and QxCA.
        Located in DDR3 SPD byte 70.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F1RC15_F1RC14</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F1RC15/F1RC14.
        Additive delay for QxODT and QxCKE.
        Located in DDR3 SPD byte 71.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F3RC9_F3RC8_FOR_800_1066</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F3RC9/F3RC8 for 800 AND 1066.
        DRAM interface MDQ Termination and Drive strength.
        Located in DDR3 SPD byte 72.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F34RC11_F34RC10_FOR_800_1066</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[3,4]RC11/F[3,4]RC10 for 800 AND 1066.
        Rank 0AND1 Read and Write QxODT control.
        Located in DDR3 SPD byte 73.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F56RC11_F56RC10_FOR_800_1066</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[5,6]RC11/F[5,6]RC10 for 800 AND 1066.
        Rank 2AND3 Read and Write QxODT control.
        Located in DDR3 SPD byte 74.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F78RC11_F78RC10_FOR_800_1066</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[7,8]RC11/F[7,8]RC10 for 800 AND 1066.
        Rank 4AND5 Read and Write QxODT control.
        Located in DDR3 SPD byte 75.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F910RC11_F910RC10_FOR_800_1066</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[9,10]RC11/F[9,10]RC10 for 800 AND 1066.
        Rank 6AND7 Read and Write QxODT control.
        Located in DDR3 SPD byte 76.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_MR12_FOR_800_1066</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced MR1,2 registers for 800 AND 1066.
        DRAM Rtt_WR for all ranks, DRAM Rtt_Nom for ranks 0 and 1, DRAM driver impedance for all ranks.
        Located in DDR3 SPD byte 77.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F3RC9_F3RC8_FOR_1333_1600</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F3RC9/F3RC8 for 1333 AND 1600.
        DRAM interface MDQ Termination and Drive strength.
        Located in DDR3 SPD byte 78.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F34RC11_F34RC10_FOR_1333_1600</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[3,4]RC11/F[3,4]RC10 for 1333 AND 1600.
        Rank 0AND1 Read and Write QxODT control.
        Located in DDR3 SPD byte 79.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F56RC11_F56RC10_FOR_1333_1600</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[5,6]RC11/F[5,6]RC10 for 1333 AND 1600.
        Rank 2AND3 Read and Write QxODT control.
        Located in DDR3 SPD byte 80.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F78RC11_F78RC10_FOR_1333_1600</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[7,8]RC11/F[7,8]RC10 for 1333 AND 1600.
        Rank 4AND5 Read and Write QxODT control.
        Located in DDR3 SPD byte 81.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F910RC11_F910RC10_FOR_1333_1600</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[9,10]RC11/F[9,10]RC10 for 1333 AND 1600.
        Rank 6AND7 Read and Write QxODT control.
        Located in DDR3 SPD byte 82.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_MR12_FOR_1333_1600</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced MR1,2 registers for 1333 AND 1600.
        DRAM Rtt_WR for all ranks, DRAM Rtt_Nom for ranks 0 and 1, DRAM driver impedance for all ranks.
        Located in DDR3 SPD byte 83.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F3RC9_F3RC8_FOR_1866_2133</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F3RC9/F3RC8 for 1866 AND 2133.
        DRAM interface MDQ Termination and Drive strength.
        Located in DDR3 SPD byte 84.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F34RC11_F34RC10_FOR_1866_2133</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[3,4]RC11/F[3,4]RC10 for 1866 AND 2133.
        Rank 0AND1 Read and Write QxODT control.
        Located in DDR3 SPD byte 85.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F56RC11_F56RC10_FOR_1866_2133</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[5,6]RC11/F[5,6]RC10 for 1866 AND 2133.
        Rank 2AND3 Read and Write QxODT control.
        Located in DDR3 SPD byte 86.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F78RC11_F78RC10_FOR_1866_2133</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[7,8]RC11/F[7,8]RC10 for 1866 AND 2133.
        Rank 4AND5 Read and Write QxODT control.
        Located in DDR3 SPD byte 87.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_F910RC11_F910RC10_FOR_1866_2133</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced F[9,10]RC11/F[9,10]RC10 for 1866 AND 2133.
        Rank 6AND7 Read and Write QxODT control.
        Located in DDR3 SPD byte 88.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_LR_MR12_FOR_1866_2133</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Load Reduced MR1,2 registers for 1866 AND 2133.
        DRAM Rtt_WR for all ranks, DRAM Rtt_Nom for ranks 0 and 1, DRAM driver impedance for all ranks.
        Located in DDR3 SPD byte 89.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<!--
The following attributes can be queried from DDR4 DIMMs only
Querying them from DDR3 DIMMs will result in an error
-->
<attribute>
    <id>ATTR_SPD_SDRAM_BANKGROUPS_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Number of bank groups.
        Located in DDR4 SPD byte 4, bits 7-6.
    </description>
    <valueType>uint8</valueType>
    <enum>BG0 = 0x00, BG2 = 0x01, BG4 = 0x02</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_SDRAM_BANKS_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Number of banks.
        Located in DDR4 SPD byte 4, bits 5-4.
    </description>
    <valueType>uint8</valueType>
    <enum>B4 = 0x00, B8 = 0x01</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_MODULE_NOMINAL_VOLTAGE_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Nominal voltage (bitmap).
        Located in DDR4 SPD byte 11, bits 5-0.
    </description>
    <valueType>uint8</valueType>
    <enum>
        OP1_2V = 0x01, END1_2V = 0x02,
        OPTBD1V = 0x04, ENDTBD1V = 0x08,
        OPTBD2V = 0x10, ENDTBD2V = 0x20
    </enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TIMEBASE_MTB_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        defines a value in picoseconds that represents the fundamental timebase
        for medium grain timing calculations. This value is used as a multiplier
        for formulating subsequent timing parameters.
        Located in DDR4 SPD byte 17, bits 3-2.
    </description>
    <valueType>uint8</valueType>
    <enum>PS125 = 0x00</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TIMEBASE_FTB_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        defines a value in picoseconds that represents the fundamental timebase
        for fine grain timing calculations. This value is used as a multiplier
        for formulating subsequent timing parameters.
        Located in DDR4 SPD byte 17, bits 1-0.
    </description>
    <valueType>uint8</valueType>
    <enum>PS1 = 0x00</enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TCKMAX_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Maximum cycle time (tCKmax).
        Located in DDR4 SPD byte 19.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_CAS_LATENCIES_SUPPORTED_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        CAS Latencies supported (bitmap).
        Located in DDR4 SPD byte 20 (LSB) through byte 23.
    </description>
    <valueType>uint32</valueType>
    <enum>
        CL_24 = 0x00020000,
        CL_23 = 0x00010000,
        CL_22 = 0x00008000,
        CL_21 = 0x00004000,
        CL_20 = 0x00002000,
        CL_19 = 0x00001000,
        CL_18 = 0x00000800,
        CL_17 = 0x00000400,
        CL_16 = 0x00000200,
        CL_15 = 0x00000100,
        CL_14 = 0x00000080,
        CL_13 = 0x00000040,
        CL_12 = 0x00000020,
        CL_11 = 0x00000010,
        CL_10 = 0x00000008,
        CL_9  = 0x00000004,
        CL_8  = 0x00000002,
        CL_7  = 0x00000001
    </enum>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRFC1MIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum SDRAM Refresh Recovery Time Delay in medium timebase (MTB) units
        Located in DDR4 SPD bytes 30(MSB) and 31(LSB).
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRFC2MIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum SDRAM Refresh Recovery Time Delay in medium timebase (MTB) units
        Located in DDR4 SPD bytes 32(MSB) and 33(LSB).
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRFC4MIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Minimum SDRAM Refresh Recovery Time Dealy in medium timebase (MTB) units.
        Located in DDR4 SPD byte 34(LSB) bits 15-8 and SPD byte 35(MSB) 7-0.
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRRDSMIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        The minimum SDRAM Activate to Activate Delay Time to different bank 
        groups in medium timebase (MTB) units. Controller designers must also 
        note that at some frequencies, a minimum number of clocks may be required
        resulting in a larger tRRD_Smin value than indicated in the SPD. 
        For example, tRRD_Smin for DDR4-1600 must be 4 clocks.
        Located in DDR4 SPD byte 38
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TRRDLMIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        The minimum SDRAM Activate to Activate Delay Time to same  bank 
        groups in medium timebase (MTB) units. Controller designers must also 
        note that at some frequencies, a minimum number of clocks may be required
        resulting in a larger tRRD_Smin value than indicated in the SPD. 
        For example, tRRD_Lmin for DDR4-1600 must be 4 clocks.
        Located in DDR4 SPD byte 39
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_TCCDLMIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        The minimum SDRAM CAS to CAS Delay Time to same  bank 
        groups in medium timebase (MTB) units. Controller designers must also 
        note that at some frequencies, a minimum number of clocks may be required
        resulting in a larger tCCD_Lmin value than indicated in the SPD. 
        For example, tCCD_Lmin for DDR4-2133 must be 6 clocks.
        Located in DDR4 SPD byte 40 
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TCCDLMIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Modifies the calculation of SPD Byte 40 with a fine correction 
        using FTB units. The value of tCCD_Lmin comes from the SDRAM data 
        sheet. This value is a two.s complement multiplier for FTB units, 
        ranging from +127 to -128.
        Located in DDR4 SPD byte 117 
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TRRDLMIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Modifies the calculation of SPD Byte 39 with a fine correction using 
        FTB units. The value of tRRD_Lmin comes from the SDRAM data sheet. 
        This value is a two.s complement multiplier for FTB units, 
        ranging from +127 to -128.
        Located in DDR4 SPD byte 118 
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TRRDSMIN_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Modifies the calculation of SPD Byte 38 (MTB units) with a fine 
        correction using FTB units. The value of tRRD_Smin comes from the 
        SDRAM data sheet. This value is a two.s complement multiplier for 
        FTB units, ranging from +127 to -128.
        Located in DDR4 SPD byte 119 
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_FINE_OFFSET_TCKMAX_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Fine Offset for SDRAM Minimum Cycle Time (tCKAVGmax).
        Located in DDR4 SPD byte 124.
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_CRC_BASE_CONFIG_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        contains the calculated CRC for bytes 0~125 (0x000~0x07D) in the SPD
        Located in DDR4 SPD byte 126(LSB) and 127(MSB).
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_DRAM_STEPPING_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        Defines the vendor die revision level (often called the .stepping.)
        of the DRAMs on the module. This byte is optional. 
        For modules without DRAM stepping information, this byte should
        be programmed to 0xFF.
        Located in DDR4 SPD byte 352
    </description>
    <valueType>uint8</valueType>
    <platInit/>
</attribute>

<attribute>
    <id>ATTR_SPD_CRC_MNFG_SEC_DDR4</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        contains the calculated CRC for bytes 320~381 (0x140~0x17D) in the SPD
        Located in DDR4 SPD byte 382(LSB) and 383(MSB).
    </description>
    <valueType>uint32</valueType>
    <platInit/>
</attribute>

<!-- Not yet supported by firmware
<attribute>
    <id>ATTR_VPD_VERSION</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        The VPD Version of this DIMM.  The version number can be an indication of when different DIMM keywords are valid and is loaded from the platform.  A version number of zero is unknown.
    </description>
    <valueType>uint32</valueType>
    <platInit/>
    <writeable/>
</attribute>
-->

<!--
The following attributes are from Centaur VPD. Consider moving them from this
file
-->

<attribute>
    <id>ATTR_VPD_DRAM_ADDRESS_MIRRORING</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        The C-DIMM ranks that have address mirroring.
        This data is in the Record:VSPD, Keyword:AM field in C-DIMM VPD.
        This attribute is only valid for C-DIMMs, an error should be returned if queried from IS-DIMMs.
    Note: Muliple ranks can be mirrored.
    </description>
    <valueType>uint8</valueType>
    <enum>
        RANK0_MIRRORED = 0x08,
        RANK1_MIRRORED = 0x04,
        RANK2_MIRRORED = 0x02,
        RANK3_MIRRORED = 0x01
    </enum>
    <platInit/>
</attribute>

<!-- Not yet supported by firmware
<attribute>
    <id>ATTR_VPD_DRAM_2N_MODE</id>
    <targetType>TARGET_TYPE_DIMM</targetType>
    <description>
        The 2N/2T characteristic of the DIMM from the MT keyword.  If the memory controller needs to run on 2N mode, the address is presented for two cycles.  By default, 2N should be set to INVALID until the platform initializes it..
    </description>
    <valueType>uint8</valueType>
    <enum>INVALID = 0x00, 1N = 0x01, 2N = 0x02</enum>
    <array>2</array>
    <platInit/>
    <writeable/>
</attribute>
-->

</attributes>
OpenPOWER on IntegriCloud