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