Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 1 | /* |
York Sun | c0c32af | 2018-01-29 09:44:35 -0800 | [diff] [blame] | 2 | * Copyright 2008-2016 Freescale Semiconductor, Inc. |
| 3 | * Copyright 2017-2018 NXP Semiconductor |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 4 | * |
Tom Rini | 5b8031c | 2016-01-14 22:05:13 -0500 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0 |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef FSL_DDR_MEMCTL_H |
| 9 | #define FSL_DDR_MEMCTL_H |
| 10 | |
| 11 | /* |
| 12 | * Pick a basic DDR Technology. |
| 13 | */ |
| 14 | #include <ddr_spd.h> |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 15 | #include <fsl_ddrc_version.h> |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 16 | |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 17 | #define SDRAM_TYPE_DDR1 2 |
| 18 | #define SDRAM_TYPE_DDR2 3 |
| 19 | #define SDRAM_TYPE_LPDDR1 6 |
| 20 | #define SDRAM_TYPE_DDR3 7 |
| 21 | #define SDRAM_TYPE_DDR4 5 |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 22 | |
Dave Liu | c360cea | 2009-03-14 12:48:30 +0800 | [diff] [blame] | 23 | #define DDR_BL4 4 /* burst length 4 */ |
| 24 | #define DDR_BC4 DDR_BL4 /* burst chop for ddr3 */ |
| 25 | #define DDR_OTF 6 /* on-the-fly BC4 and BL8 */ |
| 26 | #define DDR_BL8 8 /* burst length 8 */ |
| 27 | |
York Sun | e1fd16b | 2011-01-10 12:03:00 +0000 | [diff] [blame] | 28 | #define DDR3_RTT_OFF 0 |
Dave Liu | f8d05e5 | 2010-03-05 12:23:00 +0800 | [diff] [blame] | 29 | #define DDR3_RTT_60_OHM 1 /* RTT_Nom = RZQ/4 */ |
| 30 | #define DDR3_RTT_120_OHM 2 /* RTT_Nom = RZQ/2 */ |
| 31 | #define DDR3_RTT_40_OHM 3 /* RTT_Nom = RZQ/6 */ |
| 32 | #define DDR3_RTT_20_OHM 4 /* RTT_Nom = RZQ/12 */ |
| 33 | #define DDR3_RTT_30_OHM 5 /* RTT_Nom = RZQ/8 */ |
| 34 | |
York Sun | 19601dd | 2015-11-04 10:03:17 -0800 | [diff] [blame] | 35 | #define DDR4_RTT_OFF 0 |
| 36 | #define DDR4_RTT_60_OHM 1 /* RZQ/4 */ |
| 37 | #define DDR4_RTT_120_OHM 2 /* RZQ/2 */ |
| 38 | #define DDR4_RTT_40_OHM 3 /* RZQ/6 */ |
| 39 | #define DDR4_RTT_240_OHM 4 /* RZQ/1 */ |
| 40 | #define DDR4_RTT_48_OHM 5 /* RZQ/5 */ |
| 41 | #define DDR4_RTT_80_OHM 6 /* RZQ/3 */ |
| 42 | #define DDR4_RTT_34_OHM 7 /* RZQ/7 */ |
| 43 | |
York Sun | 4e57382 | 2011-08-26 11:32:43 -0700 | [diff] [blame] | 44 | #define DDR2_RTT_OFF 0 |
| 45 | #define DDR2_RTT_75_OHM 1 |
| 46 | #define DDR2_RTT_150_OHM 2 |
| 47 | #define DDR2_RTT_50_OHM 3 |
| 48 | |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 49 | #if defined(CONFIG_SYS_FSL_DDR1) |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 50 | #define FSL_DDR_MIN_TCKE_PULSE_WIDTH_DDR (1) |
| 51 | typedef ddr1_spd_eeprom_t generic_spd_eeprom_t; |
| 52 | #ifndef CONFIG_FSL_SDRAM_TYPE |
| 53 | #define CONFIG_FSL_SDRAM_TYPE SDRAM_TYPE_DDR1 |
| 54 | #endif |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 55 | #elif defined(CONFIG_SYS_FSL_DDR2) |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 56 | #define FSL_DDR_MIN_TCKE_PULSE_WIDTH_DDR (3) |
| 57 | typedef ddr2_spd_eeprom_t generic_spd_eeprom_t; |
| 58 | #ifndef CONFIG_FSL_SDRAM_TYPE |
| 59 | #define CONFIG_FSL_SDRAM_TYPE SDRAM_TYPE_DDR2 |
| 60 | #endif |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 61 | #elif defined(CONFIG_SYS_FSL_DDR3) |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 62 | typedef ddr3_spd_eeprom_t generic_spd_eeprom_t; |
Dave Liu | 22ff3d0 | 2008-11-21 16:31:29 +0800 | [diff] [blame] | 63 | #ifndef CONFIG_FSL_SDRAM_TYPE |
| 64 | #define CONFIG_FSL_SDRAM_TYPE SDRAM_TYPE_DDR3 |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 65 | #endif |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 66 | #elif defined(CONFIG_SYS_FSL_DDR4) |
| 67 | #define FSL_DDR_MIN_TCKE_PULSE_WIDTH_DDR (3) /* FIXME */ |
| 68 | typedef struct ddr4_spd_eeprom_s generic_spd_eeprom_t; |
| 69 | #ifndef CONFIG_FSL_SDRAM_TYPE |
| 70 | #define CONFIG_FSL_SDRAM_TYPE SDRAM_TYPE_DDR4 |
| 71 | #endif |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 72 | #endif /* #if defined(CONFIG_SYS_FSL_DDR1) */ |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 73 | |
York Sun | e1fd16b | 2011-01-10 12:03:00 +0000 | [diff] [blame] | 74 | #define FSL_DDR_ODT_NEVER 0x0 |
| 75 | #define FSL_DDR_ODT_CS 0x1 |
| 76 | #define FSL_DDR_ODT_ALL_OTHER_CS 0x2 |
| 77 | #define FSL_DDR_ODT_OTHER_DIMM 0x3 |
| 78 | #define FSL_DDR_ODT_ALL 0x4 |
| 79 | #define FSL_DDR_ODT_SAME_DIMM 0x5 |
| 80 | #define FSL_DDR_ODT_CS_AND_OTHER_DIMM 0x6 |
| 81 | #define FSL_DDR_ODT_OTHER_CS_ONSAMEDIMM 0x7 |
| 82 | |
Haiying Wang | dbbbb3a | 2008-10-03 12:36:39 -0400 | [diff] [blame] | 83 | /* define bank(chip select) interleaving mode */ |
| 84 | #define FSL_DDR_CS0_CS1 0x40 |
| 85 | #define FSL_DDR_CS2_CS3 0x20 |
| 86 | #define FSL_DDR_CS0_CS1_AND_CS2_CS3 (FSL_DDR_CS0_CS1 | FSL_DDR_CS2_CS3) |
| 87 | #define FSL_DDR_CS0_CS1_CS2_CS3 (FSL_DDR_CS0_CS1_AND_CS2_CS3 | 0x04) |
| 88 | |
| 89 | /* define memory controller interleaving mode */ |
| 90 | #define FSL_DDR_CACHE_LINE_INTERLEAVING 0x0 |
| 91 | #define FSL_DDR_PAGE_INTERLEAVING 0x1 |
| 92 | #define FSL_DDR_BANK_INTERLEAVING 0x2 |
| 93 | #define FSL_DDR_SUPERBANK_INTERLEAVING 0x3 |
York Sun | 6b1e125 | 2014-02-10 13:59:44 -0800 | [diff] [blame] | 94 | #define FSL_DDR_256B_INTERLEAVING 0x8 |
York Sun | a4c6650 | 2012-08-17 08:22:39 +0000 | [diff] [blame] | 95 | #define FSL_DDR_3WAY_1KB_INTERLEAVING 0xA |
| 96 | #define FSL_DDR_3WAY_4KB_INTERLEAVING 0xC |
| 97 | #define FSL_DDR_3WAY_8KB_INTERLEAVING 0xD |
| 98 | /* placeholder for 4-way interleaving */ |
| 99 | #define FSL_DDR_4WAY_1KB_INTERLEAVING 0x1A |
| 100 | #define FSL_DDR_4WAY_4KB_INTERLEAVING 0x1C |
| 101 | #define FSL_DDR_4WAY_8KB_INTERLEAVING 0x1D |
Haiying Wang | dbbbb3a | 2008-10-03 12:36:39 -0400 | [diff] [blame] | 102 | |
York Sun | 123922b | 2012-10-08 07:44:23 +0000 | [diff] [blame] | 103 | #define SDRAM_CS_CONFIG_EN 0x80000000 |
| 104 | |
Poonam_Aggrwal-b10812 | e1be0d2 | 2009-01-04 08:46:38 +0530 | [diff] [blame] | 105 | /* DDR_SDRAM_CFG - DDR SDRAM Control Configuration |
| 106 | */ |
| 107 | #define SDRAM_CFG_MEM_EN 0x80000000 |
| 108 | #define SDRAM_CFG_SREN 0x40000000 |
| 109 | #define SDRAM_CFG_ECC_EN 0x20000000 |
| 110 | #define SDRAM_CFG_RD_EN 0x10000000 |
| 111 | #define SDRAM_CFG_SDRAM_TYPE_DDR1 0x02000000 |
| 112 | #define SDRAM_CFG_SDRAM_TYPE_DDR2 0x03000000 |
| 113 | #define SDRAM_CFG_SDRAM_TYPE_MASK 0x07000000 |
| 114 | #define SDRAM_CFG_SDRAM_TYPE_SHIFT 24 |
| 115 | #define SDRAM_CFG_DYN_PWR 0x00200000 |
Matthew McClintock | 9c6b47d | 2012-08-13 08:10:37 +0000 | [diff] [blame] | 116 | #define SDRAM_CFG_DBW_MASK 0x00180000 |
York Sun | f31cfd1 | 2012-10-08 07:44:24 +0000 | [diff] [blame] | 117 | #define SDRAM_CFG_DBW_SHIFT 19 |
Poonam_Aggrwal-b10812 | e1be0d2 | 2009-01-04 08:46:38 +0530 | [diff] [blame] | 118 | #define SDRAM_CFG_32_BE 0x00080000 |
Poonam Aggrwal | 0b3b176 | 2011-02-07 15:09:51 +0530 | [diff] [blame] | 119 | #define SDRAM_CFG_16_BE 0x00100000 |
Poonam_Aggrwal-b10812 | e1be0d2 | 2009-01-04 08:46:38 +0530 | [diff] [blame] | 120 | #define SDRAM_CFG_8_BE 0x00040000 |
| 121 | #define SDRAM_CFG_NCAP 0x00020000 |
| 122 | #define SDRAM_CFG_2T_EN 0x00008000 |
| 123 | #define SDRAM_CFG_BI 0x00000001 |
| 124 | |
Tang Yuantian | a7787b7 | 2014-11-21 11:17:15 +0800 | [diff] [blame] | 125 | #define SDRAM_CFG2_FRC_SR 0x80000000 |
York Sun | 9167191 | 2011-01-25 22:05:49 -0800 | [diff] [blame] | 126 | #define SDRAM_CFG2_D_INIT 0x00000010 |
Shengzhou Liu | eb11880 | 2016-03-10 17:36:56 +0800 | [diff] [blame] | 127 | #define SDRAM_CFG2_AP_EN 0x00000020 |
York Sun | 9167191 | 2011-01-25 22:05:49 -0800 | [diff] [blame] | 128 | #define SDRAM_CFG2_ODT_CFG_MASK 0x00600000 |
York Sun | cae7c1b | 2011-08-26 11:32:40 -0700 | [diff] [blame] | 129 | #define SDRAM_CFG2_ODT_NEVER 0 |
| 130 | #define SDRAM_CFG2_ODT_ONLY_WRITE 1 |
| 131 | #define SDRAM_CFG2_ODT_ONLY_READ 2 |
| 132 | #define SDRAM_CFG2_ODT_ALWAYS 3 |
York Sun | 9167191 | 2011-01-25 22:05:49 -0800 | [diff] [blame] | 133 | |
Shengzhou Liu | a994b3d | 2015-12-16 16:45:41 +0800 | [diff] [blame] | 134 | #define SDRAM_INTERVAL_BSTOPRE 0x3FFF |
York Sun | 9167191 | 2011-01-25 22:05:49 -0800 | [diff] [blame] | 135 | #define TIMING_CFG_2_CPO_MASK 0x0F800000 |
| 136 | |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 137 | #if defined(CONFIG_SYS_FSL_DDR_VER) && \ |
| 138 | (CONFIG_SYS_FSL_DDR_VER > FSL_DDR_VER_4_4) |
Dave Liu | c360cea | 2009-03-14 12:48:30 +0800 | [diff] [blame] | 139 | #define RD_TO_PRE_MASK 0xf |
| 140 | #define RD_TO_PRE_SHIFT 13 |
| 141 | #define WR_DATA_DELAY_MASK 0xf |
| 142 | #define WR_DATA_DELAY_SHIFT 9 |
| 143 | #else |
| 144 | #define RD_TO_PRE_MASK 0x7 |
| 145 | #define RD_TO_PRE_SHIFT 13 |
| 146 | #define WR_DATA_DELAY_MASK 0x7 |
| 147 | #define WR_DATA_DELAY_SHIFT 10 |
| 148 | #endif |
| 149 | |
Shengzhou Liu | 074596c | 2016-04-07 16:22:21 +0800 | [diff] [blame] | 150 | /* DDR_EOR register */ |
| 151 | #define DDR_EOR_RD_REOD_DIS 0x07000000 |
| 152 | #define DDR_EOR_WD_REOD_DIS 0x00100000 |
| 153 | |
York Sun | fa8d23c | 2011-01-10 12:03:01 +0000 | [diff] [blame] | 154 | /* DDR_MD_CNTL */ |
| 155 | #define MD_CNTL_MD_EN 0x80000000 |
| 156 | #define MD_CNTL_CS_SEL_CS0 0x00000000 |
| 157 | #define MD_CNTL_CS_SEL_CS1 0x10000000 |
| 158 | #define MD_CNTL_CS_SEL_CS2 0x20000000 |
| 159 | #define MD_CNTL_CS_SEL_CS3 0x30000000 |
| 160 | #define MD_CNTL_CS_SEL_CS0_CS1 0x40000000 |
| 161 | #define MD_CNTL_CS_SEL_CS2_CS3 0x50000000 |
| 162 | #define MD_CNTL_MD_SEL_MR 0x00000000 |
| 163 | #define MD_CNTL_MD_SEL_EMR 0x01000000 |
| 164 | #define MD_CNTL_MD_SEL_EMR2 0x02000000 |
| 165 | #define MD_CNTL_MD_SEL_EMR3 0x03000000 |
| 166 | #define MD_CNTL_SET_REF 0x00800000 |
| 167 | #define MD_CNTL_SET_PRE 0x00400000 |
| 168 | #define MD_CNTL_CKE_CNTL_LOW 0x00100000 |
| 169 | #define MD_CNTL_CKE_CNTL_HIGH 0x00200000 |
| 170 | #define MD_CNTL_WRCW 0x00080000 |
| 171 | #define MD_CNTL_MD_VALUE(x) (x & 0x0000FFFF) |
York Sun | 9f9f009 | 2015-03-19 09:30:29 -0700 | [diff] [blame] | 172 | #define MD_CNTL_CS_SEL(x) (((x) & 0x7) << 28) |
| 173 | #define MD_CNTL_MD_SEL(x) (((x) & 0xf) << 24) |
York Sun | fa8d23c | 2011-01-10 12:03:01 +0000 | [diff] [blame] | 174 | |
York Sun | 6b06d7d | 2011-01-10 12:03:02 +0000 | [diff] [blame] | 175 | /* DDR_CDR1 */ |
| 176 | #define DDR_CDR1_DHC_EN 0x80000000 |
Hou Zhiqiang | 031acdb | 2016-12-09 16:09:00 +0800 | [diff] [blame] | 177 | #define DDR_CDR1_V0PT9_EN 0x40000000 |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 178 | #define DDR_CDR1_ODT_SHIFT 17 |
| 179 | #define DDR_CDR1_ODT_MASK 0x6 |
| 180 | #define DDR_CDR2_ODT_MASK 0x1 |
| 181 | #define DDR_CDR1_ODT(x) ((x & DDR_CDR1_ODT_MASK) << DDR_CDR1_ODT_SHIFT) |
| 182 | #define DDR_CDR2_ODT(x) (x & DDR_CDR2_ODT_MASK) |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 183 | #define DDR_CDR2_VREF_OVRD(x) (0x00008080 | ((((x) - 37) & 0x3F) << 8)) |
Tang Yuantian | a7787b7 | 2014-11-21 11:17:15 +0800 | [diff] [blame] | 184 | #define DDR_CDR2_VREF_TRAIN_EN 0x00000080 |
York Sun | 7288c2c | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 185 | #define DDR_CDR2_VREF_RANGE_2 0x00000040 |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 186 | |
Shengzhou Liu | eb11880 | 2016-03-10 17:36:56 +0800 | [diff] [blame] | 187 | /* DDR ERR_DISABLE */ |
| 188 | #define DDR_ERR_DISABLE_APED (1 << 8) /* Address parity error disable */ |
| 189 | |
| 190 | /* Mode Registers */ |
| 191 | #define DDR_MR5_CA_PARITY_LAT_4_CLK 0x1 /* for DDR4-1600/1866/2133 */ |
| 192 | #define DDR_MR5_CA_PARITY_LAT_5_CLK 0x2 /* for DDR4-2400 */ |
| 193 | |
Shengzhou Liu | 5fc62fe | 2016-03-16 13:50:23 +0800 | [diff] [blame] | 194 | /* DEBUG_26 register */ |
| 195 | #define DDR_CAS_TO_PRE_SUB_MASK 0x0000f000 /* CAS to preamble subtract value */ |
| 196 | #define DDR_CAS_TO_PRE_SUB_SHIFT 12 |
| 197 | |
Shengzhou Liu | 4a68489 | 2016-03-16 13:50:22 +0800 | [diff] [blame] | 198 | /* DEBUG_29 register */ |
| 199 | #define DDR_TX_BD_DIS (1 << 10) /* Transmit Bit Deskew Disable */ |
| 200 | |
Shengzhou Liu | eb11880 | 2016-03-10 17:36:56 +0800 | [diff] [blame] | 201 | |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 202 | #if (defined(CONFIG_SYS_FSL_DDR_VER) && \ |
| 203 | (CONFIG_SYS_FSL_DDR_VER >= FSL_DDR_VER_4_7)) |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 204 | #ifdef CONFIG_SYS_FSL_DDR3L |
| 205 | #define DDR_CDR_ODT_OFF 0x0 |
| 206 | #define DDR_CDR_ODT_120ohm 0x1 |
| 207 | #define DDR_CDR_ODT_200ohm 0x2 |
| 208 | #define DDR_CDR_ODT_75ohm 0x3 |
| 209 | #define DDR_CDR_ODT_60ohm 0x5 |
| 210 | #define DDR_CDR_ODT_46ohm 0x7 |
| 211 | #elif defined(CONFIG_SYS_FSL_DDR4) |
| 212 | #define DDR_CDR_ODT_OFF 0x0 |
| 213 | #define DDR_CDR_ODT_100ohm 0x1 |
| 214 | #define DDR_CDR_ODT_120OHM 0x2 |
| 215 | #define DDR_CDR_ODT_80ohm 0x3 |
| 216 | #define DDR_CDR_ODT_60ohm 0x4 |
| 217 | #define DDR_CDR_ODT_40ohm 0x5 |
| 218 | #define DDR_CDR_ODT_50ohm 0x6 |
| 219 | #define DDR_CDR_ODT_30ohm 0x7 |
| 220 | #else |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 221 | #define DDR_CDR_ODT_OFF 0x0 |
| 222 | #define DDR_CDR_ODT_120ohm 0x1 |
| 223 | #define DDR_CDR_ODT_180ohm 0x2 |
| 224 | #define DDR_CDR_ODT_75ohm 0x3 |
| 225 | #define DDR_CDR_ODT_110ohm 0x4 |
| 226 | #define DDR_CDR_ODT_60hm 0x5 |
| 227 | #define DDR_CDR_ODT_70ohm 0x6 |
| 228 | #define DDR_CDR_ODT_47ohm 0x7 |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 229 | #endif /* DDR3L */ |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 230 | #else |
| 231 | #define DDR_CDR_ODT_75ohm 0x0 |
| 232 | #define DDR_CDR_ODT_55ohm 0x1 |
| 233 | #define DDR_CDR_ODT_60ohm 0x2 |
| 234 | #define DDR_CDR_ODT_50ohm 0x3 |
| 235 | #define DDR_CDR_ODT_150ohm 0x4 |
| 236 | #define DDR_CDR_ODT_43ohm 0x5 |
| 237 | #define DDR_CDR_ODT_120ohm 0x6 |
| 238 | #endif |
York Sun | 6b06d7d | 2011-01-10 12:03:02 +0000 | [diff] [blame] | 239 | |
Tang Yuantian | a7787b7 | 2014-11-21 11:17:15 +0800 | [diff] [blame] | 240 | #define DDR_INIT_ADDR_EXT_UIA (1 << 31) |
| 241 | |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 242 | /* Record of register values computed */ |
| 243 | typedef struct fsl_ddr_cfg_regs_s { |
| 244 | struct { |
| 245 | unsigned int bnds; |
| 246 | unsigned int config; |
| 247 | unsigned int config_2; |
| 248 | } cs[CONFIG_CHIP_SELECTS_PER_CTRL]; |
| 249 | unsigned int timing_cfg_3; |
| 250 | unsigned int timing_cfg_0; |
| 251 | unsigned int timing_cfg_1; |
| 252 | unsigned int timing_cfg_2; |
| 253 | unsigned int ddr_sdram_cfg; |
| 254 | unsigned int ddr_sdram_cfg_2; |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 255 | unsigned int ddr_sdram_cfg_3; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 256 | unsigned int ddr_sdram_mode; |
| 257 | unsigned int ddr_sdram_mode_2; |
York Sun | e1fd16b | 2011-01-10 12:03:00 +0000 | [diff] [blame] | 258 | unsigned int ddr_sdram_mode_3; |
| 259 | unsigned int ddr_sdram_mode_4; |
| 260 | unsigned int ddr_sdram_mode_5; |
| 261 | unsigned int ddr_sdram_mode_6; |
| 262 | unsigned int ddr_sdram_mode_7; |
| 263 | unsigned int ddr_sdram_mode_8; |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 264 | unsigned int ddr_sdram_mode_9; |
| 265 | unsigned int ddr_sdram_mode_10; |
| 266 | unsigned int ddr_sdram_mode_11; |
| 267 | unsigned int ddr_sdram_mode_12; |
| 268 | unsigned int ddr_sdram_mode_13; |
| 269 | unsigned int ddr_sdram_mode_14; |
| 270 | unsigned int ddr_sdram_mode_15; |
| 271 | unsigned int ddr_sdram_mode_16; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 272 | unsigned int ddr_sdram_md_cntl; |
| 273 | unsigned int ddr_sdram_interval; |
| 274 | unsigned int ddr_data_init; |
| 275 | unsigned int ddr_sdram_clk_cntl; |
| 276 | unsigned int ddr_init_addr; |
| 277 | unsigned int ddr_init_ext_addr; |
| 278 | unsigned int timing_cfg_4; |
| 279 | unsigned int timing_cfg_5; |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 280 | unsigned int timing_cfg_6; |
| 281 | unsigned int timing_cfg_7; |
| 282 | unsigned int timing_cfg_8; |
| 283 | unsigned int timing_cfg_9; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 284 | unsigned int ddr_zq_cntl; |
| 285 | unsigned int ddr_wrlvl_cntl; |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 286 | unsigned int ddr_wrlvl_cntl_2; |
| 287 | unsigned int ddr_wrlvl_cntl_3; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 288 | unsigned int ddr_sr_cntr; |
| 289 | unsigned int ddr_sdram_rcw_1; |
| 290 | unsigned int ddr_sdram_rcw_2; |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 291 | unsigned int ddr_sdram_rcw_3; |
| 292 | unsigned int ddr_sdram_rcw_4; |
| 293 | unsigned int ddr_sdram_rcw_5; |
| 294 | unsigned int ddr_sdram_rcw_6; |
| 295 | unsigned int dq_map_0; |
| 296 | unsigned int dq_map_1; |
| 297 | unsigned int dq_map_2; |
| 298 | unsigned int dq_map_3; |
york | 7fd101c | 2010-07-02 22:25:54 +0000 | [diff] [blame] | 299 | unsigned int ddr_eor; |
York Sun | d2a9568 | 2011-01-10 12:02:59 +0000 | [diff] [blame] | 300 | unsigned int ddr_cdr1; |
| 301 | unsigned int ddr_cdr2; |
| 302 | unsigned int err_disable; |
| 303 | unsigned int err_int_en; |
York Sun | b406731 | 2016-08-29 17:04:12 +0800 | [diff] [blame] | 304 | unsigned int debug[64]; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 305 | } fsl_ddr_cfg_regs_t; |
| 306 | |
| 307 | typedef struct memctl_options_partial_s { |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 308 | unsigned int all_dimms_ecc_capable; |
| 309 | unsigned int all_dimms_tckmax_ps; |
| 310 | unsigned int all_dimms_burst_lengths_bitmask; |
| 311 | unsigned int all_dimms_registered; |
| 312 | unsigned int all_dimms_unbuffered; |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 313 | /* unsigned int lowest_common_spd_caslat; */ |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 314 | unsigned int all_dimms_minimum_trcd_ps; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 315 | } memctl_options_partial_t; |
| 316 | |
York Sun | 51d498f | 2011-05-27 07:25:51 +0800 | [diff] [blame] | 317 | #define DDR_DATA_BUS_WIDTH_64 0 |
| 318 | #define DDR_DATA_BUS_WIDTH_32 1 |
| 319 | #define DDR_DATA_BUS_WIDTH_16 2 |
York Sun | ef87cab | 2014-09-05 13:52:43 +0800 | [diff] [blame] | 320 | #define DDR_CSWL_CS0 0x04000001 |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 321 | /* |
| 322 | * Generalized parameters for memory controller configuration, |
| 323 | * might be a little specific to the FSL memory controller |
| 324 | */ |
| 325 | typedef struct memctl_options_s { |
| 326 | /* |
| 327 | * Memory organization parameters |
| 328 | * |
| 329 | * if DIMM is present in the system |
| 330 | * where DIMMs are with respect to chip select |
| 331 | * where chip selects are with respect to memory boundaries |
| 332 | */ |
| 333 | unsigned int registered_dimm_en; /* use registered DIMM support */ |
| 334 | |
| 335 | /* Options local to a Chip Select */ |
| 336 | struct cs_local_opts_s { |
| 337 | unsigned int auto_precharge; |
| 338 | unsigned int odt_rd_cfg; |
| 339 | unsigned int odt_wr_cfg; |
York Sun | e1fd16b | 2011-01-10 12:03:00 +0000 | [diff] [blame] | 340 | unsigned int odt_rtt_norm; |
| 341 | unsigned int odt_rtt_wr; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 342 | } cs_local_opts[CONFIG_CHIP_SELECTS_PER_CTRL]; |
| 343 | |
| 344 | /* Special configurations for chip select */ |
| 345 | unsigned int memctl_interleaving; |
| 346 | unsigned int memctl_interleaving_mode; |
| 347 | unsigned int ba_intlv_ctl; |
york | 7fd101c | 2010-07-02 22:25:54 +0000 | [diff] [blame] | 348 | unsigned int addr_hash; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 349 | |
| 350 | /* Operational mode parameters */ |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 351 | unsigned int ecc_mode; /* Use ECC? */ |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 352 | /* Initialize ECC using memory controller? */ |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 353 | unsigned int ecc_init_using_memctl; |
| 354 | unsigned int dqs_config; /* Use DQS? maybe only with DDR2? */ |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 355 | /* SREN - self-refresh during sleep */ |
| 356 | unsigned int self_refresh_in_sleep; |
Joakim Tjernlund | e368c20 | 2015-10-14 16:32:00 +0200 | [diff] [blame] | 357 | /* SR_IE - Self-refresh interrupt enable */ |
| 358 | unsigned int self_refresh_interrupt_en; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 359 | unsigned int dynamic_power; /* DYN_PWR */ |
| 360 | /* memory data width to use (16-bit, 32-bit, 64-bit) */ |
| 361 | unsigned int data_bus_width; |
Dave Liu | c360cea | 2009-03-14 12:48:30 +0800 | [diff] [blame] | 362 | unsigned int burst_length; /* BL4, OTF and BL8 */ |
| 363 | /* On-The-Fly Burst Chop enable */ |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 364 | unsigned int otf_burst_chop_en; |
Dave Liu | c360cea | 2009-03-14 12:48:30 +0800 | [diff] [blame] | 365 | /* mirrior DIMMs for DDR3 */ |
| 366 | unsigned int mirrored_dimm; |
york | 5800e7a | 2010-07-02 22:25:53 +0000 | [diff] [blame] | 367 | unsigned int quad_rank_present; |
Shengzhou Liu | eb11880 | 2016-03-10 17:36:56 +0800 | [diff] [blame] | 368 | unsigned int ap_en; /* address parity enable for RDIMM/DDR4-UDIMM */ |
York Sun | b61e061 | 2013-06-25 11:37:47 -0700 | [diff] [blame] | 369 | unsigned int x4_en; /* enable x4 devices */ |
York Sun | c0c32af | 2018-01-29 09:44:35 -0800 | [diff] [blame] | 370 | unsigned int package_3ds; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 371 | |
| 372 | /* Global Timing Parameters */ |
| 373 | unsigned int cas_latency_override; |
| 374 | unsigned int cas_latency_override_value; |
| 375 | unsigned int use_derated_caslat; |
| 376 | unsigned int additive_latency_override; |
| 377 | unsigned int additive_latency_override_value; |
| 378 | |
| 379 | unsigned int clk_adjust; /* */ |
Shengzhou Liu | 02fb276 | 2016-11-21 11:36:48 +0800 | [diff] [blame] | 380 | unsigned int cpo_override; /* override timing_cfg_2[CPO]*/ |
| 381 | unsigned int cpo_sample; /* optimize debug_29[24:31] */ |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 382 | unsigned int write_data_delay; /* DQS adjust */ |
Dave Liu | bdc9f7b | 2009-12-16 10:24:37 -0600 | [diff] [blame] | 383 | |
York Sun | ef87cab | 2014-09-05 13:52:43 +0800 | [diff] [blame] | 384 | unsigned int cswl_override; |
Dave Liu | bdc9f7b | 2009-12-16 10:24:37 -0600 | [diff] [blame] | 385 | unsigned int wrlvl_override; |
| 386 | unsigned int wrlvl_sample; /* Write leveling */ |
| 387 | unsigned int wrlvl_start; |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 388 | unsigned int wrlvl_ctl_2; |
| 389 | unsigned int wrlvl_ctl_3; |
Dave Liu | bdc9f7b | 2009-12-16 10:24:37 -0600 | [diff] [blame] | 390 | |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 391 | unsigned int half_strength_driver_enable; |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 392 | unsigned int twot_en; |
| 393 | unsigned int threet_en; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 394 | unsigned int bstopre; |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 395 | unsigned int tfaw_window_four_activates_ps; /* tFAW -- FOUR_ACT */ |
Dave Liu | 22cca7e | 2008-11-21 16:31:35 +0800 | [diff] [blame] | 396 | |
Dave Liu | c360cea | 2009-03-14 12:48:30 +0800 | [diff] [blame] | 397 | /* Rtt impedance */ |
| 398 | unsigned int rtt_override; /* rtt_override enable */ |
| 399 | unsigned int rtt_override_value; /* that is Rtt_Nom for DDR3 */ |
Dave Liu | 1aa3d08 | 2009-12-16 10:24:38 -0600 | [diff] [blame] | 400 | unsigned int rtt_wr_override_value; /* this is Rtt_WR for DDR3 */ |
Dave Liu | c360cea | 2009-03-14 12:48:30 +0800 | [diff] [blame] | 401 | |
Dave Liu | 22cca7e | 2008-11-21 16:31:35 +0800 | [diff] [blame] | 402 | /* Automatic self refresh */ |
| 403 | unsigned int auto_self_refresh_en; |
| 404 | unsigned int sr_it; |
Dave Liu | c360cea | 2009-03-14 12:48:30 +0800 | [diff] [blame] | 405 | /* ZQ calibration */ |
| 406 | unsigned int zq_en; |
| 407 | /* Write leveling */ |
| 408 | unsigned int wrlvl_en; |
York Sun | d2a9568 | 2011-01-10 12:02:59 +0000 | [diff] [blame] | 409 | /* RCW override for RDIMM */ |
| 410 | unsigned int rcw_override; |
| 411 | unsigned int rcw_1; |
| 412 | unsigned int rcw_2; |
York Sun | 426230a | 2018-01-29 09:44:33 -0800 | [diff] [blame] | 413 | unsigned int rcw_3; |
York Sun | d2a9568 | 2011-01-10 12:02:59 +0000 | [diff] [blame] | 414 | /* control register 1 */ |
| 415 | unsigned int ddr_cdr1; |
York Sun | 57495e4 | 2012-10-08 07:44:22 +0000 | [diff] [blame] | 416 | unsigned int ddr_cdr2; |
York Sun | 23f9670 | 2011-05-27 13:44:28 +0800 | [diff] [blame] | 417 | |
| 418 | unsigned int trwt_override; |
| 419 | unsigned int trwt; /* read-to-write turnaround */ |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 420 | } memctl_options_t; |
| 421 | |
York Sun | 1d71efb | 2014-08-01 15:51:00 -0700 | [diff] [blame] | 422 | phys_size_t fsl_ddr_sdram(void); |
| 423 | phys_size_t fsl_ddr_sdram_size(void); |
| 424 | phys_size_t fsl_other_ddr_sdram(unsigned long long base, |
| 425 | unsigned int first_ctrl, |
| 426 | unsigned int num_ctrls, |
| 427 | unsigned int dimm_slots_per_ctrl, |
| 428 | int (*board_need_reset)(void), |
| 429 | void (*board_reset)(void), |
| 430 | void (*board_de_reset)(void)); |
Kumar Gala | 3dbd5d7 | 2011-01-09 14:06:28 -0600 | [diff] [blame] | 431 | extern int fsl_use_spd(void); |
York Sun | 1d71efb | 2014-08-01 15:51:00 -0700 | [diff] [blame] | 432 | void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs, |
| 433 | unsigned int ctrl_num, int step); |
York Sun | f31cfd1 | 2012-10-08 07:44:24 +0000 | [diff] [blame] | 434 | u32 fsl_ddr_get_intl3r(void); |
York Sun | 1d71efb | 2014-08-01 15:51:00 -0700 | [diff] [blame] | 435 | void print_ddr_info(unsigned int start_ctrl); |
York Sun | 28a9667 | 2010-10-18 13:46:49 -0700 | [diff] [blame] | 436 | |
York Sun | c63e137 | 2013-06-25 11:37:48 -0700 | [diff] [blame] | 437 | static void __board_assert_mem_reset(void) |
| 438 | { |
| 439 | } |
| 440 | |
| 441 | static void __board_deassert_mem_reset(void) |
| 442 | { |
| 443 | } |
| 444 | |
| 445 | void board_assert_mem_reset(void) |
| 446 | __attribute__((weak, alias("__board_assert_mem_reset"))); |
| 447 | |
| 448 | void board_deassert_mem_reset(void) |
| 449 | __attribute__((weak, alias("__board_deassert_mem_reset"))); |
| 450 | |
| 451 | static int __board_need_mem_reset(void) |
| 452 | { |
| 453 | return 0; |
| 454 | } |
| 455 | |
| 456 | int board_need_mem_reset(void) |
| 457 | __attribute__((weak, alias("__board_need_mem_reset"))); |
| 458 | |
Tang Yuantian | a7787b7 | 2014-11-21 11:17:15 +0800 | [diff] [blame] | 459 | #if defined(CONFIG_DEEP_SLEEP) |
| 460 | void board_mem_sleep_setup(void); |
| 461 | bool is_warm_boot(void); |
| 462 | int fsl_dp_resume(void); |
| 463 | #endif |
Tang Yuantian | aade200 | 2014-04-17 15:33:46 +0800 | [diff] [blame] | 464 | |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 465 | /* |
| 466 | * The 85xx boards have a common prototype for fixed_sdram so put the |
| 467 | * declaration here. |
| 468 | */ |
| 469 | #ifdef CONFIG_MPC85xx |
| 470 | extern phys_size_t fixed_sdram(void); |
| 471 | #endif |
| 472 | |
| 473 | #if defined(CONFIG_DDR_ECC) |
| 474 | extern void ddr_enable_ecc(unsigned int dram_size); |
| 475 | #endif |
| 476 | |
| 477 | |
York Sun | 28a9667 | 2010-10-18 13:46:49 -0700 | [diff] [blame] | 478 | typedef struct fixed_ddr_parm{ |
| 479 | int min_freq; |
| 480 | int max_freq; |
| 481 | fsl_ddr_cfg_regs_t *ddr_settings; |
| 482 | } fixed_ddr_parm_t; |
Simon Glass | 3eace37 | 2017-04-06 12:47:04 -0600 | [diff] [blame] | 483 | |
| 484 | /** |
| 485 | * fsl_initdram() - Set up the SDRAM |
| 486 | * |
| 487 | * @return 0 if OK, -ve on error |
| 488 | */ |
| 489 | int fsl_initdram(void); |
| 490 | |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 491 | #endif |