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 | /* |
| 3 | * Copyright (C) 1998 Dan Malek <dmalek@jlc.net> |
| 4 | * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se> |
| 5 | * Copyright (C) 2000, 2001,2002 Wolfgang Denk <wd@denx.de> |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 6 | * Copyright Freescale Semiconductor, Inc. 2004, 2006, 2008. |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * U-Boot - Startup Code for MPC83xx PowerPC based Embedded Boards |
| 11 | */ |
| 12 | |
Wolfgang Denk | 0191e47 | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 13 | #include <asm-offsets.h> |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 14 | #include <config.h> |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 15 | #include <mpc83xx.h> |
Tom Rini | 4ddbade | 2022-05-25 12:16:03 -0400 | [diff] [blame] | 16 | #include <system-constants.h> |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 17 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 18 | #include <ppc_asm.tmpl> |
| 19 | #include <ppc_defs.h> |
| 20 | |
| 21 | #include <asm/cache.h> |
| 22 | #include <asm/mmu.h> |
Peter Tyser | 3a1362d | 2010-10-14 23:33:24 -0500 | [diff] [blame] | 23 | #include <asm/u-boot.h> |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 24 | |
Mario Six | 9486710 | 2019-01-21 09:17:54 +0100 | [diff] [blame] | 25 | #include "hrcw/hrcw.h" |
Mario Six | a861ea6 | 2019-01-21 09:17:57 +0100 | [diff] [blame] | 26 | #include "bats/bats.h" |
Mario Six | 8b2141c | 2019-01-21 09:18:09 +0100 | [diff] [blame] | 27 | #include "hid/hid.h" |
Mario Six | 9486710 | 2019-01-21 09:17:54 +0100 | [diff] [blame] | 28 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 29 | /* We don't want the MMU yet. |
| 30 | */ |
| 31 | #undef MSR_KERNEL |
| 32 | |
| 33 | /* |
| 34 | * Floating Point enable, Machine Check and Recoverable Interr. |
| 35 | */ |
| 36 | #ifdef DEBUG |
| 37 | #define MSR_KERNEL (MSR_FP|MSR_RI) |
| 38 | #else |
| 39 | #define MSR_KERNEL (MSR_FP|MSR_ME|MSR_RI) |
| 40 | #endif |
| 41 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 42 | #if defined(CONFIG_NAND_SPL) || \ |
Tom Rini | 6b15c16 | 2022-05-13 12:26:35 -0400 | [diff] [blame] | 43 | (defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(INIT_MINIMAL)) |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 44 | #define MINIMAL_SPL |
| 45 | #endif |
| 46 | |
| 47 | #if !defined(CONFIG_SPL_BUILD) && !defined(CONFIG_NAND_SPL) && \ |
| 48 | !defined(CONFIG_SYS_RAMBOOT) |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 49 | #define CFG_SYS_FLASHBOOT |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 50 | #endif |
| 51 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 52 | /* |
| 53 | * Set up GOT: Global Offset Table |
| 54 | * |
Joakim Tjernlund | 3fbaa4d | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 55 | * Use r12 to access the GOT |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 56 | */ |
| 57 | START_GOT |
| 58 | GOT_ENTRY(_GOT2_TABLE_) |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 59 | GOT_ENTRY(__bss_start) |
Simon Glass | ed70c8f | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 60 | GOT_ENTRY(__bss_end) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 61 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 62 | #ifndef MINIMAL_SPL |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 63 | GOT_ENTRY(_FIXUP_TABLE_) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 64 | GOT_ENTRY(_start) |
| 65 | GOT_ENTRY(_start_of_vectors) |
| 66 | GOT_ENTRY(_end_of_vectors) |
| 67 | GOT_ENTRY(transfer_to_handler) |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 68 | #endif |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 69 | END_GOT |
| 70 | |
| 71 | /* |
Jerry Van Baren | 93eb931 | 2006-12-06 21:23:55 -0500 | [diff] [blame] | 72 | * The Hard Reset Configuration Word (HRCW) table is in the first 64 |
| 73 | * (0x40) bytes of flash. It has 8 bytes, but each byte is repeated 8 |
| 74 | * times so the processor can fetch it out of flash whether the flash |
| 75 | * is 8, 16, 32, or 64 bits wide (hardware trickery). |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 76 | */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 77 | .text |
| 78 | #define _HRCW_TABLE_ENTRY(w) \ |
| 79 | .fill 8,1,(((w)>>24)&0xff); \ |
| 80 | .fill 8,1,(((w)>>16)&0xff); \ |
| 81 | .fill 8,1,(((w)>> 8)&0xff); \ |
| 82 | .fill 8,1,(((w) )&0xff) |
| 83 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 84 | _HRCW_TABLE_ENTRY(CFG_SYS_HRCW_LOW) |
| 85 | _HRCW_TABLE_ENTRY(CFG_SYS_HRCW_HIGH) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 86 | |
Jerry Van Baren | 93eb931 | 2006-12-06 21:23:55 -0500 | [diff] [blame] | 87 | /* |
| 88 | * Magic number and version string - put it after the HRCW since it |
| 89 | * cannot be first in flash like it is in many other processors. |
| 90 | */ |
| 91 | .long 0x27051956 /* U-Boot Magic Number */ |
| 92 | |
Ron Madrid | 787b61d | 2008-12-12 13:12:45 -0800 | [diff] [blame] | 93 | .globl enable_addr_trans |
| 94 | enable_addr_trans: |
| 95 | /* enable address translation */ |
| 96 | mfmsr r5 |
| 97 | ori r5, r5, (MSR_IR | MSR_DR) |
| 98 | mtmsr r5 |
| 99 | isync |
| 100 | blr |
| 101 | |
| 102 | .globl disable_addr_trans |
| 103 | disable_addr_trans: |
| 104 | /* disable address translation */ |
| 105 | mflr r4 |
| 106 | mfmsr r3 |
| 107 | andi. r0, r3, (MSR_IR | MSR_DR) |
| 108 | beqlr |
| 109 | andc r3, r3, r0 |
| 110 | mtspr SRR0, r4 |
| 111 | mtspr SRR1, r3 |
| 112 | rfi |
| 113 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 114 | #ifndef CONFIG_DEFAULT_IMMR |
| 115 | #error CONFIG_DEFAULT_IMMR must be defined |
Heiko Schocher | 71cb3e9 | 2017-06-07 17:33:10 +0200 | [diff] [blame] | 116 | #endif /* CONFIG_DEFAULT_IMMR */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 117 | |
| 118 | /* |
| 119 | * After configuration, a system reset exception is executed using the |
| 120 | * vector at offset 0x100 relative to the base set by MSR[IP]. If |
| 121 | * MSR[IP] is 0, the base address is 0x00000000. If MSR[IP] is 1, the |
| 122 | * base address is 0xfff00000. In the case of a Power On Reset or Hard |
| 123 | * Reset, the value of MSR[IP] is determined by the CIP field in the |
| 124 | * HRCW. |
| 125 | * |
| 126 | * Other bits in the HRCW set up the Base Address and Port Size in BR0. |
| 127 | * This determines the location of the boot ROM (flash or EPROM) in the |
| 128 | * processor's address space at boot time. As long as the HRCW is set up |
| 129 | * so that we eventually end up executing the code below when the |
| 130 | * processor executes the reset exception, the actual values used should |
| 131 | * not matter. |
| 132 | * |
| 133 | * Once we have got here, the address mask in OR0 is cleared so that the |
| 134 | * bottom 32K of the boot ROM is effectively repeated all throughout the |
| 135 | * processor's address space, after which we can jump to the absolute |
| 136 | * address at which the boot ROM was linked at compile time, and proceed |
| 137 | * to initialise the memory controller without worrying if the rug will |
| 138 | * be pulled out from under us, so to speak (it will be fine as long as |
| 139 | * we configure BR0 with the same boot ROM link address). |
| 140 | */ |
| 141 | . = EXC_OFF_SYS_RESET |
| 142 | |
| 143 | .globl _start |
| 144 | _start: /* time t 0 */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 145 | lis r4, CONFIG_DEFAULT_IMMR@h |
| 146 | nop |
Peter Tyser | 0c44caf | 2010-09-14 19:13:53 -0500 | [diff] [blame] | 147 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 148 | mfmsr r5 /* save msr contents */ |
Scott Wood | 838450e | 2009-01-20 11:56:11 -0600 | [diff] [blame] | 149 | |
| 150 | /* 83xx manuals prescribe a specific sequence for updating IMMRBAR. */ |
| 151 | bl 1f |
| 152 | 1: mflr r7 |
| 153 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 154 | lis r3, CONFIG_SYS_IMMR@h |
| 155 | ori r3, r3, CONFIG_SYS_IMMR@l |
Scott Wood | 838450e | 2009-01-20 11:56:11 -0600 | [diff] [blame] | 156 | |
| 157 | lwz r6, IMMRBAR(r4) |
| 158 | isync |
| 159 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 160 | stw r3, IMMRBAR(r4) |
Scott Wood | 838450e | 2009-01-20 11:56:11 -0600 | [diff] [blame] | 161 | lwz r6, 0(r7) /* Arbitrary external load */ |
| 162 | isync |
| 163 | |
| 164 | lwz r6, IMMRBAR(r3) |
| 165 | isync |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 166 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 167 | /* Initialise the E300 processor core */ |
| 168 | /*------------------------------------------*/ |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 169 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 170 | #if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_MPC83XX_WAIT_FOR_NAND)) || \ |
| 171 | defined(CONFIG_NAND_SPL) |
Lepcha Suchit | 7ed421f | 2008-10-16 13:38:00 -0500 | [diff] [blame] | 172 | /* The FCM begins execution after only the first page |
| 173 | * is loaded. Wait for the rest before branching |
| 174 | * to another flash page. |
| 175 | */ |
Scott Wood | 838450e | 2009-01-20 11:56:11 -0600 | [diff] [blame] | 176 | 1: lwz r6, 0x50b0(r3) |
Lepcha Suchit | 7ed421f | 2008-10-16 13:38:00 -0500 | [diff] [blame] | 177 | andi. r6, r6, 1 |
| 178 | beq 1b |
| 179 | #endif |
| 180 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 181 | bl init_e300_core |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 182 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 183 | #ifdef CFG_SYS_FLASHBOOT |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 184 | |
| 185 | /* Inflate flash location so it appears everywhere, calculate */ |
| 186 | /* the absolute address in final location of the FLASH, jump */ |
| 187 | /* there and deflate the flash size back to minimal size */ |
| 188 | /*------------------------------------------------------------*/ |
| 189 | bl map_flash_by_law1 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 190 | lis r4, (CONFIG_SYS_MONITOR_BASE)@h |
| 191 | ori r4, r4, (CONFIG_SYS_MONITOR_BASE)@l |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 192 | addi r5, r4, in_flash - _start + EXC_OFF_SYS_RESET |
| 193 | mtlr r5 |
| 194 | blr |
| 195 | in_flash: |
| 196 | #if 1 /* Remapping flash with LAW0. */ |
| 197 | bl remap_flash_by_law0 |
| 198 | #endif |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 199 | #endif /* CFG_SYS_FLASHBOOT */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 200 | |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 201 | /* setup the bats */ |
| 202 | bl setup_bats |
| 203 | sync |
| 204 | |
| 205 | /* |
| 206 | * Cache must be enabled here for stack-in-cache trick. |
| 207 | * This means we need to enable the BATS. |
| 208 | * This means: |
| 209 | * 1) for the EVB, original gt regs need to be mapped |
| 210 | * 2) need to have an IBAT for the 0xf region, |
| 211 | * we are running there! |
| 212 | * Cache should be turned on after BATs, since by default |
| 213 | * everything is write-through. |
| 214 | * The init-mem BAT can be reused after reloc. The old |
| 215 | * gt-regs BAT can be reused after board_init_f calls |
| 216 | * board_early_init_f (EVB only). |
| 217 | */ |
Christophe Leroy | cc46025 | 2023-01-18 20:52:38 +0100 | [diff] [blame] | 218 | #ifdef CONFIG_SYS_INIT_RAM_LOCK |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 219 | /* enable address translation */ |
| 220 | bl enable_addr_trans |
| 221 | sync |
| 222 | |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 223 | /* enable the data cache */ |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 224 | bl dcache_enable |
| 225 | sync |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 226 | bl lock_ram_in_cache |
| 227 | sync |
| 228 | #endif |
| 229 | |
| 230 | /* set up the stack pointer in our newly created |
mario.six@gdsys.cc | d4f4a54 | 2017-01-17 08:33:47 +0100 | [diff] [blame] | 231 | * cache-ram; use r3 to keep the new SP for now to |
| 232 | * avoid overiding the SP it uselessly */ |
Tom Rini | 4ddbade | 2022-05-25 12:16:03 -0400 | [diff] [blame] | 233 | lis r3, SYS_INIT_SP_ADDR@h |
| 234 | ori r3, r3, SYS_INIT_SP_ADDR@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 235 | |
mario.six@gdsys.cc | 85df7b4 | 2017-01-17 08:33:48 +0100 | [diff] [blame] | 236 | /* r4 = end of GD area */ |
| 237 | addi r4, r3, GENERATED_GBL_DATA_SIZE |
| 238 | |
| 239 | /* Zero GD area */ |
| 240 | li r0, 0 |
| 241 | 1: |
| 242 | subi r4, r4, 1 |
| 243 | stb r0, 0(r4) |
| 244 | cmplw r3, r4 |
| 245 | bne 1b |
| 246 | |
Andy Yan | ad0ac4b | 2017-07-24 17:47:27 +0800 | [diff] [blame] | 247 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
mario.six@gdsys.cc | 85df7b4 | 2017-01-17 08:33:48 +0100 | [diff] [blame] | 248 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 249 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) + GENERATED_GBL_DATA_SIZE > CFG_SYS_INIT_RAM_SIZE |
Andy Yan | ad0ac4b | 2017-07-24 17:47:27 +0800 | [diff] [blame] | 250 | #error "SYS_MALLOC_F_LEN too large to fit into initial RAM." |
mario.six@gdsys.cc | 85df7b4 | 2017-01-17 08:33:48 +0100 | [diff] [blame] | 251 | #endif |
| 252 | |
| 253 | /* r3 = new stack pointer / pre-reloc malloc area */ |
Andy Yan | ad0ac4b | 2017-07-24 17:47:27 +0800 | [diff] [blame] | 254 | subi r3, r3, CONFIG_VAL(SYS_MALLOC_F_LEN) |
mario.six@gdsys.cc | 85df7b4 | 2017-01-17 08:33:48 +0100 | [diff] [blame] | 255 | |
| 256 | /* Set pointer to pre-reloc malloc area in GD */ |
| 257 | stw r3, GD_MALLOC_BASE(r4) |
| 258 | #endif |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 259 | li r0, 0 /* Make room for stack frame header and */ |
mario.six@gdsys.cc | d4f4a54 | 2017-01-17 08:33:47 +0100 | [diff] [blame] | 260 | stwu r0, -4(r3) /* clear final stack frame so that */ |
| 261 | stwu r0, -4(r3) /* stack backtraces terminate cleanly */ |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 262 | |
mario.six@gdsys.cc | d4f4a54 | 2017-01-17 08:33:47 +0100 | [diff] [blame] | 263 | /* Finally, actually set SP */ |
| 264 | mr r1, r3 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 265 | |
| 266 | /* let the C-code set up the rest */ |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 267 | /* */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 268 | /* Be careful to keep code relocatable & stack humble */ |
| 269 | /*------------------------------------------------------*/ |
| 270 | |
| 271 | GET_GOT /* initialize GOT access */ |
Joakim Tjernlund | f14554d | 2018-11-28 10:59:55 +0100 | [diff] [blame] | 272 | /* Needed for -msingle-pic-base */ |
| 273 | bl _GLOBAL_OFFSET_TABLE_@local-4 |
| 274 | mflr r30 |
Wolfgang Denk | b2d36ea | 2011-04-20 22:11:21 +0200 | [diff] [blame] | 275 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 276 | /* r3: IMMR */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 277 | lis r3, CONFIG_SYS_IMMR@h |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 278 | /* run low-level CPU init code (in Flash)*/ |
| 279 | bl cpu_init_f |
| 280 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 281 | /* run 1st part of board init code (in Flash)*/ |
Valentin Longchamp | e91e10a | 2014-10-03 11:45:23 +0200 | [diff] [blame] | 282 | li r3, 0 /* clear boot_flag for calling board_init_f */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 283 | bl board_init_f |
| 284 | |
Peter Tyser | 0c44caf | 2010-09-14 19:13:53 -0500 | [diff] [blame] | 285 | /* NOTREACHED - board_init_f() does not return */ |
| 286 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 287 | #ifndef MINIMAL_SPL |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 288 | /* |
| 289 | * Vector Table |
| 290 | */ |
| 291 | |
| 292 | .globl _start_of_vectors |
| 293 | _start_of_vectors: |
| 294 | |
| 295 | /* Machine check */ |
| 296 | STD_EXCEPTION(0x200, MachineCheck, MachineCheckException) |
| 297 | |
| 298 | /* Data Storage exception. */ |
| 299 | STD_EXCEPTION(0x300, DataStorage, UnknownException) |
| 300 | |
| 301 | /* Instruction Storage exception. */ |
| 302 | STD_EXCEPTION(0x400, InstStorage, UnknownException) |
| 303 | |
| 304 | /* External Interrupt exception. */ |
| 305 | #ifndef FIXME |
| 306 | STD_EXCEPTION(0x500, ExtInterrupt, external_interrupt) |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 307 | #endif |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 308 | |
| 309 | /* Alignment exception. */ |
| 310 | . = 0x600 |
| 311 | Alignment: |
Rafal Jaworowski | 06244e4 | 2007-06-22 14:58:04 +0200 | [diff] [blame] | 312 | EXCEPTION_PROLOG(SRR0, SRR1) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 313 | mfspr r4,DAR |
| 314 | stw r4,_DAR(r21) |
| 315 | mfspr r5,DSISR |
| 316 | stw r5,_DSISR(r21) |
| 317 | addi r3,r1,STACK_FRAME_OVERHEAD |
Joakim Tjernlund | 4ff6bc0 | 2010-01-19 14:41:55 +0100 | [diff] [blame] | 318 | EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 319 | |
| 320 | /* Program check exception */ |
| 321 | . = 0x700 |
| 322 | ProgramCheck: |
Rafal Jaworowski | 06244e4 | 2007-06-22 14:58:04 +0200 | [diff] [blame] | 323 | EXCEPTION_PROLOG(SRR0, SRR1) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 324 | addi r3,r1,STACK_FRAME_OVERHEAD |
Joakim Tjernlund | 4ff6bc0 | 2010-01-19 14:41:55 +0100 | [diff] [blame] | 325 | EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException, |
| 326 | MSR_KERNEL, COPY_EE) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 327 | |
| 328 | STD_EXCEPTION(0x800, FPUnavailable, UnknownException) |
| 329 | |
| 330 | /* I guess we could implement decrementer, and may have |
| 331 | * to someday for timekeeping. |
| 332 | */ |
| 333 | STD_EXCEPTION(0x900, Decrementer, timer_interrupt) |
| 334 | |
| 335 | STD_EXCEPTION(0xa00, Trap_0a, UnknownException) |
| 336 | STD_EXCEPTION(0xb00, Trap_0b, UnknownException) |
| 337 | STD_EXCEPTION(0xc00, SystemCall, UnknownException) |
| 338 | STD_EXCEPTION(0xd00, SingleStep, UnknownException) |
| 339 | |
| 340 | STD_EXCEPTION(0xe00, Trap_0e, UnknownException) |
| 341 | STD_EXCEPTION(0xf00, Trap_0f, UnknownException) |
| 342 | |
| 343 | STD_EXCEPTION(0x1000, InstructionTLBMiss, UnknownException) |
| 344 | STD_EXCEPTION(0x1100, DataLoadTLBMiss, UnknownException) |
| 345 | STD_EXCEPTION(0x1200, DataStoreTLBMiss, UnknownException) |
| 346 | #ifdef DEBUG |
| 347 | . = 0x1300 |
| 348 | /* |
| 349 | * This exception occurs when the program counter matches the |
| 350 | * Instruction Address Breakpoint Register (IABR). |
| 351 | * |
| 352 | * I want the cpu to halt if this occurs so I can hunt around |
| 353 | * with the debugger and look at things. |
| 354 | * |
| 355 | * When DEBUG is defined, both machine check enable (in the MSR) |
| 356 | * and checkstop reset enable (in the reset mode register) are |
| 357 | * turned off and so a checkstop condition will result in the cpu |
| 358 | * halting. |
| 359 | * |
| 360 | * I force the cpu into a checkstop condition by putting an illegal |
| 361 | * instruction here (at least this is the theory). |
| 362 | * |
| 363 | * well - that didnt work, so just do an infinite loop! |
| 364 | */ |
| 365 | 1: b 1b |
| 366 | #else |
| 367 | STD_EXCEPTION(0x1300, InstructionBreakpoint, DebugException) |
| 368 | #endif |
| 369 | STD_EXCEPTION(0x1400, SMI, UnknownException) |
| 370 | |
| 371 | STD_EXCEPTION(0x1500, Trap_15, UnknownException) |
| 372 | STD_EXCEPTION(0x1600, Trap_16, UnknownException) |
| 373 | STD_EXCEPTION(0x1700, Trap_17, UnknownException) |
| 374 | STD_EXCEPTION(0x1800, Trap_18, UnknownException) |
| 375 | STD_EXCEPTION(0x1900, Trap_19, UnknownException) |
| 376 | STD_EXCEPTION(0x1a00, Trap_1a, UnknownException) |
| 377 | STD_EXCEPTION(0x1b00, Trap_1b, UnknownException) |
| 378 | STD_EXCEPTION(0x1c00, Trap_1c, UnknownException) |
| 379 | STD_EXCEPTION(0x1d00, Trap_1d, UnknownException) |
| 380 | STD_EXCEPTION(0x1e00, Trap_1e, UnknownException) |
| 381 | STD_EXCEPTION(0x1f00, Trap_1f, UnknownException) |
| 382 | STD_EXCEPTION(0x2000, Trap_20, UnknownException) |
| 383 | STD_EXCEPTION(0x2100, Trap_21, UnknownException) |
| 384 | STD_EXCEPTION(0x2200, Trap_22, UnknownException) |
| 385 | STD_EXCEPTION(0x2300, Trap_23, UnknownException) |
| 386 | STD_EXCEPTION(0x2400, Trap_24, UnknownException) |
| 387 | STD_EXCEPTION(0x2500, Trap_25, UnknownException) |
| 388 | STD_EXCEPTION(0x2600, Trap_26, UnknownException) |
| 389 | STD_EXCEPTION(0x2700, Trap_27, UnknownException) |
| 390 | STD_EXCEPTION(0x2800, Trap_28, UnknownException) |
| 391 | STD_EXCEPTION(0x2900, Trap_29, UnknownException) |
| 392 | STD_EXCEPTION(0x2a00, Trap_2a, UnknownException) |
| 393 | STD_EXCEPTION(0x2b00, Trap_2b, UnknownException) |
| 394 | STD_EXCEPTION(0x2c00, Trap_2c, UnknownException) |
| 395 | STD_EXCEPTION(0x2d00, Trap_2d, UnknownException) |
| 396 | STD_EXCEPTION(0x2e00, Trap_2e, UnknownException) |
| 397 | STD_EXCEPTION(0x2f00, Trap_2f, UnknownException) |
| 398 | |
| 399 | |
| 400 | .globl _end_of_vectors |
| 401 | _end_of_vectors: |
| 402 | |
| 403 | . = 0x3000 |
| 404 | |
| 405 | /* |
| 406 | * This code finishes saving the registers to the exception frame |
| 407 | * and jumps to the appropriate handler for the exception. |
| 408 | * Register r21 is pointer into trap frame, r1 has new stack pointer. |
| 409 | */ |
| 410 | .globl transfer_to_handler |
| 411 | transfer_to_handler: |
| 412 | stw r22,_NIP(r21) |
| 413 | lis r22,MSR_POW@h |
| 414 | andc r23,r23,r22 |
| 415 | stw r23,_MSR(r21) |
| 416 | SAVE_GPR(7, r21) |
| 417 | SAVE_4GPRS(8, r21) |
| 418 | SAVE_8GPRS(12, r21) |
| 419 | SAVE_8GPRS(24, r21) |
| 420 | mflr r23 |
| 421 | andi. r24,r23,0x3f00 /* get vector offset */ |
| 422 | stw r24,TRAP(r21) |
| 423 | li r22,0 |
| 424 | stw r22,RESULT(r21) |
| 425 | lwz r24,0(r23) /* virtual address of handler */ |
| 426 | lwz r23,4(r23) /* where to go when done */ |
| 427 | mtspr SRR0,r24 |
| 428 | mtspr SRR1,r20 |
| 429 | mtlr r23 |
| 430 | SYNC |
| 431 | rfi /* jump to handler, enable MMU */ |
| 432 | |
| 433 | int_return: |
| 434 | mfmsr r28 /* Disable interrupts */ |
| 435 | li r4,0 |
| 436 | ori r4,r4,MSR_EE |
| 437 | andc r28,r28,r4 |
| 438 | SYNC /* Some chip revs need this... */ |
| 439 | mtmsr r28 |
| 440 | SYNC |
| 441 | lwz r2,_CTR(r1) |
| 442 | lwz r0,_LINK(r1) |
| 443 | mtctr r2 |
| 444 | mtlr r0 |
| 445 | lwz r2,_XER(r1) |
| 446 | lwz r0,_CCR(r1) |
| 447 | mtspr XER,r2 |
| 448 | mtcrf 0xFF,r0 |
| 449 | REST_10GPRS(3, r1) |
| 450 | REST_10GPRS(13, r1) |
| 451 | REST_8GPRS(23, r1) |
| 452 | REST_GPR(31, r1) |
| 453 | lwz r2,_NIP(r1) /* Restore environment */ |
| 454 | lwz r0,_MSR(r1) |
| 455 | mtspr SRR0,r2 |
| 456 | mtspr SRR1,r0 |
| 457 | lwz r0,GPR0(r1) |
| 458 | lwz r2,GPR2(r1) |
| 459 | lwz r1,GPR1(r1) |
| 460 | SYNC |
| 461 | rfi |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 462 | #endif /* !MINIMAL_SPL */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 463 | |
| 464 | /* |
| 465 | * This code initialises the E300 processor core |
| 466 | * (conforms to PowerPC 603e spec) |
| 467 | * Note: expects original MSR contents to be in r5. |
| 468 | */ |
| 469 | .globl init_e300_core |
| 470 | init_e300_core: /* time t 10 */ |
| 471 | /* Initialize machine status; enable machine check interrupt */ |
| 472 | /*-----------------------------------------------------------*/ |
| 473 | |
| 474 | li r3, MSR_KERNEL /* Set ME and RI flags */ |
| 475 | rlwimi r3, r5, 0, 25, 25 /* preserve IP bit set by HRCW */ |
| 476 | #ifdef DEBUG |
| 477 | rlwimi r3, r5, 0, 21, 22 /* debugger might set SE & BE bits */ |
| 478 | #endif |
| 479 | SYNC /* Some chip revs need this... */ |
| 480 | mtmsr r3 |
| 481 | SYNC |
| 482 | mtspr SRR1, r3 /* Make SRR1 match MSR */ |
| 483 | |
| 484 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 485 | lis r3, CONFIG_SYS_IMMR@h |
Christophe Leroy | 39d3795 | 2023-04-03 10:39:59 +0200 | [diff] [blame] | 486 | #ifndef CONFIG_WDT_MPC8xxx |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 487 | #if defined(CONFIG_WATCHDOG) |
Horst Kronstorfer | 4565e04 | 2010-05-18 10:37:05 +0200 | [diff] [blame] | 488 | /* Initialise the Watchdog values and reset it (if req) */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 489 | /*------------------------------------------------------*/ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 490 | lis r4, CFG_SYS_WATCHDOG_VALUE |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 491 | ori r4, r4, (SWCRR_SWEN | SWCRR_SWRI | SWCRR_SWPR) |
| 492 | stw r4, SWCRR(r3) |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 493 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 494 | /* and reset it */ |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 495 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 496 | li r4, 0x556C |
| 497 | sth r4, SWSRR@l(r3) |
Heiko Schocher | 6dfb2e5 | 2008-01-11 15:15:17 +0100 | [diff] [blame] | 498 | li r4, -0x55C7 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 499 | sth r4, SWSRR@l(r3) |
| 500 | #else |
Horst Kronstorfer | 4565e04 | 2010-05-18 10:37:05 +0200 | [diff] [blame] | 501 | /* Disable Watchdog */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 502 | /*-------------------*/ |
Kumar Gala | b42751c | 2006-01-11 11:23:01 -0600 | [diff] [blame] | 503 | lwz r4, SWCRR(r3) |
| 504 | /* Check to see if its enabled for disabling |
| 505 | once disabled by SW you can't re-enable */ |
| 506 | andi. r4, r4, 0x4 |
| 507 | beq 1f |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 508 | xor r4, r4, r4 |
| 509 | stw r4, SWCRR(r3) |
Kumar Gala | b42751c | 2006-01-11 11:23:01 -0600 | [diff] [blame] | 510 | 1: |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 511 | #endif /* CONFIG_WATCHDOG */ |
Christophe Leroy | 39d3795 | 2023-04-03 10:39:59 +0200 | [diff] [blame] | 512 | #endif |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 513 | |
Nick Spence | 56fd3c2 | 2008-08-28 14:09:19 -0700 | [diff] [blame] | 514 | #if defined(CONFIG_MASK_AER_AO) |
| 515 | /* Write the Arbiter Event Enable to mask Address Only traps. */ |
| 516 | /* This prevents the dcbz instruction from being trapped when */ |
| 517 | /* HID0_ABE Address Broadcast Enable is set and the MEMORY */ |
| 518 | /* COHERENCY bit is set in the WIMG bits, which is often */ |
| 519 | /* needed for PCI operation. */ |
| 520 | lwz r4, 0x0808(r3) |
| 521 | rlwinm r0, r4, 0, ~AER_AO |
| 522 | stw r0, 0x0808(r3) |
| 523 | #endif /* CONFIG_MASK_AER_AO */ |
| 524 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 525 | /* Initialize the Hardware Implementation-dependent Registers */ |
| 526 | /* HID0 also contains cache control */ |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 527 | /* - force invalidation of data and instruction caches */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 528 | /*------------------------------------------------------*/ |
| 529 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 530 | lis r3, CFG_SYS_HID0_INIT@h |
| 531 | ori r3, r3, (CFG_SYS_HID0_INIT | HID0_ICFI | HID0_DCFI)@l |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 532 | SYNC |
| 533 | mtspr HID0, r3 |
| 534 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 535 | lis r3, CFG_SYS_HID0_FINAL@h |
| 536 | ori r3, r3, (CFG_SYS_HID0_FINAL & ~(HID0_ICFI | HID0_DCFI))@l |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 537 | SYNC |
| 538 | mtspr HID0, r3 |
| 539 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 540 | lis r3, CFG_SYS_HID2@h |
| 541 | ori r3, r3, CFG_SYS_HID2@l |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 542 | SYNC |
| 543 | mtspr HID2, r3 |
| 544 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 545 | /* Done! */ |
| 546 | /*------------------------------*/ |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 547 | blr |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 548 | |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 549 | /* setup_bats - set them up to some initial state */ |
| 550 | .globl setup_bats |
| 551 | setup_bats: |
| 552 | addis r0, r0, 0x0000 |
| 553 | |
| 554 | /* IBAT 0 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 555 | addis r4, r0, CFG_SYS_IBAT0L@h |
| 556 | ori r4, r4, CFG_SYS_IBAT0L@l |
| 557 | addis r3, r0, CFG_SYS_IBAT0U@h |
| 558 | ori r3, r3, CFG_SYS_IBAT0U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 559 | mtspr IBAT0L, r4 |
| 560 | mtspr IBAT0U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 561 | |
| 562 | /* DBAT 0 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 563 | addis r4, r0, CFG_SYS_DBAT0L@h |
| 564 | ori r4, r4, CFG_SYS_DBAT0L@l |
| 565 | addis r3, r0, CFG_SYS_DBAT0U@h |
| 566 | ori r3, r3, CFG_SYS_DBAT0U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 567 | mtspr DBAT0L, r4 |
| 568 | mtspr DBAT0U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 569 | |
| 570 | /* IBAT 1 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 571 | addis r4, r0, CFG_SYS_IBAT1L@h |
| 572 | ori r4, r4, CFG_SYS_IBAT1L@l |
| 573 | addis r3, r0, CFG_SYS_IBAT1U@h |
| 574 | ori r3, r3, CFG_SYS_IBAT1U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 575 | mtspr IBAT1L, r4 |
| 576 | mtspr IBAT1U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 577 | |
| 578 | /* DBAT 1 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 579 | addis r4, r0, CFG_SYS_DBAT1L@h |
| 580 | ori r4, r4, CFG_SYS_DBAT1L@l |
| 581 | addis r3, r0, CFG_SYS_DBAT1U@h |
| 582 | ori r3, r3, CFG_SYS_DBAT1U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 583 | mtspr DBAT1L, r4 |
| 584 | mtspr DBAT1U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 585 | |
| 586 | /* IBAT 2 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 587 | addis r4, r0, CFG_SYS_IBAT2L@h |
| 588 | ori r4, r4, CFG_SYS_IBAT2L@l |
| 589 | addis r3, r0, CFG_SYS_IBAT2U@h |
| 590 | ori r3, r3, CFG_SYS_IBAT2U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 591 | mtspr IBAT2L, r4 |
| 592 | mtspr IBAT2U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 593 | |
| 594 | /* DBAT 2 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 595 | addis r4, r0, CFG_SYS_DBAT2L@h |
| 596 | ori r4, r4, CFG_SYS_DBAT2L@l |
| 597 | addis r3, r0, CFG_SYS_DBAT2U@h |
| 598 | ori r3, r3, CFG_SYS_DBAT2U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 599 | mtspr DBAT2L, r4 |
| 600 | mtspr DBAT2U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 601 | |
| 602 | /* IBAT 3 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 603 | addis r4, r0, CFG_SYS_IBAT3L@h |
| 604 | ori r4, r4, CFG_SYS_IBAT3L@l |
| 605 | addis r3, r0, CFG_SYS_IBAT3U@h |
| 606 | ori r3, r3, CFG_SYS_IBAT3U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 607 | mtspr IBAT3L, r4 |
| 608 | mtspr IBAT3U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 609 | |
| 610 | /* DBAT 3 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 611 | addis r4, r0, CFG_SYS_DBAT3L@h |
| 612 | ori r4, r4, CFG_SYS_DBAT3L@l |
| 613 | addis r3, r0, CFG_SYS_DBAT3U@h |
| 614 | ori r3, r3, CFG_SYS_DBAT3U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 615 | mtspr DBAT3L, r4 |
| 616 | mtspr DBAT3U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 617 | |
Becky Bruce | 03ea1be | 2008-05-08 19:02:12 -0500 | [diff] [blame] | 618 | #ifdef CONFIG_HIGH_BATS |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 619 | /* IBAT 4 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 620 | addis r4, r0, CFG_SYS_IBAT4L@h |
| 621 | ori r4, r4, CFG_SYS_IBAT4L@l |
| 622 | addis r3, r0, CFG_SYS_IBAT4U@h |
| 623 | ori r3, r3, CFG_SYS_IBAT4U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 624 | mtspr IBAT4L, r4 |
| 625 | mtspr IBAT4U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 626 | |
| 627 | /* DBAT 4 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 628 | addis r4, r0, CFG_SYS_DBAT4L@h |
| 629 | ori r4, r4, CFG_SYS_DBAT4L@l |
| 630 | addis r3, r0, CFG_SYS_DBAT4U@h |
| 631 | ori r3, r3, CFG_SYS_DBAT4U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 632 | mtspr DBAT4L, r4 |
| 633 | mtspr DBAT4U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 634 | |
| 635 | /* IBAT 5 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 636 | addis r4, r0, CFG_SYS_IBAT5L@h |
| 637 | ori r4, r4, CFG_SYS_IBAT5L@l |
| 638 | addis r3, r0, CFG_SYS_IBAT5U@h |
| 639 | ori r3, r3, CFG_SYS_IBAT5U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 640 | mtspr IBAT5L, r4 |
| 641 | mtspr IBAT5U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 642 | |
| 643 | /* DBAT 5 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 644 | addis r4, r0, CFG_SYS_DBAT5L@h |
| 645 | ori r4, r4, CFG_SYS_DBAT5L@l |
| 646 | addis r3, r0, CFG_SYS_DBAT5U@h |
| 647 | ori r3, r3, CFG_SYS_DBAT5U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 648 | mtspr DBAT5L, r4 |
| 649 | mtspr DBAT5U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 650 | |
| 651 | /* IBAT 6 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 652 | addis r4, r0, CFG_SYS_IBAT6L@h |
| 653 | ori r4, r4, CFG_SYS_IBAT6L@l |
| 654 | addis r3, r0, CFG_SYS_IBAT6U@h |
| 655 | ori r3, r3, CFG_SYS_IBAT6U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 656 | mtspr IBAT6L, r4 |
| 657 | mtspr IBAT6U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 658 | |
| 659 | /* DBAT 6 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 660 | addis r4, r0, CFG_SYS_DBAT6L@h |
| 661 | ori r4, r4, CFG_SYS_DBAT6L@l |
| 662 | addis r3, r0, CFG_SYS_DBAT6U@h |
| 663 | ori r3, r3, CFG_SYS_DBAT6U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 664 | mtspr DBAT6L, r4 |
| 665 | mtspr DBAT6U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 666 | |
| 667 | /* IBAT 7 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 668 | addis r4, r0, CFG_SYS_IBAT7L@h |
| 669 | ori r4, r4, CFG_SYS_IBAT7L@l |
| 670 | addis r3, r0, CFG_SYS_IBAT7U@h |
| 671 | ori r3, r3, CFG_SYS_IBAT7U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 672 | mtspr IBAT7L, r4 |
| 673 | mtspr IBAT7U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 674 | |
| 675 | /* DBAT 7 */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 676 | addis r4, r0, CFG_SYS_DBAT7L@h |
| 677 | ori r4, r4, CFG_SYS_DBAT7L@l |
| 678 | addis r3, r0, CFG_SYS_DBAT7U@h |
| 679 | ori r3, r3, CFG_SYS_DBAT7U@l |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 680 | mtspr DBAT7L, r4 |
| 681 | mtspr DBAT7U, r3 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 682 | #endif |
| 683 | |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 684 | isync |
| 685 | |
| 686 | /* invalidate all tlb's |
| 687 | * |
| 688 | * From the 603e User Manual: "The 603e provides the ability to |
| 689 | * invalidate a TLB entry. The TLB Invalidate Entry (tlbie) |
| 690 | * instruction invalidates the TLB entry indexed by the EA, and |
| 691 | * operates on both the instruction and data TLBs simultaneously |
| 692 | * invalidating four TLB entries (both sets in each TLB). The |
| 693 | * index corresponds to bits 15-19 of the EA. To invalidate all |
| 694 | * entries within both TLBs, 32 tlbie instructions should be |
| 695 | * issued, incrementing this field by one each time." |
| 696 | * |
| 697 | * "Note that the tlbia instruction is not implemented on the |
| 698 | * 603e." |
| 699 | * |
| 700 | * bits 15-19 correspond to addresses 0x00000000 to 0x0001F000 |
| 701 | * incrementing by 0x1000 each time. The code below is sort of |
Stefan Roese | 88fbf93 | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 702 | * based on code in "flush_tlbs" from arch/powerpc/kernel/head.S |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 703 | * |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 704 | */ |
| 705 | lis r3, 0 |
| 706 | lis r5, 2 |
| 707 | |
| 708 | 1: |
| 709 | tlbie r3 |
| 710 | addi r3, r3, 0x1000 |
| 711 | cmp 0, 0, r3, r5 |
| 712 | blt 1b |
| 713 | |
| 714 | blr |
| 715 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 716 | /* Cache functions. |
| 717 | * |
| 718 | * Note: requires that all cache bits in |
| 719 | * HID0 are in the low half word. |
| 720 | */ |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 721 | #ifndef MINIMAL_SPL |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 722 | .globl icache_enable |
| 723 | icache_enable: |
| 724 | mfspr r3, HID0 |
| 725 | ori r3, r3, HID0_ICE |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 726 | li r4, HID0_ICFI|HID0_ILOCK |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 727 | andc r3, r3, r4 |
| 728 | ori r4, r3, HID0_ICFI |
| 729 | isync |
| 730 | mtspr HID0, r4 /* sets enable and invalidate, clears lock */ |
| 731 | isync |
| 732 | mtspr HID0, r3 /* clears invalidate */ |
| 733 | blr |
| 734 | |
| 735 | .globl icache_disable |
| 736 | icache_disable: |
| 737 | mfspr r3, HID0 |
| 738 | lis r4, 0 |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 739 | ori r4, r4, HID0_ICE|HID0_ICFI|HID0_ILOCK |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 740 | andc r3, r3, r4 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 741 | isync |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 742 | mtspr HID0, r3 /* clears invalidate, enable and lock */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 743 | blr |
| 744 | |
| 745 | .globl icache_status |
| 746 | icache_status: |
| 747 | mfspr r3, HID0 |
Marian Balakowicz | 758e5d3 | 2006-03-14 16:01:25 +0100 | [diff] [blame] | 748 | rlwinm r3, r3, (31 - HID0_ICE_SHIFT + 1), 31, 31 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 749 | blr |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 750 | #endif /* !MINIMAL_SPL */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 751 | |
| 752 | .globl dcache_enable |
| 753 | dcache_enable: |
| 754 | mfspr r3, HID0 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 755 | li r5, HID0_DCFI|HID0_DLOCK |
| 756 | andc r3, r3, r5 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 757 | ori r3, r3, HID0_DCE |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 758 | sync |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 759 | mtspr HID0, r3 /* enable, no invalidate */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 760 | blr |
| 761 | |
| 762 | .globl dcache_disable |
| 763 | dcache_disable: |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 764 | mflr r4 |
| 765 | bl flush_dcache /* uses r3 and r5 */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 766 | mfspr r3, HID0 |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 767 | li r5, HID0_DCE|HID0_DLOCK |
| 768 | andc r3, r3, r5 |
| 769 | ori r5, r3, HID0_DCFI |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 770 | sync |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 771 | mtspr HID0, r5 /* sets invalidate, clears enable and lock */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 772 | sync |
| 773 | mtspr HID0, r3 /* clears invalidate */ |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 774 | mtlr r4 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 775 | blr |
| 776 | |
| 777 | .globl dcache_status |
| 778 | dcache_status: |
| 779 | mfspr r3, HID0 |
Marian Balakowicz | 758e5d3 | 2006-03-14 16:01:25 +0100 | [diff] [blame] | 780 | rlwinm r3, r3, (31 - HID0_DCE_SHIFT + 1), 31, 31 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 781 | blr |
| 782 | |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 783 | .globl flush_dcache |
| 784 | flush_dcache: |
| 785 | lis r3, 0 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 786 | lis r5, CONFIG_SYS_CACHELINE_SIZE |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 787 | 1: cmp 0, 1, r3, r5 |
| 788 | bge 2f |
| 789 | lwz r5, 0(r3) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 790 | lis r5, CONFIG_SYS_CACHELINE_SIZE |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 791 | addi r3, r3, 0x4 |
| 792 | b 1b |
| 793 | 2: blr |
| 794 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 795 | /*-------------------------------------------------------------------*/ |
| 796 | |
| 797 | /* |
Simon Glass | 284f71b | 2019-12-28 10:44:45 -0700 | [diff] [blame] | 798 | * void relocate_code(addr_sp, gd, addr_moni) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 799 | * |
| 800 | * This "function" does not return, instead it continues in RAM |
| 801 | * after relocating the monitor code. |
| 802 | * |
| 803 | * r3 = dest |
| 804 | * r4 = src |
| 805 | * r5 = length in bytes |
| 806 | * r6 = cachelinesize |
| 807 | */ |
| 808 | .globl relocate_code |
| 809 | relocate_code: |
| 810 | mr r1, r3 /* Set new stack pointer */ |
| 811 | mr r9, r4 /* Save copy of Global Data pointer */ |
| 812 | mr r10, r5 /* Save copy of Destination Address */ |
| 813 | |
Joakim Tjernlund | 3fbaa4d | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 814 | GET_GOT |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 815 | mr r3, r5 /* Destination Address */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 816 | lis r4, CONFIG_SYS_MONITOR_BASE@h /* Source Address */ |
| 817 | ori r4, r4, CONFIG_SYS_MONITOR_BASE@l |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 818 | lwz r5, GOT(__bss_start) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 819 | sub r5, r5, r4 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 820 | li r6, CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 821 | |
| 822 | /* |
| 823 | * Fix GOT pointer: |
| 824 | * |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 825 | * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 826 | * + Destination Address |
| 827 | * |
| 828 | * Offset: |
| 829 | */ |
| 830 | sub r15, r10, r4 |
| 831 | |
| 832 | /* First our own GOT */ |
Joakim Tjernlund | 3fbaa4d | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 833 | add r12, r12, r15 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 834 | /* then the one used by the C code */ |
| 835 | add r30, r30, r15 |
| 836 | |
| 837 | /* |
| 838 | * Now relocate code |
| 839 | */ |
| 840 | |
| 841 | cmplw cr1,r3,r4 |
| 842 | addi r0,r5,3 |
| 843 | srwi. r0,r0,2 |
| 844 | beq cr1,4f /* In place copy is not necessary */ |
| 845 | beq 7f /* Protect against 0 count */ |
| 846 | mtctr r0 |
| 847 | bge cr1,2f |
| 848 | la r8,-4(r4) |
| 849 | la r7,-4(r3) |
| 850 | |
| 851 | /* copy */ |
| 852 | 1: lwzu r0,4(r8) |
| 853 | stwu r0,4(r7) |
| 854 | bdnz 1b |
| 855 | |
| 856 | addi r0,r5,3 |
| 857 | srwi. r0,r0,2 |
| 858 | mtctr r0 |
| 859 | la r8,-4(r4) |
| 860 | la r7,-4(r3) |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 861 | |
| 862 | /* and compare */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 863 | 20: lwzu r20,4(r8) |
| 864 | lwzu r21,4(r7) |
| 865 | xor. r22, r20, r21 |
| 866 | bne 30f |
| 867 | bdnz 20b |
| 868 | b 4f |
| 869 | |
| 870 | /* compare failed */ |
| 871 | 30: li r3, 0 |
| 872 | blr |
| 873 | |
| 874 | 2: slwi r0,r0,2 /* re copy in reverse order ... y do we needed it? */ |
| 875 | add r8,r4,r0 |
| 876 | add r7,r3,r0 |
| 877 | 3: lwzu r0,-4(r8) |
| 878 | stwu r0,-4(r7) |
| 879 | bdnz 3b |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 880 | |
| 881 | /* |
| 882 | * Now flush the cache: note that we must start from a cache aligned |
| 883 | * address. Otherwise we might miss one cache line. |
| 884 | */ |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 885 | 4: cmpwi r6,0 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 886 | add r5,r3,r5 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 887 | beq 7f /* Always flush prefetch queue in any case */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 888 | subi r0,r6,1 |
| 889 | andc r3,r3,r0 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 890 | mr r4,r3 |
| 891 | 5: dcbst 0,r4 |
| 892 | add r4,r4,r6 |
| 893 | cmplw r4,r5 |
| 894 | blt 5b |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 895 | sync /* Wait for all dcbst to complete on bus */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 896 | mr r4,r3 |
| 897 | 6: icbi 0,r4 |
| 898 | add r4,r4,r6 |
| 899 | cmplw r4,r5 |
| 900 | blt 6b |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 901 | 7: sync /* Wait for all icbi to complete on bus */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 902 | isync |
| 903 | |
| 904 | /* |
| 905 | * We are done. Do not return, instead branch to second part of board |
| 906 | * initialization, now running from RAM. |
| 907 | */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 908 | addi r0, r10, in_ram - _start + EXC_OFF_SYS_RESET |
| 909 | mtlr r0 |
| 910 | blr |
| 911 | |
| 912 | in_ram: |
| 913 | |
| 914 | /* |
Joakim Tjernlund | 3fbaa4d | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 915 | * Relocation Function, r12 point to got2+0x8000 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 916 | * |
| 917 | * Adjust got2 pointers, no need to check for 0, this code |
| 918 | * already puts a few entries in the table. |
| 919 | */ |
| 920 | li r0,__got2_entries@sectoff@l |
| 921 | la r3,GOT(_GOT2_TABLE_) |
| 922 | lwz r11,GOT(_GOT2_TABLE_) |
| 923 | mtctr r0 |
| 924 | sub r11,r3,r11 |
| 925 | addi r3,r3,-4 |
| 926 | 1: lwzu r0,4(r3) |
Joakim Tjernlund | 4f2fdac | 2009-10-08 02:03:51 +0200 | [diff] [blame] | 927 | cmpwi r0,0 |
| 928 | beq- 2f |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 929 | add r0,r0,r11 |
| 930 | stw r0,0(r3) |
Joakim Tjernlund | 4f2fdac | 2009-10-08 02:03:51 +0200 | [diff] [blame] | 931 | 2: bdnz 1b |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 932 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 933 | #ifndef MINIMAL_SPL |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 934 | /* |
| 935 | * Now adjust the fixups and the pointers to the fixups |
| 936 | * in case we need to move ourselves again. |
| 937 | */ |
Joakim Tjernlund | 4f2fdac | 2009-10-08 02:03:51 +0200 | [diff] [blame] | 938 | li r0,__fixup_entries@sectoff@l |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 939 | lwz r3,GOT(_FIXUP_TABLE_) |
| 940 | cmpwi r0,0 |
| 941 | mtctr r0 |
| 942 | addi r3,r3,-4 |
| 943 | beq 4f |
| 944 | 3: lwzu r4,4(r3) |
| 945 | lwzux r0,r4,r11 |
Joakim Tjernlund | c61b25a | 2010-10-14 11:51:44 +0200 | [diff] [blame] | 946 | cmpwi r0,0 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 947 | add r0,r0,r11 |
Joakim Tjernlund | 401b592 | 2010-11-04 19:02:00 +0100 | [diff] [blame] | 948 | stw r4,0(r3) |
Joakim Tjernlund | c61b25a | 2010-10-14 11:51:44 +0200 | [diff] [blame] | 949 | beq- 5f |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 950 | stw r0,0(r4) |
Joakim Tjernlund | c61b25a | 2010-10-14 11:51:44 +0200 | [diff] [blame] | 951 | 5: bdnz 3b |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 952 | 4: |
Scott Wood | b71689b | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 953 | #endif |
| 954 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 955 | clear_bss: |
| 956 | /* |
| 957 | * Now clear BSS segment |
| 958 | */ |
| 959 | lwz r3,GOT(__bss_start) |
Simon Glass | ed70c8f | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 960 | lwz r4,GOT(__bss_end) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 961 | |
| 962 | cmplw 0, r3, r4 |
| 963 | beq 6f |
| 964 | |
| 965 | li r0, 0 |
| 966 | 5: |
| 967 | stw r0, 0(r3) |
| 968 | addi r3, r3, 4 |
| 969 | cmplw 0, r3, r4 |
| 970 | bne 5b |
| 971 | 6: |
| 972 | |
| 973 | mr r3, r9 /* Global Data pointer */ |
| 974 | mr r4, r10 /* Destination Address */ |
| 975 | bl board_init_r |
| 976 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 977 | #ifndef MINIMAL_SPL |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 978 | /* |
| 979 | * Copy exception vector code to low memory |
| 980 | * |
| 981 | * r3: dest_addr |
| 982 | * r7: source address, r8: end address, r9: target address |
| 983 | */ |
| 984 | .globl trap_init |
| 985 | trap_init: |
Joakim Tjernlund | 3fbaa4d | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 986 | mflr r4 /* save link register */ |
| 987 | GET_GOT |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 988 | lwz r7, GOT(_start) |
| 989 | lwz r8, GOT(_end_of_vectors) |
| 990 | |
| 991 | li r9, 0x100 /* reset vector always at 0x100 */ |
| 992 | |
| 993 | cmplw 0, r7, r8 |
| 994 | bgelr /* return if r7>=r8 - just in case */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 995 | 1: |
| 996 | lwz r0, 0(r7) |
| 997 | stw r0, 0(r9) |
| 998 | addi r7, r7, 4 |
| 999 | addi r9, r9, 4 |
| 1000 | cmplw 0, r7, r8 |
| 1001 | bne 1b |
| 1002 | |
| 1003 | /* |
| 1004 | * relocate `hdlr' and `int_return' entries |
| 1005 | */ |
| 1006 | li r7, .L_MachineCheck - _start + EXC_OFF_SYS_RESET |
| 1007 | li r8, Alignment - _start + EXC_OFF_SYS_RESET |
| 1008 | 2: |
| 1009 | bl trap_reloc |
| 1010 | addi r7, r7, 0x100 /* next exception vector */ |
| 1011 | cmplw 0, r7, r8 |
| 1012 | blt 2b |
| 1013 | |
| 1014 | li r7, .L_Alignment - _start + EXC_OFF_SYS_RESET |
| 1015 | bl trap_reloc |
| 1016 | |
| 1017 | li r7, .L_ProgramCheck - _start + EXC_OFF_SYS_RESET |
| 1018 | bl trap_reloc |
| 1019 | |
| 1020 | li r7, .L_FPUnavailable - _start + EXC_OFF_SYS_RESET |
| 1021 | li r8, SystemCall - _start + EXC_OFF_SYS_RESET |
| 1022 | 3: |
| 1023 | bl trap_reloc |
| 1024 | addi r7, r7, 0x100 /* next exception vector */ |
| 1025 | cmplw 0, r7, r8 |
| 1026 | blt 3b |
| 1027 | |
| 1028 | li r7, .L_SingleStep - _start + EXC_OFF_SYS_RESET |
| 1029 | li r8, _end_of_vectors - _start + EXC_OFF_SYS_RESET |
| 1030 | 4: |
| 1031 | bl trap_reloc |
| 1032 | addi r7, r7, 0x100 /* next exception vector */ |
| 1033 | cmplw 0, r7, r8 |
| 1034 | blt 4b |
| 1035 | |
| 1036 | mfmsr r3 /* now that the vectors have */ |
| 1037 | lis r7, MSR_IP@h /* relocated into low memory */ |
| 1038 | ori r7, r7, MSR_IP@l /* MSR[IP] can be turned off */ |
| 1039 | andc r3, r3, r7 /* (if it was on) */ |
| 1040 | SYNC /* Some chip revs need this... */ |
| 1041 | mtmsr r3 |
| 1042 | SYNC |
| 1043 | |
| 1044 | mtlr r4 /* restore link register */ |
| 1045 | blr |
| 1046 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 1047 | #endif /* !MINIMAL_SPL */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1048 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1049 | #ifdef CONFIG_SYS_INIT_RAM_LOCK |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 1050 | lock_ram_in_cache: |
| 1051 | /* Allocate Initial RAM in data cache. |
| 1052 | */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1053 | lis r3, (CFG_SYS_INIT_RAM_ADDR & ~31)@h |
| 1054 | ori r3, r3, (CFG_SYS_INIT_RAM_ADDR & ~31)@l |
| 1055 | li r4, ((CFG_SYS_INIT_RAM_SIZE & ~31) + \ |
| 1056 | (CFG_SYS_INIT_RAM_ADDR & 31) + 31) / 32 |
Nick Spence | b89d6fb | 2008-08-28 14:09:11 -0700 | [diff] [blame] | 1057 | mtctr r4 |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 1058 | 1: |
| 1059 | dcbz r0, r3 |
| 1060 | addi r3, r3, 32 |
| 1061 | bdnz 1b |
| 1062 | |
| 1063 | /* Lock the data cache */ |
| 1064 | mfspr r0, HID0 |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 1065 | ori r0, r0, HID0_DLOCK |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 1066 | sync |
| 1067 | mtspr HID0, r0 |
| 1068 | sync |
| 1069 | blr |
| 1070 | |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 1071 | #ifndef MINIMAL_SPL |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1072 | .globl unlock_ram_in_cache |
| 1073 | unlock_ram_in_cache: |
| 1074 | /* invalidate the INIT_RAM section */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1075 | lis r3, (CFG_SYS_INIT_RAM_ADDR & ~31)@h |
| 1076 | ori r3, r3, (CFG_SYS_INIT_RAM_ADDR & ~31)@l |
| 1077 | li r4, ((CFG_SYS_INIT_RAM_SIZE & ~31) + \ |
| 1078 | (CFG_SYS_INIT_RAM_ADDR & 31) + 31) / 32 |
Nick Spence | b89d6fb | 2008-08-28 14:09:11 -0700 | [diff] [blame] | 1079 | mtctr r4 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1080 | 1: icbi r0, r3 |
| 1081 | dcbi r0, r3 |
| 1082 | addi r3, r3, 32 |
| 1083 | bdnz 1b |
| 1084 | sync /* Wait for all icbi to complete on bus */ |
| 1085 | isync |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 1086 | |
| 1087 | /* Unlock the data cache and invalidate it */ |
| 1088 | mfspr r3, HID0 |
| 1089 | li r5, HID0_DLOCK|HID0_DCFI |
| 1090 | andc r3, r3, r5 /* no invalidate, unlock */ |
| 1091 | ori r5, r3, HID0_DCFI /* invalidate, unlock */ |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 1092 | sync |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 1093 | mtspr HID0, r5 /* invalidate, unlock */ |
Kumar Gala | d5d94d6 | 2006-02-10 15:40:06 -0600 | [diff] [blame] | 1094 | sync |
Nick Spence | 7c20aef | 2008-08-28 14:09:25 -0700 | [diff] [blame] | 1095 | mtspr HID0, r3 /* no invalidate, unlock */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1096 | blr |
Scott Wood | 2b36fbb | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 1097 | #endif /* !MINIMAL_SPL */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1098 | #endif /* CONFIG_SYS_INIT_RAM_LOCK */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1099 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 1100 | #ifdef CFG_SYS_FLASHBOOT |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1101 | map_flash_by_law1: |
| 1102 | /* When booting from ROM (Flash or EPROM), clear the */ |
| 1103 | /* Address Mask in OR0 so ROM appears everywhere */ |
| 1104 | /*----------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1105 | lis r3, (CONFIG_SYS_IMMR)@h /* r3 <= CONFIG_SYS_IMMR */ |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 1106 | lwz r4, OR0@l(r3) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1107 | li r5, 0x7fff /* r5 <= 0x00007FFFF */ |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 1108 | and r4, r4, r5 |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1109 | stw r4, OR0@l(r3) /* OR0 <= OR0 & 0x00007FFFF */ |
| 1110 | |
| 1111 | /* As MPC8349E User's Manual presented, when RCW[BMS] is set to 0, |
| 1112 | * system will boot from 0x0000_0100, and the LBLAWBAR0[BASE_ADDR] |
| 1113 | * reset value is 0x00000; when RCW[BMS] is set to 1, system will boot |
| 1114 | * from 0xFFF0_0100, and the LBLAWBAR0[BASE_ADDR] reset value is |
| 1115 | * 0xFF800. From the hard resetting to here, the processor fetched and |
| 1116 | * executed the instructions one by one. There is not absolutely |
| 1117 | * jumping happened. Laterly, the u-boot code has to do an absolutely |
| 1118 | * jumping to tell the CPU instruction fetching component what the |
| 1119 | * u-boot TEXT base address is. Because the TEXT base resides in the |
| 1120 | * boot ROM memory space, to garantee the code can run smoothly after |
| 1121 | * that jumping, we must map in the entire boot ROM by Local Access |
| 1122 | * Window. Sometimes, we desire an non-0x00000 or non-0xFF800 starting |
| 1123 | * address for boot ROM, such as 0xFE000000. In this case, the default |
| 1124 | * LBIU Local Access Widow 0 will not cover this memory space. So, we |
| 1125 | * need another window to map in it. |
| 1126 | */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1127 | lis r4, (CFG_SYS_FLASH_BASE)@h |
| 1128 | ori r4, r4, (CFG_SYS_FLASH_BASE)@l |
| 1129 | stw r4, LBLAWBAR1(r3) /* LBLAWBAR1 <= CFG_SYS_FLASH_BASE */ |
Timur Tabi | 53b4617 | 2006-08-22 17:07:00 -0500 | [diff] [blame] | 1130 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1131 | /* Store 0x80000012 + log2(CFG_SYS_FLASH_SIZE) into LBLAWAR1 */ |
Timur Tabi | 53b4617 | 2006-08-22 17:07:00 -0500 | [diff] [blame] | 1132 | lis r4, (0x80000012)@h |
| 1133 | ori r4, r4, (0x80000012)@l |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1134 | li r5, CFG_SYS_FLASH_SIZE |
Timur Tabi | 53b4617 | 2006-08-22 17:07:00 -0500 | [diff] [blame] | 1135 | 1: srawi. r5, r5, 1 /* r5 = r5 >> 1 */ |
| 1136 | addi r4, r4, 1 |
| 1137 | bne 1b |
| 1138 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1139 | stw r4, LBLAWAR1(r3) /* LBLAWAR1 <= 8MB Flash Size */ |
Joakim Tjernlund | b168d63 | 2010-11-19 14:15:33 +0100 | [diff] [blame] | 1140 | /* Wait for HW to catch up */ |
| 1141 | lwz r4, LBLAWAR1(r3) |
| 1142 | twi 0,r4,0 |
| 1143 | isync |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1144 | blr |
| 1145 | |
| 1146 | /* Though all the LBIU Local Access Windows and LBC Banks will be |
| 1147 | * initialized in the C code, we'd better configure boot ROM's |
| 1148 | * window 0 and bank 0 correctly at here. |
| 1149 | */ |
| 1150 | remap_flash_by_law0: |
| 1151 | /* Initialize the BR0 with the boot ROM starting address. */ |
| 1152 | lwz r4, BR0(r3) |
| 1153 | li r5, 0x7FFF |
Jon Loeliger | ebc7224 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 1154 | and r4, r4, r5 |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1155 | lis r5, (CFG_SYS_FLASH_BASE & 0xFFFF8000)@h |
| 1156 | ori r5, r5, (CFG_SYS_FLASH_BASE & 0xFFFF8000)@l |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1157 | or r5, r5, r4 |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1158 | stw r5, BR0(r3) /* r5 <= (CFG_SYS_FLASH_BASE & 0xFFFF8000) | (BR0 & 0x00007FFF) */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1159 | |
| 1160 | lwz r4, OR0(r3) |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1161 | lis r5, ~((CFG_SYS_FLASH_SIZE << 4) - 1) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1162 | or r4, r4, r5 |
Timur Tabi | 53b4617 | 2006-08-22 17:07:00 -0500 | [diff] [blame] | 1163 | stw r4, OR0(r3) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1164 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1165 | lis r4, (CFG_SYS_FLASH_BASE)@h |
| 1166 | ori r4, r4, (CFG_SYS_FLASH_BASE)@l |
| 1167 | stw r4, LBLAWBAR0(r3) /* LBLAWBAR0 <= CFG_SYS_FLASH_BASE */ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1168 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1169 | /* Store 0x80000012 + log2(CFG_SYS_FLASH_SIZE) into LBLAWAR0 */ |
Timur Tabi | 53b4617 | 2006-08-22 17:07:00 -0500 | [diff] [blame] | 1170 | lis r4, (0x80000012)@h |
| 1171 | ori r4, r4, (0x80000012)@l |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 1172 | li r5, CFG_SYS_FLASH_SIZE |
Timur Tabi | 53b4617 | 2006-08-22 17:07:00 -0500 | [diff] [blame] | 1173 | 1: srawi. r5, r5, 1 /* r5 = r5 >> 1 */ |
| 1174 | addi r4, r4, 1 |
| 1175 | bne 1b |
| 1176 | stw r4, LBLAWAR0(r3) /* LBLAWAR0 <= Flash Size */ |
| 1177 | |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1178 | |
| 1179 | xor r4, r4, r4 |
| 1180 | stw r4, LBLAWBAR1(r3) |
| 1181 | stw r4, LBLAWAR1(r3) /* Off LBIU LAW1 */ |
Joakim Tjernlund | b168d63 | 2010-11-19 14:15:33 +0100 | [diff] [blame] | 1182 | /* Wait for HW to catch up */ |
| 1183 | lwz r4, LBLAWAR1(r3) |
| 1184 | twi 0,r4,0 |
| 1185 | isync |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1186 | blr |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 1187 | #endif /* CFG_SYS_FLASHBOOT */ |