Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | /* * Copyright (c) 2004 Picture Elements, Inc. * Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU * General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #include <common.h> #include <ppc4xx.h> #include <asm/processor.h> # define SDRAM_LEN 0x08000000 /* * this is even after checkboard. It returns the size of the SDRAM * that we have installed. This function is called by board_init_f * in lib_ppc/board.c to initialize the memory and return what I * found. */ long int initdram (int board_type) { /* Configure the SDRAMS */ /* disable memory controller */ mtdcr (memcfga, mem_mcopt1); mtdcr (memcfgd, 0x00000000); udelay (500); /* Clear SDRAM0_BESR0 (Bus Error Syndrome Register) */ mtdcr (memcfga, mem_besra); mtdcr (memcfgd, 0xffffffff); /* Clear SDRAM0_BESR1 (Bus Error Syndrome Register) */ mtdcr (memcfga, mem_besrb); mtdcr (memcfgd, 0xffffffff); /* Clear SDRAM0_ECCCFG (disable ECC) */ mtdcr (memcfga, mem_ecccf); mtdcr (memcfgd, 0x00000000); /* Clear SDRAM0_ECCESR (ECC Error Syndrome Register) */ mtdcr (memcfga, mem_eccerr); mtdcr (memcfgd, 0xffffffff); /* Timing register: CASL=2, PTA=2, CTP=2, LDF=1, RFTA=5, RCD=2 */ mtdcr (memcfga, mem_sdtr1); mtdcr (memcfgd, 0x010a4016); /* Memory Bank 0 Config == BA=0x00000000, SZ=64M, AM=3, BE=1 */ mtdcr (memcfga, mem_mb0cf); mtdcr (memcfgd, 0x00084001); /* Memory Bank 1 Config == BA=0x04000000, SZ=64M, AM=3, BE=1 */ mtdcr (memcfga, mem_mb1cf); mtdcr (memcfgd, 0x04084001); /* Memory Bank 2 Config == BE=0 */ mtdcr (memcfga, mem_mb2cf); mtdcr (memcfgd, 0x00000000); /* Memory Bank 3 Config == BE=0 */ mtdcr (memcfga, mem_mb3cf); mtdcr (memcfgd, 0x00000000); /* refresh timer = 0x400 */ mtdcr (memcfga, mem_rtr); mtdcr (memcfgd, 0x04000000); /* Power management idle timer set to the default. */ mtdcr (memcfga, mem_pmit); mtdcr (memcfgd, 0x07c00000); udelay (500); /* Enable banks (DCE=1, BPRF=1, ECCDD=1, EMDUL=1) */ mtdcr (memcfga, mem_mcopt1); mtdcr (memcfgd, 0x80e00000); return SDRAM_LEN; } /* * The U-Boot core, as part of the initialization to prepare for * loading the monitor into SDRAM, requests of this function that the * memory be tested. Return 0 if the memory tests OK. */ int testdram (void) { unsigned long idx; unsigned val; unsigned errors; volatile unsigned long *sdram; #ifdef DEBUG printf ("SDRAM Controller Registers --\n"); mtdcr (memcfga, mem_mcopt1); val = mfdcr (memcfgd); printf (" SDRAM0_CFG : 0x%08x\n", val); mtdcr (memcfga, 0x24); val = mfdcr (memcfgd); printf (" SDRAM0_STATUS: 0x%08x\n", val); mtdcr (memcfga, mem_mb0cf); val = mfdcr (memcfgd); printf (" SDRAM0_B0CR : 0x%08x\n", val); mtdcr (memcfga, mem_mb1cf); val = mfdcr (memcfgd); printf (" SDRAM0_B1CR : 0x%08x\n", val); mtdcr (memcfga, mem_sdtr1); val = mfdcr (memcfgd); printf (" SDRAM0_TR : 0x%08x\n", val); mtdcr (memcfga, mem_rtr); val = mfdcr (memcfgd); printf (" SDRAM0_RTR : 0x%08x\n", val); #endif /* Wait for memory to be ready by testing MRSCMPbit bit. Really, there should already have been plenty of time, given it was started long ago. But, best to check. */ for (idx = 0; idx < 1000000; idx += 1) { mtdcr (memcfga, 0x24); val = mfdcr (memcfgd); if (val & 0x80000000) break; } if (!(val & 0x80000000)) { printf ("SDRAM ERROR: SDRAM0_STATUS never set!\n"); return 1; } /* Start memory test. */ printf ("test: %u MB - ", SDRAM_LEN / 1048576); sdram = (unsigned long *) CFG_SDRAM_BASE; printf ("write - "); for (idx = 2; idx < SDRAM_LEN / 4; idx += 2) { sdram[idx + 0] = idx; sdram[idx + 1] = ~idx; } printf ("read - "); errors = 0; for (idx = 2; idx < SDRAM_LEN / 4; idx += 2) { if (sdram[idx + 0] != idx) errors += 1; if (sdram[idx + 1] != ~idx) errors += 1; if (errors > 0) break; } if (errors > 0) { printf ("NOT OK\n"); printf ("FIRST ERROR at %p: 0x%08lx:0x%08lx != 0x%08lx:0x%08lx\n", sdram + idx, sdram[idx + 0], sdram[idx + 1], idx, ~idx); return 1; } printf ("ok\n"); return 0; } |