Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 2 | /* |
Dave Liu | b19ecd3 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 3 | * (C) Copyright 2006-2007 Freescale Semiconductor, Inc. |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 4 | * |
Rafal Jaworowski | 4a9b6aa | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 5 | * (C) Copyright 2006 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Wolfgang Denk | ebd3deb | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 7 | * |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 8 | * Copyright (C) 2004-2006 Freescale Semiconductor, Inc. |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 9 | * (C) Copyright 2003 Motorola Inc. |
| 10 | * Xianghua Xiao (X.Xiao@motorola.com) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 11 | */ |
| 12 | |
Mario Six | 538b575 | 2018-08-06 10:23:30 +0200 | [diff] [blame] | 13 | #ifndef CONFIG_MPC83XX_SDRAM |
| 14 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 15 | #include <common.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 16 | #include <cpu_func.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame^] | 17 | #include <log.h> |
Simon Glass | a9dc068 | 2019-12-28 10:44:59 -0700 | [diff] [blame] | 18 | #include <time.h> |
Simon Glass | f5c208d | 2019-11-14 12:57:20 -0700 | [diff] [blame] | 19 | #include <vsprintf.h> |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 20 | #include <asm/processor.h> |
Stefan Roese | 3fab999 | 2009-12-08 09:10:04 +0100 | [diff] [blame] | 21 | #include <asm/io.h> |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 22 | #include <i2c.h> |
| 23 | #include <spd.h> |
| 24 | #include <asm/mmu.h> |
| 25 | #include <spd_sdram.h> |
| 26 | |
Kim Phillips | df6df6f | 2008-03-28 10:18:53 -0500 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 29 | void board_add_ram_info(int use_default) |
| 30 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 31 | volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR; |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 32 | volatile ddr83xx_t *ddr = &immap->ddr; |
Kim Phillips | df6df6f | 2008-03-28 10:18:53 -0500 | [diff] [blame] | 33 | char buf[32]; |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 34 | |
| 35 | printf(" (DDR%d", ((ddr->sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK) |
| 36 | >> SDRAM_CFG_SDRAM_TYPE_SHIFT) - 1); |
| 37 | |
Mario Six | 9164bdd | 2019-01-21 09:17:25 +0100 | [diff] [blame] | 38 | #if defined(CONFIG_ARCH_MPC8308) || defined(CONFIG_ARCH_MPC831X) |
Joe Hershberger | cc03b80 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 39 | if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_16) |
| 40 | puts(", 16-bit"); |
| 41 | else if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_32) |
| 42 | puts(", 32-bit"); |
| 43 | else |
| 44 | puts(", unknown width"); |
| 45 | #else |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 46 | if (ddr->sdram_cfg & SDRAM_CFG_32_BE) |
| 47 | puts(", 32-bit"); |
| 48 | else |
| 49 | puts(", 64-bit"); |
Joe Hershberger | cc03b80 | 2011-10-11 23:57:29 -0500 | [diff] [blame] | 50 | #endif |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 51 | |
| 52 | if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN) |
Kim Phillips | df6df6f | 2008-03-28 10:18:53 -0500 | [diff] [blame] | 53 | puts(", ECC on"); |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 54 | else |
Kim Phillips | df6df6f | 2008-03-28 10:18:53 -0500 | [diff] [blame] | 55 | puts(", ECC off"); |
| 56 | |
| 57 | printf(", %s MHz)", strmhz(buf, gd->mem_clk)); |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 58 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 59 | #if defined(CONFIG_SYS_LB_SDRAM) && defined(CONFIG_SYS_LBC_SDRAM_SIZE) |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 60 | puts("\nSDRAM: "); |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 61 | print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, " (local bus)"); |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 62 | #endif |
| 63 | } |
| 64 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 65 | #ifdef CONFIG_SPD_EEPROM |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 66 | #ifndef CONFIG_SYS_READ_SPD |
| 67 | #define CONFIG_SYS_READ_SPD i2c_read |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 68 | #endif |
Andre Schwarz | 10ea0af | 2011-04-14 14:54:05 +0200 | [diff] [blame] | 69 | #ifndef SPD_EEPROM_OFFSET |
| 70 | #define SPD_EEPROM_OFFSET 0 |
| 71 | #endif |
| 72 | #ifndef SPD_EEPROM_ADDR_LEN |
| 73 | #define SPD_EEPROM_ADDR_LEN 1 |
| 74 | #endif |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 75 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 76 | /* |
| 77 | * Convert picoseconds into clock cycles (rounding up if needed). |
| 78 | */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 79 | int |
| 80 | picos_to_clk(int picos) |
| 81 | { |
Kim Phillips | c02cf1e | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 82 | unsigned int mem_bus_clk; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 83 | int clks; |
| 84 | |
Kim Phillips | c02cf1e | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 85 | mem_bus_clk = gd->mem_clk >> 1; |
| 86 | clks = picos / (1000000000 / (mem_bus_clk / 1000)); |
| 87 | if (picos % (1000000000 / (mem_bus_clk / 1000)) != 0) |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 88 | clks++; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 89 | |
| 90 | return clks; |
| 91 | } |
| 92 | |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 93 | unsigned int banksize(unsigned char row_dens) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 94 | { |
| 95 | return ((row_dens >> 2) | ((row_dens & 3) << 6)) << 24; |
| 96 | } |
| 97 | |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 98 | int read_spd(uint addr) |
| 99 | { |
| 100 | return ((int) addr); |
| 101 | } |
| 102 | |
Rafal Jaworowski | 4a9b6aa | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 103 | #undef SPD_DEBUG |
| 104 | #ifdef SPD_DEBUG |
| 105 | static void spd_debug(spd_eeprom_t *spd) |
| 106 | { |
| 107 | printf ("\nDIMM type: %-18.18s\n", spd->mpart); |
| 108 | printf ("SPD size: %d\n", spd->info_size); |
| 109 | printf ("EEPROM size: %d\n", 1 << spd->chip_size); |
| 110 | printf ("Memory type: %d\n", spd->mem_type); |
| 111 | printf ("Row addr: %d\n", spd->nrow_addr); |
| 112 | printf ("Column addr: %d\n", spd->ncol_addr); |
| 113 | printf ("# of rows: %d\n", spd->nrows); |
| 114 | printf ("Row density: %d\n", spd->row_dens); |
| 115 | printf ("# of banks: %d\n", spd->nbanks); |
| 116 | printf ("Data width: %d\n", |
| 117 | 256 * spd->dataw_msb + spd->dataw_lsb); |
| 118 | printf ("Chip width: %d\n", spd->primw); |
| 119 | printf ("Refresh rate: %02X\n", spd->refresh); |
| 120 | printf ("CAS latencies: %02X\n", spd->cas_lat); |
| 121 | printf ("Write latencies: %02X\n", spd->write_lat); |
| 122 | printf ("tRP: %d\n", spd->trp); |
| 123 | printf ("tRCD: %d\n", spd->trcd); |
| 124 | printf ("\n"); |
| 125 | } |
| 126 | #endif /* SPD_DEBUG */ |
| 127 | |
| 128 | long int spd_sdram() |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 129 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 130 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 131 | volatile ddr83xx_t *ddr = &immap->ddr; |
| 132 | volatile law83xx_t *ecm = &immap->sysconf.ddrlaw[0]; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 133 | spd_eeprom_t spd; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 134 | unsigned int n_ranks; |
| 135 | unsigned int odt_rd_cfg, odt_wr_cfg; |
| 136 | unsigned char twr_clk, twtr_clk; |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 137 | unsigned int sdram_type; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 138 | unsigned int memsize; |
| 139 | unsigned int law_size; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 140 | unsigned char caslat, caslat_ctrl; |
Kim Phillips | 805b3c6 | 2011-11-15 22:59:51 +0000 | [diff] [blame] | 141 | unsigned int trfc, trfc_clk, trfc_low; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 142 | unsigned int trcd_clk, trtp_clk; |
| 143 | unsigned char cke_min_clk; |
| 144 | unsigned char add_lat, wr_lat; |
| 145 | unsigned char wr_data_delay; |
| 146 | unsigned char four_act; |
| 147 | unsigned char cpo; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 148 | unsigned char burstlen; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 149 | unsigned char odt_cfg, mode_odt_enable; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 150 | unsigned int max_bus_clk; |
| 151 | unsigned int max_data_rate, effective_data_rate; |
| 152 | unsigned int ddrc_clk; |
| 153 | unsigned int refresh_clk; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 154 | unsigned int sdram_cfg; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 155 | unsigned int ddrc_ecc_enable; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 156 | unsigned int pvr = get_pvr(); |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 157 | |
Stefan Roese | 3fab999 | 2009-12-08 09:10:04 +0100 | [diff] [blame] | 158 | /* |
| 159 | * First disable the memory controller (could be enabled |
| 160 | * by the debugger) |
| 161 | */ |
| 162 | clrsetbits_be32(&ddr->sdram_cfg, SDRAM_CFG_MEM_EN, 0); |
| 163 | sync(); |
| 164 | isync(); |
| 165 | |
Wolfgang Denk | 87b3d4b | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 166 | /* Read SPD parameters with I2C */ |
Andre Schwarz | 10ea0af | 2011-04-14 14:54:05 +0200 | [diff] [blame] | 167 | CONFIG_SYS_READ_SPD(SPD_EEPROM_ADDRESS, SPD_EEPROM_OFFSET, |
| 168 | SPD_EEPROM_ADDR_LEN, (uchar *) &spd, sizeof(spd)); |
Rafal Jaworowski | 4a9b6aa | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 169 | #ifdef SPD_DEBUG |
| 170 | spd_debug(&spd); |
| 171 | #endif |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 172 | /* Check the memory type */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 173 | if (spd.mem_type != SPD_MEMTYPE_DDR && spd.mem_type != SPD_MEMTYPE_DDR2) { |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 174 | debug("DDR: Module mem type is %02X\n", spd.mem_type); |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | /* Check the number of physical bank */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 179 | if (spd.mem_type == SPD_MEMTYPE_DDR) { |
| 180 | n_ranks = spd.nrows; |
| 181 | } else { |
| 182 | n_ranks = (spd.nrows & 0x7) + 1; |
| 183 | } |
| 184 | |
| 185 | if (n_ranks > 2) { |
| 186 | printf("DDR: The number of physical bank is %02X\n", n_ranks); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 187 | return 0; |
| 188 | } |
| 189 | |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 190 | /* Check if the number of row of the module is in the range of DDRC */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 191 | if (spd.nrow_addr < 12 || spd.nrow_addr > 15) { |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 192 | printf("DDR: Row number is out of range of DDRC, row=%02X\n", |
| 193 | spd.nrow_addr); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 194 | return 0; |
| 195 | } |
| 196 | |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 197 | /* Check if the number of col of the module is in the range of DDRC */ |
| 198 | if (spd.ncol_addr < 8 || spd.ncol_addr > 11) { |
| 199 | printf("DDR: Col number is out of range of DDRC, col=%02X\n", |
| 200 | spd.ncol_addr); |
| 201 | return 0; |
| 202 | } |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 203 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 204 | #ifdef CONFIG_SYS_DDRCDR_VALUE |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 205 | /* |
| 206 | * Adjust DDR II IO voltage biasing. It just makes it work. |
| 207 | */ |
| 208 | if(spd.mem_type == SPD_MEMTYPE_DDR2) { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 209 | immap->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 210 | } |
Dave Liu | b19ecd3 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 211 | udelay(50000); |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 212 | #endif |
| 213 | |
| 214 | /* |
| 215 | * ODT configuration recommendation from DDR Controller Chapter. |
| 216 | */ |
| 217 | odt_rd_cfg = 0; /* Never assert ODT */ |
| 218 | odt_wr_cfg = 0; /* Never assert ODT */ |
| 219 | if (spd.mem_type == SPD_MEMTYPE_DDR2) { |
| 220 | odt_wr_cfg = 1; /* Assert ODT on writes to CSn */ |
| 221 | } |
| 222 | |
Wolfgang Denk | 87b3d4b | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 223 | /* Setup DDR chip select register */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 224 | #ifdef CONFIG_SYS_83XX_DDR_USES_CS0 |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 225 | ddr->csbnds[0].csbnds = (banksize(spd.row_dens) >> 24) - 1; |
| 226 | ddr->cs_config[0] = ( 1 << 31 |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 227 | | (odt_rd_cfg << 20) |
| 228 | | (odt_wr_cfg << 16) |
Jerry Van Baren | a07888b | 2009-03-13 11:40:10 -0400 | [diff] [blame] | 229 | | ((spd.nbanks == 8 ? 1 : 0) << 14) |
| 230 | | ((spd.nrow_addr - 12) << 8) |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 231 | | (spd.ncol_addr - 8) ); |
| 232 | debug("\n"); |
| 233 | debug("cs0_bnds = 0x%08x\n",ddr->csbnds[0].csbnds); |
| 234 | debug("cs0_config = 0x%08x\n",ddr->cs_config[0]); |
| 235 | |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 236 | if (n_ranks == 2) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 237 | ddr->csbnds[1].csbnds = ( (banksize(spd.row_dens) >> 8) |
| 238 | | ((banksize(spd.row_dens) >> 23) - 1) ); |
| 239 | ddr->cs_config[1] = ( 1<<31 |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 240 | | (odt_rd_cfg << 20) |
| 241 | | (odt_wr_cfg << 16) |
Jerry Van Baren | a07888b | 2009-03-13 11:40:10 -0400 | [diff] [blame] | 242 | | ((spd.nbanks == 8 ? 1 : 0) << 14) |
| 243 | | ((spd.nrow_addr - 12) << 8) |
| 244 | | (spd.ncol_addr - 8) ); |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 245 | debug("cs1_bnds = 0x%08x\n",ddr->csbnds[1].csbnds); |
| 246 | debug("cs1_config = 0x%08x\n",ddr->cs_config[1]); |
| 247 | } |
| 248 | |
| 249 | #else |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 250 | ddr->csbnds[2].csbnds = (banksize(spd.row_dens) >> 24) - 1; |
| 251 | ddr->cs_config[2] = ( 1 << 31 |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 252 | | (odt_rd_cfg << 20) |
| 253 | | (odt_wr_cfg << 16) |
Jerry Van Baren | a07888b | 2009-03-13 11:40:10 -0400 | [diff] [blame] | 254 | | ((spd.nbanks == 8 ? 1 : 0) << 14) |
| 255 | | ((spd.nrow_addr - 12) << 8) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 256 | | (spd.ncol_addr - 8) ); |
| 257 | debug("\n"); |
| 258 | debug("cs2_bnds = 0x%08x\n",ddr->csbnds[2].csbnds); |
| 259 | debug("cs2_config = 0x%08x\n",ddr->cs_config[2]); |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 260 | |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 261 | if (n_ranks == 2) { |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 262 | ddr->csbnds[3].csbnds = ( (banksize(spd.row_dens) >> 8) |
| 263 | | ((banksize(spd.row_dens) >> 23) - 1) ); |
| 264 | ddr->cs_config[3] = ( 1<<31 |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 265 | | (odt_rd_cfg << 20) |
| 266 | | (odt_wr_cfg << 16) |
Jerry Van Baren | a07888b | 2009-03-13 11:40:10 -0400 | [diff] [blame] | 267 | | ((spd.nbanks == 8 ? 1 : 0) << 14) |
| 268 | | ((spd.nrow_addr - 12) << 8) |
| 269 | | (spd.ncol_addr - 8) ); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 270 | debug("cs3_bnds = 0x%08x\n",ddr->csbnds[3].csbnds); |
| 271 | debug("cs3_config = 0x%08x\n",ddr->cs_config[3]); |
| 272 | } |
Timur Tabi | 054838e | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 273 | #endif |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 274 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 275 | /* |
| 276 | * Figure out memory size in Megabytes. |
| 277 | */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 278 | memsize = n_ranks * banksize(spd.row_dens) / 0x100000; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 279 | |
| 280 | /* |
| 281 | * First supported LAW size is 16M, at LAWAR_SIZE_16M == 23. |
| 282 | */ |
| 283 | law_size = 19 + __ilog2(memsize); |
| 284 | |
| 285 | /* |
| 286 | * Set up LAWBAR for all of DDR. |
| 287 | */ |
Mario Six | 805cac1 | 2019-01-21 09:18:16 +0100 | [diff] [blame] | 288 | ecm->bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 289 | ecm->ar = (LAWAR_EN | LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & law_size)); |
| 290 | debug("DDR:bar=0x%08x\n", ecm->bar); |
| 291 | debug("DDR:ar=0x%08x\n", ecm->ar); |
| 292 | |
| 293 | /* |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 294 | * Find the largest CAS by locating the highest 1 bit |
| 295 | * in the spd.cas_lat field. Translate it to a DDR |
| 296 | * controller field value: |
| 297 | * |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 298 | * CAS Lat DDR I DDR II Ctrl |
| 299 | * Clocks SPD Bit SPD Bit Value |
| 300 | * ------- ------- ------- ----- |
| 301 | * 1.0 0 0001 |
| 302 | * 1.5 1 0010 |
| 303 | * 2.0 2 2 0011 |
| 304 | * 2.5 3 0100 |
| 305 | * 3.0 4 3 0101 |
| 306 | * 3.5 5 0110 |
| 307 | * 4.0 6 4 0111 |
| 308 | * 4.5 1000 |
| 309 | * 5.0 5 1001 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 310 | */ |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 311 | caslat = __ilog2(spd.cas_lat); |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 312 | if ((spd.mem_type == SPD_MEMTYPE_DDR) |
| 313 | && (caslat > 6)) { |
| 314 | printf("DDR I: Invalid SPD CAS Latency: 0x%x.\n", spd.cas_lat); |
| 315 | return 0; |
| 316 | } else if (spd.mem_type == SPD_MEMTYPE_DDR2 |
| 317 | && (caslat < 2 || caslat > 5)) { |
| 318 | printf("DDR II: Invalid SPD CAS Latency: 0x%x.\n", |
| 319 | spd.cas_lat); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 320 | return 0; |
| 321 | } |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 322 | debug("DDR: caslat SPD bit is %d\n", caslat); |
| 323 | |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 324 | max_bus_clk = 1000 *10 / (((spd.clk_cycle & 0xF0) >> 4) * 10 |
| 325 | + (spd.clk_cycle & 0x0f)); |
| 326 | max_data_rate = max_bus_clk * 2; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 327 | |
Wolfgang Denk | af0501a | 2008-10-19 02:35:50 +0200 | [diff] [blame] | 328 | debug("DDR:Module maximum data rate is: %d MHz\n", max_data_rate); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 329 | |
Kim Phillips | c02cf1e | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 330 | ddrc_clk = gd->mem_clk / 1000000; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 331 | effective_data_rate = 0; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 332 | |
Dave Liu | 6b05104 | 2009-02-25 12:31:32 +0800 | [diff] [blame] | 333 | if (max_data_rate >= 460) { /* it is DDR2-800, 667, 533 */ |
| 334 | if (spd.cas_lat & 0x08) |
| 335 | caslat = 3; |
| 336 | else |
| 337 | caslat = 4; |
| 338 | if (ddrc_clk <= 460 && ddrc_clk > 350) |
| 339 | effective_data_rate = 400; |
| 340 | else if (ddrc_clk <=350 && ddrc_clk > 280) |
| 341 | effective_data_rate = 333; |
| 342 | else if (ddrc_clk <= 280 && ddrc_clk > 230) |
| 343 | effective_data_rate = 266; |
| 344 | else |
| 345 | effective_data_rate = 200; |
| 346 | } else if (max_data_rate >= 390 && max_data_rate < 460) { /* it is DDR 400 */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 347 | if (ddrc_clk <= 460 && ddrc_clk > 350) { |
| 348 | /* DDR controller clk at 350~460 */ |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 349 | effective_data_rate = 400; /* 5ns */ |
| 350 | caslat = caslat; |
| 351 | } else if (ddrc_clk <= 350 && ddrc_clk > 280) { |
| 352 | /* DDR controller clk at 280~350 */ |
| 353 | effective_data_rate = 333; /* 6ns */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 354 | if (spd.clk_cycle2 == 0x60) |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 355 | caslat = caslat - 1; |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 356 | else |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 357 | caslat = caslat; |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 358 | } else if (ddrc_clk <= 280 && ddrc_clk > 230) { |
| 359 | /* DDR controller clk at 230~280 */ |
| 360 | effective_data_rate = 266; /* 7.5ns */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 361 | if (spd.clk_cycle3 == 0x75) |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 362 | caslat = caslat - 2; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 363 | else if (spd.clk_cycle2 == 0x75) |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 364 | caslat = caslat - 1; |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 365 | else |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 366 | caslat = caslat; |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 367 | } else if (ddrc_clk <= 230 && ddrc_clk > 90) { |
| 368 | /* DDR controller clk at 90~230 */ |
| 369 | effective_data_rate = 200; /* 10ns */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 370 | if (spd.clk_cycle3 == 0xa0) |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 371 | caslat = caslat - 2; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 372 | else if (spd.clk_cycle2 == 0xa0) |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 373 | caslat = caslat - 1; |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 374 | else |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 375 | caslat = caslat; |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 376 | } |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 377 | } else if (max_data_rate >= 323) { /* it is DDR 333 */ |
| 378 | if (ddrc_clk <= 350 && ddrc_clk > 280) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 379 | /* DDR controller clk at 280~350 */ |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 380 | effective_data_rate = 333; /* 6ns */ |
| 381 | caslat = caslat; |
| 382 | } else if (ddrc_clk <= 280 && ddrc_clk > 230) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 383 | /* DDR controller clk at 230~280 */ |
| 384 | effective_data_rate = 266; /* 7.5ns */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 385 | if (spd.clk_cycle2 == 0x75) |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 386 | caslat = caslat - 1; |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 387 | else |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 388 | caslat = caslat; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 389 | } else if (ddrc_clk <= 230 && ddrc_clk > 90) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 390 | /* DDR controller clk at 90~230 */ |
| 391 | effective_data_rate = 200; /* 10ns */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 392 | if (spd.clk_cycle3 == 0xa0) |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 393 | caslat = caslat - 2; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 394 | else if (spd.clk_cycle2 == 0xa0) |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 395 | caslat = caslat - 1; |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 396 | else |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 397 | caslat = caslat; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 398 | } |
| 399 | } else if (max_data_rate >= 256) { /* it is DDR 266 */ |
| 400 | if (ddrc_clk <= 350 && ddrc_clk > 280) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 401 | /* DDR controller clk at 280~350 */ |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 402 | printf("DDR: DDR controller freq is more than " |
| 403 | "max data rate of the module\n"); |
| 404 | return 0; |
| 405 | } else if (ddrc_clk <= 280 && ddrc_clk > 230) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 406 | /* DDR controller clk at 230~280 */ |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 407 | effective_data_rate = 266; /* 7.5ns */ |
| 408 | caslat = caslat; |
| 409 | } else if (ddrc_clk <= 230 && ddrc_clk > 90) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 410 | /* DDR controller clk at 90~230 */ |
| 411 | effective_data_rate = 200; /* 10ns */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 412 | if (spd.clk_cycle2 == 0xa0) |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 413 | caslat = caslat - 1; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 414 | } |
| 415 | } else if (max_data_rate >= 190) { /* it is DDR 200 */ |
| 416 | if (ddrc_clk <= 350 && ddrc_clk > 230) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 417 | /* DDR controller clk at 230~350 */ |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 418 | printf("DDR: DDR controller freq is more than " |
| 419 | "max data rate of the module\n"); |
| 420 | return 0; |
| 421 | } else if (ddrc_clk <= 230 && ddrc_clk > 90) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 422 | /* DDR controller clk at 90~230 */ |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 423 | effective_data_rate = 200; /* 10ns */ |
| 424 | caslat = caslat; |
| 425 | } |
Timur Tabi | efec630 | 2006-10-31 18:13:36 -0600 | [diff] [blame] | 426 | } |
| 427 | |
Wolfgang Denk | af0501a | 2008-10-19 02:35:50 +0200 | [diff] [blame] | 428 | debug("DDR:Effective data rate is: %dMHz\n", effective_data_rate); |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 429 | debug("DDR:The MSB 1 of CAS Latency is: %d\n", caslat); |
Timur Tabi | efec630 | 2006-10-31 18:13:36 -0600 | [diff] [blame] | 430 | |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 431 | /* |
| 432 | * Errata DDR6 work around: input enable 2 cycles earlier. |
Mario Six | 0344f5e | 2019-01-21 09:17:27 +0100 | [diff] [blame] | 433 | * including MPC834X Rev1.0/1.1 and MPC8360 Rev1.1/1.2. |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 434 | */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 435 | if(PVR_MAJ(pvr) <= 1 && spd.mem_type == SPD_MEMTYPE_DDR){ |
| 436 | if (caslat == 2) |
| 437 | ddr->debug_reg = 0x201c0000; /* CL=2 */ |
| 438 | else if (caslat == 3) |
| 439 | ddr->debug_reg = 0x202c0000; /* CL=2.5 */ |
| 440 | else if (caslat == 4) |
| 441 | ddr->debug_reg = 0x202c0000; /* CL=3.0 */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 442 | |
Mario Six | c463b6d | 2019-01-21 09:18:21 +0100 | [diff] [blame] | 443 | sync(); |
Timur Tabi | efec630 | 2006-10-31 18:13:36 -0600 | [diff] [blame] | 444 | |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 445 | debug("Errata DDR6 (debug_reg=0x%08x)\n", ddr->debug_reg); |
| 446 | } |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 447 | |
| 448 | /* |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 449 | * Convert caslat clocks to DDR controller value. |
| 450 | * Force caslat_ctrl to be DDR Controller field-sized. |
| 451 | */ |
| 452 | if (spd.mem_type == SPD_MEMTYPE_DDR) { |
| 453 | caslat_ctrl = (caslat + 1) & 0x07; |
| 454 | } else { |
| 455 | caslat_ctrl = (2 * caslat - 1) & 0x0f; |
| 456 | } |
| 457 | |
| 458 | debug("DDR: effective data rate is %d MHz\n", effective_data_rate); |
| 459 | debug("DDR: caslat SPD bit is %d, controller field is 0x%x\n", |
| 460 | caslat, caslat_ctrl); |
| 461 | |
| 462 | /* |
| 463 | * Timing Config 0. |
| 464 | * Avoid writing for DDR I. |
| 465 | */ |
| 466 | if (spd.mem_type == SPD_MEMTYPE_DDR2) { |
| 467 | unsigned char taxpd_clk = 8; /* By the book. */ |
| 468 | unsigned char tmrd_clk = 2; /* By the book. */ |
| 469 | unsigned char act_pd_exit = 2; /* Empirical? */ |
| 470 | unsigned char pre_pd_exit = 6; /* Empirical? */ |
| 471 | |
| 472 | ddr->timing_cfg_0 = (0 |
| 473 | | ((act_pd_exit & 0x7) << 20) /* ACT_PD_EXIT */ |
| 474 | | ((pre_pd_exit & 0x7) << 16) /* PRE_PD_EXIT */ |
| 475 | | ((taxpd_clk & 0xf) << 8) /* ODT_PD_EXIT */ |
| 476 | | ((tmrd_clk & 0xf) << 0) /* MRS_CYC */ |
| 477 | ); |
| 478 | debug("DDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0); |
| 479 | } |
| 480 | |
| 481 | /* |
| 482 | * For DDR I, WRREC(Twr) and WRTORD(Twtr) are not in SPD, |
| 483 | * use conservative value. |
| 484 | * For DDR II, they are bytes 36 and 37, in quarter nanos. |
| 485 | */ |
| 486 | |
| 487 | if (spd.mem_type == SPD_MEMTYPE_DDR) { |
| 488 | twr_clk = 3; /* Clocks */ |
| 489 | twtr_clk = 1; /* Clocks */ |
| 490 | } else { |
| 491 | twr_clk = picos_to_clk(spd.twr * 250); |
| 492 | twtr_clk = picos_to_clk(spd.twtr * 250); |
Dave Liu | 6b05104 | 2009-02-25 12:31:32 +0800 | [diff] [blame] | 493 | if (twtr_clk < 2) |
| 494 | twtr_clk = 2; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | /* |
| 498 | * Calculate Trfc, in picos. |
| 499 | * DDR I: Byte 42 straight up in ns. |
| 500 | * DDR II: Byte 40 and 42 swizzled some, in ns. |
| 501 | */ |
| 502 | if (spd.mem_type == SPD_MEMTYPE_DDR) { |
| 503 | trfc = spd.trfc * 1000; /* up to ps */ |
| 504 | } else { |
| 505 | unsigned int byte40_table_ps[8] = { |
| 506 | 0, |
| 507 | 250, |
| 508 | 330, |
| 509 | 500, |
| 510 | 660, |
| 511 | 750, |
| 512 | 0, |
| 513 | 0 |
| 514 | }; |
| 515 | |
| 516 | trfc = (((spd.trctrfc_ext & 0x1) * 256) + spd.trfc) * 1000 |
| 517 | + byte40_table_ps[(spd.trctrfc_ext >> 1) & 0x7]; |
| 518 | } |
| 519 | trfc_clk = picos_to_clk(trfc); |
| 520 | |
| 521 | /* |
| 522 | * Trcd, Byte 29, from quarter nanos to ps and clocks. |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 523 | */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 524 | trcd_clk = picos_to_clk(spd.trcd * 250) & 0x7; |
| 525 | |
| 526 | /* |
| 527 | * Convert trfc_clk to DDR controller fields. DDR I should |
| 528 | * fit in the REFREC field (16-19) of TIMING_CFG_1, but the |
| 529 | * 83xx controller has an extended REFREC field of three bits. |
| 530 | * The controller automatically adds 8 clocks to this value, |
| 531 | * so preadjust it down 8 first before splitting it up. |
| 532 | */ |
| 533 | trfc_low = (trfc_clk - 8) & 0xf; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 534 | |
| 535 | ddr->timing_cfg_1 = |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 536 | (((picos_to_clk(spd.trp * 250) & 0x07) << 28 ) | /* PRETOACT */ |
| 537 | ((picos_to_clk(spd.tras * 1000) & 0x0f ) << 24 ) | /* ACTTOPRE */ |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 538 | (trcd_clk << 20 ) | /* ACTTORW */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 539 | (caslat_ctrl << 16 ) | /* CASLAT */ |
| 540 | (trfc_low << 12 ) | /* REFEC */ |
| 541 | ((twr_clk & 0x07) << 8) | /* WRRREC */ |
| 542 | ((picos_to_clk(spd.trrd * 250) & 0x07) << 4) | /* ACTTOACT */ |
| 543 | ((twtr_clk & 0x07) << 0) /* WRTORD */ |
| 544 | ); |
| 545 | |
| 546 | /* |
| 547 | * Additive Latency |
| 548 | * For DDR I, 0. |
| 549 | * For DDR II, with ODT enabled, use "a value" less than ACTTORW, |
| 550 | * which comes from Trcd, and also note that: |
| 551 | * add_lat + caslat must be >= 4 |
| 552 | */ |
| 553 | add_lat = 0; |
| 554 | if (spd.mem_type == SPD_MEMTYPE_DDR2 |
| 555 | && (odt_wr_cfg || odt_rd_cfg) |
| 556 | && (caslat < 4)) { |
Dave Liu | 6b05104 | 2009-02-25 12:31:32 +0800 | [diff] [blame] | 557 | add_lat = 4 - caslat; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 558 | if ((add_lat + caslat) < 4) { |
| 559 | add_lat = 0; |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | /* |
| 564 | * Write Data Delay |
| 565 | * Historically 0x2 == 4/8 clock delay. |
| 566 | * Empirically, 0x3 == 6/8 clock delay is suggested for DDR I 266. |
| 567 | */ |
| 568 | wr_data_delay = 2; |
Andre Schwarz | 10ea0af | 2011-04-14 14:54:05 +0200 | [diff] [blame] | 569 | #ifdef CONFIG_SYS_DDR_WRITE_DATA_DELAY |
| 570 | wr_data_delay = CONFIG_SYS_DDR_WRITE_DATA_DELAY; |
| 571 | #endif |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 572 | |
| 573 | /* |
| 574 | * Write Latency |
| 575 | * Read to Precharge |
| 576 | * Minimum CKE Pulse Width. |
| 577 | * Four Activate Window |
| 578 | */ |
| 579 | if (spd.mem_type == SPD_MEMTYPE_DDR) { |
| 580 | /* |
| 581 | * This is a lie. It should really be 1, but if it is |
| 582 | * set to 1, bits overlap into the old controller's |
| 583 | * otherwise unused ACSM field. If we leave it 0, then |
| 584 | * the HW will magically treat it as 1 for DDR 1. Oh Yea. |
| 585 | */ |
| 586 | wr_lat = 0; |
| 587 | |
| 588 | trtp_clk = 2; /* By the book. */ |
| 589 | cke_min_clk = 1; /* By the book. */ |
| 590 | four_act = 1; /* By the book. */ |
| 591 | |
| 592 | } else { |
| 593 | wr_lat = caslat - 1; |
| 594 | |
| 595 | /* Convert SPD value from quarter nanos to picos. */ |
| 596 | trtp_clk = picos_to_clk(spd.trtp * 250); |
Dave Liu | 6b05104 | 2009-02-25 12:31:32 +0800 | [diff] [blame] | 597 | if (trtp_clk < 2) |
| 598 | trtp_clk = 2; |
| 599 | trtp_clk += add_lat; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 600 | |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 601 | cke_min_clk = 3; /* By the book. */ |
| 602 | four_act = picos_to_clk(37500); /* By the book. 1k pages? */ |
| 603 | } |
| 604 | |
| 605 | /* |
| 606 | * Empirically set ~MCAS-to-preamble override for DDR 2. |
Robert P. J. Day | cbd618f | 2015-12-16 12:25:42 -0500 | [diff] [blame] | 607 | * Your mileage will vary. |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 608 | */ |
| 609 | cpo = 0; |
| 610 | if (spd.mem_type == SPD_MEMTYPE_DDR2) { |
Andre Schwarz | 10ea0af | 2011-04-14 14:54:05 +0200 | [diff] [blame] | 611 | #ifdef CONFIG_SYS_DDR_CPO |
| 612 | cpo = CONFIG_SYS_DDR_CPO; |
| 613 | #else |
Dave Liu | 939649a | 2008-01-10 23:09:33 +0800 | [diff] [blame] | 614 | if (effective_data_rate == 266) { |
| 615 | cpo = 0x4; /* READ_LAT + 1/2 */ |
Dave Liu | 6b05104 | 2009-02-25 12:31:32 +0800 | [diff] [blame] | 616 | } else if (effective_data_rate == 333) { |
| 617 | cpo = 0x6; /* READ_LAT + 1 */ |
| 618 | } else if (effective_data_rate == 400) { |
Dave Liu | b19ecd3 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 619 | cpo = 0x7; /* READ_LAT + 5/4 */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 620 | } else { |
| 621 | /* Automatic calibration */ |
| 622 | cpo = 0x1f; |
| 623 | } |
Andre Schwarz | 10ea0af | 2011-04-14 14:54:05 +0200 | [diff] [blame] | 624 | #endif |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | ddr->timing_cfg_2 = (0 |
| 628 | | ((add_lat & 0x7) << 28) /* ADD_LAT */ |
| 629 | | ((cpo & 0x1f) << 23) /* CPO */ |
| 630 | | ((wr_lat & 0x7) << 19) /* WR_LAT */ |
| 631 | | ((trtp_clk & 0x7) << 13) /* RD_TO_PRE */ |
| 632 | | ((wr_data_delay & 0x7) << 10) /* WR_DATA_DELAY */ |
| 633 | | ((cke_min_clk & 0x7) << 6) /* CKE_PLS */ |
| 634 | | ((four_act & 0x1f) << 0) /* FOUR_ACT */ |
| 635 | ); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 636 | |
| 637 | debug("DDR:timing_cfg_1=0x%08x\n", ddr->timing_cfg_1); |
| 638 | debug("DDR:timing_cfg_2=0x%08x\n", ddr->timing_cfg_2); |
| 639 | |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 640 | /* Check DIMM data bus width */ |
Lee Nipper | 9f5d576 | 2008-04-10 09:35:06 -0500 | [diff] [blame] | 641 | if (spd.dataw_lsb < 64) { |
Dave Liu | c9fa31f | 2007-08-04 13:37:39 +0800 | [diff] [blame] | 642 | if (spd.mem_type == SPD_MEMTYPE_DDR) |
| 643 | burstlen = 0x03; /* 32 bit data bus, burst len is 8 */ |
Dave Liu | 99e4d6c | 2007-08-10 15:48:59 +0800 | [diff] [blame] | 644 | else |
Dave Liu | c9fa31f | 2007-08-04 13:37:39 +0800 | [diff] [blame] | 645 | burstlen = 0x02; /* 32 bit data bus, burst len is 4 */ |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 646 | debug("\n DDR DIMM: data bus width is 32 bit"); |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 647 | } else { |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 648 | burstlen = 0x02; /* Others act as 64 bit bus, burst len is 4 */ |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 649 | debug("\n DDR DIMM: data bus width is 64 bit"); |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | /* Is this an ECC DDR chip? */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 653 | if (spd.config == 0x02) |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 654 | debug(" with ECC\n"); |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 655 | else |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 656 | debug(" without ECC\n"); |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 657 | |
| 658 | /* Burst length is always 4 for 64 bit data bus, 8 for 32 bit data bus, |
| 659 | Burst type is sequential |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 660 | */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 661 | if (spd.mem_type == SPD_MEMTYPE_DDR) { |
| 662 | switch (caslat) { |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 663 | case 1: |
| 664 | ddr->sdram_mode = 0x50 | burstlen; /* CL=1.5 */ |
| 665 | break; |
| 666 | case 2: |
| 667 | ddr->sdram_mode = 0x20 | burstlen; /* CL=2.0 */ |
| 668 | break; |
| 669 | case 3: |
| 670 | ddr->sdram_mode = 0x60 | burstlen; /* CL=2.5 */ |
| 671 | break; |
| 672 | case 4: |
| 673 | ddr->sdram_mode = 0x30 | burstlen; /* CL=3.0 */ |
| 674 | break; |
| 675 | default: |
| 676 | printf("DDR:only CL 1.5, 2.0, 2.5, 3.0 is supported\n"); |
| 677 | return 0; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 678 | } |
| 679 | } else { |
| 680 | mode_odt_enable = 0x0; /* Default disabled */ |
| 681 | if (odt_wr_cfg || odt_rd_cfg) { |
| 682 | /* |
| 683 | * Bits 6 and 2 in Extended MRS(1) |
| 684 | * Bit 2 == 0x04 == 75 Ohm, with 2 DIMM modules. |
| 685 | * Bit 6 == 0x40 == 150 Ohm, with 1 DIMM module. |
| 686 | */ |
| 687 | mode_odt_enable = 0x40; /* 150 Ohm */ |
| 688 | } |
| 689 | |
| 690 | ddr->sdram_mode = |
| 691 | (0 |
| 692 | | (1 << (16 + 10)) /* DQS Differential disable */ |
Andre Schwarz | 10ea0af | 2011-04-14 14:54:05 +0200 | [diff] [blame] | 693 | #ifdef CONFIG_SYS_DDR_MODE_WEAK |
| 694 | | (1 << (16 + 1)) /* weak driver (~60%) */ |
| 695 | #endif |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 696 | | (add_lat << (16 + 3)) /* Additive Latency in EMRS1 */ |
| 697 | | (mode_odt_enable << 16) /* ODT Enable in EMRS1 */ |
Xie Xiaobo | 5348432 | 2007-03-09 19:08:25 +0800 | [diff] [blame] | 698 | | ((twr_clk - 1) << 9) /* Write Recovery Autopre */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 699 | | (caslat << 4) /* caslat */ |
| 700 | | (burstlen << 0) /* Burst length */ |
| 701 | ); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 702 | } |
| 703 | debug("DDR:sdram_mode=0x%08x\n", ddr->sdram_mode); |
| 704 | |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 705 | /* |
| 706 | * Clear EMRS2 and EMRS3. |
| 707 | */ |
| 708 | ddr->sdram_mode2 = 0; |
| 709 | debug("DDR: sdram_mode2 = 0x%08x\n", ddr->sdram_mode2); |
| 710 | |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 711 | switch (spd.refresh) { |
| 712 | case 0x00: |
| 713 | case 0x80: |
| 714 | refresh_clk = picos_to_clk(15625000); |
| 715 | break; |
| 716 | case 0x01: |
| 717 | case 0x81: |
| 718 | refresh_clk = picos_to_clk(3900000); |
| 719 | break; |
| 720 | case 0x02: |
| 721 | case 0x82: |
| 722 | refresh_clk = picos_to_clk(7800000); |
| 723 | break; |
| 724 | case 0x03: |
| 725 | case 0x83: |
| 726 | refresh_clk = picos_to_clk(31300000); |
| 727 | break; |
| 728 | case 0x04: |
| 729 | case 0x84: |
| 730 | refresh_clk = picos_to_clk(62500000); |
| 731 | break; |
| 732 | case 0x05: |
| 733 | case 0x85: |
| 734 | refresh_clk = picos_to_clk(125000000); |
| 735 | break; |
| 736 | default: |
| 737 | refresh_clk = 0x512; |
| 738 | break; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | /* |
| 742 | * Set BSTOPRE to 0x100 for page mode |
| 743 | * If auto-charge is used, set BSTOPRE = 0 |
| 744 | */ |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 745 | ddr->sdram_interval = ((refresh_clk & 0x3fff) << 16) | 0x100; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 746 | debug("DDR:sdram_interval=0x%08x\n", ddr->sdram_interval); |
| 747 | |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 748 | /* |
| 749 | * SDRAM Cfg 2 |
| 750 | */ |
| 751 | odt_cfg = 0; |
Dave Liu | b19ecd3 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 752 | #ifndef CONFIG_NEVER_ASSERT_ODT_TO_CPU |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 753 | if (odt_rd_cfg | odt_wr_cfg) { |
| 754 | odt_cfg = 0x2; /* ODT to IOs during reads */ |
| 755 | } |
Dave Liu | b19ecd3 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 756 | #endif |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 757 | if (spd.mem_type == SPD_MEMTYPE_DDR2) { |
| 758 | ddr->sdram_cfg2 = (0 |
| 759 | | (0 << 26) /* True DQS */ |
| 760 | | (odt_cfg << 21) /* ODT only read */ |
| 761 | | (1 << 12) /* 1 refresh at a time */ |
| 762 | ); |
| 763 | |
| 764 | debug("DDR: sdram_cfg2 = 0x%08x\n", ddr->sdram_cfg2); |
| 765 | } |
| 766 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 767 | #ifdef CONFIG_SYS_DDR_SDRAM_CLK_CNTL /* Optional platform specific value */ |
| 768 | ddr->sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL; |
Paul Gortmaker | 2bd9f1b | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 769 | #endif |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 770 | debug("DDR:sdram_clk_cntl=0x%08x\n", ddr->sdram_clk_cntl); |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 771 | |
Mario Six | c463b6d | 2019-01-21 09:18:21 +0100 | [diff] [blame] | 772 | sync(); |
| 773 | isync(); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 774 | |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 775 | udelay(600); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 776 | |
| 777 | /* |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 778 | * Figure out the settings for the sdram_cfg register. Build up |
| 779 | * the value in 'sdram_cfg' before writing since the write into |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 780 | * the register will actually enable the memory controller, and all |
| 781 | * settings must be done before enabling. |
| 782 | * |
| 783 | * sdram_cfg[0] = 1 (ddr sdram logic enable) |
| 784 | * sdram_cfg[1] = 1 (self-refresh-enable) |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 785 | * sdram_cfg[5:7] = (SDRAM type = DDR SDRAM) |
| 786 | * 010 DDR 1 SDRAM |
| 787 | * 011 DDR 2 SDRAM |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 788 | * sdram_cfg[12] = 0 (32_BE =0 , 64 bit bus mode) |
| 789 | * sdram_cfg[13] = 0 (8_BE =0, 4-beat bursts) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 790 | */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 791 | if (spd.mem_type == SPD_MEMTYPE_DDR) |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 792 | sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR1; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 793 | else |
Kim Phillips | 6925739 | 2007-08-17 09:30:00 -0500 | [diff] [blame] | 794 | sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR2; |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 795 | |
| 796 | sdram_cfg = (0 |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 797 | | SDRAM_CFG_MEM_EN /* DDR enable */ |
| 798 | | SDRAM_CFG_SREN /* Self refresh */ |
| 799 | | sdram_type /* SDRAM type */ |
Xie Xiaobo | 6149a5a | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 800 | ); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 801 | |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 802 | /* sdram_cfg[3] = RD_EN - registered DIMM enable */ |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 803 | if (spd.mod_attr & 0x02) |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 804 | sdram_cfg |= SDRAM_CFG_RD_EN; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 805 | |
| 806 | /* The DIMM is 32bit width */ |
Lee Nipper | 9f5d576 | 2008-04-10 09:35:06 -0500 | [diff] [blame] | 807 | if (spd.dataw_lsb < 64) { |
Dave Liu | c9fa31f | 2007-08-04 13:37:39 +0800 | [diff] [blame] | 808 | if (spd.mem_type == SPD_MEMTYPE_DDR) |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 809 | sdram_cfg |= SDRAM_CFG_32_BE | SDRAM_CFG_8_BE; |
Dave Liu | c9fa31f | 2007-08-04 13:37:39 +0800 | [diff] [blame] | 810 | if (spd.mem_type == SPD_MEMTYPE_DDR2) |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 811 | sdram_cfg |= SDRAM_CFG_32_BE; |
Dave Liu | c9fa31f | 2007-08-04 13:37:39 +0800 | [diff] [blame] | 812 | } |
Timur Tabi | ff0215a | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 813 | |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 814 | ddrc_ecc_enable = 0; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 815 | |
| 816 | #if defined(CONFIG_DDR_ECC) |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 817 | /* Enable ECC with sdram_cfg[2] */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 818 | if (spd.config == 0x02) { |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 819 | sdram_cfg |= 0x20000000; |
| 820 | ddrc_ecc_enable = 1; |
| 821 | /* disable error detection */ |
| 822 | ddr->err_disable = ~ECC_ERROR_ENABLE; |
| 823 | /* set single bit error threshold to maximum value, |
| 824 | * reset counter to zero */ |
| 825 | ddr->err_sbe = (255 << ECC_ERROR_MAN_SBET_SHIFT) | |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 826 | (0 << ECC_ERROR_MAN_SBEC_SHIFT); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 827 | } |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 828 | |
| 829 | debug("DDR:err_disable=0x%08x\n", ddr->err_disable); |
| 830 | debug("DDR:err_sbe=0x%08x\n", ddr->err_sbe); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 831 | #endif |
Kim Phillips | 3b9c20f | 2007-08-16 22:52:48 -0500 | [diff] [blame] | 832 | debug(" DDRC ECC mode: %s\n", ddrc_ecc_enable ? "ON":"OFF"); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 833 | |
| 834 | #if defined(CONFIG_DDR_2T_TIMING) |
| 835 | /* |
| 836 | * Enable 2T timing by setting sdram_cfg[16]. |
| 837 | */ |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 838 | sdram_cfg |= SDRAM_CFG_2T_EN; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 839 | #endif |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 840 | /* Enable controller, and GO! */ |
| 841 | ddr->sdram_cfg = sdram_cfg; |
Mario Six | c463b6d | 2019-01-21 09:18:21 +0100 | [diff] [blame] | 842 | sync(); |
| 843 | isync(); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 844 | udelay(500); |
| 845 | |
| 846 | debug("DDR:sdram_cfg=0x%08x\n", ddr->sdram_cfg); |
Rafal Jaworowski | 4a9b6aa | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 847 | return memsize; /*in MBytes*/ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 848 | } |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 849 | #endif /* CONFIG_SPD_EEPROM */ |
| 850 | |
Peter Tyser | cb4731f | 2009-06-30 17:15:50 -0500 | [diff] [blame] | 851 | #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
Mario Six | c463b6d | 2019-01-21 09:18:21 +0100 | [diff] [blame] | 852 | static inline u32 mftbu(void) |
| 853 | { |
| 854 | u32 rval; |
| 855 | |
| 856 | asm volatile("mftbu %0" : "=r" (rval)); |
| 857 | return rval; |
| 858 | } |
| 859 | |
| 860 | static inline u32 mftb(void) |
| 861 | { |
| 862 | u32 rval; |
| 863 | |
| 864 | asm volatile("mftb %0" : "=r" (rval)); |
| 865 | return rval; |
| 866 | } |
| 867 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 868 | /* |
Robert P. J. Day | cbd618f | 2015-12-16 12:25:42 -0500 | [diff] [blame] | 869 | * Use timebase counter, get_timer() is not available |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 870 | * at this point of initialization yet. |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 871 | */ |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 872 | static __inline__ unsigned long get_tbms (void) |
| 873 | { |
| 874 | unsigned long tbl; |
| 875 | unsigned long tbu1, tbu2; |
| 876 | unsigned long ms; |
| 877 | unsigned long long tmp; |
| 878 | |
| 879 | ulong tbclk = get_tbclk(); |
| 880 | |
| 881 | /* get the timebase ticks */ |
| 882 | do { |
Mario Six | c463b6d | 2019-01-21 09:18:21 +0100 | [diff] [blame] | 883 | tbu1 = mftbu(); |
| 884 | tbl = mftb(); |
| 885 | tbu2 = mftbu(); |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 886 | } while (tbu1 != tbu2); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 887 | |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 888 | /* convert ticks to ms */ |
| 889 | tmp = (unsigned long long)(tbu1); |
| 890 | tmp = (tmp << 32); |
| 891 | tmp += (unsigned long long)(tbl); |
| 892 | ms = tmp/(tbclk/1000); |
| 893 | |
| 894 | return ms; |
| 895 | } |
| 896 | |
| 897 | /* |
| 898 | * Initialize all of memory for ECC, then enable errors. |
| 899 | */ |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 900 | void ddr_enable_ecc(unsigned int dram_size) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 901 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 902 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Dave Liu | f503592 | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 903 | volatile ddr83xx_t *ddr= &immap->ddr; |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 904 | unsigned long t_start, t_end; |
Dave Liu | 8c84e47 | 2006-11-02 18:05:50 -0600 | [diff] [blame] | 905 | register u64 *p; |
| 906 | register uint size; |
| 907 | unsigned int pattern[2]; |
Peter Tyser | 6f33a35 | 2009-06-30 17:15:51 -0500 | [diff] [blame] | 908 | |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 909 | icache_enable(); |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 910 | t_start = get_tbms(); |
Dave Liu | 8c84e47 | 2006-11-02 18:05:50 -0600 | [diff] [blame] | 911 | pattern[0] = 0xdeadbeef; |
| 912 | pattern[1] = 0xdeadbeef; |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 913 | |
Peter Tyser | 6f33a35 | 2009-06-30 17:15:51 -0500 | [diff] [blame] | 914 | #if defined(CONFIG_DDR_ECC_INIT_VIA_DMA) |
| 915 | dma_meminit(pattern[0], dram_size); |
| 916 | #else |
Dave Liu | 8c84e47 | 2006-11-02 18:05:50 -0600 | [diff] [blame] | 917 | debug("ddr init: CPU FP write method\n"); |
| 918 | size = dram_size; |
| 919 | for (p = 0; p < (u64*)(size); p++) { |
| 920 | ppcDWstore((u32*)p, pattern); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 921 | } |
Mario Six | c463b6d | 2019-01-21 09:18:21 +0100 | [diff] [blame] | 922 | sync(); |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 923 | #endif |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 924 | |
| 925 | t_end = get_tbms(); |
| 926 | icache_disable(); |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 927 | |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 928 | debug("\nREADY!!\n"); |
| 929 | debug("ddr init duration: %ld ms\n", t_end - t_start); |
| 930 | |
| 931 | /* Clear All ECC Errors */ |
| 932 | if ((ddr->err_detect & ECC_ERROR_DETECT_MME) == ECC_ERROR_DETECT_MME) |
| 933 | ddr->err_detect |= ECC_ERROR_DETECT_MME; |
| 934 | if ((ddr->err_detect & ECC_ERROR_DETECT_MBE) == ECC_ERROR_DETECT_MBE) |
| 935 | ddr->err_detect |= ECC_ERROR_DETECT_MBE; |
| 936 | if ((ddr->err_detect & ECC_ERROR_DETECT_SBE) == ECC_ERROR_DETECT_SBE) |
| 937 | ddr->err_detect |= ECC_ERROR_DETECT_SBE; |
| 938 | if ((ddr->err_detect & ECC_ERROR_DETECT_MSE) == ECC_ERROR_DETECT_MSE) |
| 939 | ddr->err_detect |= ECC_ERROR_DETECT_MSE; |
| 940 | |
| 941 | /* Disable ECC-Interrupts */ |
| 942 | ddr->err_int_en &= ECC_ERR_INT_DISABLE; |
| 943 | |
| 944 | /* Enable errors for ECC */ |
| 945 | ddr->err_disable &= ECC_ERROR_ENABLE; |
| 946 | |
Mario Six | c463b6d | 2019-01-21 09:18:21 +0100 | [diff] [blame] | 947 | sync(); |
| 948 | isync(); |
Marian Balakowicz | 6f6104d | 2006-03-14 16:23:35 +0100 | [diff] [blame] | 949 | } |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 950 | #endif /* CONFIG_DDR_ECC */ |
Mario Six | 538b575 | 2018-08-06 10:23:30 +0200 | [diff] [blame] | 951 | |
| 952 | #endif /* !CONFIG_MPC83XX_SDRAM */ |