1a47a12beSStefan Roese/* 2a4107f86SPrabhakar Kushwaha * Copyright 2004, 2007-2012 Freescale Semiconductor, Inc. 3a47a12beSStefan Roese * Copyright (C) 2003 Motorola,Inc. 4a47a12beSStefan Roese * 5a47a12beSStefan Roese * See file CREDITS for list of people who contributed to this 6a47a12beSStefan Roese * project. 7a47a12beSStefan Roese * 8a47a12beSStefan Roese * This program is free software; you can redistribute it and/or 9a47a12beSStefan Roese * modify it under the terms of the GNU General Public License as 10a47a12beSStefan Roese * published by the Free Software Foundation; either version 2 of 11a47a12beSStefan Roese * the License, or (at your option) any later version. 12a47a12beSStefan Roese * 13a47a12beSStefan Roese * This program is distributed in the hope that it will be useful, 14a47a12beSStefan Roese * but WITHOUT ANY WARRANTY; without even the implied warranty of 15a47a12beSStefan Roese * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16a47a12beSStefan Roese * GNU General Public License for more details. 17a47a12beSStefan Roese * 18a47a12beSStefan Roese * You should have received a copy of the GNU General Public License 19a47a12beSStefan Roese * along with this program; if not, write to the Free Software 20a47a12beSStefan Roese * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21a47a12beSStefan Roese * MA 02111-1307 USA 22a47a12beSStefan Roese */ 23a47a12beSStefan Roese 24a47a12beSStefan Roese/* U-Boot Startup Code for Motorola 85xx PowerPC based Embedded Boards 25a47a12beSStefan Roese * 26a47a12beSStefan Roese * The processor starts at 0xfffffffc and the code is first executed in the 27a47a12beSStefan Roese * last 4K page(0xfffff000-0xffffffff) in flash/rom. 28a47a12beSStefan Roese * 29a47a12beSStefan Roese */ 30a47a12beSStefan Roese 3125ddd1fbSWolfgang Denk#include <asm-offsets.h> 32a47a12beSStefan Roese#include <config.h> 33a47a12beSStefan Roese#include <mpc85xx.h> 34a47a12beSStefan Roese#include <version.h> 35a47a12beSStefan Roese 36a47a12beSStefan Roese#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */ 37a47a12beSStefan Roese 38a47a12beSStefan Roese#include <ppc_asm.tmpl> 39a47a12beSStefan Roese#include <ppc_defs.h> 40a47a12beSStefan Roese 41a47a12beSStefan Roese#include <asm/cache.h> 42a47a12beSStefan Roese#include <asm/mmu.h> 43a47a12beSStefan Roese 44a47a12beSStefan Roese#undef MSR_KERNEL 45a47a12beSStefan Roese#define MSR_KERNEL ( MSR_ME ) /* Machine Check */ 46a47a12beSStefan Roese 47a47a12beSStefan Roese/* 48a47a12beSStefan Roese * Set up GOT: Global Offset Table 49a47a12beSStefan Roese * 50a47a12beSStefan Roese * Use r12 to access the GOT 51a47a12beSStefan Roese */ 52a47a12beSStefan Roese START_GOT 53a47a12beSStefan Roese GOT_ENTRY(_GOT2_TABLE_) 54a47a12beSStefan Roese GOT_ENTRY(_FIXUP_TABLE_) 55a47a12beSStefan Roese 56a47a12beSStefan Roese#ifndef CONFIG_NAND_SPL 57a47a12beSStefan Roese GOT_ENTRY(_start) 58a47a12beSStefan Roese GOT_ENTRY(_start_of_vectors) 59a47a12beSStefan Roese GOT_ENTRY(_end_of_vectors) 60a47a12beSStefan Roese GOT_ENTRY(transfer_to_handler) 61a47a12beSStefan Roese#endif 62a47a12beSStefan Roese 63a47a12beSStefan Roese GOT_ENTRY(__init_end) 6444c6e659SPo-Yu Chuang GOT_ENTRY(__bss_end__) 65a47a12beSStefan Roese GOT_ENTRY(__bss_start) 66a47a12beSStefan Roese END_GOT 67a47a12beSStefan Roese 68a47a12beSStefan Roese/* 69a47a12beSStefan Roese * e500 Startup -- after reset only the last 4KB of the effective 70a47a12beSStefan Roese * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg 71a47a12beSStefan Roese * section is located at THIS LAST page and basically does three 72a47a12beSStefan Roese * things: clear some registers, set up exception tables and 73a47a12beSStefan Roese * add more TLB entries for 'larger spaces'(e.g. the boot rom) to 74a47a12beSStefan Roese * continue the boot procedure. 75a47a12beSStefan Roese 76a47a12beSStefan Roese * Once the boot rom is mapped by TLB entries we can proceed 77a47a12beSStefan Roese * with normal startup. 78a47a12beSStefan Roese * 79a47a12beSStefan Roese */ 80a47a12beSStefan Roese 81a47a12beSStefan Roese .section .bootpg,"ax" 82a47a12beSStefan Roese .globl _start_e500 83a47a12beSStefan Roese 84a47a12beSStefan Roese_start_e500: 855344f7a2SPrabhakar Kushwaha/* Enable debug exception */ 865344f7a2SPrabhakar Kushwaha li r1,MSR_DE 875344f7a2SPrabhakar Kushwaha mtmsr r1 88a47a12beSStefan Roese 897065b7d4SRuchika Gupta#if defined(CONFIG_SECURE_BOOT) && defined(CONFIG_E500MC) 907065b7d4SRuchika Gupta /* ISBC uses L2 as stack. 917065b7d4SRuchika Gupta * Disable L2 cache here so that u-boot can enable it later 927065b7d4SRuchika Gupta * as part of it's normal flow 937065b7d4SRuchika Gupta */ 947065b7d4SRuchika Gupta 957065b7d4SRuchika Gupta /* Check if L2 is enabled */ 967065b7d4SRuchika Gupta mfspr r3, SPRN_L2CSR0 977065b7d4SRuchika Gupta lis r2, L2CSR0_L2E@h 987065b7d4SRuchika Gupta ori r2, r2, L2CSR0_L2E@l 997065b7d4SRuchika Gupta and. r4, r3, r2 1007065b7d4SRuchika Gupta beq l2_disabled 1017065b7d4SRuchika Gupta 1027065b7d4SRuchika Gupta mfspr r3, SPRN_L2CSR0 1037065b7d4SRuchika Gupta /* Flush L2 cache */ 1047065b7d4SRuchika Gupta lis r2,(L2CSR0_L2FL)@h 1057065b7d4SRuchika Gupta ori r2, r2, (L2CSR0_L2FL)@l 1067065b7d4SRuchika Gupta or r3, r2, r3 1077065b7d4SRuchika Gupta sync 1087065b7d4SRuchika Gupta isync 1097065b7d4SRuchika Gupta mtspr SPRN_L2CSR0,r3 1107065b7d4SRuchika Gupta isync 1117065b7d4SRuchika Gupta1: 1127065b7d4SRuchika Gupta mfspr r3, SPRN_L2CSR0 1137065b7d4SRuchika Gupta and. r1, r3, r2 1147065b7d4SRuchika Gupta bne 1b 1157065b7d4SRuchika Gupta 1167065b7d4SRuchika Gupta mfspr r3, SPRN_L2CSR0 1177065b7d4SRuchika Gupta lis r2, L2CSR0_L2E@h 1187065b7d4SRuchika Gupta ori r2, r2, L2CSR0_L2E@l 1197065b7d4SRuchika Gupta andc r4, r3, r2 1207065b7d4SRuchika Gupta sync 1217065b7d4SRuchika Gupta isync 1227065b7d4SRuchika Gupta mtspr SPRN_L2CSR0,r4 1237065b7d4SRuchika Gupta isync 1247065b7d4SRuchika Gupta 1257065b7d4SRuchika Guptal2_disabled: 1267065b7d4SRuchika Gupta#endif 1277065b7d4SRuchika Gupta 128a47a12beSStefan Roese/* clear registers/arrays not reset by hardware */ 129a47a12beSStefan Roese 130a47a12beSStefan Roese /* L1 */ 131a47a12beSStefan Roese li r0,2 132a47a12beSStefan Roese mtspr L1CSR0,r0 /* invalidate d-cache */ 133a47a12beSStefan Roese mtspr L1CSR1,r0 /* invalidate i-cache */ 134a47a12beSStefan Roese 135a47a12beSStefan Roese mfspr r1,DBSR 136a47a12beSStefan Roese mtspr DBSR,r1 /* Clear all valid bits */ 137a47a12beSStefan Roese 138a47a12beSStefan Roese /* 139a47a12beSStefan Roese * Enable L1 Caches early 140a47a12beSStefan Roese * 141a47a12beSStefan Roese */ 142a47a12beSStefan Roese 143a47a12beSStefan Roese#if defined(CONFIG_E500MC) && defined(CONFIG_SYS_CACHE_STASHING) 144a47a12beSStefan Roese /* set stash id to (coreID) * 2 + 32 + L1 CT (0) */ 145a47a12beSStefan Roese li r2,(32 + 0) 146a47a12beSStefan Roese mtspr L1CSR2,r2 147a47a12beSStefan Roese#endif 148a47a12beSStefan Roese 149a47a12beSStefan Roese /* Enable/invalidate the I-Cache */ 150a47a12beSStefan Roese lis r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@h 151a47a12beSStefan Roese ori r2,r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@l 152a47a12beSStefan Roese mtspr SPRN_L1CSR1,r2 153a47a12beSStefan Roese1: 154a47a12beSStefan Roese mfspr r3,SPRN_L1CSR1 155a47a12beSStefan Roese and. r1,r3,r2 156a47a12beSStefan Roese bne 1b 157a47a12beSStefan Roese 158a47a12beSStefan Roese lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h 159a47a12beSStefan Roese ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l 160a47a12beSStefan Roese mtspr SPRN_L1CSR1,r3 161a47a12beSStefan Roese isync 162a47a12beSStefan Roese2: 163a47a12beSStefan Roese mfspr r3,SPRN_L1CSR1 164a47a12beSStefan Roese andi. r1,r3,L1CSR1_ICE@l 165a47a12beSStefan Roese beq 2b 166a47a12beSStefan Roese 167a47a12beSStefan Roese /* Enable/invalidate the D-Cache */ 168a47a12beSStefan Roese lis r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@h 169a47a12beSStefan Roese ori r2,r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@l 170a47a12beSStefan Roese mtspr SPRN_L1CSR0,r2 171a47a12beSStefan Roese1: 172a47a12beSStefan Roese mfspr r3,SPRN_L1CSR0 173a47a12beSStefan Roese and. r1,r3,r2 174a47a12beSStefan Roese bne 1b 175a47a12beSStefan Roese 176a47a12beSStefan Roese lis r3,(L1CSR0_CPE|L1CSR0_DCE)@h 177a47a12beSStefan Roese ori r3,r3,(L1CSR0_CPE|L1CSR0_DCE)@l 178a47a12beSStefan Roese mtspr SPRN_L1CSR0,r3 179a47a12beSStefan Roese isync 180a47a12beSStefan Roese2: 181a47a12beSStefan Roese mfspr r3,SPRN_L1CSR0 182a47a12beSStefan Roese andi. r1,r3,L1CSR0_DCE@l 183a47a12beSStefan Roese beq 2b 184a47a12beSStefan Roese 185*689f00fcSPrabhakar Kushwaha#if defined(CONFIG_SYS_PPC_E500_DEBUG_TLB) 186*689f00fcSPrabhakar Kushwaha/* 187*689f00fcSPrabhakar Kushwaha * TLB entry for debuggging in AS1 188*689f00fcSPrabhakar Kushwaha * Create temporary TLB entry in AS0 to handle debug exception 189*689f00fcSPrabhakar Kushwaha * As on debug exception MSR is cleared i.e. Address space is changed 190*689f00fcSPrabhakar Kushwaha * to 0. A TLB entry (in AS0) is required to handle debug exception generated 191*689f00fcSPrabhakar Kushwaha * in AS1. 192*689f00fcSPrabhakar Kushwaha */ 193*689f00fcSPrabhakar Kushwaha 194*689f00fcSPrabhakar Kushwaha lis r6,FSL_BOOKE_MAS0(1, 195*689f00fcSPrabhakar Kushwaha CONFIG_SYS_PPC_E500_DEBUG_TLB, 0)@h 196*689f00fcSPrabhakar Kushwaha ori r6,r6,FSL_BOOKE_MAS0(1, 197*689f00fcSPrabhakar Kushwaha CONFIG_SYS_PPC_E500_DEBUG_TLB, 0)@l 198*689f00fcSPrabhakar Kushwaha 199*689f00fcSPrabhakar Kushwaha#if !defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_SECURE_BOOT) 200*689f00fcSPrabhakar Kushwaha/* 201*689f00fcSPrabhakar Kushwaha * TLB entry is created for IVPR + IVOR15 to map on valid OP code address 202*689f00fcSPrabhakar Kushwaha * bacause flash's virtual address maps to 0xff800000 - 0xffffffff. 203*689f00fcSPrabhakar Kushwaha * and this window is outside of 4K boot window. 204*689f00fcSPrabhakar Kushwaha */ 205*689f00fcSPrabhakar Kushwaha lis r7,FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_4M)@h 206*689f00fcSPrabhakar Kushwaha ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_4M)@l 207*689f00fcSPrabhakar Kushwaha 208*689f00fcSPrabhakar Kushwaha lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE & 0xffc00000, 209*689f00fcSPrabhakar Kushwaha (MAS2_I|MAS2_G))@h 210*689f00fcSPrabhakar Kushwaha ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE & 0xffc00000, 211*689f00fcSPrabhakar Kushwaha (MAS2_I|MAS2_G))@l 212*689f00fcSPrabhakar Kushwaha 213*689f00fcSPrabhakar Kushwaha /* The 85xx has the default boot window 0xff800000 - 0xffffffff */ 214*689f00fcSPrabhakar Kushwaha lis r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h 215*689f00fcSPrabhakar Kushwaha ori r9,r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l 216*689f00fcSPrabhakar Kushwaha#elif !defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SECURE_BOOT) 217*689f00fcSPrabhakar Kushwaha lis r7,FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@h 218*689f00fcSPrabhakar Kushwaha ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@l 219*689f00fcSPrabhakar Kushwaha 220*689f00fcSPrabhakar Kushwaha lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE,(MAS2_I|MAS2_G))@h 221*689f00fcSPrabhakar Kushwaha ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE,(MAS2_I|MAS2_G))@l 222*689f00fcSPrabhakar Kushwaha 223*689f00fcSPrabhakar Kushwaha lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_PBI_FLASH_WINDOW, 0, 224*689f00fcSPrabhakar Kushwaha (MAS3_SX|MAS3_SW|MAS3_SR))@h 225*689f00fcSPrabhakar Kushwaha ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_PBI_FLASH_WINDOW, 0, 226*689f00fcSPrabhakar Kushwaha (MAS3_SX|MAS3_SW|MAS3_SR))@l 227*689f00fcSPrabhakar Kushwaha#else 228*689f00fcSPrabhakar Kushwaha/* 229*689f00fcSPrabhakar Kushwaha * TLB entry is created for IVPR + IVOR15 to map on valid OP code address 230*689f00fcSPrabhakar Kushwaha * because "nexti" will resize TLB to 4K 231*689f00fcSPrabhakar Kushwaha */ 232*689f00fcSPrabhakar Kushwaha lis r7,FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_256K)@h 233*689f00fcSPrabhakar Kushwaha ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_256K)@l 234*689f00fcSPrabhakar Kushwaha 235*689f00fcSPrabhakar Kushwaha lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE, (MAS2_I))@h 236*689f00fcSPrabhakar Kushwaha ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE, 237*689f00fcSPrabhakar Kushwaha (MAS2_I))@l 238*689f00fcSPrabhakar Kushwaha lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_MONITOR_BASE, 0, 239*689f00fcSPrabhakar Kushwaha (MAS3_SX|MAS3_SW|MAS3_SR))@h 240*689f00fcSPrabhakar Kushwaha ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_MONITOR_BASE, 0, 241*689f00fcSPrabhakar Kushwaha (MAS3_SX|MAS3_SW|MAS3_SR))@l 242*689f00fcSPrabhakar Kushwaha#endif 243*689f00fcSPrabhakar Kushwaha mtspr MAS0,r6 244*689f00fcSPrabhakar Kushwaha mtspr MAS1,r7 245*689f00fcSPrabhakar Kushwaha mtspr MAS2,r8 246*689f00fcSPrabhakar Kushwaha mtspr MAS3,r9 247*689f00fcSPrabhakar Kushwaha tlbwe 248*689f00fcSPrabhakar Kushwaha isync 249*689f00fcSPrabhakar Kushwaha#endif 250*689f00fcSPrabhakar Kushwaha 251119a55f9SPrabhakar Kushwaha/* 252119a55f9SPrabhakar Kushwaha * Ne need to setup interrupt vector for NAND SPL 253119a55f9SPrabhakar Kushwaha * because NAND SPL never compiles it. 254119a55f9SPrabhakar Kushwaha */ 255119a55f9SPrabhakar Kushwaha#if !defined(CONFIG_NAND_SPL) 256a47a12beSStefan Roese /* Setup interrupt vectors */ 2570635b09cSHaiying Wang lis r1,CONFIG_SYS_MONITOR_BASE@h 258a47a12beSStefan Roese mtspr IVPR,r1 259a47a12beSStefan Roese 260a4107f86SPrabhakar Kushwaha lis r3,(CONFIG_SYS_MONITOR_BASE & 0xffff)@h 261a4107f86SPrabhakar Kushwaha ori r3,r3,(CONFIG_SYS_MONITOR_BASE & 0xffff)@l 262a4107f86SPrabhakar Kushwaha 263a4107f86SPrabhakar Kushwaha addi r4,r3,CriticalInput - _start + _START_OFFSET 264a4107f86SPrabhakar Kushwaha mtspr IVOR0,r4 /* 0: Critical input */ 265a4107f86SPrabhakar Kushwaha addi r4,r3,MachineCheck - _start + _START_OFFSET 266a4107f86SPrabhakar Kushwaha mtspr IVOR1,r4 /* 1: Machine check */ 267a4107f86SPrabhakar Kushwaha addi r4,r3,DataStorage - _start + _START_OFFSET 268a4107f86SPrabhakar Kushwaha mtspr IVOR2,r4 /* 2: Data storage */ 269a4107f86SPrabhakar Kushwaha addi r4,r3,InstStorage - _start + _START_OFFSET 270a4107f86SPrabhakar Kushwaha mtspr IVOR3,r4 /* 3: Instruction storage */ 271a4107f86SPrabhakar Kushwaha addi r4,r3,ExtInterrupt - _start + _START_OFFSET 272a4107f86SPrabhakar Kushwaha mtspr IVOR4,r4 /* 4: External interrupt */ 273a4107f86SPrabhakar Kushwaha addi r4,r3,Alignment - _start + _START_OFFSET 274a4107f86SPrabhakar Kushwaha mtspr IVOR5,r4 /* 5: Alignment */ 275a4107f86SPrabhakar Kushwaha addi r4,r3,ProgramCheck - _start + _START_OFFSET 276a4107f86SPrabhakar Kushwaha mtspr IVOR6,r4 /* 6: Program check */ 277a4107f86SPrabhakar Kushwaha addi r4,r3,FPUnavailable - _start + _START_OFFSET 278a4107f86SPrabhakar Kushwaha mtspr IVOR7,r4 /* 7: floating point unavailable */ 279a4107f86SPrabhakar Kushwaha addi r4,r3,SystemCall - _start + _START_OFFSET 280a4107f86SPrabhakar Kushwaha mtspr IVOR8,r4 /* 8: System call */ 281a47a12beSStefan Roese /* 9: Auxiliary processor unavailable(unsupported) */ 282a4107f86SPrabhakar Kushwaha addi r4,r3,Decrementer - _start + _START_OFFSET 283a4107f86SPrabhakar Kushwaha mtspr IVOR10,r4 /* 10: Decrementer */ 284a4107f86SPrabhakar Kushwaha addi r4,r3,IntervalTimer - _start + _START_OFFSET 285a4107f86SPrabhakar Kushwaha mtspr IVOR11,r4 /* 11: Interval timer */ 286a4107f86SPrabhakar Kushwaha addi r4,r3,WatchdogTimer - _start + _START_OFFSET 287a4107f86SPrabhakar Kushwaha mtspr IVOR12,r4 /* 12: Watchdog timer */ 288a4107f86SPrabhakar Kushwaha addi r4,r3,DataTLBError - _start + _START_OFFSET 289a4107f86SPrabhakar Kushwaha mtspr IVOR13,r4 /* 13: Data TLB error */ 290a4107f86SPrabhakar Kushwaha addi r4,r3,InstructionTLBError - _start + _START_OFFSET 291a4107f86SPrabhakar Kushwaha mtspr IVOR14,r4 /* 14: Instruction TLB error */ 292a4107f86SPrabhakar Kushwaha addi r4,r3,DebugBreakpoint - _start + _START_OFFSET 293a4107f86SPrabhakar Kushwaha mtspr IVOR15,r4 /* 15: Debug */ 294119a55f9SPrabhakar Kushwaha#endif 295a47a12beSStefan Roese 296a47a12beSStefan Roese /* Clear and set up some registers. */ 297a47a12beSStefan Roese li r0,0x0000 298a47a12beSStefan Roese lis r1,0xffff 299a47a12beSStefan Roese mtspr DEC,r0 /* prevent dec exceptions */ 300a47a12beSStefan Roese mttbl r0 /* prevent fit & wdt exceptions */ 301a47a12beSStefan Roese mttbu r0 302a47a12beSStefan Roese mtspr TSR,r1 /* clear all timer exception status */ 303a47a12beSStefan Roese mtspr TCR,r0 /* disable all */ 304a47a12beSStefan Roese mtspr ESR,r0 /* clear exception syndrome register */ 305a47a12beSStefan Roese mtspr MCSR,r0 /* machine check syndrome register */ 306a47a12beSStefan Roese mtxer r0 /* clear integer exception register */ 307a47a12beSStefan Roese 308a47a12beSStefan Roese#ifdef CONFIG_SYS_BOOK3E_HV 309a47a12beSStefan Roese mtspr MAS8,r0 /* make sure MAS8 is clear */ 310a47a12beSStefan Roese#endif 311a47a12beSStefan Roese 312a47a12beSStefan Roese /* Enable Time Base and Select Time Base Clock */ 313a47a12beSStefan Roese lis r0,HID0_EMCP@h /* Enable machine check */ 314a47a12beSStefan Roese#if defined(CONFIG_ENABLE_36BIT_PHYS) 315a47a12beSStefan Roese ori r0,r0,HID0_ENMAS7@l /* Enable MAS7 */ 316a47a12beSStefan Roese#endif 317a47a12beSStefan Roese#ifndef CONFIG_E500MC 318a47a12beSStefan Roese ori r0,r0,HID0_TBEN@l /* Enable Timebase */ 319a47a12beSStefan Roese#endif 320a47a12beSStefan Roese mtspr HID0,r0 321a47a12beSStefan Roese 322a47a12beSStefan Roese#ifndef CONFIG_E500MC 323a47a12beSStefan Roese li r0,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */ 324a47a12beSStefan Roese mfspr r3,PVR 325a47a12beSStefan Roese andi. r3,r3, 0xff 326a47a12beSStefan Roese cmpwi r3,0x50@l /* if we are rev 5.0 or greater set MBDD */ 327a47a12beSStefan Roese blt 1f 328a47a12beSStefan Roese /* Set MBDD bit also */ 329a47a12beSStefan Roese ori r0, r0, HID1_MBDD@l 330a47a12beSStefan Roese1: 331a47a12beSStefan Roese mtspr HID1,r0 332a47a12beSStefan Roese#endif 333a47a12beSStefan Roese 33443f082bbSKumar Gala#ifdef CONFIG_SYS_FSL_ERRATUM_CPU_A003999 33543f082bbSKumar Gala mfspr r3,977 33643f082bbSKumar Gala oris r3,r3,0x0100 33743f082bbSKumar Gala mtspr 977,r3 33843f082bbSKumar Gala#endif 33943f082bbSKumar Gala 340a47a12beSStefan Roese /* Enable Branch Prediction */ 341a47a12beSStefan Roese#if defined(CONFIG_BTB) 342a47a12beSStefan Roese lis r0,BUCSR_ENABLE@h 343a47a12beSStefan Roese ori r0,r0,BUCSR_ENABLE@l 344a47a12beSStefan Roese mtspr SPRN_BUCSR,r0 345a47a12beSStefan Roese#endif 346a47a12beSStefan Roese 347a47a12beSStefan Roese#if defined(CONFIG_SYS_INIT_DBCR) 348a47a12beSStefan Roese lis r1,0xffff 349a47a12beSStefan Roese ori r1,r1,0xffff 350a47a12beSStefan Roese mtspr DBSR,r1 /* Clear all status bits */ 351a47a12beSStefan Roese lis r0,CONFIG_SYS_INIT_DBCR@h /* DBCR0[IDM] must be set */ 352a47a12beSStefan Roese ori r0,r0,CONFIG_SYS_INIT_DBCR@l 353a47a12beSStefan Roese mtspr DBCR0,r0 354a47a12beSStefan Roese#endif 355a47a12beSStefan Roese 356a47a12beSStefan Roese#ifdef CONFIG_MPC8569 357a47a12beSStefan Roese#define CONFIG_SYS_LBC_ADDR (CONFIG_SYS_CCSRBAR_DEFAULT + 0x5000) 358a47a12beSStefan Roese#define CONFIG_SYS_LBCR_ADDR (CONFIG_SYS_LBC_ADDR + 0xd0) 359a47a12beSStefan Roese 360a47a12beSStefan Roese /* MPC8569 Rev.0 silcon needs to set bit 13 of LBCR to allow elBC to 361a47a12beSStefan Roese * use address space which is more than 12bits, and it must be done in 362a47a12beSStefan Roese * the 4K boot page. So we set this bit here. 363a47a12beSStefan Roese */ 364a47a12beSStefan Roese 365a47a12beSStefan Roese /* create a temp mapping TLB0[0] for LBCR */ 366a47a12beSStefan Roese lis r6,FSL_BOOKE_MAS0(0, 0, 0)@h 367a47a12beSStefan Roese ori r6,r6,FSL_BOOKE_MAS0(0, 0, 0)@l 368a47a12beSStefan Roese 369a47a12beSStefan Roese lis r7,FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@h 370a47a12beSStefan Roese ori r7,r7,FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@l 371a47a12beSStefan Roese 372a47a12beSStefan Roese lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_LBC_ADDR, MAS2_I|MAS2_G)@h 373a47a12beSStefan Roese ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_LBC_ADDR, MAS2_I|MAS2_G)@l 374a47a12beSStefan Roese 375a47a12beSStefan Roese lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_LBC_ADDR, 0, 376a47a12beSStefan Roese (MAS3_SX|MAS3_SW|MAS3_SR))@h 377a47a12beSStefan Roese ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_LBC_ADDR, 0, 378a47a12beSStefan Roese (MAS3_SX|MAS3_SW|MAS3_SR))@l 379a47a12beSStefan Roese 380a47a12beSStefan Roese mtspr MAS0,r6 381a47a12beSStefan Roese mtspr MAS1,r7 382a47a12beSStefan Roese mtspr MAS2,r8 383a47a12beSStefan Roese mtspr MAS3,r9 384a47a12beSStefan Roese isync 385a47a12beSStefan Roese msync 386a47a12beSStefan Roese tlbwe 387a47a12beSStefan Roese 388a47a12beSStefan Roese /* Set LBCR register */ 389a47a12beSStefan Roese lis r4,CONFIG_SYS_LBCR_ADDR@h 390a47a12beSStefan Roese ori r4,r4,CONFIG_SYS_LBCR_ADDR@l 391a47a12beSStefan Roese 392a47a12beSStefan Roese lis r5,CONFIG_SYS_LBC_LBCR@h 393a47a12beSStefan Roese ori r5,r5,CONFIG_SYS_LBC_LBCR@l 394a47a12beSStefan Roese stw r5,0(r4) 395a47a12beSStefan Roese isync 396a47a12beSStefan Roese 397a47a12beSStefan Roese /* invalidate this temp TLB */ 398a47a12beSStefan Roese lis r4,CONFIG_SYS_LBC_ADDR@h 399a47a12beSStefan Roese ori r4,r4,CONFIG_SYS_LBC_ADDR@l 400a47a12beSStefan Roese tlbivax 0,r4 401a47a12beSStefan Roese isync 402a47a12beSStefan Roese 403a47a12beSStefan Roese#endif /* CONFIG_MPC8569 */ 404a47a12beSStefan Roese 4056ca88b09STimur Tabi/* 40672243c01STimur Tabi * Search for the TLB that covers the code we're executing, and shrink it 40772243c01STimur Tabi * so that it covers only this 4K page. That will ensure that any other 40872243c01STimur Tabi * TLB we create won't interfere with it. We assume that the TLB exists, 40972243c01STimur Tabi * which is why we don't check the Valid bit of MAS1. 41072243c01STimur Tabi * 41172243c01STimur Tabi * This is necessary, for example, when booting from the on-chip ROM, 41272243c01STimur Tabi * which (oddly) creates a single 4GB TLB that covers CCSR and DDR. 41372243c01STimur Tabi * If we don't shrink this TLB now, then we'll accidentally delete it 41472243c01STimur Tabi * in "purge_old_ccsr_tlb" below. 41572243c01STimur Tabi */ 41672243c01STimur Tabi bl nexti /* Find our address */ 41772243c01STimur Tabinexti: mflr r1 /* R1 = our PC */ 41872243c01STimur Tabi li r2, 0 41972243c01STimur Tabi mtspr MAS6, r2 /* Assume the current PID and AS are 0 */ 42072243c01STimur Tabi isync 42172243c01STimur Tabi msync 42272243c01STimur Tabi tlbsx 0, r1 /* This must succeed */ 42372243c01STimur Tabi 42472243c01STimur Tabi /* Set the size of the TLB to 4KB */ 42572243c01STimur Tabi mfspr r3, MAS1 42672243c01STimur Tabi li r2, 0xF00 42772243c01STimur Tabi andc r3, r3, r2 /* Clear the TSIZE bits */ 42872243c01STimur Tabi ori r3, r3, MAS1_TSIZE(BOOKE_PAGESZ_4K)@l 42972243c01STimur Tabi mtspr MAS1, r3 43072243c01STimur Tabi 43172243c01STimur Tabi /* 43272243c01STimur Tabi * Set the base address of the TLB to our PC. We assume that 43372243c01STimur Tabi * virtual == physical. We also assume that MAS2_EPN == MAS3_RPN. 43472243c01STimur Tabi */ 43572243c01STimur Tabi lis r3, MAS2_EPN@h 43672243c01STimur Tabi ori r3, r3, MAS2_EPN@l /* R3 = MAS2_EPN */ 43772243c01STimur Tabi 43872243c01STimur Tabi and r1, r1, r3 /* Our PC, rounded down to the nearest page */ 43972243c01STimur Tabi 44072243c01STimur Tabi mfspr r2, MAS2 44172243c01STimur Tabi andc r2, r2, r3 44272243c01STimur Tabi or r2, r2, r1 44372243c01STimur Tabi mtspr MAS2, r2 /* Set the EPN to our PC base address */ 44472243c01STimur Tabi 44572243c01STimur Tabi mfspr r2, MAS3 44672243c01STimur Tabi andc r2, r2, r3 44772243c01STimur Tabi or r2, r2, r1 44872243c01STimur Tabi mtspr MAS3, r2 /* Set the RPN to our PC base address */ 44972243c01STimur Tabi 45072243c01STimur Tabi isync 45172243c01STimur Tabi msync 45272243c01STimur Tabi tlbwe 45372243c01STimur Tabi 45472243c01STimur Tabi/* 4556ca88b09STimur Tabi * Relocate CCSR, if necessary. We relocate CCSR if (obviously) the default 4566ca88b09STimur Tabi * location is not where we want it. This typically happens on a 36-bit 4576ca88b09STimur Tabi * system, where we want to move CCSR to near the top of 36-bit address space. 4586ca88b09STimur Tabi * 4596ca88b09STimur Tabi * To move CCSR, we create two temporary TLBs, one for the old location, and 4606ca88b09STimur Tabi * another for the new location. On CoreNet systems, we also need to create 4616ca88b09STimur Tabi * a special, temporary LAW. 4626ca88b09STimur Tabi * 4636ca88b09STimur Tabi * As a general rule, TLB0 is used for short-term TLBs, and TLB1 is used for 4646ca88b09STimur Tabi * long-term TLBs, so we use TLB0 here. 4656ca88b09STimur Tabi */ 4666ca88b09STimur Tabi#if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS) 4676ca88b09STimur Tabi 4686ca88b09STimur Tabi#if !defined(CONFIG_SYS_CCSRBAR_PHYS_HIGH) || !defined(CONFIG_SYS_CCSRBAR_PHYS_LOW) 4696ca88b09STimur Tabi#error "CONFIG_SYS_CCSRBAR_PHYS_HIGH and CONFIG_SYS_CCSRBAR_PHYS_LOW) must be defined." 4706ca88b09STimur Tabi#endif 4716ca88b09STimur Tabi 4726ca88b09STimur Tabipurge_old_ccsr_tlb: 4736ca88b09STimur Tabi lis r8, CONFIG_SYS_CCSRBAR@h 4746ca88b09STimur Tabi ori r8, r8, CONFIG_SYS_CCSRBAR@l 4756ca88b09STimur Tabi lis r9, (CONFIG_SYS_CCSRBAR + 0x1000)@h 4766ca88b09STimur Tabi ori r9, r9, (CONFIG_SYS_CCSRBAR + 0x1000)@l 4776ca88b09STimur Tabi 4786ca88b09STimur Tabi /* 4796ca88b09STimur Tabi * In a multi-stage boot (e.g. NAND boot), a previous stage may have 4806ca88b09STimur Tabi * created a TLB for CCSR, which will interfere with our relocation 4816ca88b09STimur Tabi * code. Since we're going to create a new TLB for CCSR anyway, 4826ca88b09STimur Tabi * it should be safe to delete this old TLB here. We have to search 4836ca88b09STimur Tabi * for it, though. 4846ca88b09STimur Tabi */ 4856ca88b09STimur Tabi 4866ca88b09STimur Tabi li r1, 0 4876ca88b09STimur Tabi mtspr MAS6, r1 /* Search the current address space and PID */ 488452ad61cSTimur Tabi isync 489452ad61cSTimur Tabi msync 4906ca88b09STimur Tabi tlbsx 0, r8 4916ca88b09STimur Tabi mfspr r1, MAS1 4926ca88b09STimur Tabi andis. r2, r1, MAS1_VALID@h /* Check for the Valid bit */ 4936ca88b09STimur Tabi beq 1f /* Skip if no TLB found */ 4946ca88b09STimur Tabi 4956ca88b09STimur Tabi rlwinm r1, r1, 0, 1, 31 /* Clear Valid bit */ 4966ca88b09STimur Tabi mtspr MAS1, r1 497452ad61cSTimur Tabi isync 498452ad61cSTimur Tabi msync 4996ca88b09STimur Tabi tlbwe 5006ca88b09STimur Tabi1: 5016ca88b09STimur Tabi 5026ca88b09STimur Tabicreate_ccsr_new_tlb: 5036ca88b09STimur Tabi /* 5046ca88b09STimur Tabi * Create a TLB for the new location of CCSR. Register R8 is reserved 5056ca88b09STimur Tabi * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR). 5066ca88b09STimur Tabi */ 5076ca88b09STimur Tabi lis r0, FSL_BOOKE_MAS0(0, 0, 0)@h 5086ca88b09STimur Tabi ori r0, r0, FSL_BOOKE_MAS0(0, 0, 0)@l 5096ca88b09STimur Tabi lis r1, FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@h 5106ca88b09STimur Tabi ori r1, r1, FSL_BOOKE_MAS1(1, 0, 0, 0, BOOKE_PAGESZ_4K)@l 5116ca88b09STimur Tabi lis r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR, (MAS2_I|MAS2_G))@h 5126ca88b09STimur Tabi ori r2, r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR, (MAS2_I|MAS2_G))@l 5136ca88b09STimur Tabi lis r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@h 5146ca88b09STimur Tabi ori r3, r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@l 515822ad60fSTimur Tabi#ifdef CONFIG_ENABLE_36BIT_PHYS 5166ca88b09STimur Tabi lis r7, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h 5176ca88b09STimur Tabi ori r7, r7, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l 518822ad60fSTimur Tabi mtspr MAS7, r7 519822ad60fSTimur Tabi#endif 5206ca88b09STimur Tabi mtspr MAS0, r0 5216ca88b09STimur Tabi mtspr MAS1, r1 5226ca88b09STimur Tabi mtspr MAS2, r2 5236ca88b09STimur Tabi mtspr MAS3, r3 5246ca88b09STimur Tabi isync 5256ca88b09STimur Tabi msync 5266ca88b09STimur Tabi tlbwe 5276ca88b09STimur Tabi 5286ca88b09STimur Tabi /* 529c2efa0aaSTimur Tabi * Create a TLB for the current location of CCSR. Register R9 is reserved 5306ca88b09STimur Tabi * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR + 0x1000). 5316ca88b09STimur Tabi */ 5326ca88b09STimur Tabicreate_ccsr_old_tlb: 5336ca88b09STimur Tabi lis r0, FSL_BOOKE_MAS0(0, 1, 0)@h 5346ca88b09STimur Tabi ori r0, r0, FSL_BOOKE_MAS0(0, 1, 0)@l 5356ca88b09STimur Tabi lis r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR + 0x1000, (MAS2_I|MAS2_G))@h 5366ca88b09STimur Tabi ori r2, r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR + 0x1000, (MAS2_I|MAS2_G))@l 5376ca88b09STimur Tabi lis r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_DEFAULT, 0, (MAS3_SW|MAS3_SR))@h 5386ca88b09STimur Tabi ori r3, r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_DEFAULT, 0, (MAS3_SW|MAS3_SR))@l 539822ad60fSTimur Tabi#ifdef CONFIG_ENABLE_36BIT_PHYS 5406ca88b09STimur Tabi li r7, 0 /* The default CCSR address is always a 32-bit number */ 541822ad60fSTimur Tabi mtspr MAS7, r7 542822ad60fSTimur Tabi#endif 5436ca88b09STimur Tabi mtspr MAS0, r0 5446ca88b09STimur Tabi /* MAS1 is the same as above */ 5456ca88b09STimur Tabi mtspr MAS2, r2 5466ca88b09STimur Tabi mtspr MAS3, r3 5476ca88b09STimur Tabi isync 5486ca88b09STimur Tabi msync 5496ca88b09STimur Tabi tlbwe 5506ca88b09STimur Tabi 55119e43841STimur Tabi /* 55219e43841STimur Tabi * We have a TLB for what we think is the current (old) CCSR. Let's 55319e43841STimur Tabi * verify that, otherwise we won't be able to move it. 55419e43841STimur Tabi * CONFIG_SYS_CCSRBAR_DEFAULT is always a 32-bit number, so we only 55519e43841STimur Tabi * need to compare the lower 32 bits of CCSRBAR on CoreNet systems. 55619e43841STimur Tabi */ 55719e43841STimur Tabiverify_old_ccsr: 55819e43841STimur Tabi lis r0, CONFIG_SYS_CCSRBAR_DEFAULT@h 55919e43841STimur Tabi ori r0, r0, CONFIG_SYS_CCSRBAR_DEFAULT@l 56019e43841STimur Tabi#ifdef CONFIG_FSL_CORENET 56119e43841STimur Tabi lwz r1, 4(r9) /* CCSRBARL */ 56219e43841STimur Tabi#else 56319e43841STimur Tabi lwz r1, 0(r9) /* CCSRBAR, shifted right by 12 */ 56419e43841STimur Tabi slwi r1, r1, 12 56519e43841STimur Tabi#endif 56619e43841STimur Tabi 56719e43841STimur Tabi cmpl 0, r0, r1 56819e43841STimur Tabi 56919e43841STimur Tabi /* 57019e43841STimur Tabi * If the value we read from CCSRBARL is not what we expect, then 57119e43841STimur Tabi * enter an infinite loop. This will at least allow a debugger to 57219e43841STimur Tabi * halt execution and examine TLBs, etc. There's no point in going 57319e43841STimur Tabi * on. 57419e43841STimur Tabi */ 57519e43841STimur Tabiinfinite_debug_loop: 57619e43841STimur Tabi bne infinite_debug_loop 57719e43841STimur Tabi 5786ca88b09STimur Tabi#ifdef CONFIG_FSL_CORENET 5796ca88b09STimur Tabi 5806ca88b09STimur Tabi#define CCSR_LAWBARH0 (CONFIG_SYS_CCSRBAR + 0x1000) 5816ca88b09STimur Tabi#define LAW_EN 0x80000000 5826ca88b09STimur Tabi#define LAW_SIZE_4K 0xb 5836ca88b09STimur Tabi#define CCSRBAR_LAWAR (LAW_EN | (0x1e << 20) | LAW_SIZE_4K) 5846ca88b09STimur Tabi#define CCSRAR_C 0x80000000 /* Commit */ 5856ca88b09STimur Tabi 5866ca88b09STimur Tabicreate_temp_law: 5876ca88b09STimur Tabi /* 5886ca88b09STimur Tabi * On CoreNet systems, we create the temporary LAW using a special LAW 5896ca88b09STimur Tabi * target ID of 0x1e. LAWBARH is at offset 0xc00 in CCSR. 5906ca88b09STimur Tabi */ 5916ca88b09STimur Tabi lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h 5926ca88b09STimur Tabi ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l 5936ca88b09STimur Tabi lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h 5946ca88b09STimur Tabi ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l 5956ca88b09STimur Tabi lis r2, CCSRBAR_LAWAR@h 5966ca88b09STimur Tabi ori r2, r2, CCSRBAR_LAWAR@l 5976ca88b09STimur Tabi 5986ca88b09STimur Tabi stw r0, 0xc00(r9) /* LAWBARH0 */ 5996ca88b09STimur Tabi stw r1, 0xc04(r9) /* LAWBARL0 */ 6006ca88b09STimur Tabi sync 6016ca88b09STimur Tabi stw r2, 0xc08(r9) /* LAWAR0 */ 6026ca88b09STimur Tabi 6036ca88b09STimur Tabi /* 6046ca88b09STimur Tabi * Read back from LAWAR to ensure the update is complete. e500mc 6056ca88b09STimur Tabi * cores also require an isync. 6066ca88b09STimur Tabi */ 6076ca88b09STimur Tabi lwz r0, 0xc08(r9) /* LAWAR0 */ 6086ca88b09STimur Tabi isync 6096ca88b09STimur Tabi 6106ca88b09STimur Tabi /* 6116ca88b09STimur Tabi * Read the current CCSRBARH and CCSRBARL using load word instructions. 6126ca88b09STimur Tabi * Follow this with an isync instruction. This forces any outstanding 6136ca88b09STimur Tabi * accesses to configuration space to completion. 6146ca88b09STimur Tabi */ 6156ca88b09STimur Tabiread_old_ccsrbar: 6166ca88b09STimur Tabi lwz r0, 0(r9) /* CCSRBARH */ 617c2efa0aaSTimur Tabi lwz r0, 4(r9) /* CCSRBARL */ 6186ca88b09STimur Tabi isync 6196ca88b09STimur Tabi 6206ca88b09STimur Tabi /* 6216ca88b09STimur Tabi * Write the new values for CCSRBARH and CCSRBARL to their old 6226ca88b09STimur Tabi * locations. The CCSRBARH has a shadow register. When the CCSRBARH 6236ca88b09STimur Tabi * has a new value written it loads a CCSRBARH shadow register. When 6246ca88b09STimur Tabi * the CCSRBARL is written, the CCSRBARH shadow register contents 6256ca88b09STimur Tabi * along with the CCSRBARL value are loaded into the CCSRBARH and 6266ca88b09STimur Tabi * CCSRBARL registers, respectively. Follow this with a sync 6276ca88b09STimur Tabi * instruction. 6286ca88b09STimur Tabi */ 6296ca88b09STimur Tabiwrite_new_ccsrbar: 6306ca88b09STimur Tabi lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h 6316ca88b09STimur Tabi ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l 6326ca88b09STimur Tabi lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h 6336ca88b09STimur Tabi ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l 6346ca88b09STimur Tabi lis r2, CCSRAR_C@h 6356ca88b09STimur Tabi ori r2, r2, CCSRAR_C@l 6366ca88b09STimur Tabi 6376ca88b09STimur Tabi stw r0, 0(r9) /* Write to CCSRBARH */ 6386ca88b09STimur Tabi sync /* Make sure we write to CCSRBARH first */ 6396ca88b09STimur Tabi stw r1, 4(r9) /* Write to CCSRBARL */ 6406ca88b09STimur Tabi sync 6416ca88b09STimur Tabi 6426ca88b09STimur Tabi /* 6436ca88b09STimur Tabi * Write a 1 to the commit bit (C) of CCSRAR at the old location. 6446ca88b09STimur Tabi * Follow this with a sync instruction. 6456ca88b09STimur Tabi */ 6466ca88b09STimur Tabi stw r2, 8(r9) 6476ca88b09STimur Tabi sync 6486ca88b09STimur Tabi 6496ca88b09STimur Tabi /* Delete the temporary LAW */ 6506ca88b09STimur Tabidelete_temp_law: 6516ca88b09STimur Tabi li r1, 0 6526ca88b09STimur Tabi stw r1, 0xc08(r8) 6536ca88b09STimur Tabi sync 6546ca88b09STimur Tabi stw r1, 0xc00(r8) 6556ca88b09STimur Tabi stw r1, 0xc04(r8) 6566ca88b09STimur Tabi sync 6576ca88b09STimur Tabi 6586ca88b09STimur Tabi#else /* #ifdef CONFIG_FSL_CORENET */ 6596ca88b09STimur Tabi 6606ca88b09STimur Tabiwrite_new_ccsrbar: 6616ca88b09STimur Tabi /* 6626ca88b09STimur Tabi * Read the current value of CCSRBAR using a load word instruction 6636ca88b09STimur Tabi * followed by an isync. This forces all accesses to configuration 6646ca88b09STimur Tabi * space to complete. 6656ca88b09STimur Tabi */ 6666ca88b09STimur Tabi sync 6676ca88b09STimur Tabi lwz r0, 0(r9) 6686ca88b09STimur Tabi isync 6696ca88b09STimur Tabi 6706ca88b09STimur Tabi/* CONFIG_SYS_CCSRBAR_PHYS right shifted by 12 */ 6716ca88b09STimur Tabi#define CCSRBAR_PHYS_RS12 ((CONFIG_SYS_CCSRBAR_PHYS_HIGH << 20) | \ 6726ca88b09STimur Tabi (CONFIG_SYS_CCSRBAR_PHYS_LOW >> 12)) 6736ca88b09STimur Tabi 6746ca88b09STimur Tabi /* Write the new value to CCSRBAR. */ 6756ca88b09STimur Tabi lis r0, CCSRBAR_PHYS_RS12@h 6766ca88b09STimur Tabi ori r0, r0, CCSRBAR_PHYS_RS12@l 6776ca88b09STimur Tabi stw r0, 0(r9) 6786ca88b09STimur Tabi sync 6796ca88b09STimur Tabi 6806ca88b09STimur Tabi /* 6816ca88b09STimur Tabi * The manual says to perform a load of an address that does not 6826ca88b09STimur Tabi * access configuration space or the on-chip SRAM using an existing TLB, 6836ca88b09STimur Tabi * but that doesn't appear to be necessary. We will do the isync, 6846ca88b09STimur Tabi * though. 6856ca88b09STimur Tabi */ 6866ca88b09STimur Tabi isync 6876ca88b09STimur Tabi 6886ca88b09STimur Tabi /* 6896ca88b09STimur Tabi * Read the contents of CCSRBAR from its new location, followed by 6906ca88b09STimur Tabi * another isync. 6916ca88b09STimur Tabi */ 6926ca88b09STimur Tabi lwz r0, 0(r8) 6936ca88b09STimur Tabi isync 6946ca88b09STimur Tabi 6956ca88b09STimur Tabi#endif /* #ifdef CONFIG_FSL_CORENET */ 6966ca88b09STimur Tabi 6976ca88b09STimur Tabi /* Delete the temporary TLBs */ 6986ca88b09STimur Tabidelete_temp_tlbs: 6996ca88b09STimur Tabi lis r0, FSL_BOOKE_MAS0(0, 0, 0)@h 7006ca88b09STimur Tabi ori r0, r0, FSL_BOOKE_MAS0(0, 0, 0)@l 7016ca88b09STimur Tabi li r1, 0 7026ca88b09STimur Tabi lis r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR, (MAS2_I|MAS2_G))@h 7036ca88b09STimur Tabi ori r2, r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR, (MAS2_I|MAS2_G))@l 7046ca88b09STimur Tabi mtspr MAS0, r0 7056ca88b09STimur Tabi mtspr MAS1, r1 7066ca88b09STimur Tabi mtspr MAS2, r2 7076ca88b09STimur Tabi isync 7086ca88b09STimur Tabi msync 7096ca88b09STimur Tabi tlbwe 7106ca88b09STimur Tabi 7116ca88b09STimur Tabi lis r0, FSL_BOOKE_MAS0(0, 1, 0)@h 7126ca88b09STimur Tabi ori r0, r0, FSL_BOOKE_MAS0(0, 1, 0)@l 7136ca88b09STimur Tabi lis r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR + 0x1000, (MAS2_I|MAS2_G))@h 7146ca88b09STimur Tabi ori r2, r2, FSL_BOOKE_MAS2(CONFIG_SYS_CCSRBAR + 0x1000, (MAS2_I|MAS2_G))@l 7156ca88b09STimur Tabi mtspr MAS0, r0 7166ca88b09STimur Tabi mtspr MAS2, r2 7176ca88b09STimur Tabi isync 7186ca88b09STimur Tabi msync 7196ca88b09STimur Tabi tlbwe 7206ca88b09STimur Tabi#endif /* #if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS) */ 7216ca88b09STimur Tabi 7226ca88b09STimur Tabicreate_init_ram_area: 723a47a12beSStefan Roese lis r6,FSL_BOOKE_MAS0(1, 15, 0)@h 724a47a12beSStefan Roese ori r6,r6,FSL_BOOKE_MAS0(1, 15, 0)@l 725a47a12beSStefan Roese 7267065b7d4SRuchika Gupta#if !defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_SECURE_BOOT) 727a47a12beSStefan Roese /* create a temp mapping in AS=1 to the 4M boot window */ 728a47a12beSStefan Roese lis r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_4M)@h 729a47a12beSStefan Roese ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_4M)@l 730a47a12beSStefan Roese 7310635b09cSHaiying Wang lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE & 0xffc00000, (MAS2_I|MAS2_G))@h 7320635b09cSHaiying Wang ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE & 0xffc00000, (MAS2_I|MAS2_G))@l 733a47a12beSStefan Roese 734a47a12beSStefan Roese /* The 85xx has the default boot window 0xff800000 - 0xffffffff */ 735a47a12beSStefan Roese lis r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h 736a47a12beSStefan Roese ori r9,r9,FSL_BOOKE_MAS3(0xffc00000, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l 7377065b7d4SRuchika Gupta#elif !defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SECURE_BOOT) 7387065b7d4SRuchika Gupta /* create a temp mapping in AS = 1 for Flash mapping 7397065b7d4SRuchika Gupta * created by PBL for ISBC code 7407065b7d4SRuchika Gupta */ 7417065b7d4SRuchika Gupta lis r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_1M)@h 7427065b7d4SRuchika Gupta ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_1M)@l 7437065b7d4SRuchika Gupta 7447065b7d4SRuchika Gupta lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE, (MAS2_I|MAS2_G))@h 7457065b7d4SRuchika Gupta ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE, (MAS2_I|MAS2_G))@l 7467065b7d4SRuchika Gupta 7477065b7d4SRuchika Gupta lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_PBI_FLASH_WINDOW, 0, 7487065b7d4SRuchika Gupta (MAS3_SX|MAS3_SW|MAS3_SR))@h 7497065b7d4SRuchika Gupta ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_PBI_FLASH_WINDOW, 0, 7507065b7d4SRuchika Gupta (MAS3_SX|MAS3_SW|MAS3_SR))@l 751a47a12beSStefan Roese#else 752a47a12beSStefan Roese /* 7530635b09cSHaiying Wang * create a temp mapping in AS=1 to the 1M CONFIG_SYS_MONITOR_BASE space, the main 7540635b09cSHaiying Wang * image has been relocated to CONFIG_SYS_MONITOR_BASE on the second stage. 755a47a12beSStefan Roese */ 756a47a12beSStefan Roese lis r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_1M)@h 757a47a12beSStefan Roese ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_1M)@l 758a47a12beSStefan Roese 7590635b09cSHaiying Wang lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE, (MAS2_I|MAS2_G))@h 7600635b09cSHaiying Wang ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_MONITOR_BASE, (MAS2_I|MAS2_G))@l 761a47a12beSStefan Roese 7620635b09cSHaiying Wang lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_MONITOR_BASE, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h 7630635b09cSHaiying Wang ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_MONITOR_BASE, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l 764a47a12beSStefan Roese#endif 765a47a12beSStefan Roese 766a47a12beSStefan Roese mtspr MAS0,r6 767a47a12beSStefan Roese mtspr MAS1,r7 768a47a12beSStefan Roese mtspr MAS2,r8 769a47a12beSStefan Roese mtspr MAS3,r9 770a47a12beSStefan Roese isync 771a47a12beSStefan Roese msync 772a47a12beSStefan Roese tlbwe 773a47a12beSStefan Roese 774a47a12beSStefan Roese /* create a temp mapping in AS=1 to the stack */ 775a47a12beSStefan Roese lis r6,FSL_BOOKE_MAS0(1, 14, 0)@h 776a47a12beSStefan Roese ori r6,r6,FSL_BOOKE_MAS0(1, 14, 0)@l 777a47a12beSStefan Roese 778a47a12beSStefan Roese lis r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_16K)@h 779a47a12beSStefan Roese ori r7,r7,FSL_BOOKE_MAS1(1, 1, 0, 1, BOOKE_PAGESZ_16K)@l 780a47a12beSStefan Roese 781a47a12beSStefan Roese lis r8,FSL_BOOKE_MAS2(CONFIG_SYS_INIT_RAM_ADDR, 0)@h 782a47a12beSStefan Roese ori r8,r8,FSL_BOOKE_MAS2(CONFIG_SYS_INIT_RAM_ADDR, 0)@l 783a47a12beSStefan Roese 784a3f18529Syork#if defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW) && \ 785a3f18529Syork defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH) 786a3f18529Syork lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW, 0, 787a3f18529Syork (MAS3_SX|MAS3_SW|MAS3_SR))@h 788a3f18529Syork ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW, 0, 789a3f18529Syork (MAS3_SX|MAS3_SW|MAS3_SR))@l 790a3f18529Syork li r10,CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 791a3f18529Syork mtspr MAS7,r10 792a3f18529Syork#else 793a47a12beSStefan Roese lis r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@h 794a47a12beSStefan Roese ori r9,r9,FSL_BOOKE_MAS3(CONFIG_SYS_INIT_RAM_ADDR, 0, (MAS3_SX|MAS3_SW|MAS3_SR))@l 795a3f18529Syork#endif 796a47a12beSStefan Roese 797a47a12beSStefan Roese mtspr MAS0,r6 798a47a12beSStefan Roese mtspr MAS1,r7 799a47a12beSStefan Roese mtspr MAS2,r8 800a47a12beSStefan Roese mtspr MAS3,r9 801a47a12beSStefan Roese isync 802a47a12beSStefan Roese msync 803a47a12beSStefan Roese tlbwe 804a47a12beSStefan Roese 8055344f7a2SPrabhakar Kushwaha lis r6,MSR_IS|MSR_DS|MSR_DE@h 8065344f7a2SPrabhakar Kushwaha ori r6,r6,MSR_IS|MSR_DS|MSR_DE@l 807a47a12beSStefan Roese lis r7,switch_as@h 808a47a12beSStefan Roese ori r7,r7,switch_as@l 809a47a12beSStefan Roese 810a47a12beSStefan Roese mtspr SPRN_SRR0,r7 811a47a12beSStefan Roese mtspr SPRN_SRR1,r6 812a47a12beSStefan Roese rfi 813a47a12beSStefan Roese 814a47a12beSStefan Roeseswitch_as: 815a47a12beSStefan Roese/* L1 DCache is used for initial RAM */ 816a47a12beSStefan Roese 817a47a12beSStefan Roese /* Allocate Initial RAM in data cache. 818a47a12beSStefan Roese */ 819a47a12beSStefan Roese lis r3,CONFIG_SYS_INIT_RAM_ADDR@h 820a47a12beSStefan Roese ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l 821a47a12beSStefan Roese mfspr r2, L1CFG0 822a47a12beSStefan Roese andi. r2, r2, 0x1ff 823a47a12beSStefan Roese /* cache size * 1024 / (2 * L1 line size) */ 824a47a12beSStefan Roese slwi r2, r2, (10 - 1 - L1_CACHE_SHIFT) 825a47a12beSStefan Roese mtctr r2 826a47a12beSStefan Roese li r0,0 827a47a12beSStefan Roese1: 828a47a12beSStefan Roese dcbz r0,r3 829a47a12beSStefan Roese dcbtls 0,r0,r3 830a47a12beSStefan Roese addi r3,r3,CONFIG_SYS_CACHELINE_SIZE 831a47a12beSStefan Roese bdnz 1b 832a47a12beSStefan Roese 833a47a12beSStefan Roese /* Jump out the last 4K page and continue to 'normal' start */ 834a47a12beSStefan Roese#ifdef CONFIG_SYS_RAMBOOT 835a47a12beSStefan Roese b _start_cont 836a47a12beSStefan Roese#else 837a47a12beSStefan Roese /* Calculate absolute address in FLASH and jump there */ 838a47a12beSStefan Roese /*--------------------------------------------------------------*/ 839a47a12beSStefan Roese lis r3,CONFIG_SYS_MONITOR_BASE@h 840a47a12beSStefan Roese ori r3,r3,CONFIG_SYS_MONITOR_BASE@l 841a47a12beSStefan Roese addi r3,r3,_start_cont - _start + _START_OFFSET 842a47a12beSStefan Roese mtlr r3 843a47a12beSStefan Roese blr 844a47a12beSStefan Roese#endif 845a47a12beSStefan Roese 846a47a12beSStefan Roese .text 847a47a12beSStefan Roese .globl _start 848a47a12beSStefan Roese_start: 849a47a12beSStefan Roese .long 0x27051956 /* U-BOOT Magic Number */ 850a47a12beSStefan Roese .globl version_string 851a47a12beSStefan Roeseversion_string: 85209c2e90cSAndreas Bießmann .ascii U_BOOT_VERSION_STRING, "\0" 853a47a12beSStefan Roese 854a47a12beSStefan Roese .align 4 855a47a12beSStefan Roese .globl _start_cont 856a47a12beSStefan Roese_start_cont: 857a47a12beSStefan Roese /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/ 858a47a12beSStefan Roese lis r1,CONFIG_SYS_INIT_RAM_ADDR@h 859a47a12beSStefan Roese ori r1,r1,CONFIG_SYS_INIT_SP_OFFSET@l 860a47a12beSStefan Roese 861a47a12beSStefan Roese li r0,0 862a47a12beSStefan Roese stwu r0,-4(r1) 863a47a12beSStefan Roese stwu r0,-4(r1) /* Terminate call chain */ 864a47a12beSStefan Roese 865a47a12beSStefan Roese stwu r1,-8(r1) /* Save back chain and move SP */ 866a47a12beSStefan Roese lis r0,RESET_VECTOR@h /* Address of reset vector */ 867a47a12beSStefan Roese ori r0,r0,RESET_VECTOR@l 868a47a12beSStefan Roese stwu r1,-8(r1) /* Save back chain and move SP */ 869a47a12beSStefan Roese stw r0,+12(r1) /* Save return addr (underflow vect) */ 870a47a12beSStefan Roese 871a47a12beSStefan Roese GET_GOT 872a47a12beSStefan Roese bl cpu_init_early_f 873a47a12beSStefan Roese 874a47a12beSStefan Roese /* switch back to AS = 0 */ 875a47a12beSStefan Roese lis r3,(MSR_CE|MSR_ME|MSR_DE)@h 876a47a12beSStefan Roese ori r3,r3,(MSR_CE|MSR_ME|MSR_DE)@l 877a47a12beSStefan Roese mtmsr r3 878a47a12beSStefan Roese isync 879a47a12beSStefan Roese 880a47a12beSStefan Roese bl cpu_init_f 881a47a12beSStefan Roese bl board_init_f 882a47a12beSStefan Roese isync 883a47a12beSStefan Roese 88452ebd9c1SPeter Tyser /* NOTREACHED - board_init_f() does not return */ 88552ebd9c1SPeter Tyser 886a47a12beSStefan Roese#ifndef CONFIG_NAND_SPL 887a47a12beSStefan Roese . = EXC_OFF_SYS_RESET 888a47a12beSStefan Roese .globl _start_of_vectors 889a47a12beSStefan Roese_start_of_vectors: 890a47a12beSStefan Roese 891a47a12beSStefan Roese/* Critical input. */ 892a47a12beSStefan Roese CRIT_EXCEPTION(0x0100, CriticalInput, CritcalInputException) 893a47a12beSStefan Roese 894a47a12beSStefan Roese/* Machine check */ 895a47a12beSStefan Roese MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException) 896a47a12beSStefan Roese 897a47a12beSStefan Roese/* Data Storage exception. */ 898a47a12beSStefan Roese STD_EXCEPTION(0x0300, DataStorage, UnknownException) 899a47a12beSStefan Roese 900a47a12beSStefan Roese/* Instruction Storage exception. */ 901a47a12beSStefan Roese STD_EXCEPTION(0x0400, InstStorage, UnknownException) 902a47a12beSStefan Roese 903a47a12beSStefan Roese/* External Interrupt exception. */ 904a47a12beSStefan Roese STD_EXCEPTION(0x0500, ExtInterrupt, ExtIntException) 905a47a12beSStefan Roese 906a47a12beSStefan Roese/* Alignment exception. */ 907a47a12beSStefan Roese . = 0x0600 908a47a12beSStefan RoeseAlignment: 909a47a12beSStefan Roese EXCEPTION_PROLOG(SRR0, SRR1) 910a47a12beSStefan Roese mfspr r4,DAR 911a47a12beSStefan Roese stw r4,_DAR(r21) 912a47a12beSStefan Roese mfspr r5,DSISR 913a47a12beSStefan Roese stw r5,_DSISR(r21) 914a47a12beSStefan Roese addi r3,r1,STACK_FRAME_OVERHEAD 915a47a12beSStefan Roese EXC_XFER_TEMPLATE(Alignment, AlignmentException, MSR_KERNEL, COPY_EE) 916a47a12beSStefan Roese 917a47a12beSStefan Roese/* Program check exception */ 918a47a12beSStefan Roese . = 0x0700 919a47a12beSStefan RoeseProgramCheck: 920a47a12beSStefan Roese EXCEPTION_PROLOG(SRR0, SRR1) 921a47a12beSStefan Roese addi r3,r1,STACK_FRAME_OVERHEAD 922a47a12beSStefan Roese EXC_XFER_TEMPLATE(ProgramCheck, ProgramCheckException, 923a47a12beSStefan Roese MSR_KERNEL, COPY_EE) 924a47a12beSStefan Roese 925a47a12beSStefan Roese /* No FPU on MPC85xx. This exception is not supposed to happen. 926a47a12beSStefan Roese */ 927a47a12beSStefan Roese STD_EXCEPTION(0x0800, FPUnavailable, UnknownException) 928a47a12beSStefan Roese 929a47a12beSStefan Roese . = 0x0900 930a47a12beSStefan Roese/* 931a47a12beSStefan Roese * r0 - SYSCALL number 932a47a12beSStefan Roese * r3-... arguments 933a47a12beSStefan Roese */ 934a47a12beSStefan RoeseSystemCall: 935a47a12beSStefan Roese addis r11,r0,0 /* get functions table addr */ 936a47a12beSStefan Roese ori r11,r11,0 /* Note: this code is patched in trap_init */ 937a47a12beSStefan Roese addis r12,r0,0 /* get number of functions */ 938a47a12beSStefan Roese ori r12,r12,0 939a47a12beSStefan Roese 940a47a12beSStefan Roese cmplw 0,r0,r12 941a47a12beSStefan Roese bge 1f 942a47a12beSStefan Roese 943a47a12beSStefan Roese rlwinm r0,r0,2,0,31 /* fn_addr = fn_tbl[r0] */ 944a47a12beSStefan Roese add r11,r11,r0 945a47a12beSStefan Roese lwz r11,0(r11) 946a47a12beSStefan Roese 947a47a12beSStefan Roese li r20,0xd00-4 /* Get stack pointer */ 948a47a12beSStefan Roese lwz r12,0(r20) 949a47a12beSStefan Roese subi r12,r12,12 /* Adjust stack pointer */ 950a47a12beSStefan Roese li r0,0xc00+_end_back-SystemCall 951a47a12beSStefan Roese cmplw 0,r0,r12 /* Check stack overflow */ 952a47a12beSStefan Roese bgt 1f 953a47a12beSStefan Roese stw r12,0(r20) 954a47a12beSStefan Roese 955a47a12beSStefan Roese mflr r0 956a47a12beSStefan Roese stw r0,0(r12) 957a47a12beSStefan Roese mfspr r0,SRR0 958a47a12beSStefan Roese stw r0,4(r12) 959a47a12beSStefan Roese mfspr r0,SRR1 960a47a12beSStefan Roese stw r0,8(r12) 961a47a12beSStefan Roese 962a47a12beSStefan Roese li r12,0xc00+_back-SystemCall 963a47a12beSStefan Roese mtlr r12 964a47a12beSStefan Roese mtspr SRR0,r11 965a47a12beSStefan Roese 966a47a12beSStefan Roese1: SYNC 967a47a12beSStefan Roese rfi 968a47a12beSStefan Roese_back: 969a47a12beSStefan Roese 970a47a12beSStefan Roese mfmsr r11 /* Disable interrupts */ 971a47a12beSStefan Roese li r12,0 972a47a12beSStefan Roese ori r12,r12,MSR_EE 973a47a12beSStefan Roese andc r11,r11,r12 974a47a12beSStefan Roese SYNC /* Some chip revs need this... */ 975a47a12beSStefan Roese mtmsr r11 976a47a12beSStefan Roese SYNC 977a47a12beSStefan Roese 978a47a12beSStefan Roese li r12,0xd00-4 /* restore regs */ 979a47a12beSStefan Roese lwz r12,0(r12) 980a47a12beSStefan Roese 981a47a12beSStefan Roese lwz r11,0(r12) 982a47a12beSStefan Roese mtlr r11 983a47a12beSStefan Roese lwz r11,4(r12) 984a47a12beSStefan Roese mtspr SRR0,r11 985a47a12beSStefan Roese lwz r11,8(r12) 986a47a12beSStefan Roese mtspr SRR1,r11 987a47a12beSStefan Roese 988a47a12beSStefan Roese addi r12,r12,12 /* Adjust stack pointer */ 989a47a12beSStefan Roese li r20,0xd00-4 990a47a12beSStefan Roese stw r12,0(r20) 991a47a12beSStefan Roese 992a47a12beSStefan Roese SYNC 993a47a12beSStefan Roese rfi 994a47a12beSStefan Roese_end_back: 995a47a12beSStefan Roese 996a47a12beSStefan Roese STD_EXCEPTION(0x0a00, Decrementer, timer_interrupt) 997a47a12beSStefan Roese STD_EXCEPTION(0x0b00, IntervalTimer, UnknownException) 998a47a12beSStefan Roese STD_EXCEPTION(0x0c00, WatchdogTimer, UnknownException) 999a47a12beSStefan Roese 1000a47a12beSStefan Roese STD_EXCEPTION(0x0d00, DataTLBError, UnknownException) 1001a47a12beSStefan Roese STD_EXCEPTION(0x0e00, InstructionTLBError, UnknownException) 1002a47a12beSStefan Roese 1003a47a12beSStefan Roese CRIT_EXCEPTION(0x0f00, DebugBreakpoint, DebugException ) 1004a47a12beSStefan Roese 1005a47a12beSStefan Roese .globl _end_of_vectors 1006a47a12beSStefan Roese_end_of_vectors: 1007a47a12beSStefan Roese 1008a47a12beSStefan Roese 1009a47a12beSStefan Roese . = . + (0x100 - ( . & 0xff )) /* align for debug */ 1010a47a12beSStefan Roese 1011a47a12beSStefan Roese/* 1012a47a12beSStefan Roese * This code finishes saving the registers to the exception frame 1013a47a12beSStefan Roese * and jumps to the appropriate handler for the exception. 1014a47a12beSStefan Roese * Register r21 is pointer into trap frame, r1 has new stack pointer. 1015a47a12beSStefan Roese */ 1016a47a12beSStefan Roese .globl transfer_to_handler 1017a47a12beSStefan Roesetransfer_to_handler: 1018a47a12beSStefan Roese stw r22,_NIP(r21) 1019a47a12beSStefan Roese lis r22,MSR_POW@h 1020a47a12beSStefan Roese andc r23,r23,r22 1021a47a12beSStefan Roese stw r23,_MSR(r21) 1022a47a12beSStefan Roese SAVE_GPR(7, r21) 1023a47a12beSStefan Roese SAVE_4GPRS(8, r21) 1024a47a12beSStefan Roese SAVE_8GPRS(12, r21) 1025a47a12beSStefan Roese SAVE_8GPRS(24, r21) 1026a47a12beSStefan Roese 1027a47a12beSStefan Roese mflr r23 1028a47a12beSStefan Roese andi. r24,r23,0x3f00 /* get vector offset */ 1029a47a12beSStefan Roese stw r24,TRAP(r21) 1030a47a12beSStefan Roese li r22,0 1031a47a12beSStefan Roese stw r22,RESULT(r21) 1032a47a12beSStefan Roese mtspr SPRG2,r22 /* r1 is now kernel sp */ 1033a47a12beSStefan Roese 1034a47a12beSStefan Roese lwz r24,0(r23) /* virtual address of handler */ 1035a47a12beSStefan Roese lwz r23,4(r23) /* where to go when done */ 1036a47a12beSStefan Roese mtspr SRR0,r24 1037a47a12beSStefan Roese mtspr SRR1,r20 1038a47a12beSStefan Roese mtlr r23 1039a47a12beSStefan Roese SYNC 1040a47a12beSStefan Roese rfi /* jump to handler, enable MMU */ 1041a47a12beSStefan Roese 1042a47a12beSStefan Roeseint_return: 1043a47a12beSStefan Roese mfmsr r28 /* Disable interrupts */ 1044a47a12beSStefan Roese li r4,0 1045a47a12beSStefan Roese ori r4,r4,MSR_EE 1046a47a12beSStefan Roese andc r28,r28,r4 1047a47a12beSStefan Roese SYNC /* Some chip revs need this... */ 1048a47a12beSStefan Roese mtmsr r28 1049a47a12beSStefan Roese SYNC 1050a47a12beSStefan Roese lwz r2,_CTR(r1) 1051a47a12beSStefan Roese lwz r0,_LINK(r1) 1052a47a12beSStefan Roese mtctr r2 1053a47a12beSStefan Roese mtlr r0 1054a47a12beSStefan Roese lwz r2,_XER(r1) 1055a47a12beSStefan Roese lwz r0,_CCR(r1) 1056a47a12beSStefan Roese mtspr XER,r2 1057a47a12beSStefan Roese mtcrf 0xFF,r0 1058a47a12beSStefan Roese REST_10GPRS(3, r1) 1059a47a12beSStefan Roese REST_10GPRS(13, r1) 1060a47a12beSStefan Roese REST_8GPRS(23, r1) 1061a47a12beSStefan Roese REST_GPR(31, r1) 1062a47a12beSStefan Roese lwz r2,_NIP(r1) /* Restore environment */ 1063a47a12beSStefan Roese lwz r0,_MSR(r1) 1064a47a12beSStefan Roese mtspr SRR0,r2 1065a47a12beSStefan Roese mtspr SRR1,r0 1066a47a12beSStefan Roese lwz r0,GPR0(r1) 1067a47a12beSStefan Roese lwz r2,GPR2(r1) 1068a47a12beSStefan Roese lwz r1,GPR1(r1) 1069a47a12beSStefan Roese SYNC 1070a47a12beSStefan Roese rfi 1071a47a12beSStefan Roese 1072a47a12beSStefan Roesecrit_return: 1073a47a12beSStefan Roese mfmsr r28 /* Disable interrupts */ 1074a47a12beSStefan Roese li r4,0 1075a47a12beSStefan Roese ori r4,r4,MSR_EE 1076a47a12beSStefan Roese andc r28,r28,r4 1077a47a12beSStefan Roese SYNC /* Some chip revs need this... */ 1078a47a12beSStefan Roese mtmsr r28 1079a47a12beSStefan Roese SYNC 1080a47a12beSStefan Roese lwz r2,_CTR(r1) 1081a47a12beSStefan Roese lwz r0,_LINK(r1) 1082a47a12beSStefan Roese mtctr r2 1083a47a12beSStefan Roese mtlr r0 1084a47a12beSStefan Roese lwz r2,_XER(r1) 1085a47a12beSStefan Roese lwz r0,_CCR(r1) 1086a47a12beSStefan Roese mtspr XER,r2 1087a47a12beSStefan Roese mtcrf 0xFF,r0 1088a47a12beSStefan Roese REST_10GPRS(3, r1) 1089a47a12beSStefan Roese REST_10GPRS(13, r1) 1090a47a12beSStefan Roese REST_8GPRS(23, r1) 1091a47a12beSStefan Roese REST_GPR(31, r1) 1092a47a12beSStefan Roese lwz r2,_NIP(r1) /* Restore environment */ 1093a47a12beSStefan Roese lwz r0,_MSR(r1) 1094a47a12beSStefan Roese mtspr SPRN_CSRR0,r2 1095a47a12beSStefan Roese mtspr SPRN_CSRR1,r0 1096a47a12beSStefan Roese lwz r0,GPR0(r1) 1097a47a12beSStefan Roese lwz r2,GPR2(r1) 1098a47a12beSStefan Roese lwz r1,GPR1(r1) 1099a47a12beSStefan Roese SYNC 1100a47a12beSStefan Roese rfci 1101a47a12beSStefan Roese 1102a47a12beSStefan Roesemck_return: 1103a47a12beSStefan Roese mfmsr r28 /* Disable interrupts */ 1104a47a12beSStefan Roese li r4,0 1105a47a12beSStefan Roese ori r4,r4,MSR_EE 1106a47a12beSStefan Roese andc r28,r28,r4 1107a47a12beSStefan Roese SYNC /* Some chip revs need this... */ 1108a47a12beSStefan Roese mtmsr r28 1109a47a12beSStefan Roese SYNC 1110a47a12beSStefan Roese lwz r2,_CTR(r1) 1111a47a12beSStefan Roese lwz r0,_LINK(r1) 1112a47a12beSStefan Roese mtctr r2 1113a47a12beSStefan Roese mtlr r0 1114a47a12beSStefan Roese lwz r2,_XER(r1) 1115a47a12beSStefan Roese lwz r0,_CCR(r1) 1116a47a12beSStefan Roese mtspr XER,r2 1117a47a12beSStefan Roese mtcrf 0xFF,r0 1118a47a12beSStefan Roese REST_10GPRS(3, r1) 1119a47a12beSStefan Roese REST_10GPRS(13, r1) 1120a47a12beSStefan Roese REST_8GPRS(23, r1) 1121a47a12beSStefan Roese REST_GPR(31, r1) 1122a47a12beSStefan Roese lwz r2,_NIP(r1) /* Restore environment */ 1123a47a12beSStefan Roese lwz r0,_MSR(r1) 1124a47a12beSStefan Roese mtspr SPRN_MCSRR0,r2 1125a47a12beSStefan Roese mtspr SPRN_MCSRR1,r0 1126a47a12beSStefan Roese lwz r0,GPR0(r1) 1127a47a12beSStefan Roese lwz r2,GPR2(r1) 1128a47a12beSStefan Roese lwz r1,GPR1(r1) 1129a47a12beSStefan Roese SYNC 1130a47a12beSStefan Roese rfmci 1131a47a12beSStefan Roese 1132a47a12beSStefan Roese/* Cache functions. 1133a47a12beSStefan Roese*/ 11340a9fe8eeSMatthew McClintock.globl flush_icache 11350a9fe8eeSMatthew McClintockflush_icache: 1136a47a12beSStefan Roese.globl invalidate_icache 1137a47a12beSStefan Roeseinvalidate_icache: 1138a47a12beSStefan Roese mfspr r0,L1CSR1 1139a47a12beSStefan Roese ori r0,r0,L1CSR1_ICFI 1140a47a12beSStefan Roese msync 1141a47a12beSStefan Roese isync 1142a47a12beSStefan Roese mtspr L1CSR1,r0 1143a47a12beSStefan Roese isync 1144a47a12beSStefan Roese blr /* entire I cache */ 1145a47a12beSStefan Roese 1146a47a12beSStefan Roese.globl invalidate_dcache 1147a47a12beSStefan Roeseinvalidate_dcache: 1148a47a12beSStefan Roese mfspr r0,L1CSR0 1149a47a12beSStefan Roese ori r0,r0,L1CSR0_DCFI 1150a47a12beSStefan Roese msync 1151a47a12beSStefan Roese isync 1152a47a12beSStefan Roese mtspr L1CSR0,r0 1153a47a12beSStefan Roese isync 1154a47a12beSStefan Roese blr 1155a47a12beSStefan Roese 1156a47a12beSStefan Roese .globl icache_enable 1157a47a12beSStefan Roeseicache_enable: 1158a47a12beSStefan Roese mflr r8 1159a47a12beSStefan Roese bl invalidate_icache 1160a47a12beSStefan Roese mtlr r8 1161a47a12beSStefan Roese isync 1162a47a12beSStefan Roese mfspr r4,L1CSR1 1163a47a12beSStefan Roese ori r4,r4,0x0001 1164a47a12beSStefan Roese oris r4,r4,0x0001 1165a47a12beSStefan Roese mtspr L1CSR1,r4 1166a47a12beSStefan Roese isync 1167a47a12beSStefan Roese blr 1168a47a12beSStefan Roese 1169a47a12beSStefan Roese .globl icache_disable 1170a47a12beSStefan Roeseicache_disable: 1171a47a12beSStefan Roese mfspr r0,L1CSR1 1172a47a12beSStefan Roese lis r3,0 1173a47a12beSStefan Roese ori r3,r3,L1CSR1_ICE 1174a47a12beSStefan Roese andc r0,r0,r3 1175a47a12beSStefan Roese mtspr L1CSR1,r0 1176a47a12beSStefan Roese isync 1177a47a12beSStefan Roese blr 1178a47a12beSStefan Roese 1179a47a12beSStefan Roese .globl icache_status 1180a47a12beSStefan Roeseicache_status: 1181a47a12beSStefan Roese mfspr r3,L1CSR1 1182a47a12beSStefan Roese andi. r3,r3,L1CSR1_ICE 1183a47a12beSStefan Roese blr 1184a47a12beSStefan Roese 1185a47a12beSStefan Roese .globl dcache_enable 1186a47a12beSStefan Roesedcache_enable: 1187a47a12beSStefan Roese mflr r8 1188a47a12beSStefan Roese bl invalidate_dcache 1189a47a12beSStefan Roese mtlr r8 1190a47a12beSStefan Roese isync 1191a47a12beSStefan Roese mfspr r0,L1CSR0 1192a47a12beSStefan Roese ori r0,r0,0x0001 1193a47a12beSStefan Roese oris r0,r0,0x0001 1194a47a12beSStefan Roese msync 1195a47a12beSStefan Roese isync 1196a47a12beSStefan Roese mtspr L1CSR0,r0 1197a47a12beSStefan Roese isync 1198a47a12beSStefan Roese blr 1199a47a12beSStefan Roese 1200a47a12beSStefan Roese .globl dcache_disable 1201a47a12beSStefan Roesedcache_disable: 1202a47a12beSStefan Roese mfspr r3,L1CSR0 1203a47a12beSStefan Roese lis r4,0 1204a47a12beSStefan Roese ori r4,r4,L1CSR0_DCE 1205a47a12beSStefan Roese andc r3,r3,r4 120645a68135SKumar Gala mtspr L1CSR0,r3 1207a47a12beSStefan Roese isync 1208a47a12beSStefan Roese blr 1209a47a12beSStefan Roese 1210a47a12beSStefan Roese .globl dcache_status 1211a47a12beSStefan Roesedcache_status: 1212a47a12beSStefan Roese mfspr r3,L1CSR0 1213a47a12beSStefan Roese andi. r3,r3,L1CSR0_DCE 1214a47a12beSStefan Roese blr 1215a47a12beSStefan Roese 1216a47a12beSStefan Roese .globl get_pir 1217a47a12beSStefan Roeseget_pir: 1218a47a12beSStefan Roese mfspr r3,PIR 1219a47a12beSStefan Roese blr 1220a47a12beSStefan Roese 1221a47a12beSStefan Roese .globl get_pvr 1222a47a12beSStefan Roeseget_pvr: 1223a47a12beSStefan Roese mfspr r3,PVR 1224a47a12beSStefan Roese blr 1225a47a12beSStefan Roese 1226a47a12beSStefan Roese .globl get_svr 1227a47a12beSStefan Roeseget_svr: 1228a47a12beSStefan Roese mfspr r3,SVR 1229a47a12beSStefan Roese blr 1230a47a12beSStefan Roese 1231a47a12beSStefan Roese .globl wr_tcr 1232a47a12beSStefan Roesewr_tcr: 1233a47a12beSStefan Roese mtspr TCR,r3 1234a47a12beSStefan Roese blr 1235a47a12beSStefan Roese 1236a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1237a47a12beSStefan Roese/* Function: in8 */ 1238a47a12beSStefan Roese/* Description: Input 8 bits */ 1239a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1240a47a12beSStefan Roese .globl in8 1241a47a12beSStefan Roesein8: 1242a47a12beSStefan Roese lbz r3,0x0000(r3) 1243a47a12beSStefan Roese blr 1244a47a12beSStefan Roese 1245a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1246a47a12beSStefan Roese/* Function: out8 */ 1247a47a12beSStefan Roese/* Description: Output 8 bits */ 1248a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1249a47a12beSStefan Roese .globl out8 1250a47a12beSStefan Roeseout8: 1251a47a12beSStefan Roese stb r4,0x0000(r3) 1252a47a12beSStefan Roese sync 1253a47a12beSStefan Roese blr 1254a47a12beSStefan Roese 1255a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1256a47a12beSStefan Roese/* Function: out16 */ 1257a47a12beSStefan Roese/* Description: Output 16 bits */ 1258a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1259a47a12beSStefan Roese .globl out16 1260a47a12beSStefan Roeseout16: 1261a47a12beSStefan Roese sth r4,0x0000(r3) 1262a47a12beSStefan Roese sync 1263a47a12beSStefan Roese blr 1264a47a12beSStefan Roese 1265a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1266a47a12beSStefan Roese/* Function: out16r */ 1267a47a12beSStefan Roese/* Description: Byte reverse and output 16 bits */ 1268a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1269a47a12beSStefan Roese .globl out16r 1270a47a12beSStefan Roeseout16r: 1271a47a12beSStefan Roese sthbrx r4,r0,r3 1272a47a12beSStefan Roese sync 1273a47a12beSStefan Roese blr 1274a47a12beSStefan Roese 1275a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1276a47a12beSStefan Roese/* Function: out32 */ 1277a47a12beSStefan Roese/* Description: Output 32 bits */ 1278a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1279a47a12beSStefan Roese .globl out32 1280a47a12beSStefan Roeseout32: 1281a47a12beSStefan Roese stw r4,0x0000(r3) 1282a47a12beSStefan Roese sync 1283a47a12beSStefan Roese blr 1284a47a12beSStefan Roese 1285a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1286a47a12beSStefan Roese/* Function: out32r */ 1287a47a12beSStefan Roese/* Description: Byte reverse and output 32 bits */ 1288a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1289a47a12beSStefan Roese .globl out32r 1290a47a12beSStefan Roeseout32r: 1291a47a12beSStefan Roese stwbrx r4,r0,r3 1292a47a12beSStefan Roese sync 1293a47a12beSStefan Roese blr 1294a47a12beSStefan Roese 1295a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1296a47a12beSStefan Roese/* Function: in16 */ 1297a47a12beSStefan Roese/* Description: Input 16 bits */ 1298a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1299a47a12beSStefan Roese .globl in16 1300a47a12beSStefan Roesein16: 1301a47a12beSStefan Roese lhz r3,0x0000(r3) 1302a47a12beSStefan Roese blr 1303a47a12beSStefan Roese 1304a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1305a47a12beSStefan Roese/* Function: in16r */ 1306a47a12beSStefan Roese/* Description: Input 16 bits and byte reverse */ 1307a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1308a47a12beSStefan Roese .globl in16r 1309a47a12beSStefan Roesein16r: 1310a47a12beSStefan Roese lhbrx r3,r0,r3 1311a47a12beSStefan Roese blr 1312a47a12beSStefan Roese 1313a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1314a47a12beSStefan Roese/* Function: in32 */ 1315a47a12beSStefan Roese/* Description: Input 32 bits */ 1316a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1317a47a12beSStefan Roese .globl in32 1318a47a12beSStefan Roesein32: 1319a47a12beSStefan Roese lwz 3,0x0000(3) 1320a47a12beSStefan Roese blr 1321a47a12beSStefan Roese 1322a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1323a47a12beSStefan Roese/* Function: in32r */ 1324a47a12beSStefan Roese/* Description: Input 32 bits and byte reverse */ 1325a47a12beSStefan Roese/*------------------------------------------------------------------------------- */ 1326a47a12beSStefan Roese .globl in32r 1327a47a12beSStefan Roesein32r: 1328a47a12beSStefan Roese lwbrx r3,r0,r3 1329a47a12beSStefan Roese blr 1330a47a12beSStefan Roese#endif /* !CONFIG_NAND_SPL */ 1331a47a12beSStefan Roese 1332a47a12beSStefan Roese/*------------------------------------------------------------------------------*/ 1333a47a12beSStefan Roese 1334a47a12beSStefan Roese/* 1335a47a12beSStefan Roese * void write_tlb(mas0, mas1, mas2, mas3, mas7) 1336a47a12beSStefan Roese */ 1337a47a12beSStefan Roese .globl write_tlb 1338a47a12beSStefan Roesewrite_tlb: 1339a47a12beSStefan Roese mtspr MAS0,r3 1340a47a12beSStefan Roese mtspr MAS1,r4 1341a47a12beSStefan Roese mtspr MAS2,r5 1342a47a12beSStefan Roese mtspr MAS3,r6 1343a47a12beSStefan Roese#ifdef CONFIG_ENABLE_36BIT_PHYS 1344a47a12beSStefan Roese mtspr MAS7,r7 1345a47a12beSStefan Roese#endif 1346a47a12beSStefan Roese li r3,0 1347a47a12beSStefan Roese#ifdef CONFIG_SYS_BOOK3E_HV 1348a47a12beSStefan Roese mtspr MAS8,r3 1349a47a12beSStefan Roese#endif 1350a47a12beSStefan Roese isync 1351a47a12beSStefan Roese tlbwe 1352a47a12beSStefan Roese msync 1353a47a12beSStefan Roese isync 1354a47a12beSStefan Roese blr 1355a47a12beSStefan Roese 1356a47a12beSStefan Roese/* 1357a47a12beSStefan Roese * void relocate_code (addr_sp, gd, addr_moni) 1358a47a12beSStefan Roese * 1359a47a12beSStefan Roese * This "function" does not return, instead it continues in RAM 1360a47a12beSStefan Roese * after relocating the monitor code. 1361a47a12beSStefan Roese * 1362a47a12beSStefan Roese * r3 = dest 1363a47a12beSStefan Roese * r4 = src 1364a47a12beSStefan Roese * r5 = length in bytes 1365a47a12beSStefan Roese * r6 = cachelinesize 1366a47a12beSStefan Roese */ 1367a47a12beSStefan Roese .globl relocate_code 1368a47a12beSStefan Roeserelocate_code: 1369a47a12beSStefan Roese mr r1,r3 /* Set new stack pointer */ 1370a47a12beSStefan Roese mr r9,r4 /* Save copy of Init Data pointer */ 1371a47a12beSStefan Roese mr r10,r5 /* Save copy of Destination Address */ 1372a47a12beSStefan Roese 1373a47a12beSStefan Roese GET_GOT 1374a47a12beSStefan Roese mr r3,r5 /* Destination Address */ 1375a47a12beSStefan Roese lis r4,CONFIG_SYS_MONITOR_BASE@h /* Source Address */ 1376a47a12beSStefan Roese ori r4,r4,CONFIG_SYS_MONITOR_BASE@l 1377a47a12beSStefan Roese lwz r5,GOT(__init_end) 1378a47a12beSStefan Roese sub r5,r5,r4 1379a47a12beSStefan Roese li r6,CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */ 1380a47a12beSStefan Roese 1381a47a12beSStefan Roese /* 1382a47a12beSStefan Roese * Fix GOT pointer: 1383a47a12beSStefan Roese * 1384a47a12beSStefan Roese * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address 1385a47a12beSStefan Roese * 1386a47a12beSStefan Roese * Offset: 1387a47a12beSStefan Roese */ 1388a47a12beSStefan Roese sub r15,r10,r4 1389a47a12beSStefan Roese 1390a47a12beSStefan Roese /* First our own GOT */ 1391a47a12beSStefan Roese add r12,r12,r15 1392a47a12beSStefan Roese /* the the one used by the C code */ 1393a47a12beSStefan Roese add r30,r30,r15 1394a47a12beSStefan Roese 1395a47a12beSStefan Roese /* 1396a47a12beSStefan Roese * Now relocate code 1397a47a12beSStefan Roese */ 1398a47a12beSStefan Roese 1399a47a12beSStefan Roese cmplw cr1,r3,r4 1400a47a12beSStefan Roese addi r0,r5,3 1401a47a12beSStefan Roese srwi. r0,r0,2 1402a47a12beSStefan Roese beq cr1,4f /* In place copy is not necessary */ 1403a47a12beSStefan Roese beq 7f /* Protect against 0 count */ 1404a47a12beSStefan Roese mtctr r0 1405a47a12beSStefan Roese bge cr1,2f 1406a47a12beSStefan Roese 1407a47a12beSStefan Roese la r8,-4(r4) 1408a47a12beSStefan Roese la r7,-4(r3) 1409a47a12beSStefan Roese1: lwzu r0,4(r8) 1410a47a12beSStefan Roese stwu r0,4(r7) 1411a47a12beSStefan Roese bdnz 1b 1412a47a12beSStefan Roese b 4f 1413a47a12beSStefan Roese 1414a47a12beSStefan Roese2: slwi r0,r0,2 1415a47a12beSStefan Roese add r8,r4,r0 1416a47a12beSStefan Roese add r7,r3,r0 1417a47a12beSStefan Roese3: lwzu r0,-4(r8) 1418a47a12beSStefan Roese stwu r0,-4(r7) 1419a47a12beSStefan Roese bdnz 3b 1420a47a12beSStefan Roese 1421a47a12beSStefan Roese/* 1422a47a12beSStefan Roese * Now flush the cache: note that we must start from a cache aligned 1423a47a12beSStefan Roese * address. Otherwise we might miss one cache line. 1424a47a12beSStefan Roese */ 1425a47a12beSStefan Roese4: cmpwi r6,0 1426a47a12beSStefan Roese add r5,r3,r5 1427a47a12beSStefan Roese beq 7f /* Always flush prefetch queue in any case */ 1428a47a12beSStefan Roese subi r0,r6,1 1429a47a12beSStefan Roese andc r3,r3,r0 1430a47a12beSStefan Roese mr r4,r3 1431a47a12beSStefan Roese5: dcbst 0,r4 1432a47a12beSStefan Roese add r4,r4,r6 1433a47a12beSStefan Roese cmplw r4,r5 1434a47a12beSStefan Roese blt 5b 1435a47a12beSStefan Roese sync /* Wait for all dcbst to complete on bus */ 1436a47a12beSStefan Roese mr r4,r3 1437a47a12beSStefan Roese6: icbi 0,r4 1438a47a12beSStefan Roese add r4,r4,r6 1439a47a12beSStefan Roese cmplw r4,r5 1440a47a12beSStefan Roese blt 6b 1441a47a12beSStefan Roese7: sync /* Wait for all icbi to complete on bus */ 1442a47a12beSStefan Roese isync 1443a47a12beSStefan Roese 1444a47a12beSStefan Roese/* 1445a47a12beSStefan Roese * We are done. Do not return, instead branch to second part of board 1446a47a12beSStefan Roese * initialization, now running from RAM. 1447a47a12beSStefan Roese */ 1448a47a12beSStefan Roese 1449a47a12beSStefan Roese addi r0,r10,in_ram - _start + _START_OFFSET 1450*689f00fcSPrabhakar Kushwaha 1451*689f00fcSPrabhakar Kushwaha /* 1452*689f00fcSPrabhakar Kushwaha * As IVPR is going to point RAM address, 1453*689f00fcSPrabhakar Kushwaha * Make sure IVOR15 has valid opcode to support debugger 1454*689f00fcSPrabhakar Kushwaha */ 1455*689f00fcSPrabhakar Kushwaha mtspr IVOR15,r0 1456*689f00fcSPrabhakar Kushwaha 1457*689f00fcSPrabhakar Kushwaha /* 1458*689f00fcSPrabhakar Kushwaha * Re-point the IVPR at RAM 1459*689f00fcSPrabhakar Kushwaha */ 1460*689f00fcSPrabhakar Kushwaha mtspr IVPR,r10 1461*689f00fcSPrabhakar Kushwaha 1462a47a12beSStefan Roese mtlr r0 1463a47a12beSStefan Roese blr /* NEVER RETURNS! */ 1464a47a12beSStefan Roese .globl in_ram 1465a47a12beSStefan Roesein_ram: 1466a47a12beSStefan Roese 1467a47a12beSStefan Roese /* 1468a47a12beSStefan Roese * Relocation Function, r12 point to got2+0x8000 1469a47a12beSStefan Roese * 1470a47a12beSStefan Roese * Adjust got2 pointers, no need to check for 0, this code 1471a47a12beSStefan Roese * already puts a few entries in the table. 1472a47a12beSStefan Roese */ 1473a47a12beSStefan Roese li r0,__got2_entries@sectoff@l 1474a47a12beSStefan Roese la r3,GOT(_GOT2_TABLE_) 1475a47a12beSStefan Roese lwz r11,GOT(_GOT2_TABLE_) 1476a47a12beSStefan Roese mtctr r0 1477a47a12beSStefan Roese sub r11,r3,r11 1478a47a12beSStefan Roese addi r3,r3,-4 1479a47a12beSStefan Roese1: lwzu r0,4(r3) 1480a47a12beSStefan Roese cmpwi r0,0 1481a47a12beSStefan Roese beq- 2f 1482a47a12beSStefan Roese add r0,r0,r11 1483a47a12beSStefan Roese stw r0,0(r3) 1484a47a12beSStefan Roese2: bdnz 1b 1485a47a12beSStefan Roese 1486a47a12beSStefan Roese /* 1487a47a12beSStefan Roese * Now adjust the fixups and the pointers to the fixups 1488a47a12beSStefan Roese * in case we need to move ourselves again. 1489a47a12beSStefan Roese */ 1490a47a12beSStefan Roese li r0,__fixup_entries@sectoff@l 1491a47a12beSStefan Roese lwz r3,GOT(_FIXUP_TABLE_) 1492a47a12beSStefan Roese cmpwi r0,0 1493a47a12beSStefan Roese mtctr r0 1494a47a12beSStefan Roese addi r3,r3,-4 1495a47a12beSStefan Roese beq 4f 1496a47a12beSStefan Roese3: lwzu r4,4(r3) 1497a47a12beSStefan Roese lwzux r0,r4,r11 1498d1e0b10aSJoakim Tjernlund cmpwi r0,0 1499a47a12beSStefan Roese add r0,r0,r11 150034bbf618SJoakim Tjernlund stw r4,0(r3) 1501d1e0b10aSJoakim Tjernlund beq- 5f 1502a47a12beSStefan Roese stw r0,0(r4) 1503d1e0b10aSJoakim Tjernlund5: bdnz 3b 1504a47a12beSStefan Roese4: 1505a47a12beSStefan Roeseclear_bss: 1506a47a12beSStefan Roese /* 1507a47a12beSStefan Roese * Now clear BSS segment 1508a47a12beSStefan Roese */ 1509a47a12beSStefan Roese lwz r3,GOT(__bss_start) 151044c6e659SPo-Yu Chuang lwz r4,GOT(__bss_end__) 1511a47a12beSStefan Roese 1512a47a12beSStefan Roese cmplw 0,r3,r4 1513a47a12beSStefan Roese beq 6f 1514a47a12beSStefan Roese 1515a47a12beSStefan Roese li r0,0 1516a47a12beSStefan Roese5: 1517a47a12beSStefan Roese stw r0,0(r3) 1518a47a12beSStefan Roese addi r3,r3,4 1519a47a12beSStefan Roese cmplw 0,r3,r4 1520a47a12beSStefan Roese bne 5b 1521a47a12beSStefan Roese6: 1522a47a12beSStefan Roese 1523a47a12beSStefan Roese mr r3,r9 /* Init Data pointer */ 1524a47a12beSStefan Roese mr r4,r10 /* Destination Address */ 1525a47a12beSStefan Roese bl board_init_r 1526a47a12beSStefan Roese 1527a47a12beSStefan Roese#ifndef CONFIG_NAND_SPL 1528a47a12beSStefan Roese /* 1529a47a12beSStefan Roese * Copy exception vector code to low memory 1530a47a12beSStefan Roese * 1531a47a12beSStefan Roese * r3: dest_addr 1532a47a12beSStefan Roese * r7: source address, r8: end address, r9: target address 1533a47a12beSStefan Roese */ 1534a47a12beSStefan Roese .globl trap_init 1535a47a12beSStefan Roesetrap_init: 1536a47a12beSStefan Roese mflr r4 /* save link register */ 1537a47a12beSStefan Roese GET_GOT 1538a47a12beSStefan Roese lwz r7,GOT(_start_of_vectors) 1539a47a12beSStefan Roese lwz r8,GOT(_end_of_vectors) 1540a47a12beSStefan Roese 1541a47a12beSStefan Roese li r9,0x100 /* reset vector always at 0x100 */ 1542a47a12beSStefan Roese 1543a47a12beSStefan Roese cmplw 0,r7,r8 1544a47a12beSStefan Roese bgelr /* return if r7>=r8 - just in case */ 1545a47a12beSStefan Roese1: 1546a47a12beSStefan Roese lwz r0,0(r7) 1547a47a12beSStefan Roese stw r0,0(r9) 1548a47a12beSStefan Roese addi r7,r7,4 1549a47a12beSStefan Roese addi r9,r9,4 1550a47a12beSStefan Roese cmplw 0,r7,r8 1551a47a12beSStefan Roese bne 1b 1552a47a12beSStefan Roese 1553a47a12beSStefan Roese /* 1554a47a12beSStefan Roese * relocate `hdlr' and `int_return' entries 1555a47a12beSStefan Roese */ 1556a47a12beSStefan Roese li r7,.L_CriticalInput - _start + _START_OFFSET 1557a47a12beSStefan Roese bl trap_reloc 1558a47a12beSStefan Roese li r7,.L_MachineCheck - _start + _START_OFFSET 1559a47a12beSStefan Roese bl trap_reloc 1560a47a12beSStefan Roese li r7,.L_DataStorage - _start + _START_OFFSET 1561a47a12beSStefan Roese bl trap_reloc 1562a47a12beSStefan Roese li r7,.L_InstStorage - _start + _START_OFFSET 1563a47a12beSStefan Roese bl trap_reloc 1564a47a12beSStefan Roese li r7,.L_ExtInterrupt - _start + _START_OFFSET 1565a47a12beSStefan Roese bl trap_reloc 1566a47a12beSStefan Roese li r7,.L_Alignment - _start + _START_OFFSET 1567a47a12beSStefan Roese bl trap_reloc 1568a47a12beSStefan Roese li r7,.L_ProgramCheck - _start + _START_OFFSET 1569a47a12beSStefan Roese bl trap_reloc 1570a47a12beSStefan Roese li r7,.L_FPUnavailable - _start + _START_OFFSET 1571a47a12beSStefan Roese bl trap_reloc 1572a47a12beSStefan Roese li r7,.L_Decrementer - _start + _START_OFFSET 1573a47a12beSStefan Roese bl trap_reloc 1574a47a12beSStefan Roese li r7,.L_IntervalTimer - _start + _START_OFFSET 1575a47a12beSStefan Roese li r8,_end_of_vectors - _start + _START_OFFSET 1576a47a12beSStefan Roese2: 1577a47a12beSStefan Roese bl trap_reloc 1578a47a12beSStefan Roese addi r7,r7,0x100 /* next exception vector */ 1579a47a12beSStefan Roese cmplw 0,r7,r8 1580a47a12beSStefan Roese blt 2b 1581a47a12beSStefan Roese 158264829bafSPrabhakar Kushwaha /* Update IVORs as per relocated vector table address */ 158364829bafSPrabhakar Kushwaha li r7,0x0100 158464829bafSPrabhakar Kushwaha mtspr IVOR0,r7 /* 0: Critical input */ 158564829bafSPrabhakar Kushwaha li r7,0x0200 158664829bafSPrabhakar Kushwaha mtspr IVOR1,r7 /* 1: Machine check */ 158764829bafSPrabhakar Kushwaha li r7,0x0300 158864829bafSPrabhakar Kushwaha mtspr IVOR2,r7 /* 2: Data storage */ 158964829bafSPrabhakar Kushwaha li r7,0x0400 159064829bafSPrabhakar Kushwaha mtspr IVOR3,r7 /* 3: Instruction storage */ 159164829bafSPrabhakar Kushwaha li r7,0x0500 159264829bafSPrabhakar Kushwaha mtspr IVOR4,r7 /* 4: External interrupt */ 159364829bafSPrabhakar Kushwaha li r7,0x0600 159464829bafSPrabhakar Kushwaha mtspr IVOR5,r7 /* 5: Alignment */ 159564829bafSPrabhakar Kushwaha li r7,0x0700 159664829bafSPrabhakar Kushwaha mtspr IVOR6,r7 /* 6: Program check */ 159764829bafSPrabhakar Kushwaha li r7,0x0800 159864829bafSPrabhakar Kushwaha mtspr IVOR7,r7 /* 7: floating point unavailable */ 159964829bafSPrabhakar Kushwaha li r7,0x0900 160064829bafSPrabhakar Kushwaha mtspr IVOR8,r7 /* 8: System call */ 160164829bafSPrabhakar Kushwaha /* 9: Auxiliary processor unavailable(unsupported) */ 160264829bafSPrabhakar Kushwaha li r7,0x0a00 160364829bafSPrabhakar Kushwaha mtspr IVOR10,r7 /* 10: Decrementer */ 160464829bafSPrabhakar Kushwaha li r7,0x0b00 160564829bafSPrabhakar Kushwaha mtspr IVOR11,r7 /* 11: Interval timer */ 160664829bafSPrabhakar Kushwaha li r7,0x0c00 160764829bafSPrabhakar Kushwaha mtspr IVOR12,r7 /* 12: Watchdog timer */ 160864829bafSPrabhakar Kushwaha li r7,0x0d00 160964829bafSPrabhakar Kushwaha mtspr IVOR13,r7 /* 13: Data TLB error */ 161064829bafSPrabhakar Kushwaha li r7,0x0e00 161164829bafSPrabhakar Kushwaha mtspr IVOR14,r7 /* 14: Instruction TLB error */ 161264829bafSPrabhakar Kushwaha li r7,0x0f00 161364829bafSPrabhakar Kushwaha mtspr IVOR15,r7 /* 15: Debug */ 161464829bafSPrabhakar Kushwaha 1615a47a12beSStefan Roese lis r7,0x0 1616a47a12beSStefan Roese mtspr IVPR,r7 1617a47a12beSStefan Roese 1618a47a12beSStefan Roese mtlr r4 /* restore link register */ 1619a47a12beSStefan Roese blr 1620a47a12beSStefan Roese 1621a47a12beSStefan Roese.globl unlock_ram_in_cache 1622a47a12beSStefan Roeseunlock_ram_in_cache: 1623a47a12beSStefan Roese /* invalidate the INIT_RAM section */ 1624a47a12beSStefan Roese lis r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@h 1625a47a12beSStefan Roese ori r3,r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@l 1626a47a12beSStefan Roese mfspr r4,L1CFG0 1627a47a12beSStefan Roese andi. r4,r4,0x1ff 1628a47a12beSStefan Roese slwi r4,r4,(10 - 1 - L1_CACHE_SHIFT) 1629a47a12beSStefan Roese mtctr r4 1630a47a12beSStefan Roese1: dcbi r0,r3 1631a47a12beSStefan Roese addi r3,r3,CONFIG_SYS_CACHELINE_SIZE 1632a47a12beSStefan Roese bdnz 1b 1633a47a12beSStefan Roese sync 1634a47a12beSStefan Roese 1635a47a12beSStefan Roese /* Invalidate the TLB entries for the cache */ 1636a47a12beSStefan Roese lis r3,CONFIG_SYS_INIT_RAM_ADDR@h 1637a47a12beSStefan Roese ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l 1638a47a12beSStefan Roese tlbivax 0,r3 1639a47a12beSStefan Roese addi r3,r3,0x1000 1640a47a12beSStefan Roese tlbivax 0,r3 1641a47a12beSStefan Roese addi r3,r3,0x1000 1642a47a12beSStefan Roese tlbivax 0,r3 1643a47a12beSStefan Roese addi r3,r3,0x1000 1644a47a12beSStefan Roese tlbivax 0,r3 1645a47a12beSStefan Roese isync 1646a47a12beSStefan Roese blr 1647a47a12beSStefan Roese 1648a47a12beSStefan Roese.globl flush_dcache 1649a47a12beSStefan Roeseflush_dcache: 1650a47a12beSStefan Roese mfspr r3,SPRN_L1CFG0 1651a47a12beSStefan Roese 1652a47a12beSStefan Roese rlwinm r5,r3,9,3 /* Extract cache block size */ 1653a47a12beSStefan Roese twlgti r5,1 /* Only 32 and 64 byte cache blocks 1654a47a12beSStefan Roese * are currently defined. 1655a47a12beSStefan Roese */ 1656a47a12beSStefan Roese li r4,32 1657a47a12beSStefan Roese subfic r6,r5,2 /* r6 = log2(1KiB / cache block size) - 1658a47a12beSStefan Roese * log2(number of ways) 1659a47a12beSStefan Roese */ 1660a47a12beSStefan Roese slw r5,r4,r5 /* r5 = cache block size */ 1661a47a12beSStefan Roese 1662a47a12beSStefan Roese rlwinm r7,r3,0,0xff /* Extract number of KiB in the cache */ 1663a47a12beSStefan Roese mulli r7,r7,13 /* An 8-way cache will require 13 1664a47a12beSStefan Roese * loads per set. 1665a47a12beSStefan Roese */ 1666a47a12beSStefan Roese slw r7,r7,r6 1667a47a12beSStefan Roese 1668a47a12beSStefan Roese /* save off HID0 and set DCFA */ 1669a47a12beSStefan Roese mfspr r8,SPRN_HID0 1670a47a12beSStefan Roese ori r9,r8,HID0_DCFA@l 1671a47a12beSStefan Roese mtspr SPRN_HID0,r9 1672a47a12beSStefan Roese isync 1673a47a12beSStefan Roese 1674a47a12beSStefan Roese lis r4,0 1675a47a12beSStefan Roese mtctr r7 1676a47a12beSStefan Roese 1677a47a12beSStefan Roese1: lwz r3,0(r4) /* Load... */ 1678a47a12beSStefan Roese add r4,r4,r5 1679a47a12beSStefan Roese bdnz 1b 1680a47a12beSStefan Roese 1681a47a12beSStefan Roese msync 1682a47a12beSStefan Roese lis r4,0 1683a47a12beSStefan Roese mtctr r7 1684a47a12beSStefan Roese 1685a47a12beSStefan Roese1: dcbf 0,r4 /* ...and flush. */ 1686a47a12beSStefan Roese add r4,r4,r5 1687a47a12beSStefan Roese bdnz 1b 1688a47a12beSStefan Roese 1689a47a12beSStefan Roese /* restore HID0 */ 1690a47a12beSStefan Roese mtspr SPRN_HID0,r8 1691a47a12beSStefan Roese isync 1692a47a12beSStefan Roese 1693a47a12beSStefan Roese blr 1694a47a12beSStefan Roese 1695a47a12beSStefan Roese.globl setup_ivors 1696a47a12beSStefan Roesesetup_ivors: 1697a47a12beSStefan Roese 1698a47a12beSStefan Roese#include "fixed_ivor.S" 1699a47a12beSStefan Roese blr 1700a47a12beSStefan Roese#endif /* !CONFIG_NAND_SPL */ 1701