| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /*  $Id: init.c,v 1.209 2002/02/09 19:49:31 davem Exp $ | 
 | 2 |  *  arch/sparc64/mm/init.c | 
 | 3 |  * | 
 | 4 |  *  Copyright (C) 1996-1999 David S. Miller (davem@caip.rutgers.edu) | 
 | 5 |  *  Copyright (C) 1997-1999 Jakub Jelinek (jj@sunsite.mff.cuni.cz) | 
 | 6 |  */ | 
 | 7 |   | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 8 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/kernel.h> | 
 | 10 | #include <linux/sched.h> | 
 | 11 | #include <linux/string.h> | 
 | 12 | #include <linux/init.h> | 
 | 13 | #include <linux/bootmem.h> | 
 | 14 | #include <linux/mm.h> | 
 | 15 | #include <linux/hugetlb.h> | 
 | 16 | #include <linux/slab.h> | 
 | 17 | #include <linux/initrd.h> | 
 | 18 | #include <linux/swap.h> | 
 | 19 | #include <linux/pagemap.h> | 
| Randy Dunlap | c9cf552 | 2006-06-27 02:53:52 -0700 | [diff] [blame] | 20 | #include <linux/poison.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/fs.h> | 
 | 22 | #include <linux/seq_file.h> | 
| Prasanna S Panchamukhi | 05e14cb | 2005-09-06 15:19:30 -0700 | [diff] [blame] | 23 | #include <linux/kprobes.h> | 
| David S. Miller | 1ac4f5e | 2005-09-21 21:49:32 -0700 | [diff] [blame] | 24 | #include <linux/cache.h> | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 25 | #include <linux/sort.h> | 
| David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 26 | #include <linux/percpu.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 |  | 
 | 28 | #include <asm/head.h> | 
 | 29 | #include <asm/system.h> | 
 | 30 | #include <asm/page.h> | 
 | 31 | #include <asm/pgalloc.h> | 
 | 32 | #include <asm/pgtable.h> | 
 | 33 | #include <asm/oplib.h> | 
 | 34 | #include <asm/iommu.h> | 
 | 35 | #include <asm/io.h> | 
 | 36 | #include <asm/uaccess.h> | 
 | 37 | #include <asm/mmu_context.h> | 
 | 38 | #include <asm/tlbflush.h> | 
 | 39 | #include <asm/dma.h> | 
 | 40 | #include <asm/starfire.h> | 
 | 41 | #include <asm/tlb.h> | 
 | 42 | #include <asm/spitfire.h> | 
 | 43 | #include <asm/sections.h> | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 44 | #include <asm/tsb.h> | 
| David S. Miller | 481295f | 2006-02-07 21:51:08 -0800 | [diff] [blame] | 45 | #include <asm/hypervisor.h> | 
| David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 46 | #include <asm/prom.h> | 
| David S. Miller | 22d6a1c | 2007-05-25 00:37:12 -0700 | [diff] [blame] | 47 | #include <asm/sstate.h> | 
| David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 48 | #include <asm/mdesc.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 50 | #define MAX_PHYS_ADDRESS	(1UL << 42UL) | 
 | 51 | #define KPTE_BITMAP_CHUNK_SZ	(256UL * 1024UL * 1024UL) | 
 | 52 | #define KPTE_BITMAP_BYTES	\ | 
 | 53 | 	((MAX_PHYS_ADDRESS / KPTE_BITMAP_CHUNK_SZ) / 8) | 
 | 54 |  | 
 | 55 | unsigned long kern_linear_pte_xor[2] __read_mostly; | 
 | 56 |  | 
 | 57 | /* A bitmap, one bit for every 256MB of physical memory.  If the bit | 
 | 58 |  * is clear, we should use a 4MB page (via kern_linear_pte_xor[0]) else | 
 | 59 |  * if set we should use a 256MB page (via kern_linear_pte_xor[1]). | 
 | 60 |  */ | 
 | 61 | unsigned long kpte_linear_bitmap[KPTE_BITMAP_BYTES / sizeof(unsigned long)]; | 
 | 62 |  | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 63 | #ifndef CONFIG_DEBUG_PAGEALLOC | 
| David S. Miller | 2d9e276 | 2007-05-29 01:58:31 -0700 | [diff] [blame] | 64 | /* A special kernel TSB for 4MB and 256MB linear mappings. | 
 | 65 |  * Space is allocated for this right after the trap table | 
 | 66 |  * in arch/sparc64/kernel/head.S | 
 | 67 |  */ | 
 | 68 | extern struct tsb swapper_4m_tsb[KERNEL_TSB4M_NENTRIES]; | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 69 | #endif | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 70 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 71 | #define MAX_BANKS	32 | 
| David S. Miller | 1014757 | 2005-09-28 21:46:43 -0700 | [diff] [blame] | 72 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 73 | static struct linux_prom64_registers pavail[MAX_BANKS] __initdata; | 
 | 74 | static struct linux_prom64_registers pavail_rescan[MAX_BANKS] __initdata; | 
 | 75 | static int pavail_ents __initdata; | 
 | 76 | static int pavail_rescan_ents __initdata; | 
| David S. Miller | 1014757 | 2005-09-28 21:46:43 -0700 | [diff] [blame] | 77 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 78 | static int cmp_p64(const void *a, const void *b) | 
 | 79 | { | 
 | 80 | 	const struct linux_prom64_registers *x = a, *y = b; | 
 | 81 |  | 
 | 82 | 	if (x->phys_addr > y->phys_addr) | 
 | 83 | 		return 1; | 
 | 84 | 	if (x->phys_addr < y->phys_addr) | 
 | 85 | 		return -1; | 
 | 86 | 	return 0; | 
 | 87 | } | 
 | 88 |  | 
 | 89 | static void __init read_obp_memory(const char *property, | 
 | 90 | 				   struct linux_prom64_registers *regs, | 
 | 91 | 				   int *num_ents) | 
 | 92 | { | 
 | 93 | 	int node = prom_finddevice("/memory"); | 
 | 94 | 	int prop_size = prom_getproplen(node, property); | 
 | 95 | 	int ents, ret, i; | 
 | 96 |  | 
 | 97 | 	ents = prop_size / sizeof(struct linux_prom64_registers); | 
 | 98 | 	if (ents > MAX_BANKS) { | 
 | 99 | 		prom_printf("The machine has more %s property entries than " | 
 | 100 | 			    "this kernel can support (%d).\n", | 
 | 101 | 			    property, MAX_BANKS); | 
 | 102 | 		prom_halt(); | 
 | 103 | 	} | 
 | 104 |  | 
 | 105 | 	ret = prom_getproperty(node, property, (char *) regs, prop_size); | 
 | 106 | 	if (ret == -1) { | 
 | 107 | 		prom_printf("Couldn't get %s property from /memory.\n"); | 
 | 108 | 		prom_halt(); | 
 | 109 | 	} | 
 | 110 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 111 | 	/* Sanitize what we got from the firmware, by page aligning | 
 | 112 | 	 * everything. | 
 | 113 | 	 */ | 
 | 114 | 	for (i = 0; i < ents; i++) { | 
 | 115 | 		unsigned long base, size; | 
 | 116 |  | 
 | 117 | 		base = regs[i].phys_addr; | 
 | 118 | 		size = regs[i].reg_size; | 
 | 119 |  | 
 | 120 | 		size &= PAGE_MASK; | 
 | 121 | 		if (base & ~PAGE_MASK) { | 
 | 122 | 			unsigned long new_base = PAGE_ALIGN(base); | 
 | 123 |  | 
 | 124 | 			size -= new_base - base; | 
 | 125 | 			if ((long) size < 0L) | 
 | 126 | 				size = 0UL; | 
 | 127 | 			base = new_base; | 
 | 128 | 		} | 
| David S. Miller | 0015d3d | 2007-03-15 00:06:34 -0700 | [diff] [blame] | 129 | 		if (size == 0UL) { | 
 | 130 | 			/* If it is empty, simply get rid of it. | 
 | 131 | 			 * This simplifies the logic of the other | 
 | 132 | 			 * functions that process these arrays. | 
 | 133 | 			 */ | 
 | 134 | 			memmove(®s[i], ®s[i + 1], | 
 | 135 | 				(ents - i - 1) * sizeof(regs[0])); | 
 | 136 | 			i--; | 
 | 137 | 			ents--; | 
 | 138 | 			continue; | 
 | 139 | 		} | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 140 | 		regs[i].phys_addr = base; | 
 | 141 | 		regs[i].reg_size = size; | 
 | 142 | 	} | 
| David S. Miller | 486ad10 | 2006-06-22 00:00:00 -0700 | [diff] [blame] | 143 |  | 
| David S. Miller | 486ad10 | 2006-06-22 00:00:00 -0700 | [diff] [blame] | 144 | 	*num_ents = ents; | 
 | 145 |  | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 146 | 	sort(regs, ents, sizeof(struct linux_prom64_registers), | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 147 | 	     cmp_p64, NULL); | 
 | 148 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 |  | 
| David S. Miller | 2bdb3cb | 2005-09-22 01:08:57 -0700 | [diff] [blame] | 150 | unsigned long *sparc64_valid_addr_bitmap __read_mostly; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 |  | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 152 | /* Kernel physical address base and size in bytes.  */ | 
| David S. Miller | 1ac4f5e | 2005-09-21 21:49:32 -0700 | [diff] [blame] | 153 | unsigned long kern_base __read_mostly; | 
 | 154 | unsigned long kern_size __read_mostly; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | /* Initial ramdisk setup */ | 
 | 157 | extern unsigned long sparc_ramdisk_image64; | 
 | 158 | extern unsigned int sparc_ramdisk_image; | 
 | 159 | extern unsigned int sparc_ramdisk_size; | 
 | 160 |  | 
| David S. Miller | 1ac4f5e | 2005-09-21 21:49:32 -0700 | [diff] [blame] | 161 | struct page *mem_map_zero __read_mostly; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 |  | 
| David S. Miller | 0835ae0 | 2005-10-04 15:23:20 -0700 | [diff] [blame] | 163 | unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly; | 
 | 164 |  | 
 | 165 | unsigned long sparc64_kern_pri_context __read_mostly; | 
 | 166 | unsigned long sparc64_kern_pri_nuc_bits __read_mostly; | 
 | 167 | unsigned long sparc64_kern_sec_context __read_mostly; | 
 | 168 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | int bigkernel = 0; | 
 | 170 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | #ifdef CONFIG_DEBUG_DCFLUSH | 
 | 172 | atomic_t dcpage_flushes = ATOMIC_INIT(0); | 
 | 173 | #ifdef CONFIG_SMP | 
 | 174 | atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0); | 
 | 175 | #endif | 
 | 176 | #endif | 
 | 177 |  | 
| David S. Miller | 7a591cf | 2006-02-26 19:44:50 -0800 | [diff] [blame] | 178 | inline void flush_dcache_page_impl(struct page *page) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { | 
| David S. Miller | 7a591cf | 2006-02-26 19:44:50 -0800 | [diff] [blame] | 180 | 	BUG_ON(tlb_type == hypervisor); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | #ifdef CONFIG_DEBUG_DCFLUSH | 
 | 182 | 	atomic_inc(&dcpage_flushes); | 
 | 183 | #endif | 
 | 184 |  | 
 | 185 | #ifdef DCACHE_ALIASING_POSSIBLE | 
 | 186 | 	__flush_dcache_page(page_address(page), | 
 | 187 | 			    ((tlb_type == spitfire) && | 
 | 188 | 			     page_mapping(page) != NULL)); | 
 | 189 | #else | 
 | 190 | 	if (page_mapping(page) != NULL && | 
 | 191 | 	    tlb_type == spitfire) | 
 | 192 | 		__flush_icache_page(__pa(page_address(page))); | 
 | 193 | #endif | 
 | 194 | } | 
 | 195 |  | 
 | 196 | #define PG_dcache_dirty		PG_arch_1 | 
| David S. Miller | 22adb35 | 2007-05-26 01:14:43 -0700 | [diff] [blame] | 197 | #define PG_dcache_cpu_shift	32UL | 
 | 198 | #define PG_dcache_cpu_mask	\ | 
 | 199 | 	((1UL<<ilog2(roundup_pow_of_two(NR_CPUS)))-1UL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 |  | 
 | 201 | #define dcache_dirty_cpu(page) \ | 
| David S. Miller | 48b0e54 | 2005-07-27 16:08:44 -0700 | [diff] [blame] | 202 | 	(((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 |  | 
 | 204 | static __inline__ void set_dcache_dirty(struct page *page, int this_cpu) | 
 | 205 | { | 
 | 206 | 	unsigned long mask = this_cpu; | 
| David S. Miller | 48b0e54 | 2005-07-27 16:08:44 -0700 | [diff] [blame] | 207 | 	unsigned long non_cpu_bits; | 
 | 208 |  | 
 | 209 | 	non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift); | 
 | 210 | 	mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty); | 
 | 211 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | 	__asm__ __volatile__("1:\n\t" | 
 | 213 | 			     "ldx	[%2], %%g7\n\t" | 
 | 214 | 			     "and	%%g7, %1, %%g1\n\t" | 
 | 215 | 			     "or	%%g1, %0, %%g1\n\t" | 
 | 216 | 			     "casx	[%2], %%g7, %%g1\n\t" | 
 | 217 | 			     "cmp	%%g7, %%g1\n\t" | 
| David S. Miller | b445e26 | 2005-06-27 15:42:04 -0700 | [diff] [blame] | 218 | 			     "membar	#StoreLoad | #StoreStore\n\t" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | 			     "bne,pn	%%xcc, 1b\n\t" | 
| David S. Miller | b445e26 | 2005-06-27 15:42:04 -0700 | [diff] [blame] | 220 | 			     " nop" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | 			     : /* no outputs */ | 
 | 222 | 			     : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags) | 
 | 223 | 			     : "g1", "g7"); | 
 | 224 | } | 
 | 225 |  | 
 | 226 | static __inline__ void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu) | 
 | 227 | { | 
 | 228 | 	unsigned long mask = (1UL << PG_dcache_dirty); | 
 | 229 |  | 
 | 230 | 	__asm__ __volatile__("! test_and_clear_dcache_dirty\n" | 
 | 231 | 			     "1:\n\t" | 
 | 232 | 			     "ldx	[%2], %%g7\n\t" | 
| David S. Miller | 48b0e54 | 2005-07-27 16:08:44 -0700 | [diff] [blame] | 233 | 			     "srlx	%%g7, %4, %%g1\n\t" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | 			     "and	%%g1, %3, %%g1\n\t" | 
 | 235 | 			     "cmp	%%g1, %0\n\t" | 
 | 236 | 			     "bne,pn	%%icc, 2f\n\t" | 
 | 237 | 			     " andn	%%g7, %1, %%g1\n\t" | 
 | 238 | 			     "casx	[%2], %%g7, %%g1\n\t" | 
 | 239 | 			     "cmp	%%g7, %%g1\n\t" | 
| David S. Miller | b445e26 | 2005-06-27 15:42:04 -0700 | [diff] [blame] | 240 | 			     "membar	#StoreLoad | #StoreStore\n\t" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | 			     "bne,pn	%%xcc, 1b\n\t" | 
| David S. Miller | b445e26 | 2005-06-27 15:42:04 -0700 | [diff] [blame] | 242 | 			     " nop\n" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | 			     "2:" | 
 | 244 | 			     : /* no outputs */ | 
 | 245 | 			     : "r" (cpu), "r" (mask), "r" (&page->flags), | 
| David S. Miller | 48b0e54 | 2005-07-27 16:08:44 -0700 | [diff] [blame] | 246 | 			       "i" (PG_dcache_cpu_mask), | 
 | 247 | 			       "i" (PG_dcache_cpu_shift) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | 			     : "g1", "g7"); | 
 | 249 | } | 
 | 250 |  | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 251 | static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte) | 
 | 252 | { | 
 | 253 | 	unsigned long tsb_addr = (unsigned long) ent; | 
 | 254 |  | 
| David S. Miller | 3b3ab2e | 2006-02-17 09:54:42 -0800 | [diff] [blame] | 255 | 	if (tlb_type == cheetah_plus || tlb_type == hypervisor) | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 256 | 		tsb_addr = __pa(tsb_addr); | 
 | 257 |  | 
 | 258 | 	__tsb_insert(tsb_addr, tag, pte); | 
 | 259 | } | 
 | 260 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 261 | unsigned long _PAGE_ALL_SZ_BITS __read_mostly; | 
 | 262 | unsigned long _PAGE_SZBITS __read_mostly; | 
 | 263 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte) | 
 | 265 | { | 
| David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 266 | 	struct mm_struct *mm; | 
| David S. Miller | 74ae998 | 2006-03-05 18:26:24 -0800 | [diff] [blame] | 267 | 	struct tsb *tsb; | 
| David S. Miller | 7a1ac52 | 2006-03-16 02:02:32 -0800 | [diff] [blame] | 268 | 	unsigned long tag, flags; | 
| David S. Miller | dcc1e8d | 2006-03-22 00:49:59 -0800 | [diff] [blame] | 269 | 	unsigned long tsb_index, tsb_hash_shift; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 |  | 
| David S. Miller | 7a591cf | 2006-02-26 19:44:50 -0800 | [diff] [blame] | 271 | 	if (tlb_type != hypervisor) { | 
 | 272 | 		unsigned long pfn = pte_pfn(pte); | 
 | 273 | 		unsigned long pg_flags; | 
 | 274 | 		struct page *page; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 |  | 
| David S. Miller | 7a591cf | 2006-02-26 19:44:50 -0800 | [diff] [blame] | 276 | 		if (pfn_valid(pfn) && | 
 | 277 | 		    (page = pfn_to_page(pfn), page_mapping(page)) && | 
 | 278 | 		    ((pg_flags = page->flags) & (1UL << PG_dcache_dirty))) { | 
 | 279 | 			int cpu = ((pg_flags >> PG_dcache_cpu_shift) & | 
 | 280 | 				   PG_dcache_cpu_mask); | 
 | 281 | 			int this_cpu = get_cpu(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 |  | 
| David S. Miller | 7a591cf | 2006-02-26 19:44:50 -0800 | [diff] [blame] | 283 | 			/* This is just to optimize away some function calls | 
 | 284 | 			 * in the SMP case. | 
 | 285 | 			 */ | 
 | 286 | 			if (cpu == this_cpu) | 
 | 287 | 				flush_dcache_page_impl(page); | 
 | 288 | 			else | 
 | 289 | 				smp_flush_dcache_page_impl(page, cpu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 |  | 
| David S. Miller | 7a591cf | 2006-02-26 19:44:50 -0800 | [diff] [blame] | 291 | 			clear_dcache_dirty_cpu(page, cpu); | 
 | 292 |  | 
 | 293 | 			put_cpu(); | 
 | 294 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | 	} | 
| David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 296 |  | 
 | 297 | 	mm = vma->vm_mm; | 
| David S. Miller | 7a1ac52 | 2006-03-16 02:02:32 -0800 | [diff] [blame] | 298 |  | 
| David S. Miller | dcc1e8d | 2006-03-22 00:49:59 -0800 | [diff] [blame] | 299 | 	tsb_index = MM_TSB_BASE; | 
 | 300 | 	tsb_hash_shift = PAGE_SHIFT; | 
 | 301 |  | 
| David S. Miller | 7a1ac52 | 2006-03-16 02:02:32 -0800 | [diff] [blame] | 302 | 	spin_lock_irqsave(&mm->context.lock, flags); | 
 | 303 |  | 
| David S. Miller | dcc1e8d | 2006-03-22 00:49:59 -0800 | [diff] [blame] | 304 | #ifdef CONFIG_HUGETLB_PAGE | 
 | 305 | 	if (mm->context.tsb_block[MM_TSB_HUGE].tsb != NULL) { | 
 | 306 | 		if ((tlb_type == hypervisor && | 
 | 307 | 		     (pte_val(pte) & _PAGE_SZALL_4V) == _PAGE_SZHUGE_4V) || | 
 | 308 | 		    (tlb_type != hypervisor && | 
 | 309 | 		     (pte_val(pte) & _PAGE_SZALL_4U) == _PAGE_SZHUGE_4U)) { | 
 | 310 | 			tsb_index = MM_TSB_HUGE; | 
 | 311 | 			tsb_hash_shift = HPAGE_SHIFT; | 
 | 312 | 		} | 
 | 313 | 	} | 
 | 314 | #endif | 
 | 315 |  | 
 | 316 | 	tsb = mm->context.tsb_block[tsb_index].tsb; | 
 | 317 | 	tsb += ((address >> tsb_hash_shift) & | 
 | 318 | 		(mm->context.tsb_block[tsb_index].tsb_nentries - 1UL)); | 
| David S. Miller | 74ae998 | 2006-03-05 18:26:24 -0800 | [diff] [blame] | 319 | 	tag = (address >> 22UL); | 
 | 320 | 	tsb_insert(tsb, tag, pte_val(pte)); | 
| David S. Miller | 7a1ac52 | 2006-03-16 02:02:32 -0800 | [diff] [blame] | 321 |  | 
 | 322 | 	spin_unlock_irqrestore(&mm->context.lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | } | 
 | 324 |  | 
 | 325 | void flush_dcache_page(struct page *page) | 
 | 326 | { | 
| David S. Miller | a9546f5 | 2005-04-17 18:03:09 -0700 | [diff] [blame] | 327 | 	struct address_space *mapping; | 
 | 328 | 	int this_cpu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 |  | 
| David S. Miller | 7a591cf | 2006-02-26 19:44:50 -0800 | [diff] [blame] | 330 | 	if (tlb_type == hypervisor) | 
 | 331 | 		return; | 
 | 332 |  | 
| David S. Miller | a9546f5 | 2005-04-17 18:03:09 -0700 | [diff] [blame] | 333 | 	/* Do not bother with the expensive D-cache flush if it | 
 | 334 | 	 * is merely the zero page.  The 'bigcore' testcase in GDB | 
 | 335 | 	 * causes this case to run millions of times. | 
 | 336 | 	 */ | 
 | 337 | 	if (page == ZERO_PAGE(0)) | 
 | 338 | 		return; | 
 | 339 |  | 
 | 340 | 	this_cpu = get_cpu(); | 
 | 341 |  | 
 | 342 | 	mapping = page_mapping(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | 	if (mapping && !mapping_mapped(mapping)) { | 
| David S. Miller | a9546f5 | 2005-04-17 18:03:09 -0700 | [diff] [blame] | 344 | 		int dirty = test_bit(PG_dcache_dirty, &page->flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | 		if (dirty) { | 
| David S. Miller | a9546f5 | 2005-04-17 18:03:09 -0700 | [diff] [blame] | 346 | 			int dirty_cpu = dcache_dirty_cpu(page); | 
 | 347 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | 			if (dirty_cpu == this_cpu) | 
 | 349 | 				goto out; | 
 | 350 | 			smp_flush_dcache_page_impl(page, dirty_cpu); | 
 | 351 | 		} | 
 | 352 | 		set_dcache_dirty(page, this_cpu); | 
 | 353 | 	} else { | 
 | 354 | 		/* We could delay the flush for the !page_mapping | 
 | 355 | 		 * case too.  But that case is for exec env/arg | 
 | 356 | 		 * pages and those are %99 certainly going to get | 
 | 357 | 		 * faulted into the tlb (and thus flushed) anyways. | 
 | 358 | 		 */ | 
 | 359 | 		flush_dcache_page_impl(page); | 
 | 360 | 	} | 
 | 361 |  | 
 | 362 | out: | 
 | 363 | 	put_cpu(); | 
 | 364 | } | 
 | 365 |  | 
| Prasanna S Panchamukhi | 05e14cb | 2005-09-06 15:19:30 -0700 | [diff] [blame] | 366 | void __kprobes flush_icache_range(unsigned long start, unsigned long end) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { | 
| David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 368 | 	/* Cheetah and Hypervisor platform cpus have coherent I-cache. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | 	if (tlb_type == spitfire) { | 
 | 370 | 		unsigned long kaddr; | 
 | 371 |  | 
| David S. Miller | a94aa25 | 2007-03-15 15:50:11 -0700 | [diff] [blame] | 372 | 		/* This code only runs on Spitfire cpus so this is | 
 | 373 | 		 * why we can assume _PAGE_PADDR_4U. | 
 | 374 | 		 */ | 
 | 375 | 		for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE) { | 
 | 376 | 			unsigned long paddr, mask = _PAGE_PADDR_4U; | 
 | 377 |  | 
 | 378 | 			if (kaddr >= PAGE_OFFSET) | 
 | 379 | 				paddr = kaddr & mask; | 
 | 380 | 			else { | 
 | 381 | 				pgd_t *pgdp = pgd_offset_k(kaddr); | 
 | 382 | 				pud_t *pudp = pud_offset(pgdp, kaddr); | 
 | 383 | 				pmd_t *pmdp = pmd_offset(pudp, kaddr); | 
 | 384 | 				pte_t *ptep = pte_offset_kernel(pmdp, kaddr); | 
 | 385 |  | 
 | 386 | 				paddr = pte_val(*ptep) & mask; | 
 | 387 | 			} | 
 | 388 | 			__flush_icache_page(paddr); | 
 | 389 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | 	} | 
 | 391 | } | 
 | 392 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | void show_mem(void) | 
 | 394 | { | 
| David S. Miller | 5be4a96 | 2007-03-15 16:00:29 -0700 | [diff] [blame] | 395 | 	unsigned long total = 0, reserved = 0; | 
 | 396 | 	unsigned long shared = 0, cached = 0; | 
 | 397 | 	pg_data_t *pgdat; | 
 | 398 |  | 
| David S. Miller | 28256ca | 2007-03-15 15:56:07 -0700 | [diff] [blame] | 399 | 	printk(KERN_INFO "Mem-info:\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | 	show_free_areas(); | 
| David S. Miller | 28256ca | 2007-03-15 15:56:07 -0700 | [diff] [blame] | 401 | 	printk(KERN_INFO "Free swap:       %6ldkB\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | 	       nr_swap_pages << (PAGE_SHIFT-10)); | 
| David S. Miller | 5be4a96 | 2007-03-15 16:00:29 -0700 | [diff] [blame] | 403 | 	for_each_online_pgdat(pgdat) { | 
 | 404 | 		unsigned long i, flags; | 
 | 405 |  | 
 | 406 | 		pgdat_resize_lock(pgdat, &flags); | 
 | 407 | 		for (i = 0; i < pgdat->node_spanned_pages; i++) { | 
 | 408 | 			struct page *page = pgdat_page_nr(pgdat, i); | 
 | 409 | 			total++; | 
 | 410 | 			if (PageReserved(page)) | 
 | 411 | 				reserved++; | 
 | 412 | 			else if (PageSwapCache(page)) | 
 | 413 | 				cached++; | 
 | 414 | 			else if (page_count(page)) | 
 | 415 | 				shared += page_count(page) - 1; | 
 | 416 | 		} | 
 | 417 | 		pgdat_resize_unlock(pgdat, &flags); | 
 | 418 | 	} | 
 | 419 |  | 
 | 420 | 	printk(KERN_INFO "%lu pages of RAM\n", total); | 
 | 421 | 	printk(KERN_INFO "%lu reserved pages\n", reserved); | 
 | 422 | 	printk(KERN_INFO "%lu pages shared\n", shared); | 
 | 423 | 	printk(KERN_INFO "%lu pages swap cached\n", cached); | 
 | 424 |  | 
 | 425 | 	printk(KERN_INFO "%lu pages dirty\n", | 
 | 426 | 	       global_page_state(NR_FILE_DIRTY)); | 
 | 427 | 	printk(KERN_INFO "%lu pages writeback\n", | 
 | 428 | 	       global_page_state(NR_WRITEBACK)); | 
 | 429 | 	printk(KERN_INFO "%lu pages mapped\n", | 
 | 430 | 	       global_page_state(NR_FILE_MAPPED)); | 
 | 431 | 	printk(KERN_INFO "%lu pages slab\n", | 
 | 432 | 		global_page_state(NR_SLAB_RECLAIMABLE) + | 
 | 433 | 		global_page_state(NR_SLAB_UNRECLAIMABLE)); | 
 | 434 | 	printk(KERN_INFO "%lu pages pagetables\n", | 
 | 435 | 	       global_page_state(NR_PAGETABLE)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } | 
 | 437 |  | 
 | 438 | void mmu_info(struct seq_file *m) | 
 | 439 | { | 
 | 440 | 	if (tlb_type == cheetah) | 
 | 441 | 		seq_printf(m, "MMU Type\t: Cheetah\n"); | 
 | 442 | 	else if (tlb_type == cheetah_plus) | 
 | 443 | 		seq_printf(m, "MMU Type\t: Cheetah+\n"); | 
 | 444 | 	else if (tlb_type == spitfire) | 
 | 445 | 		seq_printf(m, "MMU Type\t: Spitfire\n"); | 
| David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 446 | 	else if (tlb_type == hypervisor) | 
 | 447 | 		seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | 	else | 
 | 449 | 		seq_printf(m, "MMU Type\t: ???\n"); | 
 | 450 |  | 
 | 451 | #ifdef CONFIG_DEBUG_DCFLUSH | 
 | 452 | 	seq_printf(m, "DCPageFlushes\t: %d\n", | 
 | 453 | 		   atomic_read(&dcpage_flushes)); | 
 | 454 | #ifdef CONFIG_SMP | 
 | 455 | 	seq_printf(m, "DCPageFlushesXC\t: %d\n", | 
 | 456 | 		   atomic_read(&dcpage_flushes_xcall)); | 
 | 457 | #endif /* CONFIG_SMP */ | 
 | 458 | #endif /* CONFIG_DEBUG_DCFLUSH */ | 
 | 459 | } | 
 | 460 |  | 
| David S. Miller | a94aa25 | 2007-03-15 15:50:11 -0700 | [diff] [blame] | 461 | struct linux_prom_translation { | 
 | 462 | 	unsigned long virt; | 
 | 463 | 	unsigned long size; | 
 | 464 | 	unsigned long data; | 
 | 465 | }; | 
 | 466 |  | 
 | 467 | /* Exported for kernel TLB miss handling in ktlb.S */ | 
 | 468 | struct linux_prom_translation prom_trans[512] __read_mostly; | 
 | 469 | unsigned int prom_trans_ents __read_mostly; | 
 | 470 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | /* Exported for SMP bootup purposes. */ | 
 | 472 | unsigned long kern_locked_tte_data; | 
 | 473 |  | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 474 | /* The obp translations are saved based on 8k pagesize, since obp can | 
 | 475 |  * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS -> | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 476 |  * HI_OBP_ADDRESS range are handled in ktlb.S. | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 477 |  */ | 
| David S. Miller | 5085b4a | 2005-09-22 00:45:41 -0700 | [diff] [blame] | 478 | static inline int in_obp_range(unsigned long vaddr) | 
 | 479 | { | 
 | 480 | 	return (vaddr >= LOW_OBP_ADDRESS && | 
 | 481 | 		vaddr < HI_OBP_ADDRESS); | 
 | 482 | } | 
 | 483 |  | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 484 | static int cmp_ptrans(const void *a, const void *b) | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 485 | { | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 486 | 	const struct linux_prom_translation *x = a, *y = b; | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 487 |  | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 488 | 	if (x->virt > y->virt) | 
 | 489 | 		return 1; | 
 | 490 | 	if (x->virt < y->virt) | 
 | 491 | 		return -1; | 
 | 492 | 	return 0; | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 493 | } | 
 | 494 |  | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 495 | /* Read OBP translations property into 'prom_trans[]'.  */ | 
| David S. Miller | 9ad98c5 | 2005-10-05 15:12:00 -0700 | [diff] [blame] | 496 | static void __init read_obp_translations(void) | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 497 | { | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 498 | 	int n, node, ents, first, last, i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 |  | 
 | 500 | 	node = prom_finddevice("/virtual-memory"); | 
 | 501 | 	n = prom_getproplen(node, "translations"); | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 502 | 	if (unlikely(n == 0 || n == -1)) { | 
| David S. Miller | b206fc4 | 2005-09-21 22:31:13 -0700 | [diff] [blame] | 503 | 		prom_printf("prom_mappings: Couldn't get size.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | 		prom_halt(); | 
 | 505 | 	} | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 506 | 	if (unlikely(n > sizeof(prom_trans))) { | 
 | 507 | 		prom_printf("prom_mappings: Size %Zd is too big.\n", n); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | 		prom_halt(); | 
 | 509 | 	} | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 510 |  | 
| David S. Miller | b206fc4 | 2005-09-21 22:31:13 -0700 | [diff] [blame] | 511 | 	if ((n = prom_getproperty(node, "translations", | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 512 | 				  (char *)&prom_trans[0], | 
 | 513 | 				  sizeof(prom_trans))) == -1) { | 
| David S. Miller | b206fc4 | 2005-09-21 22:31:13 -0700 | [diff] [blame] | 514 | 		prom_printf("prom_mappings: Couldn't get property.\n"); | 
 | 515 | 		prom_halt(); | 
 | 516 | 	} | 
| David S. Miller | 9ad98c5 | 2005-10-05 15:12:00 -0700 | [diff] [blame] | 517 |  | 
| David S. Miller | b206fc4 | 2005-09-21 22:31:13 -0700 | [diff] [blame] | 518 | 	n = n / sizeof(struct linux_prom_translation); | 
| David S. Miller | 9ad98c5 | 2005-10-05 15:12:00 -0700 | [diff] [blame] | 519 |  | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 520 | 	ents = n; | 
 | 521 |  | 
 | 522 | 	sort(prom_trans, ents, sizeof(struct linux_prom_translation), | 
 | 523 | 	     cmp_ptrans, NULL); | 
 | 524 |  | 
 | 525 | 	/* Now kick out all the non-OBP entries.  */ | 
 | 526 | 	for (i = 0; i < ents; i++) { | 
 | 527 | 		if (in_obp_range(prom_trans[i].virt)) | 
 | 528 | 			break; | 
 | 529 | 	} | 
 | 530 | 	first = i; | 
 | 531 | 	for (; i < ents; i++) { | 
 | 532 | 		if (!in_obp_range(prom_trans[i].virt)) | 
 | 533 | 			break; | 
 | 534 | 	} | 
 | 535 | 	last = i; | 
 | 536 |  | 
 | 537 | 	for (i = 0; i < (last - first); i++) { | 
 | 538 | 		struct linux_prom_translation *src = &prom_trans[i + first]; | 
 | 539 | 		struct linux_prom_translation *dest = &prom_trans[i]; | 
 | 540 |  | 
 | 541 | 		*dest = *src; | 
 | 542 | 	} | 
 | 543 | 	for (; i < ents; i++) { | 
 | 544 | 		struct linux_prom_translation *dest = &prom_trans[i]; | 
 | 545 | 		dest->virt = dest->size = dest->data = 0x0UL; | 
 | 546 | 	} | 
 | 547 |  | 
 | 548 | 	prom_trans_ents = last - first; | 
 | 549 |  | 
 | 550 | 	if (tlb_type == spitfire) { | 
 | 551 | 		/* Clear diag TTE bits. */ | 
 | 552 | 		for (i = 0; i < prom_trans_ents; i++) | 
 | 553 | 			prom_trans[i].data &= ~0x0003fe0000000000UL; | 
 | 554 | 	} | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 555 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 |  | 
| David S. Miller | d82ace7 | 2006-02-09 02:52:44 -0800 | [diff] [blame] | 557 | static void __init hypervisor_tlb_lock(unsigned long vaddr, | 
 | 558 | 				       unsigned long pte, | 
 | 559 | 				       unsigned long mmu) | 
 | 560 | { | 
| David S. Miller | 7db35f3 | 2007-05-29 02:22:14 -0700 | [diff] [blame] | 561 | 	unsigned long ret = sun4v_mmu_map_perm_addr(vaddr, 0, pte, mmu); | 
| David S. Miller | d82ace7 | 2006-02-09 02:52:44 -0800 | [diff] [blame] | 562 |  | 
| David S. Miller | 7db35f3 | 2007-05-29 02:22:14 -0700 | [diff] [blame] | 563 | 	if (ret != 0) { | 
| David S. Miller | 12e126a | 2006-02-17 14:40:30 -0800 | [diff] [blame] | 564 | 		prom_printf("hypervisor_tlb_lock[%lx:%lx:%lx:%lx]: " | 
| David S. Miller | 7db35f3 | 2007-05-29 02:22:14 -0700 | [diff] [blame] | 565 | 			    "errors with %lx\n", vaddr, 0, pte, mmu, ret); | 
| David S. Miller | 12e126a | 2006-02-17 14:40:30 -0800 | [diff] [blame] | 566 | 		prom_halt(); | 
 | 567 | 	} | 
| David S. Miller | d82ace7 | 2006-02-09 02:52:44 -0800 | [diff] [blame] | 568 | } | 
 | 569 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 570 | static unsigned long kern_large_tte(unsigned long paddr); | 
 | 571 |  | 
| David S. Miller | 898cf0e | 2005-09-23 11:59:44 -0700 | [diff] [blame] | 572 | static void __init remap_kernel(void) | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 573 | { | 
 | 574 | 	unsigned long phys_page, tte_vaddr, tte_data; | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 575 | 	int tlb_ent = sparc64_highest_locked_tlbent(); | 
 | 576 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | 	tte_vaddr = (unsigned long) KERNBASE; | 
| David S. Miller | bff06d5 | 2005-09-22 20:11:33 -0700 | [diff] [blame] | 578 | 	phys_page = (prom_boot_mapping_phys_low >> 22UL) << 22UL; | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 579 | 	tte_data = kern_large_tte(phys_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 |  | 
 | 581 | 	kern_locked_tte_data = tte_data; | 
 | 582 |  | 
| David S. Miller | d82ace7 | 2006-02-09 02:52:44 -0800 | [diff] [blame] | 583 | 	/* Now lock us into the TLBs via Hypervisor or OBP. */ | 
 | 584 | 	if (tlb_type == hypervisor) { | 
 | 585 | 		hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU); | 
 | 586 | 		hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU); | 
 | 587 | 		if (bigkernel) { | 
 | 588 | 			tte_vaddr += 0x400000; | 
 | 589 | 			tte_data += 0x400000; | 
 | 590 | 			hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU); | 
 | 591 | 			hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU); | 
 | 592 | 		} | 
 | 593 | 	} else { | 
 | 594 | 		prom_dtlb_load(tlb_ent, tte_data, tte_vaddr); | 
 | 595 | 		prom_itlb_load(tlb_ent, tte_data, tte_vaddr); | 
 | 596 | 		if (bigkernel) { | 
 | 597 | 			tlb_ent -= 1; | 
 | 598 | 			prom_dtlb_load(tlb_ent, | 
 | 599 | 				       tte_data + 0x400000,  | 
 | 600 | 				       tte_vaddr + 0x400000); | 
 | 601 | 			prom_itlb_load(tlb_ent, | 
 | 602 | 				       tte_data + 0x400000,  | 
 | 603 | 				       tte_vaddr + 0x400000); | 
 | 604 | 		} | 
 | 605 | 		sparc64_highest_unlocked_tlb_ent = tlb_ent - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | 	} | 
| David S. Miller | 0835ae0 | 2005-10-04 15:23:20 -0700 | [diff] [blame] | 607 | 	if (tlb_type == cheetah_plus) { | 
 | 608 | 		sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 | | 
 | 609 | 					    CTX_CHEETAH_PLUS_NUC); | 
 | 610 | 		sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC; | 
 | 611 | 		sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0; | 
 | 612 | 	} | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 613 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 |  | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 615 |  | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 616 | static void __init inherit_prom_mappings(void) | 
| David S. Miller | 9ad98c5 | 2005-10-05 15:12:00 -0700 | [diff] [blame] | 617 | { | 
 | 618 | 	read_obp_translations(); | 
| David S. Miller | 405599b | 2005-09-22 00:12:35 -0700 | [diff] [blame] | 619 |  | 
 | 620 | 	/* Now fixup OBP's idea about where we really are mapped. */ | 
 | 621 | 	prom_printf("Remapping the kernel... "); | 
 | 622 | 	remap_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | 	prom_printf("done.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | } | 
 | 625 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | void prom_world(int enter) | 
 | 627 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | 	if (!enter) | 
 | 629 | 		set_fs((mm_segment_t) { get_thread_current_ds() }); | 
 | 630 |  | 
| David S. Miller | 3487d1d | 2006-01-31 18:33:25 -0800 | [diff] [blame] | 631 | 	__asm__ __volatile__("flushw"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | } | 
 | 633 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | void __flush_dcache_range(unsigned long start, unsigned long end) | 
 | 635 | { | 
 | 636 | 	unsigned long va; | 
 | 637 |  | 
 | 638 | 	if (tlb_type == spitfire) { | 
 | 639 | 		int n = 0; | 
 | 640 |  | 
 | 641 | 		for (va = start; va < end; va += 32) { | 
 | 642 | 			spitfire_put_dcache_tag(va & 0x3fe0, 0x0); | 
 | 643 | 			if (++n >= 512) | 
 | 644 | 				break; | 
 | 645 | 		} | 
| David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 646 | 	} else if (tlb_type == cheetah || tlb_type == cheetah_plus) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | 		start = __pa(start); | 
 | 648 | 		end = __pa(end); | 
 | 649 | 		for (va = start; va < end; va += 32) | 
 | 650 | 			__asm__ __volatile__("stxa %%g0, [%0] %1\n\t" | 
 | 651 | 					     "membar #Sync" | 
 | 652 | 					     : /* no outputs */ | 
 | 653 | 					     : "r" (va), | 
 | 654 | 					       "i" (ASI_DCACHE_INVALIDATE)); | 
 | 655 | 	} | 
 | 656 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 |  | 
| David S. Miller | 85f1e1f | 2007-03-15 17:51:26 -0700 | [diff] [blame] | 658 | /* get_new_mmu_context() uses "cache + 1".  */ | 
 | 659 | DEFINE_SPINLOCK(ctx_alloc_lock); | 
 | 660 | unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1; | 
 | 661 | #define MAX_CTX_NR	(1UL << CTX_NR_BITS) | 
 | 662 | #define CTX_BMAP_SLOTS	BITS_TO_LONGS(MAX_CTX_NR) | 
 | 663 | DECLARE_BITMAP(mmu_context_bmap, MAX_CTX_NR); | 
 | 664 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | /* Caller does TLB context flushing on local CPU if necessary. | 
 | 666 |  * The caller also ensures that CTX_VALID(mm->context) is false. | 
 | 667 |  * | 
 | 668 |  * We must be careful about boundary cases so that we never | 
 | 669 |  * let the user have CTX 0 (nucleus) or we ever use a CTX | 
 | 670 |  * version of zero (and thus NO_CONTEXT would not be caught | 
 | 671 |  * by version mis-match tests in mmu_context.h). | 
| David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 672 |  * | 
 | 673 |  * Always invoked with interrupts disabled. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 |  */ | 
 | 675 | void get_new_mmu_context(struct mm_struct *mm) | 
 | 676 | { | 
 | 677 | 	unsigned long ctx, new_ctx; | 
 | 678 | 	unsigned long orig_pgsz_bits; | 
| David S. Miller | a77754b | 2006-03-06 19:59:50 -0800 | [diff] [blame] | 679 | 	unsigned long flags; | 
| David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 680 | 	int new_version; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 |  | 
| David S. Miller | a77754b | 2006-03-06 19:59:50 -0800 | [diff] [blame] | 682 | 	spin_lock_irqsave(&ctx_alloc_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | 	orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK); | 
 | 684 | 	ctx = (tlb_context_cache + 1) & CTX_NR_MASK; | 
 | 685 | 	new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx); | 
| David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 686 | 	new_version = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | 	if (new_ctx >= (1 << CTX_NR_BITS)) { | 
 | 688 | 		new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1); | 
 | 689 | 		if (new_ctx >= ctx) { | 
 | 690 | 			int i; | 
 | 691 | 			new_ctx = (tlb_context_cache & CTX_VERSION_MASK) + | 
 | 692 | 				CTX_FIRST_VERSION; | 
 | 693 | 			if (new_ctx == 1) | 
 | 694 | 				new_ctx = CTX_FIRST_VERSION; | 
 | 695 |  | 
 | 696 | 			/* Don't call memset, for 16 entries that's just | 
 | 697 | 			 * plain silly... | 
 | 698 | 			 */ | 
 | 699 | 			mmu_context_bmap[0] = 3; | 
 | 700 | 			mmu_context_bmap[1] = 0; | 
 | 701 | 			mmu_context_bmap[2] = 0; | 
 | 702 | 			mmu_context_bmap[3] = 0; | 
 | 703 | 			for (i = 4; i < CTX_BMAP_SLOTS; i += 4) { | 
 | 704 | 				mmu_context_bmap[i + 0] = 0; | 
 | 705 | 				mmu_context_bmap[i + 1] = 0; | 
 | 706 | 				mmu_context_bmap[i + 2] = 0; | 
 | 707 | 				mmu_context_bmap[i + 3] = 0; | 
 | 708 | 			} | 
| David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 709 | 			new_version = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | 			goto out; | 
 | 711 | 		} | 
 | 712 | 	} | 
 | 713 | 	mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63)); | 
 | 714 | 	new_ctx |= (tlb_context_cache & CTX_VERSION_MASK); | 
 | 715 | out: | 
 | 716 | 	tlb_context_cache = new_ctx; | 
 | 717 | 	mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits; | 
| David S. Miller | a77754b | 2006-03-06 19:59:50 -0800 | [diff] [blame] | 718 | 	spin_unlock_irqrestore(&ctx_alloc_lock, flags); | 
| David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 719 |  | 
 | 720 | 	if (unlikely(new_version)) | 
 | 721 | 		smp_new_mmu_context_version(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } | 
 | 723 |  | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 724 | /* Find a free area for the bootmem map, avoiding the kernel image | 
 | 725 |  * and the initial ramdisk. | 
 | 726 |  */ | 
 | 727 | static unsigned long __init choose_bootmap_pfn(unsigned long start_pfn, | 
 | 728 | 					       unsigned long end_pfn) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | { | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 730 | 	unsigned long avoid_start, avoid_end, bootmap_size; | 
 | 731 | 	int i; | 
 | 732 |  | 
| David S. Miller | 3996465 | 2007-03-15 19:36:53 -0700 | [diff] [blame] | 733 | 	bootmap_size = bootmem_bootmap_pages(end_pfn - start_pfn); | 
 | 734 | 	bootmap_size <<= PAGE_SHIFT; | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 735 |  | 
 | 736 | 	avoid_start = avoid_end = 0; | 
 | 737 | #ifdef CONFIG_BLK_DEV_INITRD | 
 | 738 | 	avoid_start = initrd_start; | 
 | 739 | 	avoid_end = PAGE_ALIGN(initrd_end); | 
 | 740 | #endif | 
 | 741 |  | 
 | 742 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 743 | 	prom_printf("choose_bootmap_pfn: kern[%lx:%lx] avoid[%lx:%lx]\n", | 
 | 744 | 		    kern_base, PAGE_ALIGN(kern_base + kern_size), | 
 | 745 | 		    avoid_start, avoid_end); | 
 | 746 | #endif | 
 | 747 | 	for (i = 0; i < pavail_ents; i++) { | 
 | 748 | 		unsigned long start, end; | 
 | 749 |  | 
 | 750 | 		start = pavail[i].phys_addr; | 
 | 751 | 		end = start + pavail[i].reg_size; | 
 | 752 |  | 
 | 753 | 		while (start < end) { | 
 | 754 | 			if (start >= kern_base && | 
 | 755 | 			    start < PAGE_ALIGN(kern_base + kern_size)) { | 
 | 756 | 				start = PAGE_ALIGN(kern_base + kern_size); | 
 | 757 | 				continue; | 
 | 758 | 			} | 
 | 759 | 			if (start >= avoid_start && start < avoid_end) { | 
 | 760 | 				start = avoid_end; | 
 | 761 | 				continue; | 
 | 762 | 			} | 
 | 763 |  | 
 | 764 | 			if ((end - start) < bootmap_size) | 
 | 765 | 				break; | 
 | 766 |  | 
 | 767 | 			if (start < kern_base && | 
 | 768 | 			    (start + bootmap_size) > kern_base) { | 
 | 769 | 				start = PAGE_ALIGN(kern_base + kern_size); | 
 | 770 | 				continue; | 
 | 771 | 			} | 
 | 772 |  | 
 | 773 | 			if (start < avoid_start && | 
 | 774 | 			    (start + bootmap_size) > avoid_start) { | 
 | 775 | 				start = avoid_end; | 
 | 776 | 				continue; | 
 | 777 | 			} | 
 | 778 |  | 
 | 779 | 			/* OK, it doesn't overlap anything, use it.  */ | 
 | 780 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 781 | 			prom_printf("choose_bootmap_pfn: Using %lx [%lx]\n", | 
 | 782 | 				    start >> PAGE_SHIFT, start); | 
 | 783 | #endif | 
 | 784 | 			return start >> PAGE_SHIFT; | 
 | 785 | 		} | 
 | 786 | 	} | 
 | 787 |  | 
 | 788 | 	prom_printf("Cannot find free area for bootmap, aborting.\n"); | 
 | 789 | 	prom_halt(); | 
 | 790 | } | 
 | 791 |  | 
| David S. Miller | 6fc5bae | 2006-12-28 21:00:23 -0800 | [diff] [blame] | 792 | static void __init trim_pavail(unsigned long *cur_size_p, | 
 | 793 | 			       unsigned long *end_of_phys_p) | 
 | 794 | { | 
 | 795 | 	unsigned long to_trim = *cur_size_p - cmdline_memory_size; | 
 | 796 | 	unsigned long avoid_start, avoid_end; | 
 | 797 | 	int i; | 
 | 798 |  | 
 | 799 | 	to_trim = PAGE_ALIGN(to_trim); | 
 | 800 |  | 
 | 801 | 	avoid_start = avoid_end = 0; | 
 | 802 | #ifdef CONFIG_BLK_DEV_INITRD | 
 | 803 | 	avoid_start = initrd_start; | 
 | 804 | 	avoid_end = PAGE_ALIGN(initrd_end); | 
 | 805 | #endif | 
 | 806 |  | 
 | 807 | 	/* Trim some pavail[] entries in order to satisfy the | 
 | 808 | 	 * requested "mem=xxx" kernel command line specification. | 
 | 809 | 	 * | 
 | 810 | 	 * We must not trim off the kernel image area nor the | 
 | 811 | 	 * initial ramdisk range (if any).  Also, we must not trim | 
 | 812 | 	 * any pavail[] entry down to zero in order to preserve | 
 | 813 | 	 * the invariant that all pavail[] entries have a non-zero | 
 | 814 | 	 * size which is assumed by all of the code in here. | 
 | 815 | 	 */ | 
 | 816 | 	for (i = 0; i < pavail_ents; i++) { | 
 | 817 | 		unsigned long start, end, kern_end; | 
 | 818 | 		unsigned long trim_low, trim_high, n; | 
 | 819 |  | 
 | 820 | 		kern_end = PAGE_ALIGN(kern_base + kern_size); | 
 | 821 |  | 
 | 822 | 		trim_low = start = pavail[i].phys_addr; | 
 | 823 | 		trim_high = end = start + pavail[i].reg_size; | 
 | 824 |  | 
 | 825 | 		if (kern_base >= start && | 
 | 826 | 		    kern_base < end) { | 
 | 827 | 			trim_low = kern_base; | 
 | 828 | 			if (kern_end >= end) | 
 | 829 | 				continue; | 
 | 830 | 		} | 
 | 831 | 		if (kern_end >= start && | 
 | 832 | 		    kern_end < end) { | 
 | 833 | 			trim_high = kern_end; | 
 | 834 | 		} | 
 | 835 | 		if (avoid_start && | 
 | 836 | 		    avoid_start >= start && | 
 | 837 | 		    avoid_start < end) { | 
 | 838 | 			if (trim_low > avoid_start) | 
 | 839 | 				trim_low = avoid_start; | 
 | 840 | 			if (avoid_end >= end) | 
 | 841 | 				continue; | 
 | 842 | 		} | 
 | 843 | 		if (avoid_end && | 
 | 844 | 		    avoid_end >= start && | 
 | 845 | 		    avoid_end < end) { | 
 | 846 | 			if (trim_high < avoid_end) | 
 | 847 | 				trim_high = avoid_end; | 
 | 848 | 		} | 
 | 849 |  | 
 | 850 | 		if (trim_high <= trim_low) | 
 | 851 | 			continue; | 
 | 852 |  | 
 | 853 | 		if (trim_low == start && trim_high == end) { | 
 | 854 | 			/* Whole chunk is available for trimming. | 
 | 855 | 			 * Trim all except one page, in order to keep | 
 | 856 | 			 * entry non-empty. | 
 | 857 | 			 */ | 
 | 858 | 			n = (end - start) - PAGE_SIZE; | 
 | 859 | 			if (n > to_trim) | 
 | 860 | 				n = to_trim; | 
 | 861 |  | 
 | 862 | 			if (n) { | 
 | 863 | 				pavail[i].phys_addr += n; | 
 | 864 | 				pavail[i].reg_size -= n; | 
 | 865 | 				to_trim -= n; | 
 | 866 | 			} | 
 | 867 | 		} else { | 
 | 868 | 			n = (trim_low - start); | 
 | 869 | 			if (n > to_trim) | 
 | 870 | 				n = to_trim; | 
 | 871 |  | 
 | 872 | 			if (n) { | 
 | 873 | 				pavail[i].phys_addr += n; | 
 | 874 | 				pavail[i].reg_size -= n; | 
 | 875 | 				to_trim -= n; | 
 | 876 | 			} | 
 | 877 | 			if (to_trim) { | 
 | 878 | 				n = end - trim_high; | 
 | 879 | 				if (n > to_trim) | 
 | 880 | 					n = to_trim; | 
 | 881 | 				if (n) { | 
 | 882 | 					pavail[i].reg_size -= n; | 
 | 883 | 					to_trim -= n; | 
 | 884 | 				} | 
 | 885 | 			} | 
 | 886 | 		} | 
 | 887 |  | 
 | 888 | 		if (!to_trim) | 
 | 889 | 			break; | 
 | 890 | 	} | 
 | 891 |  | 
 | 892 | 	/* Recalculate.  */ | 
 | 893 | 	*cur_size_p = 0UL; | 
 | 894 | 	for (i = 0; i < pavail_ents; i++) { | 
 | 895 | 		*end_of_phys_p = pavail[i].phys_addr + | 
 | 896 | 			pavail[i].reg_size; | 
 | 897 | 		*cur_size_p += pavail[i].reg_size; | 
 | 898 | 	} | 
 | 899 | } | 
 | 900 |  | 
| David S. Miller | f1cfdb5 | 2007-03-15 22:52:18 -0700 | [diff] [blame] | 901 | /* About pages_avail, this is the value we will use to calculate | 
 | 902 |  * the zholes_size[] argument given to free_area_init_node().  The | 
 | 903 |  * page allocator uses this to calculate nr_kernel_pages, | 
 | 904 |  * nr_all_pages and zone->present_pages.  On NUMA it is used | 
 | 905 |  * to calculate zone->min_unmapped_pages and zone->min_slab_pages. | 
 | 906 |  * | 
 | 907 |  * So this number should really be set to what the page allocator | 
 | 908 |  * actually ends up with.  This means: | 
 | 909 |  * 1) It should include bootmem map pages, we'll release those. | 
 | 910 |  * 2) It should not include the kernel image, except for the | 
 | 911 |  *    __init sections which we will also release. | 
 | 912 |  * 3) It should include the initrd image, since we'll release | 
 | 913 |  *    that too. | 
 | 914 |  */ | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 915 | static unsigned long __init bootmem_init(unsigned long *pages_avail, | 
 | 916 | 					 unsigned long phys_base) | 
 | 917 | { | 
 | 918 | 	unsigned long bootmap_size, end_pfn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | 	unsigned long end_of_phys_memory = 0UL; | 
 | 920 | 	unsigned long bootmap_pfn, bytes_avail, size; | 
 | 921 | 	int i; | 
 | 922 |  | 
 | 923 | #ifdef CONFIG_DEBUG_BOOTMEM | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 924 | 	prom_printf("bootmem_init: Scan pavail, "); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | #endif | 
 | 926 |  | 
 | 927 | 	bytes_avail = 0UL; | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 928 | 	for (i = 0; i < pavail_ents; i++) { | 
 | 929 | 		end_of_phys_memory = pavail[i].phys_addr + | 
 | 930 | 			pavail[i].reg_size; | 
 | 931 | 		bytes_avail += pavail[i].reg_size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | 	} | 
 | 933 |  | 
| David S. Miller | 6fc5bae | 2006-12-28 21:00:23 -0800 | [diff] [blame] | 934 | 	/* Determine the location of the initial ramdisk before trying | 
 | 935 | 	 * to honor the "mem=xxx" command line argument.  We must know | 
 | 936 | 	 * where the kernel image and the ramdisk image are so that we | 
 | 937 | 	 * do not trim those two areas from the physical memory map. | 
 | 938 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 |  | 
 | 940 | #ifdef CONFIG_BLK_DEV_INITRD | 
 | 941 | 	/* Now have to check initial ramdisk, so that bootmap does not overwrite it */ | 
 | 942 | 	if (sparc_ramdisk_image || sparc_ramdisk_image64) { | 
 | 943 | 		unsigned long ramdisk_image = sparc_ramdisk_image ? | 
 | 944 | 			sparc_ramdisk_image : sparc_ramdisk_image64; | 
| David S. Miller | 715a0ec | 2006-09-26 23:14:21 -0700 | [diff] [blame] | 945 | 		ramdisk_image -= KERNBASE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | 		initrd_start = ramdisk_image + phys_base; | 
 | 947 | 		initrd_end = initrd_start + sparc_ramdisk_size; | 
 | 948 | 		if (initrd_end > end_of_phys_memory) { | 
 | 949 | 			printk(KERN_CRIT "initrd extends beyond end of memory " | 
 | 950 | 		                 	 "(0x%016lx > 0x%016lx)\ndisabling initrd\n", | 
 | 951 | 			       initrd_end, end_of_phys_memory); | 
 | 952 | 			initrd_start = 0; | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 953 | 			initrd_end = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | 		} | 
 | 955 | 	} | 
 | 956 | #endif	 | 
| David S. Miller | 6fc5bae | 2006-12-28 21:00:23 -0800 | [diff] [blame] | 957 |  | 
 | 958 | 	if (cmdline_memory_size && | 
 | 959 | 	    bytes_avail > cmdline_memory_size) | 
 | 960 | 		trim_pavail(&bytes_avail, | 
 | 961 | 			    &end_of_phys_memory); | 
 | 962 |  | 
 | 963 | 	*pages_avail = bytes_avail >> PAGE_SHIFT; | 
 | 964 |  | 
 | 965 | 	end_pfn = end_of_phys_memory >> PAGE_SHIFT; | 
 | 966 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | 	/* Initialize the boot-time allocator. */ | 
 | 968 | 	max_pfn = max_low_pfn = end_pfn; | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 969 | 	min_low_pfn = (phys_base >> PAGE_SHIFT); | 
 | 970 |  | 
 | 971 | 	bootmap_pfn = choose_bootmap_pfn(min_low_pfn, end_pfn); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 |  | 
 | 973 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 974 | 	prom_printf("init_bootmem(min[%lx], bootmap[%lx], max[%lx])\n", | 
 | 975 | 		    min_low_pfn, bootmap_pfn, max_low_pfn); | 
 | 976 | #endif | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 977 | 	bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap_pfn, | 
| David S. Miller | 17b0e19 | 2006-03-08 15:57:03 -0800 | [diff] [blame] | 978 | 					 min_low_pfn, end_pfn); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | 	/* Now register the available physical memory with the | 
 | 981 | 	 * allocator. | 
 | 982 | 	 */ | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 983 | 	for (i = 0; i < pavail_ents; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | #ifdef CONFIG_DEBUG_BOOTMEM | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 985 | 		prom_printf("free_bootmem(pavail:%d): base[%lx] size[%lx]\n", | 
 | 986 | 			    i, pavail[i].phys_addr, pavail[i].reg_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | #endif | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 988 | 		free_bootmem(pavail[i].phys_addr, pavail[i].reg_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | 	} | 
 | 990 |  | 
 | 991 | #ifdef CONFIG_BLK_DEV_INITRD | 
 | 992 | 	if (initrd_start) { | 
 | 993 | 		size = initrd_end - initrd_start; | 
 | 994 |  | 
| Simon Arlott | e5dd42e | 2007-05-11 13:52:08 -0700 | [diff] [blame] | 995 | 		/* Reserve the initrd image area. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 997 | 		prom_printf("reserve_bootmem(initrd): base[%llx] size[%lx]\n", | 
 | 998 | 			initrd_start, initrd_end); | 
 | 999 | #endif | 
 | 1000 | 		reserve_bootmem(initrd_start, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 |  | 
 | 1002 | 		initrd_start += PAGE_OFFSET; | 
 | 1003 | 		initrd_end += PAGE_OFFSET; | 
 | 1004 | 	} | 
 | 1005 | #endif | 
 | 1006 | 	/* Reserve the kernel text/data/bss. */ | 
 | 1007 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 1008 | 	prom_printf("reserve_bootmem(kernel): base[%lx] size[%lx]\n", kern_base, kern_size); | 
 | 1009 | #endif | 
 | 1010 | 	reserve_bootmem(kern_base, kern_size); | 
 | 1011 | 	*pages_avail -= PAGE_ALIGN(kern_size) >> PAGE_SHIFT; | 
 | 1012 |  | 
| David S. Miller | f1cfdb5 | 2007-03-15 22:52:18 -0700 | [diff] [blame] | 1013 | 	/* Add back in the initmem pages. */ | 
 | 1014 | 	size = ((unsigned long)(__init_end) & PAGE_MASK) - | 
 | 1015 | 		PAGE_ALIGN((unsigned long)__init_begin); | 
 | 1016 | 	*pages_avail += size >> PAGE_SHIFT; | 
 | 1017 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | 	/* Reserve the bootmem map.   We do not account for it | 
 | 1019 | 	 * in pages_avail because we will release that memory | 
 | 1020 | 	 * in free_all_bootmem. | 
 | 1021 | 	 */ | 
 | 1022 | 	size = bootmap_size; | 
 | 1023 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 1024 | 	prom_printf("reserve_bootmem(bootmap): base[%lx] size[%lx]\n", | 
 | 1025 | 		    (bootmap_pfn << PAGE_SHIFT), size); | 
 | 1026 | #endif | 
 | 1027 | 	reserve_bootmem((bootmap_pfn << PAGE_SHIFT), size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 |  | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 1029 | 	for (i = 0; i < pavail_ents; i++) { | 
 | 1030 | 		unsigned long start_pfn, end_pfn; | 
 | 1031 |  | 
 | 1032 | 		start_pfn = pavail[i].phys_addr >> PAGE_SHIFT; | 
 | 1033 | 		end_pfn = (start_pfn + (pavail[i].reg_size >> PAGE_SHIFT)); | 
 | 1034 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 1035 | 		prom_printf("memory_present(0, %lx, %lx)\n", | 
 | 1036 | 			    start_pfn, end_pfn); | 
 | 1037 | #endif | 
 | 1038 | 		memory_present(0, start_pfn, end_pfn); | 
 | 1039 | 	} | 
 | 1040 |  | 
 | 1041 | 	sparse_init(); | 
 | 1042 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | 	return end_pfn; | 
 | 1044 | } | 
 | 1045 |  | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1046 | static struct linux_prom64_registers pall[MAX_BANKS] __initdata; | 
 | 1047 | static int pall_ents __initdata; | 
 | 1048 |  | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1049 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
 | 1050 | static unsigned long kernel_map_range(unsigned long pstart, unsigned long pend, pgprot_t prot) | 
 | 1051 | { | 
 | 1052 | 	unsigned long vstart = PAGE_OFFSET + pstart; | 
 | 1053 | 	unsigned long vend = PAGE_OFFSET + pend; | 
 | 1054 | 	unsigned long alloc_bytes = 0UL; | 
 | 1055 |  | 
 | 1056 | 	if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) { | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1057 | 		prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n", | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1058 | 			    vstart, vend); | 
 | 1059 | 		prom_halt(); | 
 | 1060 | 	} | 
 | 1061 |  | 
 | 1062 | 	while (vstart < vend) { | 
 | 1063 | 		unsigned long this_end, paddr = __pa(vstart); | 
 | 1064 | 		pgd_t *pgd = pgd_offset_k(vstart); | 
 | 1065 | 		pud_t *pud; | 
 | 1066 | 		pmd_t *pmd; | 
 | 1067 | 		pte_t *pte; | 
 | 1068 |  | 
 | 1069 | 		pud = pud_offset(pgd, vstart); | 
 | 1070 | 		if (pud_none(*pud)) { | 
 | 1071 | 			pmd_t *new; | 
 | 1072 |  | 
 | 1073 | 			new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE); | 
 | 1074 | 			alloc_bytes += PAGE_SIZE; | 
 | 1075 | 			pud_populate(&init_mm, pud, new); | 
 | 1076 | 		} | 
 | 1077 |  | 
 | 1078 | 		pmd = pmd_offset(pud, vstart); | 
 | 1079 | 		if (!pmd_present(*pmd)) { | 
 | 1080 | 			pte_t *new; | 
 | 1081 |  | 
 | 1082 | 			new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE); | 
 | 1083 | 			alloc_bytes += PAGE_SIZE; | 
 | 1084 | 			pmd_populate_kernel(&init_mm, pmd, new); | 
 | 1085 | 		} | 
 | 1086 |  | 
 | 1087 | 		pte = pte_offset_kernel(pmd, vstart); | 
 | 1088 | 		this_end = (vstart + PMD_SIZE) & PMD_MASK; | 
 | 1089 | 		if (this_end > vend) | 
 | 1090 | 			this_end = vend; | 
 | 1091 |  | 
 | 1092 | 		while (vstart < this_end) { | 
 | 1093 | 			pte_val(*pte) = (paddr | pgprot_val(prot)); | 
 | 1094 |  | 
 | 1095 | 			vstart += PAGE_SIZE; | 
 | 1096 | 			paddr += PAGE_SIZE; | 
 | 1097 | 			pte++; | 
 | 1098 | 		} | 
 | 1099 | 	} | 
 | 1100 |  | 
 | 1101 | 	return alloc_bytes; | 
 | 1102 | } | 
 | 1103 |  | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1104 | extern unsigned int kvmap_linear_patch[1]; | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1105 | #endif /* CONFIG_DEBUG_PAGEALLOC */ | 
 | 1106 |  | 
 | 1107 | static void __init mark_kpte_bitmap(unsigned long start, unsigned long end) | 
 | 1108 | { | 
 | 1109 | 	const unsigned long shift_256MB = 28; | 
 | 1110 | 	const unsigned long mask_256MB = ((1UL << shift_256MB) - 1UL); | 
 | 1111 | 	const unsigned long size_256MB = (1UL << shift_256MB); | 
 | 1112 |  | 
 | 1113 | 	while (start < end) { | 
 | 1114 | 		long remains; | 
 | 1115 |  | 
| David S. Miller | f7c0033 | 2006-03-05 22:18:50 -0800 | [diff] [blame] | 1116 | 		remains = end - start; | 
 | 1117 | 		if (remains < size_256MB) | 
 | 1118 | 			break; | 
 | 1119 |  | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1120 | 		if (start & mask_256MB) { | 
 | 1121 | 			start = (start + size_256MB) & ~mask_256MB; | 
 | 1122 | 			continue; | 
 | 1123 | 		} | 
 | 1124 |  | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1125 | 		while (remains >= size_256MB) { | 
 | 1126 | 			unsigned long index = start >> shift_256MB; | 
 | 1127 |  | 
 | 1128 | 			__set_bit(index, kpte_linear_bitmap); | 
 | 1129 |  | 
 | 1130 | 			start += size_256MB; | 
 | 1131 | 			remains -= size_256MB; | 
 | 1132 | 		} | 
 | 1133 | 	} | 
 | 1134 | } | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1135 |  | 
 | 1136 | static void __init kernel_physical_mapping_init(void) | 
 | 1137 | { | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1138 | 	unsigned long i; | 
 | 1139 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
 | 1140 | 	unsigned long mem_alloced = 0UL; | 
 | 1141 | #endif | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1142 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1143 | 	read_obp_memory("reg", &pall[0], &pall_ents); | 
 | 1144 |  | 
 | 1145 | 	for (i = 0; i < pall_ents; i++) { | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1146 | 		unsigned long phys_start, phys_end; | 
 | 1147 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1148 | 		phys_start = pall[i].phys_addr; | 
 | 1149 | 		phys_end = phys_start + pall[i].reg_size; | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1150 |  | 
 | 1151 | 		mark_kpte_bitmap(phys_start, phys_end); | 
 | 1152 |  | 
 | 1153 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1154 | 		mem_alloced += kernel_map_range(phys_start, phys_end, | 
 | 1155 | 						PAGE_KERNEL); | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1156 | #endif | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1157 | 	} | 
 | 1158 |  | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1159 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1160 | 	printk("Allocated %ld bytes for kernel page tables.\n", | 
 | 1161 | 	       mem_alloced); | 
 | 1162 |  | 
 | 1163 | 	kvmap_linear_patch[0] = 0x01000000; /* nop */ | 
 | 1164 | 	flushi(&kvmap_linear_patch[0]); | 
 | 1165 |  | 
 | 1166 | 	__flush_tlb_all(); | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1167 | #endif | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1168 | } | 
 | 1169 |  | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1170 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1171 | void kernel_map_pages(struct page *page, int numpages, int enable) | 
 | 1172 | { | 
 | 1173 | 	unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT; | 
 | 1174 | 	unsigned long phys_end = phys_start + (numpages * PAGE_SIZE); | 
 | 1175 |  | 
 | 1176 | 	kernel_map_range(phys_start, phys_end, | 
 | 1177 | 			 (enable ? PAGE_KERNEL : __pgprot(0))); | 
 | 1178 |  | 
| David S. Miller | 74bf431 | 2006-01-31 18:29:18 -0800 | [diff] [blame] | 1179 | 	flush_tsb_kernel_range(PAGE_OFFSET + phys_start, | 
 | 1180 | 			       PAGE_OFFSET + phys_end); | 
 | 1181 |  | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1182 | 	/* we should perform an IPI and flush all tlbs, | 
 | 1183 | 	 * but that can deadlock->flush only current cpu. | 
 | 1184 | 	 */ | 
 | 1185 | 	__flush_tlb_kernel_range(PAGE_OFFSET + phys_start, | 
 | 1186 | 				 PAGE_OFFSET + phys_end); | 
 | 1187 | } | 
 | 1188 | #endif | 
 | 1189 |  | 
| David S. Miller | 1014757 | 2005-09-28 21:46:43 -0700 | [diff] [blame] | 1190 | unsigned long __init find_ecache_flush_span(unsigned long size) | 
 | 1191 | { | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1192 | 	int i; | 
| David S. Miller | 1014757 | 2005-09-28 21:46:43 -0700 | [diff] [blame] | 1193 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1194 | 	for (i = 0; i < pavail_ents; i++) { | 
 | 1195 | 		if (pavail[i].reg_size >= size) | 
 | 1196 | 			return pavail[i].phys_addr; | 
| David S. Miller | 1014757 | 2005-09-28 21:46:43 -0700 | [diff] [blame] | 1197 | 	} | 
 | 1198 |  | 
 | 1199 | 	return ~0UL; | 
 | 1200 | } | 
 | 1201 |  | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 1202 | static void __init tsb_phys_patch(void) | 
 | 1203 | { | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 1204 | 	struct tsb_ldquad_phys_patch_entry *pquad; | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 1205 | 	struct tsb_phys_patch_entry *p; | 
 | 1206 |  | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 1207 | 	pquad = &__tsb_ldquad_phys_patch; | 
 | 1208 | 	while (pquad < &__tsb_ldquad_phys_patch_end) { | 
 | 1209 | 		unsigned long addr = pquad->addr; | 
 | 1210 |  | 
 | 1211 | 		if (tlb_type == hypervisor) | 
 | 1212 | 			*(unsigned int *) addr = pquad->sun4v_insn; | 
 | 1213 | 		else | 
 | 1214 | 			*(unsigned int *) addr = pquad->sun4u_insn; | 
 | 1215 | 		wmb(); | 
 | 1216 | 		__asm__ __volatile__("flush	%0" | 
 | 1217 | 				     : /* no outputs */ | 
 | 1218 | 				     : "r" (addr)); | 
 | 1219 |  | 
 | 1220 | 		pquad++; | 
 | 1221 | 	} | 
 | 1222 |  | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 1223 | 	p = &__tsb_phys_patch; | 
 | 1224 | 	while (p < &__tsb_phys_patch_end) { | 
 | 1225 | 		unsigned long addr = p->addr; | 
 | 1226 |  | 
 | 1227 | 		*(unsigned int *) addr = p->insn; | 
 | 1228 | 		wmb(); | 
 | 1229 | 		__asm__ __volatile__("flush	%0" | 
 | 1230 | 				     : /* no outputs */ | 
 | 1231 | 				     : "r" (addr)); | 
 | 1232 |  | 
 | 1233 | 		p++; | 
 | 1234 | 	} | 
 | 1235 | } | 
 | 1236 |  | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1237 | /* Don't mark as init, we give this to the Hypervisor.  */ | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1238 | #ifndef CONFIG_DEBUG_PAGEALLOC | 
 | 1239 | #define NUM_KTSB_DESCR	2 | 
 | 1240 | #else | 
 | 1241 | #define NUM_KTSB_DESCR	1 | 
 | 1242 | #endif | 
 | 1243 | static struct hv_tsb_descr ktsb_descr[NUM_KTSB_DESCR]; | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1244 | extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES]; | 
 | 1245 |  | 
 | 1246 | static void __init sun4v_ktsb_init(void) | 
 | 1247 | { | 
 | 1248 | 	unsigned long ktsb_pa; | 
 | 1249 |  | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 1250 | 	/* First KTSB for PAGE_SIZE mappings.  */ | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1251 | 	ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE); | 
 | 1252 |  | 
 | 1253 | 	switch (PAGE_SIZE) { | 
 | 1254 | 	case 8 * 1024: | 
 | 1255 | 	default: | 
 | 1256 | 		ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K; | 
 | 1257 | 		ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K; | 
 | 1258 | 		break; | 
 | 1259 |  | 
 | 1260 | 	case 64 * 1024: | 
 | 1261 | 		ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K; | 
 | 1262 | 		ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K; | 
 | 1263 | 		break; | 
 | 1264 |  | 
 | 1265 | 	case 512 * 1024: | 
 | 1266 | 		ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K; | 
 | 1267 | 		ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K; | 
 | 1268 | 		break; | 
 | 1269 |  | 
 | 1270 | 	case 4 * 1024 * 1024: | 
 | 1271 | 		ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB; | 
 | 1272 | 		ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB; | 
 | 1273 | 		break; | 
 | 1274 | 	}; | 
 | 1275 |  | 
| David S. Miller | 3f19a84 | 2006-02-17 12:03:20 -0800 | [diff] [blame] | 1276 | 	ktsb_descr[0].assoc = 1; | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1277 | 	ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES; | 
 | 1278 | 	ktsb_descr[0].ctx_idx = 0; | 
 | 1279 | 	ktsb_descr[0].tsb_base = ktsb_pa; | 
 | 1280 | 	ktsb_descr[0].resv = 0; | 
 | 1281 |  | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1282 | #ifndef CONFIG_DEBUG_PAGEALLOC | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 1283 | 	/* Second KTSB for 4MB/256MB mappings.  */ | 
 | 1284 | 	ktsb_pa = (kern_base + | 
 | 1285 | 		   ((unsigned long)&swapper_4m_tsb[0] - KERNBASE)); | 
 | 1286 |  | 
 | 1287 | 	ktsb_descr[1].pgsz_idx = HV_PGSZ_IDX_4MB; | 
 | 1288 | 	ktsb_descr[1].pgsz_mask = (HV_PGSZ_MASK_4MB | | 
 | 1289 | 				   HV_PGSZ_MASK_256MB); | 
 | 1290 | 	ktsb_descr[1].assoc = 1; | 
 | 1291 | 	ktsb_descr[1].num_ttes = KERNEL_TSB4M_NENTRIES; | 
 | 1292 | 	ktsb_descr[1].ctx_idx = 0; | 
 | 1293 | 	ktsb_descr[1].tsb_base = ktsb_pa; | 
 | 1294 | 	ktsb_descr[1].resv = 0; | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1295 | #endif | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1296 | } | 
 | 1297 |  | 
 | 1298 | void __cpuinit sun4v_ktsb_register(void) | 
 | 1299 | { | 
| David S. Miller | 7db35f3 | 2007-05-29 02:22:14 -0700 | [diff] [blame] | 1300 | 	unsigned long pa, ret; | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1301 |  | 
 | 1302 | 	pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE); | 
 | 1303 |  | 
| David S. Miller | 7db35f3 | 2007-05-29 02:22:14 -0700 | [diff] [blame] | 1304 | 	ret = sun4v_mmu_tsb_ctx0(NUM_KTSB_DESCR, pa); | 
 | 1305 | 	if (ret != 0) { | 
 | 1306 | 		prom_printf("hypervisor_mmu_tsb_ctx0[%lx]: " | 
 | 1307 | 			    "errors with %lx\n", pa, ret); | 
 | 1308 | 		prom_halt(); | 
 | 1309 | 	} | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1310 | } | 
 | 1311 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | /* paging_init() sets up the page tables */ | 
 | 1313 |  | 
 | 1314 | extern void cheetah_ecache_flush_init(void); | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 1315 | extern void sun4v_patch_tlb_handlers(void); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 |  | 
| David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1317 | extern void cpu_probe(void); | 
 | 1318 | extern void central_probe(void); | 
 | 1319 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | static unsigned long last_valid_pfn; | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1321 | pgd_t swapper_pg_dir[2048]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1323 | static void sun4u_pgprot_init(void); | 
 | 1324 | static void sun4v_pgprot_init(void); | 
 | 1325 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | void __init paging_init(void) | 
 | 1327 | { | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 1328 | 	unsigned long end_pfn, pages_avail, shift, phys_base; | 
| David S. Miller | 0836a0e | 2005-09-28 21:38:08 -0700 | [diff] [blame] | 1329 | 	unsigned long real_end, i; | 
 | 1330 |  | 
| David S. Miller | 22adb35 | 2007-05-26 01:14:43 -0700 | [diff] [blame] | 1331 | 	/* These build time checkes make sure that the dcache_dirty_cpu() | 
 | 1332 | 	 * page->flags usage will work. | 
 | 1333 | 	 * | 
 | 1334 | 	 * When a page gets marked as dcache-dirty, we store the | 
 | 1335 | 	 * cpu number starting at bit 32 in the page->flags.  Also, | 
 | 1336 | 	 * functions like clear_dcache_dirty_cpu use the cpu mask | 
 | 1337 | 	 * in 13-bit signed-immediate instruction fields. | 
 | 1338 | 	 */ | 
 | 1339 | 	BUILD_BUG_ON(FLAGS_RESERVED != 32); | 
 | 1340 | 	BUILD_BUG_ON(SECTIONS_WIDTH + NODES_WIDTH + ZONES_WIDTH + | 
 | 1341 | 		     ilog2(roundup_pow_of_two(NR_CPUS)) > FLAGS_RESERVED); | 
 | 1342 | 	BUILD_BUG_ON(NR_CPUS > 4096); | 
 | 1343 |  | 
| David S. Miller | 481295f | 2006-02-07 21:51:08 -0800 | [diff] [blame] | 1344 | 	kern_base = (prom_boot_mapping_phys_low >> 22UL) << 22UL; | 
 | 1345 | 	kern_size = (unsigned long)&_end - (unsigned long)KERNBASE; | 
 | 1346 |  | 
| David S. Miller | 22d6a1c | 2007-05-25 00:37:12 -0700 | [diff] [blame] | 1347 | 	sstate_booting(); | 
 | 1348 |  | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 1349 | 	/* Invalidate both kernel TSBs.  */ | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 1350 | 	memset(swapper_tsb, 0x40, sizeof(swapper_tsb)); | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1351 | #ifndef CONFIG_DEBUG_PAGEALLOC | 
| David S. Miller | d7744a0 | 2006-02-21 22:31:11 -0800 | [diff] [blame] | 1352 | 	memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb)); | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1353 | #endif | 
| David S. Miller | 8b23427 | 2006-02-17 18:01:02 -0800 | [diff] [blame] | 1354 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1355 | 	if (tlb_type == hypervisor) | 
 | 1356 | 		sun4v_pgprot_init(); | 
 | 1357 | 	else | 
 | 1358 | 		sun4u_pgprot_init(); | 
 | 1359 |  | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 1360 | 	if (tlb_type == cheetah_plus || | 
 | 1361 | 	    tlb_type == hypervisor) | 
| David S. Miller | 517af33 | 2006-02-01 15:55:21 -0800 | [diff] [blame] | 1362 | 		tsb_phys_patch(); | 
 | 1363 |  | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1364 | 	if (tlb_type == hypervisor) { | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 1365 | 		sun4v_patch_tlb_handlers(); | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1366 | 		sun4v_ktsb_init(); | 
 | 1367 | 	} | 
| David S. Miller | d257d5d | 2006-02-06 23:44:37 -0800 | [diff] [blame] | 1368 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1369 | 	/* Find available physical memory... */ | 
 | 1370 | 	read_obp_memory("available", &pavail[0], &pavail_ents); | 
| David S. Miller | 0836a0e | 2005-09-28 21:38:08 -0700 | [diff] [blame] | 1371 |  | 
 | 1372 | 	phys_base = 0xffffffffffffffffUL; | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1373 | 	for (i = 0; i < pavail_ents; i++) | 
 | 1374 | 		phys_base = min(phys_base, pavail[i].phys_addr); | 
| David S. Miller | 0836a0e | 2005-09-28 21:38:08 -0700 | [diff] [blame] | 1375 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | 	set_bit(0, mmu_context_bmap); | 
 | 1377 |  | 
| David S. Miller | 2bdb3cb | 2005-09-22 01:08:57 -0700 | [diff] [blame] | 1378 | 	shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE); | 
 | 1379 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | 	real_end = (unsigned long)_end; | 
 | 1381 | 	if ((real_end > ((unsigned long)KERNBASE + 0x400000))) | 
 | 1382 | 		bigkernel = 1; | 
| David S. Miller | 2bdb3cb | 2005-09-22 01:08:57 -0700 | [diff] [blame] | 1383 | 	if ((real_end > ((unsigned long)KERNBASE + 0x800000))) { | 
 | 1384 | 		prom_printf("paging_init: Kernel > 8MB, too large.\n"); | 
 | 1385 | 		prom_halt(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | 	} | 
| David S. Miller | 2bdb3cb | 2005-09-22 01:08:57 -0700 | [diff] [blame] | 1387 |  | 
 | 1388 | 	/* Set kernel pgd to upper alias so physical page computations | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | 	 * work. | 
 | 1390 | 	 */ | 
 | 1391 | 	init_mm.pgd += ((shift) / (sizeof(pgd_t))); | 
 | 1392 | 	 | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1393 | 	memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 |  | 
 | 1395 | 	/* Now can init the kernel/bad page tables. */ | 
 | 1396 | 	pud_set(pud_offset(&swapper_pg_dir[0], 0), | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1397 | 		swapper_low_pmd_dir + (shift / sizeof(pgd_t))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | 	 | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 1399 | 	inherit_prom_mappings(); | 
| David S. Miller | 5085b4a | 2005-09-22 00:45:41 -0700 | [diff] [blame] | 1400 | 	 | 
| David S. Miller | a8b900d | 2006-01-31 18:33:37 -0800 | [diff] [blame] | 1401 | 	/* Ok, we can use our TLB miss and window trap handlers safely.  */ | 
 | 1402 | 	setup_tba(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 |  | 
| David S. Miller | c9c1083 | 2005-10-12 12:22:46 -0700 | [diff] [blame] | 1404 | 	__flush_tlb_all(); | 
| David S. Miller | 9ad98c5 | 2005-10-05 15:12:00 -0700 | [diff] [blame] | 1405 |  | 
| David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 1406 | 	if (tlb_type == hypervisor) | 
 | 1407 | 		sun4v_ktsb_register(); | 
 | 1408 |  | 
| David S. Miller | 2bdb3cb | 2005-09-22 01:08:57 -0700 | [diff] [blame] | 1409 | 	/* Setup bootmem... */ | 
 | 1410 | 	pages_avail = 0; | 
| David S. Miller | d111201 | 2006-03-08 02:16:07 -0800 | [diff] [blame] | 1411 | 	last_valid_pfn = end_pfn = bootmem_init(&pages_avail, phys_base); | 
 | 1412 |  | 
| David S. Miller | 17b0e19 | 2006-03-08 15:57:03 -0800 | [diff] [blame] | 1413 | 	max_mapnr = last_valid_pfn; | 
| David S. Miller | 2bdb3cb | 2005-09-22 01:08:57 -0700 | [diff] [blame] | 1414 |  | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1415 | 	kernel_physical_mapping_init(); | 
| David S. Miller | 5642530 | 2005-09-25 16:46:57 -0700 | [diff] [blame] | 1416 |  | 
| David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1417 | 	real_setup_per_cpu_areas(); | 
 | 1418 |  | 
| David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1419 | 	prom_build_devicetree(); | 
 | 1420 |  | 
| David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1421 | 	if (tlb_type == hypervisor) | 
 | 1422 | 		sun4v_mdesc_init(); | 
 | 1423 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | 	{ | 
 | 1425 | 		unsigned long zones_size[MAX_NR_ZONES]; | 
 | 1426 | 		unsigned long zholes_size[MAX_NR_ZONES]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | 		int znum; | 
 | 1428 |  | 
 | 1429 | 		for (znum = 0; znum < MAX_NR_ZONES; znum++) | 
 | 1430 | 			zones_size[znum] = zholes_size[znum] = 0; | 
 | 1431 |  | 
| David S. Miller | 1b51d3a | 2007-02-12 00:13:31 -0800 | [diff] [blame] | 1432 | 		zones_size[ZONE_NORMAL] = end_pfn; | 
 | 1433 | 		zholes_size[ZONE_NORMAL] = end_pfn - pages_avail; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 |  | 
 | 1435 | 		free_area_init_node(0, &contig_page_data, zones_size, | 
| David S. Miller | 17b0e19 | 2006-03-08 15:57:03 -0800 | [diff] [blame] | 1436 | 				    __pa(PAGE_OFFSET) >> PAGE_SHIFT, | 
 | 1437 | 				    zholes_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | 	} | 
 | 1439 |  | 
| David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1440 | 	prom_printf("Booting Linux...\n"); | 
 | 1441 |  | 
 | 1442 | 	central_probe(); | 
 | 1443 | 	cpu_probe(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | } | 
 | 1445 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | static void __init taint_real_pages(void) | 
 | 1447 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | 	int i; | 
 | 1449 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1450 | 	read_obp_memory("available", &pavail_rescan[0], &pavail_rescan_ents); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1452 | 	/* Find changes discovered in the physmem available rescan and | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | 	 * reserve the lost portions in the bootmem maps. | 
 | 1454 | 	 */ | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1455 | 	for (i = 0; i < pavail_ents; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | 		unsigned long old_start, old_end; | 
 | 1457 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1458 | 		old_start = pavail[i].phys_addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | 		old_end = old_start + | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1460 | 			pavail[i].reg_size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | 		while (old_start < old_end) { | 
 | 1462 | 			int n; | 
 | 1463 |  | 
| David S. Miller | c2a5a46 | 2006-06-22 00:01:56 -0700 | [diff] [blame] | 1464 | 			for (n = 0; n < pavail_rescan_ents; n++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | 				unsigned long new_start, new_end; | 
 | 1466 |  | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1467 | 				new_start = pavail_rescan[n].phys_addr; | 
 | 1468 | 				new_end = new_start + | 
 | 1469 | 					pavail_rescan[n].reg_size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 |  | 
 | 1471 | 				if (new_start <= old_start && | 
 | 1472 | 				    new_end >= (old_start + PAGE_SIZE)) { | 
| David S. Miller | 13edad7 | 2005-09-29 17:58:26 -0700 | [diff] [blame] | 1473 | 					set_bit(old_start >> 22, | 
 | 1474 | 						sparc64_valid_addr_bitmap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | 					goto do_next_page; | 
 | 1476 | 				} | 
 | 1477 | 			} | 
 | 1478 | 			reserve_bootmem(old_start, PAGE_SIZE); | 
 | 1479 |  | 
 | 1480 | 		do_next_page: | 
 | 1481 | 			old_start += PAGE_SIZE; | 
 | 1482 | 		} | 
 | 1483 | 	} | 
 | 1484 | } | 
 | 1485 |  | 
| David S. Miller | c2a5a46 | 2006-06-22 00:01:56 -0700 | [diff] [blame] | 1486 | int __init page_in_phys_avail(unsigned long paddr) | 
 | 1487 | { | 
 | 1488 | 	int i; | 
 | 1489 |  | 
 | 1490 | 	paddr &= PAGE_MASK; | 
 | 1491 |  | 
 | 1492 | 	for (i = 0; i < pavail_rescan_ents; i++) { | 
 | 1493 | 		unsigned long start, end; | 
 | 1494 |  | 
 | 1495 | 		start = pavail_rescan[i].phys_addr; | 
 | 1496 | 		end = start + pavail_rescan[i].reg_size; | 
 | 1497 |  | 
 | 1498 | 		if (paddr >= start && paddr < end) | 
 | 1499 | 			return 1; | 
 | 1500 | 	} | 
 | 1501 | 	if (paddr >= kern_base && paddr < (kern_base + kern_size)) | 
 | 1502 | 		return 1; | 
 | 1503 | #ifdef CONFIG_BLK_DEV_INITRD | 
 | 1504 | 	if (paddr >= __pa(initrd_start) && | 
 | 1505 | 	    paddr < __pa(PAGE_ALIGN(initrd_end))) | 
 | 1506 | 		return 1; | 
 | 1507 | #endif | 
 | 1508 |  | 
 | 1509 | 	return 0; | 
 | 1510 | } | 
 | 1511 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | void __init mem_init(void) | 
 | 1513 | { | 
 | 1514 | 	unsigned long codepages, datapages, initpages; | 
 | 1515 | 	unsigned long addr, last; | 
 | 1516 | 	int i; | 
 | 1517 |  | 
 | 1518 | 	i = last_valid_pfn >> ((22 - PAGE_SHIFT) + 6); | 
 | 1519 | 	i += 1; | 
| David S. Miller | 2bdb3cb | 2005-09-22 01:08:57 -0700 | [diff] [blame] | 1520 | 	sparc64_valid_addr_bitmap = (unsigned long *) alloc_bootmem(i << 3); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | 	if (sparc64_valid_addr_bitmap == NULL) { | 
 | 1522 | 		prom_printf("mem_init: Cannot alloc valid_addr_bitmap.\n"); | 
 | 1523 | 		prom_halt(); | 
 | 1524 | 	} | 
 | 1525 | 	memset(sparc64_valid_addr_bitmap, 0, i << 3); | 
 | 1526 |  | 
 | 1527 | 	addr = PAGE_OFFSET + kern_base; | 
 | 1528 | 	last = PAGE_ALIGN(kern_size) + addr; | 
 | 1529 | 	while (addr < last) { | 
 | 1530 | 		set_bit(__pa(addr) >> 22, sparc64_valid_addr_bitmap); | 
 | 1531 | 		addr += PAGE_SIZE; | 
 | 1532 | 	} | 
 | 1533 |  | 
 | 1534 | 	taint_real_pages(); | 
 | 1535 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | 	high_memory = __va(last_valid_pfn << PAGE_SHIFT); | 
 | 1537 |  | 
 | 1538 | #ifdef CONFIG_DEBUG_BOOTMEM | 
 | 1539 | 	prom_printf("mem_init: Calling free_all_bootmem().\n"); | 
 | 1540 | #endif | 
| David S. Miller | f1cfdb5 | 2007-03-15 22:52:18 -0700 | [diff] [blame] | 1541 |  | 
 | 1542 | 	/* We subtract one to account for the mem_map_zero page | 
 | 1543 | 	 * allocated below. | 
 | 1544 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | 	totalram_pages = num_physpages = free_all_bootmem() - 1; | 
 | 1546 |  | 
 | 1547 | 	/* | 
 | 1548 | 	 * Set up the zero page, mark it reserved, so that page count | 
 | 1549 | 	 * is not manipulated when freeing the page from user ptes. | 
 | 1550 | 	 */ | 
 | 1551 | 	mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0); | 
 | 1552 | 	if (mem_map_zero == NULL) { | 
 | 1553 | 		prom_printf("paging_init: Cannot alloc zero page.\n"); | 
 | 1554 | 		prom_halt(); | 
 | 1555 | 	} | 
 | 1556 | 	SetPageReserved(mem_map_zero); | 
 | 1557 |  | 
 | 1558 | 	codepages = (((unsigned long) _etext) - ((unsigned long) _start)); | 
 | 1559 | 	codepages = PAGE_ALIGN(codepages) >> PAGE_SHIFT; | 
 | 1560 | 	datapages = (((unsigned long) _edata) - ((unsigned long) _etext)); | 
 | 1561 | 	datapages = PAGE_ALIGN(datapages) >> PAGE_SHIFT; | 
 | 1562 | 	initpages = (((unsigned long) __init_end) - ((unsigned long) __init_begin)); | 
 | 1563 | 	initpages = PAGE_ALIGN(initpages) >> PAGE_SHIFT; | 
 | 1564 |  | 
| Christoph Lameter | 9617729 | 2007-02-10 01:43:03 -0800 | [diff] [blame] | 1565 | 	printk("Memory: %luk available (%ldk kernel code, %ldk data, %ldk init) [%016lx,%016lx]\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | 	       nr_free_pages() << (PAGE_SHIFT-10), | 
 | 1567 | 	       codepages << (PAGE_SHIFT-10), | 
 | 1568 | 	       datapages << (PAGE_SHIFT-10),  | 
 | 1569 | 	       initpages << (PAGE_SHIFT-10),  | 
 | 1570 | 	       PAGE_OFFSET, (last_valid_pfn << PAGE_SHIFT)); | 
 | 1571 |  | 
 | 1572 | 	if (tlb_type == cheetah || tlb_type == cheetah_plus) | 
 | 1573 | 		cheetah_ecache_flush_init(); | 
 | 1574 | } | 
 | 1575 |  | 
| David S. Miller | 898cf0e | 2005-09-23 11:59:44 -0700 | [diff] [blame] | 1576 | void free_initmem(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | { | 
 | 1578 | 	unsigned long addr, initend; | 
 | 1579 |  | 
 | 1580 | 	/* | 
 | 1581 | 	 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes. | 
 | 1582 | 	 */ | 
 | 1583 | 	addr = PAGE_ALIGN((unsigned long)(__init_begin)); | 
 | 1584 | 	initend = (unsigned long)(__init_end) & PAGE_MASK; | 
 | 1585 | 	for (; addr < initend; addr += PAGE_SIZE) { | 
 | 1586 | 		unsigned long page; | 
 | 1587 | 		struct page *p; | 
 | 1588 |  | 
 | 1589 | 		page = (addr + | 
 | 1590 | 			((unsigned long) __va(kern_base)) - | 
 | 1591 | 			((unsigned long) KERNBASE)); | 
| Randy Dunlap | c9cf552 | 2006-06-27 02:53:52 -0700 | [diff] [blame] | 1592 | 		memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | 		p = virt_to_page(page); | 
 | 1594 |  | 
 | 1595 | 		ClearPageReserved(p); | 
| Nick Piggin | 7835e98 | 2006-03-22 00:08:40 -0800 | [diff] [blame] | 1596 | 		init_page_count(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | 		__free_page(p); | 
 | 1598 | 		num_physpages++; | 
 | 1599 | 		totalram_pages++; | 
 | 1600 | 	} | 
 | 1601 | } | 
 | 1602 |  | 
 | 1603 | #ifdef CONFIG_BLK_DEV_INITRD | 
 | 1604 | void free_initrd_mem(unsigned long start, unsigned long end) | 
 | 1605 | { | 
 | 1606 | 	if (start < end) | 
 | 1607 | 		printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10); | 
 | 1608 | 	for (; start < end; start += PAGE_SIZE) { | 
 | 1609 | 		struct page *p = virt_to_page(start); | 
 | 1610 |  | 
 | 1611 | 		ClearPageReserved(p); | 
| Nick Piggin | 7835e98 | 2006-03-22 00:08:40 -0800 | [diff] [blame] | 1612 | 		init_page_count(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | 		__free_page(p); | 
 | 1614 | 		num_physpages++; | 
 | 1615 | 		totalram_pages++; | 
 | 1616 | 	} | 
 | 1617 | } | 
 | 1618 | #endif | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1619 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1620 | #define _PAGE_CACHE_4U	(_PAGE_CP_4U | _PAGE_CV_4U) | 
 | 1621 | #define _PAGE_CACHE_4V	(_PAGE_CP_4V | _PAGE_CV_4V) | 
 | 1622 | #define __DIRTY_BITS_4U	 (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U) | 
 | 1623 | #define __DIRTY_BITS_4V	 (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V) | 
 | 1624 | #define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R) | 
 | 1625 | #define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R) | 
 | 1626 |  | 
 | 1627 | pgprot_t PAGE_KERNEL __read_mostly; | 
 | 1628 | EXPORT_SYMBOL(PAGE_KERNEL); | 
 | 1629 |  | 
 | 1630 | pgprot_t PAGE_KERNEL_LOCKED __read_mostly; | 
 | 1631 | pgprot_t PAGE_COPY __read_mostly; | 
| David S. Miller | 0f15952 | 2006-02-18 12:43:16 -0800 | [diff] [blame] | 1632 |  | 
 | 1633 | pgprot_t PAGE_SHARED __read_mostly; | 
 | 1634 | EXPORT_SYMBOL(PAGE_SHARED); | 
 | 1635 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1636 | pgprot_t PAGE_EXEC __read_mostly; | 
 | 1637 | unsigned long pg_iobits __read_mostly; | 
 | 1638 |  | 
 | 1639 | unsigned long _PAGE_IE __read_mostly; | 
| David S. Miller | 987c74f | 2006-06-25 01:34:43 -0700 | [diff] [blame] | 1640 | EXPORT_SYMBOL(_PAGE_IE); | 
| David S. Miller | b2bef44 | 2006-02-23 01:55:55 -0800 | [diff] [blame] | 1641 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1642 | unsigned long _PAGE_E __read_mostly; | 
| David S. Miller | b2bef44 | 2006-02-23 01:55:55 -0800 | [diff] [blame] | 1643 | EXPORT_SYMBOL(_PAGE_E); | 
 | 1644 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1645 | unsigned long _PAGE_CACHE __read_mostly; | 
| David S. Miller | b2bef44 | 2006-02-23 01:55:55 -0800 | [diff] [blame] | 1646 | EXPORT_SYMBOL(_PAGE_CACHE); | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1647 |  | 
| David Miller | 46644c2 | 2007-10-16 01:24:16 -0700 | [diff] [blame] | 1648 | #ifdef CONFIG_SPARSEMEM_VMEMMAP | 
 | 1649 |  | 
 | 1650 | #define VMEMMAP_CHUNK_SHIFT	22 | 
 | 1651 | #define VMEMMAP_CHUNK		(1UL << VMEMMAP_CHUNK_SHIFT) | 
 | 1652 | #define VMEMMAP_CHUNK_MASK	~(VMEMMAP_CHUNK - 1UL) | 
 | 1653 | #define VMEMMAP_ALIGN(x)	(((x)+VMEMMAP_CHUNK-1UL)&VMEMMAP_CHUNK_MASK) | 
 | 1654 |  | 
 | 1655 | #define VMEMMAP_SIZE	((((1UL << MAX_PHYSADDR_BITS) >> PAGE_SHIFT) * \ | 
 | 1656 | 			  sizeof(struct page *)) >> VMEMMAP_CHUNK_SHIFT) | 
 | 1657 | unsigned long vmemmap_table[VMEMMAP_SIZE]; | 
 | 1658 |  | 
 | 1659 | int __meminit vmemmap_populate(struct page *start, unsigned long nr, int node) | 
 | 1660 | { | 
 | 1661 | 	unsigned long vstart = (unsigned long) start; | 
 | 1662 | 	unsigned long vend = (unsigned long) (start + nr); | 
 | 1663 | 	unsigned long phys_start = (vstart - VMEMMAP_BASE); | 
 | 1664 | 	unsigned long phys_end = (vend - VMEMMAP_BASE); | 
 | 1665 | 	unsigned long addr = phys_start & VMEMMAP_CHUNK_MASK; | 
 | 1666 | 	unsigned long end = VMEMMAP_ALIGN(phys_end); | 
 | 1667 | 	unsigned long pte_base; | 
 | 1668 |  | 
 | 1669 | 	pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4U | | 
 | 1670 | 		    _PAGE_CP_4U | _PAGE_CV_4U | | 
 | 1671 | 		    _PAGE_P_4U | _PAGE_W_4U); | 
 | 1672 | 	if (tlb_type == hypervisor) | 
 | 1673 | 		pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4V | | 
 | 1674 | 			    _PAGE_CP_4V | _PAGE_CV_4V | | 
 | 1675 | 			    _PAGE_P_4V | _PAGE_W_4V); | 
 | 1676 |  | 
 | 1677 | 	for (; addr < end; addr += VMEMMAP_CHUNK) { | 
 | 1678 | 		unsigned long *vmem_pp = | 
 | 1679 | 			vmemmap_table + (addr >> VMEMMAP_CHUNK_SHIFT); | 
 | 1680 | 		void *block; | 
 | 1681 |  | 
 | 1682 | 		if (!(*vmem_pp & _PAGE_VALID)) { | 
 | 1683 | 			block = vmemmap_alloc_block(1UL << 22, node); | 
 | 1684 | 			if (!block) | 
 | 1685 | 				return -ENOMEM; | 
 | 1686 |  | 
 | 1687 | 			*vmem_pp = pte_base | __pa(block); | 
 | 1688 |  | 
 | 1689 | 			printk(KERN_INFO "[%p-%p] page_structs=%lu " | 
 | 1690 | 			       "node=%d entry=%lu/%lu\n", start, block, nr, | 
 | 1691 | 			       node, | 
 | 1692 | 			       addr >> VMEMMAP_CHUNK_SHIFT, | 
 | 1693 | 			       VMEMMAP_SIZE >> VMEMMAP_CHUNK_SHIFT); | 
 | 1694 | 		} | 
 | 1695 | 	} | 
 | 1696 | 	return 0; | 
 | 1697 | } | 
 | 1698 | #endif /* CONFIG_SPARSEMEM_VMEMMAP */ | 
 | 1699 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1700 | static void prot_init_common(unsigned long page_none, | 
 | 1701 | 			     unsigned long page_shared, | 
 | 1702 | 			     unsigned long page_copy, | 
 | 1703 | 			     unsigned long page_readonly, | 
 | 1704 | 			     unsigned long page_exec_bit) | 
 | 1705 | { | 
 | 1706 | 	PAGE_COPY = __pgprot(page_copy); | 
| David S. Miller | 0f15952 | 2006-02-18 12:43:16 -0800 | [diff] [blame] | 1707 | 	PAGE_SHARED = __pgprot(page_shared); | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1708 |  | 
 | 1709 | 	protection_map[0x0] = __pgprot(page_none); | 
 | 1710 | 	protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit); | 
 | 1711 | 	protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit); | 
 | 1712 | 	protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit); | 
 | 1713 | 	protection_map[0x4] = __pgprot(page_readonly); | 
 | 1714 | 	protection_map[0x5] = __pgprot(page_readonly); | 
 | 1715 | 	protection_map[0x6] = __pgprot(page_copy); | 
 | 1716 | 	protection_map[0x7] = __pgprot(page_copy); | 
 | 1717 | 	protection_map[0x8] = __pgprot(page_none); | 
 | 1718 | 	protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit); | 
 | 1719 | 	protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit); | 
 | 1720 | 	protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit); | 
 | 1721 | 	protection_map[0xc] = __pgprot(page_readonly); | 
 | 1722 | 	protection_map[0xd] = __pgprot(page_readonly); | 
 | 1723 | 	protection_map[0xe] = __pgprot(page_shared); | 
 | 1724 | 	protection_map[0xf] = __pgprot(page_shared); | 
 | 1725 | } | 
 | 1726 |  | 
 | 1727 | static void __init sun4u_pgprot_init(void) | 
 | 1728 | { | 
 | 1729 | 	unsigned long page_none, page_shared, page_copy, page_readonly; | 
 | 1730 | 	unsigned long page_exec_bit; | 
 | 1731 |  | 
 | 1732 | 	PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID | | 
 | 1733 | 				_PAGE_CACHE_4U | _PAGE_P_4U | | 
 | 1734 | 				__ACCESS_BITS_4U | __DIRTY_BITS_4U | | 
 | 1735 | 				_PAGE_EXEC_4U); | 
 | 1736 | 	PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID | | 
 | 1737 | 				       _PAGE_CACHE_4U | _PAGE_P_4U | | 
 | 1738 | 				       __ACCESS_BITS_4U | __DIRTY_BITS_4U | | 
 | 1739 | 				       _PAGE_EXEC_4U | _PAGE_L_4U); | 
 | 1740 | 	PAGE_EXEC = __pgprot(_PAGE_EXEC_4U); | 
 | 1741 |  | 
 | 1742 | 	_PAGE_IE = _PAGE_IE_4U; | 
 | 1743 | 	_PAGE_E = _PAGE_E_4U; | 
 | 1744 | 	_PAGE_CACHE = _PAGE_CACHE_4U; | 
 | 1745 |  | 
 | 1746 | 	pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U | | 
 | 1747 | 		     __ACCESS_BITS_4U | _PAGE_E_4U); | 
 | 1748 |  | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1749 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
 | 1750 | 	kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZBITS_4U) ^ | 
 | 1751 | 		0xfffff80000000000; | 
 | 1752 | #else | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1753 | 	kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^ | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1754 | 		0xfffff80000000000; | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1755 | #endif | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1756 | 	kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U | | 
 | 1757 | 				   _PAGE_P_4U | _PAGE_W_4U); | 
 | 1758 |  | 
 | 1759 | 	/* XXX Should use 256MB on Panther. XXX */ | 
 | 1760 | 	kern_linear_pte_xor[1] = kern_linear_pte_xor[0]; | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1761 |  | 
 | 1762 | 	_PAGE_SZBITS = _PAGE_SZBITS_4U; | 
 | 1763 | 	_PAGE_ALL_SZ_BITS =  (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U | | 
 | 1764 | 			      _PAGE_SZ64K_4U | _PAGE_SZ8K_4U | | 
 | 1765 | 			      _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U); | 
 | 1766 |  | 
 | 1767 |  | 
 | 1768 | 	page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U; | 
 | 1769 | 	page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U | | 
 | 1770 | 		       __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U); | 
 | 1771 | 	page_copy   = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U | | 
 | 1772 | 		       __ACCESS_BITS_4U | _PAGE_EXEC_4U); | 
 | 1773 | 	page_readonly   = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U | | 
 | 1774 | 			   __ACCESS_BITS_4U | _PAGE_EXEC_4U); | 
 | 1775 |  | 
 | 1776 | 	page_exec_bit = _PAGE_EXEC_4U; | 
 | 1777 |  | 
 | 1778 | 	prot_init_common(page_none, page_shared, page_copy, page_readonly, | 
 | 1779 | 			 page_exec_bit); | 
 | 1780 | } | 
 | 1781 |  | 
 | 1782 | static void __init sun4v_pgprot_init(void) | 
 | 1783 | { | 
 | 1784 | 	unsigned long page_none, page_shared, page_copy, page_readonly; | 
 | 1785 | 	unsigned long page_exec_bit; | 
 | 1786 |  | 
 | 1787 | 	PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID | | 
 | 1788 | 				_PAGE_CACHE_4V | _PAGE_P_4V | | 
 | 1789 | 				__ACCESS_BITS_4V | __DIRTY_BITS_4V | | 
 | 1790 | 				_PAGE_EXEC_4V); | 
 | 1791 | 	PAGE_KERNEL_LOCKED = PAGE_KERNEL; | 
 | 1792 | 	PAGE_EXEC = __pgprot(_PAGE_EXEC_4V); | 
 | 1793 |  | 
 | 1794 | 	_PAGE_IE = _PAGE_IE_4V; | 
 | 1795 | 	_PAGE_E = _PAGE_E_4V; | 
 | 1796 | 	_PAGE_CACHE = _PAGE_CACHE_4V; | 
 | 1797 |  | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1798 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
 | 1799 | 	kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZBITS_4V) ^ | 
 | 1800 | 		0xfffff80000000000; | 
 | 1801 | #else | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1802 | 	kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^ | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1803 | 		0xfffff80000000000; | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1804 | #endif | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1805 | 	kern_linear_pte_xor[0] |= (_PAGE_CP_4V | _PAGE_CV_4V | | 
 | 1806 | 				   _PAGE_P_4V | _PAGE_W_4V); | 
 | 1807 |  | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1808 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
 | 1809 | 	kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZBITS_4V) ^ | 
 | 1810 | 		0xfffff80000000000; | 
 | 1811 | #else | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1812 | 	kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^ | 
 | 1813 | 		0xfffff80000000000; | 
| David S. Miller | d1acb42 | 2007-03-16 17:20:28 -0700 | [diff] [blame] | 1814 | #endif | 
| David S. Miller | 9cc3a1a | 2006-02-21 20:51:13 -0800 | [diff] [blame] | 1815 | 	kern_linear_pte_xor[1] |= (_PAGE_CP_4V | _PAGE_CV_4V | | 
 | 1816 | 				   _PAGE_P_4V | _PAGE_W_4V); | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1817 |  | 
 | 1818 | 	pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V | | 
 | 1819 | 		     __ACCESS_BITS_4V | _PAGE_E_4V); | 
 | 1820 |  | 
 | 1821 | 	_PAGE_SZBITS = _PAGE_SZBITS_4V; | 
 | 1822 | 	_PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V | | 
 | 1823 | 			     _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V | | 
 | 1824 | 			     _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V | | 
 | 1825 | 			     _PAGE_SZ64K_4V | _PAGE_SZ8K_4V); | 
 | 1826 |  | 
 | 1827 | 	page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | _PAGE_CACHE_4V; | 
 | 1828 | 	page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V | | 
 | 1829 | 		       __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V); | 
 | 1830 | 	page_copy   = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V | | 
 | 1831 | 		       __ACCESS_BITS_4V | _PAGE_EXEC_4V); | 
 | 1832 | 	page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V | | 
 | 1833 | 			 __ACCESS_BITS_4V | _PAGE_EXEC_4V); | 
 | 1834 |  | 
 | 1835 | 	page_exec_bit = _PAGE_EXEC_4V; | 
 | 1836 |  | 
 | 1837 | 	prot_init_common(page_none, page_shared, page_copy, page_readonly, | 
 | 1838 | 			 page_exec_bit); | 
 | 1839 | } | 
 | 1840 |  | 
 | 1841 | unsigned long pte_sz_bits(unsigned long sz) | 
 | 1842 | { | 
 | 1843 | 	if (tlb_type == hypervisor) { | 
 | 1844 | 		switch (sz) { | 
 | 1845 | 		case 8 * 1024: | 
 | 1846 | 		default: | 
 | 1847 | 			return _PAGE_SZ8K_4V; | 
 | 1848 | 		case 64 * 1024: | 
 | 1849 | 			return _PAGE_SZ64K_4V; | 
 | 1850 | 		case 512 * 1024: | 
 | 1851 | 			return _PAGE_SZ512K_4V; | 
 | 1852 | 		case 4 * 1024 * 1024: | 
 | 1853 | 			return _PAGE_SZ4MB_4V; | 
 | 1854 | 		}; | 
 | 1855 | 	} else { | 
 | 1856 | 		switch (sz) { | 
 | 1857 | 		case 8 * 1024: | 
 | 1858 | 		default: | 
 | 1859 | 			return _PAGE_SZ8K_4U; | 
 | 1860 | 		case 64 * 1024: | 
 | 1861 | 			return _PAGE_SZ64K_4U; | 
 | 1862 | 		case 512 * 1024: | 
 | 1863 | 			return _PAGE_SZ512K_4U; | 
 | 1864 | 		case 4 * 1024 * 1024: | 
 | 1865 | 			return _PAGE_SZ4MB_4U; | 
 | 1866 | 		}; | 
 | 1867 | 	} | 
 | 1868 | } | 
 | 1869 |  | 
 | 1870 | pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size) | 
 | 1871 | { | 
 | 1872 | 	pte_t pte; | 
| David S. Miller | cf62715 | 2006-02-12 21:10:07 -0800 | [diff] [blame] | 1873 |  | 
 | 1874 | 	pte_val(pte)  = page | pgprot_val(pgprot_noncached(prot)); | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1875 | 	pte_val(pte) |= (((unsigned long)space) << 32); | 
 | 1876 | 	pte_val(pte) |= pte_sz_bits(page_size); | 
| David S. Miller | cf62715 | 2006-02-12 21:10:07 -0800 | [diff] [blame] | 1877 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1878 | 	return pte; | 
 | 1879 | } | 
 | 1880 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1881 | static unsigned long kern_large_tte(unsigned long paddr) | 
 | 1882 | { | 
 | 1883 | 	unsigned long val; | 
 | 1884 |  | 
 | 1885 | 	val = (_PAGE_VALID | _PAGE_SZ4MB_4U | | 
 | 1886 | 	       _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U | | 
 | 1887 | 	       _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U); | 
 | 1888 | 	if (tlb_type == hypervisor) | 
 | 1889 | 		val = (_PAGE_VALID | _PAGE_SZ4MB_4V | | 
 | 1890 | 		       _PAGE_CP_4V | _PAGE_CV_4V | _PAGE_P_4V | | 
 | 1891 | 		       _PAGE_EXEC_4V | _PAGE_W_4V); | 
 | 1892 |  | 
 | 1893 | 	return val | paddr; | 
 | 1894 | } | 
 | 1895 |  | 
| David S. Miller | c4bce90 | 2006-02-11 21:57:54 -0800 | [diff] [blame] | 1896 | /* If not locked, zap it. */ | 
 | 1897 | void __flush_tlb_all(void) | 
 | 1898 | { | 
 | 1899 | 	unsigned long pstate; | 
 | 1900 | 	int i; | 
 | 1901 |  | 
 | 1902 | 	__asm__ __volatile__("flushw\n\t" | 
 | 1903 | 			     "rdpr	%%pstate, %0\n\t" | 
 | 1904 | 			     "wrpr	%0, %1, %%pstate" | 
 | 1905 | 			     : "=r" (pstate) | 
 | 1906 | 			     : "i" (PSTATE_IE)); | 
 | 1907 | 	if (tlb_type == spitfire) { | 
 | 1908 | 		for (i = 0; i < 64; i++) { | 
 | 1909 | 			/* Spitfire Errata #32 workaround */ | 
 | 1910 | 			/* NOTE: Always runs on spitfire, so no | 
 | 1911 | 			 *       cheetah+ page size encodings. | 
 | 1912 | 			 */ | 
 | 1913 | 			__asm__ __volatile__("stxa	%0, [%1] %2\n\t" | 
 | 1914 | 					     "flush	%%g6" | 
 | 1915 | 					     : /* No outputs */ | 
 | 1916 | 					     : "r" (0), | 
 | 1917 | 					     "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU)); | 
 | 1918 |  | 
 | 1919 | 			if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) { | 
 | 1920 | 				__asm__ __volatile__("stxa %%g0, [%0] %1\n\t" | 
 | 1921 | 						     "membar #Sync" | 
 | 1922 | 						     : /* no outputs */ | 
 | 1923 | 						     : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU)); | 
 | 1924 | 				spitfire_put_dtlb_data(i, 0x0UL); | 
 | 1925 | 			} | 
 | 1926 |  | 
 | 1927 | 			/* Spitfire Errata #32 workaround */ | 
 | 1928 | 			/* NOTE: Always runs on spitfire, so no | 
 | 1929 | 			 *       cheetah+ page size encodings. | 
 | 1930 | 			 */ | 
 | 1931 | 			__asm__ __volatile__("stxa	%0, [%1] %2\n\t" | 
 | 1932 | 					     "flush	%%g6" | 
 | 1933 | 					     : /* No outputs */ | 
 | 1934 | 					     : "r" (0), | 
 | 1935 | 					     "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU)); | 
 | 1936 |  | 
 | 1937 | 			if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) { | 
 | 1938 | 				__asm__ __volatile__("stxa %%g0, [%0] %1\n\t" | 
 | 1939 | 						     "membar #Sync" | 
 | 1940 | 						     : /* no outputs */ | 
 | 1941 | 						     : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU)); | 
 | 1942 | 				spitfire_put_itlb_data(i, 0x0UL); | 
 | 1943 | 			} | 
 | 1944 | 		} | 
 | 1945 | 	} else if (tlb_type == cheetah || tlb_type == cheetah_plus) { | 
 | 1946 | 		cheetah_flush_dtlb_all(); | 
 | 1947 | 		cheetah_flush_itlb_all(); | 
 | 1948 | 	} | 
 | 1949 | 	__asm__ __volatile__("wrpr	%0, 0, %%pstate" | 
 | 1950 | 			     : : "r" (pstate)); | 
 | 1951 | } | 
| David S. Miller | 88d7079 | 2006-03-18 19:16:23 -0800 | [diff] [blame] | 1952 |  | 
 | 1953 | #ifdef CONFIG_MEMORY_HOTPLUG | 
 | 1954 |  | 
 | 1955 | void online_page(struct page *page) | 
 | 1956 | { | 
 | 1957 | 	ClearPageReserved(page); | 
| Nick Piggin | fcab1e5 | 2006-03-23 07:48:16 +0100 | [diff] [blame] | 1958 | 	init_page_count(page); | 
 | 1959 | 	__free_page(page); | 
| David S. Miller | 88d7079 | 2006-03-18 19:16:23 -0800 | [diff] [blame] | 1960 | 	totalram_pages++; | 
 | 1961 | 	num_physpages++; | 
 | 1962 | } | 
 | 1963 |  | 
| David S. Miller | 88d7079 | 2006-03-18 19:16:23 -0800 | [diff] [blame] | 1964 | #endif /* CONFIG_MEMORY_HOTPLUG */ |