Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 2 | /* |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 3 | * Copyright 2004, 2007-2012 Freescale Semiconductor, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 4 | * Copyright (C) 2003 Motorola,Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* U-Boot Startup Code for Motorola 85xx PowerPC based Embedded Boards |
| 8 | * |
| 9 | * The processor starts at 0xfffffffc and the code is first executed in the |
| 10 | * last 4K page(0xfffff000-0xffffffff) in flash/rom. |
| 11 | * |
| 12 | */ |
| 13 | |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 14 | #include <asm-offsets.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 15 | #include <config.h> |
| 16 | #include <mpc85xx.h> |
| 17 | #include <version.h> |
| 18 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 19 | #include <ppc_asm.tmpl> |
| 20 | #include <ppc_defs.h> |
| 21 | |
| 22 | #include <asm/cache.h> |
| 23 | #include <asm/mmu.h> |
| 24 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 25 | #undef MSR_KERNEL |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 26 | #define MSR_KERNEL ( MSR_ME ) /* Machine Check */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 27 | |
Prabhakar Kushwaha | b26df18 | 2014-04-08 19:12:05 +0530 | [diff] [blame] | 28 | #define LAW_EN 0x80000000 |
| 29 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 30 | #if defined(CONFIG_NAND_SPL) || \ |
| 31 | (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_INIT_MINIMAL)) |
| 32 | #define MINIMAL_SPL |
| 33 | #endif |
| 34 | |
Liu Gang | 17b8614 | 2013-06-28 17:58:37 +0800 | [diff] [blame] | 35 | #if !defined(CONFIG_SPL) && !defined(CONFIG_SYS_RAMBOOT) && \ |
| 36 | !defined(CONFIG_SECURE_BOOT) && !defined(CONFIG_SRIO_PCIE_BOOT_SLAVE) |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 37 | #define NOR_BOOT |
| 38 | #endif |
| 39 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 40 | /* |
| 41 | * Set up GOT: Global Offset Table |
| 42 | * |
Joakim Tjernlund | 0f8aa15 | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 43 | * Use r12 to access the GOT |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 44 | */ |
| 45 | START_GOT |
| 46 | GOT_ENTRY(_GOT2_TABLE_) |
| 47 | GOT_ENTRY(_FIXUP_TABLE_) |
| 48 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 49 | #ifndef MINIMAL_SPL |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 50 | GOT_ENTRY(_start) |
| 51 | GOT_ENTRY(_start_of_vectors) |
| 52 | GOT_ENTRY(_end_of_vectors) |
| 53 | GOT_ENTRY(transfer_to_handler) |
Mingkai Hu | 7da5335 | 2009-09-11 14:19:10 +0800 | [diff] [blame] | 54 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 55 | |
| 56 | GOT_ENTRY(__init_end) |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 57 | GOT_ENTRY(__bss_end) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 58 | GOT_ENTRY(__bss_start) |
| 59 | END_GOT |
| 60 | |
| 61 | /* |
| 62 | * e500 Startup -- after reset only the last 4KB of the effective |
| 63 | * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg |
| 64 | * section is located at THIS LAST page and basically does three |
| 65 | * things: clear some registers, set up exception tables and |
| 66 | * add more TLB entries for 'larger spaces'(e.g. the boot rom) to |
| 67 | * continue the boot procedure. |
| 68 | |
| 69 | * Once the boot rom is mapped by TLB entries we can proceed |
| 70 | * with normal startup. |
| 71 | * |
| 72 | */ |
| 73 | |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 74 | .section .bootpg,"ax" |
| 75 | .globl _start_e500 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 76 | |
| 77 | _start_e500: |
Prabhakar Kushwaha | 5344f7a | 2012-04-29 23:56:30 +0000 | [diff] [blame] | 78 | /* Enable debug exception */ |
| 79 | li r1,MSR_DE |
| 80 | mtmsr r1 |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 81 | |
Alexander Graf | fa08d39 | 2014-04-11 17:09:45 +0200 | [diff] [blame] | 82 | /* |
| 83 | * If we got an ePAPR device tree pointer passed in as r3, we need that |
| 84 | * later in cpu_init_early_f(). Save it to a safe register before we |
| 85 | * clobber it so that we can fetch it from there later. |
| 86 | */ |
| 87 | mr r24, r3 |
| 88 | |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 89 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004510 |
| 90 | mfspr r3,SPRN_SVR |
| 91 | rlwinm r3,r3,0,0xff |
| 92 | li r4,CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV |
| 93 | cmpw r3,r4 |
| 94 | beq 1f |
| 95 | |
| 96 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2 |
| 97 | li r4,CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2 |
| 98 | cmpw r3,r4 |
| 99 | beq 1f |
| 100 | #endif |
| 101 | |
| 102 | /* Not a supported revision affected by erratum */ |
| 103 | li r27,0 |
| 104 | b 2f |
| 105 | |
| 106 | 1: li r27,1 /* Remember for later that we have the erratum */ |
| 107 | /* Erratum says set bits 55:60 to 001001 */ |
| 108 | msync |
| 109 | isync |
Andy Fleming | cd7ad62 | 2013-03-25 07:33:10 +0000 | [diff] [blame] | 110 | mfspr r3,SPRN_HDBCR0 |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 111 | li r4,0x48 |
| 112 | rlwimi r3,r4,0,0x1f8 |
Andy Fleming | cd7ad62 | 2013-03-25 07:33:10 +0000 | [diff] [blame] | 113 | mtspr SPRN_HDBCR0,r3 |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 114 | isync |
| 115 | 2: |
| 116 | #endif |
York Sun | 954a1a4 | 2013-08-20 15:09:43 -0700 | [diff] [blame] | 117 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005125 |
| 118 | msync |
| 119 | isync |
| 120 | mfspr r3, SPRN_HDBCR0 |
| 121 | oris r3, r3, 0x0080 |
| 122 | mtspr SPRN_HDBCR0, r3 |
| 123 | #endif |
| 124 | |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 125 | |
Aneesh Bansal | fb4a240 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 126 | #if defined(CONFIG_SECURE_BOOT) && defined(CONFIG_E500MC) && \ |
| 127 | !defined(CONFIG_E6500) |
Ruchika Gupta | 7065b7d | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 128 | /* ISBC uses L2 as stack. |
| 129 | * Disable L2 cache here so that u-boot can enable it later |
| 130 | * as part of it's normal flow |
| 131 | */ |
| 132 | |
| 133 | /* Check if L2 is enabled */ |
| 134 | mfspr r3, SPRN_L2CSR0 |
| 135 | lis r2, L2CSR0_L2E@h |
| 136 | ori r2, r2, L2CSR0_L2E@l |
| 137 | and. r4, r3, r2 |
| 138 | beq l2_disabled |
| 139 | |
| 140 | mfspr r3, SPRN_L2CSR0 |
| 141 | /* Flush L2 cache */ |
| 142 | lis r2,(L2CSR0_L2FL)@h |
| 143 | ori r2, r2, (L2CSR0_L2FL)@l |
| 144 | or r3, r2, r3 |
| 145 | sync |
| 146 | isync |
| 147 | mtspr SPRN_L2CSR0,r3 |
| 148 | isync |
| 149 | 1: |
| 150 | mfspr r3, SPRN_L2CSR0 |
| 151 | and. r1, r3, r2 |
| 152 | bne 1b |
| 153 | |
| 154 | mfspr r3, SPRN_L2CSR0 |
| 155 | lis r2, L2CSR0_L2E@h |
| 156 | ori r2, r2, L2CSR0_L2E@l |
| 157 | andc r4, r3, r2 |
| 158 | sync |
| 159 | isync |
| 160 | mtspr SPRN_L2CSR0,r4 |
| 161 | isync |
| 162 | |
| 163 | l2_disabled: |
| 164 | #endif |
| 165 | |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 166 | /* clear registers/arrays not reset by hardware */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 167 | |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 168 | /* L1 */ |
| 169 | li r0,2 |
| 170 | mtspr L1CSR0,r0 /* invalidate d-cache */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 171 | mtspr L1CSR1,r0 /* invalidate i-cache */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 172 | |
| 173 | mfspr r1,DBSR |
| 174 | mtspr DBSR,r1 /* Clear all valid bits */ |
| 175 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 176 | |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 177 | .macro create_tlb1_entry esel ts tsize epn wimg rpn perm phy_high scratch |
| 178 | lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h |
| 179 | ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l |
| 180 | mtspr MAS0, \scratch |
| 181 | lis \scratch, FSL_BOOKE_MAS1(1, 1, 0, \ts, \tsize)@h |
| 182 | ori \scratch, \scratch, FSL_BOOKE_MAS1(1, 1, 0, \ts, \tsize)@l |
| 183 | mtspr MAS1, \scratch |
| 184 | lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h |
| 185 | ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l |
| 186 | mtspr MAS2, \scratch |
| 187 | lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h |
| 188 | ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l |
| 189 | mtspr MAS3, \scratch |
| 190 | lis \scratch, \phy_high@h |
| 191 | ori \scratch, \scratch, \phy_high@l |
| 192 | mtspr MAS7, \scratch |
| 193 | isync |
| 194 | msync |
| 195 | tlbwe |
| 196 | isync |
| 197 | .endm |
| 198 | |
| 199 | .macro create_tlb0_entry esel ts tsize epn wimg rpn perm phy_high scratch |
| 200 | lis \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@h |
| 201 | ori \scratch, \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@l |
| 202 | mtspr MAS0, \scratch |
| 203 | lis \scratch, FSL_BOOKE_MAS1(1, 0, 0, \ts, \tsize)@h |
| 204 | ori \scratch, \scratch, FSL_BOOKE_MAS1(1, 0, 0, \ts, \tsize)@l |
| 205 | mtspr MAS1, \scratch |
| 206 | lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h |
| 207 | ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l |
| 208 | mtspr MAS2, \scratch |
| 209 | lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h |
| 210 | ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l |
| 211 | mtspr MAS3, \scratch |
| 212 | lis \scratch, \phy_high@h |
| 213 | ori \scratch, \scratch, \phy_high@l |
| 214 | mtspr MAS7, \scratch |
| 215 | isync |
| 216 | msync |
| 217 | tlbwe |
| 218 | isync |
| 219 | .endm |
| 220 | |
| 221 | .macro delete_tlb1_entry esel scratch |
| 222 | lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h |
| 223 | ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l |
| 224 | mtspr MAS0, \scratch |
| 225 | li \scratch, 0 |
| 226 | mtspr MAS1, \scratch |
| 227 | isync |
| 228 | msync |
| 229 | tlbwe |
| 230 | isync |
| 231 | .endm |
| 232 | |
| 233 | .macro delete_tlb0_entry esel epn wimg scratch |
| 234 | lis \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@h |
| 235 | ori \scratch, \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@l |
| 236 | mtspr MAS0, \scratch |
| 237 | li \scratch, 0 |
| 238 | mtspr MAS1, \scratch |
| 239 | lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h |
| 240 | ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l |
| 241 | mtspr MAS2, \scratch |
| 242 | isync |
| 243 | msync |
| 244 | tlbwe |
| 245 | isync |
| 246 | .endm |
| 247 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 248 | /* Interrupt vectors do not fit in minimal SPL. */ |
| 249 | #if !defined(MINIMAL_SPL) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 250 | /* Setup interrupt vectors */ |
Haiying Wang | 0635b09 | 2010-11-10 15:37:13 -0500 | [diff] [blame] | 251 | lis r1,CONFIG_SYS_MONITOR_BASE@h |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 252 | mtspr IVPR,r1 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 253 | |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 254 | li r4,CriticalInput@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 255 | mtspr IVOR0,r4 /* 0: Critical input */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 256 | li r4,MachineCheck@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 257 | mtspr IVOR1,r4 /* 1: Machine check */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 258 | li r4,DataStorage@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 259 | mtspr IVOR2,r4 /* 2: Data storage */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 260 | li r4,InstStorage@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 261 | mtspr IVOR3,r4 /* 3: Instruction storage */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 262 | li r4,ExtInterrupt@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 263 | mtspr IVOR4,r4 /* 4: External interrupt */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 264 | li r4,Alignment@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 265 | mtspr IVOR5,r4 /* 5: Alignment */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 266 | li r4,ProgramCheck@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 267 | mtspr IVOR6,r4 /* 6: Program check */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 268 | li r4,FPUnavailable@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 269 | mtspr IVOR7,r4 /* 7: floating point unavailable */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 270 | li r4,SystemCall@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 271 | mtspr IVOR8,r4 /* 8: System call */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 272 | /* 9: Auxiliary processor unavailable(unsupported) */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 273 | li r4,Decrementer@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 274 | mtspr IVOR10,r4 /* 10: Decrementer */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 275 | li r4,IntervalTimer@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 276 | mtspr IVOR11,r4 /* 11: Interval timer */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 277 | li r4,WatchdogTimer@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 278 | mtspr IVOR12,r4 /* 12: Watchdog timer */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 279 | li r4,DataTLBError@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 280 | mtspr IVOR13,r4 /* 13: Data TLB error */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 281 | li r4,InstructionTLBError@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 282 | mtspr IVOR14,r4 /* 14: Instruction TLB error */ |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 283 | li r4,DebugBreakpoint@l |
Prabhakar Kushwaha | a4107f8 | 2012-02-14 22:49:29 +0000 | [diff] [blame] | 284 | mtspr IVOR15,r4 /* 15: Debug */ |
Prabhakar Kushwaha | 119a55f | 2012-02-14 22:50:02 +0000 | [diff] [blame] | 285 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 286 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 287 | /* Clear and set up some registers. */ |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 288 | li r0,0x0000 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 289 | lis r1,0xffff |
| 290 | mtspr DEC,r0 /* prevent dec exceptions */ |
| 291 | mttbl r0 /* prevent fit & wdt exceptions */ |
| 292 | mttbu r0 |
| 293 | mtspr TSR,r1 /* clear all timer exception status */ |
| 294 | mtspr TCR,r0 /* disable all */ |
| 295 | mtspr ESR,r0 /* clear exception syndrome register */ |
| 296 | mtspr MCSR,r0 /* machine check syndrome register */ |
| 297 | mtxer r0 /* clear integer exception register */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 298 | |
Scott Wood | dcc87dd | 2009-08-20 17:45:05 -0500 | [diff] [blame] | 299 | #ifdef CONFIG_SYS_BOOK3E_HV |
| 300 | mtspr MAS8,r0 /* make sure MAS8 is clear */ |
| 301 | #endif |
| 302 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 303 | /* Enable Time Base and Select Time Base Clock */ |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 304 | lis r0,HID0_EMCP@h /* Enable machine check */ |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 305 | #if defined(CONFIG_ENABLE_36BIT_PHYS) |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 306 | ori r0,r0,HID0_ENMAS7@l /* Enable MAS7 */ |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 307 | #endif |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 308 | #ifndef CONFIG_E500MC |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 309 | ori r0,r0,HID0_TBEN@l /* Enable Timebase */ |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 310 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 311 | mtspr HID0,r0 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 312 | |
York Sun | 1034340 | 2016-11-18 12:29:51 -0800 | [diff] [blame] | 313 | #if !defined(CONFIG_E500MC) && !defined(CONFIG_ARCH_QEMU_E500) |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 314 | li r0,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */ |
Sandeep Gopalpet | ff8473e | 2010-03-12 10:45:02 +0530 | [diff] [blame] | 315 | mfspr r3,PVR |
| 316 | andi. r3,r3, 0xff |
| 317 | cmpwi r3,0x50@l /* if we are rev 5.0 or greater set MBDD */ |
| 318 | blt 1f |
| 319 | /* Set MBDD bit also */ |
| 320 | ori r0, r0, HID1_MBDD@l |
| 321 | 1: |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 322 | mtspr HID1,r0 |
Kumar Gala | 0f060c3 | 2008-10-23 01:47:38 -0500 | [diff] [blame] | 323 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 324 | |
Kumar Gala | 43f082b | 2011-11-22 06:51:15 -0600 | [diff] [blame] | 325 | #ifdef CONFIG_SYS_FSL_ERRATUM_CPU_A003999 |
Andy Fleming | cd7ad62 | 2013-03-25 07:33:10 +0000 | [diff] [blame] | 326 | mfspr r3,SPRN_HDBCR1 |
Kumar Gala | 43f082b | 2011-11-22 06:51:15 -0600 | [diff] [blame] | 327 | oris r3,r3,0x0100 |
Andy Fleming | cd7ad62 | 2013-03-25 07:33:10 +0000 | [diff] [blame] | 328 | mtspr SPRN_HDBCR1,r3 |
Kumar Gala | 43f082b | 2011-11-22 06:51:15 -0600 | [diff] [blame] | 329 | #endif |
| 330 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 331 | /* Enable Branch Prediction */ |
| 332 | #if defined(CONFIG_BTB) |
Kumar Gala | 69bcf5b | 2010-03-29 13:50:31 -0500 | [diff] [blame] | 333 | lis r0,BUCSR_ENABLE@h |
| 334 | ori r0,r0,BUCSR_ENABLE@l |
| 335 | mtspr SPRN_BUCSR,r0 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 336 | #endif |
| 337 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 338 | #if defined(CONFIG_SYS_INIT_DBCR) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 339 | lis r1,0xffff |
| 340 | ori r1,r1,0xffff |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 341 | mtspr DBSR,r1 /* Clear all status bits */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 342 | lis r0,CONFIG_SYS_INIT_DBCR@h /* DBCR0[IDM] must be set */ |
| 343 | ori r0,r0,CONFIG_SYS_INIT_DBCR@l |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 344 | mtspr DBCR0,r0 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 345 | #endif |
| 346 | |
York Sun | 23b36a7 | 2016-11-16 11:34:52 -0800 | [diff] [blame] | 347 | #ifdef CONFIG_ARCH_MPC8569 |
Haiying Wang | 22b6dbc | 2009-03-27 17:02:44 -0400 | [diff] [blame] | 348 | #define CONFIG_SYS_LBC_ADDR (CONFIG_SYS_CCSRBAR_DEFAULT + 0x5000) |
| 349 | #define CONFIG_SYS_LBCR_ADDR (CONFIG_SYS_LBC_ADDR + 0xd0) |
| 350 | |
| 351 | /* MPC8569 Rev.0 silcon needs to set bit 13 of LBCR to allow elBC to |
| 352 | * use address space which is more than 12bits, and it must be done in |
| 353 | * the 4K boot page. So we set this bit here. |
| 354 | */ |
| 355 | |
| 356 | /* create a temp mapping TLB0[0] for LBCR */ |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 357 | create_tlb0_entry 0, \ |
| 358 | 0, BOOKE_PAGESZ_4K, \ |
| 359 | CONFIG_SYS_LBC_ADDR, MAS2_I|MAS2_G, \ |
| 360 | CONFIG_SYS_LBC_ADDR, MAS3_SW|MAS3_SR, \ |
| 361 | 0, r6 |
Haiying Wang | 22b6dbc | 2009-03-27 17:02:44 -0400 | [diff] [blame] | 362 | |
| 363 | /* Set LBCR register */ |
| 364 | lis r4,CONFIG_SYS_LBCR_ADDR@h |
| 365 | ori r4,r4,CONFIG_SYS_LBCR_ADDR@l |
| 366 | |
| 367 | lis r5,CONFIG_SYS_LBC_LBCR@h |
| 368 | ori r5,r5,CONFIG_SYS_LBC_LBCR@l |
| 369 | stw r5,0(r4) |
| 370 | isync |
| 371 | |
| 372 | /* invalidate this temp TLB */ |
| 373 | lis r4,CONFIG_SYS_LBC_ADDR@h |
| 374 | ori r4,r4,CONFIG_SYS_LBC_ADDR@l |
| 375 | tlbivax 0,r4 |
| 376 | isync |
| 377 | |
York Sun | 23b36a7 | 2016-11-16 11:34:52 -0800 | [diff] [blame] | 378 | #endif /* CONFIG_ARCH_MPC8569 */ |
Haiying Wang | 22b6dbc | 2009-03-27 17:02:44 -0400 | [diff] [blame] | 379 | |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 380 | /* |
Timur Tabi | 72243c0 | 2011-10-31 13:30:45 -0500 | [diff] [blame] | 381 | * Search for the TLB that covers the code we're executing, and shrink it |
| 382 | * so that it covers only this 4K page. That will ensure that any other |
| 383 | * TLB we create won't interfere with it. We assume that the TLB exists, |
Scott Wood | 3ea2153 | 2012-08-20 13:10:08 +0000 | [diff] [blame] | 384 | * which is why we don't check the Valid bit of MAS1. We also assume |
| 385 | * it is in TLB1. |
Timur Tabi | 72243c0 | 2011-10-31 13:30:45 -0500 | [diff] [blame] | 386 | * |
| 387 | * This is necessary, for example, when booting from the on-chip ROM, |
| 388 | * which (oddly) creates a single 4GB TLB that covers CCSR and DDR. |
Timur Tabi | 72243c0 | 2011-10-31 13:30:45 -0500 | [diff] [blame] | 389 | */ |
| 390 | bl nexti /* Find our address */ |
| 391 | nexti: mflr r1 /* R1 = our PC */ |
| 392 | li r2, 0 |
| 393 | mtspr MAS6, r2 /* Assume the current PID and AS are 0 */ |
| 394 | isync |
| 395 | msync |
| 396 | tlbsx 0, r1 /* This must succeed */ |
| 397 | |
Scott Wood | 3ea2153 | 2012-08-20 13:10:08 +0000 | [diff] [blame] | 398 | mfspr r14, MAS0 /* Save ESEL for later */ |
| 399 | rlwinm r14, r14, 16, 0xfff |
| 400 | |
Timur Tabi | 72243c0 | 2011-10-31 13:30:45 -0500 | [diff] [blame] | 401 | /* Set the size of the TLB to 4KB */ |
| 402 | mfspr r3, MAS1 |
Scott Wood | 31d084d | 2013-01-18 15:45:58 +0000 | [diff] [blame] | 403 | li r2, 0xF80 |
Timur Tabi | 72243c0 | 2011-10-31 13:30:45 -0500 | [diff] [blame] | 404 | andc r3, r3, r2 /* Clear the TSIZE bits */ |
| 405 | ori r3, r3, MAS1_TSIZE(BOOKE_PAGESZ_4K)@l |
Scott Wood | 3ea2153 | 2012-08-20 13:10:08 +0000 | [diff] [blame] | 406 | oris r3, r3, MAS1_IPROT@h |
Timur Tabi | 72243c0 | 2011-10-31 13:30:45 -0500 | [diff] [blame] | 407 | mtspr MAS1, r3 |
| 408 | |
| 409 | /* |
| 410 | * Set the base address of the TLB to our PC. We assume that |
| 411 | * virtual == physical. We also assume that MAS2_EPN == MAS3_RPN. |
| 412 | */ |
| 413 | lis r3, MAS2_EPN@h |
| 414 | ori r3, r3, MAS2_EPN@l /* R3 = MAS2_EPN */ |
| 415 | |
| 416 | and r1, r1, r3 /* Our PC, rounded down to the nearest page */ |
| 417 | |
| 418 | mfspr r2, MAS2 |
| 419 | andc r2, r2, r3 |
| 420 | or r2, r2, r1 |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 421 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004510 |
| 422 | cmpwi r27,0 |
| 423 | beq 1f |
| 424 | andi. r15, r2, MAS2_I|MAS2_G /* save the old I/G for later */ |
| 425 | rlwinm r2, r2, 0, ~MAS2_I |
| 426 | ori r2, r2, MAS2_G |
| 427 | 1: |
| 428 | #endif |
Timur Tabi | 72243c0 | 2011-10-31 13:30:45 -0500 | [diff] [blame] | 429 | mtspr MAS2, r2 /* Set the EPN to our PC base address */ |
| 430 | |
| 431 | mfspr r2, MAS3 |
| 432 | andc r2, r2, r3 |
| 433 | or r2, r2, r1 |
| 434 | mtspr MAS3, r2 /* Set the RPN to our PC base address */ |
| 435 | |
| 436 | isync |
| 437 | msync |
| 438 | tlbwe |
| 439 | |
| 440 | /* |
Scott Wood | 3ea2153 | 2012-08-20 13:10:08 +0000 | [diff] [blame] | 441 | * Clear out any other TLB entries that may exist, to avoid conflicts. |
| 442 | * Our TLB entry is in r14. |
| 443 | */ |
| 444 | li r0, TLBIVAX_ALL | TLBIVAX_TLB0 |
| 445 | tlbivax 0, r0 |
| 446 | tlbsync |
| 447 | |
| 448 | mfspr r4, SPRN_TLB1CFG |
| 449 | rlwinm r4, r4, 0, TLBnCFG_NENTRY_MASK |
| 450 | |
| 451 | li r3, 0 |
| 452 | mtspr MAS1, r3 |
| 453 | 1: cmpw r3, r14 |
Scott Wood | 3ea2153 | 2012-08-20 13:10:08 +0000 | [diff] [blame] | 454 | rlwinm r5, r3, 16, MAS0_ESEL_MSK |
| 455 | addi r3, r3, 1 |
| 456 | beq 2f /* skip the entry we're executing from */ |
| 457 | |
| 458 | oris r5, r5, MAS0_TLBSEL(1)@h |
| 459 | mtspr MAS0, r5 |
| 460 | |
| 461 | isync |
| 462 | tlbwe |
| 463 | isync |
| 464 | msync |
| 465 | |
| 466 | 2: cmpw r3, r4 |
| 467 | blt 1b |
| 468 | |
Aneesh Bansal | f978f7c | 2014-03-12 00:07:27 +0530 | [diff] [blame] | 469 | #if defined(CONFIG_SYS_PPC_E500_DEBUG_TLB) && !defined(MINIMAL_SPL) && \ |
| 470 | !defined(CONFIG_SECURE_BOOT) |
Scott Wood | f545d30 | 2012-10-25 19:27:41 -0500 | [diff] [blame] | 471 | /* |
| 472 | * TLB entry for debuggging in AS1 |
| 473 | * Create temporary TLB entry in AS0 to handle debug exception |
| 474 | * As on debug exception MSR is cleared i.e. Address space is changed |
| 475 | * to 0. A TLB entry (in AS0) is required to handle debug exception generated |
| 476 | * in AS1. |
| 477 | */ |
| 478 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 479 | #ifdef NOR_BOOT |
Scott Wood | f545d30 | 2012-10-25 19:27:41 -0500 | [diff] [blame] | 480 | /* |
| 481 | * TLB entry is created for IVPR + IVOR15 to map on valid OP code address |
| 482 | * bacause flash's virtual address maps to 0xff800000 - 0xffffffff. |
| 483 | * and this window is outside of 4K boot window. |
| 484 | */ |
| 485 | create_tlb1_entry CONFIG_SYS_PPC_E500_DEBUG_TLB, \ |
| 486 | 0, BOOKE_PAGESZ_4M, \ |
| 487 | CONFIG_SYS_MONITOR_BASE & 0xffc00000, MAS2_I|MAS2_G, \ |
| 488 | 0xffc00000, MAS3_SX|MAS3_SW|MAS3_SR, \ |
| 489 | 0, r6 |
| 490 | |
Scott Wood | f545d30 | 2012-10-25 19:27:41 -0500 | [diff] [blame] | 491 | #else |
| 492 | /* |
| 493 | * TLB entry is created for IVPR + IVOR15 to map on valid OP code address |
| 494 | * because "nexti" will resize TLB to 4K |
| 495 | */ |
| 496 | create_tlb1_entry CONFIG_SYS_PPC_E500_DEBUG_TLB, \ |
| 497 | 0, BOOKE_PAGESZ_256K, \ |
| 498 | CONFIG_SYS_MONITOR_BASE & 0xfffc0000, MAS2_I, \ |
| 499 | CONFIG_SYS_MONITOR_BASE & 0xfffc0000, MAS3_SX|MAS3_SW|MAS3_SR, \ |
| 500 | 0, r6 |
| 501 | #endif |
| 502 | #endif |
| 503 | |
Scott Wood | 3ea2153 | 2012-08-20 13:10:08 +0000 | [diff] [blame] | 504 | /* |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 505 | * Relocate CCSR, if necessary. We relocate CCSR if (obviously) the default |
| 506 | * location is not where we want it. This typically happens on a 36-bit |
| 507 | * system, where we want to move CCSR to near the top of 36-bit address space. |
| 508 | * |
| 509 | * To move CCSR, we create two temporary TLBs, one for the old location, and |
| 510 | * another for the new location. On CoreNet systems, we also need to create |
| 511 | * a special, temporary LAW. |
| 512 | * |
| 513 | * As a general rule, TLB0 is used for short-term TLBs, and TLB1 is used for |
| 514 | * long-term TLBs, so we use TLB0 here. |
| 515 | */ |
| 516 | #if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS) |
| 517 | |
| 518 | #if !defined(CONFIG_SYS_CCSRBAR_PHYS_HIGH) || !defined(CONFIG_SYS_CCSRBAR_PHYS_LOW) |
| 519 | #error "CONFIG_SYS_CCSRBAR_PHYS_HIGH and CONFIG_SYS_CCSRBAR_PHYS_LOW) must be defined." |
| 520 | #endif |
| 521 | |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 522 | create_ccsr_new_tlb: |
| 523 | /* |
| 524 | * Create a TLB for the new location of CCSR. Register R8 is reserved |
| 525 | * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR). |
| 526 | */ |
Scott Wood | 3ea2153 | 2012-08-20 13:10:08 +0000 | [diff] [blame] | 527 | lis r8, CONFIG_SYS_CCSRBAR@h |
| 528 | ori r8, r8, CONFIG_SYS_CCSRBAR@l |
| 529 | lis r9, (CONFIG_SYS_CCSRBAR + 0x1000)@h |
| 530 | ori r9, r9, (CONFIG_SYS_CCSRBAR + 0x1000)@l |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 531 | create_tlb0_entry 0, \ |
| 532 | 0, BOOKE_PAGESZ_4K, \ |
| 533 | CONFIG_SYS_CCSRBAR, MAS2_I|MAS2_G, \ |
| 534 | CONFIG_SYS_CCSRBAR_PHYS_LOW, MAS3_SW|MAS3_SR, \ |
| 535 | CONFIG_SYS_CCSRBAR_PHYS_HIGH, r3 |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 536 | /* |
Timur Tabi | c2efa0a | 2011-10-31 13:30:42 -0500 | [diff] [blame] | 537 | * Create a TLB for the current location of CCSR. Register R9 is reserved |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 538 | * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR + 0x1000). |
| 539 | */ |
| 540 | create_ccsr_old_tlb: |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 541 | create_tlb0_entry 1, \ |
| 542 | 0, BOOKE_PAGESZ_4K, \ |
| 543 | CONFIG_SYS_CCSRBAR + 0x1000, MAS2_I|MAS2_G, \ |
| 544 | CONFIG_SYS_CCSRBAR_DEFAULT, MAS3_SW|MAS3_SR, \ |
| 545 | 0, r3 /* The default CCSR address is always a 32-bit number */ |
| 546 | |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 547 | |
Timur Tabi | 19e4384 | 2011-10-31 13:30:44 -0500 | [diff] [blame] | 548 | /* |
| 549 | * We have a TLB for what we think is the current (old) CCSR. Let's |
| 550 | * verify that, otherwise we won't be able to move it. |
| 551 | * CONFIG_SYS_CCSRBAR_DEFAULT is always a 32-bit number, so we only |
| 552 | * need to compare the lower 32 bits of CCSRBAR on CoreNet systems. |
| 553 | */ |
| 554 | verify_old_ccsr: |
| 555 | lis r0, CONFIG_SYS_CCSRBAR_DEFAULT@h |
| 556 | ori r0, r0, CONFIG_SYS_CCSRBAR_DEFAULT@l |
| 557 | #ifdef CONFIG_FSL_CORENET |
| 558 | lwz r1, 4(r9) /* CCSRBARL */ |
| 559 | #else |
| 560 | lwz r1, 0(r9) /* CCSRBAR, shifted right by 12 */ |
| 561 | slwi r1, r1, 12 |
| 562 | #endif |
| 563 | |
| 564 | cmpl 0, r0, r1 |
| 565 | |
| 566 | /* |
| 567 | * If the value we read from CCSRBARL is not what we expect, then |
| 568 | * enter an infinite loop. This will at least allow a debugger to |
| 569 | * halt execution and examine TLBs, etc. There's no point in going |
| 570 | * on. |
| 571 | */ |
| 572 | infinite_debug_loop: |
| 573 | bne infinite_debug_loop |
| 574 | |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 575 | #ifdef CONFIG_FSL_CORENET |
| 576 | |
| 577 | #define CCSR_LAWBARH0 (CONFIG_SYS_CCSRBAR + 0x1000) |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 578 | #define LAW_SIZE_4K 0xb |
| 579 | #define CCSRBAR_LAWAR (LAW_EN | (0x1e << 20) | LAW_SIZE_4K) |
| 580 | #define CCSRAR_C 0x80000000 /* Commit */ |
| 581 | |
| 582 | create_temp_law: |
| 583 | /* |
| 584 | * On CoreNet systems, we create the temporary LAW using a special LAW |
| 585 | * target ID of 0x1e. LAWBARH is at offset 0xc00 in CCSR. |
| 586 | */ |
| 587 | lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h |
| 588 | ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l |
| 589 | lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h |
| 590 | ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l |
| 591 | lis r2, CCSRBAR_LAWAR@h |
| 592 | ori r2, r2, CCSRBAR_LAWAR@l |
| 593 | |
| 594 | stw r0, 0xc00(r9) /* LAWBARH0 */ |
| 595 | stw r1, 0xc04(r9) /* LAWBARL0 */ |
| 596 | sync |
| 597 | stw r2, 0xc08(r9) /* LAWAR0 */ |
| 598 | |
| 599 | /* |
| 600 | * Read back from LAWAR to ensure the update is complete. e500mc |
| 601 | * cores also require an isync. |
| 602 | */ |
| 603 | lwz r0, 0xc08(r9) /* LAWAR0 */ |
| 604 | isync |
| 605 | |
| 606 | /* |
| 607 | * Read the current CCSRBARH and CCSRBARL using load word instructions. |
| 608 | * Follow this with an isync instruction. This forces any outstanding |
| 609 | * accesses to configuration space to completion. |
| 610 | */ |
| 611 | read_old_ccsrbar: |
| 612 | lwz r0, 0(r9) /* CCSRBARH */ |
Timur Tabi | c2efa0a | 2011-10-31 13:30:42 -0500 | [diff] [blame] | 613 | lwz r0, 4(r9) /* CCSRBARL */ |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 614 | isync |
| 615 | |
| 616 | /* |
| 617 | * Write the new values for CCSRBARH and CCSRBARL to their old |
| 618 | * locations. The CCSRBARH has a shadow register. When the CCSRBARH |
| 619 | * has a new value written it loads a CCSRBARH shadow register. When |
| 620 | * the CCSRBARL is written, the CCSRBARH shadow register contents |
| 621 | * along with the CCSRBARL value are loaded into the CCSRBARH and |
| 622 | * CCSRBARL registers, respectively. Follow this with a sync |
| 623 | * instruction. |
| 624 | */ |
| 625 | write_new_ccsrbar: |
| 626 | lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h |
| 627 | ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l |
| 628 | lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h |
| 629 | ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l |
| 630 | lis r2, CCSRAR_C@h |
| 631 | ori r2, r2, CCSRAR_C@l |
| 632 | |
| 633 | stw r0, 0(r9) /* Write to CCSRBARH */ |
| 634 | sync /* Make sure we write to CCSRBARH first */ |
| 635 | stw r1, 4(r9) /* Write to CCSRBARL */ |
| 636 | sync |
| 637 | |
| 638 | /* |
| 639 | * Write a 1 to the commit bit (C) of CCSRAR at the old location. |
| 640 | * Follow this with a sync instruction. |
| 641 | */ |
| 642 | stw r2, 8(r9) |
| 643 | sync |
| 644 | |
| 645 | /* Delete the temporary LAW */ |
| 646 | delete_temp_law: |
| 647 | li r1, 0 |
| 648 | stw r1, 0xc08(r8) |
| 649 | sync |
| 650 | stw r1, 0xc00(r8) |
| 651 | stw r1, 0xc04(r8) |
| 652 | sync |
| 653 | |
| 654 | #else /* #ifdef CONFIG_FSL_CORENET */ |
| 655 | |
| 656 | write_new_ccsrbar: |
| 657 | /* |
| 658 | * Read the current value of CCSRBAR using a load word instruction |
| 659 | * followed by an isync. This forces all accesses to configuration |
| 660 | * space to complete. |
| 661 | */ |
| 662 | sync |
| 663 | lwz r0, 0(r9) |
| 664 | isync |
| 665 | |
| 666 | /* CONFIG_SYS_CCSRBAR_PHYS right shifted by 12 */ |
| 667 | #define CCSRBAR_PHYS_RS12 ((CONFIG_SYS_CCSRBAR_PHYS_HIGH << 20) | \ |
| 668 | (CONFIG_SYS_CCSRBAR_PHYS_LOW >> 12)) |
| 669 | |
| 670 | /* Write the new value to CCSRBAR. */ |
| 671 | lis r0, CCSRBAR_PHYS_RS12@h |
| 672 | ori r0, r0, CCSRBAR_PHYS_RS12@l |
| 673 | stw r0, 0(r9) |
| 674 | sync |
| 675 | |
| 676 | /* |
| 677 | * The manual says to perform a load of an address that does not |
| 678 | * access configuration space or the on-chip SRAM using an existing TLB, |
| 679 | * but that doesn't appear to be necessary. We will do the isync, |
| 680 | * though. |
| 681 | */ |
| 682 | isync |
| 683 | |
| 684 | /* |
| 685 | * Read the contents of CCSRBAR from its new location, followed by |
| 686 | * another isync. |
| 687 | */ |
| 688 | lwz r0, 0(r8) |
| 689 | isync |
| 690 | |
| 691 | #endif /* #ifdef CONFIG_FSL_CORENET */ |
| 692 | |
| 693 | /* Delete the temporary TLBs */ |
| 694 | delete_temp_tlbs: |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 695 | delete_tlb0_entry 0, CONFIG_SYS_CCSRBAR, MAS2_I|MAS2_G, r3 |
| 696 | delete_tlb0_entry 1, CONFIG_SYS_CCSRBAR + 0x1000, MAS2_I|MAS2_G, r3 |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 697 | |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 698 | #endif /* #if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS) */ |
| 699 | |
Prabhakar Kushwaha | e982746 | 2013-08-29 13:10:38 +0530 | [diff] [blame] | 700 | #if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500) |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 701 | create_ccsr_l2_tlb: |
| 702 | /* |
| 703 | * Create a TLB for the MMR location of CCSR |
| 704 | * to access L2CSR0 register |
| 705 | */ |
| 706 | create_tlb0_entry 0, \ |
| 707 | 0, BOOKE_PAGESZ_4K, \ |
| 708 | CONFIG_SYS_CCSRBAR + 0xC20000, MAS2_I|MAS2_G, \ |
| 709 | CONFIG_SYS_CCSRBAR_PHYS_LOW + 0xC20000, MAS3_SW|MAS3_SR, \ |
| 710 | CONFIG_SYS_CCSRBAR_PHYS_HIGH, r3 |
| 711 | |
| 712 | enable_l2_cluster_l2: |
| 713 | /* enable L2 cache */ |
| 714 | lis r3, (CONFIG_SYS_CCSRBAR + 0xC20000)@h |
| 715 | ori r3, r3, (CONFIG_SYS_CCSRBAR + 0xC20000)@l |
| 716 | li r4, 33 /* stash id */ |
| 717 | stw r4, 4(r3) |
| 718 | lis r4, (L2CSR0_L2FI|L2CSR0_L2LFC)@h |
| 719 | ori r4, r4, (L2CSR0_L2FI|L2CSR0_L2LFC)@l |
| 720 | sync |
| 721 | stw r4, 0(r3) /* invalidate L2 */ |
Aneesh Bansal | 82eda68 | 2016-04-18 22:58:33 +0530 | [diff] [blame] | 722 | /* Poll till the bits are cleared */ |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 723 | 1: sync |
| 724 | lwz r0, 0(r3) |
| 725 | twi 0, r0, 0 |
| 726 | isync |
| 727 | and. r1, r0, r4 |
| 728 | bne 1b |
Aneesh Bansal | 82eda68 | 2016-04-18 22:58:33 +0530 | [diff] [blame] | 729 | |
| 730 | /* L2PE must be set before L2 cache is enabled */ |
| 731 | lis r4, (L2CSR0_L2PE)@h |
| 732 | ori r4, r4, (L2CSR0_L2PE)@l |
| 733 | sync |
| 734 | stw r4, 0(r3) /* enable L2 parity/ECC error checking */ |
| 735 | /* Poll till the bit is set */ |
| 736 | 1: sync |
| 737 | lwz r0, 0(r3) |
| 738 | twi 0, r0, 0 |
| 739 | isync |
| 740 | and. r1, r0, r4 |
| 741 | beq 1b |
| 742 | |
James Yang | c416faf | 2013-03-25 07:39:58 +0000 | [diff] [blame] | 743 | lis r4, (L2CSR0_L2E|L2CSR0_L2PE)@h |
James Yang | 9cd95ac | 2013-03-25 07:40:03 +0000 | [diff] [blame] | 744 | ori r4, r4, (L2CSR0_L2REP_MODE)@l |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 745 | sync |
Andy Fleming | 3e4c313 | 2013-03-25 07:33:14 +0000 | [diff] [blame] | 746 | stw r4, 0(r3) /* enable L2 */ |
Aneesh Bansal | 82eda68 | 2016-04-18 22:58:33 +0530 | [diff] [blame] | 747 | /* Poll till the bit is set */ |
| 748 | 1: sync |
| 749 | lwz r0, 0(r3) |
| 750 | twi 0, r0, 0 |
| 751 | isync |
| 752 | and. r1, r0, r4 |
| 753 | beq 1b |
| 754 | |
York Sun | 6d2b9da | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 755 | delete_ccsr_l2_tlb: |
| 756 | delete_tlb0_entry 0, CONFIG_SYS_CCSRBAR + 0xC20000, MAS2_I|MAS2_G, r3 |
| 757 | #endif |
| 758 | |
Andy Fleming | 3e4c313 | 2013-03-25 07:33:14 +0000 | [diff] [blame] | 759 | /* |
| 760 | * Enable the L1. On e6500, this has to be done |
| 761 | * after the L2 is up. |
| 762 | */ |
| 763 | |
| 764 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 765 | /* set stash id to (coreID) * 2 + 32 + L1 CT (0) */ |
| 766 | li r2,(32 + 0) |
| 767 | mtspr L1CSR2,r2 |
| 768 | #endif |
| 769 | |
| 770 | /* Enable/invalidate the I-Cache */ |
| 771 | lis r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@h |
| 772 | ori r2,r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@l |
| 773 | mtspr SPRN_L1CSR1,r2 |
| 774 | 1: |
| 775 | mfspr r3,SPRN_L1CSR1 |
| 776 | and. r1,r3,r2 |
| 777 | bne 1b |
| 778 | |
| 779 | lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h |
| 780 | ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l |
| 781 | mtspr SPRN_L1CSR1,r3 |
| 782 | isync |
| 783 | 2: |
| 784 | mfspr r3,SPRN_L1CSR1 |
| 785 | andi. r1,r3,L1CSR1_ICE@l |
| 786 | beq 2b |
| 787 | |
| 788 | /* Enable/invalidate the D-Cache */ |
| 789 | lis r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@h |
| 790 | ori r2,r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@l |
| 791 | mtspr SPRN_L1CSR0,r2 |
| 792 | 1: |
| 793 | mfspr r3,SPRN_L1CSR0 |
| 794 | and. r1,r3,r2 |
| 795 | bne 1b |
| 796 | |
| 797 | lis r3,(L1CSR0_CPE|L1CSR0_DCE)@h |
| 798 | ori r3,r3,(L1CSR0_CPE|L1CSR0_DCE)@l |
| 799 | mtspr SPRN_L1CSR0,r3 |
| 800 | isync |
| 801 | 2: |
| 802 | mfspr r3,SPRN_L1CSR0 |
| 803 | andi. r1,r3,L1CSR0_DCE@l |
| 804 | beq 2b |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 805 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004510 |
| 806 | #define DCSR_LAWBARH0 (CONFIG_SYS_CCSRBAR + 0x1000) |
| 807 | #define LAW_SIZE_1M 0x13 |
| 808 | #define DCSRBAR_LAWAR (LAW_EN | (0x1d << 20) | LAW_SIZE_1M) |
| 809 | |
| 810 | cmpwi r27,0 |
| 811 | beq 9f |
| 812 | |
| 813 | /* |
| 814 | * Create a TLB entry for CCSR |
| 815 | * |
| 816 | * We're executing out of TLB1 entry in r14, and that's the only |
| 817 | * TLB entry that exists. To allocate some TLB entries for our |
| 818 | * own use, flip a bit high enough that we won't flip it again |
| 819 | * via incrementing. |
| 820 | */ |
| 821 | |
| 822 | xori r8, r14, 32 |
| 823 | lis r0, MAS0_TLBSEL(1)@h |
| 824 | rlwimi r0, r8, 16, MAS0_ESEL_MSK |
| 825 | lis r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_16M)@h |
| 826 | ori r1, r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_16M)@l |
| 827 | lis r7, CONFIG_SYS_CCSRBAR@h |
| 828 | ori r7, r7, CONFIG_SYS_CCSRBAR@l |
| 829 | ori r2, r7, MAS2_I|MAS2_G |
| 830 | lis r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@h |
| 831 | ori r3, r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@l |
| 832 | lis r4, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h |
| 833 | ori r4, r4, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l |
| 834 | mtspr MAS0, r0 |
| 835 | mtspr MAS1, r1 |
| 836 | mtspr MAS2, r2 |
| 837 | mtspr MAS3, r3 |
| 838 | mtspr MAS7, r4 |
| 839 | isync |
| 840 | tlbwe |
| 841 | isync |
| 842 | msync |
| 843 | |
| 844 | /* Map DCSR temporarily to physical address zero */ |
| 845 | li r0, 0 |
| 846 | lis r3, DCSRBAR_LAWAR@h |
| 847 | ori r3, r3, DCSRBAR_LAWAR@l |
| 848 | |
| 849 | stw r0, 0xc00(r7) /* LAWBARH0 */ |
| 850 | stw r0, 0xc04(r7) /* LAWBARL0 */ |
| 851 | sync |
| 852 | stw r3, 0xc08(r7) /* LAWAR0 */ |
| 853 | |
| 854 | /* Read back from LAWAR to ensure the update is complete. */ |
| 855 | lwz r3, 0xc08(r7) /* LAWAR0 */ |
| 856 | isync |
| 857 | |
| 858 | /* Create a TLB entry for DCSR at zero */ |
| 859 | |
| 860 | addi r9, r8, 1 |
| 861 | lis r0, MAS0_TLBSEL(1)@h |
| 862 | rlwimi r0, r9, 16, MAS0_ESEL_MSK |
| 863 | lis r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@h |
| 864 | ori r1, r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@l |
| 865 | li r6, 0 /* DCSR effective address */ |
| 866 | ori r2, r6, MAS2_I|MAS2_G |
| 867 | li r3, MAS3_SW|MAS3_SR |
| 868 | li r4, 0 |
| 869 | mtspr MAS0, r0 |
| 870 | mtspr MAS1, r1 |
| 871 | mtspr MAS2, r2 |
| 872 | mtspr MAS3, r3 |
| 873 | mtspr MAS7, r4 |
| 874 | isync |
| 875 | tlbwe |
| 876 | isync |
| 877 | msync |
| 878 | |
| 879 | /* enable the timebase */ |
| 880 | #define CTBENR 0xe2084 |
| 881 | li r3, 1 |
| 882 | addis r4, r7, CTBENR@ha |
| 883 | stw r3, CTBENR@l(r4) |
| 884 | lwz r3, CTBENR@l(r4) |
| 885 | twi 0,r3,0 |
| 886 | isync |
| 887 | |
| 888 | .macro erratum_set_ccsr offset value |
| 889 | addis r3, r7, \offset@ha |
| 890 | lis r4, \value@h |
| 891 | addi r3, r3, \offset@l |
| 892 | ori r4, r4, \value@l |
| 893 | bl erratum_set_value |
| 894 | .endm |
| 895 | |
| 896 | .macro erratum_set_dcsr offset value |
| 897 | addis r3, r6, \offset@ha |
| 898 | lis r4, \value@h |
| 899 | addi r3, r3, \offset@l |
| 900 | ori r4, r4, \value@l |
| 901 | bl erratum_set_value |
| 902 | .endm |
| 903 | |
| 904 | erratum_set_dcsr 0xb0e08 0xe0201800 |
| 905 | erratum_set_dcsr 0xb0e18 0xe0201800 |
| 906 | erratum_set_dcsr 0xb0e38 0xe0400000 |
| 907 | erratum_set_dcsr 0xb0008 0x00900000 |
| 908 | erratum_set_dcsr 0xb0e40 0xe00a0000 |
| 909 | erratum_set_ccsr 0x18600 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY |
Dave Liu | 24936ed | 2013-11-28 14:58:08 +0800 | [diff] [blame] | 910 | #ifdef CONFIG_RAMBOOT_PBL |
| 911 | erratum_set_ccsr 0x10f00 0x495e5000 |
| 912 | #else |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 913 | erratum_set_ccsr 0x10f00 0x415e5000 |
Dave Liu | 24936ed | 2013-11-28 14:58:08 +0800 | [diff] [blame] | 914 | #endif |
Scott Wood | 33eee33 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 915 | erratum_set_ccsr 0x11f00 0x415e5000 |
| 916 | |
| 917 | /* Make temp mapping uncacheable again, if it was initially */ |
| 918 | bl 2f |
| 919 | 2: mflr r3 |
| 920 | tlbsx 0, r3 |
| 921 | mfspr r4, MAS2 |
| 922 | rlwimi r4, r15, 0, MAS2_I |
| 923 | rlwimi r4, r15, 0, MAS2_G |
| 924 | mtspr MAS2, r4 |
| 925 | isync |
| 926 | tlbwe |
| 927 | isync |
| 928 | msync |
| 929 | |
| 930 | /* Clear the cache */ |
| 931 | lis r3,(L1CSR1_ICFI|L1CSR1_ICLFR)@h |
| 932 | ori r3,r3,(L1CSR1_ICFI|L1CSR1_ICLFR)@l |
| 933 | sync |
| 934 | isync |
| 935 | mtspr SPRN_L1CSR1,r3 |
| 936 | isync |
| 937 | 2: sync |
| 938 | mfspr r4,SPRN_L1CSR1 |
| 939 | and. r4,r4,r3 |
| 940 | bne 2b |
| 941 | |
| 942 | lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h |
| 943 | ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l |
| 944 | sync |
| 945 | isync |
| 946 | mtspr SPRN_L1CSR1,r3 |
| 947 | isync |
| 948 | 2: sync |
| 949 | mfspr r4,SPRN_L1CSR1 |
| 950 | and. r4,r4,r3 |
| 951 | beq 2b |
| 952 | |
| 953 | /* Remove temporary mappings */ |
| 954 | lis r0, MAS0_TLBSEL(1)@h |
| 955 | rlwimi r0, r9, 16, MAS0_ESEL_MSK |
| 956 | li r3, 0 |
| 957 | mtspr MAS0, r0 |
| 958 | mtspr MAS1, r3 |
| 959 | isync |
| 960 | tlbwe |
| 961 | isync |
| 962 | msync |
| 963 | |
| 964 | li r3, 0 |
| 965 | stw r3, 0xc08(r7) /* LAWAR0 */ |
| 966 | lwz r3, 0xc08(r7) |
| 967 | isync |
| 968 | |
| 969 | lis r0, MAS0_TLBSEL(1)@h |
| 970 | rlwimi r0, r8, 16, MAS0_ESEL_MSK |
| 971 | li r3, 0 |
| 972 | mtspr MAS0, r0 |
| 973 | mtspr MAS1, r3 |
| 974 | isync |
| 975 | tlbwe |
| 976 | isync |
| 977 | msync |
| 978 | |
| 979 | b 9f |
| 980 | |
| 981 | /* r3 = addr, r4 = value, clobbers r5, r11, r12 */ |
| 982 | erratum_set_value: |
| 983 | /* Lock two cache lines into I-Cache */ |
| 984 | sync |
| 985 | mfspr r11, SPRN_L1CSR1 |
| 986 | rlwinm r11, r11, 0, ~L1CSR1_ICUL |
| 987 | sync |
| 988 | isync |
| 989 | mtspr SPRN_L1CSR1, r11 |
| 990 | isync |
| 991 | |
| 992 | mflr r12 |
| 993 | bl 5f |
| 994 | 5: mflr r5 |
| 995 | addi r5, r5, 2f - 5b |
| 996 | icbtls 0, 0, r5 |
| 997 | addi r5, r5, 64 |
| 998 | |
| 999 | sync |
| 1000 | mfspr r11, SPRN_L1CSR1 |
| 1001 | 3: andi. r11, r11, L1CSR1_ICUL |
| 1002 | bne 3b |
| 1003 | |
| 1004 | icbtls 0, 0, r5 |
| 1005 | addi r5, r5, 64 |
| 1006 | |
| 1007 | sync |
| 1008 | mfspr r11, SPRN_L1CSR1 |
| 1009 | 3: andi. r11, r11, L1CSR1_ICUL |
| 1010 | bne 3b |
| 1011 | |
| 1012 | b 2f |
| 1013 | .align 6 |
| 1014 | /* Inside a locked cacheline, wait a while, write, then wait a while */ |
| 1015 | 2: sync |
| 1016 | |
| 1017 | mfspr r5, SPRN_TBRL |
| 1018 | addis r11, r5, 0x10000@h /* wait 65536 timebase ticks */ |
| 1019 | 4: mfspr r5, SPRN_TBRL |
| 1020 | subf. r5, r5, r11 |
| 1021 | bgt 4b |
| 1022 | |
| 1023 | stw r4, 0(r3) |
| 1024 | |
| 1025 | mfspr r5, SPRN_TBRL |
| 1026 | addis r11, r5, 0x10000@h /* wait 65536 timebase ticks */ |
| 1027 | 4: mfspr r5, SPRN_TBRL |
| 1028 | subf. r5, r5, r11 |
| 1029 | bgt 4b |
| 1030 | |
| 1031 | sync |
| 1032 | |
| 1033 | /* |
| 1034 | * Fill out the rest of this cache line and the next with nops, |
| 1035 | * to ensure that nothing outside the locked area will be |
| 1036 | * fetched due to a branch. |
| 1037 | */ |
| 1038 | .rept 19 |
| 1039 | nop |
| 1040 | .endr |
| 1041 | |
| 1042 | sync |
| 1043 | mfspr r11, SPRN_L1CSR1 |
| 1044 | rlwinm r11, r11, 0, ~L1CSR1_ICUL |
| 1045 | sync |
| 1046 | isync |
| 1047 | mtspr SPRN_L1CSR1, r11 |
| 1048 | isync |
| 1049 | |
| 1050 | mtlr r12 |
| 1051 | blr |
| 1052 | |
| 1053 | 9: |
| 1054 | #endif |
| 1055 | |
Timur Tabi | 6ca88b0 | 2011-08-03 16:30:10 -0500 | [diff] [blame] | 1056 | create_init_ram_area: |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1057 | lis r6,FSL_BOOKE_MAS0(1, 15, 0)@h |
| 1058 | ori r6,r6,FSL_BOOKE_MAS0(1, 15, 0)@l |
| 1059 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 1060 | #ifdef NOR_BOOT |
Mingkai Hu | 7da5335 | 2009-09-11 14:19:10 +0800 | [diff] [blame] | 1061 | /* create a temp mapping in AS=1 to the 4M boot window */ |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 1062 | create_tlb1_entry 15, \ |
| 1063 | 1, BOOKE_PAGESZ_4M, \ |
| 1064 | CONFIG_SYS_MONITOR_BASE & 0xffc00000, MAS2_I|MAS2_G, \ |
| 1065 | 0xffc00000, MAS3_SX|MAS3_SW|MAS3_SR, \ |
| 1066 | 0, r6 |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1067 | |
Ruchika Gupta | 7065b7d | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 1068 | #elif !defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SECURE_BOOT) |
| 1069 | /* create a temp mapping in AS = 1 for Flash mapping |
| 1070 | * created by PBL for ISBC code |
Sumit Garg | aa36c84 | 2016-07-14 12:27:52 -0400 | [diff] [blame] | 1071 | */ |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 1072 | create_tlb1_entry 15, \ |
| 1073 | 1, BOOKE_PAGESZ_1M, \ |
Scott Wood | 7f0a22f | 2012-09-20 18:34:49 -0500 | [diff] [blame] | 1074 | CONFIG_SYS_MONITOR_BASE & 0xfff00000, MAS2_I|MAS2_G, \ |
| 1075 | CONFIG_SYS_PBI_FLASH_WINDOW & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \ |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 1076 | 0, r6 |
Aneesh Bansal | 467a40d | 2015-06-16 10:36:00 +0530 | [diff] [blame] | 1077 | |
Sumit Garg | aa36c84 | 2016-07-14 12:27:52 -0400 | [diff] [blame] | 1078 | /* |
| 1079 | * For Targets without CONFIG_SPL like P3, P5 |
| 1080 | * and for targets with CONFIG_SPL like T1, T2, T4, only for |
| 1081 | * u-boot-spl i.e. CONFIG_SPL_BUILD |
| 1082 | */ |
| 1083 | #elif defined(CONFIG_RAMBOOT_PBL) && defined(CONFIG_SECURE_BOOT) && \ |
| 1084 | (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)) |
Aneesh Bansal | 467a40d | 2015-06-16 10:36:00 +0530 | [diff] [blame] | 1085 | /* create a temp mapping in AS = 1 for mapping CONFIG_SYS_MONITOR_BASE |
| 1086 | * to L3 Address configured by PBL for ISBC code |
Sumit Garg | aa36c84 | 2016-07-14 12:27:52 -0400 | [diff] [blame] | 1087 | */ |
Aneesh Bansal | 467a40d | 2015-06-16 10:36:00 +0530 | [diff] [blame] | 1088 | create_tlb1_entry 15, \ |
| 1089 | 1, BOOKE_PAGESZ_1M, \ |
| 1090 | CONFIG_SYS_MONITOR_BASE & 0xfff00000, MAS2_I|MAS2_G, \ |
| 1091 | CONFIG_SYS_INIT_L3_ADDR & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \ |
| 1092 | 0, r6 |
| 1093 | |
Mingkai Hu | 7da5335 | 2009-09-11 14:19:10 +0800 | [diff] [blame] | 1094 | #else |
| 1095 | /* |
Haiying Wang | 0635b09 | 2010-11-10 15:37:13 -0500 | [diff] [blame] | 1096 | * create a temp mapping in AS=1 to the 1M CONFIG_SYS_MONITOR_BASE space, the main |
| 1097 | * image has been relocated to CONFIG_SYS_MONITOR_BASE on the second stage. |
Mingkai Hu | 7da5335 | 2009-09-11 14:19:10 +0800 | [diff] [blame] | 1098 | */ |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 1099 | create_tlb1_entry 15, \ |
| 1100 | 1, BOOKE_PAGESZ_1M, \ |
Scott Wood | 7f0a22f | 2012-09-20 18:34:49 -0500 | [diff] [blame] | 1101 | CONFIG_SYS_MONITOR_BASE & 0xfff00000, MAS2_I|MAS2_G, \ |
| 1102 | CONFIG_SYS_MONITOR_BASE & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \ |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 1103 | 0, r6 |
Mingkai Hu | 7da5335 | 2009-09-11 14:19:10 +0800 | [diff] [blame] | 1104 | #endif |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1105 | |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1106 | /* create a temp mapping in AS=1 to the stack */ |
york | a3f1852 | 2010-07-02 22:25:57 +0000 | [diff] [blame] | 1107 | #if defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW) && \ |
| 1108 | defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH) |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 1109 | create_tlb1_entry 14, \ |
| 1110 | 1, BOOKE_PAGESZ_16K, \ |
| 1111 | CONFIG_SYS_INIT_RAM_ADDR, 0, \ |
| 1112 | CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW, MAS3_SX|MAS3_SW|MAS3_SR, \ |
| 1113 | CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH, r6 |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1114 | |
York Sun | 69c7826 | 2012-10-08 07:44:07 +0000 | [diff] [blame] | 1115 | #else |
| 1116 | create_tlb1_entry 14, \ |
| 1117 | 1, BOOKE_PAGESZ_16K, \ |
| 1118 | CONFIG_SYS_INIT_RAM_ADDR, 0, \ |
| 1119 | CONFIG_SYS_INIT_RAM_ADDR, MAS3_SX|MAS3_SW|MAS3_SR, \ |
| 1120 | 0, r6 |
| 1121 | #endif |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1122 | |
Prabhakar Kushwaha | 5344f7a | 2012-04-29 23:56:30 +0000 | [diff] [blame] | 1123 | lis r6,MSR_IS|MSR_DS|MSR_DE@h |
| 1124 | ori r6,r6,MSR_IS|MSR_DS|MSR_DE@l |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1125 | lis r7,switch_as@h |
| 1126 | ori r7,r7,switch_as@l |
| 1127 | |
| 1128 | mtspr SPRN_SRR0,r7 |
| 1129 | mtspr SPRN_SRR1,r6 |
| 1130 | rfi |
| 1131 | |
| 1132 | switch_as: |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1133 | /* L1 DCache is used for initial RAM */ |
| 1134 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1135 | /* Allocate Initial RAM in data cache. |
| 1136 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1137 | lis r3,CONFIG_SYS_INIT_RAM_ADDR@h |
| 1138 | ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l |
Kumar Gala | b009f3e | 2008-01-08 01:22:21 -0600 | [diff] [blame] | 1139 | mfspr r2, L1CFG0 |
| 1140 | andi. r2, r2, 0x1ff |
| 1141 | /* cache size * 1024 / (2 * L1 line size) */ |
| 1142 | slwi r2, r2, (10 - 1 - L1_CACHE_SHIFT) |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1143 | mtctr r2 |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1144 | li r0,0 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1145 | 1: |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1146 | dcbz r0,r3 |
Ruchika Gupta | 668ec87 | 2017-03-02 14:12:41 +0530 | [diff] [blame] | 1147 | #ifdef CONFIG_E6500 /* Lock/unlock L2 cache long with L1 */ |
York Sun | 2becdc6 | 2015-08-17 13:31:52 -0700 | [diff] [blame] | 1148 | dcbtls 2, r0, r3 |
Ruchika Gupta | 668ec87 | 2017-03-02 14:12:41 +0530 | [diff] [blame] | 1149 | dcbtls 0, r0, r3 |
York Sun | 2becdc6 | 2015-08-17 13:31:52 -0700 | [diff] [blame] | 1150 | #else |
| 1151 | dcbtls 0, r0, r3 |
| 1152 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1153 | addi r3,r3,CONFIG_SYS_CACHELINE_SIZE |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1154 | bdnz 1b |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1155 | |
Kumar Gala | 3db0bef | 2007-08-07 18:07:27 -0500 | [diff] [blame] | 1156 | /* Jump out the last 4K page and continue to 'normal' start */ |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 1157 | #if defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL) |
| 1158 | /* We assume that we're already running at the address we're linked at */ |
Kumar Gala | 3db0bef | 2007-08-07 18:07:27 -0500 | [diff] [blame] | 1159 | b _start_cont |
| 1160 | #else |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1161 | /* Calculate absolute address in FLASH and jump there */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1162 | /*--------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1163 | lis r3,CONFIG_SYS_MONITOR_BASE@h |
| 1164 | ori r3,r3,CONFIG_SYS_MONITOR_BASE@l |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1165 | addi r3,r3,_start_cont - _start |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1166 | mtlr r3 |
urwithsughosh@gmail.com | 1e701e7 | 2007-09-24 13:36:01 -0400 | [diff] [blame] | 1167 | blr |
Kumar Gala | 3db0bef | 2007-08-07 18:07:27 -0500 | [diff] [blame] | 1168 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1169 | |
Kumar Gala | 3db0bef | 2007-08-07 18:07:27 -0500 | [diff] [blame] | 1170 | .text |
| 1171 | .globl _start |
| 1172 | _start: |
| 1173 | .long 0x27051956 /* U-BOOT Magic Number */ |
| 1174 | .globl version_string |
| 1175 | version_string: |
Andreas Bießmann | 09c2e90 | 2011-07-18 20:24:04 +0200 | [diff] [blame] | 1176 | .ascii U_BOOT_VERSION_STRING, "\0" |
Kumar Gala | 3db0bef | 2007-08-07 18:07:27 -0500 | [diff] [blame] | 1177 | |
| 1178 | .align 4 |
| 1179 | .globl _start_cont |
| 1180 | _start_cont: |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1181 | /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/ |
Joakim Tjernlund | 89f4289 | 2012-07-23 10:58:02 +0000 | [diff] [blame] | 1182 | lis r3,(CONFIG_SYS_INIT_RAM_ADDR)@h |
| 1183 | ori r3,r3,((CONFIG_SYS_INIT_SP_OFFSET-16)&~0xf)@l /* Align to 16 */ |
mario.six@gdsys.cc | 5068946 | 2016-04-05 15:05:37 +0200 | [diff] [blame] | 1184 | |
Andy Yan | 2b71d09 | 2017-07-24 17:47:27 +0800 | [diff] [blame] | 1185 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
| 1186 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) + GENERATED_GBL_DATA_SIZE > CONFIG_SYS_INIT_RAM_SIZE |
| 1187 | #error "SYS_MALLOC_F_LEN too large to fit into initial RAM." |
mario.six@gdsys.cc | 5068946 | 2016-04-05 15:05:37 +0200 | [diff] [blame] | 1188 | #endif |
| 1189 | |
| 1190 | /* Leave 16+ byte for back chain termination and NULL return address */ |
Andy Yan | 2b71d09 | 2017-07-24 17:47:27 +0800 | [diff] [blame] | 1191 | subi r3,r3,((CONFIG_VAL(SYS_MALLOC_F_LEN)+16+15)&~0xf) |
mario.six@gdsys.cc | 5068946 | 2016-04-05 15:05:37 +0200 | [diff] [blame] | 1192 | #endif |
| 1193 | |
| 1194 | /* End of RAM */ |
| 1195 | lis r4,(CONFIG_SYS_INIT_RAM_ADDR)@h |
| 1196 | ori r4,r4,(CONFIG_SYS_INIT_RAM_SIZE)@l |
| 1197 | |
| 1198 | li r0,0 |
| 1199 | |
| 1200 | 1: subi r4,r4,4 |
| 1201 | stw r0,0(r4) |
| 1202 | cmplw r4,r3 |
| 1203 | bne 1b |
| 1204 | |
Andy Yan | 2b71d09 | 2017-07-24 17:47:27 +0800 | [diff] [blame] | 1205 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
mario.six@gdsys.cc | 5068946 | 2016-04-05 15:05:37 +0200 | [diff] [blame] | 1206 | lis r4,(CONFIG_SYS_INIT_RAM_ADDR)@h |
| 1207 | ori r4,r4,(CONFIG_SYS_GBL_DATA_OFFSET)@l |
| 1208 | |
| 1209 | addi r3,r3,16 /* Pre-relocation malloc area */ |
| 1210 | stw r3,GD_MALLOC_BASE(r4) |
| 1211 | subi r3,r3,16 |
| 1212 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1213 | li r0,0 |
Joakim Tjernlund | 89f4289 | 2012-07-23 10:58:02 +0000 | [diff] [blame] | 1214 | stw r0,0(r3) /* Terminate Back Chain */ |
| 1215 | stw r0,+4(r3) /* NULL return address. */ |
| 1216 | mr r1,r3 /* Transfer to SP(r1) */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1217 | |
| 1218 | GET_GOT |
Joakim Tjernlund | 45e81f9 | 2018-12-06 17:20:53 +0100 | [diff] [blame] | 1219 | /* Needed for -msingle-pic-base */ |
| 1220 | bl _GLOBAL_OFFSET_TABLE_@local-4 |
| 1221 | mflr r30 |
Alexander Graf | fa08d39 | 2014-04-11 17:09:45 +0200 | [diff] [blame] | 1222 | |
| 1223 | /* Pass our potential ePAPR device tree pointer to cpu_init_early_f */ |
| 1224 | mr r3, r24 |
| 1225 | |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 1226 | bl cpu_init_early_f |
| 1227 | |
| 1228 | /* switch back to AS = 0 */ |
| 1229 | lis r3,(MSR_CE|MSR_ME|MSR_DE)@h |
| 1230 | ori r3,r3,(MSR_CE|MSR_ME|MSR_DE)@l |
| 1231 | mtmsr r3 |
| 1232 | isync |
| 1233 | |
York Sun | 701e640 | 2014-04-30 14:43:47 -0700 | [diff] [blame] | 1234 | bl cpu_init_f /* return boot_flag for calling board_init_f */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1235 | bl board_init_f |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 1236 | isync |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1237 | |
Peter Tyser | 52ebd9c | 2010-09-14 19:13:53 -0500 | [diff] [blame] | 1238 | /* NOTREACHED - board_init_f() does not return */ |
| 1239 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 1240 | #ifndef MINIMAL_SPL |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1241 | .globl _start_of_vectors |
| 1242 | _start_of_vectors: |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1243 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1244 | /* Critical input. */ |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1245 | CRIT_EXCEPTION(0x0100, CriticalInput, CritcalInputException) |
| 1246 | |
| 1247 | /* Machine check */ |
| 1248 | MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1249 | |
| 1250 | /* Data Storage exception. */ |
| 1251 | STD_EXCEPTION(0x0300, DataStorage, UnknownException) |
| 1252 | |
| 1253 | /* Instruction Storage exception. */ |
| 1254 | STD_EXCEPTION(0x0400, InstStorage, UnknownException) |
| 1255 | |
| 1256 | /* External Interrupt exception. */ |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1257 | STD_EXCEPTION(0x0500, ExtInterrupt, ExtIntException) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1258 | |
| 1259 | /* Alignment exception. */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1260 | Alignment: |
Rafal Jaworowski | 02032e8 | 2007-06-22 14:58:04 +0200 | [diff] [blame] | 1261 | EXCEPTION_PROLOG(SRR0, SRR1) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1262 | mfspr r4,DAR |
| 1263 | stw r4,_DAR(r21) |
| 1264 | mfspr r5,DSISR |
| 1265 | stw r5,_DSISR(r21) |
| 1266 | addi r3,r1,STACK_FRAME_OVERHEAD |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1267 | EXC_XFER_TEMPLATE(0x600, Alignment, AlignmentException, |
| 1268 | MSR_KERNEL, COPY_EE) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1269 | |
| 1270 | /* Program check exception */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1271 | ProgramCheck: |
Rafal Jaworowski | 02032e8 | 2007-06-22 14:58:04 +0200 | [diff] [blame] | 1272 | EXCEPTION_PROLOG(SRR0, SRR1) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1273 | addi r3,r1,STACK_FRAME_OVERHEAD |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1274 | EXC_XFER_TEMPLATE(0x700, ProgramCheck, ProgramCheckException, |
Joakim Tjernlund | fc4e188 | 2010-01-19 14:41:55 +0100 | [diff] [blame] | 1275 | MSR_KERNEL, COPY_EE) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1276 | |
| 1277 | /* No FPU on MPC85xx. This exception is not supposed to happen. |
| 1278 | */ |
| 1279 | STD_EXCEPTION(0x0800, FPUnavailable, UnknownException) |
Scott Wood | d87a2ad | 2015-04-07 20:20:01 -0500 | [diff] [blame] | 1280 | STD_EXCEPTION(0x0900, SystemCall, UnknownException) |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1281 | STD_EXCEPTION(0x0a00, Decrementer, timer_interrupt) |
| 1282 | STD_EXCEPTION(0x0b00, IntervalTimer, UnknownException) |
| 1283 | STD_EXCEPTION(0x0c00, WatchdogTimer, UnknownException) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1284 | |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1285 | STD_EXCEPTION(0x0d00, DataTLBError, UnknownException) |
| 1286 | STD_EXCEPTION(0x0e00, InstructionTLBError, UnknownException) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1287 | |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1288 | CRIT_EXCEPTION(0x0f00, DebugBreakpoint, DebugException ) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1289 | |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1290 | .globl _end_of_vectors |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1291 | _end_of_vectors: |
| 1292 | |
| 1293 | |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1294 | . = . + (0x100 - ( . & 0xff )) /* align for debug */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1295 | |
| 1296 | /* |
| 1297 | * This code finishes saving the registers to the exception frame |
| 1298 | * and jumps to the appropriate handler for the exception. |
| 1299 | * Register r21 is pointer into trap frame, r1 has new stack pointer. |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1300 | * r23 is the address of the handler. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1301 | */ |
| 1302 | .globl transfer_to_handler |
| 1303 | transfer_to_handler: |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1304 | SAVE_GPR(7, r21) |
| 1305 | SAVE_4GPRS(8, r21) |
| 1306 | SAVE_8GPRS(12, r21) |
| 1307 | SAVE_8GPRS(24, r21) |
| 1308 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1309 | li r22,0 |
| 1310 | stw r22,RESULT(r21) |
| 1311 | mtspr SPRG2,r22 /* r1 is now kernel sp */ |
| 1312 | |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1313 | mtctr r23 /* virtual address of handler */ |
| 1314 | mtmsr r20 |
| 1315 | bctrl |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1316 | |
| 1317 | int_return: |
| 1318 | mfmsr r28 /* Disable interrupts */ |
| 1319 | li r4,0 |
| 1320 | ori r4,r4,MSR_EE |
| 1321 | andc r28,r28,r4 |
| 1322 | SYNC /* Some chip revs need this... */ |
| 1323 | mtmsr r28 |
| 1324 | SYNC |
| 1325 | lwz r2,_CTR(r1) |
| 1326 | lwz r0,_LINK(r1) |
| 1327 | mtctr r2 |
| 1328 | mtlr r0 |
| 1329 | lwz r2,_XER(r1) |
| 1330 | lwz r0,_CCR(r1) |
| 1331 | mtspr XER,r2 |
| 1332 | mtcrf 0xFF,r0 |
| 1333 | REST_10GPRS(3, r1) |
| 1334 | REST_10GPRS(13, r1) |
| 1335 | REST_8GPRS(23, r1) |
| 1336 | REST_GPR(31, r1) |
| 1337 | lwz r2,_NIP(r1) /* Restore environment */ |
| 1338 | lwz r0,_MSR(r1) |
| 1339 | mtspr SRR0,r2 |
| 1340 | mtspr SRR1,r0 |
| 1341 | lwz r0,GPR0(r1) |
| 1342 | lwz r2,GPR2(r1) |
| 1343 | lwz r1,GPR1(r1) |
| 1344 | SYNC |
| 1345 | rfi |
| 1346 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1347 | /* Cache functions. |
| 1348 | */ |
Matthew McClintock | 0a9fe8e | 2011-05-23 08:38:53 +0000 | [diff] [blame] | 1349 | .globl flush_icache |
| 1350 | flush_icache: |
Kumar Gala | 54e091d | 2008-09-22 14:11:10 -0500 | [diff] [blame] | 1351 | .globl invalidate_icache |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1352 | invalidate_icache: |
| 1353 | mfspr r0,L1CSR1 |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1354 | ori r0,r0,L1CSR1_ICFI |
| 1355 | msync |
| 1356 | isync |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1357 | mtspr L1CSR1,r0 |
| 1358 | isync |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1359 | blr /* entire I cache */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1360 | |
Kumar Gala | 54e091d | 2008-09-22 14:11:10 -0500 | [diff] [blame] | 1361 | .globl invalidate_dcache |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1362 | invalidate_dcache: |
| 1363 | mfspr r0,L1CSR0 |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1364 | ori r0,r0,L1CSR0_DCFI |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1365 | msync |
| 1366 | isync |
| 1367 | mtspr L1CSR0,r0 |
| 1368 | isync |
| 1369 | blr |
| 1370 | |
| 1371 | .globl icache_enable |
| 1372 | icache_enable: |
| 1373 | mflr r8 |
| 1374 | bl invalidate_icache |
| 1375 | mtlr r8 |
| 1376 | isync |
| 1377 | mfspr r4,L1CSR1 |
Mark Marshall | 2ec7096 | 2017-01-24 15:40:23 +0100 | [diff] [blame] | 1378 | ori r4,r4,(L1CSR1_CPE | L1CSR1_ICE)@l |
| 1379 | oris r4,r4,(L1CSR1_CPE | L1CSR1_ICE)@h |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1380 | mtspr L1CSR1,r4 |
| 1381 | isync |
| 1382 | blr |
| 1383 | |
| 1384 | .globl icache_disable |
| 1385 | icache_disable: |
| 1386 | mfspr r0,L1CSR1 |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1387 | lis r3,0 |
| 1388 | ori r3,r3,L1CSR1_ICE |
| 1389 | andc r0,r0,r3 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1390 | mtspr L1CSR1,r0 |
| 1391 | isync |
| 1392 | blr |
| 1393 | |
| 1394 | .globl icache_status |
| 1395 | icache_status: |
| 1396 | mfspr r3,L1CSR1 |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1397 | andi. r3,r3,L1CSR1_ICE |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1398 | blr |
| 1399 | |
| 1400 | .globl dcache_enable |
| 1401 | dcache_enable: |
| 1402 | mflr r8 |
| 1403 | bl invalidate_dcache |
| 1404 | mtlr r8 |
| 1405 | isync |
| 1406 | mfspr r0,L1CSR0 |
Mark Marshall | 2ec7096 | 2017-01-24 15:40:23 +0100 | [diff] [blame] | 1407 | ori r0,r0,(L1CSR0_CPE | L1CSR0_DCE)@l |
| 1408 | oris r0,r0,(L1CSR0_CPE | L1CSR0_DCE)@h |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1409 | msync |
| 1410 | isync |
| 1411 | mtspr L1CSR0,r0 |
| 1412 | isync |
| 1413 | blr |
| 1414 | |
| 1415 | .globl dcache_disable |
| 1416 | dcache_disable: |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1417 | mfspr r3,L1CSR0 |
| 1418 | lis r4,0 |
| 1419 | ori r4,r4,L1CSR0_DCE |
| 1420 | andc r3,r3,r4 |
Kumar Gala | 45a6813 | 2011-01-05 10:33:46 -0600 | [diff] [blame] | 1421 | mtspr L1CSR0,r3 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1422 | isync |
| 1423 | blr |
| 1424 | |
| 1425 | .globl dcache_status |
| 1426 | dcache_status: |
| 1427 | mfspr r3,L1CSR0 |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1428 | andi. r3,r3,L1CSR0_DCE |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1429 | blr |
| 1430 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1431 | /*------------------------------------------------------------------------------- */ |
| 1432 | /* Function: in8 */ |
| 1433 | /* Description: Input 8 bits */ |
| 1434 | /*------------------------------------------------------------------------------- */ |
| 1435 | .globl in8 |
| 1436 | in8: |
| 1437 | lbz r3,0x0000(r3) |
| 1438 | blr |
| 1439 | |
| 1440 | /*------------------------------------------------------------------------------- */ |
| 1441 | /* Function: out8 */ |
| 1442 | /* Description: Output 8 bits */ |
| 1443 | /*------------------------------------------------------------------------------- */ |
| 1444 | .globl out8 |
| 1445 | out8: |
| 1446 | stb r4,0x0000(r3) |
Ed Swarthout | 1487adb | 2007-09-26 16:35:54 -0500 | [diff] [blame] | 1447 | sync |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1448 | blr |
| 1449 | |
| 1450 | /*------------------------------------------------------------------------------- */ |
| 1451 | /* Function: out16 */ |
| 1452 | /* Description: Output 16 bits */ |
| 1453 | /*------------------------------------------------------------------------------- */ |
| 1454 | .globl out16 |
| 1455 | out16: |
| 1456 | sth r4,0x0000(r3) |
Ed Swarthout | 1487adb | 2007-09-26 16:35:54 -0500 | [diff] [blame] | 1457 | sync |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1458 | blr |
| 1459 | |
| 1460 | /*------------------------------------------------------------------------------- */ |
| 1461 | /* Function: out16r */ |
| 1462 | /* Description: Byte reverse and output 16 bits */ |
| 1463 | /*------------------------------------------------------------------------------- */ |
| 1464 | .globl out16r |
| 1465 | out16r: |
| 1466 | sthbrx r4,r0,r3 |
Ed Swarthout | 1487adb | 2007-09-26 16:35:54 -0500 | [diff] [blame] | 1467 | sync |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1468 | blr |
| 1469 | |
| 1470 | /*------------------------------------------------------------------------------- */ |
| 1471 | /* Function: out32 */ |
| 1472 | /* Description: Output 32 bits */ |
| 1473 | /*------------------------------------------------------------------------------- */ |
| 1474 | .globl out32 |
| 1475 | out32: |
| 1476 | stw r4,0x0000(r3) |
Ed Swarthout | 1487adb | 2007-09-26 16:35:54 -0500 | [diff] [blame] | 1477 | sync |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1478 | blr |
| 1479 | |
| 1480 | /*------------------------------------------------------------------------------- */ |
| 1481 | /* Function: out32r */ |
| 1482 | /* Description: Byte reverse and output 32 bits */ |
| 1483 | /*------------------------------------------------------------------------------- */ |
| 1484 | .globl out32r |
| 1485 | out32r: |
| 1486 | stwbrx r4,r0,r3 |
Ed Swarthout | 1487adb | 2007-09-26 16:35:54 -0500 | [diff] [blame] | 1487 | sync |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1488 | blr |
| 1489 | |
| 1490 | /*------------------------------------------------------------------------------- */ |
| 1491 | /* Function: in16 */ |
| 1492 | /* Description: Input 16 bits */ |
| 1493 | /*------------------------------------------------------------------------------- */ |
| 1494 | .globl in16 |
| 1495 | in16: |
| 1496 | lhz r3,0x0000(r3) |
| 1497 | blr |
| 1498 | |
| 1499 | /*------------------------------------------------------------------------------- */ |
| 1500 | /* Function: in16r */ |
| 1501 | /* Description: Input 16 bits and byte reverse */ |
| 1502 | /*------------------------------------------------------------------------------- */ |
| 1503 | .globl in16r |
| 1504 | in16r: |
| 1505 | lhbrx r3,r0,r3 |
| 1506 | blr |
| 1507 | |
| 1508 | /*------------------------------------------------------------------------------- */ |
| 1509 | /* Function: in32 */ |
| 1510 | /* Description: Input 32 bits */ |
| 1511 | /*------------------------------------------------------------------------------- */ |
| 1512 | .globl in32 |
| 1513 | in32: |
| 1514 | lwz 3,0x0000(3) |
| 1515 | blr |
| 1516 | |
| 1517 | /*------------------------------------------------------------------------------- */ |
| 1518 | /* Function: in32r */ |
| 1519 | /* Description: Input 32 bits and byte reverse */ |
| 1520 | /*------------------------------------------------------------------------------- */ |
| 1521 | .globl in32r |
| 1522 | in32r: |
| 1523 | lwbrx r3,r0,r3 |
| 1524 | blr |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 1525 | #endif /* !MINIMAL_SPL */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1526 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1527 | /*------------------------------------------------------------------------------*/ |
| 1528 | |
| 1529 | /* |
Kumar Gala | d30f904 | 2009-09-11 11:27:00 -0500 | [diff] [blame] | 1530 | * void write_tlb(mas0, mas1, mas2, mas3, mas7) |
| 1531 | */ |
| 1532 | .globl write_tlb |
| 1533 | write_tlb: |
| 1534 | mtspr MAS0,r3 |
| 1535 | mtspr MAS1,r4 |
| 1536 | mtspr MAS2,r5 |
| 1537 | mtspr MAS3,r6 |
| 1538 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 1539 | mtspr MAS7,r7 |
| 1540 | #endif |
| 1541 | li r3,0 |
| 1542 | #ifdef CONFIG_SYS_BOOK3E_HV |
| 1543 | mtspr MAS8,r3 |
| 1544 | #endif |
| 1545 | isync |
| 1546 | tlbwe |
| 1547 | msync |
| 1548 | isync |
| 1549 | blr |
| 1550 | |
| 1551 | /* |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1552 | * void relocate_code (addr_sp, gd, addr_moni) |
| 1553 | * |
| 1554 | * This "function" does not return, instead it continues in RAM |
| 1555 | * after relocating the monitor code. |
| 1556 | * |
| 1557 | * r3 = dest |
| 1558 | * r4 = src |
| 1559 | * r5 = length in bytes |
| 1560 | * r6 = cachelinesize |
| 1561 | */ |
| 1562 | .globl relocate_code |
| 1563 | relocate_code: |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1564 | mr r1,r3 /* Set new stack pointer */ |
| 1565 | mr r9,r4 /* Save copy of Init Data pointer */ |
| 1566 | mr r10,r5 /* Save copy of Destination Address */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1567 | |
Joakim Tjernlund | 0f8aa15 | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 1568 | GET_GOT |
Prabhakar Kushwaha | 651fcf6 | 2014-04-08 19:12:31 +0530 | [diff] [blame] | 1569 | #ifndef CONFIG_SPL_SKIP_RELOCATE |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1570 | mr r3,r5 /* Destination Address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1571 | lis r4,CONFIG_SYS_MONITOR_BASE@h /* Source Address */ |
| 1572 | ori r4,r4,CONFIG_SYS_MONITOR_BASE@l |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1573 | lwz r5,GOT(__init_end) |
| 1574 | sub r5,r5,r4 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1575 | li r6,CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1576 | |
| 1577 | /* |
| 1578 | * Fix GOT pointer: |
| 1579 | * |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1580 | * New GOT-PTR = (old GOT-PTR - CONFIG_SYS_MONITOR_BASE) + Destination Address |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1581 | * |
| 1582 | * Offset: |
| 1583 | */ |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1584 | sub r15,r10,r4 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1585 | |
| 1586 | /* First our own GOT */ |
Joakim Tjernlund | 0f8aa15 | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 1587 | add r12,r12,r15 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1588 | /* the the one used by the C code */ |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1589 | add r30,r30,r15 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1590 | |
| 1591 | /* |
| 1592 | * Now relocate code |
| 1593 | */ |
| 1594 | |
| 1595 | cmplw cr1,r3,r4 |
| 1596 | addi r0,r5,3 |
| 1597 | srwi. r0,r0,2 |
| 1598 | beq cr1,4f /* In place copy is not necessary */ |
| 1599 | beq 7f /* Protect against 0 count */ |
| 1600 | mtctr r0 |
| 1601 | bge cr1,2f |
| 1602 | |
| 1603 | la r8,-4(r4) |
| 1604 | la r7,-4(r3) |
| 1605 | 1: lwzu r0,4(r8) |
| 1606 | stwu r0,4(r7) |
| 1607 | bdnz 1b |
| 1608 | b 4f |
| 1609 | |
| 1610 | 2: slwi r0,r0,2 |
| 1611 | add r8,r4,r0 |
| 1612 | add r7,r3,r0 |
| 1613 | 3: lwzu r0,-4(r8) |
| 1614 | stwu r0,-4(r7) |
| 1615 | bdnz 3b |
| 1616 | |
| 1617 | /* |
| 1618 | * Now flush the cache: note that we must start from a cache aligned |
| 1619 | * address. Otherwise we might miss one cache line. |
| 1620 | */ |
| 1621 | 4: cmpwi r6,0 |
| 1622 | add r5,r3,r5 |
| 1623 | beq 7f /* Always flush prefetch queue in any case */ |
| 1624 | subi r0,r6,1 |
| 1625 | andc r3,r3,r0 |
| 1626 | mr r4,r3 |
| 1627 | 5: dcbst 0,r4 |
| 1628 | add r4,r4,r6 |
| 1629 | cmplw r4,r5 |
| 1630 | blt 5b |
| 1631 | sync /* Wait for all dcbst to complete on bus */ |
| 1632 | mr r4,r3 |
| 1633 | 6: icbi 0,r4 |
| 1634 | add r4,r4,r6 |
| 1635 | cmplw r4,r5 |
| 1636 | blt 6b |
| 1637 | 7: sync /* Wait for all icbi to complete on bus */ |
| 1638 | isync |
| 1639 | |
| 1640 | /* |
| 1641 | * We are done. Do not return, instead branch to second part of board |
| 1642 | * initialization, now running from RAM. |
| 1643 | */ |
| 1644 | |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1645 | addi r0,r10,in_ram - _start |
Prabhakar Kushwaha | 689f00f | 2012-04-29 23:56:43 +0000 | [diff] [blame] | 1646 | |
| 1647 | /* |
| 1648 | * As IVPR is going to point RAM address, |
| 1649 | * Make sure IVOR15 has valid opcode to support debugger |
| 1650 | */ |
| 1651 | mtspr IVOR15,r0 |
| 1652 | |
| 1653 | /* |
| 1654 | * Re-point the IVPR at RAM |
| 1655 | */ |
| 1656 | mtspr IVPR,r10 |
| 1657 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1658 | mtlr r0 |
| 1659 | blr /* NEVER RETURNS! */ |
Prabhakar Kushwaha | 651fcf6 | 2014-04-08 19:12:31 +0530 | [diff] [blame] | 1660 | #endif |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1661 | .globl in_ram |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1662 | in_ram: |
| 1663 | |
| 1664 | /* |
Joakim Tjernlund | 0f8aa15 | 2010-01-19 14:41:56 +0100 | [diff] [blame] | 1665 | * Relocation Function, r12 point to got2+0x8000 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1666 | * |
| 1667 | * Adjust got2 pointers, no need to check for 0, this code |
| 1668 | * already puts a few entries in the table. |
| 1669 | */ |
| 1670 | li r0,__got2_entries@sectoff@l |
| 1671 | la r3,GOT(_GOT2_TABLE_) |
| 1672 | lwz r11,GOT(_GOT2_TABLE_) |
| 1673 | mtctr r0 |
| 1674 | sub r11,r3,r11 |
| 1675 | addi r3,r3,-4 |
| 1676 | 1: lwzu r0,4(r3) |
Joakim Tjernlund | afc3ba0 | 2009-10-08 02:03:51 +0200 | [diff] [blame] | 1677 | cmpwi r0,0 |
| 1678 | beq- 2f |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1679 | add r0,r0,r11 |
| 1680 | stw r0,0(r3) |
Joakim Tjernlund | afc3ba0 | 2009-10-08 02:03:51 +0200 | [diff] [blame] | 1681 | 2: bdnz 1b |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1682 | |
| 1683 | /* |
| 1684 | * Now adjust the fixups and the pointers to the fixups |
| 1685 | * in case we need to move ourselves again. |
| 1686 | */ |
Joakim Tjernlund | afc3ba0 | 2009-10-08 02:03:51 +0200 | [diff] [blame] | 1687 | li r0,__fixup_entries@sectoff@l |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1688 | lwz r3,GOT(_FIXUP_TABLE_) |
| 1689 | cmpwi r0,0 |
| 1690 | mtctr r0 |
| 1691 | addi r3,r3,-4 |
| 1692 | beq 4f |
| 1693 | 3: lwzu r4,4(r3) |
| 1694 | lwzux r0,r4,r11 |
Joakim Tjernlund | d1e0b10 | 2010-10-14 11:51:44 +0200 | [diff] [blame] | 1695 | cmpwi r0,0 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1696 | add r0,r0,r11 |
Joakim Tjernlund | 34bbf61 | 2010-11-04 19:02:00 +0100 | [diff] [blame] | 1697 | stw r4,0(r3) |
Joakim Tjernlund | d1e0b10 | 2010-10-14 11:51:44 +0200 | [diff] [blame] | 1698 | beq- 5f |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1699 | stw r0,0(r4) |
Joakim Tjernlund | d1e0b10 | 2010-10-14 11:51:44 +0200 | [diff] [blame] | 1700 | 5: bdnz 3b |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1701 | 4: |
| 1702 | clear_bss: |
| 1703 | /* |
| 1704 | * Now clear BSS segment |
| 1705 | */ |
| 1706 | lwz r3,GOT(__bss_start) |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 1707 | lwz r4,GOT(__bss_end) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1708 | |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1709 | cmplw 0,r3,r4 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1710 | beq 6f |
| 1711 | |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1712 | li r0,0 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1713 | 5: |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1714 | stw r0,0(r3) |
| 1715 | addi r3,r3,4 |
| 1716 | cmplw 0,r3,r4 |
Ying Zhang | 67ad0d5 | 2013-06-07 17:25:16 +0800 | [diff] [blame] | 1717 | blt 5b |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1718 | 6: |
| 1719 | |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1720 | mr r3,r9 /* Init Data pointer */ |
| 1721 | mr r4,r10 /* Destination Address */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1722 | bl board_init_r |
| 1723 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 1724 | #ifndef MINIMAL_SPL |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1725 | /* |
| 1726 | * Copy exception vector code to low memory |
| 1727 | * |
| 1728 | * r3: dest_addr |
| 1729 | * r7: source address, r8: end address, r9: target address |
| 1730 | */ |
wdenk | 343117b | 2005-05-13 22:49:36 +0000 | [diff] [blame] | 1731 | .globl trap_init |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1732 | trap_init: |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1733 | mflr r11 |
| 1734 | bl _GLOBAL_OFFSET_TABLE_-4 |
| 1735 | mflr r12 |
| 1736 | |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1737 | /* Update IVORs as per relocation */ |
| 1738 | mtspr IVPR,r3 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1739 | |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1740 | lwz r4,CriticalInput@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1741 | mtspr IVOR0,r4 /* 0: Critical input */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1742 | lwz r4,MachineCheck@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1743 | mtspr IVOR1,r4 /* 1: Machine check */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1744 | lwz r4,DataStorage@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1745 | mtspr IVOR2,r4 /* 2: Data storage */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1746 | lwz r4,InstStorage@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1747 | mtspr IVOR3,r4 /* 3: Instruction storage */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1748 | lwz r4,ExtInterrupt@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1749 | mtspr IVOR4,r4 /* 4: External interrupt */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1750 | lwz r4,Alignment@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1751 | mtspr IVOR5,r4 /* 5: Alignment */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1752 | lwz r4,ProgramCheck@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1753 | mtspr IVOR6,r4 /* 6: Program check */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1754 | lwz r4,FPUnavailable@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1755 | mtspr IVOR7,r4 /* 7: floating point unavailable */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1756 | lwz r4,SystemCall@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1757 | mtspr IVOR8,r4 /* 8: System call */ |
Prabhakar Kushwaha | 64829ba | 2012-02-14 22:49:49 +0000 | [diff] [blame] | 1758 | /* 9: Auxiliary processor unavailable(unsupported) */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1759 | lwz r4,Decrementer@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1760 | mtspr IVOR10,r4 /* 10: Decrementer */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1761 | lwz r4,IntervalTimer@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1762 | mtspr IVOR11,r4 /* 11: Interval timer */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1763 | lwz r4,WatchdogTimer@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1764 | mtspr IVOR12,r4 /* 12: Watchdog timer */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1765 | lwz r4,DataTLBError@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1766 | mtspr IVOR13,r4 /* 13: Data TLB error */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1767 | lwz r4,InstructionTLBError@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1768 | mtspr IVOR14,r4 /* 14: Instruction TLB error */ |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1769 | lwz r4,DebugBreakpoint@got(r12) |
Scott Wood | 96d2bb9 | 2015-04-07 20:20:00 -0500 | [diff] [blame] | 1770 | mtspr IVOR15,r4 /* 15: Debug */ |
Prabhakar Kushwaha | 64829ba | 2012-02-14 22:49:49 +0000 | [diff] [blame] | 1771 | |
Scott Wood | e1bfd1c | 2015-04-23 20:01:56 -0500 | [diff] [blame] | 1772 | mtlr r11 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1773 | blr |
| 1774 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1775 | .globl unlock_ram_in_cache |
| 1776 | unlock_ram_in_cache: |
| 1777 | /* invalidate the INIT_RAM section */ |
Kumar Gala | a38a5b6 | 2008-10-23 01:47:37 -0500 | [diff] [blame] | 1778 | lis r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@h |
| 1779 | ori r3,r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@l |
Kumar Gala | b009f3e | 2008-01-08 01:22:21 -0600 | [diff] [blame] | 1780 | mfspr r4,L1CFG0 |
| 1781 | andi. r4,r4,0x1ff |
| 1782 | slwi r4,r4,(10 - 1 - L1_CACHE_SHIFT) |
Andy Fleming | 61a21e9 | 2007-08-14 01:34:21 -0500 | [diff] [blame] | 1783 | mtctr r4 |
Kumar Gala | 2b22fa4 | 2008-02-27 16:30:47 -0600 | [diff] [blame] | 1784 | 1: dcbi r0,r3 |
Ruchika Gupta | 668ec87 | 2017-03-02 14:12:41 +0530 | [diff] [blame] | 1785 | #ifdef CONFIG_E6500 /* lock/unlock L2 cache long with L1 */ |
York Sun | 2becdc6 | 2015-08-17 13:31:52 -0700 | [diff] [blame] | 1786 | dcblc 2, r0, r3 |
Ruchika Gupta | 668ec87 | 2017-03-02 14:12:41 +0530 | [diff] [blame] | 1787 | dcblc 0, r0, r3 |
York Sun | 2becdc6 | 2015-08-17 13:31:52 -0700 | [diff] [blame] | 1788 | #else |
York Sun | a71d45d | 2013-04-05 13:07:13 +0000 | [diff] [blame] | 1789 | dcblc r0,r3 |
York Sun | 2becdc6 | 2015-08-17 13:31:52 -0700 | [diff] [blame] | 1790 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1791 | addi r3,r3,CONFIG_SYS_CACHELINE_SIZE |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1792 | bdnz 1b |
Kumar Gala | 2b22fa4 | 2008-02-27 16:30:47 -0600 | [diff] [blame] | 1793 | sync |
Andy Fleming | 21fae8b | 2008-02-27 14:29:58 -0600 | [diff] [blame] | 1794 | |
| 1795 | /* Invalidate the TLB entries for the cache */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1796 | lis r3,CONFIG_SYS_INIT_RAM_ADDR@h |
| 1797 | ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l |
Andy Fleming | 21fae8b | 2008-02-27 14:29:58 -0600 | [diff] [blame] | 1798 | tlbivax 0,r3 |
| 1799 | addi r3,r3,0x1000 |
| 1800 | tlbivax 0,r3 |
| 1801 | addi r3,r3,0x1000 |
| 1802 | tlbivax 0,r3 |
| 1803 | addi r3,r3,0x1000 |
| 1804 | tlbivax 0,r3 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1805 | isync |
| 1806 | blr |
Kumar Gala | 54e091d | 2008-09-22 14:11:10 -0500 | [diff] [blame] | 1807 | |
| 1808 | .globl flush_dcache |
| 1809 | flush_dcache: |
| 1810 | mfspr r3,SPRN_L1CFG0 |
| 1811 | |
| 1812 | rlwinm r5,r3,9,3 /* Extract cache block size */ |
| 1813 | twlgti r5,1 /* Only 32 and 64 byte cache blocks |
| 1814 | * are currently defined. |
| 1815 | */ |
| 1816 | li r4,32 |
| 1817 | subfic r6,r5,2 /* r6 = log2(1KiB / cache block size) - |
| 1818 | * log2(number of ways) |
| 1819 | */ |
| 1820 | slw r5,r4,r5 /* r5 = cache block size */ |
| 1821 | |
| 1822 | rlwinm r7,r3,0,0xff /* Extract number of KiB in the cache */ |
| 1823 | mulli r7,r7,13 /* An 8-way cache will require 13 |
| 1824 | * loads per set. |
| 1825 | */ |
| 1826 | slw r7,r7,r6 |
| 1827 | |
| 1828 | /* save off HID0 and set DCFA */ |
| 1829 | mfspr r8,SPRN_HID0 |
| 1830 | ori r9,r8,HID0_DCFA@l |
| 1831 | mtspr SPRN_HID0,r9 |
| 1832 | isync |
| 1833 | |
| 1834 | lis r4,0 |
| 1835 | mtctr r7 |
| 1836 | |
| 1837 | 1: lwz r3,0(r4) /* Load... */ |
| 1838 | add r4,r4,r5 |
| 1839 | bdnz 1b |
| 1840 | |
| 1841 | msync |
| 1842 | lis r4,0 |
| 1843 | mtctr r7 |
| 1844 | |
| 1845 | 1: dcbf 0,r4 /* ...and flush. */ |
| 1846 | add r4,r4,r5 |
| 1847 | bdnz 1b |
| 1848 | |
| 1849 | /* restore HID0 */ |
| 1850 | mtspr SPRN_HID0,r8 |
| 1851 | isync |
| 1852 | |
| 1853 | blr |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 1854 | #endif /* !MINIMAL_SPL */ |