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
| /** @file
| GPIO definition table for KabylakeRvp3
|
| Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
| **/
|
| #ifndef _KABYLAKE_RVP3_SPD_TABLE_H_
| #define _KABYLAKE_RVP3_SPD_TABLE_H_
|
| //
| // DQByteMap[0] - ClkDQByteMap:
| // If clock is per rank, program to [0xFF, 0xFF]
| // If clock is shared by 2 ranks, program to [0xFF, 0] or [0, 0xFF]
| // If clock is shared by 2 ranks but does not go to all bytes,
| // Entry[i] defines which DQ bytes Group i services
| // DQByteMap[1] - CmdNDQByteMap: Entry[0] is CmdN/CAA and Entry[1] is CmdN/CAB
| // DQByteMap[2] - CmdSDQByteMap: Entry[0] is CmdS/CAA and Entry[1] is CmdS/CAB
| // DQByteMap[3] - CkeDQByteMap : Entry[0] is CKE /CAA and Entry[1] is CKE /CAB
| // For DDR, DQByteMap[3:1] = [0xFF, 0]
| // DQByteMap[4] - CtlDQByteMap : Always program to [0xFF, 0] since we have 1 CTL / rank
| // Variable only exists to make the code easier to use
| // DQByteMap[5] - CmdVDQByteMap: Always program to [0xFF, 0] since we have 1 CA Vref
| // Variable only exists to make the code easier to use
| //
| //
| // DQ byte mapping to CMD/CTL/CLK, from the CPU side - for SKL RVP3, SKL SDS - used by SKL/KBL MRC
| //
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 mDqByteMapSklRvp3[2][6][2] = {
| // Channel 0:
| {
| { 0x0F, 0xF0 }, // CLK0 goes to package 0 - Bytes[3:0], CLK1 goes to package 1 - Bytes[7:4]
| { 0x00, 0xF0 }, // CmdN does not have CAA, CAB goes to Bytes[7:4]
| { 0x0F, 0xF0 }, // CmdS CAA goes to Bytes[3:0], CmdS CAB goes to Byte[7:4]
| { 0x0F, 0x00 }, // CKE CAA goes to Bytes[3:0], CKE does not have CAB
| { 0xFF, 0x00 }, // CTL (CS) goes to all bytes
| { 0xFF, 0x00 } // CA Vref is one for all bytes
| },
| // Channel 1:
| {
| { 0x33, 0xCC }, // CLK0 goes to package 0 - Bytes[3:0], CLK1 goes to package 1 - Bytes[7:4]
| { 0x00, 0xCC }, // CmdN does not have CAA, CAB goes to Bytes[7:4]
| { 0x33, 0xCC }, // CmdS CAA goes to Bytes[3:0], CmdS CAB goes to Byte[7:4]
| { 0x33, 0x00 }, // CKE CAA goes to Bytes[3:0], CKE does not have CAB
| { 0xFF, 0x00 }, // CTL (CS) goes to all bytes
| { 0xFF, 0x00 } // CA Vref is one for all bytes
| }
| };
|
| //
| // DQS byte swizzling between CPU and DRAM - for SKL DOE RVP
| //
|
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 mDqsMapCpu2DramSklRvp3[2][8] = {
| { 0, 1, 3, 2, 4, 5, 6, 7 }, // Channel 0
| { 1, 0, 4, 5, 2, 3, 6, 7 } // Channel 1
| };
|
| // Samsung K4E6E304ED-EGCF 178b QDP LPDDR3, 4Gb die (256Mx16), x16
| // or Hynix H9CCNNNBLTALAR-NUD
| // or similar
| // 1867, 14-17-17-40
| // 2 ranks per channel, 2 SDRAMs per rank, 8x4Gb = 4GB total per channel
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 mSkylakeRvp16Spd[] = {
| 0x24, ///< 0 Number of Serial PD Bytes Written / SPD Device Size
| 0x20, ///< 1 SPD Revision
| 0x0F, ///< 2 DRAM Device Type
| 0x0E, ///< 3 Module Type
| 0x14, ///< 4 SDRAM Density and Banks: 8 Banks, 4 Gb SDRAM density
| 0x12, ///< 5 SDRAM Addressing: 14 Rows, 11 Columns
| 0xB5, ///< 6 SDRAM Package Type: QDP, 1 Channel per die, Signal Loading Matrix 1
| 0x00, ///< 7 SDRAM Optional Features
| 0x00, ///< 8 SDRAM Thermal and Refresh Options
| 0x00, ///< 9 Other SDRAM Optional Features
| 0x00, ///< 10 Reserved - must be coded as 0x00
| 0x03, ///< 11 Module Nominal Voltage, VDD
| 0x0A, ///< 12 Module Organization, SDRAM width: 16 bits, 2 Ranks
| 0x23, ///< 13 Module Memory Bus Width: 2 channels, 64 bit channel bus width
| 0x00, ///< 14 Module Thermal Sensor
| 0x00, ///< 15 Extended Module Type
| 0x00, ///< 16 Reserved - must be coded as 0x00
| 0x00, ///< 17 Timebases
| 0x09, ///< 18 SDRAM Minimum Cycle Time (tCKmin): tCKmin = 1.071ns (LPDDR3-1867)
| 0xFF, ///< 19 SDRAM Minimum Cycle Time (tCKmax)
| 0xD4, ///< 20 CAS Latencies Supported, First Byte (tCK): 14, 12, 10, 8
| 0x00, ///< 21 CAS Latencies Supported, Second Byte
| 0x00, ///< 22 CAS Latencies Supported, Third Byte
| 0x00, ///< 23 CAS Latencies Supported, Fourth Byte
| 0x78, ///< 24 Minimum CAS Latency Time (tAAmin) = 14.994 ns
| 0x00, ///< 25 Read and Write Latency Set Options
| 0x90, ///< 26 Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0xA8, ///< 27 Minimum Row Precharge Delay Time for all banks (tRPab)
| 0x90, ///< 28 Minimum Row Precharge Delay Time per bank (tRPpb)
| 0x10, ///< 29 Minimum Refresh Recovery Delay Time for all banks (tRFCab), Least Significant Byte
| 0x04, ///< 30 Minimum Refresh Recovery Delay Time for all banks (tRFCab), Most Significant Byte
| 0xE0, ///< 31 Minimum Refresh Recovery Delay Time for per bank (tRFCpb), Least Significant Byte
| 0x01, ///< 32 Minimum Refresh Recovery Delay Time for per bank (tRFCpb), Most Significant Byte
| 0, 0, 0, 0, 0, 0, 0, ///< 33 - 39
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 40 - 49
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 50 - 59
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 60 - 69 Connector to SDRAM Bit Mapping
| 0, 0, 0, 0, 0, 0, 0, 0, ///< 70 - 77 Connector to SDRAM Bit Mapping
| 0, 0, ///< 78 - 79
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 80 - 89
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 90 - 99
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 100 - 109
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 110 - 119
| 0x00, ///< 120 Fine Offset for Minimum Row Precharge Delay Time per bank (tRPpb)
| 0x00, ///< 121 Fine Offset for Minimum Row Precharge Delay Time for all banks (tRPab)
| 0x00, ///< 122 Fine Offset for Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0xFA, ///< 123 Fine Offset for Minimum CAS Latency Time (tAAmin): 14.994 ns (LPDDR3-1867)
| 0x7F, ///< 124 Fine Offset for SDRAM Minimum Cycle Time (tCKmax): 32.002 ns
| 0xCA, ///< 125 Fine Offset for SDRAM Minimum Cycle Time (tCKmin): 1.071 ns (LPDDR-1867)
| 0x00, ///< 126 CRC A
| 0x00, ///< 127 CRC B
| 0, 0, ///< 128 - 129
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 130 - 139
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 140 - 149
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 150 - 159
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 160 - 169
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 170 - 179
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 180 - 189
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 190 - 199
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 200 - 209
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 210 - 219
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 220 - 229
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 230 - 239
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 240 - 249
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 250 - 259
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 260 - 269
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 270 - 279
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 280 - 289
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 290 - 299
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 300 - 309
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 310 - 319
| 0x00, ///< 320 Module Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 321 Module Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 322 Module Manufacturing Location
| 0x00, ///< 323 Module Manufacturing Date Year
| 0x00, ///< 324 Module Manufacturing Date Week
| 0x55, ///< 325 Module Serial Number A
| 0x00, ///< 326 Module Serial Number B
| 0x00, ///< 327 Module Serial Number C
| 0x00, ///< 328 Module Serial Number D
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 329 - 333 Module Part Number: Unused bytes coded as ASCII Blanks (0x20)
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 334 - 338 Module Part Number
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 339 - 343 Module Part Number
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 344 - 348 Module Part Number
| 0x00, ///< 349 Module Revision Code
| 0x00, ///< 350 DRAM Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 351 DRAM Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 352 DRAM Stepping
| 0, 0, 0, 0, 0, 0, 0, ///< 353 - 359
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 360 - 369
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 370 - 379
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 380 - 389
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 390 - 399
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 400 - 409
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 410 - 419
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 420 - 429
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 430 - 439
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 440 - 449
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 450 - 459
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 460 - 469
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 470 - 479
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 480 - 489
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 490 - 499
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 500 - 509
| 0, 0 ///< 510 - 511
| };
|
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT16 mSkylakeRvp16SpdSize = sizeof (mSkylakeRvp16Spd);
|
| //Hynix H9CCNNNBJTMLAR-NUD, DDP, LPDDR3, 8Gb die
| //1867
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 mSkylakeRvp3Spd110[] = {
| 0x91, ///< 0 Number of Serial PD Bytes Written / SPD Device Size / CRC Coverage 1, 2
| 0x20, ///< 1 SPD Revision
| 0xF1, ///< 2 DRAM Device Type
| 0x03, ///< 3 Module Type
| 0x05, ///< 4 SDRAM Density and Banks, 8Gb
| 0x19, ///< 5 SDRAM Addressing: 15 Rows, 10 Columns
| 0x05, ///< 6 Module Nominal Voltage
| 0x0B, ///< 7 Module Organization: 32 bits, 2 Ranks
| 0x03, ///< 8 Module Memory Bus Width
| 0x11, ///< 9 Fine Timebase (FTB) Dividend / Divisor
| 0x01, ///< 10 Medium Timebase (MTB) Dividend
| 0x08, ///< 11 Medium Timebase (MTB) Divisor
| 0x09, ///< 12 SDRAM Minimum Cycle Time (tCKmin): tCKmin = 1.071 ns (LPDDR3-1867)
| 0x00, ///< 13 Reserved0
| 0x50, ///< 14 CAS Latencies supported (tCK): 14, 12, 10, 8 (LSB)
| 0x05, ///< 15 CAS Latencies supported (tCK): 14, 12, 10, 8 (LSB)
| 0x78, ///< 16 Minimum CAS Latency (tAAmin) = 14.994 ns
| 0x78, ///< 17 Minimum Write Recovery Time (tWRmin)
| 0x90, ///< 18 Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0x50, ///< 19 Minimum Row Active to Row Active Delay Time (tRRDmin)
| 0x90, ///< 20 Minimum Row Precharge Delay Time (tRPmin)
| 0x11, ///< 21 Upper Nibbles for tRAS and tRC
| 0x50, ///< 22 Minimum Active to Precharge Delay Time (tRASmin), Least Significant Byte
| 0xE0, ///< 23 Minimum Active to Active/Refresh Delay Time (tRCmin), Least Significant Byte
| 0x90, ///< 24 Minimum Refresh Recovery Delay Time (tRFCmin), Least Significant Byte
| 0x06, ///< 25 Minimum Refresh Recovery Delay Time (tRFCmin), Most Significant Byte
| 0x3C, ///< 26 Minimum Internal Write to Read Command Delay Time (tWTRmin)
| 0x3C, ///< 27 Minimum Internal Read to Precharge Command Delay Time (tRTPmin)
| 0x01, ///< 28 Upper Nibble for tFAW
| 0x90, ///< 29 Minimum Four Activate Window Delay Time (tFAWmin)
| 0x00, ///< 30 SDRAM Optional Features
| 0x00, ///< 31 SDRAMThermalAndRefreshOptions
| 0x00, ///< 32 ModuleThermalSensor
| 0x00, ///< 33 SDRAM Device Type
| 0xCA, ///< 34 Fine Offset for SDRAM Minimum Cycle Time (tCKmin): 1.071 ns (LPDDR3-1867)
| 0xFA, ///< 35 Fine Offset for Minimum CAS Latency Time (tAAmin): 14.994 ns (LPDDR3-1867)
| 0x00, ///< 36 Fine Offset for Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0x00, ///< 37 Fine Offset for Minimum Row Precharge Delay Time (tRPmin)
| 0x00, ///< 38 Fine Offset for Minimum Active to Active/Refresh Delay Time (tRCmin)
| 0xA8, ///< 39 Row precharge time for all banks (tRPab)
| 0x00, ///< 40 FTB for Row precharge time for all banks (tRPab)
| 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 41 - 49
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 50 - 59
| 0, 0, ///< 60 - 61
| 0x00, ///< 62 Reference Raw Card Used
| 0x00, ///< 63 Address Mapping from Edge Connector to DRAM
| 0x00, ///< 64 ThermalHeatSpreaderSolution
| 0, 0, 0, 0, 0, ///< 65 - 69
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 70 - 79
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 80 - 89
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 90 - 99
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 100 - 109
| 0, 0, 0, 0, 0, 0, 0, ///< 110 - 116
| 0x00, ///< 117 Module Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 118 Module Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 119 Module Manufacturing Location
| 0x00, ///< 120 Module Manufacturing Date Year
| 0x00, ///< 121 Module Manufacturing Date creation work week
| 0x55, ///< 122 Module Serial Number A
| 0x00, ///< 123 Module Serial Number B
| 0x00, ///< 124 Module Serial Number C
| 0x00, ///< 125 Module Serial Number D
| 0x00, ///< 126 CRC A
| 0x00 ///< 127 CRC B
| };
|
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT16 mSkylakeRvp3Spd110Size = sizeof (mSkylakeRvp3Spd110);
|
| //
| // Micron MT52L512M32D2PF 78b DDP LPDDR3, 8Gb die (256Mx32), x32
| //
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 mKblRSpdLpddr32133[] = {
| 0x91, ///< 0 128 SPD bytes used, 256 total, CRC covers 0..116
| 0x20, ///< 1 SPD Revision 2.0
| 0xF1, ///< 2 DRAM Type: LPDDR3 SDRAM
| 0x03, ///< 3 Module Type: SO-DIMM
| 0x05, ///< 4 8 Banks, 8 Gb SDRAM density
| 0x19, ///< 5 SDRAM Addressing: 15 Rows, 10 Columns
| 0x05, ///< 6 Module Nominal Voltage VDD: 1.2v
| 0x0B, ///< 7 SDRAM width: 32 bits, 2 Ranks
| 0x03, ///< 8 SDRAM bus width: 64 bits, no ECC
| 0x11, ///< 9 Fine Timebase (FTB) granularity: 1 ps
| 0x01, ///< 10 Medium Timebase (MTB) : 0.125 ns
| 0x08, ///< 11 Medium Timebase Divisor
| 0x08, ///< 12 tCKmin = 0.938 ns (LPDDR3-2133)
| 0x00, ///< 13 Reserved
| 0x50, ///< 14 CAS Latencies supported (tCK): 16, 14, 12, 10, 8 (LSB)
| 0x15, ///< 15 CAS Latencies supported (tCK): 16, 14, 12, 10, 8 (MSB)
| 0x78, ///< 16 Minimum CAS Latency (tAAmin) = 15.008 ns
| 0x78, ///< 17 tWR = 15 ns
| 0x90, ///< 18 Minimum RAS-to-CAS delay (tRCDmin) = 18 ns
| 0x50, ///< 19 tRRD = 10 ns
| 0x90, ///< 20 Minimum row precharge time (tRPmin) = 18 ns
| 0x11, ///< 21 Upper nibbles for tRAS and tRC
| 0x50, ///< 22 tRASmin = 42 ns
| 0xE0, ///< 23 tRCmin = (tRASmin + tRPmin) = 60 ns
| 0x90, ///< 24 tRFCmin = (tRFCab) = 210 ns (8Gb)
| 0x06, ///< 25 tRFCmin MSB
| 0x3C, ///< 26 tWTRmin = 7.5 ns
| 0x3C, ///< 27 tRTPmin = 7.5 ns
| 0x01, ///< 28 tFAWmin upper nibble
| 0x90, ///< 29 tFAWmin = 50 ns
| 0x00, ///< 30 SDRAM Optional Features - none
| 0x00, ///< 31 SDRAM Thermal / Refresh options - none
| 0x00, ///< 32 ModuleThermalSensor
| 0x00, ///< 33 SDRAM Device Type
| 0xC2, ///< 34 FTB for tCKmin = 0.938 ns (LPDDR3-2133)
| 0x08, ///< 35 FTB for tAAmin = 15.008 ns (LPDDR3-2133)
| 0x00, ///< 36 Fine Offset for Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0x00, ///< 37 Fine Offset for Minimum Row Precharge Delay Time (tRPmin)
| 0x00, ///< 38 Fine Offset for Minimum Active to Active/Refresh Delay Time (tRCmin)
| 0xA8, ///< 39 Row precharge time for all banks (tRPab)= 21 ns
| 0x00, ///< 40 FTB for Row precharge time for all banks (tRPab) = 0
| 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 41 - 49
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 50 - 59
| 0, 0, ///< 60 - 61
| 0x00, ///< 62 Reference Raw Card Used
| 0x00, ///< 63 Rank1 Mapping: Standard
| 0x00, ///< 64 ThermalHeatSpreaderSolution
| 0, 0, 0, 0, 0, ///< 65 - 69
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 70 - 79
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 80 - 89
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 90 - 99
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 100 - 109
| 0, 0, 0, 0, 0, 0, 0, ///< 110 - 116
| 0x00, ///< 117 Module Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 118 Module Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 119 Module Manufacturing Location
| 0x00, ///< 120 Module Manufacturing Date Year
| 0x00, ///< 121 Module Manufacturing Date creation work week
| 0x55, ///< 122 Module ID: Module Serial Number
| 0x00, ///< 123 Module Serial Number B
| 0x00, ///< 124 Module Serial Number C
| 0x00, ///< 125 Module Serial Number D
| 0x00, ///< 126 CRC A
| 0x00 ///< 127 CRC B
| };
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT16 mKblRSpdLpddr32133Size = sizeof (mKblRSpdLpddr32133);
|
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 mSpdLpddr32133[] = {
| 0x24, ///< 0 Number of Serial PD Bytes Written / SPD Device Size
| 0x01, ///< 1 SPD Revision
| 0x0F, ///< 2 DRAM Device Type
| 0x0E, ///< 3 Module Type
| 0x15, ///< 4 SDRAM Density and Banks: 8 Banks, 8 Gb SDRAM density
| 0x19, ///< 5 SDRAM Addressing: 15 Rows, 10 Columns
| 0x90, ///< 6 SDRAM Package Type: QDP, 1 Channel per die, Signal Loading Matrix 1
| 0x00, ///< 7 SDRAM Optional Features
| 0x00, ///< 8 SDRAM Thermal and Refresh Options
| 0x00, ///< 9 Other SDRAM Optional Features
| 0x00, ///< 10 Reserved - must be coded as 0x00
| 0x0B, ///< 11 Module Nominal Voltage, VDD
| 0x0B, ///< 12 Module Organization, SDRAM width: 32 bits, 2 Ranks
| 0x03, ///< 13 Module Memory Bus Width: 2 channels, 64 bit channel bus width
| 0x00, ///< 14 Module Thermal Sensor
| 0x00, ///< 15 Extended Module Type
| 0x00, ///< 16 Reserved - must be coded as 0x00
| 0x00, ///< 17 Timebases
| 0x08, ///< 18 SDRAM Minimum Cycle Time (tCKmin)
| 0xFF, ///< 19 SDRAM Minimum Cycle Time (tCKmax)
| 0xD4, ///< 20 CAS Latencies Supported, First Byte
| 0x01, ///< 21 CAS Latencies Supported, Second Byte
| 0x00, ///< 22 CAS Latencies Supported, Third Byte
| 0x00, ///< 23 CAS Latencies Supported, Fourth Byte
| 0x78, ///< 24 Minimum CAS Latency Time (tAAmin)
| 0x00, ///< 25 Read and Write Latency Set Options
| 0x90, ///< 26 Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0xA8, ///< 27 Minimum Row Precharge Delay Time for all banks (tRPab)
| 0x90, ///< 28 Minimum Row Precharge Delay Time per bank (tRPpb)
| 0x90, ///< 29 Minimum Refresh Recovery Delay Time for all banks (tRFCab), Least Significant Byte
| 0x06, ///< 30 Minimum Refresh Recovery Delay Time for all banks (tRFCab), Most Significant Byte
| 0xD0, ///< 31 Minimum Refresh Recovery Delay Time for per bank (tRFCpb), Least Significant Byte
| 0x02, ///< 32 Minimum Refresh Recovery Delay Time for per bank (tRFCpb), Most Significant Byte
| 0, 0, 0, 0, 0, 0, 0, ///< 33 - 39
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 40 - 49
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 50 - 59
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 60 - 69 Connector to SDRAM Bit Mapping
| 0, 0, 0, 0, 0, 0, 0, 0, ///< 70 - 77 Connector to SDRAM Bit Mapping
| 0, 0, ///< 78 - 79
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 80 - 89
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 90 - 99
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 100 - 109
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 110 - 119
| 0x00, ///< 120 Fine Offset for Minimum Row Precharge Delay Time per bank (tRPpb)
| 0x00, ///< 121 Fine Offset for Minimum Row Precharge Delay Time for all banks (tRPab)
| 0x00, ///< 122 Fine Offset for Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0x08, ///< 123 Fine Offset for Minimum CAS Latency Time (tAAmin)
| 0x7F, ///< 124 Fine Offset for SDRAM Minimum Cycle Time (tCKmax)
| 0xC2, ///< 125 Fine Offset for SDRAM Minimum Cycle Time (tCKmin)
| 0x00, ///< 126 CRC A
| 0x00, ///< 127 CRC B
| 0, 0, ///< 128 - 129
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 130 - 139
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 140 - 149
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 150 - 159
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 160 - 169
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 170 - 179
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 180 - 189
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 190 - 199
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 200 - 209
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 210 - 219
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 220 - 229
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 230 - 239
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 240 - 249
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 250 - 259
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 260 - 269
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 270 - 279
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 280 - 289
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 290 - 299
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 300 - 309
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 310 - 319
| 0x00, ///< 320 Module Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 321 Module Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 322 Module Manufacturing Location
| 0x00, ///< 323 Module Manufacturing Date Year
| 0x00, ///< 324 Module Manufacturing Date Week
| 0x55, ///< 325 Module Serial Number A
| 0x00, ///< 326 Module Serial Number B
| 0x00, ///< 327 Module Serial Number C
| 0x00, ///< 328 Module Serial Number D
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 329 - 333 Module Part Number: Unused bytes coded as ASCII Blanks (0x20)
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 334 - 338 Module Part Number
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 339 - 343 Module Part Number
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 344 - 348 Module Part Number
| 0x00, ///< 349 Module Revision Code
| 0x00, ///< 350 DRAM Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 351 DRAM Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 352 DRAM Stepping
| 0, 0, 0, 0, 0, 0, 0, ///< 353 - 359
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 360 - 369
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 370 - 379
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 380 - 389
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 390 - 399
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 400 - 409
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 410 - 419
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 420 - 429
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 430 - 439
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 440 - 449
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 450 - 459
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 460 - 469
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 470 - 479
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 480 - 489
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 490 - 499
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 500 - 509
| 0, 0 ///< 510 - 511
| };
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT16 mSpdLpddr32133Size = sizeof (mSpdLpddr32133);
|
| /**
| Hynix H9CCNNN8JTMLAR-NTM_178b_DDP LPDDR3, 4Gb die (128Mx32), x32
| or Elpida EDF8132A1MC-GD-F
| or Samsung K4E8E304EB-EGCE
| 1600, 12-15-15-34
| 2 rank per channel, 2 SDRAMs per rank, 4x4Gb = 2GB total per channel
| **/
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 mSkylakeRvp3Spd[] = {
| 0x24, ///< 0 Number of Serial PD Bytes Written / SPD Device Size
| 0x20, ///< 1 SPD Revision
| 0x0F, ///< 2 DRAM Device Type
| 0x0E, ///< 3 Module Type
| 0x14, ///< 4 SDRAM Density and Banks: 8 Banks, 4 Gb SDRAM density
| 0x11, ///< 5 SDRAM Addressing: 14 Rows, 10 Columns
| 0x95, ///< 6 SDRAM Package Type: DDP, 1 Channel per die, Signal Loading Matrix 1
| 0x00, ///< 7 SDRAM Optional Features
| 0x00, ///< 8 SDRAM Thermal and Refresh Options
| 0x00, ///< 9 Other SDRAM Optional Features
| 0x00, ///< 10 Reserved - must be coded as 0x00
| 0x03, ///< 11 Module Nominal Voltage, VDD
| 0x0B, ///< 12 Module Organization, SDRAM width: 32 bits, 2 Ranks
| 0x23, ///< 13 Module Memory Bus Width: 2 channels, 64 bit channel bus width
| 0x00, ///< 14 Module Thermal Sensor
| 0x00, ///< 15 Extended Module Type
| 0x00, ///< 16 Reserved - must be coded as 0x00
| 0x00, ///< 17 Timebases
| 0x0A, ///< 18 SDRAM Minimum Cycle Time (tCKmin)
| 0xFF, ///< 19 SDRAM Minimum Cycle Time (tCKmax)
| 0x54, ///< 20 CAS Latencies Supported, First Byte (tCk): 12 10 8
| 0x00, ///< 21 CAS Latencies Supported, Second Byte
| 0x00, ///< 22 CAS Latencies Supported, Third Byte
| 0x00, ///< 23 CAS Latencies Supported, Fourth Byte
| 0x78, ///< 24 Minimum CAS Latency Time (tAAmin)
| 0x00, ///< 25 Read and Write Latency Set Options
| 0x90, ///< 26 Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0xA8, ///< 27 Minimum Row Precharge Delay Time for all banks (tRPab)
| 0x90, ///< 28 Minimum Row Precharge Delay Time per bank (tRPpb)
| 0x10, ///< 29 Minimum Refresh Recovery Delay Time for all banks (tRFCab), Least Significant Byte
| 0x04, ///< 30 Minimum Refresh Recovery Delay Time for all banks (tRFCab), Most Significant Byte
| 0xE0, ///< 31 Minimum Refresh Recovery Delay Time for per bank (tRFCpb), Least Significant Byte
| 0x01, ///< 32 Minimum Refresh Recovery Delay Time for per bank (tRFCpb), Most Significant Byte
| 0, 0, 0, 0, 0, 0, 0, ///< 33 - 39
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 40 - 49
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 50 - 59
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 60 - 69 Connector to SDRAM Bit Mapping
| 0, 0, 0, 0, 0, 0, 0, 0, ///< 70 - 77 Connector to SDRAM Bit Mapping
| 0, 0, ///< 78 - 79
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 80 - 89
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 90 - 99
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 100 - 109
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 110 - 119
| 0x00, ///< 120 Fine Offset for Minimum Row Precharge Delay Time per bank (tRPpb)
| 0x00, ///< 121 Fine Offset for Minimum Row Precharge Delay Time for all banks (tRPab)
| 0x00, ///< 122 Fine Offset for Minimum RAS# to CAS# Delay Time (tRCDmin)
| 0x00, ///< 123 Fine Offset for Minimum CAS Latency Time (tAAmin)
| 0x7F, ///< 124 Fine Offset for SDRAM Minimum Cycle Time (tCKmax)
| 0x00, ///< 125 Fine Offset for SDRAM Minimum Cycle Time (tCKmin)
| 0x00, ///< 126 CRC A
| 0x00, ///< 127 CRC B
| 0, 0, ///< 128 - 129
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 130 - 139
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 140 - 149
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 150 - 159
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 160 - 169
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 170 - 179
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 180 - 189
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 190 - 199
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 200 - 209
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 210 - 219
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 220 - 229
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 230 - 239
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 240 - 249
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 250 - 259
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 260 - 269
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 270 - 279
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 280 - 289
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 290 - 299
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 300 - 309
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 310 - 319
| 0x00, ///< 320 Module Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 321 Module Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 322 Module Manufacturing Location
| 0x00, ///< 323 Module Manufacturing Date Year
| 0x00, ///< 324 Module Manufacturing Date Week
| 0x55, ///< 325 Module Serial Number A
| 0x00, ///< 326 Module Serial Number B
| 0x00, ///< 327 Module Serial Number C
| 0x00, ///< 328 Module Serial Number D
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 329 - 333 Module Part Number: Unused bytes coded as ASCII Blanks (0x20)
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 334 - 338 Module Part Number
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 339 - 343 Module Part Number
| 0x20, 0x20, 0x20, 0x20, 0x20, ///< 344 - 348 Module Part Number
| 0x00, ///< 349 Module Revision Code
| 0x00, ///< 350 DRAM Manufacturer ID Code, Least Significant Byte
| 0x00, ///< 351 DRAM Manufacturer ID Code, Most Significant Byte
| 0x00, ///< 352 DRAM Stepping
| 0, 0, 0, 0, 0, 0, 0, ///< 353 - 359
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 360 - 369
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 370 - 379
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 380 - 389
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 390 - 399
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 400 - 409
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 410 - 419
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 420 - 429
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 430 - 439
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 440 - 449
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 450 - 459
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 460 - 469
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 470 - 479
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 480 - 489
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 490 - 499
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ///< 500 - 509
| 0, 0 ///< 510 - 511
| };
| GLOBAL_REMOVE_IF_UNREFERENCED const UINT16 mSkylakeRvp3SpdSize = sizeof (mSkylakeRvp3Spd);
| #endif // _KABYLAKE_RVP3_SPD_TABLE_H_
|
|