blob: d5b2584b6d075c927c1879a26cb1a2e11c3b39aa [file] [log] [blame]
Marc Jones8ae8c882007-12-19 01:32:08 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Marc Jones8ae8c882007-12-19 01:32:08 +00003 *
4 * Copyright (C) 2007 Advanced Micro Devices, Inc.
Stefan Reinaueraeba92a2009-04-17 08:37:18 +00005 * Copyright (C) 2007-2009 coresystems GmbH
Marc Jones8ae8c882007-12-19 01:32:08 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Marc Jones8ae8c882007-12-19 01:32:08 +000015 */
16
17/* SPDs for DDR2 SDRAM */
18#define SPD_MEM_TYPE 2
19 #define SPD_MEM_TYPE_SDRAM_DDR 0x07
20 #define SPD_MEM_TYPE_SDRAM_DDR2 0x08
21
22#define SPD_DIMM_TYPE 20 /* x bit0 or bit4 =1 mean registered*/
Elyes HAOUASc8d24dd2016-06-15 21:13:07 +020023 #define SPD_DIMM_TYPE_RDIMM 0x01
24 #define SPD_DIMM_TYPE_UDIMM 0x02
25 #define SPD_DIMM_TYPE_SODIMM 0x04
26 #define SPD_72B_SO_CDIMM 0x06
27 #define SPD_72B_SO_RDIMM 0x07
28 #define SPD_DIMM_TYPE_uDIMM 0x08
29 #define SPD_DIMM_TYPE_mRDIMM 0x10
30 #define SPD_DIMM_TYPE_mUDIMM 0x20
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000031
Marc Jones8ae8c882007-12-19 01:32:08 +000032#define SPD_MOD_ATTRIB 21
33 #define SPD_MOD_ATTRIB_DIFCK 0x20
34 #define SPD_MOD_ATTRIB_REGADC 0x11 /* x */
35 #define SPD_MOD_ATTRIB_PROBE 0x40
36
37#define SPD_DEV_ATTRIB 22 /* Device attributes --- general */
38#define SPD_DIMM_CONF_TYPE 11
39 #define SPD_DIMM_CONF_TYPE_ECC 0x02
40 #define SPD_DIMM_CONF_TYPE_ADDR_PARITY 0x04 /* ? */
41
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000042#define SPD_CAS_LAT_MIN_X_1 23
43#define SPD_CAS_LAT_MAX_X_1 24
44#define SPD_CAS_LAT_MIN_X_2 25
45#define SPD_CAS_LAT_MAX_X_2 26
46
47#define SPD_BURST_LENGTHS 16
48 #define SPD_BURST_LENGTHS_4 (1<<2)
49 #define SPD_BURST_LENGTHS_8 (1<<3)
50
Marc Jones8ae8c882007-12-19 01:32:08 +000051#define SPD_ROW_NUM 3 /* Number of Row addresses */
52#define SPD_COL_NUM 4 /* Number of Column addresses */
53#define SPD_BANK_NUM 17 /* SDRAM Device attributes - Number of Banks on
54 SDRAM device, it could be 0x4, 0x8, so address
55 lines for that would be 2, and 3 */
56
Elyes HAOUASa0fed372016-09-16 20:17:40 +020057/* Number of Ranks bit [2:0], Package (bit4, 1 = stack, 0 = planr), Height bit[7:5] */
Marc Jones8ae8c882007-12-19 01:32:08 +000058#define SPD_MOD_ATTRIB_RANK 5
59 #define SPD_MOD_ATTRIB_RANK_NUM_SHIFT 0
60 #define SPD_MOD_ATTRIB_RANK_NUM_MASK 0x07
61 #define SPD_MOD_ATTRIB_RANK_NUM_BASE 1
62 #define SPD_MOD_ATTRIB_RANK_NUM_MIN 1
63 #define SPD_MOD_ATTRIB_RANK_NUM_MAX 8
64
65#define SPD_RANK_SIZE 31 /* Only one bit is set */
66 #define SPD_RANK_SIZE_1GB (1<<0)
67 #define SPD_RANK_SIZE_2GB (1<<1)
68 #define SPD_RANK_SIZE_4GB (1<<2)
69 #define SPD_RANK_SIZE_8GB (1<<3)
70 #define SPD_RANK_SIZE_16GB (1<<4)
71 #define SPD_RANK_SIZE_128MB (1<<5)
72 #define SPD_RANK_SIZE_256MB (1<<6)
73 #define SPD_RANK_SIZE_512MB (1<<7)
74
75#define SPD_DATA_WIDTH 6 /* valid value 0, 32, 33, 36, 64, 72, 80, 128, 144, 254, 255 */
76#define SPD_PRI_WIDTH 13 /* Primary SDRAM Width, it could be 0x08 or 0x10 */
77#define SPD_ERR_WIDTH 14 /* Error Checking SDRAM Width, it could be 0x08 or 0x10 */
78
79#define SPD_CAS_LAT 18 /* SDRAM Device Attributes -- CAS Latency */
80 #define SPD_CAS_LAT_2 (1<<2)
81 #define SPD_CAS_LAT_3 (1<<3)
82 #define SPD_CAS_LAT_4 (1<<4)
83 #define SPD_CAS_LAT_5 (1<<5)
84 #define SPD_CAS_LAT_6 (1<<6)
Elyes HAOUASd4506092016-05-26 19:53:29 +020085 #define SPD_CAS_LAT_7 (1<<7)
Marc Jones8ae8c882007-12-19 01:32:08 +000086
87#define SPD_TRP 27 /* bit [7:2] = 1-63 ns, bit [1:0] 0.25ns+, final value ((val>>2) + (val & 3) * 0.25)ns */
88#define SPD_TRRD 28
89#define SPD_TRCD 29
90#define SPD_TRAS 30
91#define SPD_TWR 36 /* x */
92#define SPD_TWTR 37 /* x */
93#define SPD_TRTP 38 /* x */
94
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000095#define SPD_EX_TRC_TRFC 40
Marc Jones8ae8c882007-12-19 01:32:08 +000096#define SPD_TRC 41 /* add byte 0x40 bit [3:1] , so final val41+ table[((val40>>1) & 0x7)] ... table[]={0, 0.25, 0.33, 0.5, 0.75, 0, 0}*/
97#define SPD_TRFC 42 /* add byte 0x40 bit [6:4] , so final val42+ table[((val40>>4) & 0x7)] + (val40 & 1)*256*/
98
99#define SPD_TREF 12