Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 |
Wolfgang Denk | 83b4cfa | 2007-06-20 18:14:24 +0200 | [diff] [blame] | 3 | * Sylvie Gohl, AMCC/IBM, gohl.sylvie@fr.ibm.com |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 4 | * Jacqueline Pira-Ferriol, AMCC/IBM, jpira-ferriol@fr.ibm.com |
Wolfgang Denk | 83b4cfa | 2007-06-20 18:14:24 +0200 | [diff] [blame] | 5 | * Thierry Roman, AMCC/IBM, thierry_roman@fr.ibm.com |
| 6 | * Alain Saurel, AMCC/IBM, alain.saurel@fr.ibm.com |
| 7 | * Robert Snyder, AMCC/IBM, rob.snyder@fr.ibm.com |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 8 | * |
Stefan Roese | f47b048 | 2013-03-08 16:50:41 +0100 | [diff] [blame] | 9 | * (C) Copyright 2007-2013 |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 10 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 11 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 12 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | /* define DEBUG for debugging output (obviously ;-)) */ |
| 16 | #if 0 |
| 17 | #define DEBUG |
| 18 | #endif |
| 19 | |
| 20 | #include <common.h> |
| 21 | #include <asm/processor.h> |
| 22 | #include <asm/mmu.h> |
| 23 | #include <asm/io.h> |
Stefan Roese | 135846d | 2008-04-29 13:36:51 +0200 | [diff] [blame] | 24 | #include <asm/cache.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 25 | #include <asm/ppc440.h> |
Stefan Roese | 7e4a0d2 | 2008-03-19 09:36:47 +0100 | [diff] [blame] | 26 | #include <watchdog.h> |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 27 | |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 28 | /* |
| 29 | * This DDR2 setup code can dynamically setup the TLB entries for the DDR2 memory |
| 30 | * region. Right now the cache should still be disabled in U-Boot because of the |
| 31 | * EMAC driver, that need it's buffer descriptor to be located in non cached |
| 32 | * memory. |
| 33 | * |
| 34 | * If at some time this restriction doesn't apply anymore, just define |
Stefan Roese | a321148 | 2010-11-26 15:45:48 +0100 | [diff] [blame] | 35 | * CONFIG_4xx_DCACHE in the board config file and this code should setup |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 36 | * everything correctly. |
| 37 | */ |
Stefan Roese | a321148 | 2010-11-26 15:45:48 +0100 | [diff] [blame] | 38 | #ifdef CONFIG_4xx_DCACHE |
Wolfgang Denk | 83b4cfa | 2007-06-20 18:14:24 +0200 | [diff] [blame] | 39 | #define MY_TLB_WORD2_I_ENABLE 0 /* enable caching on SDRAM */ |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 40 | #else |
Wolfgang Denk | 83b4cfa | 2007-06-20 18:14:24 +0200 | [diff] [blame] | 41 | #define MY_TLB_WORD2_I_ENABLE TLB_WORD2_I_ENABLE /* disable caching on SDRAM */ |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 42 | #endif |
| 43 | |
Larry Johnson | ef16fcc | 2007-12-30 01:01:32 -0500 | [diff] [blame] | 44 | /*-----------------------------------------------------------------------------+ |
| 45 | * Prototypes |
| 46 | *-----------------------------------------------------------------------------*/ |
| 47 | extern int denali_wait_for_dlllock(void); |
| 48 | extern void denali_core_search_data_eye(void); |
| 49 | extern void dcbz_area(u32 start_address, u32 num_bytes); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 50 | |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 51 | static u32 is_ecc_enabled(void) |
| 52 | { |
| 53 | u32 val; |
| 54 | |
| 55 | mfsdram(DDR0_22, val); |
| 56 | val &= DDR0_22_CTRL_RAW_MASK; |
| 57 | if (val) |
| 58 | return 1; |
| 59 | else |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | void board_add_ram_info(int use_default) |
| 64 | { |
Stefan Roese | 087dfdb | 2007-10-21 08:12:41 +0200 | [diff] [blame] | 65 | PPC4xx_SYS_INFO board_cfg; |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 66 | u32 val; |
| 67 | |
| 68 | if (is_ecc_enabled()) |
| 69 | puts(" (ECC"); |
| 70 | else |
| 71 | puts(" (ECC not"); |
| 72 | |
| 73 | get_sys_info(&board_cfg); |
Stefan Roese | b002144 | 2008-07-10 09:58:06 +0200 | [diff] [blame] | 74 | printf(" enabled, %ld MHz", (board_cfg.freqPLB * 2) / 1000000); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 75 | |
| 76 | mfsdram(DDR0_03, val); |
| 77 | val = DDR0_03_CASLAT_DECODE(val); |
| 78 | printf(", CL%d)", val); |
| 79 | } |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 80 | |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 81 | #ifdef CONFIG_DDR_ECC |
| 82 | static void wait_ddr_idle(void) |
| 83 | { |
| 84 | /* |
| 85 | * Controller idle status cannot be determined for Denali |
| 86 | * DDR2 code. Just return here. |
| 87 | */ |
| 88 | } |
| 89 | |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 90 | static void program_ecc(u32 start_address, |
| 91 | u32 num_bytes, |
| 92 | u32 tlb_word2_i_value) |
| 93 | { |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 94 | u32 val; |
Stefan Roese | 7e4a0d2 | 2008-03-19 09:36:47 +0100 | [diff] [blame] | 95 | u32 current_addr = start_address; |
Stefan Roese | 135846d | 2008-04-29 13:36:51 +0200 | [diff] [blame] | 96 | u32 size; |
Stefan Roese | 7e4a0d2 | 2008-03-19 09:36:47 +0100 | [diff] [blame] | 97 | int bytes_remaining; |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 98 | |
| 99 | sync(); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 100 | wait_ddr_idle(); |
| 101 | |
Stefan Roese | 7e4a0d2 | 2008-03-19 09:36:47 +0100 | [diff] [blame] | 102 | /* |
| 103 | * Because of 440EPx errata CHIP 11, we don't touch the last 256 |
| 104 | * bytes of SDRAM. |
| 105 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 106 | bytes_remaining = num_bytes - CONFIG_SYS_MEM_TOP_HIDE; |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 107 | |
Stefan Roese | 7e4a0d2 | 2008-03-19 09:36:47 +0100 | [diff] [blame] | 108 | /* |
| 109 | * We have to write the ECC bytes by zeroing and flushing in smaller |
| 110 | * steps, since the whole 256MByte takes too long for the external |
| 111 | * watchdog. |
| 112 | */ |
| 113 | while (bytes_remaining > 0) { |
Stefan Roese | 135846d | 2008-04-29 13:36:51 +0200 | [diff] [blame] | 114 | size = min((64 << 20), bytes_remaining); |
| 115 | |
| 116 | /* Write zero's to SDRAM */ |
| 117 | dcbz_area(current_addr, size); |
| 118 | |
| 119 | /* Write modified dcache lines back to memory */ |
| 120 | clean_dcache_range(current_addr, current_addr + size); |
| 121 | |
Stefan Roese | 7e4a0d2 | 2008-03-19 09:36:47 +0100 | [diff] [blame] | 122 | current_addr += 64 << 20; |
| 123 | bytes_remaining -= 64 << 20; |
| 124 | WATCHDOG_RESET(); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | sync(); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 128 | wait_ddr_idle(); |
| 129 | |
| 130 | /* Clear error status */ |
| 131 | mfsdram(DDR0_00, val); |
| 132 | mtsdram(DDR0_00, val | DDR0_00_INT_ACK_ALL); |
| 133 | |
| 134 | /* Set 'int_mask' parameter to functionnal value */ |
| 135 | mfsdram(DDR0_01, val); |
| 136 | mtsdram(DDR0_01, ((val &~ DDR0_01_INT_MASK_MASK) | DDR0_01_INT_MASK_ALL_OFF)); |
| 137 | |
| 138 | sync(); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 139 | wait_ddr_idle(); |
| 140 | } |
| 141 | #endif |
| 142 | |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 143 | /************************************************************************* |
| 144 | * |
| 145 | * initdram -- 440EPx's DDR controller is a DENALI Core |
| 146 | * |
| 147 | ************************************************************************/ |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 148 | phys_size_t initdram (int board_type) |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 149 | { |
Stefan Roese | f47b048 | 2013-03-08 16:50:41 +0100 | [diff] [blame] | 150 | #if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_LCD4_LWMON5) |
Stefan Roese | 04e6c38 | 2007-07-04 10:06:30 +0200 | [diff] [blame] | 151 | /* CL=4 */ |
| 152 | mtsdram(DDR0_02, 0x00000000); |
| 153 | |
| 154 | mtsdram(DDR0_00, 0x0000190A); |
| 155 | mtsdram(DDR0_01, 0x01000000); |
| 156 | mtsdram(DDR0_03, 0x02040803); /* A suitable burst length was taken. CAS is right for our board */ |
| 157 | |
| 158 | mtsdram(DDR0_04, 0x0B030300); |
| 159 | mtsdram(DDR0_05, 0x02020308); |
| 160 | mtsdram(DDR0_06, 0x0003C812); |
| 161 | mtsdram(DDR0_07, 0x00090100); |
| 162 | mtsdram(DDR0_08, 0x03c80001); |
| 163 | mtsdram(DDR0_09, 0x00011D5F); |
Stefan Roese | 0b2f38f | 2009-03-12 07:27:25 +0100 | [diff] [blame] | 164 | mtsdram(DDR0_10, 0x00000100); |
Stefan Roese | 04e6c38 | 2007-07-04 10:06:30 +0200 | [diff] [blame] | 165 | mtsdram(DDR0_11, 0x000CC800); |
| 166 | mtsdram(DDR0_12, 0x00000003); |
| 167 | mtsdram(DDR0_14, 0x00000000); |
| 168 | mtsdram(DDR0_17, 0x1e000000); |
| 169 | mtsdram(DDR0_18, 0x1e1e1e1e); |
| 170 | mtsdram(DDR0_19, 0x1e1e1e1e); |
| 171 | mtsdram(DDR0_20, 0x0B0B0B0B); |
| 172 | mtsdram(DDR0_21, 0x0B0B0B0B); |
| 173 | #ifdef CONFIG_DDR_ECC |
| 174 | mtsdram(DDR0_22, 0x00267F0B | DDR0_22_CTRL_RAW_ECC_ENABLE); /* enable ECC */ |
| 175 | #else |
| 176 | mtsdram(DDR0_22, 0x00267F0B); |
| 177 | #endif |
| 178 | |
| 179 | mtsdram(DDR0_23, 0x01000000); |
| 180 | mtsdram(DDR0_24, 0x01010001); |
| 181 | |
| 182 | mtsdram(DDR0_26, 0x2D93028A); |
| 183 | mtsdram(DDR0_27, 0x0784682B); |
| 184 | |
| 185 | mtsdram(DDR0_28, 0x00000080); |
| 186 | mtsdram(DDR0_31, 0x00000000); |
| 187 | mtsdram(DDR0_42, 0x01000008); |
| 188 | |
| 189 | mtsdram(DDR0_43, 0x050A0200); |
| 190 | mtsdram(DDR0_44, 0x00000005); |
| 191 | mtsdram(DDR0_02, 0x00000001); /* Activate the denali core */ |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 192 | |
Larry Johnson | ef16fcc | 2007-12-30 01:01:32 -0500 | [diff] [blame] | 193 | denali_wait_for_dlllock(); |
| 194 | |
| 195 | #if defined(CONFIG_DDR_DATA_EYE) |
| 196 | /* -----------------------------------------------------------+ |
| 197 | * Perform data eye search if requested. |
| 198 | * ----------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 199 | program_tlb(0, CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MBYTES_SDRAM << 20, |
Larry Johnson | ef16fcc | 2007-12-30 01:01:32 -0500 | [diff] [blame] | 200 | TLB_WORD2_I_ENABLE); |
| 201 | denali_core_search_data_eye(); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 202 | remove_tlb(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MBYTES_SDRAM << 20); |
Larry Johnson | ef16fcc | 2007-12-30 01:01:32 -0500 | [diff] [blame] | 203 | #endif |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 204 | |
Wolfgang Denk | 83b4cfa | 2007-06-20 18:14:24 +0200 | [diff] [blame] | 205 | /* |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 206 | * Program tlb entries for this size (dynamic) |
| 207 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 208 | program_tlb(0, CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MBYTES_SDRAM << 20, |
Larry Johnson | ef16fcc | 2007-12-30 01:01:32 -0500 | [diff] [blame] | 209 | MY_TLB_WORD2_I_ENABLE); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 210 | |
Stefan Roese | a321148 | 2010-11-26 15:45:48 +0100 | [diff] [blame] | 211 | #if defined(CONFIG_DDR_ECC) |
| 212 | #if defined(CONFIG_4xx_DCACHE) |
| 213 | /* |
| 214 | * If ECC is enabled, initialize the parity bits. |
| 215 | */ |
| 216 | program_ecc(0, CONFIG_SYS_MBYTES_SDRAM << 20, 0); |
| 217 | #else /* CONFIG_4xx_DCACHE */ |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 218 | /* |
| 219 | * Setup 2nd TLB with same physical address but different virtual address |
| 220 | * with cache enabled. This is done for fast ECC generation. |
| 221 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 222 | program_tlb(0, CONFIG_SYS_DDR_CACHED_ADDR, CONFIG_SYS_MBYTES_SDRAM << 20, 0); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 223 | |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 224 | /* |
| 225 | * If ECC is enabled, initialize the parity bits. |
| 226 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 227 | program_ecc(CONFIG_SYS_DDR_CACHED_ADDR, CONFIG_SYS_MBYTES_SDRAM << 20, 0); |
Stefan Roese | a321148 | 2010-11-26 15:45:48 +0100 | [diff] [blame] | 228 | |
| 229 | /* |
| 230 | * Now after initialization (auto-calibration and ECC generation) |
| 231 | * remove the TLB entries with caches enabled and program again with |
| 232 | * desired cache functionality |
| 233 | */ |
| 234 | remove_tlb(CONFIG_SYS_DDR_CACHED_ADDR, CONFIG_SYS_MBYTES_SDRAM << 20); |
| 235 | #endif /* CONFIG_4xx_DCACHE */ |
| 236 | #endif /* CONFIG_DDR_ECC */ |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 237 | |
Stefan Roese | ea9f6bc | 2007-07-31 08:37:01 +0200 | [diff] [blame] | 238 | /* |
| 239 | * Clear possible errors resulting from data-eye-search. |
| 240 | * If not done, then we could get an interrupt later on when |
| 241 | * exceptions are enabled. |
| 242 | */ |
| 243 | set_mcsr(get_mcsr()); |
Stefan Roese | f47b048 | 2013-03-08 16:50:41 +0100 | [diff] [blame] | 244 | #endif /* CONFIG_SPL_BUILD */ |
Stefan Roese | ea9f6bc | 2007-07-31 08:37:01 +0200 | [diff] [blame] | 245 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 246 | return (CONFIG_SYS_MBYTES_SDRAM << 20); |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 247 | } |