| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Low-level SLB routines | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2004 David Gibson <dwg@au.ibm.com>, IBM
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Based on earlier C version: | 
					
						
							|  |  |  |  * Dave Engebretsen and Mike Corrigan {engebret|mikejc}@us.ibm.com
 | 
					
						
							|  |  |  |  *    Copyright (c) 2001 Dave Engebretsen | 
					
						
							|  |  |  |  * Copyright (C) 2002 Anton Blanchard <anton@au.ibm.com>, IBM
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This program is free software; you can redistribute it and/or
 | 
					
						
							|  |  |  |  *  modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  *  as published by the Free Software Foundation; either version
 | 
					
						
							|  |  |  |  *  2 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/processor.h> | 
					
						
							|  |  |  | #include <asm/ppc_asm.h> | 
					
						
							| 
									
										
										
										
											2005-09-09 20:57:26 +02:00
										 |  |  | #include <asm/asm-offsets.h> | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/cputable.h> | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | #include <asm/page.h> | 
					
						
							|  |  |  | #include <asm/mmu.h> | 
					
						
							|  |  |  | #include <asm/pgtable.h> | 
					
						
							| 
									
										
										
										
											2006-09-25 18:19:00 +10:00
										 |  |  | #include <asm/firmware.h> | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | /* void slb_allocate_realmode(unsigned long ea);
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Create an SLB entry for the given EA (user or kernel). | 
					
						
							|  |  |  |  * 	r3 = faulting address, r13 = PACA | 
					
						
							|  |  |  |  *	r9, r10, r11 are clobbered by this function | 
					
						
							|  |  |  |  * No other registers are examined or changed. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | _GLOBAL(slb_allocate_realmode) | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * check for bad kernel/user address | 
					
						
							|  |  |  | 	 * (ea & ~REGION_MASK) >= PGTABLE_RANGE | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	rldicr. r9,r3,4,(63 - 46 - 4) | 
					
						
							|  |  |  | 	bne-	8f | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	srdi	r9,r3,60		/* get region */ | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	srdi	r10,r3,SID_SHIFT	/* get esid */ | 
					
						
							| 
									
										
										
										
											2005-12-05 10:24:33 -06:00
										 |  |  | 	cmpldi	cr7,r9,0xc		/* cmp PAGE_OFFSET for later use */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-05 10:24:33 -06:00
										 |  |  | 	/* r3 = address, r10 = esid, cr7 = <> PAGE_OFFSET */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	blt	cr7,0f			/* user or kernel? */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* kernel address: proto-VSID = ESID */ | 
					
						
							|  |  |  | 	/* WARNING - MAGIC: we don't use the VSID 0xfffffffff, but | 
					
						
							|  |  |  | 	 * this code will generate the protoVSID 0xfffffffff for the | 
					
						
							|  |  |  | 	 * top segment.  That's ok, the scramble below will translate | 
					
						
							|  |  |  | 	 * it to VSID 0, which is reserved as a bad VSID - one which | 
					
						
							|  |  |  | 	 * will never have any pages in it.  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												[POWERPC] vmemmap fixes to use smaller pages
This changes vmemmap to use a different region (region 0xf) of the
address space, and to configure the page size of that region
dynamically at boot.
The problem with the current approach of always using 16M pages is that
it's not well suited to machines that have small amounts of memory such
as small partitions on pseries, or PS3's.
In fact, on the PS3, failure to allocate the 16M page backing vmmemmap
tends to prevent hotplugging the HV's "additional" memory, thus limiting
the available memory even more, from my experience down to something
like 80M total, which makes it really not very useable.
The logic used by my match to choose the vmemmap page size is:
 - If 16M pages are available and there's 1G or more RAM at boot,
   use that size.
 - Else if 64K pages are available, use that
 - Else use 4K pages
I've tested on a POWER6 (16M pages) and on an iSeries POWER3 (4K pages)
and it seems to work fine.
Note that I intend to change the way we organize the kernel regions &
SLBs so the actual region will change from 0xf back to something else at
one point, as I simplify the SLB miss handler, but that will be for a
later patch.
Signed-off-by: Paul Mackerras <paulus@samba.org>
											
										 
											2008-04-30 15:41:48 +10:00
										 |  |  | 	/* Check if hitting the linear mapping or some other kernel space | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	*/ | 
					
						
							|  |  |  | 	bne	cr7,1f | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Linear mapping encoding bits, the "li" instruction below will | 
					
						
							|  |  |  | 	 * be patched by the kernel at boot | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | _GLOBAL(slb_miss_kernel_load_linear) | 
					
						
							|  |  |  | 	li	r11,0 | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:55 +00:00
										 |  |  | 	/* | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	 * context = (MAX_USER_CONTEXT) + ((ea >> 60) - 0xc) + 1 | 
					
						
							|  |  |  | 	 * r9 = region id. | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:55 +00:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	addis	r9,r9,(MAX_USER_CONTEXT - 0xc + 1)@ha
 | 
					
						
							|  |  |  | 	addi	r9,r9,(MAX_USER_CONTEXT - 0xc + 1)@l
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | BEGIN_FTR_SECTION | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	b	slb_finish_load | 
					
						
							| 
									
										
										
										
											2011-04-06 19:48:50 +00:00
										 |  |  | END_MMU_FTR_SECTION_IFCLR(MMU_FTR_1T_SEGMENT) | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 	b	slb_finish_load_1T | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												[POWERPC] vmemmap fixes to use smaller pages
This changes vmemmap to use a different region (region 0xf) of the
address space, and to configure the page size of that region
dynamically at boot.
The problem with the current approach of always using 16M pages is that
it's not well suited to machines that have small amounts of memory such
as small partitions on pseries, or PS3's.
In fact, on the PS3, failure to allocate the 16M page backing vmmemmap
tends to prevent hotplugging the HV's "additional" memory, thus limiting
the available memory even more, from my experience down to something
like 80M total, which makes it really not very useable.
The logic used by my match to choose the vmemmap page size is:
 - If 16M pages are available and there's 1G or more RAM at boot,
   use that size.
 - Else if 64K pages are available, use that
 - Else use 4K pages
I've tested on a POWER6 (16M pages) and on an iSeries POWER3 (4K pages)
and it seems to work fine.
Note that I intend to change the way we organize the kernel regions &
SLBs so the actual region will change from 0xf back to something else at
one point, as I simplify the SLB miss handler, but that will be for a
later patch.
Signed-off-by: Paul Mackerras <paulus@samba.org>
											
										 
											2008-04-30 15:41:48 +10:00
										 |  |  | 1: | 
					
						
							|  |  |  | #ifdef CONFIG_SPARSEMEM_VMEMMAP | 
					
						
							|  |  |  | 	/* Check virtual memmap region. To be patches at kernel boot */ | 
					
						
							|  |  |  | 	cmpldi	cr0,r9,0xf | 
					
						
							|  |  |  | 	bne	1f | 
					
						
							|  |  |  | _GLOBAL(slb_miss_kernel_load_vmemmap) | 
					
						
							|  |  |  | 	li	r11,0 | 
					
						
							|  |  |  | 	b	6f | 
					
						
							|  |  |  | 1: | 
					
						
							|  |  |  | #endif /* CONFIG_SPARSEMEM_VMEMMAP */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-12 20:43:47 +00:00
										 |  |  | 	/* vmalloc mapping gets the encoding from the PACA as the mapping | 
					
						
							|  |  |  | 	 * can be demoted from 64K -> 4K dynamically on some machines | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2006-06-15 10:45:18 +10:00
										 |  |  | 	clrldi	r11,r10,48 | 
					
						
							|  |  |  | 	cmpldi	r11,(VMALLOC_SIZE >> 28) - 1 | 
					
						
							|  |  |  | 	bgt	5f | 
					
						
							|  |  |  | 	lhz	r11,PACAVMALLOCSLLP(r13) | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 	b	6f | 
					
						
							| 
									
										
										
										
											2006-06-15 10:45:18 +10:00
										 |  |  | 5: | 
					
						
							| 
									
										
										
										
											2009-10-12 20:43:47 +00:00
										 |  |  | 	/* IO mapping */ | 
					
						
							|  |  |  | 	_GLOBAL(slb_miss_kernel_load_io) | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	li	r11,0 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 6: | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:55 +00:00
										 |  |  | 	/* | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	 * context = (MAX_USER_CONTEXT) + ((ea >> 60) - 0xc) + 1 | 
					
						
							|  |  |  | 	 * r9 = region id. | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:55 +00:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	addis	r9,r9,(MAX_USER_CONTEXT - 0xc + 1)@ha
 | 
					
						
							|  |  |  | 	addi	r9,r9,(MAX_USER_CONTEXT - 0xc + 1)@l
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | BEGIN_FTR_SECTION | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	b	slb_finish_load | 
					
						
							| 
									
										
										
										
											2011-04-06 19:48:50 +00:00
										 |  |  | END_MMU_FTR_SECTION_IFCLR(MMU_FTR_1T_SEGMENT) | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 	b	slb_finish_load_1T | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 0: | 
					
						
							| 
									
										
										
										
											2007-05-08 16:27:27 +10:00
										 |  |  | 	/* when using slices, we extract the psize off the slice bitmaps | 
					
						
							|  |  |  | 	 * and then we need to get the sllp encoding off the mmu_psize_defs | 
					
						
							|  |  |  | 	 * array. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * XXX This is a bit inefficient especially for the normal case, | 
					
						
							|  |  |  | 	 * so we should try to implement a fast path for the standard page | 
					
						
							|  |  |  | 	 * size using the old sllp value so we avoid the array. We cannot | 
					
						
							|  |  |  | 	 * really do dynamic patching unfortunately as processes might flip | 
					
						
							|  |  |  | 	 * between 4k and 64k standard page size | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | #ifdef CONFIG_PPC_MM_SLICES | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:52 +00:00
										 |  |  | 	/* r10 have esid */ | 
					
						
							| 
									
										
											  
											
												[PATCH] ppc64: Fix bug in SLB miss handler for hugepages
This patch, however, should be applied on top of the 64k-page-size patch to
fix some problems with hugepage (some pre-existing, another introduced by
this patch).
The patch fixes a bug in the SLB miss handler for hugepages on ppc64
introduced by the dynamic hugepage patch (commit id
c594adad5653491813959277fb87a2fef54c4e05) due to a misunderstanding of the
srd instruction's behaviour (mea culpa).  The problem arises when a 64-bit
process maps some hugepages in the low 4GB of the address space (unusual).
In this case, as well as the 256M segment in question being marked for
hugepages, other segments at 32G intervals will be incorrectly marked for
hugepages.
In the process, this patch tweaks the semantics of the hugepage bitmaps to
be more sensible.  Previously, an address below 4G was marked for hugepages
if the appropriate segment bit in the "low areas" bitmask was set *or* if
the low bit in the "high areas" bitmap was set (which would mark all
addresses below 1TB for hugepage).  With this patch, any given address is
governed by a single bitmap.  Addresses below 4GB are marked for hugepage
if and only if their bit is set in the "low areas" bitmap (256M
granularity).  Addresses between 4GB and 1TB are marked for hugepage iff
the low bit in the "high areas" bitmap is set.  Higher addresses are marked
for hugepage iff their bit in the "high areas" bitmap is set (1TB
granularity).
To avoid conflicts, this patch must be applied on top of BenH's pending
patch for 64k base page size [0].  As such, this patch also addresses a
hugepage problem introduced by that patch.  That patch allows hugepages of
1MB in size on hardware which supports it, however, that won't work when
using 4k pages (4 level pagetable), because in that case hugepage PTEs are
stored at the PMD level, and each PMD entry maps 2MB.  This patch simply
disallows hugepages in that case (we can do something cleverer to re-enable
them some other day).
Built, booted, and a handful of hugepage related tests passed on POWER5
LPAR (both ARCH=powerpc and ARCH=ppc64).
[0] http://gate.crashing.org/~benh/ppc64-64k-pages.diff
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2005-11-07 00:57:52 -08:00
										 |  |  | 	cmpldi	r10,16 | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:52 +00:00
										 |  |  | 	/* below SLICE_LOW_TOP */ | 
					
						
							| 
									
										
											  
											
												[PATCH] ppc64: Fix bug in SLB miss handler for hugepages
This patch, however, should be applied on top of the 64k-page-size patch to
fix some problems with hugepage (some pre-existing, another introduced by
this patch).
The patch fixes a bug in the SLB miss handler for hugepages on ppc64
introduced by the dynamic hugepage patch (commit id
c594adad5653491813959277fb87a2fef54c4e05) due to a misunderstanding of the
srd instruction's behaviour (mea culpa).  The problem arises when a 64-bit
process maps some hugepages in the low 4GB of the address space (unusual).
In this case, as well as the 256M segment in question being marked for
hugepages, other segments at 32G intervals will be incorrectly marked for
hugepages.
In the process, this patch tweaks the semantics of the hugepage bitmaps to
be more sensible.  Previously, an address below 4G was marked for hugepages
if the appropriate segment bit in the "low areas" bitmask was set *or* if
the low bit in the "high areas" bitmap was set (which would mark all
addresses below 1TB for hugepage).  With this patch, any given address is
governed by a single bitmap.  Addresses below 4GB are marked for hugepage
if and only if their bit is set in the "low areas" bitmap (256M
granularity).  Addresses between 4GB and 1TB are marked for hugepage iff
the low bit in the "high areas" bitmap is set.  Higher addresses are marked
for hugepage iff their bit in the "high areas" bitmap is set (1TB
granularity).
To avoid conflicts, this patch must be applied on top of BenH's pending
patch for 64k base page size [0].  As such, this patch also addresses a
hugepage problem introduced by that patch.  That patch allows hugepages of
1MB in size on hardware which supports it, however, that won't work when
using 4k pages (4 level pagetable), because in that case hugepage PTEs are
stored at the PMD level, and each PMD entry maps 2MB.  This patch simply
disallows hugepages in that case (we can do something cleverer to re-enable
them some other day).
Built, booted, and a handful of hugepage related tests passed on POWER5
LPAR (both ARCH=powerpc and ARCH=ppc64).
[0] http://gate.crashing.org/~benh/ppc64-64k-pages.diff
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2005-11-07 00:57:52 -08:00
										 |  |  | 	blt	5f | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:52 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * Handle hpsizes, | 
					
						
							|  |  |  | 	 * r9 is get_paca()->context.high_slices_psize[index], r11 is mask_index | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	srdi    r11,r10,(SLICE_HIGH_SHIFT - SLICE_LOW_SHIFT + 1) /* index */ | 
					
						
							|  |  |  | 	addi	r9,r11,PACAHIGHSLICEPSIZE | 
					
						
							|  |  |  | 	lbzx	r9,r13,r9		/* r9 is hpsizes[r11] */ | 
					
						
							|  |  |  | 	/* r11 = (r10 >> (SLICE_HIGH_SHIFT - SLICE_LOW_SHIFT)) & 0x1 */ | 
					
						
							|  |  |  | 	rldicl	r11,r10,(64 - (SLICE_HIGH_SHIFT - SLICE_LOW_SHIFT)),63 | 
					
						
							|  |  |  | 	b	6f | 
					
						
							| 
									
										
											  
											
												[PATCH] ppc64: Fix bug in SLB miss handler for hugepages
This patch, however, should be applied on top of the 64k-page-size patch to
fix some problems with hugepage (some pre-existing, another introduced by
this patch).
The patch fixes a bug in the SLB miss handler for hugepages on ppc64
introduced by the dynamic hugepage patch (commit id
c594adad5653491813959277fb87a2fef54c4e05) due to a misunderstanding of the
srd instruction's behaviour (mea culpa).  The problem arises when a 64-bit
process maps some hugepages in the low 4GB of the address space (unusual).
In this case, as well as the 256M segment in question being marked for
hugepages, other segments at 32G intervals will be incorrectly marked for
hugepages.
In the process, this patch tweaks the semantics of the hugepage bitmaps to
be more sensible.  Previously, an address below 4G was marked for hugepages
if the appropriate segment bit in the "low areas" bitmask was set *or* if
the low bit in the "high areas" bitmap was set (which would mark all
addresses below 1TB for hugepage).  With this patch, any given address is
governed by a single bitmap.  Addresses below 4GB are marked for hugepage
if and only if their bit is set in the "low areas" bitmap (256M
granularity).  Addresses between 4GB and 1TB are marked for hugepage iff
the low bit in the "high areas" bitmap is set.  Higher addresses are marked
for hugepage iff their bit in the "high areas" bitmap is set (1TB
granularity).
To avoid conflicts, this patch must be applied on top of BenH's pending
patch for 64k base page size [0].  As such, this patch also addresses a
hugepage problem introduced by that patch.  That patch allows hugepages of
1MB in size on hardware which supports it, however, that won't work when
using 4k pages (4 level pagetable), because in that case hugepage PTEs are
stored at the PMD level, and each PMD entry maps 2MB.  This patch simply
disallows hugepages in that case (we can do something cleverer to re-enable
them some other day).
Built, booted, and a handful of hugepage related tests passed on POWER5
LPAR (both ARCH=powerpc and ARCH=ppc64).
[0] http://gate.crashing.org/~benh/ppc64-64k-pages.diff
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
											
										 
											2005-11-07 00:57:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:52 +00:00
										 |  |  | 5: | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * Handle lpsizes | 
					
						
							|  |  |  | 	 * r9 is get_paca()->context.low_slices_psize, r11 is index | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	ld	r9,PACALOWSLICESPSIZE(r13) | 
					
						
							|  |  |  | 	mr	r11,r10 | 
					
						
							|  |  |  | 6: | 
					
						
							|  |  |  | 	sldi	r11,r11,2  /* index * 4 */ | 
					
						
							|  |  |  | 	/* Extract the psize and multiply to get an array offset */ | 
					
						
							| 
									
										
										
										
											2007-05-08 16:27:27 +10:00
										 |  |  | 	srd	r9,r9,r11 | 
					
						
							|  |  |  | 	andi.	r9,r9,0xf | 
					
						
							|  |  |  | 	mulli	r9,r9,MMUPSIZEDEFSIZE | 
					
						
							| 
									
										
										
										
											2005-08-11 16:55:21 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-08 16:27:27 +10:00
										 |  |  | 	/* Now get to the array and obtain the sllp | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	ld	r11,PACATOC(r13) | 
					
						
							|  |  |  | 	ld	r11,mmu_psize_defs@got(r11)
 | 
					
						
							|  |  |  | 	add	r11,r11,r9 | 
					
						
							|  |  |  | 	ld	r11,MMUPSIZESLLP(r11) | 
					
						
							|  |  |  | 	ori	r11,r11,SLB_VSID_USER | 
					
						
							|  |  |  | #else | 
					
						
							|  |  |  | 	/* paca context sllp already contains the SLB_VSID_USER bits */ | 
					
						
							| 
									
										
										
										
											2006-06-15 10:45:18 +10:00
										 |  |  | 	lhz	r11,PACACONTEXTSLLP(r13) | 
					
						
							| 
									
										
										
										
											2007-05-08 16:27:27 +10:00
										 |  |  | #endif /* CONFIG_PPC_MM_SLICES */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	ld	r9,PACACONTEXTID(r13) | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | BEGIN_FTR_SECTION | 
					
						
							|  |  |  | 	cmpldi	r10,0x1000 | 
					
						
							|  |  |  | 	bge	slb_finish_load_1T | 
					
						
							| 
									
										
										
										
											2011-04-06 19:48:50 +00:00
										 |  |  | END_MMU_FTR_SECTION_IFSET(MMU_FTR_1T_SEGMENT) | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	b	slb_finish_load | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 8:	/* invalid EA */ | 
					
						
							|  |  |  | 	li	r10,0			/* BAD_VSID */ | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	li	r9,0			/* BAD_VSID */ | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	li	r11,SLB_VSID_USER	/* flags don't much matter */ | 
					
						
							|  |  |  | 	b	slb_finish_load | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __DISABLED__ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* void slb_allocate_user(unsigned long ea);
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Create an SLB entry for the given EA (user or kernel). | 
					
						
							|  |  |  |  * 	r3 = faulting address, r13 = PACA | 
					
						
							|  |  |  |  *	r9, r10, r11 are clobbered by this function | 
					
						
							|  |  |  |  * No other registers are examined or changed. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * It is called with translation enabled in order to be able to walk the | 
					
						
							|  |  |  |  * page tables. This is not currently used. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(slb_allocate_user) | 
					
						
							|  |  |  | 	/* r3 = faulting address */ | 
					
						
							|  |  |  | 	srdi	r10,r3,28		/* get esid */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	crset	4*cr7+lt		/* set "user" flag for later */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* check if we fit in the range covered by the pagetables*/ | 
					
						
							|  |  |  | 	srdi.	r9,r3,PGTABLE_EADDR_SIZE | 
					
						
							|  |  |  | 	crnot	4*cr0+eq,4*cr0+eq | 
					
						
							|  |  |  | 	beqlr | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	/* now we need to get to the page tables in order to get the page | 
					
						
							|  |  |  | 	 * size encoding from the PMD. In the future, we'll be able to deal | 
					
						
							|  |  |  | 	 * with 1T segments too by getting the encoding from the PGD instead | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	ld	r9,PACAPGDIR(r13) | 
					
						
							|  |  |  | 	cmpldi	cr0,r9,0 | 
					
						
							|  |  |  | 	beqlr | 
					
						
							|  |  |  | 	rlwinm	r11,r10,8,25,28 | 
					
						
							|  |  |  | 	ldx	r9,r9,r11		/* get pgd_t */ | 
					
						
							|  |  |  | 	cmpldi	cr0,r9,0 | 
					
						
							|  |  |  | 	beqlr | 
					
						
							|  |  |  | 	rlwinm	r11,r10,3,17,28 | 
					
						
							|  |  |  | 	ldx	r9,r9,r11		/* get pmd_t */ | 
					
						
							|  |  |  | 	cmpldi	cr0,r9,0 | 
					
						
							|  |  |  | 	beqlr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* build vsid flags */ | 
					
						
							|  |  |  | 	andi.	r11,r9,SLB_VSID_LLP | 
					
						
							|  |  |  | 	ori	r11,r11,SLB_VSID_USER | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* get context to calculate proto-VSID */ | 
					
						
							| 
									
										
										
										
											2005-08-31 14:34:05 +10:00
										 |  |  | 	ld	r9,PACACONTEXTID(r13) | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	/* fall through slb_finish_load */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* __DISABLED__ */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Finish loading of an SLB entry and return | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  |  * r3 = EA, r9 = context, r10 = ESID, r11 = flags, clobbers r9, cr7 = <> PAGE_OFFSET | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  |  */ | 
					
						
							|  |  |  | slb_finish_load: | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:55 +00:00
										 |  |  | 	rldimi  r10,r9,ESID_BITS,0 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 	ASM_VSID_SCRAMBLE(r10,r9,256M) | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:53 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * bits above VSID_BITS_256M need to be ignored from r10 | 
					
						
							|  |  |  | 	 * also combine VSID and flags | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	rldimi	r11,r10,SLB_VSID_SHIFT,(64 - (SLB_VSID_SHIFT + VSID_BITS_256M)) | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* r3 = EA, r11 = VSID data */ | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * Find a slot, round robin. Previously we tried to find a | 
					
						
							|  |  |  | 	 * free slot first but that took too long. Unfortunately we | 
					
						
							|  |  |  |  	 * dont have any LRU information to help us choose a slot. | 
					
						
							|  |  |  |  	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 7:	ld	r10,PACASTABRR(r13) | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	addi	r10,r10,1 | 
					
						
							| 
									
										
										
										
											2007-12-06 17:24:48 +11:00
										 |  |  | 	/* This gets soft patched on boot. */ | 
					
						
							|  |  |  | _GLOBAL(slb_compare_rr_to_size) | 
					
						
							|  |  |  | 	cmpldi	r10,0 | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	blt+	4f | 
					
						
							|  |  |  | 	li	r10,SLB_NUM_BOLTED | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 4: | 
					
						
							|  |  |  | 	std	r10,PACASTABRR(r13) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 3: | 
					
						
							|  |  |  | 	rldimi	r3,r10,0,36		/* r3= EA[0:35] | entry */ | 
					
						
							|  |  |  | 	oris	r10,r3,SLB_ESID_V@h	/* r3 |= SLB_ESID_V */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* r3 = ESID data, r11 = VSID data */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * No need for an isync before or after this slbmte. The exception | 
					
						
							|  |  |  | 	 * we enter with and the rfid we exit with are context synchronizing. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	slbmte	r11,r10 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	/* we're done for kernel addresses */ | 
					
						
							|  |  |  | 	crclr	4*cr0+eq		/* set result to "success" */ | 
					
						
							|  |  |  | 	bgelr	cr7 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Update the slb cache */ | 
					
						
							|  |  |  | 	lhz	r3,PACASLBCACHEPTR(r13)	/* offset = paca->slb_cache_ptr */ | 
					
						
							|  |  |  | 	cmpldi	r3,SLB_CACHE_ENTRIES | 
					
						
							|  |  |  | 	bge	1f | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* still room in the slb cache */ | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:54 +00:00
										 |  |  | 	sldi	r11,r3,2		/* r11 = offset * sizeof(u32) */ | 
					
						
							|  |  |  | 	srdi    r10,r10,28		/* get the 36 bits of the ESID */ | 
					
						
							|  |  |  | 	add	r11,r11,r13		/* r11 = (u32 *)paca + offset */ | 
					
						
							|  |  |  | 	stw	r10,PACASLBCACHE(r11)	/* paca->slb_cache[offset] = esid */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	addi	r3,r3,1			/* offset++ */ | 
					
						
							|  |  |  | 	b	2f | 
					
						
							|  |  |  | 1:					/* offset >= SLB_CACHE_ENTRIES */ | 
					
						
							|  |  |  | 	li	r3,SLB_CACHE_ENTRIES+1 | 
					
						
							|  |  |  | 2: | 
					
						
							|  |  |  | 	sth	r3,PACASLBCACHEPTR(r13)	/* paca->slb_cache_ptr = offset */ | 
					
						
							| 
									
										
										
										
											2005-11-07 11:06:55 +11:00
										 |  |  | 	crclr	4*cr0+eq		/* set result to "success" */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Finish loading of a 1T SLB entry (for the kernel linear mapping) and return. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  |  * r3 = EA, r9 = context, r10 = ESID(256MB), r11 = flags, clobbers r9 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  |  */ | 
					
						
							|  |  |  | slb_finish_load_1T: | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:54 +00:00
										 |  |  | 	srdi	r10,r10,(SID_SHIFT_1T - SID_SHIFT)	/* get 1T ESID */ | 
					
						
							| 
									
										
										
										
											2013-03-13 03:34:55 +00:00
										 |  |  | 	rldimi  r10,r9,ESID_BITS_1T,0 | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 	ASM_VSID_SCRAMBLE(r10,r9,1T) | 
					
						
							| 
									
										
										
										
											2012-09-10 02:52:53 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	 * bits above VSID_BITS_1T need to be ignored from r10 | 
					
						
							|  |  |  | 	 * also combine VSID and flags | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	rldimi	r11,r10,SLB_VSID_SHIFT_1T,(64 - (SLB_VSID_SHIFT_1T + VSID_BITS_1T)) | 
					
						
							| 
									
										
										
										
											2007-10-11 20:37:10 +10:00
										 |  |  | 	li	r10,MMU_SEGSIZE_1T | 
					
						
							|  |  |  | 	rldimi	r11,r10,SLB_VSID_SSIZE_SHIFT,0	/* insert segment size */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* r3 = EA, r11 = VSID data */ | 
					
						
							|  |  |  | 	clrrdi	r3,r3,SID_SHIFT_1T	/* clear out non-ESID bits */ | 
					
						
							|  |  |  | 	b	7b | 
					
						
							|  |  |  | 
 |