Stefan Roese | 58eb869 | 2010-07-21 19:06:10 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2010 |
| 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 | */ |
| 24 | |
| 25 | #include <common.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 26 | #include <asm/ppc4xx.h> |
Stefan Roese | 58eb869 | 2010-07-21 19:06:10 +0200 | [diff] [blame] | 27 | #include <asm/processor.h> |
| 28 | #include <asm/io.h> |
| 29 | #include <asm/cache.h> |
| 30 | |
| 31 | #if defined(CONFIG_SDRAM_PPC4xx_IBM_DDR) || \ |
| 32 | defined(CONFIG_SDRAM_PPC4xx_IBM_DDR2) |
| 33 | #if defined(CONFIG_DDR_ECC) || defined(CONFIG_SDRAM_ECC) |
| 34 | |
| 35 | #if defined(CONFIG_405EX) |
| 36 | /* |
| 37 | * Currently only 405EX uses 16bit data bus width as an alternative |
| 38 | * option to 32bit data width (SDRAM0_MCOPT1_WDTH) |
| 39 | */ |
| 40 | #define SDRAM_DATA_ALT_WIDTH 2 |
| 41 | #else |
| 42 | #define SDRAM_DATA_ALT_WIDTH 8 |
| 43 | #endif |
| 44 | |
| 45 | #if defined(CONFIG_SYS_OCM_BASE) |
| 46 | #define CONFIG_FUNC_ISRAM_ADDR CONFIG_SYS_OCM_BASE |
| 47 | #endif |
| 48 | |
| 49 | #if defined(CONFIG_SYS_ISRAM_BASE) |
| 50 | #define CONFIG_FUNC_ISRAM_ADDR CONFIG_SYS_ISRAM_BASE |
| 51 | #endif |
| 52 | |
| 53 | #if !defined(CONFIG_FUNC_ISRAM_ADDR) |
| 54 | #error "No internal SRAM/OCM provided!" |
| 55 | #endif |
| 56 | |
| 57 | #define force_inline inline __attribute__ ((always_inline)) |
| 58 | |
| 59 | static inline void machine_check_disable(void) |
| 60 | { |
| 61 | mtmsr(mfmsr() & ~MSR_ME); |
| 62 | } |
| 63 | |
| 64 | static inline void machine_check_enable(void) |
| 65 | { |
| 66 | mtmsr(mfmsr() | MSR_ME); |
| 67 | } |
| 68 | |
| 69 | /* |
| 70 | * These helper functions need to be inlined, since they |
| 71 | * are called from the functions running from internal SRAM. |
| 72 | * SDRAM operation is forbidden at that time, so calling |
| 73 | * functions in SDRAM has to be avoided. |
| 74 | */ |
| 75 | static force_inline void wait_ddr_idle(void) |
| 76 | { |
| 77 | u32 val; |
| 78 | |
| 79 | do { |
| 80 | mfsdram(SDRAM_MCSTAT, val); |
| 81 | } while ((val & SDRAM_MCSTAT_IDLE_MASK) == SDRAM_MCSTAT_IDLE_NOT); |
| 82 | } |
| 83 | |
| 84 | static force_inline void recalibrate_ddr(void) |
| 85 | { |
| 86 | u32 val; |
| 87 | |
| 88 | /* |
| 89 | * Rewrite RQDC & RFDC to calibrate again. If this is not |
| 90 | * done, the SDRAM controller is working correctly after |
| 91 | * changing the MCOPT1_MCHK bits. |
| 92 | */ |
| 93 | mfsdram(SDRAM_RQDC, val); |
| 94 | mtsdram(SDRAM_RQDC, val); |
| 95 | mfsdram(SDRAM_RFDC, val); |
| 96 | mtsdram(SDRAM_RFDC, val); |
| 97 | } |
| 98 | |
| 99 | static force_inline void set_mcopt1_mchk(u32 bits) |
| 100 | { |
| 101 | u32 val; |
| 102 | |
| 103 | wait_ddr_idle(); |
| 104 | mfsdram(SDRAM_MCOPT1, val); |
| 105 | mtsdram(SDRAM_MCOPT1, (val & ~SDRAM_MCOPT1_MCHK_MASK) | bits); |
| 106 | recalibrate_ddr(); |
| 107 | } |
| 108 | |
| 109 | /* |
| 110 | * The next 2 functions are copied to internal SRAM/OCM and run |
| 111 | * there. No function calls allowed here. No SDRAM acitivity should |
| 112 | * be done here. |
| 113 | */ |
| 114 | static void inject_ecc_error(void *ptr, int par) |
| 115 | { |
| 116 | u32 val; |
| 117 | |
| 118 | /* |
| 119 | * Taken from PPC460EX/EXr/GT users manual (Rev 1.21) |
| 120 | * 22.2.17.13 ECC Diagnostics |
| 121 | * |
| 122 | * Items 1 ... 5 are already done by now, running from RAM |
| 123 | * with ECC enabled |
| 124 | */ |
| 125 | |
| 126 | out_be32(ptr, 0x00000000); |
| 127 | val = in_be32(ptr); |
| 128 | |
| 129 | /* 6. Set memory controller to no error checking */ |
| 130 | set_mcopt1_mchk(SDRAM_MCOPT1_MCHK_NON); |
| 131 | |
| 132 | /* 7. Modify one or two bits for error simulation */ |
| 133 | if (par == 1) |
| 134 | out_be32(ptr, in_be32(ptr) ^ 0x00000001); |
| 135 | else |
| 136 | out_be32(ptr, in_be32(ptr) ^ 0x00000003); |
| 137 | |
| 138 | /* 8. Wait for SDRAM idle */ |
| 139 | val = in_be32(ptr); |
| 140 | set_mcopt1_mchk(SDRAM_MCOPT1_MCHK_CHK_REP); |
| 141 | |
| 142 | /* Wait for SDRAM idle */ |
| 143 | wait_ddr_idle(); |
| 144 | |
| 145 | /* Continue with 9. in calling function... */ |
| 146 | } |
| 147 | |
| 148 | static void rewrite_ecc_parity(void *ptr, int par) |
| 149 | { |
| 150 | u32 current_address = (u32)ptr; |
| 151 | u32 end_address; |
| 152 | u32 address_increment; |
| 153 | u32 mcopt1; |
| 154 | u32 val; |
| 155 | |
| 156 | /* |
| 157 | * Fill ECC parity byte again. Otherwise further accesses to |
| 158 | * the failure address will result in exceptions. |
| 159 | */ |
| 160 | |
| 161 | /* Wait for SDRAM idle */ |
| 162 | val = in_be32(0x00000000); |
| 163 | set_mcopt1_mchk(SDRAM_MCOPT1_MCHK_GEN); |
| 164 | |
| 165 | /* ECC bit set method for non-cached memory */ |
| 166 | mfsdram(SDRAM_MCOPT1, mcopt1); |
| 167 | if ((mcopt1 & SDRAM_MCOPT1_DMWD_MASK) == SDRAM_MCOPT1_DMWD_32) |
| 168 | address_increment = 4; |
| 169 | else |
| 170 | address_increment = SDRAM_DATA_ALT_WIDTH; |
| 171 | end_address = current_address + CONFIG_SYS_CACHELINE_SIZE; |
| 172 | |
| 173 | while (current_address < end_address) { |
| 174 | *((unsigned long *)current_address) = 0; |
| 175 | current_address += address_increment; |
| 176 | } |
| 177 | |
| 178 | set_mcopt1_mchk(SDRAM_MCOPT1_MCHK_CHK_REP); |
| 179 | |
| 180 | /* Wait for SDRAM idle */ |
| 181 | wait_ddr_idle(); |
| 182 | } |
| 183 | |
| 184 | static int do_ecctest(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 185 | { |
| 186 | u32 old_val; |
| 187 | u32 val; |
| 188 | u32 *ptr; |
| 189 | void (*sram_func)(u32 *, int); |
| 190 | int error; |
| 191 | |
| 192 | if (argc < 3) { |
| 193 | cmd_usage(cmdtp); |
| 194 | return 1; |
| 195 | } |
| 196 | |
| 197 | ptr = (u32 *)simple_strtoul(argv[1], NULL, 16); |
| 198 | error = simple_strtoul(argv[2], NULL, 16); |
| 199 | if ((error < 1) || (error > 2)) { |
| 200 | cmd_usage(cmdtp); |
| 201 | return 1; |
| 202 | } |
| 203 | |
| 204 | printf("Using address %p for %d bit ECC error injection\n", |
| 205 | ptr, error); |
| 206 | |
| 207 | /* |
| 208 | * Save value to restore it later on |
| 209 | */ |
| 210 | old_val = in_be32(ptr); |
| 211 | |
| 212 | /* |
| 213 | * Copy ECC injection function into internal SRAM/OCM |
| 214 | */ |
| 215 | sram_func = (void *)CONFIG_FUNC_ISRAM_ADDR; |
| 216 | memcpy((void *)CONFIG_FUNC_ISRAM_ADDR, inject_ecc_error, 0x10000); |
| 217 | |
| 218 | /* |
| 219 | * Disable interrupts and exceptions before calling this |
| 220 | * function in internal SRAM/OCM |
| 221 | */ |
| 222 | disable_interrupts(); |
| 223 | machine_check_disable(); |
| 224 | eieio(); |
| 225 | |
| 226 | /* |
| 227 | * Jump to ECC simulation function in internal SRAM/OCM |
| 228 | */ |
| 229 | (*sram_func)(ptr, error); |
| 230 | |
| 231 | /* 10. Read the corresponding address */ |
| 232 | val = in_be32(ptr); |
| 233 | |
| 234 | /* |
| 235 | * Read and print ECC status register/info: |
| 236 | * The faulting address is only known upon uncorrectable ECC |
| 237 | * errors. |
| 238 | */ |
| 239 | mfsdram(SDRAM_ECCES, val); |
| 240 | if (val & SDRAM_ECCES_CE) |
| 241 | printf("ECC: Correctable error\n"); |
| 242 | if (val & SDRAM_ECCES_UE) { |
| 243 | printf("ECC: Uncorrectable error at 0x%02x%08x\n", |
| 244 | mfdcr(SDRAM_ERRADDULL), mfdcr(SDRAM_ERRADDLLL)); |
| 245 | } |
| 246 | |
| 247 | /* |
| 248 | * Clear pending interrupts/exceptions |
| 249 | */ |
| 250 | mtsdram(SDRAM_ECCES, 0xffffffff); |
| 251 | mtdcr(SDRAM_ERRSTATLL, 0xff000000); |
| 252 | set_mcsr(get_mcsr()); |
| 253 | |
| 254 | /* Now enable interrupts and exceptions again */ |
| 255 | eieio(); |
| 256 | machine_check_enable(); |
| 257 | enable_interrupts(); |
| 258 | |
| 259 | /* |
| 260 | * The ECC parity byte need to be re-written for the |
| 261 | * corresponding address. Otherwise future accesses to it |
| 262 | * will result in exceptions. |
| 263 | * |
| 264 | * Jump to ECC parity generation function |
| 265 | */ |
| 266 | memcpy((void *)CONFIG_FUNC_ISRAM_ADDR, rewrite_ecc_parity, 0x10000); |
| 267 | (*sram_func)(ptr, 0); |
| 268 | |
| 269 | /* |
| 270 | * Restore value in corresponding address |
| 271 | */ |
| 272 | out_be32(ptr, old_val); |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | U_BOOT_CMD( |
| 278 | ecctest, 3, 0, do_ecctest, |
| 279 | "Test ECC by single and double error bit injection", |
| 280 | "address 1/2" |
| 281 | ); |
| 282 | |
| 283 | #endif /* defined(CONFIG_DDR_ECC) || defined(CONFIG_SDRAM_ECC) */ |
| 284 | #endif /* defined(CONFIG_SDRAM_PPC4xx_IBM_DDR)... */ |