Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2005 |
| 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 24 | #include <common.h> |
| 25 | #include <asm/processor.h> |
| 26 | #include <asm/immap_85xx.h> |
| 27 | #include <asm/processor.h> |
| 28 | #include <asm/mmu.h> |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 29 | |
| 30 | struct sdram_conf_s { |
| 31 | unsigned long size; |
| 32 | unsigned long reg; |
| 33 | }; |
| 34 | |
| 35 | typedef struct sdram_conf_s sdram_conf_t; |
| 36 | |
| 37 | sdram_conf_t ddr_cs_conf[] = { |
| 38 | {(512 << 20), 0x80000202}, /* 512MB, 14x10(4) */ |
| 39 | {(256 << 20), 0x80000102}, /* 256MB, 13x10(4) */ |
| 40 | {(128 << 20), 0x80000101}, /* 128MB, 13x9(4) */ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 41 | {( 64 << 20), 0x80000001}, /* 64MB, 12x9(4) */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | #define N_DDR_CS_CONF (sizeof(ddr_cs_conf) / sizeof(ddr_cs_conf[0])) |
| 45 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 46 | int cas_latency (void); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * Autodetect onboard DDR SDRAM on 85xx platforms |
| 50 | * |
| 51 | * NOTE: Some of the hardcoded values are hardware dependant, |
| 52 | * so this should be extended for other future boards |
| 53 | * using this routine! |
| 54 | */ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 55 | long int sdram_setup (int casl) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 56 | { |
| 57 | int i; |
Kumar Gala | 04db400 | 2007-11-29 02:10:09 -0600 | [diff] [blame] | 58 | volatile ccsr_ddr_t *ddr = (void *)(CFG_MPC85xx_DDR_ADDR); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 59 | unsigned long cfg_ddr_timing1; |
| 60 | unsigned long cfg_ddr_mode; |
| 61 | |
| 62 | /* |
| 63 | * Disable memory controller. |
| 64 | */ |
| 65 | ddr->cs0_config = 0; |
| 66 | ddr->sdram_cfg = 0; |
| 67 | |
| 68 | switch (casl) { |
| 69 | case 20: |
| 70 | cfg_ddr_timing1 = 0x47405331 | (3 << 16); |
| 71 | cfg_ddr_mode = 0x40020002 | (2 << 4); |
| 72 | break; |
| 73 | |
| 74 | case 25: |
| 75 | cfg_ddr_timing1 = 0x47405331 | (4 << 16); |
| 76 | cfg_ddr_mode = 0x40020002 | (6 << 4); |
| 77 | break; |
| 78 | |
| 79 | case 30: |
| 80 | default: |
| 81 | cfg_ddr_timing1 = 0x47405331 | (5 << 16); |
| 82 | cfg_ddr_mode = 0x40020002 | (3 << 4); |
| 83 | break; |
| 84 | } |
| 85 | |
| 86 | ddr->cs0_bnds = (ddr_cs_conf[0].size - 1) >> 24; |
| 87 | ddr->cs0_config = ddr_cs_conf[0].reg; |
| 88 | ddr->timing_cfg_1 = cfg_ddr_timing1; |
| 89 | ddr->timing_cfg_2 = 0x00000800; /* P9-45,may need tuning */ |
| 90 | ddr->sdram_mode = cfg_ddr_mode; |
| 91 | ddr->sdram_interval = 0x05160100; /* autocharge,no open page */ |
| 92 | ddr->err_disable = 0x0000000D; |
| 93 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 94 | asm ("sync; isync; msync"); |
| 95 | udelay (1000); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 96 | |
| 97 | ddr->sdram_cfg = 0xc2000000; /* unbuffered,no DYN_PWR */ |
| 98 | asm ("sync; isync; msync"); |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 99 | udelay (1000); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 100 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 101 | for (i = 0; i < N_DDR_CS_CONF; i++) { |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 102 | ddr->cs0_config = ddr_cs_conf[i].reg; |
| 103 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 104 | if (get_ram_size (0, ddr_cs_conf[i].size) == |
| 105 | ddr_cs_conf[i].size) { |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 106 | /* |
| 107 | * OK, size detected -> all done |
| 108 | */ |
| 109 | return ddr_cs_conf[i].size; |
| 110 | } |
| 111 | } |
| 112 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 113 | return 0; /* nothing found ! */ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 114 | } |
| 115 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 116 | void board_add_ram_info (int use_default) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 117 | { |
| 118 | int casl; |
| 119 | |
| 120 | if (use_default) |
| 121 | casl = CONFIG_DDR_DEFAULT_CL; |
| 122 | else |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 123 | casl = cas_latency (); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 124 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 125 | puts (" (CL="); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 126 | switch (casl) { |
| 127 | case 20: |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 128 | puts ("2)"); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 129 | break; |
| 130 | |
| 131 | case 25: |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 132 | puts ("2.5)"); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 133 | break; |
| 134 | |
| 135 | case 30: |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 136 | puts ("3)"); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 137 | break; |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | long int initdram (int board_type) |
| 142 | { |
| 143 | long dram_size = 0; |
| 144 | int casl; |
| 145 | |
| 146 | #if defined(CONFIG_DDR_DLL) |
| 147 | /* |
| 148 | * This DLL-Override only used on TQM8540 and TQM8560 |
| 149 | */ |
| 150 | { |
Kumar Gala | f59b55a | 2007-11-27 23:25:02 -0600 | [diff] [blame] | 151 | volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR); |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 152 | int i, x; |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 153 | |
| 154 | x = 10; |
| 155 | |
| 156 | /* |
| 157 | * Work around to stabilize DDR DLL |
| 158 | */ |
| 159 | gur->ddrdllcr = 0x81000000; |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 160 | asm ("sync; isync; msync"); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 161 | udelay (200); |
| 162 | while (gur->ddrdllcr != 0x81000100) { |
| 163 | gur->devdisr = gur->devdisr | 0x00010000; |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 164 | asm ("sync; isync; msync"); |
| 165 | for (i = 0; i < x; i++) |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 166 | ; |
| 167 | gur->devdisr = gur->devdisr & 0xfff7ffff; |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 168 | asm ("sync; isync; msync"); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 169 | x++; |
| 170 | } |
| 171 | } |
| 172 | #endif |
| 173 | |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 174 | casl = cas_latency (); |
| 175 | dram_size = sdram_setup (casl); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 176 | if ((dram_size == 0) && (casl != CONFIG_DDR_DEFAULT_CL)) { |
| 177 | /* |
| 178 | * Try again with default CAS latency |
| 179 | */ |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 180 | puts ("Problem with CAS lantency"); |
| 181 | board_add_ram_info (1); |
| 182 | puts (", using default CL!\n"); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 183 | casl = CONFIG_DDR_DEFAULT_CL; |
Wolfgang Grandegger | b99ba16 | 2008-06-05 13:12:00 +0200 | [diff] [blame^] | 184 | dram_size = sdram_setup (casl); |
| 185 | puts (" "); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | return dram_size; |
| 189 | } |
| 190 | |
| 191 | #if defined(CFG_DRAM_TEST) |
| 192 | int testdram (void) |
| 193 | { |
| 194 | uint *pstart = (uint *) CFG_MEMTEST_START; |
| 195 | uint *pend = (uint *) CFG_MEMTEST_END; |
| 196 | uint *p; |
| 197 | |
| 198 | printf ("SDRAM test phase 1:\n"); |
| 199 | for (p = pstart; p < pend; p++) |
| 200 | *p = 0xaaaaaaaa; |
| 201 | |
| 202 | for (p = pstart; p < pend; p++) { |
| 203 | if (*p != 0xaaaaaaaa) { |
| 204 | printf ("SDRAM test fails at: %08x\n", (uint) p); |
| 205 | return 1; |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | printf ("SDRAM test phase 2:\n"); |
| 210 | for (p = pstart; p < pend; p++) |
| 211 | *p = 0x55555555; |
| 212 | |
| 213 | for (p = pstart; p < pend; p++) { |
| 214 | if (*p != 0x55555555) { |
| 215 | printf ("SDRAM test fails at: %08x\n", (uint) p); |
| 216 | return 1; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | printf ("SDRAM test passed.\n"); |
| 221 | return 0; |
| 222 | } |
| 223 | #endif |