blob: 07e855e89b4ee8f130e494063658da240308c450 [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>
wdenk9c53f402003-10-15 23:53:47 +000017
wdenk9c53f402003-10-15 23:53:47 +000018#include <ppc_asm.tmpl>
19#include <ppc_defs.h>
20
21#include <asm/cache.h>
22#include <asm/mmu.h>
23
wdenk9c53f402003-10-15 23:53:47 +000024#undef MSR_KERNEL
Andy Flemingf08233c2007-08-14 01:34:21 -050025#define MSR_KERNEL ( MSR_ME ) /* Machine Check */
wdenk9c53f402003-10-15 23:53:47 +000026
Prabhakar Kushwaha3fc2e892014-04-08 19:12:05 +053027#define LAW_EN 0x80000000
28
Scott Wood7c810902012-09-20 16:35:21 -050029#if defined(CONFIG_NAND_SPL) || \
30 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_INIT_MINIMAL))
31#define MINIMAL_SPL
32#endif
33
Liu Gangee9d7532013-06-28 17:58:37 +080034#if !defined(CONFIG_SPL) && !defined(CONFIG_SYS_RAMBOOT) && \
Udit Agarwald2dd2f72019-11-07 16:11:39 +000035 !defined(CONFIG_NXP_ESBC) && !defined(CONFIG_SRIO_PCIE_BOOT_SLAVE)
Scott Wood7c810902012-09-20 16:35:21 -050036#define NOR_BOOT
37#endif
38
wdenk9c53f402003-10-15 23:53:47 +000039/*
40 * Set up GOT: Global Offset Table
41 *
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +010042 * Use r12 to access the GOT
wdenk9c53f402003-10-15 23:53:47 +000043 */
44 START_GOT
45 GOT_ENTRY(_GOT2_TABLE_)
46 GOT_ENTRY(_FIXUP_TABLE_)
47
Scott Wood7c810902012-09-20 16:35:21 -050048#ifndef MINIMAL_SPL
wdenk9c53f402003-10-15 23:53:47 +000049 GOT_ENTRY(_start_of_vectors)
50 GOT_ENTRY(_end_of_vectors)
51 GOT_ENTRY(transfer_to_handler)
Mingkai Hu0255cd72009-09-11 14:19:10 +080052#endif
wdenk9c53f402003-10-15 23:53:47 +000053
54 GOT_ENTRY(__init_end)
Simon Glassed70c8f2013-03-14 06:54:53 +000055 GOT_ENTRY(__bss_end)
wdenk9c53f402003-10-15 23:53:47 +000056 GOT_ENTRY(__bss_start)
57 END_GOT
58
59/*
60 * e500 Startup -- after reset only the last 4KB of the effective
61 * address space is mapped in the MMU L2 TLB1 Entry0. The .bootpg
62 * section is located at THIS LAST page and basically does three
63 * things: clear some registers, set up exception tables and
64 * add more TLB entries for 'larger spaces'(e.g. the boot rom) to
65 * continue the boot procedure.
66
67 * Once the boot rom is mapped by TLB entries we can proceed
68 * with normal startup.
69 *
70 */
71
Andy Flemingf08233c2007-08-14 01:34:21 -050072 .section .bootpg,"ax"
73 .globl _start_e500
wdenk9c53f402003-10-15 23:53:47 +000074
75_start_e500:
Prabhakar Kushwaha8f3e8922012-04-29 23:56:30 +000076/* Enable debug exception */
77 li r1,MSR_DE
Wolfgang Denk62fb2b42021-09-27 17:42:39 +020078 mtmsr r1
wdenka445ddf2004-06-09 00:34:46 +000079
Alexander Grafc3468482014-04-11 17:09:45 +020080 /*
81 * If we got an ePAPR device tree pointer passed in as r3, we need that
82 * later in cpu_init_early_f(). Save it to a safe register before we
83 * clobber it so that we can fetch it from there later.
84 */
85 mr r24, r3
86
Scott Wood80806962012-08-14 10:14:53 +000087#ifdef CONFIG_SYS_FSL_ERRATUM_A004510
88 mfspr r3,SPRN_SVR
89 rlwinm r3,r3,0,0xff
90 li r4,CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV
91 cmpw r3,r4
92 beq 1f
93
94#ifdef CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2
95 li r4,CONFIG_SYS_FSL_ERRATUM_A004510_SVR_REV2
96 cmpw r3,r4
97 beq 1f
98#endif
99
100 /* Not a supported revision affected by erratum */
101 li r27,0
102 b 2f
103
1041: li r27,1 /* Remember for later that we have the erratum */
105 /* Erratum says set bits 55:60 to 001001 */
106 msync
107 isync
Andy Flemingeab55c02013-03-25 07:33:10 +0000108 mfspr r3,SPRN_HDBCR0
Scott Wood80806962012-08-14 10:14:53 +0000109 li r4,0x48
110 rlwimi r3,r4,0,0x1f8
Andy Flemingeab55c02013-03-25 07:33:10 +0000111 mtspr SPRN_HDBCR0,r3
Scott Wood80806962012-08-14 10:14:53 +0000112 isync
1132:
114#endif
York Sun0cc59072013-08-20 15:09:43 -0700115#ifdef CONFIG_SYS_FSL_ERRATUM_A005125
116 msync
117 isync
118 mfspr r3, SPRN_HDBCR0
119 oris r3, r3, 0x0080
120 mtspr SPRN_HDBCR0, r3
121#endif
122
Scott Wood80806962012-08-14 10:14:53 +0000123
Udit Agarwald2dd2f72019-11-07 16:11:39 +0000124#if defined(CONFIG_NXP_ESBC) && defined(CONFIG_E500MC) && \
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530125 !defined(CONFIG_E6500)
Ruchika Gupta8ca8d822010-12-15 17:02:08 +0000126 /* ISBC uses L2 as stack.
127 * Disable L2 cache here so that u-boot can enable it later
128 * as part of it's normal flow
129 */
130
131 /* Check if L2 is enabled */
132 mfspr r3, SPRN_L2CSR0
133 lis r2, L2CSR0_L2E@h
134 ori r2, r2, L2CSR0_L2E@l
135 and. r4, r3, r2
136 beq l2_disabled
137
138 mfspr r3, SPRN_L2CSR0
139 /* Flush L2 cache */
140 lis r2,(L2CSR0_L2FL)@h
141 ori r2, r2, (L2CSR0_L2FL)@l
142 or r3, r2, r3
143 sync
144 isync
145 mtspr SPRN_L2CSR0,r3
146 isync
1471:
148 mfspr r3, SPRN_L2CSR0
149 and. r1, r3, r2
150 bne 1b
151
152 mfspr r3, SPRN_L2CSR0
153 lis r2, L2CSR0_L2E@h
154 ori r2, r2, L2CSR0_L2E@l
155 andc r4, r3, r2
156 sync
157 isync
158 mtspr SPRN_L2CSR0,r4
159 isync
160
161l2_disabled:
162#endif
163
Andy Flemingf08233c2007-08-14 01:34:21 -0500164/* clear registers/arrays not reset by hardware */
wdenk9c53f402003-10-15 23:53:47 +0000165
Andy Flemingf08233c2007-08-14 01:34:21 -0500166 /* L1 */
167 li r0,2
168 mtspr L1CSR0,r0 /* invalidate d-cache */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200169 mtspr L1CSR1,r0 /* invalidate i-cache */
wdenk9c53f402003-10-15 23:53:47 +0000170
171 mfspr r1,DBSR
172 mtspr DBSR,r1 /* Clear all valid bits */
173
wdenk9c53f402003-10-15 23:53:47 +0000174
York Sun0f2f2a32012-10-08 07:44:07 +0000175 .macro create_tlb1_entry esel ts tsize epn wimg rpn perm phy_high scratch
176 lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h
177 ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l
178 mtspr MAS0, \scratch
179 lis \scratch, FSL_BOOKE_MAS1(1, 1, 0, \ts, \tsize)@h
180 ori \scratch, \scratch, FSL_BOOKE_MAS1(1, 1, 0, \ts, \tsize)@l
181 mtspr MAS1, \scratch
182 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h
183 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l
184 mtspr MAS2, \scratch
185 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h
186 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l
187 mtspr MAS3, \scratch
188 lis \scratch, \phy_high@h
189 ori \scratch, \scratch, \phy_high@l
190 mtspr MAS7, \scratch
191 isync
192 msync
193 tlbwe
194 isync
195 .endm
196
197 .macro create_tlb0_entry esel ts tsize epn wimg rpn perm phy_high scratch
198 lis \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@h
199 ori \scratch, \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@l
200 mtspr MAS0, \scratch
201 lis \scratch, FSL_BOOKE_MAS1(1, 0, 0, \ts, \tsize)@h
202 ori \scratch, \scratch, FSL_BOOKE_MAS1(1, 0, 0, \ts, \tsize)@l
203 mtspr MAS1, \scratch
204 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h
205 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l
206 mtspr MAS2, \scratch
207 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h
208 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l
209 mtspr MAS3, \scratch
210 lis \scratch, \phy_high@h
211 ori \scratch, \scratch, \phy_high@l
212 mtspr MAS7, \scratch
213 isync
214 msync
215 tlbwe
216 isync
217 .endm
218
219 .macro delete_tlb1_entry esel scratch
220 lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h
221 ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l
222 mtspr MAS0, \scratch
223 li \scratch, 0
224 mtspr MAS1, \scratch
225 isync
226 msync
227 tlbwe
228 isync
229 .endm
230
231 .macro delete_tlb0_entry esel epn wimg scratch
232 lis \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@h
233 ori \scratch, \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@l
234 mtspr MAS0, \scratch
235 li \scratch, 0
236 mtspr MAS1, \scratch
237 lis \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@h
238 ori \scratch, \scratch, FSL_BOOKE_MAS2(\epn, \wimg)@l
239 mtspr MAS2, \scratch
240 isync
241 msync
242 tlbwe
243 isync
244 .endm
245
Scott Wood7c810902012-09-20 16:35:21 -0500246/* Interrupt vectors do not fit in minimal SPL. */
247#if !defined(MINIMAL_SPL)
wdenk9c53f402003-10-15 23:53:47 +0000248 /* Setup interrupt vectors */
Tom Rini03becca2022-03-24 17:18:05 -0400249 lis r1,CONFIG_VAL(SYS_MONITOR_BASE)@h
Andy Flemingf08233c2007-08-14 01:34:21 -0500250 mtspr IVPR,r1
wdenk9c53f402003-10-15 23:53:47 +0000251
Scott Woodf21e7582015-04-07 20:20:00 -0500252 li r4,CriticalInput@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000253 mtspr IVOR0,r4 /* 0: Critical input */
Scott Woodf21e7582015-04-07 20:20:00 -0500254 li r4,MachineCheck@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000255 mtspr IVOR1,r4 /* 1: Machine check */
Scott Woodf21e7582015-04-07 20:20:00 -0500256 li r4,DataStorage@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000257 mtspr IVOR2,r4 /* 2: Data storage */
Scott Woodf21e7582015-04-07 20:20:00 -0500258 li r4,InstStorage@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000259 mtspr IVOR3,r4 /* 3: Instruction storage */
Scott Woodf21e7582015-04-07 20:20:00 -0500260 li r4,ExtInterrupt@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000261 mtspr IVOR4,r4 /* 4: External interrupt */
Scott Woodf21e7582015-04-07 20:20:00 -0500262 li r4,Alignment@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000263 mtspr IVOR5,r4 /* 5: Alignment */
Scott Woodf21e7582015-04-07 20:20:00 -0500264 li r4,ProgramCheck@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000265 mtspr IVOR6,r4 /* 6: Program check */
Scott Woodf21e7582015-04-07 20:20:00 -0500266 li r4,FPUnavailable@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000267 mtspr IVOR7,r4 /* 7: floating point unavailable */
Scott Woodf21e7582015-04-07 20:20:00 -0500268 li r4,SystemCall@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000269 mtspr IVOR8,r4 /* 8: System call */
wdenk9c53f402003-10-15 23:53:47 +0000270 /* 9: Auxiliary processor unavailable(unsupported) */
Scott Woodf21e7582015-04-07 20:20:00 -0500271 li r4,Decrementer@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000272 mtspr IVOR10,r4 /* 10: Decrementer */
Scott Woodf21e7582015-04-07 20:20:00 -0500273 li r4,IntervalTimer@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000274 mtspr IVOR11,r4 /* 11: Interval timer */
Scott Woodf21e7582015-04-07 20:20:00 -0500275 li r4,WatchdogTimer@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000276 mtspr IVOR12,r4 /* 12: Watchdog timer */
Scott Woodf21e7582015-04-07 20:20:00 -0500277 li r4,DataTLBError@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000278 mtspr IVOR13,r4 /* 13: Data TLB error */
Scott Woodf21e7582015-04-07 20:20:00 -0500279 li r4,InstructionTLBError@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000280 mtspr IVOR14,r4 /* 14: Instruction TLB error */
Scott Woodf21e7582015-04-07 20:20:00 -0500281 li r4,DebugBreakpoint@l
Prabhakar Kushwaha2153b572012-02-14 22:49:29 +0000282 mtspr IVOR15,r4 /* 15: Debug */
Prabhakar Kushwaha4a664222012-02-14 22:50:02 +0000283#endif
wdenk9c53f402003-10-15 23:53:47 +0000284
wdenk9c53f402003-10-15 23:53:47 +0000285 /* Clear and set up some registers. */
Kumar Gala9772ee72008-01-16 22:38:34 -0600286 li r0,0x0000
wdenk9c53f402003-10-15 23:53:47 +0000287 lis r1,0xffff
288 mtspr DEC,r0 /* prevent dec exceptions */
289 mttbl r0 /* prevent fit & wdt exceptions */
290 mttbu r0
291 mtspr TSR,r1 /* clear all timer exception status */
292 mtspr TCR,r0 /* disable all */
293 mtspr ESR,r0 /* clear exception syndrome register */
294 mtspr MCSR,r0 /* machine check syndrome register */
295 mtxer r0 /* clear integer exception register */
wdenk9c53f402003-10-15 23:53:47 +0000296
Scott Wood31e60102009-08-20 17:45:05 -0500297#ifdef CONFIG_SYS_BOOK3E_HV
298 mtspr MAS8,r0 /* make sure MAS8 is clear */
299#endif
300
wdenk9c53f402003-10-15 23:53:47 +0000301 /* Enable Time Base and Select Time Base Clock */
wdenk13eb2212004-07-09 23:27:13 +0000302 lis r0,HID0_EMCP@h /* Enable machine check */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500303#if defined(CONFIG_ENABLE_36BIT_PHYS)
Kumar Gala9772ee72008-01-16 22:38:34 -0600304 ori r0,r0,HID0_ENMAS7@l /* Enable MAS7 */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500305#endif
Kumar Galae56f2c52009-03-19 09:16:10 -0500306#ifndef CONFIG_E500MC
Kumar Gala9772ee72008-01-16 22:38:34 -0600307 ori r0,r0,HID0_TBEN@l /* Enable Timebase */
Kumar Galae56f2c52009-03-19 09:16:10 -0500308#endif
wdenk9c53f402003-10-15 23:53:47 +0000309 mtspr HID0,r0
wdenk9c53f402003-10-15 23:53:47 +0000310
York Sun51e91e82016-11-18 12:29:51 -0800311#if !defined(CONFIG_E500MC) && !defined(CONFIG_ARCH_QEMU_E500)
Andy Flemingf08233c2007-08-14 01:34:21 -0500312 li r0,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */
Sandeep Gopalpet8709aed2010-03-12 10:45:02 +0530313 mfspr r3,PVR
314 andi. r3,r3, 0xff
315 cmpwi r3,0x50@l /* if we are rev 5.0 or greater set MBDD */
316 blt 1f
317 /* Set MBDD bit also */
318 ori r0, r0, HID1_MBDD@l
3191:
wdenk9c53f402003-10-15 23:53:47 +0000320 mtspr HID1,r0
Kumar Gala9f4a6892008-10-23 01:47:38 -0500321#endif
wdenk9c53f402003-10-15 23:53:47 +0000322
Kumar Gala945e59a2011-11-22 06:51:15 -0600323#ifdef CONFIG_SYS_FSL_ERRATUM_CPU_A003999
Andy Flemingeab55c02013-03-25 07:33:10 +0000324 mfspr r3,SPRN_HDBCR1
Kumar Gala945e59a2011-11-22 06:51:15 -0600325 oris r3,r3,0x0100
Andy Flemingeab55c02013-03-25 07:33:10 +0000326 mtspr SPRN_HDBCR1,r3
Kumar Gala945e59a2011-11-22 06:51:15 -0600327#endif
328
wdenk9c53f402003-10-15 23:53:47 +0000329 /* Enable Branch Prediction */
330#if defined(CONFIG_BTB)
Kumar Gala5530cb82010-03-29 13:50:31 -0500331 lis r0,BUCSR_ENABLE@h
332 ori r0,r0,BUCSR_ENABLE@l
333 mtspr SPRN_BUCSR,r0
wdenk9c53f402003-10-15 23:53:47 +0000334#endif
335
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200336#if defined(CONFIG_SYS_INIT_DBCR)
wdenk9c53f402003-10-15 23:53:47 +0000337 lis r1,0xffff
338 ori r1,r1,0xffff
wdenk13eb2212004-07-09 23:27:13 +0000339 mtspr DBSR,r1 /* Clear all status bits */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200340 lis r0,CONFIG_SYS_INIT_DBCR@h /* DBCR0[IDM] must be set */
341 ori r0,r0,CONFIG_SYS_INIT_DBCR@l
wdenk13eb2212004-07-09 23:27:13 +0000342 mtspr DBCR0,r0
wdenk9c53f402003-10-15 23:53:47 +0000343#endif
344
Timur Tabie769dea2011-08-03 16:30:10 -0500345/*
Timur Tabic9a1b772011-10-31 13:30:45 -0500346 * Search for the TLB that covers the code we're executing, and shrink it
347 * so that it covers only this 4K page. That will ensure that any other
348 * TLB we create won't interfere with it. We assume that the TLB exists,
Scott Wood2bfa0f42012-08-20 13:10:08 +0000349 * which is why we don't check the Valid bit of MAS1. We also assume
350 * it is in TLB1.
Timur Tabic9a1b772011-10-31 13:30:45 -0500351 *
352 * This is necessary, for example, when booting from the on-chip ROM,
353 * which (oddly) creates a single 4GB TLB that covers CCSR and DDR.
Timur Tabic9a1b772011-10-31 13:30:45 -0500354 */
355 bl nexti /* Find our address */
356nexti: mflr r1 /* R1 = our PC */
357 li r2, 0
358 mtspr MAS6, r2 /* Assume the current PID and AS are 0 */
359 isync
360 msync
361 tlbsx 0, r1 /* This must succeed */
362
Scott Wood2bfa0f42012-08-20 13:10:08 +0000363 mfspr r14, MAS0 /* Save ESEL for later */
364 rlwinm r14, r14, 16, 0xfff
365
Timur Tabic9a1b772011-10-31 13:30:45 -0500366 /* Set the size of the TLB to 4KB */
367 mfspr r3, MAS1
Scott Wood33a619c2013-01-18 15:45:58 +0000368 li r2, 0xF80
Timur Tabic9a1b772011-10-31 13:30:45 -0500369 andc r3, r3, r2 /* Clear the TSIZE bits */
370 ori r3, r3, MAS1_TSIZE(BOOKE_PAGESZ_4K)@l
Scott Wood2bfa0f42012-08-20 13:10:08 +0000371 oris r3, r3, MAS1_IPROT@h
Timur Tabic9a1b772011-10-31 13:30:45 -0500372 mtspr MAS1, r3
373
374 /*
375 * Set the base address of the TLB to our PC. We assume that
376 * virtual == physical. We also assume that MAS2_EPN == MAS3_RPN.
377 */
378 lis r3, MAS2_EPN@h
379 ori r3, r3, MAS2_EPN@l /* R3 = MAS2_EPN */
380
381 and r1, r1, r3 /* Our PC, rounded down to the nearest page */
382
383 mfspr r2, MAS2
384 andc r2, r2, r3
385 or r2, r2, r1
Scott Wood80806962012-08-14 10:14:53 +0000386#ifdef CONFIG_SYS_FSL_ERRATUM_A004510
387 cmpwi r27,0
388 beq 1f
389 andi. r15, r2, MAS2_I|MAS2_G /* save the old I/G for later */
390 rlwinm r2, r2, 0, ~MAS2_I
391 ori r2, r2, MAS2_G
3921:
393#endif
Timur Tabic9a1b772011-10-31 13:30:45 -0500394 mtspr MAS2, r2 /* Set the EPN to our PC base address */
395
396 mfspr r2, MAS3
397 andc r2, r2, r3
398 or r2, r2, r1
399 mtspr MAS3, r2 /* Set the RPN to our PC base address */
400
401 isync
402 msync
403 tlbwe
Scott Wood2bfa0f42012-08-20 13:10:08 +0000404
405/*
406 * Clear out any other TLB entries that may exist, to avoid conflicts.
407 * Our TLB entry is in r14.
408 */
409 li r0, TLBIVAX_ALL | TLBIVAX_TLB0
410 tlbivax 0, r0
411 tlbsync
412
413 mfspr r4, SPRN_TLB1CFG
414 rlwinm r4, r4, 0, TLBnCFG_NENTRY_MASK
415
416 li r3, 0
417 mtspr MAS1, r3
4181: cmpw r3, r14
Scott Wood2bfa0f42012-08-20 13:10:08 +0000419 rlwinm r5, r3, 16, MAS0_ESEL_MSK
420 addi r3, r3, 1
421 beq 2f /* skip the entry we're executing from */
422
423 oris r5, r5, MAS0_TLBSEL(1)@h
424 mtspr MAS0, r5
425
426 isync
427 tlbwe
428 isync
429 msync
430
4312: cmpw r3, r4
432 blt 1b
Timur Tabic9a1b772011-10-31 13:30:45 -0500433
Aneesh Bansalbf955b22014-03-12 00:07:27 +0530434#if defined(CONFIG_SYS_PPC_E500_DEBUG_TLB) && !defined(MINIMAL_SPL) && \
Udit Agarwald2dd2f72019-11-07 16:11:39 +0000435 !defined(CONFIG_NXP_ESBC)
Scott Woodd6a82882012-10-25 19:27:41 -0500436/*
437 * TLB entry for debuggging in AS1
438 * Create temporary TLB entry in AS0 to handle debug exception
439 * As on debug exception MSR is cleared i.e. Address space is changed
440 * to 0. A TLB entry (in AS0) is required to handle debug exception generated
441 * in AS1.
442 */
443
Scott Wood7c810902012-09-20 16:35:21 -0500444#ifdef NOR_BOOT
Scott Woodd6a82882012-10-25 19:27:41 -0500445/*
446 * TLB entry is created for IVPR + IVOR15 to map on valid OP code address
447 * bacause flash's virtual address maps to 0xff800000 - 0xffffffff.
448 * and this window is outside of 4K boot window.
449 */
450 create_tlb1_entry CONFIG_SYS_PPC_E500_DEBUG_TLB, \
451 0, BOOKE_PAGESZ_4M, \
Tom Rini03becca2022-03-24 17:18:05 -0400452 CONFIG_VAL(SYS_MONITOR_BASE) & 0xffc00000, MAS2_I|MAS2_G, \
Scott Woodd6a82882012-10-25 19:27:41 -0500453 0xffc00000, MAS3_SX|MAS3_SW|MAS3_SR, \
454 0, r6
455
Scott Woodd6a82882012-10-25 19:27:41 -0500456#else
457/*
458 * TLB entry is created for IVPR + IVOR15 to map on valid OP code address
459 * because "nexti" will resize TLB to 4K
460 */
461 create_tlb1_entry CONFIG_SYS_PPC_E500_DEBUG_TLB, \
462 0, BOOKE_PAGESZ_256K, \
Tom Rini03becca2022-03-24 17:18:05 -0400463 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfffc0000, MAS2_I, \
464 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfffc0000, MAS3_SX|MAS3_SW|MAS3_SR, \
Scott Woodd6a82882012-10-25 19:27:41 -0500465 0, r6
466#endif
467#endif
468
Timur Tabic9a1b772011-10-31 13:30:45 -0500469/*
Timur Tabie769dea2011-08-03 16:30:10 -0500470 * Relocate CCSR, if necessary. We relocate CCSR if (obviously) the default
471 * location is not where we want it. This typically happens on a 36-bit
472 * system, where we want to move CCSR to near the top of 36-bit address space.
473 *
474 * To move CCSR, we create two temporary TLBs, one for the old location, and
475 * another for the new location. On CoreNet systems, we also need to create
476 * a special, temporary LAW.
477 *
478 * As a general rule, TLB0 is used for short-term TLBs, and TLB1 is used for
479 * long-term TLBs, so we use TLB0 here.
480 */
481#if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS)
482
483#if !defined(CONFIG_SYS_CCSRBAR_PHYS_HIGH) || !defined(CONFIG_SYS_CCSRBAR_PHYS_LOW)
484#error "CONFIG_SYS_CCSRBAR_PHYS_HIGH and CONFIG_SYS_CCSRBAR_PHYS_LOW) must be defined."
485#endif
486
Timur Tabie769dea2011-08-03 16:30:10 -0500487create_ccsr_new_tlb:
488 /*
489 * Create a TLB for the new location of CCSR. Register R8 is reserved
490 * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR).
491 */
Scott Wood2bfa0f42012-08-20 13:10:08 +0000492 lis r8, CONFIG_SYS_CCSRBAR@h
493 ori r8, r8, CONFIG_SYS_CCSRBAR@l
494 lis r9, (CONFIG_SYS_CCSRBAR + 0x1000)@h
495 ori r9, r9, (CONFIG_SYS_CCSRBAR + 0x1000)@l
York Sun0f2f2a32012-10-08 07:44:07 +0000496 create_tlb0_entry 0, \
497 0, BOOKE_PAGESZ_4K, \
498 CONFIG_SYS_CCSRBAR, MAS2_I|MAS2_G, \
499 CONFIG_SYS_CCSRBAR_PHYS_LOW, MAS3_SW|MAS3_SR, \
500 CONFIG_SYS_CCSRBAR_PHYS_HIGH, r3
Timur Tabie769dea2011-08-03 16:30:10 -0500501 /*
Timur Tabi40402f02011-10-31 13:30:42 -0500502 * Create a TLB for the current location of CCSR. Register R9 is reserved
Timur Tabie769dea2011-08-03 16:30:10 -0500503 * for the virtual address of this TLB (CONFIG_SYS_CCSRBAR + 0x1000).
504 */
505create_ccsr_old_tlb:
York Sun0f2f2a32012-10-08 07:44:07 +0000506 create_tlb0_entry 1, \
507 0, BOOKE_PAGESZ_4K, \
508 CONFIG_SYS_CCSRBAR + 0x1000, MAS2_I|MAS2_G, \
509 CONFIG_SYS_CCSRBAR_DEFAULT, MAS3_SW|MAS3_SR, \
510 0, r3 /* The default CCSR address is always a 32-bit number */
511
Timur Tabie769dea2011-08-03 16:30:10 -0500512
Timur Tabic19b0682011-10-31 13:30:44 -0500513 /*
514 * We have a TLB for what we think is the current (old) CCSR. Let's
515 * verify that, otherwise we won't be able to move it.
516 * CONFIG_SYS_CCSRBAR_DEFAULT is always a 32-bit number, so we only
517 * need to compare the lower 32 bits of CCSRBAR on CoreNet systems.
518 */
519verify_old_ccsr:
520 lis r0, CONFIG_SYS_CCSRBAR_DEFAULT@h
521 ori r0, r0, CONFIG_SYS_CCSRBAR_DEFAULT@l
522#ifdef CONFIG_FSL_CORENET
523 lwz r1, 4(r9) /* CCSRBARL */
524#else
525 lwz r1, 0(r9) /* CCSRBAR, shifted right by 12 */
526 slwi r1, r1, 12
527#endif
528
529 cmpl 0, r0, r1
530
531 /*
532 * If the value we read from CCSRBARL is not what we expect, then
533 * enter an infinite loop. This will at least allow a debugger to
534 * halt execution and examine TLBs, etc. There's no point in going
535 * on.
536 */
537infinite_debug_loop:
538 bne infinite_debug_loop
539
Timur Tabie769dea2011-08-03 16:30:10 -0500540#ifdef CONFIG_FSL_CORENET
541
542#define CCSR_LAWBARH0 (CONFIG_SYS_CCSRBAR + 0x1000)
Timur Tabie769dea2011-08-03 16:30:10 -0500543#define LAW_SIZE_4K 0xb
544#define CCSRBAR_LAWAR (LAW_EN | (0x1e << 20) | LAW_SIZE_4K)
545#define CCSRAR_C 0x80000000 /* Commit */
546
547create_temp_law:
548 /*
549 * On CoreNet systems, we create the temporary LAW using a special LAW
550 * target ID of 0x1e. LAWBARH is at offset 0xc00 in CCSR.
551 */
552 lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h
553 ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l
554 lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h
555 ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l
556 lis r2, CCSRBAR_LAWAR@h
557 ori r2, r2, CCSRBAR_LAWAR@l
558
559 stw r0, 0xc00(r9) /* LAWBARH0 */
560 stw r1, 0xc04(r9) /* LAWBARL0 */
561 sync
562 stw r2, 0xc08(r9) /* LAWAR0 */
563
564 /*
565 * Read back from LAWAR to ensure the update is complete. e500mc
566 * cores also require an isync.
567 */
568 lwz r0, 0xc08(r9) /* LAWAR0 */
569 isync
570
571 /*
572 * Read the current CCSRBARH and CCSRBARL using load word instructions.
573 * Follow this with an isync instruction. This forces any outstanding
574 * accesses to configuration space to completion.
575 */
576read_old_ccsrbar:
577 lwz r0, 0(r9) /* CCSRBARH */
Timur Tabi40402f02011-10-31 13:30:42 -0500578 lwz r0, 4(r9) /* CCSRBARL */
Timur Tabie769dea2011-08-03 16:30:10 -0500579 isync
580
581 /*
582 * Write the new values for CCSRBARH and CCSRBARL to their old
583 * locations. The CCSRBARH has a shadow register. When the CCSRBARH
584 * has a new value written it loads a CCSRBARH shadow register. When
585 * the CCSRBARL is written, the CCSRBARH shadow register contents
586 * along with the CCSRBARL value are loaded into the CCSRBARH and
587 * CCSRBARL registers, respectively. Follow this with a sync
588 * instruction.
589 */
590write_new_ccsrbar:
591 lis r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h
592 ori r0, r0, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l
593 lis r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@h
594 ori r1, r1, CONFIG_SYS_CCSRBAR_PHYS_LOW@l
595 lis r2, CCSRAR_C@h
596 ori r2, r2, CCSRAR_C@l
597
598 stw r0, 0(r9) /* Write to CCSRBARH */
599 sync /* Make sure we write to CCSRBARH first */
600 stw r1, 4(r9) /* Write to CCSRBARL */
601 sync
602
603 /*
604 * Write a 1 to the commit bit (C) of CCSRAR at the old location.
605 * Follow this with a sync instruction.
606 */
607 stw r2, 8(r9)
608 sync
609
610 /* Delete the temporary LAW */
611delete_temp_law:
612 li r1, 0
613 stw r1, 0xc08(r8)
614 sync
615 stw r1, 0xc00(r8)
616 stw r1, 0xc04(r8)
617 sync
618
619#else /* #ifdef CONFIG_FSL_CORENET */
620
621write_new_ccsrbar:
622 /*
623 * Read the current value of CCSRBAR using a load word instruction
624 * followed by an isync. This forces all accesses to configuration
625 * space to complete.
626 */
627 sync
628 lwz r0, 0(r9)
629 isync
630
631/* CONFIG_SYS_CCSRBAR_PHYS right shifted by 12 */
632#define CCSRBAR_PHYS_RS12 ((CONFIG_SYS_CCSRBAR_PHYS_HIGH << 20) | \
633 (CONFIG_SYS_CCSRBAR_PHYS_LOW >> 12))
634
635 /* Write the new value to CCSRBAR. */
636 lis r0, CCSRBAR_PHYS_RS12@h
637 ori r0, r0, CCSRBAR_PHYS_RS12@l
638 stw r0, 0(r9)
639 sync
640
641 /*
642 * The manual says to perform a load of an address that does not
643 * access configuration space or the on-chip SRAM using an existing TLB,
644 * but that doesn't appear to be necessary. We will do the isync,
645 * though.
646 */
647 isync
648
649 /*
650 * Read the contents of CCSRBAR from its new location, followed by
651 * another isync.
652 */
653 lwz r0, 0(r8)
654 isync
655
656#endif /* #ifdef CONFIG_FSL_CORENET */
657
658 /* Delete the temporary TLBs */
659delete_temp_tlbs:
York Sun0f2f2a32012-10-08 07:44:07 +0000660 delete_tlb0_entry 0, CONFIG_SYS_CCSRBAR, MAS2_I|MAS2_G, r3
661 delete_tlb0_entry 1, CONFIG_SYS_CCSRBAR + 0x1000, MAS2_I|MAS2_G, r3
Timur Tabie769dea2011-08-03 16:30:10 -0500662
Timur Tabie769dea2011-08-03 16:30:10 -0500663#endif /* #if (CONFIG_SYS_CCSRBAR_DEFAULT != CONFIG_SYS_CCSRBAR_PHYS) */
664
Prabhakar Kushwahacc3c5b62013-08-29 13:10:38 +0530665#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
York Sunc3d87b12012-10-08 07:44:08 +0000666create_ccsr_l2_tlb:
667 /*
668 * Create a TLB for the MMR location of CCSR
669 * to access L2CSR0 register
670 */
671 create_tlb0_entry 0, \
672 0, BOOKE_PAGESZ_4K, \
673 CONFIG_SYS_CCSRBAR + 0xC20000, MAS2_I|MAS2_G, \
674 CONFIG_SYS_CCSRBAR_PHYS_LOW + 0xC20000, MAS3_SW|MAS3_SR, \
675 CONFIG_SYS_CCSRBAR_PHYS_HIGH, r3
676
677enable_l2_cluster_l2:
678 /* enable L2 cache */
679 lis r3, (CONFIG_SYS_CCSRBAR + 0xC20000)@h
680 ori r3, r3, (CONFIG_SYS_CCSRBAR + 0xC20000)@l
681 li r4, 33 /* stash id */
682 stw r4, 4(r3)
683 lis r4, (L2CSR0_L2FI|L2CSR0_L2LFC)@h
684 ori r4, r4, (L2CSR0_L2FI|L2CSR0_L2LFC)@l
685 sync
686 stw r4, 0(r3) /* invalidate L2 */
Aneesh Bansal5661fcc2016-04-18 22:58:33 +0530687 /* Poll till the bits are cleared */
York Sunc3d87b12012-10-08 07:44:08 +00006881: sync
689 lwz r0, 0(r3)
690 twi 0, r0, 0
691 isync
692 and. r1, r0, r4
693 bne 1b
Aneesh Bansal5661fcc2016-04-18 22:58:33 +0530694
695 /* L2PE must be set before L2 cache is enabled */
696 lis r4, (L2CSR0_L2PE)@h
697 ori r4, r4, (L2CSR0_L2PE)@l
698 sync
699 stw r4, 0(r3) /* enable L2 parity/ECC error checking */
700 /* Poll till the bit is set */
7011: sync
702 lwz r0, 0(r3)
703 twi 0, r0, 0
704 isync
705 and. r1, r0, r4
706 beq 1b
707
James Yang718fd952013-03-25 07:39:58 +0000708 lis r4, (L2CSR0_L2E|L2CSR0_L2PE)@h
James Yang284ce502013-03-25 07:40:03 +0000709 ori r4, r4, (L2CSR0_L2REP_MODE)@l
York Sunc3d87b12012-10-08 07:44:08 +0000710 sync
Andy Fleming5631c642013-03-25 07:33:14 +0000711 stw r4, 0(r3) /* enable L2 */
Aneesh Bansal5661fcc2016-04-18 22:58:33 +0530712 /* Poll till the bit is set */
7131: sync
714 lwz r0, 0(r3)
715 twi 0, r0, 0
716 isync
717 and. r1, r0, r4
718 beq 1b
719
York Sunc3d87b12012-10-08 07:44:08 +0000720delete_ccsr_l2_tlb:
721 delete_tlb0_entry 0, CONFIG_SYS_CCSRBAR + 0xC20000, MAS2_I|MAS2_G, r3
722#endif
723
Andy Fleming5631c642013-03-25 07:33:14 +0000724 /*
725 * Enable the L1. On e6500, this has to be done
726 * after the L2 is up.
727 */
728
729#ifdef CONFIG_SYS_CACHE_STASHING
730 /* set stash id to (coreID) * 2 + 32 + L1 CT (0) */
731 li r2,(32 + 0)
732 mtspr L1CSR2,r2
733#endif
734
735 /* Enable/invalidate the I-Cache */
736 lis r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@h
737 ori r2,r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@l
738 mtspr SPRN_L1CSR1,r2
7391:
740 mfspr r3,SPRN_L1CSR1
741 and. r1,r3,r2
742 bne 1b
743
744 lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h
745 ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l
746 mtspr SPRN_L1CSR1,r3
747 isync
7482:
749 mfspr r3,SPRN_L1CSR1
750 andi. r1,r3,L1CSR1_ICE@l
751 beq 2b
752
753 /* Enable/invalidate the D-Cache */
754 lis r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@h
755 ori r2,r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@l
756 mtspr SPRN_L1CSR0,r2
7571:
758 mfspr r3,SPRN_L1CSR0
759 and. r1,r3,r2
760 bne 1b
761
762 lis r3,(L1CSR0_CPE|L1CSR0_DCE)@h
763 ori r3,r3,(L1CSR0_CPE|L1CSR0_DCE)@l
764 mtspr SPRN_L1CSR0,r3
765 isync
7662:
767 mfspr r3,SPRN_L1CSR0
768 andi. r1,r3,L1CSR0_DCE@l
769 beq 2b
Scott Wood80806962012-08-14 10:14:53 +0000770#ifdef CONFIG_SYS_FSL_ERRATUM_A004510
771#define DCSR_LAWBARH0 (CONFIG_SYS_CCSRBAR + 0x1000)
772#define LAW_SIZE_1M 0x13
773#define DCSRBAR_LAWAR (LAW_EN | (0x1d << 20) | LAW_SIZE_1M)
774
775 cmpwi r27,0
776 beq 9f
777
778 /*
779 * Create a TLB entry for CCSR
780 *
781 * We're executing out of TLB1 entry in r14, and that's the only
782 * TLB entry that exists. To allocate some TLB entries for our
783 * own use, flip a bit high enough that we won't flip it again
784 * via incrementing.
785 */
786
787 xori r8, r14, 32
788 lis r0, MAS0_TLBSEL(1)@h
789 rlwimi r0, r8, 16, MAS0_ESEL_MSK
790 lis r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_16M)@h
791 ori r1, r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_16M)@l
792 lis r7, CONFIG_SYS_CCSRBAR@h
793 ori r7, r7, CONFIG_SYS_CCSRBAR@l
794 ori r2, r7, MAS2_I|MAS2_G
795 lis r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@h
796 ori r3, r3, FSL_BOOKE_MAS3(CONFIG_SYS_CCSRBAR_PHYS_LOW, 0, (MAS3_SW|MAS3_SR))@l
797 lis r4, CONFIG_SYS_CCSRBAR_PHYS_HIGH@h
798 ori r4, r4, CONFIG_SYS_CCSRBAR_PHYS_HIGH@l
799 mtspr MAS0, r0
800 mtspr MAS1, r1
801 mtspr MAS2, r2
802 mtspr MAS3, r3
803 mtspr MAS7, r4
804 isync
805 tlbwe
806 isync
807 msync
808
809 /* Map DCSR temporarily to physical address zero */
810 li r0, 0
811 lis r3, DCSRBAR_LAWAR@h
812 ori r3, r3, DCSRBAR_LAWAR@l
813
814 stw r0, 0xc00(r7) /* LAWBARH0 */
815 stw r0, 0xc04(r7) /* LAWBARL0 */
816 sync
817 stw r3, 0xc08(r7) /* LAWAR0 */
818
819 /* Read back from LAWAR to ensure the update is complete. */
820 lwz r3, 0xc08(r7) /* LAWAR0 */
821 isync
822
823 /* Create a TLB entry for DCSR at zero */
824
825 addi r9, r8, 1
826 lis r0, MAS0_TLBSEL(1)@h
827 rlwimi r0, r9, 16, MAS0_ESEL_MSK
828 lis r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@h
829 ori r1, r1, FSL_BOOKE_MAS1(1, 1, 0, 0, BOOKE_PAGESZ_1M)@l
830 li r6, 0 /* DCSR effective address */
831 ori r2, r6, MAS2_I|MAS2_G
832 li r3, MAS3_SW|MAS3_SR
833 li r4, 0
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 /* enable the timebase */
845#define CTBENR 0xe2084
846 li r3, 1
847 addis r4, r7, CTBENR@ha
848 stw r3, CTBENR@l(r4)
849 lwz r3, CTBENR@l(r4)
850 twi 0,r3,0
851 isync
852
853 .macro erratum_set_ccsr offset value
854 addis r3, r7, \offset@ha
855 lis r4, \value@h
856 addi r3, r3, \offset@l
857 ori r4, r4, \value@l
858 bl erratum_set_value
859 .endm
860
861 .macro erratum_set_dcsr offset value
862 addis r3, r6, \offset@ha
863 lis r4, \value@h
864 addi r3, r3, \offset@l
865 ori r4, r4, \value@l
866 bl erratum_set_value
867 .endm
868
869 erratum_set_dcsr 0xb0e08 0xe0201800
870 erratum_set_dcsr 0xb0e18 0xe0201800
871 erratum_set_dcsr 0xb0e38 0xe0400000
872 erratum_set_dcsr 0xb0008 0x00900000
873 erratum_set_dcsr 0xb0e40 0xe00a0000
874 erratum_set_ccsr 0x18600 CONFIG_SYS_FSL_CORENET_SNOOPVEC_COREONLY
Dave Liu501c0102013-11-28 14:58:08 +0800875#ifdef CONFIG_RAMBOOT_PBL
876 erratum_set_ccsr 0x10f00 0x495e5000
877#else
Scott Wood80806962012-08-14 10:14:53 +0000878 erratum_set_ccsr 0x10f00 0x415e5000
Dave Liu501c0102013-11-28 14:58:08 +0800879#endif
Scott Wood80806962012-08-14 10:14:53 +0000880 erratum_set_ccsr 0x11f00 0x415e5000
881
882 /* Make temp mapping uncacheable again, if it was initially */
883 bl 2f
8842: mflr r3
885 tlbsx 0, r3
886 mfspr r4, MAS2
887 rlwimi r4, r15, 0, MAS2_I
888 rlwimi r4, r15, 0, MAS2_G
889 mtspr MAS2, r4
890 isync
891 tlbwe
892 isync
893 msync
894
895 /* Clear the cache */
896 lis r3,(L1CSR1_ICFI|L1CSR1_ICLFR)@h
897 ori r3,r3,(L1CSR1_ICFI|L1CSR1_ICLFR)@l
898 sync
899 isync
900 mtspr SPRN_L1CSR1,r3
901 isync
9022: sync
903 mfspr r4,SPRN_L1CSR1
904 and. r4,r4,r3
905 bne 2b
906
907 lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h
908 ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l
909 sync
910 isync
911 mtspr SPRN_L1CSR1,r3
912 isync
9132: sync
914 mfspr r4,SPRN_L1CSR1
915 and. r4,r4,r3
916 beq 2b
917
918 /* Remove temporary mappings */
919 lis r0, MAS0_TLBSEL(1)@h
920 rlwimi r0, r9, 16, MAS0_ESEL_MSK
921 li r3, 0
922 mtspr MAS0, r0
923 mtspr MAS1, r3
924 isync
925 tlbwe
926 isync
927 msync
928
929 li r3, 0
930 stw r3, 0xc08(r7) /* LAWAR0 */
931 lwz r3, 0xc08(r7)
932 isync
933
934 lis r0, MAS0_TLBSEL(1)@h
935 rlwimi r0, r8, 16, MAS0_ESEL_MSK
936 li r3, 0
937 mtspr MAS0, r0
938 mtspr MAS1, r3
939 isync
940 tlbwe
941 isync
942 msync
943
944 b 9f
945
946 /* r3 = addr, r4 = value, clobbers r5, r11, r12 */
947erratum_set_value:
948 /* Lock two cache lines into I-Cache */
949 sync
950 mfspr r11, SPRN_L1CSR1
951 rlwinm r11, r11, 0, ~L1CSR1_ICUL
952 sync
953 isync
954 mtspr SPRN_L1CSR1, r11
955 isync
956
957 mflr r12
958 bl 5f
9595: mflr r5
960 addi r5, r5, 2f - 5b
961 icbtls 0, 0, r5
962 addi r5, r5, 64
963
964 sync
965 mfspr r11, SPRN_L1CSR1
9663: andi. r11, r11, L1CSR1_ICUL
967 bne 3b
968
969 icbtls 0, 0, r5
970 addi r5, r5, 64
971
972 sync
973 mfspr r11, SPRN_L1CSR1
9743: andi. r11, r11, L1CSR1_ICUL
975 bne 3b
976
977 b 2f
978 .align 6
979 /* Inside a locked cacheline, wait a while, write, then wait a while */
9802: sync
981
982 mfspr r5, SPRN_TBRL
983 addis r11, r5, 0x10000@h /* wait 65536 timebase ticks */
9844: mfspr r5, SPRN_TBRL
985 subf. r5, r5, r11
986 bgt 4b
987
988 stw r4, 0(r3)
989
990 mfspr r5, SPRN_TBRL
991 addis r11, r5, 0x10000@h /* wait 65536 timebase ticks */
9924: mfspr r5, SPRN_TBRL
993 subf. r5, r5, r11
994 bgt 4b
995
996 sync
997
998 /*
999 * Fill out the rest of this cache line and the next with nops,
1000 * to ensure that nothing outside the locked area will be
1001 * fetched due to a branch.
1002 */
1003 .rept 19
1004 nop
1005 .endr
1006
1007 sync
1008 mfspr r11, SPRN_L1CSR1
1009 rlwinm r11, r11, 0, ~L1CSR1_ICUL
1010 sync
1011 isync
1012 mtspr SPRN_L1CSR1, r11
1013 isync
1014
1015 mtlr r12
1016 blr
1017
10189:
1019#endif
1020
Timur Tabie769dea2011-08-03 16:30:10 -05001021create_init_ram_area:
Kumar Gala9772ee72008-01-16 22:38:34 -06001022 lis r6,FSL_BOOKE_MAS0(1, 15, 0)@h
1023 ori r6,r6,FSL_BOOKE_MAS0(1, 15, 0)@l
1024
Scott Wood7c810902012-09-20 16:35:21 -05001025#ifdef NOR_BOOT
Mingkai Hu0255cd72009-09-11 14:19:10 +08001026 /* create a temp mapping in AS=1 to the 4M boot window */
York Sun0f2f2a32012-10-08 07:44:07 +00001027 create_tlb1_entry 15, \
1028 1, BOOKE_PAGESZ_4M, \
Tom Rini03becca2022-03-24 17:18:05 -04001029 CONFIG_VAL(SYS_MONITOR_BASE) & 0xffc00000, MAS2_I|MAS2_G, \
York Sun0f2f2a32012-10-08 07:44:07 +00001030 0xffc00000, MAS3_SX|MAS3_SW|MAS3_SR, \
1031 0, r6
Kumar Gala9772ee72008-01-16 22:38:34 -06001032
Udit Agarwald2dd2f72019-11-07 16:11:39 +00001033#elif !defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_NXP_ESBC)
Ruchika Gupta8ca8d822010-12-15 17:02:08 +00001034 /* create a temp mapping in AS = 1 for Flash mapping
1035 * created by PBL for ISBC code
Sumit Gargafaca2a2016-07-14 12:27:52 -04001036 */
York Sun0f2f2a32012-10-08 07:44:07 +00001037 create_tlb1_entry 15, \
1038 1, BOOKE_PAGESZ_1M, \
Tom Rini03becca2022-03-24 17:18:05 -04001039 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \
Scott Woodf2173162012-09-20 18:34:49 -05001040 CONFIG_SYS_PBI_FLASH_WINDOW & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \
York Sun0f2f2a32012-10-08 07:44:07 +00001041 0, r6
Aneesh Bansale0f50152015-06-16 10:36:00 +05301042
Sumit Gargafaca2a2016-07-14 12:27:52 -04001043/*
1044 * For Targets without CONFIG_SPL like P3, P5
1045 * and for targets with CONFIG_SPL like T1, T2, T4, only for
1046 * u-boot-spl i.e. CONFIG_SPL_BUILD
1047 */
Udit Agarwald2dd2f72019-11-07 16:11:39 +00001048#elif defined(CONFIG_RAMBOOT_PBL) && defined(CONFIG_NXP_ESBC) && \
Sumit Gargafaca2a2016-07-14 12:27:52 -04001049 (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
Tom Rini03becca2022-03-24 17:18:05 -04001050 /* create a temp mapping in AS = 1 for mapping CONFIG_VAL(SYS_MONITOR_BASE)
Aneesh Bansale0f50152015-06-16 10:36:00 +05301051 * to L3 Address configured by PBL for ISBC code
Sumit Gargafaca2a2016-07-14 12:27:52 -04001052 */
Aneesh Bansale0f50152015-06-16 10:36:00 +05301053 create_tlb1_entry 15, \
1054 1, BOOKE_PAGESZ_1M, \
Tom Rini03becca2022-03-24 17:18:05 -04001055 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \
Aneesh Bansale0f50152015-06-16 10:36:00 +05301056 CONFIG_SYS_INIT_L3_ADDR & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \
1057 0, r6
1058
Mingkai Hu0255cd72009-09-11 14:19:10 +08001059#else
1060 /*
Tom Rini03becca2022-03-24 17:18:05 -04001061 * create a temp mapping in AS=1 to the 1M CONFIG_VAL(SYS_MONITOR_BASE) space, the main
1062 * image has been relocated to CONFIG_VAL(SYS_MONITOR_BASE) on the second stage.
Mingkai Hu0255cd72009-09-11 14:19:10 +08001063 */
York Sun0f2f2a32012-10-08 07:44:07 +00001064 create_tlb1_entry 15, \
1065 1, BOOKE_PAGESZ_1M, \
Tom Rini03becca2022-03-24 17:18:05 -04001066 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \
1067 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS3_SX|MAS3_SW|MAS3_SR, \
York Sun0f2f2a32012-10-08 07:44:07 +00001068 0, r6
Mingkai Hu0255cd72009-09-11 14:19:10 +08001069#endif
Kumar Gala9772ee72008-01-16 22:38:34 -06001070
Kumar Gala9772ee72008-01-16 22:38:34 -06001071 /* create a temp mapping in AS=1 to the stack */
yorkc6093322010-07-02 22:25:57 +00001072#if defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW) && \
1073 defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH)
York Sun0f2f2a32012-10-08 07:44:07 +00001074 create_tlb1_entry 14, \
1075 1, BOOKE_PAGESZ_16K, \
1076 CONFIG_SYS_INIT_RAM_ADDR, 0, \
1077 CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW, MAS3_SX|MAS3_SW|MAS3_SR, \
1078 CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH, r6
1079
yorkc6093322010-07-02 22:25:57 +00001080#else
York Sun0f2f2a32012-10-08 07:44:07 +00001081 create_tlb1_entry 14, \
1082 1, BOOKE_PAGESZ_16K, \
1083 CONFIG_SYS_INIT_RAM_ADDR, 0, \
1084 CONFIG_SYS_INIT_RAM_ADDR, MAS3_SX|MAS3_SW|MAS3_SR, \
1085 0, r6
yorkc6093322010-07-02 22:25:57 +00001086#endif
Kumar Gala9772ee72008-01-16 22:38:34 -06001087
Prabhakar Kushwaha8f3e8922012-04-29 23:56:30 +00001088 lis r6,MSR_IS|MSR_DS|MSR_DE@h
1089 ori r6,r6,MSR_IS|MSR_DS|MSR_DE@l
Kumar Gala9772ee72008-01-16 22:38:34 -06001090 lis r7,switch_as@h
1091 ori r7,r7,switch_as@l
1092
1093 mtspr SPRN_SRR0,r7
1094 mtspr SPRN_SRR1,r6
1095 rfi
1096
1097switch_as:
Kumar Gala76e276b2007-08-07 18:07:27 -05001098/* L1 DCache is used for initial RAM */
1099
1100 /* Allocate Initial RAM in data cache.
1101 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001102 lis r3,CONFIG_SYS_INIT_RAM_ADDR@h
1103 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Kumar Gala938e14e2008-01-08 01:22:21 -06001104 mfspr r2, L1CFG0
1105 andi. r2, r2, 0x1ff
1106 /* cache size * 1024 / (2 * L1 line size) */
1107 slwi r2, r2, (10 - 1 - L1_CACHE_SHIFT)
Kumar Gala76e276b2007-08-07 18:07:27 -05001108 mtctr r2
1109 li r0,0
11101:
1111 dcbz r0,r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301112#ifdef CONFIG_E6500 /* Lock/unlock L2 cache long with L1 */
York Sun8d45cc12015-08-17 13:31:52 -07001113 dcbtls 2, r0, r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301114 dcbtls 0, r0, r3
York Sun8d45cc12015-08-17 13:31:52 -07001115#else
1116 dcbtls 0, r0, r3
1117#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001118 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE
Kumar Gala76e276b2007-08-07 18:07:27 -05001119 bdnz 1b
1120
Andy Flemingf08233c2007-08-14 01:34:21 -05001121 /* Jump out the last 4K page and continue to 'normal' start */
Scott Wood7c810902012-09-20 16:35:21 -05001122#if defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)
1123 /* We assume that we're already running at the address we're linked at */
Andy Flemingf08233c2007-08-14 01:34:21 -05001124 b _start_cont
Kumar Gala76e276b2007-08-07 18:07:27 -05001125#else
1126 /* Calculate absolute address in FLASH and jump there */
1127 /*--------------------------------------------------------------*/
Tom Rini03becca2022-03-24 17:18:05 -04001128 lis r3,CONFIG_VAL(SYS_MONITOR_BASE)@h
1129 ori r3,r3,CONFIG_VAL(SYS_MONITOR_BASE)@l
Pali Rohár674642c2022-04-25 09:29:08 +05301130 addi r3,r3,_start_cont - _start_cont
Kumar Gala76e276b2007-08-07 18:07:27 -05001131 mtlr r3
urwithsughosh@gmail.come9f4e342007-09-24 13:36:01 -04001132 blr
Kumar Gala76e276b2007-08-07 18:07:27 -05001133#endif
Andy Flemingf08233c2007-08-14 01:34:21 -05001134
Andy Flemingf08233c2007-08-14 01:34:21 -05001135 .text
Andy Flemingf08233c2007-08-14 01:34:21 -05001136 .globl _start_cont
1137_start_cont:
wdenk9c53f402003-10-15 23:53:47 +00001138 /* Setup the stack in initial RAM,could be L2-as-SRAM or L1 dcache*/
Joakim Tjernlund258120c2012-07-23 10:58:02 +00001139 lis r3,(CONFIG_SYS_INIT_RAM_ADDR)@h
1140 ori r3,r3,((CONFIG_SYS_INIT_SP_OFFSET-16)&~0xf)@l /* Align to 16 */
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001141
Andy Yanad0ac4b2017-07-24 17:47:27 +08001142#if CONFIG_VAL(SYS_MALLOC_F_LEN)
1143#if CONFIG_VAL(SYS_MALLOC_F_LEN) + GENERATED_GBL_DATA_SIZE > CONFIG_SYS_INIT_RAM_SIZE
1144#error "SYS_MALLOC_F_LEN too large to fit into initial RAM."
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001145#endif
1146
1147 /* Leave 16+ byte for back chain termination and NULL return address */
Andy Yanad0ac4b2017-07-24 17:47:27 +08001148 subi r3,r3,((CONFIG_VAL(SYS_MALLOC_F_LEN)+16+15)&~0xf)
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001149#endif
1150
1151 /* End of RAM */
1152 lis r4,(CONFIG_SYS_INIT_RAM_ADDR)@h
1153 ori r4,r4,(CONFIG_SYS_INIT_RAM_SIZE)@l
1154
1155 li r0,0
1156
Wolfgang Denk62fb2b42021-09-27 17:42:39 +020011571: subi r4,r4,4
1158 stw r0,0(r4)
1159 cmplw r4,r3
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001160 bne 1b
1161
Andy Yanad0ac4b2017-07-24 17:47:27 +08001162#if CONFIG_VAL(SYS_MALLOC_F_LEN)
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +02001163 lis r4,(CONFIG_SYS_INIT_RAM_ADDR)@h
1164 ori r4,r4,(CONFIG_SYS_GBL_DATA_OFFSET)@l
1165
1166 addi r3,r3,16 /* Pre-relocation malloc area */
1167 stw r3,GD_MALLOC_BASE(r4)
1168 subi r3,r3,16
1169#endif
wdenk9c53f402003-10-15 23:53:47 +00001170 li r0,0
Joakim Tjernlund258120c2012-07-23 10:58:02 +00001171 stw r0,0(r3) /* Terminate Back Chain */
1172 stw r0,+4(r3) /* NULL return address. */
1173 mr r1,r3 /* Transfer to SP(r1) */
wdenk9c53f402003-10-15 23:53:47 +00001174
1175 GET_GOT
Joakim Tjernlundf2c2c302018-12-06 17:20:53 +01001176 /* Needed for -msingle-pic-base */
1177 bl _GLOBAL_OFFSET_TABLE_@local-4
1178 mflr r30
Alexander Grafc3468482014-04-11 17:09:45 +02001179
1180 /* Pass our potential ePAPR device tree pointer to cpu_init_early_f */
1181 mr r3, r24
1182
Kumar Gala9772ee72008-01-16 22:38:34 -06001183 bl cpu_init_early_f
1184
1185 /* switch back to AS = 0 */
1186 lis r3,(MSR_CE|MSR_ME|MSR_DE)@h
1187 ori r3,r3,(MSR_CE|MSR_ME|MSR_DE)@l
1188 mtmsr r3
1189 isync
1190
York Sun695c0c32014-04-30 14:43:47 -07001191 bl cpu_init_f /* return boot_flag for calling board_init_f */
wdenk9c53f402003-10-15 23:53:47 +00001192 bl board_init_f
wdenk13eb2212004-07-09 23:27:13 +00001193 isync
wdenk9c53f402003-10-15 23:53:47 +00001194
Peter Tyser0c44caf2010-09-14 19:13:53 -05001195 /* NOTREACHED - board_init_f() does not return */
1196
Scott Wood7c810902012-09-20 16:35:21 -05001197#ifndef MINIMAL_SPL
wdenk9c53f402003-10-15 23:53:47 +00001198 .globl _start_of_vectors
1199_start_of_vectors:
Andy Flemingf08233c2007-08-14 01:34:21 -05001200
wdenk9c53f402003-10-15 23:53:47 +00001201/* Critical input. */
Andy Flemingf08233c2007-08-14 01:34:21 -05001202 CRIT_EXCEPTION(0x0100, CriticalInput, CritcalInputException)
1203
1204/* Machine check */
1205 MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)
wdenk9c53f402003-10-15 23:53:47 +00001206
1207/* Data Storage exception. */
1208 STD_EXCEPTION(0x0300, DataStorage, UnknownException)
1209
1210/* Instruction Storage exception. */
1211 STD_EXCEPTION(0x0400, InstStorage, UnknownException)
1212
1213/* External Interrupt exception. */
Andy Flemingf08233c2007-08-14 01:34:21 -05001214 STD_EXCEPTION(0x0500, ExtInterrupt, ExtIntException)
wdenk9c53f402003-10-15 23:53:47 +00001215
1216/* Alignment exception. */
wdenk9c53f402003-10-15 23:53:47 +00001217Alignment:
Rafal Jaworowski06244e42007-06-22 14:58:04 +02001218 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk9c53f402003-10-15 23:53:47 +00001219 mfspr r4,DAR
1220 stw r4,_DAR(r21)
1221 mfspr r5,DSISR
1222 stw r5,_DSISR(r21)
1223 addi r3,r1,STACK_FRAME_OVERHEAD
Scott Woodf21e7582015-04-07 20:20:00 -05001224 EXC_XFER_TEMPLATE(0x600, Alignment, AlignmentException,
1225 MSR_KERNEL, COPY_EE)
wdenk9c53f402003-10-15 23:53:47 +00001226
1227/* Program check exception */
wdenk9c53f402003-10-15 23:53:47 +00001228ProgramCheck:
Rafal Jaworowski06244e42007-06-22 14:58:04 +02001229 EXCEPTION_PROLOG(SRR0, SRR1)
wdenk9c53f402003-10-15 23:53:47 +00001230 addi r3,r1,STACK_FRAME_OVERHEAD
Scott Woodf21e7582015-04-07 20:20:00 -05001231 EXC_XFER_TEMPLATE(0x700, ProgramCheck, ProgramCheckException,
Joakim Tjernlund4ff6bc02010-01-19 14:41:55 +01001232 MSR_KERNEL, COPY_EE)
wdenk9c53f402003-10-15 23:53:47 +00001233
1234 /* No FPU on MPC85xx. This exception is not supposed to happen.
1235 */
1236 STD_EXCEPTION(0x0800, FPUnavailable, UnknownException)
Scott Wood5b4d7ff2015-04-07 20:20:01 -05001237 STD_EXCEPTION(0x0900, SystemCall, UnknownException)
wdenkf3da7cc2005-05-13 22:49:36 +00001238 STD_EXCEPTION(0x0a00, Decrementer, timer_interrupt)
1239 STD_EXCEPTION(0x0b00, IntervalTimer, UnknownException)
1240 STD_EXCEPTION(0x0c00, WatchdogTimer, UnknownException)
wdenk9c53f402003-10-15 23:53:47 +00001241
wdenkf3da7cc2005-05-13 22:49:36 +00001242 STD_EXCEPTION(0x0d00, DataTLBError, UnknownException)
1243 STD_EXCEPTION(0x0e00, InstructionTLBError, UnknownException)
wdenk9c53f402003-10-15 23:53:47 +00001244
wdenkf3da7cc2005-05-13 22:49:36 +00001245 CRIT_EXCEPTION(0x0f00, DebugBreakpoint, DebugException )
wdenk9c53f402003-10-15 23:53:47 +00001246
wdenkf3da7cc2005-05-13 22:49:36 +00001247 .globl _end_of_vectors
wdenk9c53f402003-10-15 23:53:47 +00001248_end_of_vectors:
1249
1250
Andy Flemingf08233c2007-08-14 01:34:21 -05001251 . = . + (0x100 - ( . & 0xff )) /* align for debug */
wdenk9c53f402003-10-15 23:53:47 +00001252
1253/*
1254 * This code finishes saving the registers to the exception frame
1255 * and jumps to the appropriate handler for the exception.
1256 * Register r21 is pointer into trap frame, r1 has new stack pointer.
Scott Woodf21e7582015-04-07 20:20:00 -05001257 * r23 is the address of the handler.
wdenk9c53f402003-10-15 23:53:47 +00001258 */
1259 .globl transfer_to_handler
1260transfer_to_handler:
wdenk9c53f402003-10-15 23:53:47 +00001261 SAVE_GPR(7, r21)
1262 SAVE_4GPRS(8, r21)
1263 SAVE_8GPRS(12, r21)
1264 SAVE_8GPRS(24, r21)
1265
wdenk9c53f402003-10-15 23:53:47 +00001266 li r22,0
1267 stw r22,RESULT(r21)
1268 mtspr SPRG2,r22 /* r1 is now kernel sp */
1269
Scott Woodf21e7582015-04-07 20:20:00 -05001270 mtctr r23 /* virtual address of handler */
1271 mtmsr r20
1272 bctrl
wdenk9c53f402003-10-15 23:53:47 +00001273
1274int_return:
1275 mfmsr r28 /* Disable interrupts */
1276 li r4,0
1277 ori r4,r4,MSR_EE
1278 andc r28,r28,r4
1279 SYNC /* Some chip revs need this... */
1280 mtmsr r28
1281 SYNC
1282 lwz r2,_CTR(r1)
1283 lwz r0,_LINK(r1)
1284 mtctr r2
1285 mtlr r0
1286 lwz r2,_XER(r1)
1287 lwz r0,_CCR(r1)
1288 mtspr XER,r2
1289 mtcrf 0xFF,r0
1290 REST_10GPRS(3, r1)
1291 REST_10GPRS(13, r1)
1292 REST_8GPRS(23, r1)
1293 REST_GPR(31, r1)
1294 lwz r2,_NIP(r1) /* Restore environment */
1295 lwz r0,_MSR(r1)
1296 mtspr SRR0,r2
1297 mtspr SRR1,r0
1298 lwz r0,GPR0(r1)
1299 lwz r2,GPR2(r1)
1300 lwz r1,GPR1(r1)
1301 SYNC
1302 rfi
1303
wdenk9c53f402003-10-15 23:53:47 +00001304/* Cache functions.
1305*/
Matthew McClintockc83e7ef2011-05-23 08:38:53 +00001306.globl flush_icache
1307flush_icache:
Kumar Gala32090b32008-09-22 14:11:10 -05001308.globl invalidate_icache
wdenk9c53f402003-10-15 23:53:47 +00001309invalidate_icache:
1310 mfspr r0,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -05001311 ori r0,r0,L1CSR1_ICFI
1312 msync
1313 isync
wdenk9c53f402003-10-15 23:53:47 +00001314 mtspr L1CSR1,r0
1315 isync
Andy Flemingf08233c2007-08-14 01:34:21 -05001316 blr /* entire I cache */
wdenk9c53f402003-10-15 23:53:47 +00001317
Kumar Gala32090b32008-09-22 14:11:10 -05001318.globl invalidate_dcache
wdenk9c53f402003-10-15 23:53:47 +00001319invalidate_dcache:
1320 mfspr r0,L1CSR0
Andy Flemingf08233c2007-08-14 01:34:21 -05001321 ori r0,r0,L1CSR0_DCFI
wdenk9c53f402003-10-15 23:53:47 +00001322 msync
1323 isync
1324 mtspr L1CSR0,r0
1325 isync
1326 blr
1327
1328 .globl icache_enable
1329icache_enable:
1330 mflr r8
1331 bl invalidate_icache
1332 mtlr r8
1333 isync
1334 mfspr r4,L1CSR1
Mark Marshallf2770f42017-01-24 15:40:23 +01001335 ori r4,r4,(L1CSR1_CPE | L1CSR1_ICE)@l
1336 oris r4,r4,(L1CSR1_CPE | L1CSR1_ICE)@h
wdenk9c53f402003-10-15 23:53:47 +00001337 mtspr L1CSR1,r4
1338 isync
1339 blr
1340
1341 .globl icache_disable
1342icache_disable:
1343 mfspr r0,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -05001344 lis r3,0
1345 ori r3,r3,L1CSR1_ICE
1346 andc r0,r0,r3
wdenk9c53f402003-10-15 23:53:47 +00001347 mtspr L1CSR1,r0
1348 isync
1349 blr
1350
1351 .globl icache_status
1352icache_status:
1353 mfspr r3,L1CSR1
Andy Flemingf08233c2007-08-14 01:34:21 -05001354 andi. r3,r3,L1CSR1_ICE
wdenk9c53f402003-10-15 23:53:47 +00001355 blr
1356
1357 .globl dcache_enable
1358dcache_enable:
1359 mflr r8
1360 bl invalidate_dcache
1361 mtlr r8
1362 isync
1363 mfspr r0,L1CSR0
Mark Marshallf2770f42017-01-24 15:40:23 +01001364 ori r0,r0,(L1CSR0_CPE | L1CSR0_DCE)@l
1365 oris r0,r0,(L1CSR0_CPE | L1CSR0_DCE)@h
wdenk9c53f402003-10-15 23:53:47 +00001366 msync
1367 isync
1368 mtspr L1CSR0,r0
1369 isync
1370 blr
1371
1372 .globl dcache_disable
1373dcache_disable:
Andy Flemingf08233c2007-08-14 01:34:21 -05001374 mfspr r3,L1CSR0
1375 lis r4,0
1376 ori r4,r4,L1CSR0_DCE
1377 andc r3,r3,r4
Kumar Galafa103bf2011-01-05 10:33:46 -06001378 mtspr L1CSR0,r3
wdenk9c53f402003-10-15 23:53:47 +00001379 isync
1380 blr
1381
1382 .globl dcache_status
1383dcache_status:
1384 mfspr r3,L1CSR0
Andy Flemingf08233c2007-08-14 01:34:21 -05001385 andi. r3,r3,L1CSR0_DCE
wdenk9c53f402003-10-15 23:53:47 +00001386 blr
1387
wdenk9c53f402003-10-15 23:53:47 +00001388/*------------------------------------------------------------------------------- */
1389/* Function: in8 */
1390/* Description: Input 8 bits */
1391/*------------------------------------------------------------------------------- */
1392 .globl in8
1393in8:
1394 lbz r3,0x0000(r3)
1395 blr
1396
1397/*------------------------------------------------------------------------------- */
1398/* Function: out8 */
1399/* Description: Output 8 bits */
1400/*------------------------------------------------------------------------------- */
1401 .globl out8
1402out8:
1403 stb r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -05001404 sync
wdenk9c53f402003-10-15 23:53:47 +00001405 blr
1406
1407/*------------------------------------------------------------------------------- */
1408/* Function: out16 */
1409/* Description: Output 16 bits */
1410/*------------------------------------------------------------------------------- */
1411 .globl out16
1412out16:
1413 sth r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -05001414 sync
wdenk9c53f402003-10-15 23:53:47 +00001415 blr
1416
1417/*------------------------------------------------------------------------------- */
1418/* Function: out16r */
1419/* Description: Byte reverse and output 16 bits */
1420/*------------------------------------------------------------------------------- */
1421 .globl out16r
1422out16r:
1423 sthbrx r4,r0,r3
Ed Swarthout7d6be302007-09-26 16:35:54 -05001424 sync
wdenk9c53f402003-10-15 23:53:47 +00001425 blr
1426
1427/*------------------------------------------------------------------------------- */
1428/* Function: out32 */
1429/* Description: Output 32 bits */
1430/*------------------------------------------------------------------------------- */
1431 .globl out32
1432out32:
1433 stw r4,0x0000(r3)
Ed Swarthout7d6be302007-09-26 16:35:54 -05001434 sync
wdenk9c53f402003-10-15 23:53:47 +00001435 blr
1436
1437/*------------------------------------------------------------------------------- */
1438/* Function: out32r */
1439/* Description: Byte reverse and output 32 bits */
1440/*------------------------------------------------------------------------------- */
1441 .globl out32r
1442out32r:
1443 stwbrx r4,r0,r3
Ed Swarthout7d6be302007-09-26 16:35:54 -05001444 sync
wdenk9c53f402003-10-15 23:53:47 +00001445 blr
1446
1447/*------------------------------------------------------------------------------- */
1448/* Function: in16 */
1449/* Description: Input 16 bits */
1450/*------------------------------------------------------------------------------- */
1451 .globl in16
1452in16:
1453 lhz r3,0x0000(r3)
1454 blr
1455
1456/*------------------------------------------------------------------------------- */
1457/* Function: in16r */
1458/* Description: Input 16 bits and byte reverse */
1459/*------------------------------------------------------------------------------- */
1460 .globl in16r
1461in16r:
1462 lhbrx r3,r0,r3
1463 blr
1464
1465/*------------------------------------------------------------------------------- */
1466/* Function: in32 */
1467/* Description: Input 32 bits */
1468/*------------------------------------------------------------------------------- */
1469 .globl in32
1470in32:
1471 lwz 3,0x0000(3)
1472 blr
1473
1474/*------------------------------------------------------------------------------- */
1475/* Function: in32r */
1476/* Description: Input 32 bits and byte reverse */
1477/*------------------------------------------------------------------------------- */
1478 .globl in32r
1479in32r:
1480 lwbrx r3,r0,r3
1481 blr
Scott Wood7c810902012-09-20 16:35:21 -05001482#endif /* !MINIMAL_SPL */
wdenk9c53f402003-10-15 23:53:47 +00001483
wdenk9c53f402003-10-15 23:53:47 +00001484/*------------------------------------------------------------------------------*/
1485
1486/*
Kumar Galac417c912009-09-11 11:27:00 -05001487 * void write_tlb(mas0, mas1, mas2, mas3, mas7)
1488 */
1489 .globl write_tlb
1490write_tlb:
1491 mtspr MAS0,r3
1492 mtspr MAS1,r4
1493 mtspr MAS2,r5
1494 mtspr MAS3,r6
1495#ifdef CONFIG_ENABLE_36BIT_PHYS
1496 mtspr MAS7,r7
1497#endif
1498 li r3,0
1499#ifdef CONFIG_SYS_BOOK3E_HV
1500 mtspr MAS8,r3
1501#endif
1502 isync
1503 tlbwe
1504 msync
1505 isync
1506 blr
1507
1508/*
Simon Glass284f71b2019-12-28 10:44:45 -07001509 * void relocate_code(addr_sp, gd, addr_moni)
wdenk9c53f402003-10-15 23:53:47 +00001510 *
1511 * This "function" does not return, instead it continues in RAM
1512 * after relocating the monitor code.
1513 *
1514 * r3 = dest
1515 * r4 = src
1516 * r5 = length in bytes
1517 * r6 = cachelinesize
1518 */
1519 .globl relocate_code
1520relocate_code:
Andy Flemingf08233c2007-08-14 01:34:21 -05001521 mr r1,r3 /* Set new stack pointer */
1522 mr r9,r4 /* Save copy of Init Data pointer */
1523 mr r10,r5 /* Save copy of Destination Address */
wdenk9c53f402003-10-15 23:53:47 +00001524
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001525 GET_GOT
Prabhakar Kushwaha6e2b9a32014-04-08 19:12:31 +05301526#ifndef CONFIG_SPL_SKIP_RELOCATE
Andy Flemingf08233c2007-08-14 01:34:21 -05001527 mr r3,r5 /* Destination Address */
Tom Rini03becca2022-03-24 17:18:05 -04001528 lis r4,CONFIG_VAL(SYS_MONITOR_BASE)@h /* Source Address */
1529 ori r4,r4,CONFIG_VAL(SYS_MONITOR_BASE)@l
wdenk9c53f402003-10-15 23:53:47 +00001530 lwz r5,GOT(__init_end)
1531 sub r5,r5,r4
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001532 li r6,CONFIG_SYS_CACHELINE_SIZE /* Cache Line Size */
wdenk9c53f402003-10-15 23:53:47 +00001533
1534 /*
1535 * Fix GOT pointer:
1536 *
Tom Rini03becca2022-03-24 17:18:05 -04001537 * New GOT-PTR = (old GOT-PTR - CONFIG_VAL(SYS_MONITOR_BASE)) + Destination Address
wdenk9c53f402003-10-15 23:53:47 +00001538 *
1539 * Offset:
1540 */
Andy Flemingf08233c2007-08-14 01:34:21 -05001541 sub r15,r10,r4
wdenk9c53f402003-10-15 23:53:47 +00001542
1543 /* First our own GOT */
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001544 add r12,r12,r15
wdenk9c53f402003-10-15 23:53:47 +00001545 /* the the one used by the C code */
Andy Flemingf08233c2007-08-14 01:34:21 -05001546 add r30,r30,r15
wdenk9c53f402003-10-15 23:53:47 +00001547
1548 /*
1549 * Now relocate code
1550 */
1551
1552 cmplw cr1,r3,r4
1553 addi r0,r5,3
1554 srwi. r0,r0,2
1555 beq cr1,4f /* In place copy is not necessary */
1556 beq 7f /* Protect against 0 count */
1557 mtctr r0
1558 bge cr1,2f
1559
1560 la r8,-4(r4)
1561 la r7,-4(r3)
15621: lwzu r0,4(r8)
1563 stwu r0,4(r7)
1564 bdnz 1b
1565 b 4f
1566
15672: slwi r0,r0,2
1568 add r8,r4,r0
1569 add r7,r3,r0
15703: lwzu r0,-4(r8)
1571 stwu r0,-4(r7)
1572 bdnz 3b
1573
1574/*
1575 * Now flush the cache: note that we must start from a cache aligned
1576 * address. Otherwise we might miss one cache line.
1577 */
15784: cmpwi r6,0
1579 add r5,r3,r5
1580 beq 7f /* Always flush prefetch queue in any case */
1581 subi r0,r6,1
1582 andc r3,r3,r0
1583 mr r4,r3
15845: dcbst 0,r4
1585 add r4,r4,r6
1586 cmplw r4,r5
1587 blt 5b
1588 sync /* Wait for all dcbst to complete on bus */
1589 mr r4,r3
15906: icbi 0,r4
1591 add r4,r4,r6
1592 cmplw r4,r5
1593 blt 6b
15947: sync /* Wait for all icbi to complete on bus */
1595 isync
1596
1597/*
1598 * We are done. Do not return, instead branch to second part of board
1599 * initialization, now running from RAM.
1600 */
1601
Pali Rohár674642c2022-04-25 09:29:08 +05301602 addi r0,r10,in_ram - _start_cont
Prabhakar Kushwahabc8d57c2012-04-29 23:56:43 +00001603
1604 /*
1605 * As IVPR is going to point RAM address,
1606 * Make sure IVOR15 has valid opcode to support debugger
1607 */
1608 mtspr IVOR15,r0
1609
1610 /*
1611 * Re-point the IVPR at RAM
1612 */
1613 mtspr IVPR,r10
1614
wdenk9c53f402003-10-15 23:53:47 +00001615 mtlr r0
1616 blr /* NEVER RETURNS! */
Prabhakar Kushwaha6e2b9a32014-04-08 19:12:31 +05301617#endif
Andy Flemingf08233c2007-08-14 01:34:21 -05001618 .globl in_ram
wdenk9c53f402003-10-15 23:53:47 +00001619in_ram:
1620
1621 /*
Joakim Tjernlund3fbaa4d2010-01-19 14:41:56 +01001622 * Relocation Function, r12 point to got2+0x8000
wdenk9c53f402003-10-15 23:53:47 +00001623 *
1624 * Adjust got2 pointers, no need to check for 0, this code
1625 * already puts a few entries in the table.
1626 */
1627 li r0,__got2_entries@sectoff@l
1628 la r3,GOT(_GOT2_TABLE_)
1629 lwz r11,GOT(_GOT2_TABLE_)
1630 mtctr r0
1631 sub r11,r3,r11
1632 addi r3,r3,-4
16331: lwzu r0,4(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +02001634 cmpwi r0,0
1635 beq- 2f
wdenk9c53f402003-10-15 23:53:47 +00001636 add r0,r0,r11
1637 stw r0,0(r3)
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +020016382: bdnz 1b
wdenk9c53f402003-10-15 23:53:47 +00001639
1640 /*
1641 * Now adjust the fixups and the pointers to the fixups
1642 * in case we need to move ourselves again.
1643 */
Joakim Tjernlund4f2fdac2009-10-08 02:03:51 +02001644 li r0,__fixup_entries@sectoff@l
wdenk9c53f402003-10-15 23:53:47 +00001645 lwz r3,GOT(_FIXUP_TABLE_)
1646 cmpwi r0,0
1647 mtctr r0
1648 addi r3,r3,-4
1649 beq 4f
16503: lwzu r4,4(r3)
1651 lwzux r0,r4,r11
Joakim Tjernlundc61b25a2010-10-14 11:51:44 +02001652 cmpwi r0,0
wdenk9c53f402003-10-15 23:53:47 +00001653 add r0,r0,r11
Joakim Tjernlund401b5922010-11-04 19:02:00 +01001654 stw r4,0(r3)
Joakim Tjernlundc61b25a2010-10-14 11:51:44 +02001655 beq- 5f
wdenk9c53f402003-10-15 23:53:47 +00001656 stw r0,0(r4)
Joakim Tjernlundc61b25a2010-10-14 11:51:44 +020016575: bdnz 3b
wdenk9c53f402003-10-15 23:53:47 +000016584:
1659clear_bss:
1660 /*
1661 * Now clear BSS segment
1662 */
1663 lwz r3,GOT(__bss_start)
Simon Glassed70c8f2013-03-14 06:54:53 +00001664 lwz r4,GOT(__bss_end)
wdenk9c53f402003-10-15 23:53:47 +00001665
Andy Flemingf08233c2007-08-14 01:34:21 -05001666 cmplw 0,r3,r4
wdenk9c53f402003-10-15 23:53:47 +00001667 beq 6f
1668
Andy Flemingf08233c2007-08-14 01:34:21 -05001669 li r0,0
wdenk9c53f402003-10-15 23:53:47 +000016705:
Andy Flemingf08233c2007-08-14 01:34:21 -05001671 stw r0,0(r3)
1672 addi r3,r3,4
1673 cmplw 0,r3,r4
Ying Zhang5ca62f22013-06-07 17:25:16 +08001674 blt 5b
wdenk9c53f402003-10-15 23:53:47 +000016756:
1676
Andy Flemingf08233c2007-08-14 01:34:21 -05001677 mr r3,r9 /* Init Data pointer */
1678 mr r4,r10 /* Destination Address */
wdenk9c53f402003-10-15 23:53:47 +00001679 bl board_init_r
1680
Scott Wood7c810902012-09-20 16:35:21 -05001681#ifndef MINIMAL_SPL
wdenk9c53f402003-10-15 23:53:47 +00001682 /*
1683 * Copy exception vector code to low memory
1684 *
1685 * r3: dest_addr
1686 * r7: source address, r8: end address, r9: target address
1687 */
wdenkf3da7cc2005-05-13 22:49:36 +00001688 .globl trap_init
wdenk9c53f402003-10-15 23:53:47 +00001689trap_init:
Scott Woodc4dfbee2015-04-23 20:01:56 -05001690 mflr r11
1691 bl _GLOBAL_OFFSET_TABLE_-4
1692 mflr r12
1693
Scott Woodf21e7582015-04-07 20:20:00 -05001694 /* Update IVORs as per relocation */
1695 mtspr IVPR,r3
wdenk9c53f402003-10-15 23:53:47 +00001696
Scott Woodc4dfbee2015-04-23 20:01:56 -05001697 lwz r4,CriticalInput@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001698 mtspr IVOR0,r4 /* 0: Critical input */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001699 lwz r4,MachineCheck@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001700 mtspr IVOR1,r4 /* 1: Machine check */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001701 lwz r4,DataStorage@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001702 mtspr IVOR2,r4 /* 2: Data storage */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001703 lwz r4,InstStorage@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001704 mtspr IVOR3,r4 /* 3: Instruction storage */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001705 lwz r4,ExtInterrupt@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001706 mtspr IVOR4,r4 /* 4: External interrupt */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001707 lwz r4,Alignment@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001708 mtspr IVOR5,r4 /* 5: Alignment */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001709 lwz r4,ProgramCheck@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001710 mtspr IVOR6,r4 /* 6: Program check */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001711 lwz r4,FPUnavailable@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001712 mtspr IVOR7,r4 /* 7: floating point unavailable */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001713 lwz r4,SystemCall@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001714 mtspr IVOR8,r4 /* 8: System call */
Prabhakar Kushwahaf8387862012-02-14 22:49:49 +00001715 /* 9: Auxiliary processor unavailable(unsupported) */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001716 lwz r4,Decrementer@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001717 mtspr IVOR10,r4 /* 10: Decrementer */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001718 lwz r4,IntervalTimer@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001719 mtspr IVOR11,r4 /* 11: Interval timer */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001720 lwz r4,WatchdogTimer@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001721 mtspr IVOR12,r4 /* 12: Watchdog timer */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001722 lwz r4,DataTLBError@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001723 mtspr IVOR13,r4 /* 13: Data TLB error */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001724 lwz r4,InstructionTLBError@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001725 mtspr IVOR14,r4 /* 14: Instruction TLB error */
Scott Woodc4dfbee2015-04-23 20:01:56 -05001726 lwz r4,DebugBreakpoint@got(r12)
Scott Woodf21e7582015-04-07 20:20:00 -05001727 mtspr IVOR15,r4 /* 15: Debug */
wdenk9c53f402003-10-15 23:53:47 +00001728
Scott Woodc4dfbee2015-04-23 20:01:56 -05001729 mtlr r11
wdenk9c53f402003-10-15 23:53:47 +00001730 blr
1731
wdenk9c53f402003-10-15 23:53:47 +00001732.globl unlock_ram_in_cache
1733unlock_ram_in_cache:
1734 /* invalidate the INIT_RAM section */
Kumar Gala5c953ca2008-10-23 01:47:37 -05001735 lis r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@h
1736 ori r3,r3,(CONFIG_SYS_INIT_RAM_ADDR & ~(CONFIG_SYS_CACHELINE_SIZE-1))@l
Kumar Gala938e14e2008-01-08 01:22:21 -06001737 mfspr r4,L1CFG0
1738 andi. r4,r4,0x1ff
1739 slwi r4,r4,(10 - 1 - L1_CACHE_SHIFT)
Andy Flemingf08233c2007-08-14 01:34:21 -05001740 mtctr r4
Kumar Gala2a441212008-02-27 16:30:47 -060017411: dcbi r0,r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301742#ifdef CONFIG_E6500 /* lock/unlock L2 cache long with L1 */
York Sun8d45cc12015-08-17 13:31:52 -07001743 dcblc 2, r0, r3
Ruchika Guptabba41d92017-03-02 14:12:41 +05301744 dcblc 0, r0, r3
York Sun8d45cc12015-08-17 13:31:52 -07001745#else
York Sun52bf1022013-04-05 13:07:13 +00001746 dcblc r0,r3
York Sun8d45cc12015-08-17 13:31:52 -07001747#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001748 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE
wdenk9c53f402003-10-15 23:53:47 +00001749 bdnz 1b
Kumar Gala2a441212008-02-27 16:30:47 -06001750 sync
Andy Fleming5ba61fe2008-02-27 14:29:58 -06001751
1752 /* Invalidate the TLB entries for the cache */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001753 lis r3,CONFIG_SYS_INIT_RAM_ADDR@h
1754 ori r3,r3,CONFIG_SYS_INIT_RAM_ADDR@l
Andy Fleming5ba61fe2008-02-27 14:29:58 -06001755 tlbivax 0,r3
1756 addi r3,r3,0x1000
1757 tlbivax 0,r3
1758 addi r3,r3,0x1000
1759 tlbivax 0,r3
1760 addi r3,r3,0x1000
1761 tlbivax 0,r3
wdenk9c53f402003-10-15 23:53:47 +00001762 isync
1763 blr
Kumar Gala32090b32008-09-22 14:11:10 -05001764
1765.globl flush_dcache
1766flush_dcache:
1767 mfspr r3,SPRN_L1CFG0
1768
1769 rlwinm r5,r3,9,3 /* Extract cache block size */
1770 twlgti r5,1 /* Only 32 and 64 byte cache blocks
1771 * are currently defined.
1772 */
1773 li r4,32
1774 subfic r6,r5,2 /* r6 = log2(1KiB / cache block size) -
1775 * log2(number of ways)
1776 */
1777 slw r5,r4,r5 /* r5 = cache block size */
1778
1779 rlwinm r7,r3,0,0xff /* Extract number of KiB in the cache */
1780 mulli r7,r7,13 /* An 8-way cache will require 13
1781 * loads per set.
1782 */
1783 slw r7,r7,r6
1784
1785 /* save off HID0 and set DCFA */
1786 mfspr r8,SPRN_HID0
1787 ori r9,r8,HID0_DCFA@l
1788 mtspr SPRN_HID0,r9
1789 isync
1790
1791 lis r4,0
1792 mtctr r7
1793
17941: lwz r3,0(r4) /* Load... */
1795 add r4,r4,r5
1796 bdnz 1b
1797
1798 msync
1799 lis r4,0
1800 mtctr r7
1801
18021: dcbf 0,r4 /* ...and flush. */
1803 add r4,r4,r5
1804 bdnz 1b
1805
1806 /* restore HID0 */
1807 mtspr SPRN_HID0,r8
1808 isync
1809
1810 blr
Scott Wood7c810902012-09-20 16:35:21 -05001811#endif /* !MINIMAL_SPL */