blob: 99a72bc6e16d6b88f57692ec3c76a81db564d927 [file] [log] [blame]
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001/*
2 * Copyright 2008 Freescale Semiconductor, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
7 */
8
9#ifndef DDR2_DIMM_PARAMS_H
10#define DDR2_DIMM_PARAMS_H
11
York Sun08b3f752011-03-17 11:18:10 -070012#define EDC_DATA_PARITY 1
13#define EDC_ECC 2
14#define EDC_AC_PARITY 4
15
Kumar Gala58e5e9a2008-08-26 15:01:29 -050016/* Parameters for a DDR2 dimm computed from the SPD */
17typedef struct dimm_params_s {
18
19 /* DIMM organization parameters */
20 char mpart[19]; /* guaranteed null terminated */
21
22 unsigned int n_ranks;
23 unsigned long long rank_density;
24 unsigned long long capacity;
25 unsigned int data_width;
26 unsigned int primary_sdram_width;
27 unsigned int ec_sdram_width;
28 unsigned int registered_dimm;
York Sunb61e0612013-06-25 11:37:47 -070029 unsigned int device_width; /* x4, x8, x16 components */
Kumar Gala58e5e9a2008-08-26 15:01:29 -050030
31 /* SDRAM device parameters */
32 unsigned int n_row_addr;
33 unsigned int n_col_addr;
34 unsigned int edc_config; /* 0 = none, 1 = parity, 2 = ECC */
35 unsigned int n_banks_per_sdram_device;
36 unsigned int burst_lengths_bitmask; /* BL=4 bit 2, BL=8 = bit 3 */
37 unsigned int row_density;
38
39 /* used in computing base address of DIMMs */
40 unsigned long long base_address;
Dave Liuc360cea2009-03-14 12:48:30 +080041 /* mirrored DIMMs */
42 unsigned int mirrored_dimm; /* only for ddr3 */
Kumar Gala58e5e9a2008-08-26 15:01:29 -050043
44 /* DIMM timing parameters */
45
Dave Liuc360cea2009-03-14 12:48:30 +080046 unsigned int mtb_ps; /* medium timebase ps, only for ddr3 */
York Sun73b53962012-08-17 08:22:37 +000047 unsigned int ftb_10th_ps; /* fine timebase, in 1/10 ps, only for ddr3 */
Priyanka Jain0dd38a32013-09-25 10:41:19 +053048 unsigned int taa_ps; /* minimum CAS latency time, only for ddr3 */
49 unsigned int tfaw_ps; /* four active window delay, only for ddr3 */
Dave Liuc360cea2009-03-14 12:48:30 +080050
Kumar Gala58e5e9a2008-08-26 15:01:29 -050051 /*
52 * SDRAM clock periods
53 * The range for these are 1000-10000 so a short should be sufficient
54 */
Priyanka Jain0dd38a32013-09-25 10:41:19 +053055 unsigned int tckmin_x_ps;
56 unsigned int tckmin_x_minus_1_ps;
57 unsigned int tckmin_x_minus_2_ps;
58 unsigned int tckmax_ps;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050059
60 /* SPD-defined CAS latencies */
Priyanka Jain0dd38a32013-09-25 10:41:19 +053061 unsigned int caslat_x;
62 unsigned int caslat_x_minus_1;
63 unsigned int caslat_x_minus_2;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050064
65 unsigned int caslat_lowest_derated; /* Derated CAS latency */
66
67 /* basic timing parameters */
Priyanka Jain0dd38a32013-09-25 10:41:19 +053068 unsigned int trcd_ps;
69 unsigned int trp_ps;
70 unsigned int tras_ps;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050071
Priyanka Jain0dd38a32013-09-25 10:41:19 +053072 unsigned int twr_ps; /* maximum = 63750 ps */
73 unsigned int twtr_ps; /* maximum = 63750 ps */
74 unsigned int trfc_ps; /* max = 255 ns + 256 ns + .75 ns
Kumar Gala58e5e9a2008-08-26 15:01:29 -050075 = 511750 ps */
76
Priyanka Jain0dd38a32013-09-25 10:41:19 +053077 unsigned int trrd_ps; /* maximum = 63750 ps */
78 unsigned int trc_ps; /* maximum = 254 ns + .75 ns = 254750 ps */
Kumar Gala58e5e9a2008-08-26 15:01:29 -050079
80 unsigned int refresh_rate_ps;
Valentin Longchamp7e157b02013-10-18 11:47:20 +020081 unsigned int extended_op_srt;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050082
Dave Liuc360cea2009-03-14 12:48:30 +080083 /* DDR3 doesn't need these as below */
Priyanka Jain0dd38a32013-09-25 10:41:19 +053084 unsigned int tis_ps; /* byte 32, spd->ca_setup */
85 unsigned int tih_ps; /* byte 33, spd->ca_hold */
86 unsigned int tds_ps; /* byte 34, spd->data_setup */
87 unsigned int tdh_ps; /* byte 35, spd->data_hold */
88 unsigned int trtp_ps; /* byte 38, spd->trtp */
89 unsigned int tdqsq_max_ps; /* byte 44, spd->tdqsq */
90 unsigned int tqhs_ps; /* byte 45, spd->tqhs */
york9490ff42010-07-02 22:25:55 +000091
92 /* DDR3 RDIMM */
93 unsigned char rcw[16]; /* Register Control Word 0-15 */
Kumar Gala58e5e9a2008-08-26 15:01:29 -050094} dimm_params_t;
95
96extern unsigned int ddr_compute_dimm_parameters(
97 const generic_spd_eeprom_t *spd,
98 dimm_params_t *pdimm,
99 unsigned int dimm_number);
100
101#endif