Chameleon

Chameleon Svn Source Tree

Root/branches/valv/i386/libsaio/spd.h

  • Property svn:executable set to
1/*
2 * Copyright (C) 2005 Digital Design Corporation
3 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * spd.h
20 */
21
22#ifndef __LIBSAIO_SPD_H
23#define __LIBSAIO_SPD_H
24
25#include "platform.h"
26#include "libsaio.h"
27
28void scan_spd(PlatformInfo_t *p);
29
30struct smbus_controllers_t {
31uint32_tvendor;
32uint32_tdevice;
33char*name;
34 void (*read_smb)(pci_dt_t *smbus_dev);
35};
36
37
38/*
39 * Serial Presence Detect (SPD) data stored on SDRAM modules.
40 *
41 * Datasheet:
42 * - Name: PC SDRAM Serial Presence Detect (SPD) Specification
43 * Revision 1.2A, December, 1997
44 * - PDF: http://www.intel.com/design/chipsets/memory/spdsd12a.pdf
45 *
46 * Datasheet (alternative):
47 * - Name: SERIAL PRESENCE DETECT STANDARD, General Standard
48 * JEDEC Standard No. 21-C
49 * - PDF: http://www.jedec.org/download/search/4_01_02_00R9.PDF
50 */
51
52
53/* Byte numbers. */
54#define SPD_NUM_MANUFACTURER_BYTES 0 /* Number of bytes used by module manufacturer */
55#define SPD_TOTAL_SPD_MEMORY_SIZE 1 /* Total SPD memory size */
56#define SPD_MEMORY_TYPE 2 /* (Fundamental) memory type */
57#define SPD_NUM_ROWS 3 /* Number of row address bits */
58#define SPD_NUM_COLUMNS 4 /* Number of column address bits */
59#define SPD_NUM_DIMM_BANKS 5 /* Number of module rows (banks) */
60#define SPD_MODULE_DATA_WIDTH_LSB 6 /* Module data width (LSB) */
61#define SPD_MODULE_DATA_WIDTH_MSB 7 /* Module data width (MSB) */
62#define SPD_MODULE_VOLTAGE 8 /* Module interface signal levels */
63#define SPD_MIN_CYCLE_TIME_AT_CAS_MAX 9 /* SDRAM cycle time (highest CAS latency), RAS access time (tRAC) */
64#define SPD_ACCESS_TIME_FROM_CLOCK 10 /* SDRAM access time from clock (highest CAS latency), CAS access time (Tac, tCAC) */
65#define SPD_DIMM_CONFIG_TYPE 11 /* Module configuration type */
66#define SPD_REFRESH 12 /* Refresh rate/type */
67#define SPD_PRIMARY_SDRAM_WIDTH 13 /* SDRAM width (primary SDRAM) */
68#define SPD_ERROR_CHECKING_SDRAM_WIDTH 14 /* Error checking SDRAM (data) width */
69#define SPD_MIN_CLOCK_DELAY_B2B_RAND_COLUMN 15 /* SDRAM device attributes, minimum clock delay for back to back random column */
70#define SPD_SUPPORTED_BURST_LENGTHS 16 /* SDRAM device attributes, burst lengths supported */
71#define SPD_NUM_BANKS_PER_SDRAM 17 /* SDRAM device attributes, number of banks on SDRAM device */
72#define SPD_ACCEPTABLE_CAS_LATENCIES 18 /* SDRAM device attributes, CAS latency */
73#define SPD_CS_LATENCY 19 /* SDRAM device attributes, CS latency */
74#define SPD_WE_LATENCY 20 /* SDRAM device attributes, WE latency */
75#define SPD_MODULE_ATTRIBUTES 21 /* SDRAM module attributes */
76#define SPD_DEVICE_ATTRIBUTES_GENERAL 22 /* SDRAM device attributes, general */
77#define SPD_SDRAM_CYCLE_TIME_2ND 23 /* SDRAM cycle time (2nd highest CAS latency) */
78#define SPD_ACCESS_TIME_FROM_CLOCK_2ND 24 /* SDRAM access from clock (2nd highest CAS latency) */
79#define SPD_SDRAM_CYCLE_TIME_3RD 25 /* SDRAM cycle time (3rd highest CAS latency) */
80#define SPD_ACCESS_TIME_FROM_CLOCK_3RD 26 /* SDRAM access from clock (3rd highest CAS latency) */
81#define SPD_MIN_ROW_PRECHARGE_TIME 27 /* Minimum row precharge time (Trp) */
82#define SPD_MIN_ROWACTIVE_TO_ROWACTIVE 28 /* Minimum row active to row active (Trrd) */
83#define SPD_MIN_RAS_TO_CAS_DELAY 29 /* Minimum RAS to CAS delay (Trcd) */
84#define SPD_MIN_ACTIVE_TO_PRECHARGE_DELAY 30 /* Minimum RAS pulse width (Tras) */
85#define SPD_DENSITY_OF_EACH_ROW_ON_MODULE 31 /* Density of each row on module */
86#define SPD_CMD_SIGNAL_INPUT_SETUP_TIME 32 /* Command and address signal input setup time */
87#define SPD_CMD_SIGNAL_INPUT_HOLD_TIME 33 /* Command and address signal input hold time */
88#define SPD_DATA_SIGNAL_INPUT_SETUP_TIME 34 /* Data signal input setup time */
89#define SPD_DATA_SIGNAL_INPUT_HOLD_TIME 35 /* Data signal input hold time */
90#define SPD_WRITE_RECOVERY_TIME 36 /* Write recovery time (tWR) */
91#define SPD_INT_WRITE_TO_READ_DELAY 37 /* Internal write to read command delay (tWTR) */
92#define SPD_INT_READ_TO_PRECHARGE_DELAY 38 /* Internal read to precharge command delay (tRTP) */
93#define SPD_MEM_ANALYSIS_PROBE_PARAMS 39 /* Memory analysis probe characteristics */
94#define SPD_BYTE_41_42_EXTENSION 40 /* Extension of byte 41 (tRC) and byte 42 (tRFC) */
95#define SPD_MIN_ACT_TO_ACT_AUTO_REFRESH 41 /* Minimum active to active auto refresh (tRCmin) */
96#define SPD_MIN_AUTO_REFRESH_TO_ACT 42 /* Minimum auto refresh to active/auto refresh (tRFC) */
97#define SPD_MAX_DEVICE_CYCLE_TIME 43 /* Maximum device cycle time (tCKmax) */
98#define SPD_MAX_DQS_DQ_SKEW 44 /* Maximum skew between DQS and DQ (tDQSQ) */
99#define SPD_MAX_READ_DATAHOLD_SKEW 45 /* Maximum read data-hold skew factor (tQHS) */
100#define SPD_PLL_RELOCK_TIME 46 /* PLL relock time */
101#define SPD_SPD_DATA_REVISION_CODE 62 /* SPD data revision code */
102#define SPD_CHECKSUM_FOR_BYTES_0_TO_62 63 /* Checksum for bytes 0-62 */
103#define SPD_MANUFACTURER_JEDEC_ID_CODE 64 /* Manufacturer's JEDEC ID code, per EIA/JEP106 (bytes 64-71) */
104#define SPD_MANUFACTURING_LOCATION 72 /* Manufacturing location */
105#define SPD_MANUFACTURER_PART_NUMBER 73 /* Manufacturer's part number, in 6-bit ASCII (bytes 73-90) */
106#define SPD_REVISION_CODE 91 /* Revision code (bytes 91-92) */
107#define SPD_MANUFACTURING_DATE 93 /* Manufacturing date (byte 93: year, byte 94: week) */
108#define SPD_ASSEMBLY_SERIAL_NUMBER 95 /* Assembly serial number (bytes 95-98) */
109#define SPD_MANUFACTURER_SPECIFIC_DATA 99 /* Manufacturer specific data (bytes 99-125) */
110#define SPD_INTEL_SPEC_FOR_FREQUENCY 126 /* Intel specification for frequency */
111#define SPD_INTEL_SPEC_100_MHZ 127 /* Intel specification details for 100MHz support */
112#define SPD_DDR3_MEMORY_BANK 0x75
113#define SPD_DDR3_MEMORY_CODE 0x76
114
115/* DRAM specifications use the following naming conventions for SPD locations */
116#define SPD_tRP SPD_MIN_ROW_PRECHARGE_TIME
117#define SPD_tRRD SPD_MIN_ROWACTIVE_TO_ROWACTIVE
118#define SPD_tRCD SPD_MIN_RAS_TO_CAS_DELAY
119#define SPD_tRAS SPD_MIN_ACTIVE_TO_PRECHARGE_DELAY
120#define SPD_BANK_DENSITY SPD_DENSITY_OF_EACH_ROW_ON_MODULE
121#define SPD_ADDRESS_CMD_HOLD SPD_CMD_SIGNAL_INPUT_HOLD_TIME
122#define SPD_tRC41/* SDRAM Device Minimum Active to Active/Auto Refresh Time (tRC) */
123#define SPD_tRFC42/* SDRAM Device Minimum Auto Refresh to Active/Auto Refresh (tRFC) */
124
125
126/* SPD_MEMORY_TYPE values. */
127#define SPD_MEMORY_TYPE_FPM_DRAM1
128#define SPD_MEMORY_TYPE_EDO2
129#define SPD_MEMORY_TYPE_PIPELINED_NIBBLE3
130#define SPD_MEMORY_TYPE_SDRAM4
131#define SPD_MEMORY_TYPE_MULTIPLEXED_ROM5
132#define SPD_MEMORY_TYPE_SGRAM_DDR6
133#define SPD_MEMORY_TYPE_SDRAM_DDR7
134#define SPD_MEMORY_TYPE_SDRAM_DDR28
135#define SPD_MEMORY_TYPE_SDRAM_DDR30xb
136
137/* SPD_MODULE_VOLTAGE values. */
138#define SPD_VOLTAGE_TTL0 /* 5.0 Volt/TTL */
139#define SPD_VOLTAGE_LVTTL1 /* LVTTL */
140#define SPD_VOLTAGE_HSTL2 /* HSTL 1.5 */
141#define SPD_VOLTAGE_SSTL33 /* SSTL 3.3 */
142#define SPD_VOLTAGE_SSTL24 /* SSTL 2.5 */
143
144/* SPD_DIMM_CONFIG_TYPE values. */
145#define ERROR_SCHEME_NONE0
146#define ERROR_SCHEME_PARITY1
147#define ERROR_SCHEME_ECC2
148
149/* SPD_ACCEPTABLE_CAS_LATENCIES values. */
150// TODO: Check values.
151#define SPD_CAS_LATENCY_1_00x01
152#define SPD_CAS_LATENCY_1_50x02
153#define SPD_CAS_LATENCY_2_00x04
154#define SPD_CAS_LATENCY_2_50x08
155#define SPD_CAS_LATENCY_3_00x10
156#define SPD_CAS_LATENCY_3_50x20
157#define SPD_CAS_LATENCY_4_00x40
158
159#define SPD_CAS_LATENCY_DDR2_3(1 << 3)
160#define SPD_CAS_LATENCY_DDR2_4(1 << 4)
161#define SPD_CAS_LATENCY_DDR2_5(1 << 5)
162#define SPD_CAS_LATENCY_DDR2_6(1 << 6)
163
164/* SPD_SUPPORTED_BURST_LENGTHS values. */
165#define SPD_BURST_LENGTH_11
166#define SPD_BURST_LENGTH_22
167#define SPD_BURST_LENGTH_44
168#define SPD_BURST_LENGTH_88
169#define SPD_BURST_LENGTH_PAGE(1 << 7)
170
171/* SPD_MODULE_ATTRIBUTES values. */
172#define MODULE_BUFFERED1
173#define MODULE_REGISTERED2
174
175#endif /* !__LIBSAIO_SPD_H */
176

Archive Download this file

Revision: 665