blob: 9a28269020dc8e8385ca8085939700f4048d4b0e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk9c53f402003-10-15 23:53:47 +00002/*
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +00003 * Copyright 2004, 2007-2012 Freescale Semiconductor, Inc.
wdenk9c53f402003-10-15 23:53:47 +00004 * Copyright (C) 2003 Motorola,Inc.
wdenk9c53f402003-10-15 23:53:47 +00005 */
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 Denk0191e472010-10-26 14:34:52 +020014#include <asm-offsets.h>
wdenk9c53f402003-10-15 23:53:47 +000015#include <config.h>
16#include <mpc85xx.h>
Tom Rini4ddbade2022-05-25 12:16:03 -040017#include <system-constants.h>
wdenk9c53f402003-10-15 23:53:47 +000018
wdenk9c53f402003-10-15 23:53:47 +000019#include <ppc_asm.tmpl>
20#include <ppc_defs.h>
21
22#include <asm/cache.h>
23#include <asm/mmu.h>
24
wdenk9c53f402003-10-15 23:53:47 +000025#undef MSR_KERNEL
Andy Flemingf08233c2007-08-14 01:34:21 -050026#define MSR_KERNEL ( MSR_ME ) /* Machine Check */
wdenk9c53f402003-10-15 23:53:47 +000027
Prabhakar Kushwaha3fc2e892014-04-08 19:12:05 +053028#define LAW_EN 0x80000000
29
Scott Wood7c810902012-09-20 16:35:21 -050030#if defined(CONFIG_NAND_SPL) || \
Tom Rini6b15c162022-05-13 12:26:35 -040031 (defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(INIT_MINIMAL))
Scott Wood7c810902012-09-20 16:35:21 -050032#define MINIMAL_SPL
33#endif
34
Liu Gangee9d7532013-06-28 17:58:37 +080035#if !defined(CONFIG_SPL) && !defined(CONFIG_SYS_RAMBOOT) && \
Udit Agarwald2dd2f72019-11-07 16:11:39 +000036 !defined(CONFIG_NXP_ESBC) && !defined(CONFIG_SRIO_PCIE_BOOT_SLAVE)
Scott Wood7c810902012-09-20 16:35:21 -050037#define NOR_BOOT
38#endif
39
wdenk9c53f402003-10-15 23:53:47 +000040/*
41 * Set up GOT: Global Offset Table
42 *
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +010043 * Use r12 to access the GOT
wdenk9c53f402003-10-15 23:53:47 +000044 */
45 START_GOT
46 GOT_ENTRY(_GOT2_TABLE_)
47 GOT_ENTRY(_FIXUP_TABLE_)
48
Scott Wood7c810902012-09-20 16:35:21 -050049#ifndef MINIMAL_SPL
wdenk9c53f402003-10-15 23:53:47 +000050 GOT_ENTRY(_start_of_vectors)
51 GOT_ENTRY(_end_of_vectors)
52 GOT_ENTRY(transfer_to_handler)
Mingkai Hu0255cd72009-09-11 14:19:10 +080053#endif
wdenk9c53f402003-10-15 23:53:47 +000054
55 GOT_ENTRY(__init_end)
Simon Glassed70c8f2013-03-14 06:54:53 +000056 GOT_ENTRY(__bss_end)
wdenk9c53f402003-10-15 23:53:47 +000057 GOT_ENTRY(__bss_start)
58 END_GOT
59
60/*
61 * e500 Startup -- after reset only the last 4KB of the effective
62 * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg
63 * section is located at THIS LAST page and basically does three
64 * things: clear some registers, set up exception tables and
65 * add more TLB entries for 'larger spaces'(e.g. the boot rom) to
66 * continue the boot procedure.
67
68 * Once the boot rom is mapped by TLB entries we can proceed
69 * with normal startup.
70 *
71 */
72
Andy Flemingf08233c2007-08-14 01:34:21 -050073 .section .bootpg,"ax"
Pali Rohár3f9f1bd2022-04-03 00:05:09 +020074 .globl _start
wdenk9c53f402003-10-15 23:53:47 +000075
Pali Rohár3f9f1bd2022-04-03 00:05:09 +020076_start:
Prabhakar Kushwaha8f3e8922012-04-29 23:56:30 +000077/* Enable debug exception */
78 li r1,MSR_DE
Wolfgang Denk62fb2b42021-09-27 17:42:39 +020079 mtmsr r1
wdenka445ddf2004-06-09 00:34:46 +000080
Alexander Grafc3468482014-04-11 17:09:45 +020081 /*
82 * If we got an ePAPR device tree pointer passed in as r3, we need that
83 * later in cpu_init_early_f(). Save it to a safe register before we
84 * clobber it so that we can fetch it from there later.
85 */
86 mr r24, r3
87
Scott Wood80806962012-08-14 10:14:53 +000088#ifdef CONFIG_SYS_FSL_ERRATUM_A004510
89 mfspr r3,SPRN_SVR
90 rlwinm r3,r3,0,0xff
91 li r4,CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV
92 cmpw r3,r4
93 beq 1f
94
95#ifdef CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2
96 li r4,CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2
97 cmpw r3,r4
98 beq 1f
99#endif
100
101 /* Not a supported revision affected by erratum */
102 li r27,0
103 b 2f
104
1051: li r27,1 /* Remember for later that we have the erratum */
106 /* Erratum says set bits 55:60 to 001001 */
107 msync
108 isync
Andy Flemingeab55c02013-03-25 07:33:10 +0000109 mfspr r3,SPRN_HDBCR0
Scott Wood80806962012-08-14 10:14:53 +0000110 li r4,0x48
111 rlwimi r3,r4,0,0x1f8
Andy Flemingeab55c02013-03-25 07:33:10 +0000112 mtspr SPRN_HDBCR0,r3
Scott Wood80806962012-08-14 10:14:53 +0000113 isync
1142:
115#endif
York Sun0cc59072013-08-20 15:09:43 -0700116#ifdef CONFIG_SYS_FSL_ERRATUM_A005125
117 msync
118 isync
119 mfspr r3, SPRN_HDBCR0
120 oris r3, r3, 0x0080
121 mtspr SPRN_HDBCR0, r3
122#endif
123
Scott Wood80806962012-08-14 10:14:53 +0000124
Udit Agarwald2dd2f72019-11-07 16:11:39 +0000125#if defined(CONFIG_NXP_ESBC) && defined(CONFIG_E500MC) && \
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530126 !defined(CONFIG_E6500)
Ruchika Gupta8ca8d822010-12-15 17:02:08 +0000127 /* ISBC uses L2 as stack.
128 * Disable L2 cache here so that u-boot can enable it later
129 * as part of it's normal flow
130 */
131
132 /* Check if L2 is enabled */
133 mfspr r3, SPRN_L2CSR0
134 lis r2, L2CSR0_L2E@h
135 ori r2, r2, L2CSR0_L2E@l
136 and. r4, r3, r2
137 beq l2_disabled
138
139 mfspr r3, SPRN_L2CSR0
140 /* Flush L2 cache */
141 lis r2,(L2CSR0_L2FL)@h
142 ori r2, r2, (L2CSR0_L2FL)@l
143 or r3, r2, r3
144 sync
145 isync
146 mtspr SPRN_L2CSR0,r3
147 isync
1481:
149 mfspr r3, SPRN_L2CSR0
150 and. r1, r3, r2
151 bne 1b
152
153 mfspr r3, SPRN_L2CSR0
154 lis r2, L2CSR0_L2E@h
155 ori r2, r2, L2CSR0_L2E@l
156 andc r4, r3, r2
157 sync
158 isync
159 mtspr SPRN_L2CSR0,r4
160 isync
161
162l2_disabled:
163#endif
164
Andy Flemingf08233c2007-08-14 01:34:21 -0500165/* clear registers/arrays not reset by hardware */
wdenk9c53f402003-10-15 23:53:47 +0000166
Andy Flemingf08233c2007-08-14 01:34:21 -0500167 /* L1 */
168 li r0,2
169 mtspr L1CSR0,r0 /* invalidate d-cache */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200170 mtspr L1CSR1,r0 /* invalidate i-cache */
wdenk9c53f402003-10-15 23:53:47 +0000171
172 mfspr r1,DBSR
173 mtspr DBSR,r1 /* Clear all valid bits */
174
wdenk9c53f402003-10-15 23:53:47 +0000175
York Sun0f2f2a32012-10-08 07:44:07 +0000176 .macro create_tlb1_entry esel ts tsize epn wimg rpn perm phy_high scratch
177 lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h
178 ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l
179 mtspr MAS0, \scratch
180 lis \scratch, FSL_BOOKE_MAS1(1, 1, 0, \ts, \tsize)@h
181 ori \scratch, \scratch, FSL_BOOKE_MAS1(1, 1, 0, \ts, \tsize)@l
182 mtspr MAS1, \scratch
183 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h
184 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l
185 mtspr MAS2, \scratch
186 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h
187 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l
188 mtspr MAS3, \scratch
189 lis \scratch, \phy_high@h
190 ori \scratch, \scratch, \phy_high@l
191 mtspr MAS7, \scratch
192 isync
193 msync
194 tlbwe
195 isync
196 .endm
197
198 .macro create_tlb0_entry esel ts tsize epn wimg rpn perm phy_high scratch
199 lis \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@h
200 ori \scratch, \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@l
201 mtspr MAS0, \scratch
202 lis \scratch, FSL_BOOKE_MAS1(1, 0, 0, \ts, \tsize)@h
203 ori \scratch, \scratch, FSL_BOOKE_MAS1(1, 0, 0, \ts, \tsize)@l
204 mtspr MAS1, \scratch
205 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h
206 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l
207 mtspr MAS2, \scratch
208 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h
209 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l
210 mtspr MAS3, \scratch
211 lis \scratch, \phy_high@h
212 ori \scratch, \scratch, \phy_high@l
213 mtspr MAS7, \scratch
214 isync
215 msync
216 tlbwe
217 isync
218 .endm
219
220 .macro delete_tlb1_entry esel scratch
221 lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h
222 ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l
223 mtspr MAS0, \scratch
224 li \scratch, 0
225 mtspr MAS1, \scratch
226 isync
227 msync
228 tlbwe
229 isync
230 .endm
231
232 .macro delete_tlb0_entry esel epn wimg scratch
233 lis \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@h
234 ori \scratch, \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@l
235 mtspr MAS0, \scratch
236 li \scratch, 0
237 mtspr MAS1, \scratch
238 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h
239 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l
240 mtspr MAS2, \scratch
241 isync
242 msync
243 tlbwe
244 isync
245 .endm
246
Scott Wood7c810902012-09-20 16:35:21 -0500247/* Interrupt vectors do not fit in minimal SPL. */
248#if !defined(MINIMAL_SPL)
wdenk9c53f402003-10-15 23:53:47 +0000249 /* Setup interrupt vectors */
Tom Rini03becca2022-03-24 17:18:05 -0400250 lis r1,CONFIG_VAL(SYS_MONITOR_BASE)@h
Andy Flemingf08233c2007-08-14 01:34:21 -0500251 mtspr IVPR,r1
wdenk9c53f402003-10-15 23:53:47 +0000252
Scott Woodf21e7582015-04-07 20:20:00 -0500253 li r4,CriticalInput@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000254 mtspr IVOR0,r4 /* 0: Critical input */
Scott Woodf21e7582015-04-07 20:20:00 -0500255 li r4,MachineCheck@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000256 mtspr IVOR1,r4 /* 1: Machine check */
Scott Woodf21e7582015-04-07 20:20:00 -0500257 li r4,DataStorage@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000258 mtspr IVOR2,r4 /* 2: Data storage */
Scott Woodf21e7582015-04-07 20:20:00 -0500259 li r4,InstStorage@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000260 mtspr IVOR3,r4 /* 3: Instruction storage */
Scott Woodf21e7582015-04-07 20:20:00 -0500261 li r4,ExtInterrupt@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000262 mtspr IVOR4,r4 /* 4: External interrupt */
Scott Woodf21e7582015-04-07 20:20:00 -0500263 li r4,Alignment@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000264 mtspr IVOR5,r4 /* 5: Alignment */
Scott Woodf21e7582015-04-07 20:20:00 -0500265 li r4,ProgramCheck@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000266 mtspr IVOR6,r4 /* 6: Program check */
Scott Woodf21e7582015-04-07 20:20:00 -0500267 li r4,FPUnavailable@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000268 mtspr IVOR7,r4 /* 7: floating point unavailable */
Scott Woodf21e7582015-04-07 20:20:00 -0500269 li r4,SystemCall@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000270 mtspr IVOR8,r4 /* 8: System call */
wdenk9c53f402003-10-15 23:53:47 +0000271 /* 9: Auxiliary processor unavailable(unsupported) */
Scott Woodf21e7582015-04-07 20:20:00 -0500272 li r4,Decrementer@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000273 mtspr IVOR10,r4 /* 10: Decrementer */
Scott Woodf21e7582015-04-07 20:20:00 -0500274 li r4,IntervalTimer@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000275 mtspr IVOR11,r4 /* 11: Interval timer */
Scott Woodf21e7582015-04-07 20:20:00 -0500276 li r4,WatchdogTimer@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000277 mtspr IVOR12,r4 /* 12: Watchdog timer */
Scott Woodf21e7582015-04-07 20:20:00 -0500278 li r4,DataTLBError@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000279 mtspr IVOR13,r4 /* 13: Data TLB error */
Scott Woodf21e7582015-04-07 20:20:00 -0500280 li r4,InstructionTLBError@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000281 mtspr IVOR14,r4 /* 14: Instruction TLB error */
Scott Woodf21e7582015-04-07 20:20:00 -0500282 li r4,DebugBreakpoint@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000283 mtspr IVOR15,r4 /* 15: Debug */
Prabhakar Kushwaha4a664222012-02-14 22:50:02 +0000284#endif
wdenk9c53f402003-10-15 23:53:47 +0000285
wdenk9c53f402003-10-15 23:53:47 +0000286 /* Clear and set up some registers. */
Kumar Gala9772ee72008-01-16 22:38:34 -0600287 li r0,0x0000
wdenk9c53f402003-10-15 23:53:47 +0000288 lis r1,0xffff
289 mtspr DEC,r0 /* prevent dec exceptions */
290 mttbl r0 /* prevent fit & wdt exceptions */
291 mttbu r0
292 mtspr TSR,r1 /* clear all timer exception status */
293 mtspr TCR,r0 /* disable all */
294 mtspr ESR,r0 /* clear exception syndrome register */
295 mtspr MCSR,r0 /* machine check syndrome register */
296 mtxer r0 /* clear integer exception register */
wdenk9c53f402003-10-15 23:53:47 +0000297
Scott Wood31e60102009-08-20 17:45:05 -0500298#ifdef CONFIG_SYS_BOOK3E_HV
299 mtspr MAS8,r0 /* make sure MAS8 is clear */
300#endif
301
wdenk9c53f402003-10-15 23:53:47 +0000302 /* Enable Time Base and Select Time Base Clock */
wdenk13eb2212004-07-09 23:27:13 +0000303 lis r0,HID0_EMCP@h /* Enable machine check */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500304#if defined(CONFIG_ENABLE_36BIT_PHYS)
Kumar Gala9772ee72008-01-16 22:38:34 -0600305 ori r0,r0,HID0_ENMAS7@l /* Enable MAS7 */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500306#endif
Kumar Galae56f2c52009-03-19 09:16:10 -0500307#ifndef CONFIG_E500MC
Kumar Gala9772ee72008-01-16 22:38:34 -0600308 ori r0,r0,HID0_TBEN@l /* Enable Timebase */
Kumar Galae56f2c52009-03-19 09:16:10 -0500309#endif
wdenk9c53f402003-10-15 23:53:47 +0000310 mtspr HID0,r0
wdenk9c53f402003-10-15 23:53:47 +0000311
York Sun51e91e82016-11-18 12:29:51 -0800312#if !defined(CONFIG_E500MC) && !defined(CONFIG_ARCH_QEMU_E500)
Andy Flemingf08233c2007-08-14 01:34:21 -0500313 li r0,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */
Sandeep Gopalpet8709aed2010-03-12 10:45:02 +0530314 mfspr r3,PVR
315 andi. r3,r3, 0xff
316 cmpwi r3,0x50@l /* if we are rev 5.0 or greater set MBDD */
317 blt 1f
318 /* Set MBDD bit also */
319 ori r0, r0, HID1_MBDD@l
3201:
wdenk9c53f402003-10-15 23:53:47 +0000321 mtspr HID1,r0
Kumar Gala9f4a6892008-10-23 01:47:38 -0500322#endif
wdenk9c53f402003-10-15 23:53:47 +0000323
Kumar Gala945e59a2011-11-22 06:51:15 -0600324#ifdef CONFIG_SYS_FSL_ERRATUM_CPU_A003999
Andy Flemingeab55c02013-03-25 07:33:10 +0000325 mfspr r3,SPRN_HDBCR1
Kumar Gala945e59a2011-11-22 06:51:15 -0600326 oris r3,r3,0x0100
Andy Flemingeab55c02013-03-25 07:33:10 +0000327 mtspr SPRN_HDBCR1,r3
Kumar Gala945e59a2011-11-22 06:51:15 -0600328#endif
329
wdenk9c53f402003-10-15 23:53:47 +0000330 /* Enable Branch Prediction */
331#if defined(CONFIG_BTB)
Kumar Gala5530cb82010-03-29 13:50:31 -0500332 lis r0,BUCSR_ENABLE@h
333 ori r0,r0,BUCSR_ENABLE@l
334 mtspr SPRN_BUCSR,r0
wdenk9c53f402003-10-15 23:53:47 +0000335#endif
336
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200337#if defined(CONFIG_SYS_INIT_DBCR)
wdenk9c53f402003-10-15 23:53:47 +0000338 lis r1,0xffff
339 ori r1,r1,0xffff
wdenk13eb2212004-07-09 23:27:13 +0000340 mtspr DBSR,r1 /* Clear all status bits */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200341 lis r0,CONFIG_SYS_INIT_DBCR@h /* DBCR0[IDM] must be set */
342 ori r0,r0,CONFIG_SYS_INIT_DBCR@l
wdenk13eb2212004-07-09 23:27:13 +0000343 mtspr DBCR0,r0
wdenk9c53f402003-10-15 23:53:47 +0000344#endif
345
Timur Tabie769dea2011-08-03 16:30:10 -0500346/*
Timur Tabic9a1b772011-10-31 13:30:45 -0500347 * Search for the TLB that covers the code we're executing, and shrink it
348 * so that it covers only this 4K page. That will ensure that any other
349 * TLB we create won't interfere with it. We assume that the TLB exists,
Scott Wood2bfa0f42012-08-20 13:10:08 +0000350 * which is why we don't check the Valid bit of MAS1. We also assume
351 * it is in TLB1.
Timur Tabic9a1b772011-10-31 13:30:45 -0500352 *
353 * This is necessary, for example, when booting from the on-chip ROM,
354 * which (oddly) creates a single 4GB TLB that covers CCSR and DDR.
Timur Tabic9a1b772011-10-31 13:30:45 -0500355 */
356 bl nexti /* Find our address */
357nexti: mflr r1 /* R1 = our PC */
358 li r2, 0
359 mtspr MAS6, r2 /* Assume the current PID and AS are 0 */
360 isync
361 msync
362 tlbsx 0, r1 /* This must succeed */
363
Scott Wood2bfa0f42012-08-20 13:10:08 +0000364 mfspr r14, MAS0 /* Save ESEL for later */
365 rlwinm r14, r14, 16, 0xfff
366
Timur Tabic9a1b772011-10-31 13:30:45 -0500367 /* Set the size of the TLB to 4KB */
368 mfspr r3, MAS1
Scott Wood33a619c2013-01-18 15:45:58 +0000369 li r2, 0xF80
Timur Tabic9a1b772011-10-31 13:30:45 -0500370 andc r3, r3, r2 /* Clear the TSIZE bits */
371 ori r3, r3, MAS1_TSIZE(BOOKE_PAGESZ_4K)@l
Scott Wood2bfa0f42012-08-20 13:10:08 +0000372 oris r3, r3, MAS1_IPROT@h
Timur Tabic9a1b772011-10-31 13:30:45 -0500373 mtspr MAS1, r3
374
375 /*
376 * Set the base address of the TLB to our PC. We assume that
377 * virtual == physical. We also assume that MAS2_EPN == MAS3_RPN.
378 */
379 lis r3, MAS2_EPN@h
380 ori r3, r3, MAS2_EPN@l /* R3 = MAS2_EPN */
381
382 and r1, r1, r3 /* Our PC, rounded down to the nearest page */
383
384 mfspr r2, MAS2
385 andc r2, r2, r3
386 or r2, r2, r1
Scott Wood80806962012-08-14 10:14:53 +0000387#ifdef CONFIG_SYS_FSL_ERRATUM_A004510
388 cmpwi r27,0
389 beq 1f
390 andi. r15, r2, MAS2_I|MAS2_G /* save the old I/G for later */
391 rlwinm r2, r2, 0, ~MAS2_I
392 ori r2, r2, MAS2_G
3931:
394#endif
Timur Tabic9a1b772011-10-31 13:30:45 -0500395 mtspr MAS2, r2 /* Set the EPN to our PC base address */
396
397 mfspr r2, MAS3
398 andc r2, r2, r3
399 or r2, r2, r1
400 mtspr MAS3, r2 /* Set the RPN to our PC base address */
401
402 isync
403 msync
404 tlbwe
Scott Wood2bfa0f42012-08-20 13:10:08 +0000405
406/*
407 * Clear out any other TLB entries that may exist, to avoid conflicts.
408 * Our TLB entry is in r14.
409 */
410 li r0, TLBIVAX_ALL | TLBIVAX_TLB0
411 tlbivax 0, r0
412 tlbsync
413
414 mfspr r4, SPRN_TLB1CFG
415 rlwinm r4, r4, 0, TLBnCFG_NENTRY_MASK
416
417 li r3, 0
418 mtspr MAS1, r3
4191: cmpw r3, r14
Scott Wood2bfa0f42012-08-20 13:10:08 +0000420 rlwinm r5, r3, 16, MAS0_ESEL_MSK
421 addi r3, r3, 1
422 beq 2f /* skip the entry we're executing from */
423
424 oris r5, r5, MAS0_TLBSEL(1)@h
425 mtspr MAS0, r5
426
427 isync
428 tlbwe
429 isync
430 msync
431
4322: cmpw r3, r4
433 blt 1b
Timur Tabic9a1b772011-10-31 13:30:45 -0500434
Aneesh Bansalbf955b22014-03-12 00:07:27 +0530435#if defined(CONFIG_SYS_PPC_E500_DEBUG_TLB) && !defined(MINIMAL_SPL) && \
Udit Agarwald2dd2f72019-11-07 16:11:39 +0000436 !defined(CONFIG_NXP_ESBC)
Scott Woodd6a82882012-10-25 19:27:41 -0500437/*
438 * TLB entry for debuggging in AS1
439 * Create temporary TLB entry in AS0 to handle debug exception
440 * As on debug exception MSR is cleared i.e. Address space is changed
441 * to 0. A TLB entry (in AS0) is required to handle debug exception generated
442 * in AS1.
443 */
444
Scott Wood7c810902012-09-20 16:35:21 -0500445#ifdef NOR_BOOT
Scott Woodd6a82882012-10-25 19:27:41 -0500446/*
447 * TLB entry is created for IVPR + IVOR15 to map on valid OP code address
448 * bacause flash's virtual address maps to 0xff800000 - 0xffffffff.
449 * and this window is outside of 4K boot window.
450 */
451 create_tlb1_entry CONFIG_SYS_PPC_E500_DEBUG_TLB, \
452 0, BOOKE_PAGESZ_4M, \
Tom Rini03becca2022-03-24 17:18:05 -0400453 CONFIG_VAL(SYS_MONITOR_BASE) & 0xffc00000, MAS2_I|MAS2_G, \
Scott Woodd6a82882012-10-25 19:27:41 -0500454 0xffc00000, MAS3_SX|MAS3_SW|MAS3_SR, \
455 0, r6
456
Scott Woodd6a82882012-10-25 19:27:41 -0500457#else
458/*
459 * TLB entry is created for IVPR + IVOR15 to map on valid OP code address
460 * because "nexti" will resize TLB to 4K
461 */
462 create_tlb1_entry CONFIG_SYS_PPC_E500_DEBUG_TLB, \
463 0, BOOKE_PAGESZ_256K, \
Tom Rini03becca2022-03-24 17:18:05 -0400464 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfffc0000, MAS2_I, \
465 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfffc0000, MAS3_SX|MAS3_SW|MAS3_SR, \
Scott Woodd6a82882012-10-25 19:27:41 -0500466 0, r6
467#endif
468#endif
469
Timur Tabic9a1b772011-10-31 13:30:45 -0500470/*
Timur Tabie769dea2011-08-03 16:30:10 -0500471 * Relocate CCSR, if necessary. We relocate CCSR if (obviously) the default
472 * location is not where we want it. This typically happens on a 36-bit
473 * system, where we want to move CCSR to near the top of 36-bit address space.
474 *
475 * To move CCSR, we create two temporary TLBs, one for the old location, and
476 * another for the new location. On CoreNet systems, we also need to create
477 * a special, temporary LAW.
478 *
479 * As a general rule, TLB0 is used for short-term TLBs, and TLB1 is used for
480 * long-term TLBs, so we use TLB0 here.
481 */
482#if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS)
483
484#if !defined(CONFIG_SYS_CCSRBAR_PHYS_HIGH) || !defined(CONFIG_SYS_CCSRBAR_PHYS_LOW)
485#error "CONFIG_SYS_CCSRBAR_PHYS_HIGH and CONFIG_SYS_CCSRBAR_PHYS_LOW) must be defined."
486#endif
487
Timur Tabie769dea2011-08-03 16:30:10 -0500488create_ccsr_new_tlb:
489 /*
490 * Create a TLB for the new location of CCSR. Register R8 is reserved
491 * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR).
492 */
Scott Wood2bfa0f42012-08-20 13:10:08 +0000493 lis r8, CONFIG_SYS_CCSRBAR@h
494 ori r8, r8, CONFIG_SYS_CCSRBAR@l
495 lis r9, (CONFIG_SYS_CCSRBAR + 0x1000)@h
496 ori r9, r9, (CONFIG_SYS_CCSRBAR + 0x1000)@l
York Sun0f2f2a32012-10-08 07:44:07 +0000497 create_tlb0_entry 0, \
498 0, BOOKE_PAGESZ_4K, \
499 CONFIG_SYS_CCSRBAR, MAS2_I|MAS2_G, \
500 CONFIG_SYS_CCSRBAR_PHYS_LOW, MAS3_SW|MAS3_SR, \
501 CONFIG_SYS_CCSRBAR_PHYS_HIGH, r3
Timur Tabie769dea2011-08-03 16:30:10 -0500502 /*
Timur Tabi40402f02011-10-31 13:30:42 -0500503 * Create a TLB for the current location of CCSR. Register R9 is reserved
Timur Tabie769dea2011-08-03 16:30:10 -0500504 * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR + 0x1000).
505 */
506create_ccsr_old_tlb:
York Sun0f2f2a32012-10-08 07:44:07 +0000507 create_tlb0_entry 1, \
508 0, BOOKE_PAGESZ_4K, \
509 CONFIG_SYS_CCSRBAR + 0x1000, MAS2_I|MAS2_G, \
510 CONFIG_SYS_CCSRBAR_DEFAULT, MAS3_SW|MAS3_SR, \
511 0, r3 /* The default CCSR address is always a 32-bit number */
512
Timur Tabie769dea2011-08-03 16:30:10 -0500513
Timur Tabic19b0682011-10-31 13:30:44 -0500514 /*
515 * We have a TLB for what we think is the current (old) CCSR. Let's
516 * verify that, otherwise we won't be able to move it.
517 * CONFIG_SYS_CCSRBAR_DEFAULT is always a 32-bit number, so we only
518 * need to compare the lower 32 bits of CCSRBAR on CoreNet systems.
519 */
520verify_old_ccsr:
521 lis r0, CONFIG_SYS_CCSRBAR_DEFAULT@h
522 ori r0, r0, CONFIG_SYS_CCSRBAR_DEFAULT@l
523#ifdef CONFIG_FSL_CORENET
524 lwz r1, 4(r9) /* CCSRBARL */
525#else
526 lwz r1, 0(r9) /* CCSRBAR, shifted right by 12 */
527 slwi r1, r1, 12
528#endif
529
530 cmpl 0, r0, r1
531
532 /*
533 * If the value we read from CCSRBARL is not what we expect, then
534 * enter an infinite loop. This will at least allow a debugger to
535 * halt execution and examine TLBs, etc. There's no point in going
536 * on.
537 */
538infinite_debug_loop:
539 bne infinite_debug_loop
540
Timur Tabie769dea2011-08-03 16:30:10 -0500541#ifdef CONFIG_FSL_CORENET
542
543#define CCSR_LAWBARH0 (CONFIG_SYS_CCSRBAR + 0x1000)
Timur Tabie769dea2011-08-03 16:30:10 -0500544#define LAW_SIZE_4K 0xb
545#define CCSRBAR_LAWAR (LAW_EN | (0x1e << 20) | LAW_SIZE_4K)
546#define CCSRAR_C 0x80000000 /* Commit */
547
548create_temp_law:
549 /*
550 * On CoreNet systems, we create the temporary LAW using a special LAW
551 * target ID of 0x1e. LAWBARH is at offset 0xc00 in CCSR.
552 */
553 lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h
554 ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l
555 lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h
556 ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l
557 lis r2, CCSRBAR_LAWAR@h
558 ori r2, r2, CCSRBAR_LAWAR@l
559
560 stw r0, 0xc00(r9) /* LAWBARH0 */
561 stw r1, 0xc04(r9) /* LAWBARL0 */
562 sync
563 stw r2, 0xc08(r9) /* LAWAR0 */
564
565 /*
566 * Read back from LAWAR to ensure the update is complete. e500mc
567 * cores also require an isync.
568 */
569 lwz r0, 0xc08(r9) /* LAWAR0 */
570 isync
571
572 /*
573 * Read the current CCSRBARH and CCSRBARL using load word instructions.
574 * Follow this with an isync instruction. This forces any outstanding
575 * accesses to configuration space to completion.
576 */
577read_old_ccsrbar:
578 lwz r0, 0(r9) /* CCSRBARH */
Timur Tabi40402f02011-10-31 13:30:42 -0500579 lwz r0, 4(r9) /* CCSRBARL */
Timur Tabie769dea2011-08-03 16:30:10 -0500580 isync
581
582 /*
583 * Write the new values for CCSRBARH and CCSRBARL to their old
584 * locations. The CCSRBARH has a shadow register. When the CCSRBARH
585 * has a new value written it loads a CCSRBARH shadow register. When
586 * the CCSRBARL is written, the CCSRBARH shadow register contents
587 * along with the CCSRBARL value are loaded into the CCSRBARH and
588 * CCSRBARL registers, respectively. Follow this with a sync
589 * instruction.
590 */
591write_new_ccsrbar:
592 lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h
593 ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l
594 lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h
595 ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l
596 lis r2, CCSRAR_C@h
597 ori r2, r2, CCSRAR_C@l
598
599 stw r0, 0(r9) /* Write to CCSRBARH */
600 sync /* Make sure we write to CCSRBARH first */
601 stw r1, 4(r9) /* Write to CCSRBARL */
602 sync
603
604 /*
605 * Write a 1 to the commit bit (C) of CCSRAR at the old location.
606 * Follow this with a sync instruction.
607 */
608 stw r2, 8(r9)
609 sync
610
611 /* Delete the temporary LAW */
612delete_temp_law:
613 li r1, 0
614 stw r1, 0xc08(r8)
615 sync
616 stw r1, 0xc00(r8)
617 stw r1, 0xc04(r8)
618 sync
619
620#else /* #ifdef CONFIG_FSL_CORENET */
621
622write_new_ccsrbar:
623 /*
624 * Read the current value of CCSRBAR using a load word instruction
625 * followed by an isync. This forces all accesses to configuration
626 * space to complete.
627 */
628 sync
629 lwz r0, 0(r9)
630 isync
631
632/* CONFIG_SYS_CCSRBAR_PHYS right shifted by 12 */
633#define CCSRBAR_PHYS_RS12 ((CONFIG_SYS_CCSRBAR_PHYS_HIGH << 20) | \
634 (CONFIG_SYS_CCSRBAR_PHYS_LOW >> 12))
635
636 /* Write the new value to CCSRBAR. */
637 lis r0, CCSRBAR_PHYS_RS12@h
638 ori r0, r0, CCSRBAR_PHYS_RS12@l
639 stw r0, 0(r9)
640 sync
641
642 /*
643 * The manual says to perform a load of an address that does not
644 * access configuration space or the on-chip SRAM using an existing TLB,
645 * but that doesn't appear to be necessary. We will do the isync,
646 * though.
647 */
648 isync
649
650 /*
651 * Read the contents of CCSRBAR from its new location, followed by
652 * another isync.
653 */
654 lwz r0, 0(r8)
655 isync
656
657#endif /* #ifdef CONFIG_FSL_CORENET */
658
659 /* Delete the temporary TLBs */
660delete_temp_tlbs:
York Sun0f2f2a32012-10-08 07:44:07 +0000661 delete_tlb0_entry 0, CONFIG_SYS_CCSRBAR, MAS2_I|MAS2_G, r3
662 delete_tlb0_entry 1, CONFIG_SYS_CCSRBAR + 0x1000, MAS2_I|MAS2_G, r3
Timur Tabie769dea2011-08-03 16:30:10 -0500663
Timur Tabie769dea2011-08-03 16:30:10 -0500664#endif /* #if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS) */
665
Prabhakar Kushwahacc3c5b62013-08-29 13:10:38 +0530666#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
York Sunc3d87b12012-10-08 07:44:08 +0000667create_ccsr_l2_tlb:
668 /*
669 * Create a TLB for the MMR location of CCSR
670 * to access L2CSR0 register
671 */
672 create_tlb0_entry 0, \
673 0, BOOKE_PAGESZ_4K, \
674 CONFIG_SYS_CCSRBAR + 0xC20000, MAS2_I|MAS2_G, \
675 CONFIG_SYS_CCSRBAR_PHYS_LOW + 0xC20000, MAS3_SW|MAS3_SR, \
676 CONFIG_SYS_CCSRBAR_PHYS_HIGH, r3
677
678enable_l2_cluster_l2:
679 /* enable L2 cache */
680 lis r3, (CONFIG_SYS_CCSRBAR + 0xC20000)@h
681 ori r3, r3, (CONFIG_SYS_CCSRBAR + 0xC20000)@l
682 li r4, 33 /* stash id */
683 stw r4, 4(r3)
684 lis r4, (L2CSR0_L2FI|L2CSR0_L2LFC)@h
685 ori r4, r4, (L2CSR0_L2FI|L2CSR0_L2LFC)@l
686 sync
687 stw r4, 0(r3) /* invalidate L2 */
Aneesh Bansal5661fcc2016-04-18 22:58:33 +0530688 /* Poll till the bits are cleared */
York Sunc3d87b12012-10-08 07:44:08 +00006891: sync
690 lwz r0, 0(r3)
691 twi 0, r0, 0
692 isync
693 and. r1, r0, r4
694 bne 1b
Aneesh Bansal5661fcc2016-04-18 22:58:33 +0530695
696 /* L2PE must be set before L2 cache is enabled */
697 lis r4, (L2CSR0_L2PE)@h
698 ori r4, r4, (L2CSR0_L2PE)@l
699 sync
700 stw r4, 0(r3) /* enable L2 parity/ECC error checking */
701 /* Poll till the bit is set */
7021: sync
703 lwz r0, 0(r3)
704 twi 0, r0, 0
705 isync
706 and. r1, r0, r4
707 beq 1b
708
James Yang718fd952013-03-25 07:39:58 +0000709 lis r4, (L2CSR0_L2E|L2CSR0_L2PE)@h
James Yang284ce502013-03-25 07:40:03 +0000710 ori r4, r4, (L2CSR0_L2REP_MODE)@l
York Sunc3d87b12012-10-08 07:44:08 +0000711 sync
Andy Fleming5631c642013-03-25 07:33:14 +0000712 stw r4, 0(r3) /* enable L2 */
Aneesh Bansal5661fcc2016-04-18 22:58:33 +0530713 /* Poll till the bit is set */
7141: sync
715 lwz r0, 0(r3)
716 twi 0, r0, 0
717 isync
718 and. r1, r0, r4
719 beq 1b
720
York Sunc3d87b12012-10-08 07:44:08 +0000721delete_ccsr_l2_tlb:
722 delete_tlb0_entry 0, CONFIG_SYS_CCSRBAR + 0xC20000, MAS2_I|MAS2_G, r3
723#endif
724
Andy Fleming5631c642013-03-25 07:33:14 +0000725 /*
726 * Enable the L1. On e6500, this has to be done
727 * after the L2 is up.
728 */
729
730#ifdef CONFIG_SYS_CACHE_STASHING
731 /* set stash id to (coreID) * 2 + 32 + L1 CT (0) */
732 li r2,(32 + 0)
733 mtspr L1CSR2,r2
734#endif
735
736 /* Enable/invalidate the I-Cache */
737 lis r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@h
738 ori r2,r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@l
739 mtspr SPRN_L1CSR1,r2
7401:
741 mfspr r3,SPRN_L1CSR1
742 and. r1,r3,r2
743 bne 1b
744
745 lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h
746 ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l
747 mtspr SPRN_L1CSR1,r3
748 isync
7492:
750 mfspr r3,SPRN_L1CSR1
751 andi. r1,r3,L1CSR1_ICE@l
752 beq 2b
753
754 /* Enable/invalidate the D-Cache */
755 lis r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@h
756 ori r2,r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@l
757 mtspr SPRN_L1CSR0,r2
7581:
759 mfspr r3,SPRN_L1CSR0
760 and. r1,r3,r2
761 bne 1b
762
763 lis r3,(L1CSR0_CPE|L1CSR0_DCE)@h
764 ori r3,r3,(L1CSR0_CPE|L1CSR0_DCE)@l
765 mtspr SPRN_L1CSR0,r3
766 isync
7672:
768 mfspr r3,SPRN_L1CSR0
769 andi. r1,r3,L1CSR0_DCE@l
770 beq 2b
Scott Wood80806962012-08-14 10:14:53 +0000771#ifdef CONFIG_SYS_FSL_ERRATUM_A004510
772#define DCSR_LAWBARH0 (CONFIG_SYS_CCSRBAR + 0x1000)
773#define LAW_SIZE_1M 0x13
774#define DCSRBAR_LAWAR (LAW_EN | (0x1d << 20) | LAW_SIZE_1M)
775
776 cmpwi r27,0
777 beq 9f
778
779 /*
780 * Create a TLB entry for CCSR
781 *
782 * We're executing out of TLB1 entry in r14, and that's the only
783 * TLB entry that exists. To allocate some TLB entries for our
784 * own use, flip a bit high enough that we won't flip it again
785 * via incrementing.
786 */
787
788 xori r8, r14, 32
789 lis r0, MAS0_TLBSEL(1)@h
790 rlwimi r0, r8, 16, MAS0_ESEL_MSK
791 lis r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_16M)@h
792 ori r1, r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_16M)@l
793 lis r7, CONFIG_SYS_CCSRBAR@h
794 ori r7, r7, CONFIG_SYS_CCSRBAR@l
795 ori r2, r7, MAS2_I|MAS2_G
796 lis r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@h
797 ori r3, r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@l
798 lis r4, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h
799 ori r4, r4, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l
800 mtspr MAS0, r0
801 mtspr MAS1, r1
802 mtspr MAS2, r2
803 mtspr MAS3, r3
804 mtspr MAS7, r4
805 isync
806 tlbwe
807 isync
808 msync
809
810 /* Map DCSR temporarily to physical address zero */
811 li r0, 0
812 lis r3, DCSRBAR_LAWAR@h
813 ori r3, r3, DCSRBAR_LAWAR@l
814
815 stw r0, 0xc00(r7) /* LAWBARH0 */
816 stw r0, 0xc04(r7) /* LAWBARL0 */
817 sync
818 stw r3, 0xc08(r7) /* LAWAR0 */
819
820 /* Read back from LAWAR to ensure the update is complete. */
821 lwz r3, 0xc08(r7) /* LAWAR0 */
822 isync
823
824 /* Create a TLB entry for DCSR at zero */
825
826 addi r9, r8, 1
827 lis r0, MAS0_TLBSEL(1)@h
828 rlwimi r0, r9, 16, MAS0_ESEL_MSK
829 lis r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@h
830 ori r1, r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@l
831 li r6, 0 /* DCSR effective address */
832 ori r2, r6, MAS2_I|MAS2_G
833 li r3, MAS3_SW|MAS3_SR
834 li r4, 0
835 mtspr MAS0, r0
836 mtspr MAS1, r1
837 mtspr MAS2, r2
838 mtspr MAS3, r3
839 mtspr MAS7, r4
840 isync
841 tlbwe
842 isync
843 msync
844
845 /* enable the timebase */
846#define CTBENR 0xe2084
847 li r3, 1
848 addis r4, r7, CTBENR@ha
849 stw r3, CTBENR@l(r4)
850 lwz r3, CTBENR@l(r4)
851 twi 0,r3,0
852 isync
853
854 .macro erratum_set_ccsr offset value
855 addis r3, r7, \offset@ha
856 lis r4, \value@h
857 addi r3, r3, \offset@l
858 ori r4, r4, \value@l
859 bl erratum_set_value
860 .endm
861
862 .macro erratum_set_dcsr offset value
863 addis r3, r6, \offset@ha
864 lis r4, \value@h
865 addi r3, r3, \offset@l
866 ori r4, r4, \value@l
867 bl erratum_set_value
868 .endm
869
870 erratum_set_dcsr 0xb0e08 0xe0201800
871 erratum_set_dcsr 0xb0e18 0xe0201800
872 erratum_set_dcsr 0xb0e38 0xe0400000
873 erratum_set_dcsr 0xb0008 0x00900000
874 erratum_set_dcsr 0xb0e40 0xe00a0000
875 erratum_set_ccsr 0x18600 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY
Dave Liu501c0102013-11-28 14:58:08 +0800876#ifdef CONFIG_RAMBOOT_PBL
877 erratum_set_ccsr 0x10f00 0x495e5000
878#else
Scott Wood80806962012-08-14 10:14:53 +0000879 erratum_set_ccsr 0x10f00 0x415e5000
Dave Liu501c0102013-11-28 14:58:08 +0800880#endif
Scott Wood80806962012-08-14 10:14:53 +0000881 erratum_set_ccsr 0x11f00 0x415e5000
882
883 /* Make temp mapping uncacheable again, if it was initially */
884 bl 2f
8852: mflr r3
886 tlbsx 0, r3
887 mfspr r4, MAS2
888 rlwimi r4, r15, 0, MAS2_I
889 rlwimi r4, r15, 0, MAS2_G
890 mtspr MAS2, r4
891 isync
892 tlbwe
893 isync
894 msync
895
896 /* Clear the cache */
897 lis r3,(L1CSR1_ICFI|L1CSR1_ICLFR)@h
898 ori r3,r3,(L1CSR1_ICFI|L1CSR1_ICLFR)@l
899 sync
900 isync
901 mtspr SPRN_L1CSR1,r3
902 isync
9032: sync
904 mfspr r4,SPRN_L1CSR1
905 and. r4,r4,r3
906 bne 2b
907
908 lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h
909 ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l
910 sync
911 isync
912 mtspr SPRN_L1CSR1,r3
913 isync
9142: sync
915 mfspr r4,SPRN_L1CSR1
916 and. r4,r4,r3
917 beq 2b
918
919 /* Remove temporary mappings */
920 lis r0, MAS0_TLBSEL(1)@h
921 rlwimi r0, r9, 16, MAS0_ESEL_MSK
922 li r3, 0
923 mtspr MAS0, r0
924 mtspr MAS1, r3
925 isync
926 tlbwe
927 isync
928 msync
929
930 li r3, 0
931 stw r3, 0xc08(r7) /* LAWAR0 */
932 lwz r3, 0xc08(r7)
933 isync
934
935 lis r0, MAS0_TLBSEL(1)@h
936 rlwimi r0, r8, 16, MAS0_ESEL_MSK
937 li r3, 0
938 mtspr MAS0, r0
939 mtspr MAS1, r3
940 isync
941 tlbwe
942 isync
943 msync
944
945 b 9f
946
947 /* r3 = addr, r4 = value, clobbers r5, r11, r12 */
948erratum_set_value:
949 /* Lock two cache lines into I-Cache */
950 sync
951 mfspr r11, SPRN_L1CSR1
952 rlwinm r11, r11, 0, ~L1CSR1_ICUL
953 sync
954 isync
955 mtspr SPRN_L1CSR1, r11
956 isync
957
958 mflr r12
959 bl 5f
9605: mflr r5
961 addi r5, r5, 2f - 5b
962 icbtls 0, 0, r5
963 addi r5, r5, 64
964
965 sync
966 mfspr r11, SPRN_L1CSR1
9673: andi. r11, r11, L1CSR1_ICUL
968 bne 3b
969
970 icbtls 0, 0, r5
971 addi r5, r5, 64
972
973 sync
974 mfspr r11, SPRN_L1CSR1
9753: andi. r11, r11, L1CSR1_ICUL
976 bne 3b
977
978 b 2f
979 .align 6
980 /* Inside a locked cacheline, wait a while, write, then wait a while */
9812: sync
982
983 mfspr r5, SPRN_TBRL
984 addis r11, r5, 0x10000@h /* wait 65536 timebase ticks */
9854: mfspr r5, SPRN_TBRL
986 subf. r5, r5, r11
987 bgt 4b
988
989 stw r4, 0(r3)
990
991 mfspr r5, SPRN_TBRL
992 addis r11, r5, 0x10000@h /* wait 65536 timebase ticks */
9934: mfspr r5, SPRN_TBRL
994 subf. r5, r5, r11
995 bgt 4b
996
997 sync
998
999 /*
1000 * Fill out the rest of this cache line and the next with nops,
1001 * to ensure that nothing outside the locked area will be
1002 * fetched due to a branch.
1003 */
1004 .rept 19
1005 nop
1006 .endr
1007
1008 sync
1009 mfspr r11, SPRN_L1CSR1
1010 rlwinm r11, r11, 0, ~L1CSR1_ICUL
1011 sync
1012 isync
1013 mtspr SPRN_L1CSR1, r11
1014 isync
1015
1016 mtlr r12
1017 blr
1018
10199:
1020#endif
1021
Timur Tabie769dea2011-08-03 16:30:10 -05001022create_init_ram_area:
Kumar Gala9772ee72008-01-16 22:38:34 -06001023 lis r6,FSL_BOOKE_MAS0(1, 15, 0)@h
1024 ori r6,r6,FSL_BOOKE_MAS0(1, 15, 0)@l
1025
Scott Wood7c810902012-09-20 16:35:21 -05001026#ifdef NOR_BOOT
Mingkai Hu0255cd72009-09-11 14:19:10 +08001027 /* create a temp mapping in AS=1 to the 4M boot window */
York Sun0f2f2a32012-10-08 07:44:07 +00001028 create_tlb1_entry 15, \
1029 1, BOOKE_PAGESZ_4M, \
Tom Rini03becca2022-03-24 17:18:05 -04001030 CONFIG_VAL(SYS_MONITOR_BASE) & 0xffc00000, MAS2_I|MAS2_G, \
York Sun0f2f2a32012-10-08 07:44:07 +00001031 0xffc00000, MAS3_SX|MAS3_SW|MAS3_SR, \
1032 0, r6
Kumar Gala9772ee72008-01-16 22:38:34 -06001033
Udit Agarwald2dd2f72019-11-07 16:11:39 +00001034#elif !defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_NXP_ESBC)
Ruchika Gupta8ca8d822010-12-15 17:02:08 +00001035 /* create a temp mapping in AS = 1 for Flash mapping
1036 * created by PBL for ISBC code
Sumit Gargafaca2a2016-07-14 12:27:52 -04001037 */
York Sun0f2f2a32012-10-08 07:44:07 +00001038 create_tlb1_entry 15, \
1039 1, BOOKE_PAGESZ_1M, \
Tom Rini03becca2022-03-24 17:18:05 -04001040 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \
Scott Woodf2173162012-09-20 18:34:49 -05001041 CONFIG_SYS_PBI_FLASH_WINDOW & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \
York Sun0f2f2a32012-10-08 07:44:07 +00001042 0, r6
Aneesh Bansale0f50152015-06-16 10:36:00 +05301043
Sumit Gargafaca2a2016-07-14 12:27:52 -04001044/*
1045 * For Targets without CONFIG_SPL like P3, P5
1046 * and for targets with CONFIG_SPL like T1, T2, T4, only for
1047 * u-boot-spl i.e. CONFIG_SPL_BUILD
1048 */
Udit Agarwald2dd2f72019-11-07 16:11:39 +00001049#elif defined(CONFIG_RAMBOOT_PBL) && defined(CONFIG_NXP_ESBC) && \
Sumit Gargafaca2a2016-07-14 12:27:52 -04001050 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
Tom Rini03becca2022-03-24 17:18:05 -04001051 /* create a temp mapping in AS = 1 for mapping CONFIG_VAL(SYS_MONITOR_BASE)
Aneesh Bansale0f50152015-06-16 10:36:00 +05301052 * to L3 Address configured by PBL for ISBC code
Sumit Gargafaca2a2016-07-14 12:27:52 -04001053 */
Aneesh Bansale0f50152015-06-16 10:36:00 +05301054 create_tlb1_entry 15, \
1055 1, BOOKE_PAGESZ_1M, \
Tom Rini03becca2022-03-24 17:18:05 -04001056 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \
Aneesh Bansale0f50152015-06-16 10:36:00 +05301057 CONFIG_SYS_INIT_L3_ADDR & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \
1058 0, r6
1059
Mingkai Hu0255cd72009-09-11 14:19:10 +08001060#else
1061 /*
Tom Rini03becca2022-03-24 17:18:05 -04001062 * create a temp mapping in AS=1 to the 1M CONFIG_VAL(SYS_MONITOR_BASE) space, the main
1063 * image has been relocated to CONFIG_VAL(SYS_MONITOR_BASE) on the second stage.
Mingkai Hu0255cd72009-09-11 14:19:10 +08001064 */
York Sun0f2f2a32012-10-08 07:44:07 +00001065 create_tlb1_entry 15, \
1066 1, BOOKE_PAGESZ_1M, \
Tom Rini03becca2022-03-24 17:18:05 -04001067 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \
1068 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \
York Sun0f2f2a32012-10-08 07:44:07 +00001069 0, r6
Mingkai Hu0255cd72009-09-11 14:19:10 +08001070#endif
Kumar Gala9772ee72008-01-16 22:38:34 -06001071
Kumar Gala9772ee72008-01-16 22:38:34 -06001072 /* create a temp mapping in AS=1 to the stack */
yorkc6093322010-07-02 22:25:57 +00001073#if defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW) && \
1074 defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH)
York Sun0f2f2a32012-10-08 07:44:07 +00001075 create_tlb1_entry 14, \
1076 1, BOOKE_PAGESZ_16K, \
1077 CONFIG_SYS_INIT_RAM_ADDR, 0, \
1078 CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW, MAS3_SX|MAS3_SW|MAS3_SR, \
1079 CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH, r6
1080
yorkc6093322010-07-02 22:25:57 +00001081#else
York Sun0f2f2a32012-10-08 07:44:07 +00001082 create_tlb1_entry 14, \
1083 1, BOOKE_PAGESZ_16K, \
1084 CONFIG_SYS_INIT_RAM_ADDR, 0, \
1085 CONFIG_SYS_INIT_RAM_ADDR, MAS3_SX|MAS3_SW|MAS3_SR, \
1086 0, r6
yorkc6093322010-07-02 22:25:57 +00001087#endif
Kumar Gala9772ee72008-01-16 22:38:34 -06001088
Prabhakar Kushwaha8f3e8922012-04-29 23:56:30 +00001089 lis r6,MSR_IS|MSR_DS|MSR_DE@h
1090 ori r6,r6,MSR_IS|MSR_DS|MSR_DE@l
Kumar Gala9772ee72008-01-16 22:38:34 -06001091 lis r7,switch_as@h
1092 ori r7,r7,switch_as@l
1093
1094 mtspr SPRN_SRR0,r7
1095 mtspr SPRN_SRR1,r6
1096 rfi
1097
1098switch_as:
Kumar Gala76e276b2007-08-07 18:07:27 -05001099/* L1 DCache is used for initial RAM */
1100
1101 /* Allocate Initial RAM in data cache.
1102 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001103 lis r3,CONFIG_SYS_INIT_RAM_ADDR@h
1104 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Kumar Gala938e14e2008-01-08 01:22:21 -06001105 mfspr r2, L1CFG0
1106 andi. r2, r2, 0x1ff
1107 /* cache size * 1024 / (2 * L1 line size) */
1108 slwi r2, r2, (10 - 1 - L1_CACHE_SHIFT)
Kumar Gala76e276b2007-08-07 18:07:27 -05001109 mtctr r2
1110 li r0,0
11111:
1112 dcbz r0,r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301113#ifdef CONFIG_E6500 /* Lock/unlock L2 cache long with L1 */
York Sun8d45cc12015-08-17 13:31:52 -07001114 dcbtls 2, r0, r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301115 dcbtls 0, r0, r3
York Sun8d45cc12015-08-17 13:31:52 -07001116#else
1117 dcbtls 0, r0, r3
1118#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001119 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE
Kumar Gala76e276b2007-08-07 18:07:27 -05001120 bdnz 1b
1121
Andy Flemingf08233c2007-08-14 01:34:21 -05001122 /* Jump out the last 4K page and continue to 'normal' start */
Scott Wood7c810902012-09-20 16:35:21 -05001123#if defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)
1124 /* We assume that we're already running at the address we're linked at */
Andy Flemingf08233c2007-08-14 01:34:21 -05001125 b _start_cont
Kumar Gala76e276b2007-08-07 18:07:27 -05001126#else
1127 /* Calculate absolute address in FLASH and jump there */
1128 /*--------------------------------------------------------------*/
Tom Rini03becca2022-03-24 17:18:05 -04001129 lis r3,CONFIG_VAL(SYS_MONITOR_BASE)@h
1130 ori r3,r3,CONFIG_VAL(SYS_MONITOR_BASE)@l
Pali Rohár674642c2022-04-25 09:29:08 +05301131 addi r3,r3,_start_cont - _start_cont
Kumar Gala76e276b2007-08-07 18:07:27 -05001132 mtlr r3
urwithsughosh@gmail.come9f4e342007-09-24 13:36:01 -04001133 blr
Kumar Gala76e276b2007-08-07 18:07:27 -05001134#endif
Andy Flemingf08233c2007-08-14 01:34:21 -05001135
Andy Flemingf08233c2007-08-14 01:34:21 -05001136 .text
Andy Flemingf08233c2007-08-14 01:34:21 -05001137 .globl _start_cont
1138_start_cont:
wdenk9c53f402003-10-15 23:53:47 +00001139 /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/
Joakim Tjernlund258120c2012-07-23 10:58:02 +00001140 lis r3,(CONFIG_SYS_INIT_RAM_ADDR)@h
1141 ori r3,r3,((CONFIG_SYS_INIT_SP_OFFSET-16)&~0xf)@l /* Align to 16 */
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001142
Andy Yanad0ac4b2017-07-24 17:47:27 +08001143#if CONFIG_VAL(SYS_MALLOC_F_LEN)
1144#if CONFIG_VAL(SYS_MALLOC_F_LEN) + GENERATED_GBL_DATA_SIZE > CONFIG_SYS_INIT_RAM_SIZE
1145#error "SYS_MALLOC_F_LEN too large to fit into initial RAM."
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001146#endif
1147
1148 /* Leave 16+ byte for back chain termination and NULL return address */
Andy Yanad0ac4b2017-07-24 17:47:27 +08001149 subi r3,r3,((CONFIG_VAL(SYS_MALLOC_F_LEN)+16+15)&~0xf)
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001150#endif
1151
1152 /* End of RAM */
1153 lis r4,(CONFIG_SYS_INIT_RAM_ADDR)@h
1154 ori r4,r4,(CONFIG_SYS_INIT_RAM_SIZE)@l
1155
1156 li r0,0
1157
Wolfgang Denk62fb2b42021-09-27 17:42:39 +020011581: subi r4,r4,4
1159 stw r0,0(r4)
1160 cmplw r4,r3
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001161 bne 1b
1162
Andy Yanad0ac4b2017-07-24 17:47:27 +08001163#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Tom Rini4ddbade2022-05-25 12:16:03 -04001164 lis r4,SYS_INIT_SP_ADDR@h
1165 ori r4,r4,SYS_INIT_SP_ADDR@l
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001166
1167 addi r3,r3,16 /* Pre-relocation malloc area */
1168 stw r3,GD_MALLOC_BASE(r4)
1169 subi r3,r3,16
1170#endif
wdenk9c53f402003-10-15 23:53:47 +00001171 li r0,0
Joakim Tjernlund258120c2012-07-23 10:58:02 +00001172 stw r0,0(r3) /* Terminate Back Chain */
1173 stw r0,+4(r3) /* NULL return address. */
1174 mr r1,r3 /* Transfer to SP(r1) */
wdenk9c53f402003-10-15 23:53:47 +00001175
1176 GET_GOT
Joakim Tjernlundf2c2c302018-12-06 17:20:53 +01001177 /* Needed for -msingle-pic-base */
1178 bl _GLOBAL_OFFSET_TABLE_@local-4
1179 mflr r30
Alexander Grafc3468482014-04-11 17:09:45 +02001180
1181 /* Pass our potential ePAPR device tree pointer to cpu_init_early_f */
1182 mr r3, r24
1183
Kumar Gala9772ee72008-01-16 22:38:34 -06001184 bl cpu_init_early_f
1185
1186 /* switch back to AS = 0 */
1187 lis r3,(MSR_CE|MSR_ME|MSR_DE)@h
1188 ori r3,r3,(MSR_CE|MSR_ME|MSR_DE)@l
1189 mtmsr r3
1190 isync
1191
York Sun695c0c32014-04-30 14:43:47 -07001192 bl cpu_init_f /* return boot_flag for calling board_init_f */
wdenk9c53f402003-10-15 23:53:47 +00001193 bl board_init_f
wdenk13eb2212004-07-09 23:27:13 +00001194 isync
wdenk9c53f402003-10-15 23:53:47 +00001195
Peter Tyser0c44caf2010-09-14 19:13:53 -05001196 /* NOTREACHED - board_init_f() does not return */
1197
Scott Wood7c810902012-09-20 16:35:21 -05001198#ifndef MINIMAL_SPL
wdenk9c53f402003-10-15 23:53:47 +00001199 .globl _start_of_vectors
1200_start_of_vectors:
Andy Flemingf08233c2007-08-14 01:34:21 -05001201
wdenk9c53f402003-10-15 23:53:47 +00001202/* Critical input. */
Andy Flemingf08233c2007-08-14 01:34:21 -05001203 CRIT_EXCEPTION(0x0100, CriticalInput, CritcalInputException)
1204
1205/* Machine check */
1206 MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
wdenk9c53f402003-10-15 23:53:47 +00001207
1208/* Data Storage exception. */
1209 STD_EXCEPTION(0x0300, DataStorage, UnknownException)
1210
1211/* Instruction Storage exception. */
1212 STD_EXCEPTION(0x0400, InstStorage, UnknownException)
1213
1214/* External Interrupt exception. */
Andy Flemingf08233c2007-08-14 01:34:21 -05001215 STD_EXCEPTION(0x0500, ExtInterrupt, ExtIntException)
wdenk9c53f402003-10-15 23:53:47 +00001216
1217/* Alignment exception. */
wdenk9c53f402003-10-15 23:53:47 +00001218Alignment:
Rafal Jaworowski06244e42007-06-22 14:58:04 +02001219 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk9c53f402003-10-15 23:53:47 +00001220 mfspr r4,DAR
1221 stw r4,_DAR(r21)
1222 mfspr r5,DSISR
1223 stw r5,_DSISR(r21)
1224 addi r3,r1,STACK_FRAME_OVERHEAD
Scott Woodf21e7582015-04-07 20:20:00 -05001225 EXC_XFER_TEMPLATE(0x600, Alignment, AlignmentException,
1226 MSR_KERNEL, COPY_EE)
wdenk9c53f402003-10-15 23:53:47 +00001227
1228/* Program check exception */
wdenk9c53f402003-10-15 23:53:47 +00001229ProgramCheck:
Rafal Jaworowski06244e42007-06-22 14:58:04 +02001230 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk9c53f402003-10-15 23:53:47 +00001231 addi r3,r1,STACK_FRAME_OVERHEAD
Scott Woodf21e7582015-04-07 20:20:00 -05001232 EXC_XFER_TEMPLATE(0x700, ProgramCheck, ProgramCheckException,
Joakim Tjernlund4ff6bc02010-01-19 14:41:55 +01001233 MSR_KERNEL, COPY_EE)
wdenk9c53f402003-10-15 23:53:47 +00001234
1235 /* No FPU on MPC85xx. This exception is not supposed to happen.
1236 */
1237 STD_EXCEPTION(0x0800, FPUnavailable, UnknownException)
Scott Wood5b4d7ff2015-04-07 20:20:01 -05001238 STD_EXCEPTION(0x0900, SystemCall, UnknownException)
wdenkf3da7cc2005-05-13 22:49:36 +00001239 STD_EXCEPTION(0x0a00, Decrementer, timer_interrupt)
1240 STD_EXCEPTION(0x0b00, IntervalTimer, UnknownException)
1241 STD_EXCEPTION(0x0c00, WatchdogTimer, UnknownException)
wdenk9c53f402003-10-15 23:53:47 +00001242
wdenkf3da7cc2005-05-13 22:49:36 +00001243 STD_EXCEPTION(0x0d00, DataTLBError, UnknownException)
1244 STD_EXCEPTION(0x0e00, InstructionTLBError, UnknownException)
wdenk9c53f402003-10-15 23:53:47 +00001245
wdenkf3da7cc2005-05-13 22:49:36 +00001246 CRIT_EXCEPTION(0x0f00, DebugBreakpoint, DebugException )
wdenk9c53f402003-10-15 23:53:47 +00001247
wdenkf3da7cc2005-05-13 22:49:36 +00001248 .globl _end_of_vectors
wdenk9c53f402003-10-15 23:53:47 +00001249_end_of_vectors:
1250
1251
Andy Flemingf08233c2007-08-14 01:34:21 -05001252 . = . + (0x100 - ( . & 0xff )) /* align for debug */
wdenk9c53f402003-10-15 23:53:47 +00001253
1254/*
1255 * This code finishes saving the registers to the exception frame
1256 * and jumps to the appropriate handler for the exception.
1257 * Register r21 is pointer into trap frame, r1 has new stack pointer.
Scott Woodf21e7582015-04-07 20:20:00 -05001258 * r23 is the address of the handler.
wdenk9c53f402003-10-15 23:53:47 +00001259 */
1260 .globl transfer_to_handler
1261transfer_to_handler:
wdenk9c53f402003-10-15 23:53:47 +00001262 SAVE_GPR(7, r21)
1263 SAVE_4GPRS(8, r21)
1264 SAVE_8GPRS(12, r21)
1265 SAVE_8GPRS(24, r21)
1266
wdenk9c53f402003-10-15 23:53:47 +00001267 li r22,0
1268 stw r22,RESULT(r21)
1269 mtspr SPRG2,r22 /* r1 is now kernel sp */
1270
Scott Woodf21e7582015-04-07 20:20:00 -05001271 mtctr r23 /* virtual address of handler */
1272 mtmsr r20
1273 bctrl
wdenk9c53f402003-10-15 23:53:47 +00001274
1275int_return:
1276 mfmsr r28 /* Disable interrupts */
1277 li r4,0
1278 ori r4,r4,MSR_EE
1279 andc r28,r28,r4
1280 SYNC /* Some chip revs need this... */
1281 mtmsr r28
1282 SYNC
1283 lwz r2,_CTR(r1)
1284 lwz r0,_LINK(r1)
1285 mtctr r2
1286 mtlr r0
1287 lwz r2,_XER(r1)
1288 lwz r0,_CCR(r1)
1289 mtspr XER,r2
1290 mtcrf 0xFF,r0
1291 REST_10GPRS(3, r1)
1292 REST_10GPRS(13, r1)
1293 REST_8GPRS(23, r1)
1294 REST_GPR(31, r1)
1295 lwz r2,_NIP(r1) /* Restore environment */
1296 lwz r0,_MSR(r1)
1297 mtspr SRR0,r2
1298 mtspr SRR1,r0
1299 lwz r0,GPR0(r1)
1300 lwz r2,GPR2(r1)
1301 lwz r1,GPR1(r1)
1302 SYNC
1303 rfi
1304
wdenk9c53f402003-10-15 23:53:47 +00001305/* Cache functions.
1306*/
Matthew McClintockc83e7ef2011-05-23 08:38:53 +00001307.globl flush_icache
1308flush_icache:
Kumar Gala32090b32008-09-22 14:11:10 -05001309.globl invalidate_icache
wdenk9c53f402003-10-15 23:53:47 +00001310invalidate_icache:
1311 mfspr r0,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -05001312 ori r0,r0,L1CSR1_ICFI
1313 msync
1314 isync
wdenk9c53f402003-10-15 23:53:47 +00001315 mtspr L1CSR1,r0
1316 isync
Andy Flemingf08233c2007-08-14 01:34:21 -05001317 blr /* entire I cache */
wdenk9c53f402003-10-15 23:53:47 +00001318
Kumar Gala32090b32008-09-22 14:11:10 -05001319.globl invalidate_dcache
wdenk9c53f402003-10-15 23:53:47 +00001320invalidate_dcache:
1321 mfspr r0,L1CSR0
Andy Flemingf08233c2007-08-14 01:34:21 -05001322 ori r0,r0,L1CSR0_DCFI
wdenk9c53f402003-10-15 23:53:47 +00001323 msync
1324 isync
1325 mtspr L1CSR0,r0
1326 isync
1327 blr
1328
1329 .globl icache_enable
1330icache_enable:
1331 mflr r8
1332 bl invalidate_icache
1333 mtlr r8
1334 isync
1335 mfspr r4,L1CSR1
Mark Marshallf2770f42017-01-24 15:40:23 +01001336 ori r4,r4,(L1CSR1_CPE | L1CSR1_ICE)@l
1337 oris r4,r4,(L1CSR1_CPE | L1CSR1_ICE)@h
wdenk9c53f402003-10-15 23:53:47 +00001338 mtspr L1CSR1,r4
1339 isync
1340 blr
1341
1342 .globl icache_disable
1343icache_disable:
1344 mfspr r0,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -05001345 lis r3,0
1346 ori r3,r3,L1CSR1_ICE
1347 andc r0,r0,r3
wdenk9c53f402003-10-15 23:53:47 +00001348 mtspr L1CSR1,r0
1349 isync
1350 blr
1351
1352 .globl icache_status
1353icache_status:
1354 mfspr r3,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -05001355 andi. r3,r3,L1CSR1_ICE
wdenk9c53f402003-10-15 23:53:47 +00001356 blr
1357
1358 .globl dcache_enable
1359dcache_enable:
1360 mflr r8
1361 bl invalidate_dcache
1362 mtlr r8
1363 isync
1364 mfspr r0,L1CSR0
Mark Marshallf2770f42017-01-24 15:40:23 +01001365 ori r0,r0,(L1CSR0_CPE | L1CSR0_DCE)@l
1366 oris r0,r0,(L1CSR0_CPE | L1CSR0_DCE)@h
wdenk9c53f402003-10-15 23:53:47 +00001367 msync
1368 isync
1369 mtspr L1CSR0,r0
1370 isync
1371 blr
1372
1373 .globl dcache_disable
1374dcache_disable:
Andy Flemingf08233c2007-08-14 01:34:21 -05001375 mfspr r3,L1CSR0
1376 lis r4,0
1377 ori r4,r4,L1CSR0_DCE
1378 andc r3,r3,r4
Kumar Galafa103bf2011-01-05 10:33:46 -06001379 mtspr L1CSR0,r3
wdenk9c53f402003-10-15 23:53:47 +00001380 isync
1381 blr
1382
1383 .globl dcache_status
1384dcache_status:
1385 mfspr r3,L1CSR0
Andy Flemingf08233c2007-08-14 01:34:21 -05001386 andi. r3,r3,L1CSR0_DCE
wdenk9c53f402003-10-15 23:53:47 +00001387 blr
1388
wdenk9c53f402003-10-15 23:53:47 +00001389/*------------------------------------------------------------------------------- */
1390/* Function: in8 */
1391/* Description: Input 8 bits */
1392/*------------------------------------------------------------------------------- */
1393 .globl in8
1394in8:
1395 lbz r3,0x0000(r3)
1396 blr
1397
1398/*------------------------------------------------------------------------------- */
1399/* Function: out8 */
1400/* Description: Output 8 bits */
1401/*------------------------------------------------------------------------------- */
1402 .globl out8
1403out8:
1404 stb r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -05001405 sync
wdenk9c53f402003-10-15 23:53:47 +00001406 blr
1407
1408/*------------------------------------------------------------------------------- */
1409/* Function: out16 */
1410/* Description: Output 16 bits */
1411/*------------------------------------------------------------------------------- */
1412 .globl out16
1413out16:
1414 sth r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -05001415 sync
wdenk9c53f402003-10-15 23:53:47 +00001416 blr
1417
1418/*------------------------------------------------------------------------------- */
1419/* Function: out16r */
1420/* Description: Byte reverse and output 16 bits */
1421/*------------------------------------------------------------------------------- */
1422 .globl out16r
1423out16r:
1424 sthbrx r4,r0,r3
Ed Swarthout7d6be302007-09-26 16:35:54 -05001425 sync
wdenk9c53f402003-10-15 23:53:47 +00001426 blr
1427
1428/*------------------------------------------------------------------------------- */
1429/* Function: out32 */
1430/* Description: Output 32 bits */
1431/*------------------------------------------------------------------------------- */
1432 .globl out32
1433out32:
1434 stw r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -05001435 sync
wdenk9c53f402003-10-15 23:53:47 +00001436 blr
1437
1438/*------------------------------------------------------------------------------- */
1439/* Function: out32r */
1440/* Description: Byte reverse and output 32 bits */
1441/*------------------------------------------------------------------------------- */
1442 .globl out32r
1443out32r:
1444 stwbrx r4,r0,r3
Ed Swarthout7d6be302007-09-26 16:35:54 -05001445 sync
wdenk9c53f402003-10-15 23:53:47 +00001446 blr
1447
1448/*------------------------------------------------------------------------------- */
1449/* Function: in16 */
1450/* Description: Input 16 bits */
1451/*------------------------------------------------------------------------------- */
1452 .globl in16
1453in16:
1454 lhz r3,0x0000(r3)
1455 blr
1456
1457/*------------------------------------------------------------------------------- */
1458/* Function: in16r */
1459/* Description: Input 16 bits and byte reverse */
1460/*------------------------------------------------------------------------------- */
1461 .globl in16r
1462in16r:
1463 lhbrx r3,r0,r3
1464 blr
1465
1466/*------------------------------------------------------------------------------- */
1467/* Function: in32 */
1468/* Description: Input 32 bits */
1469/*------------------------------------------------------------------------------- */
1470 .globl in32
1471in32:
1472 lwz 3,0x0000(3)
1473 blr
1474
1475/*------------------------------------------------------------------------------- */
1476/* Function: in32r */
1477/* Description: Input 32 bits and byte reverse */
1478/*------------------------------------------------------------------------------- */
1479 .globl in32r
1480in32r:
1481 lwbrx r3,r0,r3
1482 blr
Scott Wood7c810902012-09-20 16:35:21 -05001483#endif /* !MINIMAL_SPL */
wdenk9c53f402003-10-15 23:53:47 +00001484
wdenk9c53f402003-10-15 23:53:47 +00001485/*------------------------------------------------------------------------------*/
1486
1487/*
Kumar Galac417c912009-09-11 11:27:00 -05001488 * void write_tlb(mas0, mas1, mas2, mas3, mas7)
1489 */
1490 .globl write_tlb
1491write_tlb:
1492 mtspr MAS0,r3
1493 mtspr MAS1,r4
1494 mtspr MAS2,r5
1495 mtspr MAS3,r6
1496#ifdef CONFIG_ENABLE_36BIT_PHYS
1497 mtspr MAS7,r7
1498#endif
1499 li r3,0
1500#ifdef CONFIG_SYS_BOOK3E_HV
1501 mtspr MAS8,r3
1502#endif
1503 isync
1504 tlbwe
1505 msync
1506 isync
1507 blr
1508
1509/*
Simon Glass284f71b2019-12-28 10:44:45 -07001510 * void relocate_code(addr_sp, gd, addr_moni)
wdenk9c53f402003-10-15 23:53:47 +00001511 *
1512 * This "function" does not return, instead it continues in RAM
1513 * after relocating the monitor code.
1514 *
1515 * r3 = dest
1516 * r4 = src
1517 * r5 = length in bytes
1518 * r6 = cachelinesize
1519 */
1520 .globl relocate_code
1521relocate_code:
Andy Flemingf08233c2007-08-14 01:34:21 -05001522 mr r1,r3 /* Set new stack pointer */
1523 mr r9,r4 /* Save copy of Init Data pointer */
1524 mr r10,r5 /* Save copy of Destination Address */
wdenk9c53f402003-10-15 23:53:47 +00001525
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001526 GET_GOT
Prabhakar Kushwaha6e2b9a32014-04-08 19:12:31 +05301527#ifndef CONFIG_SPL_SKIP_RELOCATE
Andy Flemingf08233c2007-08-14 01:34:21 -05001528 mr r3,r5 /* Destination Address */
Tom Rini03becca2022-03-24 17:18:05 -04001529 lis r4,CONFIG_VAL(SYS_MONITOR_BASE)@h /* Source Address */
1530 ori r4,r4,CONFIG_VAL(SYS_MONITOR_BASE)@l
wdenk9c53f402003-10-15 23:53:47 +00001531 lwz r5,GOT(__init_end)
1532 sub r5,r5,r4
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001533 li r6,CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
wdenk9c53f402003-10-15 23:53:47 +00001534
1535 /*
1536 * Fix GOT pointer:
1537 *
Tom Rini03becca2022-03-24 17:18:05 -04001538 * New GOT-PTR = (old GOT-PTR - CONFIG_VAL(SYS_MONITOR_BASE)) + Destination Address
wdenk9c53f402003-10-15 23:53:47 +00001539 *
1540 * Offset:
1541 */
Andy Flemingf08233c2007-08-14 01:34:21 -05001542 sub r15,r10,r4
wdenk9c53f402003-10-15 23:53:47 +00001543
1544 /* First our own GOT */
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001545 add r12,r12,r15
wdenk9c53f402003-10-15 23:53:47 +00001546 /* the the one used by the C code */
Andy Flemingf08233c2007-08-14 01:34:21 -05001547 add r30,r30,r15
wdenk9c53f402003-10-15 23:53:47 +00001548
1549 /*
1550 * Now relocate code
1551 */
1552
1553 cmplw cr1,r3,r4
1554 addi r0,r5,3
1555 srwi. r0,r0,2
1556 beq cr1,4f /* In place copy is not necessary */
1557 beq 7f /* Protect against 0 count */
1558 mtctr r0
1559 bge cr1,2f
1560
1561 la r8,-4(r4)
1562 la r7,-4(r3)
15631: lwzu r0,4(r8)
1564 stwu r0,4(r7)
1565 bdnz 1b
1566 b 4f
1567
15682: slwi r0,r0,2
1569 add r8,r4,r0
1570 add r7,r3,r0
15713: lwzu r0,-4(r8)
1572 stwu r0,-4(r7)
1573 bdnz 3b
1574
1575/*
1576 * Now flush the cache: note that we must start from a cache aligned
1577 * address. Otherwise we might miss one cache line.
1578 */
15794: cmpwi r6,0
1580 add r5,r3,r5
1581 beq 7f /* Always flush prefetch queue in any case */
1582 subi r0,r6,1
1583 andc r3,r3,r0
1584 mr r4,r3
15855: dcbst 0,r4
1586 add r4,r4,r6
1587 cmplw r4,r5
1588 blt 5b
1589 sync /* Wait for all dcbst to complete on bus */
1590 mr r4,r3
15916: icbi 0,r4
1592 add r4,r4,r6
1593 cmplw r4,r5
1594 blt 6b
15957: sync /* Wait for all icbi to complete on bus */
1596 isync
1597
1598/*
1599 * We are done. Do not return, instead branch to second part of board
1600 * initialization, now running from RAM.
1601 */
1602
Pali Rohár674642c2022-04-25 09:29:08 +05301603 addi r0,r10,in_ram - _start_cont
Prabhakar Kushwahabc8d57c2012-04-29 23:56:43 +00001604
1605 /*
1606 * As IVPR is going to point RAM address,
1607 * Make sure IVOR15 has valid opcode to support debugger
1608 */
1609 mtspr IVOR15,r0
1610
1611 /*
1612 * Re-point the IVPR at RAM
1613 */
1614 mtspr IVPR,r10
1615
wdenk9c53f402003-10-15 23:53:47 +00001616 mtlr r0
1617 blr /* NEVER RETURNS! */
Prabhakar Kushwaha6e2b9a32014-04-08 19:12:31 +05301618#endif
Andy Flemingf08233c2007-08-14 01:34:21 -05001619 .globl in_ram
wdenk9c53f402003-10-15 23:53:47 +00001620in_ram:
1621
1622 /*
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001623 * Relocation Function, r12 point to got2+0x8000
wdenk9c53f402003-10-15 23:53:47 +00001624 *
1625 * Adjust got2 pointers, no need to check for 0, this code
1626 * already puts a few entries in the table.
1627 */
1628 li r0,__got2_entries@sectoff@l
1629 la r3,GOT(_GOT2_TABLE_)
1630 lwz r11,GOT(_GOT2_TABLE_)
1631 mtctr r0
1632 sub r11,r3,r11
1633 addi r3,r3,-4
16341: lwzu r0,4(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +02001635 cmpwi r0,0
1636 beq- 2f
wdenk9c53f402003-10-15 23:53:47 +00001637 add r0,r0,r11
1638 stw r0,0(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +020016392: bdnz 1b
wdenk9c53f402003-10-15 23:53:47 +00001640
1641 /*
1642 * Now adjust the fixups and the pointers to the fixups
1643 * in case we need to move ourselves again.
1644 */
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +02001645 li r0,__fixup_entries@sectoff@l
wdenk9c53f402003-10-15 23:53:47 +00001646 lwz r3,GOT(_FIXUP_TABLE_)
1647 cmpwi r0,0
1648 mtctr r0
1649 addi r3,r3,-4
1650 beq 4f
16513: lwzu r4,4(r3)
1652 lwzux r0,r4,r11
Joakim Tjernlundc61b25a2010-10-14 11:51:44 +02001653 cmpwi r0,0
wdenk9c53f402003-10-15 23:53:47 +00001654 add r0,r0,r11
Joakim Tjernlund401b5922010-11-04 19:02:00 +01001655 stw r4,0(r3)
Joakim Tjernlundc61b25a2010-10-14 11:51:44 +02001656 beq- 5f
wdenk9c53f402003-10-15 23:53:47 +00001657 stw r0,0(r4)
Joakim Tjernlundc61b25a2010-10-14 11:51:44 +020016585: bdnz 3b
wdenk9c53f402003-10-15 23:53:47 +000016594:
1660clear_bss:
1661 /*
1662 * Now clear BSS segment
1663 */
1664 lwz r3,GOT(__bss_start)
Simon Glassed70c8f2013-03-14 06:54:53 +00001665 lwz r4,GOT(__bss_end)
wdenk9c53f402003-10-15 23:53:47 +00001666
Andy Flemingf08233c2007-08-14 01:34:21 -05001667 cmplw 0,r3,r4
wdenk9c53f402003-10-15 23:53:47 +00001668 beq 6f
1669
Andy Flemingf08233c2007-08-14 01:34:21 -05001670 li r0,0
wdenk9c53f402003-10-15 23:53:47 +000016715:
Andy Flemingf08233c2007-08-14 01:34:21 -05001672 stw r0,0(r3)
1673 addi r3,r3,4
1674 cmplw 0,r3,r4
Ying Zhang5ca62f22013-06-07 17:25:16 +08001675 blt 5b
wdenk9c53f402003-10-15 23:53:47 +000016766:
1677
Andy Flemingf08233c2007-08-14 01:34:21 -05001678 mr r3,r9 /* Init Data pointer */
1679 mr r4,r10 /* Destination Address */
wdenk9c53f402003-10-15 23:53:47 +00001680 bl board_init_r
1681
Scott Wood7c810902012-09-20 16:35:21 -05001682#ifndef MINIMAL_SPL
wdenk9c53f402003-10-15 23:53:47 +00001683 /*
1684 * Copy exception vector code to low memory
1685 *
1686 * r3: dest_addr
1687 * r7: source address, r8: end address, r9: target address
1688 */
wdenkf3da7cc2005-05-13 22:49:36 +00001689 .globl trap_init
wdenk9c53f402003-10-15 23:53:47 +00001690trap_init:
Scott Woodc4dfbee2015-04-23 20:01:56 -05001691 mflr r11
1692 bl _GLOBAL_OFFSET_TABLE_-4
1693 mflr r12
1694
Scott Woodf21e7582015-04-07 20:20:00 -05001695 /* Update IVORs as per relocation */
1696 mtspr IVPR,r3
wdenk9c53f402003-10-15 23:53:47 +00001697
Scott Woodc4dfbee2015-04-23 20:01:56 -05001698 lwz r4,CriticalInput@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001699 mtspr IVOR0,r4 /* 0: Critical input */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001700 lwz r4,MachineCheck@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001701 mtspr IVOR1,r4 /* 1: Machine check */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001702 lwz r4,DataStorage@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001703 mtspr IVOR2,r4 /* 2: Data storage */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001704 lwz r4,InstStorage@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001705 mtspr IVOR3,r4 /* 3: Instruction storage */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001706 lwz r4,ExtInterrupt@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001707 mtspr IVOR4,r4 /* 4: External interrupt */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001708 lwz r4,Alignment@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001709 mtspr IVOR5,r4 /* 5: Alignment */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001710 lwz r4,ProgramCheck@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001711 mtspr IVOR6,r4 /* 6: Program check */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001712 lwz r4,FPUnavailable@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001713 mtspr IVOR7,r4 /* 7: floating point unavailable */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001714 lwz r4,SystemCall@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001715 mtspr IVOR8,r4 /* 8: System call */
Prabhakar Kushwahaf8387862012-02-14 22:49:49 +00001716 /* 9: Auxiliary processor unavailable(unsupported) */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001717 lwz r4,Decrementer@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001718 mtspr IVOR10,r4 /* 10: Decrementer */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001719 lwz r4,IntervalTimer@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001720 mtspr IVOR11,r4 /* 11: Interval timer */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001721 lwz r4,WatchdogTimer@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001722 mtspr IVOR12,r4 /* 12: Watchdog timer */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001723 lwz r4,DataTLBError@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001724 mtspr IVOR13,r4 /* 13: Data TLB error */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001725 lwz r4,InstructionTLBError@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001726 mtspr IVOR14,r4 /* 14: Instruction TLB error */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001727 lwz r4,DebugBreakpoint@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001728 mtspr IVOR15,r4 /* 15: Debug */
wdenk9c53f402003-10-15 23:53:47 +00001729
Scott Woodc4dfbee2015-04-23 20:01:56 -05001730 mtlr r11
wdenk9c53f402003-10-15 23:53:47 +00001731 blr
1732
wdenk9c53f402003-10-15 23:53:47 +00001733.globl unlock_ram_in_cache
1734unlock_ram_in_cache:
1735 /* invalidate the INIT_RAM section */
Kumar Gala5c953ca2008-10-23 01:47:37 -05001736 lis r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@h
1737 ori r3,r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@l
Kumar Gala938e14e2008-01-08 01:22:21 -06001738 mfspr r4,L1CFG0
1739 andi. r4,r4,0x1ff
1740 slwi r4,r4,(10 - 1 - L1_CACHE_SHIFT)
Andy Flemingf08233c2007-08-14 01:34:21 -05001741 mtctr r4
Kumar Gala2a441212008-02-27 16:30:47 -060017421: dcbi r0,r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301743#ifdef CONFIG_E6500 /* lock/unlock L2 cache long with L1 */
York Sun8d45cc12015-08-17 13:31:52 -07001744 dcblc 2, r0, r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301745 dcblc 0, r0, r3
York Sun8d45cc12015-08-17 13:31:52 -07001746#else
York Sun52bf1022013-04-05 13:07:13 +00001747 dcblc r0,r3
York Sun8d45cc12015-08-17 13:31:52 -07001748#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001749 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE
wdenk9c53f402003-10-15 23:53:47 +00001750 bdnz 1b
Kumar Gala2a441212008-02-27 16:30:47 -06001751 sync
Andy Fleming5ba61fe2008-02-27 14:29:58 -06001752
1753 /* Invalidate the TLB entries for the cache */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001754 lis r3,CONFIG_SYS_INIT_RAM_ADDR@h
1755 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Andy Fleming5ba61fe2008-02-27 14:29:58 -06001756 tlbivax 0,r3
1757 addi r3,r3,0x1000
1758 tlbivax 0,r3
1759 addi r3,r3,0x1000
1760 tlbivax 0,r3
1761 addi r3,r3,0x1000
1762 tlbivax 0,r3
wdenk9c53f402003-10-15 23:53:47 +00001763 isync
1764 blr
Kumar Gala32090b32008-09-22 14:11:10 -05001765
1766.globl flush_dcache
1767flush_dcache:
1768 mfspr r3,SPRN_L1CFG0
1769
1770 rlwinm r5,r3,9,3 /* Extract cache block size */
1771 twlgti r5,1 /* Only 32 and 64 byte cache blocks
1772 * are currently defined.
1773 */
1774 li r4,32
1775 subfic r6,r5,2 /* r6 = log2(1KiB / cache block size) -
1776 * log2(number of ways)
1777 */
1778 slw r5,r4,r5 /* r5 = cache block size */
1779
1780 rlwinm r7,r3,0,0xff /* Extract number of KiB in the cache */
1781 mulli r7,r7,13 /* An 8-way cache will require 13
1782 * loads per set.
1783 */
1784 slw r7,r7,r6
1785
1786 /* save off HID0 and set DCFA */
1787 mfspr r8,SPRN_HID0
1788 ori r9,r8,HID0_DCFA@l
1789 mtspr SPRN_HID0,r9
1790 isync
1791
1792 lis r4,0
1793 mtctr r7
1794
17951: lwz r3,0(r4) /* Load... */
1796 add r4,r4,r5
1797 bdnz 1b
1798
1799 msync
1800 lis r4,0
1801 mtctr r7
1802
18031: dcbf 0,r4 /* ...and flush. */
1804 add r4,r4,r5
1805 bdnz 1b
1806
1807 /* restore HID0 */
1808 mtspr SPRN_HID0,r8
1809 isync
1810
1811 blr
Scott Wood7c810902012-09-20 16:35:21 -05001812#endif /* !MINIMAL_SPL */