| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
 | 
					
						
							|  |  |  |  * Copyright (C) 2007-2009 PetaLogix | 
					
						
							|  |  |  |  * Copyright (C) 2006 Atmark Techno, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  |  * MMU code derived from arch/ppc/kernel/head_4xx.S: | 
					
						
							|  |  |  |  *    Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org>
 | 
					
						
							|  |  |  |  *      Initial PowerPC version. | 
					
						
							|  |  |  |  *    Copyright (c) 1996 Cort Dougan <cort@cs.nmt.edu>
 | 
					
						
							|  |  |  |  *      Rewritten for PReP | 
					
						
							|  |  |  |  *    Copyright (c) 1996 Paul Mackerras <paulus@cs.anu.edu.au>
 | 
					
						
							|  |  |  |  *      Low-level exception handers, MMU support, and rewrite. | 
					
						
							|  |  |  |  *    Copyright (c) 1997 Dan Malek <dmalek@jlc.net>
 | 
					
						
							|  |  |  |  *      PowerPC 8xx modifications. | 
					
						
							|  |  |  |  *    Copyright (c) 1998-1999 TiVo, Inc. | 
					
						
							|  |  |  |  *      PowerPC 403GCX modifications. | 
					
						
							|  |  |  |  *    Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
 | 
					
						
							|  |  |  |  *      PowerPC 403GCX/405GP modifications. | 
					
						
							|  |  |  |  *    Copyright 2000 MontaVista Software Inc. | 
					
						
							|  |  |  |  *	PPC405 modifications | 
					
						
							|  |  |  |  *      PowerPC 403GCX/405GP modifications. | 
					
						
							|  |  |  |  * 	Author: MontaVista Software, Inc. | 
					
						
							|  |  |  |  *         	frank_rowand@mvista.com or source@mvista.com
 | 
					
						
							|  |  |  |  * 	   	debbie_chu@mvista.com
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License. See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-09 22:03:37 -05:00
										 |  |  | #include <linux/init.h> | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | #include <linux/linkage.h> | 
					
						
							|  |  |  | #include <asm/thread_info.h> | 
					
						
							|  |  |  | #include <asm/page.h> | 
					
						
							| 
									
										
										
										
											2009-10-15 10:57:53 -06:00
										 |  |  | #include <linux/of_fdt.h>		/* for OF_DT_HEADER */ | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | #ifdef CONFIG_MMU | 
					
						
							|  |  |  | #include <asm/setup.h> /* COMMAND_LINE_SIZE */ | 
					
						
							|  |  |  | #include <asm/mmu.h> | 
					
						
							|  |  |  | #include <asm/processor.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-31 14:57:26 +01:00
										 |  |  | .section .data | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | .global empty_zero_page
 | 
					
						
							|  |  |  | .align 12
 | 
					
						
							|  |  |  | empty_zero_page: | 
					
						
							| 
									
										
										
										
											2010-05-13 10:48:27 -05:00
										 |  |  | 	.space	PAGE_SIZE
 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | .global swapper_pg_dir
 | 
					
						
							|  |  |  | swapper_pg_dir: | 
					
						
							| 
									
										
										
										
											2010-05-13 10:48:27 -05:00
										 |  |  | 	.space	PAGE_SIZE
 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* CONFIG_MMU */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-31 14:57:26 +01:00
										 |  |  | .section .rodata | 
					
						
							|  |  |  | .align 4
 | 
					
						
							|  |  |  | endian_check: | 
					
						
							|  |  |  | 	.word	1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-09 22:03:37 -05:00
										 |  |  | 	__HEAD | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | ENTRY(_start) | 
					
						
							| 
									
										
										
										
											2010-03-15 08:48:27 +01:00
										 |  |  | #if CONFIG_KERNEL_BASE_ADDR == 0 | 
					
						
							|  |  |  | 	brai	TOPHYS(real_start) | 
					
						
							|  |  |  | 	.org	0x100
 | 
					
						
							|  |  |  | real_start: | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 15:39:58 +01:00
										 |  |  | 	mts	rmsr, r0 | 
					
						
							| 
									
										
										
										
											2009-07-30 14:31:23 +02:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2011-02-04 15:24:11 +01:00
										 |  |  |  * According to Xilinx, msrclr instruction behaves like 'mfs rX,rpc' | 
					
						
							|  |  |  |  * if the msrclr instruction is not enabled. We use this to detect | 
					
						
							|  |  |  |  * if the opcode is available, by issuing msrclr and then testing the result. | 
					
						
							|  |  |  |  * r8 == 0 - msr instructions are implemented | 
					
						
							|  |  |  |  * r8 != 0 - msr instructions are not implemented | 
					
						
							| 
									
										
										
										
											2009-07-30 14:31:23 +02:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-11-09 15:39:58 +01:00
										 |  |  | 	mfs	r1, rmsr | 
					
						
							| 
									
										
										
										
											2011-02-04 15:24:11 +01:00
										 |  |  | 	msrclr	r8, 0 /* clear nothing - just read msr for test */ | 
					
						
							|  |  |  | 	cmpu	r8, r8, r1 /* r1 must contain msr reg content */ | 
					
						
							| 
									
										
										
										
											2009-07-30 14:31:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-22 14:02:09 +10:00
										 |  |  | /* r7 may point to an FDT, or there may be one linked in. | 
					
						
							|  |  |  |    if it's in r7, we've got to save it away ASAP. | 
					
						
							|  |  |  |    We ensure r7 points to a valid FDT, just in case the bootloader | 
					
						
							|  |  |  |    is broken or non-existent */ | 
					
						
							|  |  |  | 	beqi	r7, no_fdt_arg			/* NULL pointer?  don't copy */ | 
					
						
							| 
									
										
										
										
											2011-01-26 13:41:05 +01:00
										 |  |  | /* Does r7 point to a valid FDT? Load HEADER magic number */ | 
					
						
							|  |  |  | 	/* Run time Big/Little endian platform */ | 
					
						
							|  |  |  | 	/* Save 1 as word and load byte - 0 - BIG, 1 - LITTLE */ | 
					
						
							| 
									
										
										
										
											2011-01-31 14:57:26 +01:00
										 |  |  | 	lbui	r11, r0, TOPHYS(endian_check) | 
					
						
							| 
									
										
										
										
											2011-01-26 13:41:05 +01:00
										 |  |  | 	beqid	r11, big_endian /* DO NOT break delay stop dependency */ | 
					
						
							|  |  |  | 	lw	r11, r0, r7 /* Big endian load in delay slot */ | 
					
						
							|  |  |  | 	lwr	r11, r0, r7 /* Little endian load */ | 
					
						
							|  |  |  | big_endian: | 
					
						
							|  |  |  | 	rsubi	r11, r11, OF_DT_HEADER	/* Check FDT header */ | 
					
						
							| 
									
										
										
										
											2009-06-22 12:31:55 +02:00
										 |  |  | 	beqi	r11, _prepare_copy_fdt | 
					
						
							|  |  |  | 	or	r7, r0, r0		/* clear R7 when not valid DTB */ | 
					
						
							| 
									
										
										
										
											2009-06-22 14:02:09 +10:00
										 |  |  | 	bnei	r11, no_fdt_arg			/* No - get out of here */ | 
					
						
							| 
									
										
										
										
											2009-06-22 12:31:55 +02:00
										 |  |  | _prepare_copy_fdt: | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 	or	r11, r0, r0 /* incremment */ | 
					
						
							| 
									
										
										
										
											2009-06-22 14:02:09 +10:00
										 |  |  | 	ori	r4, r0, TOPHYS(_fdt_start) | 
					
						
							| 
									
										
										
										
											2011-07-13 15:26:09 +02:00
										 |  |  | 	ori	r3, r0, (0x8000 - 4) | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | _copy_fdt: | 
					
						
							|  |  |  | 	lw	r12, r7, r11 /* r12 = r7 + r11 */ | 
					
						
							|  |  |  | 	sw	r12, r4, r11 /* addr[r4 + r11] = r12 */ | 
					
						
							|  |  |  | 	addik	r11, r11, 4 /* increment counting */ | 
					
						
							|  |  |  | 	bgtid	r3, _copy_fdt /* loop for all entries */ | 
					
						
							|  |  |  | 	addik	r3, r3, -4 /* descrement loop */ | 
					
						
							|  |  |  | no_fdt_arg: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | #ifdef CONFIG_MMU | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef CONFIG_CMDLINE_BOOL | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * handling command line | 
					
						
							| 
									
										
										
										
											2012-08-16 15:53:35 +02:00
										 |  |  |  * copy command line directly to cmd_line placed in data section. | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-08-16 15:53:35 +02:00
										 |  |  | 	beqid	r5, skip	/* Skip if NULL pointer */ | 
					
						
							| 
									
										
										
										
											2013-05-02 12:28:31 +02:00
										 |  |  | 	or	r11, r0, r0		/* incremment */ | 
					
						
							| 
									
										
										
										
											2012-08-16 15:53:35 +02:00
										 |  |  | 	ori	r4, r0, cmd_line	/* load address of command line */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	tophys(r4,r4)			/* convert to phys address */ | 
					
						
							|  |  |  | 	ori	r3, r0, COMMAND_LINE_SIZE - 1 /* number of loops */ | 
					
						
							|  |  |  | _copy_command_line: | 
					
						
							| 
									
										
										
										
											2012-08-16 15:53:35 +02:00
										 |  |  | 	/* r2=r5+r6 - r5 contain pointer to command line */ | 
					
						
							| 
									
										
										
										
											2013-05-02 12:28:31 +02:00
										 |  |  | 	lbu	r2, r5, r11 | 
					
						
							| 
									
										
										
										
											2012-08-16 15:53:35 +02:00
										 |  |  | 	beqid	r2, skip		/* Skip if no data */ | 
					
						
							| 
									
										
										
										
											2013-05-02 12:28:31 +02:00
										 |  |  | 	sb	r2, r4, r11		/* addr[r4+r6]= r2 */ | 
					
						
							|  |  |  | 	addik	r11, r11, 1		/* increment counting */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	bgtid	r3, _copy_command_line	/* loop for all entries       */ | 
					
						
							| 
									
										
										
										
											2012-08-16 15:53:35 +02:00
										 |  |  | 	addik	r3, r3, -1		/* decrement loop */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	addik	r5, r4, 0		/* add new space for command line */ | 
					
						
							|  |  |  | 	tovirt(r5,r5) | 
					
						
							| 
									
										
										
										
											2012-08-16 15:53:35 +02:00
										 |  |  | skip: | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | #endif /* CONFIG_CMDLINE_BOOL */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef NOT_COMPILE | 
					
						
							|  |  |  | /* save bram context */ | 
					
						
							| 
									
										
										
										
											2013-05-02 12:28:31 +02:00
										 |  |  | 	or	r11, r0, r0				/* incremment */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	ori	r4, r0, TOPHYS(_bram_load_start)	/* save bram context */ | 
					
						
							|  |  |  | 	ori	r3, r0, (LMB_SIZE - 4) | 
					
						
							|  |  |  | _copy_bram: | 
					
						
							| 
									
										
										
										
											2013-05-02 12:28:31 +02:00
										 |  |  | 	lw	r7, r0, r11		/* r7 = r0 + r6 */ | 
					
						
							|  |  |  | 	sw	r7, r4, r11		/* addr[r4 + r6] = r7 */ | 
					
						
							|  |  |  | 	addik	r11, r11, 4		/* increment counting */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	bgtid	r3, _copy_bram		/* loop for all entries */ | 
					
						
							|  |  |  | 	addik	r3, r3, -4		/* descrement loop */ | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 	/* We have to turn on the MMU right away. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * Set up the initial MMU state so we can do the first level of | 
					
						
							|  |  |  | 	 * kernel initialization.  This maps the first 16 MBytes of memory 1:1 | 
					
						
							|  |  |  | 	 * virtual to physical. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	nop | 
					
						
							| 
									
										
										
										
											2010-03-24 10:09:17 +01:00
										 |  |  | 	addik	r3, r0, MICROBLAZE_TLB_SIZE -1	/* Invalidate all TLB entries */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | _invalidate: | 
					
						
							|  |  |  | 	mts	rtlbx, r3 | 
					
						
							|  |  |  | 	mts	rtlbhi, r0			/* flush: ensure V is clear   */ | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	mts	rtlblo, r0 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	bgtid	r3, _invalidate		/* loop for all entries       */ | 
					
						
							|  |  |  | 	addik	r3, r3, -1 | 
					
						
							|  |  |  | 	/* sync */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-04 11:42:24 +01:00
										 |  |  | 	/* Setup the kernel PID */ | 
					
						
							|  |  |  | 	mts	rpid,r0			/* Load the kernel PID */ | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 	bri	4 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * We should still be executing code at physical address area | 
					
						
							|  |  |  | 	 * RAM_BASEADDR at this point. However, kernel code is at | 
					
						
							|  |  |  | 	 * a virtual address. So, set up a TLB mapping to cover this once | 
					
						
							|  |  |  | 	 * translation is enabled. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addik	r3,r0, CONFIG_KERNEL_START /* Load the kernel virtual address */ | 
					
						
							|  |  |  | 	tophys(r4,r3)			/* Load the kernel physical address */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	/* start to do TLB calculation */ | 
					
						
							|  |  |  | 	addik	r12, r0, _end | 
					
						
							|  |  |  | 	rsub	r12, r3, r12 | 
					
						
							|  |  |  | 	addik	r12, r12, CONFIG_KERNEL_PAD /* that's the pad */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	or r9, r0, r0 /* TLB0 = 0 */ | 
					
						
							|  |  |  | 	or r10, r0, r0 /* TLB1 = 0 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addik	r11, r12, -0x1000000 | 
					
						
							|  |  |  | 	bgei	r11, GT16 /* size is greater than 16MB */ | 
					
						
							|  |  |  | 	addik	r11, r12, -0x0800000 | 
					
						
							|  |  |  | 	bgei	r11, GT8 /* size is greater than 8MB */ | 
					
						
							|  |  |  | 	addik	r11, r12, -0x0400000 | 
					
						
							|  |  |  | 	bgei	r11, GT4 /* size is greater than 4MB */ | 
					
						
							|  |  |  | 	/* size is less than 4MB */ | 
					
						
							|  |  |  | 	addik	r11, r12, -0x0200000 | 
					
						
							|  |  |  | 	bgei	r11, GT2 /* size is greater than 2MB */ | 
					
						
							|  |  |  | 	addik	r9, r0, 0x0100000 /* TLB0 must be 1MB */ | 
					
						
							|  |  |  | 	addik	r11, r12, -0x0100000 | 
					
						
							|  |  |  | 	bgei	r11, GT1 /* size is greater than 1MB */ | 
					
						
							|  |  |  | 	/* TLB1 is 0 which is setup above */ | 
					
						
							|  |  |  | 	bri tlb_end | 
					
						
							|  |  |  | GT4: /* r11 contains the rest - will be either 1 or 4 */ | 
					
						
							|  |  |  | 	ori r9, r0, 0x400000 /* TLB0 is 4MB */ | 
					
						
							|  |  |  | 	bri TLB1 | 
					
						
							|  |  |  | GT16: /* TLB0 is 16MB */ | 
					
						
							|  |  |  | 	addik	r9, r0, 0x1000000 /* means TLB0 is 16MB */ | 
					
						
							|  |  |  | TLB1: | 
					
						
							|  |  |  | 	/* must be used r2 because of substract if failed */ | 
					
						
							|  |  |  | 	addik	r2, r11, -0x0400000 | 
					
						
							|  |  |  | 	bgei	r2, GT20 /* size is greater than 16MB */ | 
					
						
							|  |  |  | 	/* size is >16MB and <20MB */ | 
					
						
							|  |  |  | 	addik	r11, r11, -0x0100000 | 
					
						
							|  |  |  | 	bgei	r11, GT17 /* size is greater than 17MB */ | 
					
						
							|  |  |  | 	/* kernel is >16MB and < 17MB */ | 
					
						
							|  |  |  | GT1: | 
					
						
							|  |  |  | 	addik	r10, r0, 0x0100000 /* means TLB1 is 1MB */ | 
					
						
							|  |  |  | 	bri tlb_end | 
					
						
							|  |  |  | GT2: /* TLB0 is 0 and TLB1 will be 4MB */ | 
					
						
							|  |  |  | GT17: /* TLB1 is 4MB - kernel size <20MB */ | 
					
						
							|  |  |  | 	addik	r10, r0, 0x0400000 /* means TLB1 is 4MB */ | 
					
						
							|  |  |  | 	bri tlb_end | 
					
						
							|  |  |  | GT8: /* TLB0 is still zero that's why I can use only TLB1 */ | 
					
						
							|  |  |  | GT20: /* TLB1 is 16MB - kernel size >20MB */ | 
					
						
							|  |  |  | 	addik	r10, r0, 0x1000000 /* means TLB1 is 16MB */ | 
					
						
							|  |  |  | tlb_end: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * Configure and load two entries into TLB slots 0 and 1. | 
					
						
							|  |  |  | 	 * In case we are pinning TLBs, these are reserved in by the | 
					
						
							|  |  |  | 	 * other TLB functions.  If not reserving, then it doesn't | 
					
						
							|  |  |  | 	 * matter where they are loaded. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	andi	r4,r4,0xfffffc00	/* Mask off the real page number */ | 
					
						
							|  |  |  | 	ori	r4,r4,(TLB_WR | TLB_EX)	/* Set the write and execute bits */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * TLB0 is always used - check if is not zero (r9 stores TLB0 value) | 
					
						
							|  |  |  | 	 * if is use TLB1 value and clear it (r10 stores TLB1 value) | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	bnei	r9, tlb0_not_zero | 
					
						
							|  |  |  | 	add	r9, r10, r0 | 
					
						
							|  |  |  | 	add	r10, r0, r0 | 
					
						
							|  |  |  | tlb0_not_zero: | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* look at the code below */ | 
					
						
							|  |  |  | 	ori	r30, r0, 0x200 | 
					
						
							|  |  |  | 	andi	r29, r9, 0x100000 | 
					
						
							|  |  |  | 	bneid	r29, 1f | 
					
						
							|  |  |  | 	addik	r30, r30, 0x80 | 
					
						
							|  |  |  | 	andi	r29, r9, 0x400000 | 
					
						
							|  |  |  | 	bneid	r29, 1f | 
					
						
							|  |  |  | 	addik	r30, r30, 0x80 | 
					
						
							|  |  |  | 	andi	r29, r9, 0x1000000 | 
					
						
							|  |  |  | 	bneid	r29, 1f | 
					
						
							|  |  |  | 	addik	r30, r30, 0x80 | 
					
						
							|  |  |  | 1: | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	andi	r3,r3,0xfffffc00	/* Mask off the effective page number */ | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	ori	r3,r3,(TLB_VALID) | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	or	r3, r3, r30 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	/* Load tlb_skip size value which is index to first unused TLB entry */ | 
					
						
							|  |  |  | 	lwi	r11, r0, TOPHYS(tlb_skip) | 
					
						
							|  |  |  | 	mts     rtlbx,r11		/* TLB slow 0 */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mts	rtlblo,r4		/* Load the data portion of the entry */ | 
					
						
							|  |  |  | 	mts	rtlbhi,r3		/* Load the tag portion of the entry */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	/* Increase tlb_skip size */ | 
					
						
							|  |  |  | 	addik	r11, r11, 1 | 
					
						
							|  |  |  | 	swi	r11, r0, TOPHYS(tlb_skip) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	/* TLB1 can be zeroes that's why we not setup it */ | 
					
						
							|  |  |  | 	beqi	r10, jump_over2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* look at the code below */ | 
					
						
							|  |  |  | 	ori	r30, r0, 0x200 | 
					
						
							|  |  |  | 	andi	r29, r10, 0x100000 | 
					
						
							|  |  |  | 	bneid	r29, 1f | 
					
						
							|  |  |  | 	addik	r30, r30, 0x80 | 
					
						
							|  |  |  | 	andi	r29, r10, 0x400000 | 
					
						
							|  |  |  | 	bneid	r29, 1f | 
					
						
							|  |  |  | 	addik	r30, r30, 0x80 | 
					
						
							|  |  |  | 	andi	r29, r10, 0x1000000 | 
					
						
							|  |  |  | 	bneid	r29, 1f | 
					
						
							|  |  |  | 	addik	r30, r30, 0x80 | 
					
						
							|  |  |  | 1: | 
					
						
							|  |  |  | 	addk	r4, r4, r9	/* previous addr + TLB0 size */ | 
					
						
							|  |  |  | 	addk	r3, r3, r9 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	andi	r3,r3,0xfffffc00	/* Mask off the effective page number */ | 
					
						
							|  |  |  | 	ori	r3,r3,(TLB_VALID) | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	or	r3, r3, r30 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	lwi	r11, r0, TOPHYS(tlb_skip) | 
					
						
							|  |  |  | 	mts     rtlbx, r11		/* r11 is used from TLB0 */ | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mts	rtlblo,r4		/* Load the data portion of the entry */ | 
					
						
							|  |  |  | 	mts	rtlbhi,r3		/* Load the tag portion of the entry */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	/* Increase tlb_skip size */ | 
					
						
							|  |  |  | 	addik	r11, r11, 1 | 
					
						
							|  |  |  | 	swi	r11, r0, TOPHYS(tlb_skip) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | jump_over2: | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * Load a TLB entry for LMB, since we need access to | 
					
						
							|  |  |  | 	 * the exception vectors, using a 4k real==virtual mapping. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	/* Use temporary TLB_ID for LMB - clear this temporary mapping later */ | 
					
						
							| 
									
										
										
										
											2013-05-02 12:28:31 +02:00
										 |  |  | 	ori	r11, r0, MICROBLAZE_LMB_TLB_ID | 
					
						
							|  |  |  | 	mts     rtlbx,r11 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ori	r4,r0,(TLB_WR | TLB_EX) | 
					
						
							|  |  |  | 	ori	r3,r0,(TLB_VALID | TLB_PAGESZ(PAGESZ_4K)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mts	rtlblo,r4		/* Load the data portion of the entry */ | 
					
						
							|  |  |  | 	mts	rtlbhi,r3		/* Load the tag portion of the entry */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * We now have the lower 16 Meg of RAM mapped into TLB entries, and the | 
					
						
							|  |  |  | 	 * caches ready to work. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | turn_on_mmu: | 
					
						
							|  |  |  | 	ori	r15,r0,start_here | 
					
						
							|  |  |  | 	ori	r4,r0,MSR_KERNEL_VMS | 
					
						
							|  |  |  | 	mts	rmsr,r4 | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 	rted	r15,0			/* enables MMU */ | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | start_here: | 
					
						
							|  |  |  | #endif /* CONFIG_MMU */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 	/* Initialize small data anchors */ | 
					
						
							| 
									
										
										
										
											2011-02-01 09:00:57 +01:00
										 |  |  | 	addik	r13, r0, _KERNEL_SDA_BASE_ | 
					
						
							|  |  |  | 	addik	r2, r0, _KERNEL_SDA2_BASE_ | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Initialize stack pointer */ | 
					
						
							| 
									
										
										
										
											2011-02-01 09:00:57 +01:00
										 |  |  | 	addik	r1, r0, init_thread_union + THREAD_SIZE - 4 | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Initialize r31 with current task address */ | 
					
						
							| 
									
										
										
										
											2011-02-01 09:00:57 +01:00
										 |  |  | 	addik	r31, r0, init_task | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * Call platform dependent initialize function. | 
					
						
							|  |  |  | 	 * Please see $(ARCH)/mach-$(SUBARCH)/setup.c for | 
					
						
							|  |  |  | 	 * the function. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	addik	r11, r0, machine_early_init | 
					
						
							|  |  |  | 	brald	r15, r11 | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 	nop | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | #ifndef CONFIG_MMU | 
					
						
							| 
									
										
										
										
											2011-02-01 09:00:57 +01:00
										 |  |  | 	addik	r15, r0, machine_halt | 
					
						
							| 
									
										
										
										
											2009-03-27 14:25:20 +01:00
										 |  |  | 	braid	start_kernel | 
					
						
							|  |  |  | 	nop | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | #else | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * Initialize the MMU. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	bralid	r15, mmu_init | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Go back to running unmapped so we can load up new values | 
					
						
							|  |  |  | 	 * and change to using our exception vectors. | 
					
						
							|  |  |  | 	 * On the MicroBlaze, all we invalidate the used TLB entries to clear | 
					
						
							|  |  |  | 	 * the old 16M byte TLB mappings. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	ori	r15,r0,TOPHYS(kernel_load_context) | 
					
						
							|  |  |  | 	ori	r4,r0,MSR_KERNEL | 
					
						
							|  |  |  | 	mts	rmsr,r4 | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 	bri	4 | 
					
						
							|  |  |  | 	rted	r15,0 | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Load up the kernel context */ | 
					
						
							|  |  |  | kernel_load_context: | 
					
						
							| 
									
										
										
										
											2010-02-08 16:41:38 +01:00
										 |  |  | 	ori	r5, r0, MICROBLAZE_LMB_TLB_ID | 
					
						
							| 
									
										
										
										
											2009-05-26 16:30:09 +02:00
										 |  |  | 	mts     rtlbx,r5 | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 	mts	rtlbhi,r0 | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 	addi	r15, r0, machine_halt | 
					
						
							|  |  |  | 	ori	r17, r0, start_kernel | 
					
						
							|  |  |  | 	ori	r4, r0, MSR_KERNEL_VMS | 
					
						
							|  |  |  | 	mts	rmsr, r4 | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 	rted	r17, 0		/* enable MMU and jump to start_kernel */ | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | #endif /* CONFIG_MMU */ |