2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2008-08-26 20:01:29 +00:00
|
|
|
/*
|
2014-03-28 00:54:47 +00:00
|
|
|
* Copyright 2008-2014 Freescale Semiconductor, Inc.
|
2008-08-26 20:01:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMON_TIMING_PARAMS_H
|
|
|
|
#define COMMON_TIMING_PARAMS_H
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
/* parameters to constrict */
|
|
|
|
|
2013-09-25 05:11:19 +00:00
|
|
|
unsigned int tckmin_x_ps;
|
|
|
|
unsigned int tckmax_ps;
|
|
|
|
unsigned int trcd_ps;
|
|
|
|
unsigned int trp_ps;
|
|
|
|
unsigned int tras_ps;
|
2014-03-28 00:54:47 +00:00
|
|
|
#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
|
|
|
|
unsigned int taamin_ps;
|
|
|
|
#endif
|
2013-09-25 05:11:19 +00:00
|
|
|
|
2014-03-28 00:54:47 +00:00
|
|
|
#ifdef CONFIG_SYS_FSL_DDR4
|
|
|
|
unsigned int trfc1_ps;
|
|
|
|
unsigned int trfc2_ps;
|
|
|
|
unsigned int trfc4_ps;
|
|
|
|
unsigned int trrds_ps;
|
|
|
|
unsigned int trrdl_ps;
|
|
|
|
unsigned int tccdl_ps;
|
2018-01-29 17:44:35 +00:00
|
|
|
unsigned int trfc_slr_ps;
|
2014-03-28 00:54:47 +00:00
|
|
|
#else
|
2013-09-25 05:11:19 +00:00
|
|
|
unsigned int twtr_ps; /* maximum = 63750 ps */
|
|
|
|
unsigned int trfc_ps; /* maximum = 255 ns + 256 ns + .75 ns
|
2008-08-26 20:01:29 +00:00
|
|
|
= 511750 ps */
|
|
|
|
|
2013-09-25 05:11:19 +00:00
|
|
|
unsigned int trrd_ps; /* maximum = 63750 ps */
|
2014-03-28 00:54:47 +00:00
|
|
|
unsigned int trtp_ps; /* byte 38, spd->trtp */
|
|
|
|
#endif
|
|
|
|
unsigned int twr_ps; /* maximum = 63750 ps */
|
2013-09-25 05:11:19 +00:00
|
|
|
unsigned int trc_ps; /* maximum = 254 ns + .75 ns = 254750 ps */
|
2008-08-26 20:01:29 +00:00
|
|
|
|
|
|
|
unsigned int refresh_rate_ps;
|
2013-10-18 09:47:20 +00:00
|
|
|
unsigned int extended_op_srt;
|
2008-08-26 20:01:29 +00:00
|
|
|
|
2014-03-28 00:54:47 +00:00
|
|
|
#if defined(CONFIG_SYS_FSL_DDR1) || defined(CONFIG_SYS_FSL_DDR2)
|
2013-09-25 05:11:19 +00:00
|
|
|
unsigned int tis_ps; /* byte 32, spd->ca_setup */
|
|
|
|
unsigned int tih_ps; /* byte 33, spd->ca_hold */
|
|
|
|
unsigned int tds_ps; /* byte 34, spd->data_setup */
|
|
|
|
unsigned int tdh_ps; /* byte 35, spd->data_hold */
|
|
|
|
unsigned int tdqsq_max_ps; /* byte 44, spd->tdqsq */
|
|
|
|
unsigned int tqhs_ps; /* byte 45, spd->tqhs */
|
2014-03-28 00:54:47 +00:00
|
|
|
#endif
|
2008-08-26 20:01:29 +00:00
|
|
|
|
|
|
|
unsigned int ndimms_present;
|
2014-03-28 00:54:47 +00:00
|
|
|
unsigned int lowest_common_spd_caslat;
|
2008-08-26 20:01:29 +00:00
|
|
|
unsigned int highest_common_derated_caslat;
|
|
|
|
unsigned int additive_latency;
|
2013-09-25 05:11:19 +00:00
|
|
|
unsigned int all_dimms_burst_lengths_bitmask;
|
|
|
|
unsigned int all_dimms_registered;
|
|
|
|
unsigned int all_dimms_unbuffered;
|
|
|
|
unsigned int all_dimms_ecc_capable;
|
2008-08-26 20:01:29 +00:00
|
|
|
|
|
|
|
unsigned long long total_mem;
|
|
|
|
unsigned long long base_address;
|
2010-07-02 22:25:55 +00:00
|
|
|
|
|
|
|
/* DDR3 RDIMM */
|
|
|
|
unsigned char rcw[16]; /* Register Control Word 0-15 */
|
2008-08-26 20:01:29 +00:00
|
|
|
} common_timing_params_t;
|
|
|
|
|
|
|
|
#endif
|