Blame view

include/fsl_ddr_dimm_params.h 3.07 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0 */
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
2
  /*
c0c32af0b   York Sun   drivers/ddr/fsl: ...
3
4
   * Copyright 2008-2016 Freescale Semiconductor, Inc.
   * Copyright 2017-2018 NXP Semiconductor
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
5
6
7
8
   */
  
  #ifndef DDR2_DIMM_PARAMS_H
  #define DDR2_DIMM_PARAMS_H
08b3f7599   York Sun   powerpc/mpc8xxx: ...
9
10
11
  #define EDC_DATA_PARITY	1
  #define EDC_ECC		2
  #define EDC_AC_PARITY	4
34e026f9b   York Sun   driver/ddr/fsl: A...
12
  /* Parameters for a DDR dimm computed from the SPD */
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
13
14
15
16
17
18
  typedef struct dimm_params_s {
  
  	/* DIMM organization parameters */
  	char mpart[19];		/* guaranteed null terminated */
  
  	unsigned int n_ranks;
c0c32af0b   York Sun   drivers/ddr/fsl: ...
19
  	unsigned int die_density;
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
20
21
22
23
24
25
  	unsigned long long rank_density;
  	unsigned long long capacity;
  	unsigned int data_width;
  	unsigned int primary_sdram_width;
  	unsigned int ec_sdram_width;
  	unsigned int registered_dimm;
c0c32af0b   York Sun   drivers/ddr/fsl: ...
26
  	unsigned int package_3ds;	/* number of dies in 3DS DIMM */
b61e06156   York Sun   powerpc/mpc8xxx: ...
27
  	unsigned int device_width;	/* x4, x8, x16 components */
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
28
29
30
31
32
  
  	/* SDRAM device parameters */
  	unsigned int n_row_addr;
  	unsigned int n_col_addr;
  	unsigned int edc_config;	/* 0 = none, 1 = parity, 2 = ECC */
34e026f9b   York Sun   driver/ddr/fsl: A...
33
34
35
36
  #ifdef CONFIG_SYS_FSL_DDR4
  	unsigned int bank_addr_bits;
  	unsigned int bank_group_bits;
  #else
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
37
  	unsigned int n_banks_per_sdram_device;
34e026f9b   York Sun   driver/ddr/fsl: A...
38
  #endif
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
39
  	unsigned int burst_lengths_bitmask;	/* BL=4 bit 2, BL=8 = bit 3 */
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
40
41
42
  
  	/* used in computing base address of DIMMs */
  	unsigned long long base_address;
c360ceac0   Dave Liu   fsl-ddr: add the ...
43
44
  	/* mirrored DIMMs */
  	unsigned int mirrored_dimm;	/* only for ddr3 */
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
45
46
  
  	/* DIMM timing parameters */
34e026f9b   York Sun   driver/ddr/fsl: A...
47
48
49
50
  	int mtb_ps;	/* medium timebase ps */
  	int ftb_10th_ps; /* fine timebase, in 1/10 ps */
  	int taa_ps;	/* minimum CAS latency time */
  	int tfaw_ps;	/* four active window delay */
c360ceac0   Dave Liu   fsl-ddr: add the ...
51

58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
52
53
54
55
  	/*
  	 * SDRAM clock periods
  	 * The range for these are 1000-10000 so a short should be sufficient
  	 */
34e026f9b   York Sun   driver/ddr/fsl: A...
56
57
58
59
  	int tckmin_x_ps;
  	int tckmin_x_minus_1_ps;
  	int tckmin_x_minus_2_ps;
  	int tckmax_ps;
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
60
61
  
  	/* SPD-defined CAS latencies */
0dd38a35f   Priyanka Jain   powerpc: Fix Came...
62
63
64
  	unsigned int caslat_x;
  	unsigned int caslat_x_minus_1;
  	unsigned int caslat_x_minus_2;
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
65
66
67
68
  
  	unsigned int caslat_lowest_derated;	/* Derated CAS latency */
  
  	/* basic timing parameters */
34e026f9b   York Sun   driver/ddr/fsl: A...
69
70
71
72
73
74
75
76
77
78
79
  	int trcd_ps;
  	int trp_ps;
  	int tras_ps;
  
  #ifdef CONFIG_SYS_FSL_DDR4
  	int trfc1_ps;
  	int trfc2_ps;
  	int trfc4_ps;
  	int trrds_ps;
  	int trrdl_ps;
  	int tccdl_ps;
c0c32af0b   York Sun   drivers/ddr/fsl: ...
80
  	int trfc_slr_ps;
34e026f9b   York Sun   driver/ddr/fsl: A...
81
82
83
  #else
  	int twr_ps;	/* maximum = 63750 ps */
  	int trfc_ps;	/* max = 255 ns + 256 ns + .75 ns
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
84
  				       = 511750 ps */
34e026f9b   York Sun   driver/ddr/fsl: A...
85
86
87
88
  	int trrd_ps;	/* maximum = 63750 ps */
  	int twtr_ps;	/* maximum = 63750 ps */
  	int trtp_ps;	/* byte 38, spd->trtp */
  #endif
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
89

34e026f9b   York Sun   driver/ddr/fsl: A...
90
  	int trc_ps;	/* maximum = 254 ns + .75 ns = 254750 ps */
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
91

34e026f9b   York Sun   driver/ddr/fsl: A...
92
93
  	int refresh_rate_ps;
  	int extended_op_srt;
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
94

34e026f9b   York Sun   driver/ddr/fsl: A...
95
96
97
98
99
100
101
102
  #if defined(CONFIG_SYS_FSL_DDR1) || defined(CONFIG_SYS_FSL_DDR2)
  	int tis_ps;	/* byte 32, spd->ca_setup */
  	int tih_ps;	/* byte 33, spd->ca_hold */
  	int tds_ps;	/* byte 34, spd->data_setup */
  	int tdh_ps;	/* byte 35, spd->data_hold */
  	int tdqsq_max_ps;	/* byte 44, spd->tdqsq */
  	int tqhs_ps;	/* byte 45, spd->tqhs */
  #endif
9490ff486   york   powerpc/8xxx: Ena...
103

564e9383e   York Sun   drivers/ddr/fsl: ...
104
  	/* DDR3 & DDR4 RDIMM */
9490ff486   york   powerpc/8xxx: Ena...
105
  	unsigned char rcw[16];	/* Register Control Word 0-15 */
34e026f9b   York Sun   driver/ddr/fsl: A...
106
107
108
109
  #ifdef CONFIG_SYS_FSL_DDR4
  	unsigned int dq_mapping[18];
  	unsigned int dq_mapping_ors;
  #endif
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
110
  } dimm_params_t;
03e664d8f   York Sun   driver/ddr/fsl: A...
111
  unsigned int ddr_compute_dimm_parameters(const unsigned int ctrl_num,
58e5e9aff   Kumar Gala   FSL DDR: Rewrite ...
112
113
114
115
116
  					 const generic_spd_eeprom_t *spd,
  					 dimm_params_t *pdimm,
  					 unsigned int dimm_number);
  
  #endif