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