| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * PowerPC64 Segment Translation Support. | 
 | 3 |  * | 
 | 4 |  * Dave Engebretsen and Mike Corrigan {engebret|mikejc}@us.ibm.com | 
 | 5 |  *    Copyright (c) 2001 Dave Engebretsen | 
 | 6 |  * | 
 | 7 |  * Copyright (C) 2002 Anton Blanchard <anton@au.ibm.com>, IBM | 
 | 8 |  * | 
 | 9 |  *      This program is free software; you can redistribute it and/or | 
 | 10 |  *      modify it under the terms of the GNU General Public License | 
 | 11 |  *      as published by the Free Software Foundation; either version | 
 | 12 |  *      2 of the License, or (at your option) any later version. | 
 | 13 |  */ | 
 | 14 |  | 
| Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 15 | #include <linux/memblock.h> | 
| David S. Miller | d9b2b2a | 2008-02-13 16:56:49 -0800 | [diff] [blame] | 16 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/pgtable.h> | 
 | 18 | #include <asm/mmu.h> | 
 | 19 | #include <asm/mmu_context.h> | 
 | 20 | #include <asm/paca.h> | 
 | 21 | #include <asm/cputable.h> | 
| David S. Miller | d9b2b2a | 2008-02-13 16:56:49 -0800 | [diff] [blame] | 22 | #include <asm/prom.h> | 
| David Gibson | 533f081 | 2005-07-27 11:44:19 -0700 | [diff] [blame] | 23 | #include <asm/abs_addr.h> | 
| Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 24 | #include <asm/firmware.h> | 
| Kamalesh Babulal | f9b6c1d | 2007-11-19 17:44:05 +1100 | [diff] [blame] | 25 | #include <asm/iseries/hv_call.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 |  | 
| David Gibson | 1f8d419 | 2005-05-05 16:15:13 -0700 | [diff] [blame] | 27 | struct stab_entry { | 
 | 28 | 	unsigned long esid_data; | 
 | 29 | 	unsigned long vsid_data; | 
 | 30 | }; | 
 | 31 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #define NR_STAB_CACHE_ENTRIES 8 | 
| Michael Ellerman | 09de9ff | 2008-05-08 14:27:07 +1000 | [diff] [blame] | 33 | static DEFINE_PER_CPU(long, stab_cache_ptr); | 
| Tejun Heo | 204fba4 | 2009-06-24 15:13:45 +0900 | [diff] [blame] | 34 | static DEFINE_PER_CPU(long [NR_STAB_CACHE_ENTRIES], stab_cache); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 |  | 
 | 36 | /* | 
 | 37 |  * Create a segment table entry for the given esid/vsid pair. | 
 | 38 |  */ | 
 | 39 | static int make_ste(unsigned long stab, unsigned long esid, unsigned long vsid) | 
 | 40 | { | 
 | 41 | 	unsigned long esid_data, vsid_data; | 
 | 42 | 	unsigned long entry, group, old_esid, castout_entry, i; | 
 | 43 | 	unsigned int global_entry; | 
 | 44 | 	struct stab_entry *ste, *castout_ste; | 
| Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 45 | 	unsigned long kernel_segment = (esid << SID_SHIFT) >= PAGE_OFFSET; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
 | 47 | 	vsid_data = vsid << STE_VSID_SHIFT; | 
 | 48 | 	esid_data = esid << SID_SHIFT | STE_ESID_KP | STE_ESID_V; | 
 | 49 | 	if (! kernel_segment) | 
 | 50 | 		esid_data |= STE_ESID_KS; | 
 | 51 |  | 
 | 52 | 	/* Search the primary group first. */ | 
 | 53 | 	global_entry = (esid & 0x1f) << 3; | 
 | 54 | 	ste = (struct stab_entry *)(stab | ((esid & 0x1f) << 7)); | 
 | 55 |  | 
 | 56 | 	/* Find an empty entry, if one exists. */ | 
 | 57 | 	for (group = 0; group < 2; group++) { | 
 | 58 | 		for (entry = 0; entry < 8; entry++, ste++) { | 
 | 59 | 			if (!(ste->esid_data & STE_ESID_V)) { | 
 | 60 | 				ste->vsid_data = vsid_data; | 
| Kumar Gala | 74a0ba6 | 2007-07-09 23:49:09 -0500 | [diff] [blame] | 61 | 				eieio(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | 				ste->esid_data = esid_data; | 
 | 63 | 				return (global_entry | entry); | 
 | 64 | 			} | 
 | 65 | 		} | 
 | 66 | 		/* Now search the secondary group. */ | 
 | 67 | 		global_entry = ((~esid) & 0x1f) << 3; | 
 | 68 | 		ste = (struct stab_entry *)(stab | (((~esid) & 0x1f) << 7)); | 
 | 69 | 	} | 
 | 70 |  | 
 | 71 | 	/* | 
 | 72 | 	 * Could not find empty entry, pick one with a round robin selection. | 
 | 73 | 	 * Search all entries in the two groups. | 
 | 74 | 	 */ | 
 | 75 | 	castout_entry = get_paca()->stab_rr; | 
 | 76 | 	for (i = 0; i < 16; i++) { | 
 | 77 | 		if (castout_entry < 8) { | 
 | 78 | 			global_entry = (esid & 0x1f) << 3; | 
 | 79 | 			ste = (struct stab_entry *)(stab | ((esid & 0x1f) << 7)); | 
 | 80 | 			castout_ste = ste + castout_entry; | 
 | 81 | 		} else { | 
 | 82 | 			global_entry = ((~esid) & 0x1f) << 3; | 
 | 83 | 			ste = (struct stab_entry *)(stab | (((~esid) & 0x1f) << 7)); | 
 | 84 | 			castout_ste = ste + (castout_entry - 8); | 
 | 85 | 		} | 
 | 86 |  | 
 | 87 | 		/* Dont cast out the first kernel segment */ | 
| Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 88 | 		if ((castout_ste->esid_data & ESID_MASK) != PAGE_OFFSET) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | 			break; | 
 | 90 |  | 
 | 91 | 		castout_entry = (castout_entry + 1) & 0xf; | 
 | 92 | 	} | 
 | 93 |  | 
 | 94 | 	get_paca()->stab_rr = (castout_entry + 1) & 0xf; | 
 | 95 |  | 
 | 96 | 	/* Modify the old entry to the new value. */ | 
 | 97 |  | 
 | 98 | 	/* Force previous translations to complete. DRENG */ | 
 | 99 | 	asm volatile("isync" : : : "memory"); | 
 | 100 |  | 
 | 101 | 	old_esid = castout_ste->esid_data >> SID_SHIFT; | 
 | 102 | 	castout_ste->esid_data = 0;		/* Invalidate old entry */ | 
 | 103 |  | 
 | 104 | 	asm volatile("sync" : : : "memory");    /* Order update */ | 
 | 105 |  | 
 | 106 | 	castout_ste->vsid_data = vsid_data; | 
| Kumar Gala | 74a0ba6 | 2007-07-09 23:49:09 -0500 | [diff] [blame] | 107 | 	eieio();				/* Order update */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | 	castout_ste->esid_data = esid_data; | 
 | 109 |  | 
 | 110 | 	asm volatile("slbie  %0" : : "r" (old_esid << SID_SHIFT)); | 
 | 111 | 	/* Ensure completion of slbie */ | 
 | 112 | 	asm volatile("sync" : : : "memory"); | 
 | 113 |  | 
 | 114 | 	return (global_entry | (castout_entry & 0x7)); | 
 | 115 | } | 
 | 116 |  | 
 | 117 | /* | 
 | 118 |  * Allocate a segment table entry for the given ea and mm | 
 | 119 |  */ | 
 | 120 | static int __ste_allocate(unsigned long ea, struct mm_struct *mm) | 
 | 121 | { | 
 | 122 | 	unsigned long vsid; | 
 | 123 | 	unsigned char stab_entry; | 
 | 124 | 	unsigned long offset; | 
 | 125 |  | 
 | 126 | 	/* Kernel or user address? */ | 
| Michael Ellerman | 51fae6d | 2005-12-04 18:39:15 +1100 | [diff] [blame] | 127 | 	if (is_kernel_addr(ea)) { | 
| Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 128 | 		vsid = get_kernel_vsid(ea, MMU_SEGSIZE_256M); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | 	} else { | 
 | 130 | 		if ((ea >= TASK_SIZE_USER64) || (! mm)) | 
 | 131 | 			return 1; | 
 | 132 |  | 
| Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 133 | 		vsid = get_vsid(mm->context.id, ea, MMU_SEGSIZE_256M); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | 	} | 
 | 135 |  | 
 | 136 | 	stab_entry = make_ste(get_paca()->stab_addr, GET_ESID(ea), vsid); | 
 | 137 |  | 
| Michael Ellerman | 51fae6d | 2005-12-04 18:39:15 +1100 | [diff] [blame] | 138 | 	if (!is_kernel_addr(ea)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | 		offset = __get_cpu_var(stab_cache_ptr); | 
 | 140 | 		if (offset < NR_STAB_CACHE_ENTRIES) | 
 | 141 | 			__get_cpu_var(stab_cache[offset++]) = stab_entry; | 
 | 142 | 		else | 
 | 143 | 			offset = NR_STAB_CACHE_ENTRIES+1; | 
 | 144 | 		__get_cpu_var(stab_cache_ptr) = offset; | 
 | 145 |  | 
 | 146 | 		/* Order update */ | 
 | 147 | 		asm volatile("sync":::"memory"); | 
 | 148 | 	} | 
 | 149 |  | 
 | 150 | 	return 0; | 
 | 151 | } | 
 | 152 |  | 
 | 153 | int ste_allocate(unsigned long ea) | 
 | 154 | { | 
 | 155 | 	return __ste_allocate(ea, current->mm); | 
 | 156 | } | 
 | 157 |  | 
 | 158 | /* | 
 | 159 |  * Do the segment table work for a context switch: flush all user | 
 | 160 |  * entries from the table, then preload some probably useful entries | 
 | 161 |  * for the new task | 
 | 162 |  */ | 
 | 163 | void switch_stab(struct task_struct *tsk, struct mm_struct *mm) | 
 | 164 | { | 
 | 165 | 	struct stab_entry *stab = (struct stab_entry *) get_paca()->stab_addr; | 
 | 166 | 	struct stab_entry *ste; | 
| Paul Mackerras | 9c1e105 | 2009-08-17 15:17:54 +1000 | [diff] [blame] | 167 | 	unsigned long offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | 	unsigned long pc = KSTK_EIP(tsk); | 
 | 169 | 	unsigned long stack = KSTK_ESP(tsk); | 
 | 170 | 	unsigned long unmapped_base; | 
 | 171 |  | 
 | 172 | 	/* Force previous translations to complete. DRENG */ | 
 | 173 | 	asm volatile("isync" : : : "memory"); | 
 | 174 |  | 
| Paul Mackerras | 9c1e105 | 2009-08-17 15:17:54 +1000 | [diff] [blame] | 175 | 	/* | 
 | 176 | 	 * We need interrupts hard-disabled here, not just soft-disabled, | 
 | 177 | 	 * so that a PMU interrupt can't occur, which might try to access | 
 | 178 | 	 * user memory (to get a stack trace) and possible cause an STAB miss | 
 | 179 | 	 * which would update the stab_cache/stab_cache_ptr per-cpu variables. | 
 | 180 | 	 */ | 
 | 181 | 	hard_irq_disable(); | 
 | 182 |  | 
 | 183 | 	offset = __get_cpu_var(stab_cache_ptr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | 	if (offset <= NR_STAB_CACHE_ENTRIES) { | 
 | 185 | 		int i; | 
 | 186 |  | 
 | 187 | 		for (i = 0; i < offset; i++) { | 
 | 188 | 			ste = stab + __get_cpu_var(stab_cache[i]); | 
 | 189 | 			ste->esid_data = 0; /* invalidate entry */ | 
 | 190 | 		} | 
 | 191 | 	} else { | 
 | 192 | 		unsigned long entry; | 
 | 193 |  | 
 | 194 | 		/* Invalidate all entries. */ | 
 | 195 | 		ste = stab; | 
 | 196 |  | 
 | 197 | 		/* Never flush the first entry. */ | 
 | 198 | 		ste += 1; | 
 | 199 | 		for (entry = 1; | 
| Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 200 | 		     entry < (HW_PAGE_SIZE / sizeof(struct stab_entry)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | 		     entry++, ste++) { | 
 | 202 | 			unsigned long ea; | 
 | 203 | 			ea = ste->esid_data & ESID_MASK; | 
| Michael Ellerman | 51fae6d | 2005-12-04 18:39:15 +1100 | [diff] [blame] | 204 | 			if (!is_kernel_addr(ea)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | 				ste->esid_data = 0; | 
 | 206 | 			} | 
 | 207 | 		} | 
 | 208 | 	} | 
 | 209 |  | 
 | 210 | 	asm volatile("sync; slbia; sync":::"memory"); | 
 | 211 |  | 
 | 212 | 	__get_cpu_var(stab_cache_ptr) = 0; | 
 | 213 |  | 
 | 214 | 	/* Now preload some entries for the new task */ | 
 | 215 | 	if (test_tsk_thread_flag(tsk, TIF_32BIT)) | 
 | 216 | 		unmapped_base = TASK_UNMAPPED_BASE_USER32; | 
 | 217 | 	else | 
 | 218 | 		unmapped_base = TASK_UNMAPPED_BASE_USER64; | 
 | 219 |  | 
 | 220 | 	__ste_allocate(pc, mm); | 
 | 221 |  | 
 | 222 | 	if (GET_ESID(pc) == GET_ESID(stack)) | 
 | 223 | 		return; | 
 | 224 |  | 
 | 225 | 	__ste_allocate(stack, mm); | 
 | 226 |  | 
 | 227 | 	if ((GET_ESID(pc) == GET_ESID(unmapped_base)) | 
 | 228 | 	    || (GET_ESID(stack) == GET_ESID(unmapped_base))) | 
 | 229 | 		return; | 
 | 230 |  | 
 | 231 | 	__ste_allocate(unmapped_base, mm); | 
 | 232 |  | 
 | 233 | 	/* Order update */ | 
 | 234 | 	asm volatile("sync" : : : "memory"); | 
 | 235 | } | 
 | 236 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | /* | 
| David Gibson | 533f081 | 2005-07-27 11:44:19 -0700 | [diff] [blame] | 238 |  * Allocate segment tables for secondary CPUs.  These must all go in | 
 | 239 |  * the first (bolted) segment, so that do_stab_bolted won't get a | 
 | 240 |  * recursive segment miss on the segment table itself. | 
 | 241 |  */ | 
| Michael Ellerman | 0108d3f | 2007-05-07 15:58:28 +1000 | [diff] [blame] | 242 | void __init stabs_alloc(void) | 
| David Gibson | 533f081 | 2005-07-27 11:44:19 -0700 | [diff] [blame] | 243 | { | 
 | 244 | 	int cpu; | 
 | 245 |  | 
 | 246 | 	if (cpu_has_feature(CPU_FTR_SLB)) | 
 | 247 | 		return; | 
 | 248 |  | 
| KAMEZAWA Hiroyuki | 0e55195 | 2006-03-28 14:50:51 -0800 | [diff] [blame] | 249 | 	for_each_possible_cpu(cpu) { | 
| David Gibson | 533f081 | 2005-07-27 11:44:19 -0700 | [diff] [blame] | 250 | 		unsigned long newstab; | 
 | 251 |  | 
 | 252 | 		if (cpu == 0) | 
 | 253 | 			continue; /* stab for CPU 0 is statically allocated */ | 
 | 254 |  | 
| Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 255 | 		newstab = memblock_alloc_base(HW_PAGE_SIZE, HW_PAGE_SIZE, | 
| Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 256 | 					 1<<SID_SHIFT); | 
| Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 257 | 		newstab = (unsigned long)__va(newstab); | 
| David Gibson | 533f081 | 2005-07-27 11:44:19 -0700 | [diff] [blame] | 258 |  | 
| Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 259 | 		memset((void *)newstab, 0, HW_PAGE_SIZE); | 
| David Gibson | 533f081 | 2005-07-27 11:44:19 -0700 | [diff] [blame] | 260 |  | 
 | 261 | 		paca[cpu].stab_addr = newstab; | 
 | 262 | 		paca[cpu].stab_real = virt_to_abs(newstab); | 
| Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 263 | 		printk(KERN_INFO "Segment table for CPU %d at 0x%llx " | 
 | 264 | 		       "virtual, 0x%llx absolute\n", | 
| Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 265 | 		       cpu, paca[cpu].stab_addr, paca[cpu].stab_real); | 
| David Gibson | 533f081 | 2005-07-27 11:44:19 -0700 | [diff] [blame] | 266 | 	} | 
 | 267 | } | 
 | 268 |  | 
 | 269 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 |  * Build an entry for the base kernel segment and put it into | 
 | 271 |  * the segment table or SLB.  All other segment table or SLB | 
 | 272 |  * entries are faulted in. | 
 | 273 |  */ | 
 | 274 | void stab_initialize(unsigned long stab) | 
 | 275 | { | 
| Paul Mackerras | 1189be6 | 2007-10-11 20:37:10 +1000 | [diff] [blame] | 276 | 	unsigned long vsid = get_kernel_vsid(PAGE_OFFSET, MMU_SEGSIZE_256M); | 
| Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 277 | 	unsigned long stabreal; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 |  | 
| Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 279 | 	asm volatile("isync; slbia; isync":::"memory"); | 
| Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 280 | 	make_ste(stab, GET_ESID(PAGE_OFFSET), vsid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 |  | 
| Benjamin Herrenschmidt | 3c726f8 | 2005-11-07 11:06:55 +1100 | [diff] [blame] | 282 | 	/* Order update */ | 
 | 283 | 	asm volatile("sync":::"memory"); | 
| Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 284 |  | 
 | 285 | 	/* Set ASR */ | 
 | 286 | 	stabreal = get_paca()->stab_real | 0x1ul; | 
 | 287 |  | 
 | 288 | #ifdef CONFIG_PPC_ISERIES | 
 | 289 | 	if (firmware_has_feature(FW_FEATURE_ISERIES)) { | 
 | 290 | 		HvCall1(HvCallBaseSetASR, stabreal); | 
 | 291 | 		return; | 
 | 292 | 	} | 
 | 293 | #endif /* CONFIG_PPC_ISERIES */ | 
| Olof Johansson | ca507ea | 2005-11-29 14:04:17 -0600 | [diff] [blame] | 294 |  | 
| Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 295 | 	mtspr(SPRN_ASR, stabreal); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |