blob: b5869f00d2d18bbb8fbb9785a43a9fc150f9993a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $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
8#include <linux/config.h>
David S. Millerc4bce902006-02-11 21:57:54 -08009#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
11#include <linux/sched.h>
12#include <linux/string.h>
13#include <linux/init.h>
14#include <linux/bootmem.h>
15#include <linux/mm.h>
16#include <linux/hugetlb.h>
17#include <linux/slab.h>
18#include <linux/initrd.h>
19#include <linux/swap.h>
20#include <linux/pagemap.h>
21#include <linux/fs.h>
22#include <linux/seq_file.h>
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -070023#include <linux/kprobes.h>
David S. Miller1ac4f5e2005-09-21 21:49:32 -070024#include <linux/cache.h>
David S. Miller13edad72005-09-29 17:58:26 -070025#include <linux/sort.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/head.h>
28#include <asm/system.h>
29#include <asm/page.h>
30#include <asm/pgalloc.h>
31#include <asm/pgtable.h>
32#include <asm/oplib.h>
33#include <asm/iommu.h>
34#include <asm/io.h>
35#include <asm/uaccess.h>
36#include <asm/mmu_context.h>
37#include <asm/tlbflush.h>
38#include <asm/dma.h>
39#include <asm/starfire.h>
40#include <asm/tlb.h>
41#include <asm/spitfire.h>
42#include <asm/sections.h>
David S. Miller517af332006-02-01 15:55:21 -080043#include <asm/tsb.h>
David S. Miller481295f2006-02-07 21:51:08 -080044#include <asm/hypervisor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46extern void device_scan(void);
47
David S. Miller9cc3a1a2006-02-21 20:51:13 -080048#define MAX_PHYS_ADDRESS (1UL << 42UL)
49#define KPTE_BITMAP_CHUNK_SZ (256UL * 1024UL * 1024UL)
50#define KPTE_BITMAP_BYTES \
51 ((MAX_PHYS_ADDRESS / KPTE_BITMAP_CHUNK_SZ) / 8)
52
53unsigned long kern_linear_pte_xor[2] __read_mostly;
54
55/* A bitmap, one bit for every 256MB of physical memory. If the bit
56 * is clear, we should use a 4MB page (via kern_linear_pte_xor[0]) else
57 * if set we should use a 256MB page (via kern_linear_pte_xor[1]).
58 */
59unsigned long kpte_linear_bitmap[KPTE_BITMAP_BYTES / sizeof(unsigned long)];
60
David S. Miller13edad72005-09-29 17:58:26 -070061#define MAX_BANKS 32
David S. Miller10147572005-09-28 21:46:43 -070062
David S. Miller13edad72005-09-29 17:58:26 -070063static struct linux_prom64_registers pavail[MAX_BANKS] __initdata;
64static struct linux_prom64_registers pavail_rescan[MAX_BANKS] __initdata;
65static int pavail_ents __initdata;
66static int pavail_rescan_ents __initdata;
David S. Miller10147572005-09-28 21:46:43 -070067
David S. Miller13edad72005-09-29 17:58:26 -070068static int cmp_p64(const void *a, const void *b)
69{
70 const struct linux_prom64_registers *x = a, *y = b;
71
72 if (x->phys_addr > y->phys_addr)
73 return 1;
74 if (x->phys_addr < y->phys_addr)
75 return -1;
76 return 0;
77}
78
79static void __init read_obp_memory(const char *property,
80 struct linux_prom64_registers *regs,
81 int *num_ents)
82{
83 int node = prom_finddevice("/memory");
84 int prop_size = prom_getproplen(node, property);
85 int ents, ret, i;
86
87 ents = prop_size / sizeof(struct linux_prom64_registers);
88 if (ents > MAX_BANKS) {
89 prom_printf("The machine has more %s property entries than "
90 "this kernel can support (%d).\n",
91 property, MAX_BANKS);
92 prom_halt();
93 }
94
95 ret = prom_getproperty(node, property, (char *) regs, prop_size);
96 if (ret == -1) {
97 prom_printf("Couldn't get %s property from /memory.\n");
98 prom_halt();
99 }
100
101 *num_ents = ents;
102
103 /* Sanitize what we got from the firmware, by page aligning
104 * everything.
105 */
106 for (i = 0; i < ents; i++) {
107 unsigned long base, size;
108
109 base = regs[i].phys_addr;
110 size = regs[i].reg_size;
111
112 size &= PAGE_MASK;
113 if (base & ~PAGE_MASK) {
114 unsigned long new_base = PAGE_ALIGN(base);
115
116 size -= new_base - base;
117 if ((long) size < 0L)
118 size = 0UL;
119 base = new_base;
120 }
121 regs[i].phys_addr = base;
122 regs[i].reg_size = size;
123 }
David S. Millerc9c10832005-10-12 12:22:46 -0700124 sort(regs, ents, sizeof(struct linux_prom64_registers),
David S. Miller13edad72005-09-29 17:58:26 -0700125 cmp_p64, NULL);
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
David S. Miller2bdb3cb2005-09-22 01:08:57 -0700128unsigned long *sparc64_valid_addr_bitmap __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* Ugly, but necessary... -DaveM */
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700131unsigned long phys_base __read_mostly;
132unsigned long kern_base __read_mostly;
133unsigned long kern_size __read_mostly;
134unsigned long pfn_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/* get_new_mmu_context() uses "cache + 1". */
137DEFINE_SPINLOCK(ctx_alloc_lock);
138unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
139#define CTX_BMAP_SLOTS (1UL << (CTX_NR_BITS - 6))
140unsigned long mmu_context_bmap[CTX_BMAP_SLOTS];
141
142/* References to special section boundaries */
143extern char _start[], _end[];
144
145/* Initial ramdisk setup */
146extern unsigned long sparc_ramdisk_image64;
147extern unsigned int sparc_ramdisk_image;
148extern unsigned int sparc_ramdisk_size;
149
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700150struct page *mem_map_zero __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
David S. Miller0835ae02005-10-04 15:23:20 -0700152unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly;
153
154unsigned long sparc64_kern_pri_context __read_mostly;
155unsigned long sparc64_kern_pri_nuc_bits __read_mostly;
156unsigned long sparc64_kern_sec_context __read_mostly;
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158int bigkernel = 0;
159
David S. Miller3c936462006-01-31 18:30:27 -0800160kmem_cache_t *pgtable_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
David S. Miller3c936462006-01-31 18:30:27 -0800162static void zero_ctor(void *addr, kmem_cache_t *cache, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
David S. Miller3c936462006-01-31 18:30:27 -0800164 clear_page(addr);
165}
166
167void pgtable_cache_init(void)
168{
169 pgtable_cache = kmem_cache_create("pgtable_cache",
170 PAGE_SIZE, PAGE_SIZE,
171 SLAB_HWCACHE_ALIGN |
172 SLAB_MUST_HWCACHE_ALIGN,
173 zero_ctor,
174 NULL);
175 if (!pgtable_cache) {
176 prom_printf("pgtable_cache_init(): Could not create!\n");
177 prom_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181#ifdef CONFIG_DEBUG_DCFLUSH
182atomic_t dcpage_flushes = ATOMIC_INIT(0);
183#ifdef CONFIG_SMP
184atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
185#endif
186#endif
187
188__inline__ void flush_dcache_page_impl(struct page *page)
189{
190#ifdef CONFIG_DEBUG_DCFLUSH
191 atomic_inc(&dcpage_flushes);
192#endif
193
194#ifdef DCACHE_ALIASING_POSSIBLE
195 __flush_dcache_page(page_address(page),
196 ((tlb_type == spitfire) &&
197 page_mapping(page) != NULL));
198#else
199 if (page_mapping(page) != NULL &&
200 tlb_type == spitfire)
201 __flush_icache_page(__pa(page_address(page)));
202#endif
203}
204
205#define PG_dcache_dirty PG_arch_1
David S. Miller48b0e542005-07-27 16:08:44 -0700206#define PG_dcache_cpu_shift 24
207#define PG_dcache_cpu_mask (256 - 1)
208
209#if NR_CPUS > 256
210#error D-cache dirty tracking and thread_info->cpu need fixing for > 256 cpus
211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213#define dcache_dirty_cpu(page) \
David S. Miller48b0e542005-07-27 16:08:44 -0700214 (((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216static __inline__ void set_dcache_dirty(struct page *page, int this_cpu)
217{
218 unsigned long mask = this_cpu;
David S. Miller48b0e542005-07-27 16:08:44 -0700219 unsigned long non_cpu_bits;
220
221 non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift);
222 mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty);
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 __asm__ __volatile__("1:\n\t"
225 "ldx [%2], %%g7\n\t"
226 "and %%g7, %1, %%g1\n\t"
227 "or %%g1, %0, %%g1\n\t"
228 "casx [%2], %%g7, %%g1\n\t"
229 "cmp %%g7, %%g1\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700230 "membar #StoreLoad | #StoreStore\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700232 " nop"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 : /* no outputs */
234 : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
235 : "g1", "g7");
236}
237
238static __inline__ void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
239{
240 unsigned long mask = (1UL << PG_dcache_dirty);
241
242 __asm__ __volatile__("! test_and_clear_dcache_dirty\n"
243 "1:\n\t"
244 "ldx [%2], %%g7\n\t"
David S. Miller48b0e542005-07-27 16:08:44 -0700245 "srlx %%g7, %4, %%g1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 "and %%g1, %3, %%g1\n\t"
247 "cmp %%g1, %0\n\t"
248 "bne,pn %%icc, 2f\n\t"
249 " andn %%g7, %1, %%g1\n\t"
250 "casx [%2], %%g7, %%g1\n\t"
251 "cmp %%g7, %%g1\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700252 "membar #StoreLoad | #StoreStore\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700254 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 "2:"
256 : /* no outputs */
257 : "r" (cpu), "r" (mask), "r" (&page->flags),
David S. Miller48b0e542005-07-27 16:08:44 -0700258 "i" (PG_dcache_cpu_mask),
259 "i" (PG_dcache_cpu_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 : "g1", "g7");
261}
262
David S. Miller517af332006-02-01 15:55:21 -0800263static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte)
264{
265 unsigned long tsb_addr = (unsigned long) ent;
266
David S. Miller3b3ab2e2006-02-17 09:54:42 -0800267 if (tlb_type == cheetah_plus || tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -0800268 tsb_addr = __pa(tsb_addr);
269
270 __tsb_insert(tsb_addr, tag, pte);
271}
272
David S. Millerc4bce902006-02-11 21:57:54 -0800273unsigned long _PAGE_ALL_SZ_BITS __read_mostly;
274unsigned long _PAGE_SZBITS __read_mostly;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
277{
David S. Millerbd407912006-01-31 18:31:38 -0800278 struct mm_struct *mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct page *page;
280 unsigned long pfn;
281 unsigned long pg_flags;
282
283 pfn = pte_pfn(pte);
284 if (pfn_valid(pfn) &&
285 (page = pfn_to_page(pfn), page_mapping(page)) &&
286 ((pg_flags = page->flags) & (1UL << PG_dcache_dirty))) {
David S. Miller48b0e542005-07-27 16:08:44 -0700287 int cpu = ((pg_flags >> PG_dcache_cpu_shift) &
288 PG_dcache_cpu_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int this_cpu = get_cpu();
290
291 /* This is just to optimize away some function calls
292 * in the SMP case.
293 */
294 if (cpu == this_cpu)
295 flush_dcache_page_impl(page);
296 else
297 smp_flush_dcache_page_impl(page, cpu);
298
299 clear_dcache_dirty_cpu(page, cpu);
300
301 put_cpu();
302 }
David S. Millerbd407912006-01-31 18:31:38 -0800303
304 mm = vma->vm_mm;
David S. Millerb70c0fa2006-01-31 18:32:04 -0800305 if ((pte_val(pte) & _PAGE_ALL_SZ_BITS) == _PAGE_SZBITS) {
306 struct tsb *tsb;
307 unsigned long tag;
308
309 tsb = &mm->context.tsb[(address >> PAGE_SHIFT) &
310 (mm->context.tsb_nentries - 1UL)];
David S. Miller8b234272006-02-17 18:01:02 -0800311 tag = (address >> 22UL);
David S. Millerb70c0fa2006-01-31 18:32:04 -0800312 tsb_insert(tsb, tag, pte_val(pte));
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316void flush_dcache_page(struct page *page)
317{
David S. Millera9546f52005-04-17 18:03:09 -0700318 struct address_space *mapping;
319 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
David S. Millera9546f52005-04-17 18:03:09 -0700321 /* Do not bother with the expensive D-cache flush if it
322 * is merely the zero page. The 'bigcore' testcase in GDB
323 * causes this case to run millions of times.
324 */
325 if (page == ZERO_PAGE(0))
326 return;
327
328 this_cpu = get_cpu();
329
330 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (mapping && !mapping_mapped(mapping)) {
David S. Millera9546f52005-04-17 18:03:09 -0700332 int dirty = test_bit(PG_dcache_dirty, &page->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (dirty) {
David S. Millera9546f52005-04-17 18:03:09 -0700334 int dirty_cpu = dcache_dirty_cpu(page);
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (dirty_cpu == this_cpu)
337 goto out;
338 smp_flush_dcache_page_impl(page, dirty_cpu);
339 }
340 set_dcache_dirty(page, this_cpu);
341 } else {
342 /* We could delay the flush for the !page_mapping
343 * case too. But that case is for exec env/arg
344 * pages and those are %99 certainly going to get
345 * faulted into the tlb (and thus flushed) anyways.
346 */
347 flush_dcache_page_impl(page);
348 }
349
350out:
351 put_cpu();
352}
353
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700354void __kprobes flush_icache_range(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
David S. Millera43fe0e2006-02-04 03:10:53 -0800356 /* Cheetah and Hypervisor platform cpus have coherent I-cache. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (tlb_type == spitfire) {
358 unsigned long kaddr;
359
360 for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE)
361 __flush_icache_page(__get_phys(kaddr));
362 }
363}
364
365unsigned long page_to_pfn(struct page *page)
366{
367 return (unsigned long) ((page - mem_map) + pfn_base);
368}
369
370struct page *pfn_to_page(unsigned long pfn)
371{
372 return (mem_map + (pfn - pfn_base));
373}
374
375void show_mem(void)
376{
377 printk("Mem-info:\n");
378 show_free_areas();
379 printk("Free swap: %6ldkB\n",
380 nr_swap_pages << (PAGE_SHIFT-10));
381 printk("%ld pages of RAM\n", num_physpages);
382 printk("%d free pages\n", nr_free_pages());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385void mmu_info(struct seq_file *m)
386{
387 if (tlb_type == cheetah)
388 seq_printf(m, "MMU Type\t: Cheetah\n");
389 else if (tlb_type == cheetah_plus)
390 seq_printf(m, "MMU Type\t: Cheetah+\n");
391 else if (tlb_type == spitfire)
392 seq_printf(m, "MMU Type\t: Spitfire\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800393 else if (tlb_type == hypervisor)
394 seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 else
396 seq_printf(m, "MMU Type\t: ???\n");
397
398#ifdef CONFIG_DEBUG_DCFLUSH
399 seq_printf(m, "DCPageFlushes\t: %d\n",
400 atomic_read(&dcpage_flushes));
401#ifdef CONFIG_SMP
402 seq_printf(m, "DCPageFlushesXC\t: %d\n",
403 atomic_read(&dcpage_flushes_xcall));
404#endif /* CONFIG_SMP */
405#endif /* CONFIG_DEBUG_DCFLUSH */
406}
407
408struct linux_prom_translation {
409 unsigned long virt;
410 unsigned long size;
411 unsigned long data;
412};
David S. Millerc9c10832005-10-12 12:22:46 -0700413
414/* Exported for kernel TLB miss handling in ktlb.S */
415struct linux_prom_translation prom_trans[512] __read_mostly;
416unsigned int prom_trans_ents __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/* Exported for SMP bootup purposes. */
419unsigned long kern_locked_tte_data;
420
David S. Miller405599b2005-09-22 00:12:35 -0700421/* The obp translations are saved based on 8k pagesize, since obp can
422 * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS ->
David S. Miller74bf4312006-01-31 18:29:18 -0800423 * HI_OBP_ADDRESS range are handled in ktlb.S.
David S. Miller405599b2005-09-22 00:12:35 -0700424 */
David S. Miller5085b4a2005-09-22 00:45:41 -0700425static inline int in_obp_range(unsigned long vaddr)
426{
427 return (vaddr >= LOW_OBP_ADDRESS &&
428 vaddr < HI_OBP_ADDRESS);
429}
430
David S. Millerc9c10832005-10-12 12:22:46 -0700431static int cmp_ptrans(const void *a, const void *b)
David S. Miller405599b2005-09-22 00:12:35 -0700432{
David S. Millerc9c10832005-10-12 12:22:46 -0700433 const struct linux_prom_translation *x = a, *y = b;
David S. Miller405599b2005-09-22 00:12:35 -0700434
David S. Millerc9c10832005-10-12 12:22:46 -0700435 if (x->virt > y->virt)
436 return 1;
437 if (x->virt < y->virt)
438 return -1;
439 return 0;
David S. Miller405599b2005-09-22 00:12:35 -0700440}
441
David S. Millerc9c10832005-10-12 12:22:46 -0700442/* Read OBP translations property into 'prom_trans[]'. */
David S. Miller9ad98c52005-10-05 15:12:00 -0700443static void __init read_obp_translations(void)
David S. Miller405599b2005-09-22 00:12:35 -0700444{
David S. Millerc9c10832005-10-12 12:22:46 -0700445 int n, node, ents, first, last, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 node = prom_finddevice("/virtual-memory");
448 n = prom_getproplen(node, "translations");
David S. Miller405599b2005-09-22 00:12:35 -0700449 if (unlikely(n == 0 || n == -1)) {
David S. Millerb206fc42005-09-21 22:31:13 -0700450 prom_printf("prom_mappings: Couldn't get size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 prom_halt();
452 }
David S. Miller405599b2005-09-22 00:12:35 -0700453 if (unlikely(n > sizeof(prom_trans))) {
454 prom_printf("prom_mappings: Size %Zd is too big.\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 prom_halt();
456 }
David S. Miller405599b2005-09-22 00:12:35 -0700457
David S. Millerb206fc42005-09-21 22:31:13 -0700458 if ((n = prom_getproperty(node, "translations",
David S. Miller405599b2005-09-22 00:12:35 -0700459 (char *)&prom_trans[0],
460 sizeof(prom_trans))) == -1) {
David S. Millerb206fc42005-09-21 22:31:13 -0700461 prom_printf("prom_mappings: Couldn't get property.\n");
462 prom_halt();
463 }
David S. Miller9ad98c52005-10-05 15:12:00 -0700464
David S. Millerb206fc42005-09-21 22:31:13 -0700465 n = n / sizeof(struct linux_prom_translation);
David S. Miller9ad98c52005-10-05 15:12:00 -0700466
David S. Millerc9c10832005-10-12 12:22:46 -0700467 ents = n;
468
469 sort(prom_trans, ents, sizeof(struct linux_prom_translation),
470 cmp_ptrans, NULL);
471
472 /* Now kick out all the non-OBP entries. */
473 for (i = 0; i < ents; i++) {
474 if (in_obp_range(prom_trans[i].virt))
475 break;
476 }
477 first = i;
478 for (; i < ents; i++) {
479 if (!in_obp_range(prom_trans[i].virt))
480 break;
481 }
482 last = i;
483
484 for (i = 0; i < (last - first); i++) {
485 struct linux_prom_translation *src = &prom_trans[i + first];
486 struct linux_prom_translation *dest = &prom_trans[i];
487
488 *dest = *src;
489 }
490 for (; i < ents; i++) {
491 struct linux_prom_translation *dest = &prom_trans[i];
492 dest->virt = dest->size = dest->data = 0x0UL;
493 }
494
495 prom_trans_ents = last - first;
496
497 if (tlb_type == spitfire) {
498 /* Clear diag TTE bits. */
499 for (i = 0; i < prom_trans_ents; i++)
500 prom_trans[i].data &= ~0x0003fe0000000000UL;
501 }
David S. Miller405599b2005-09-22 00:12:35 -0700502}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
David S. Millerd82ace72006-02-09 02:52:44 -0800504static void __init hypervisor_tlb_lock(unsigned long vaddr,
505 unsigned long pte,
506 unsigned long mmu)
507{
David S. Miller164c2202006-02-09 22:57:21 -0800508 register unsigned long func asm("%o5");
509 register unsigned long arg0 asm("%o0");
510 register unsigned long arg1 asm("%o1");
511 register unsigned long arg2 asm("%o2");
512 register unsigned long arg3 asm("%o3");
David S. Millerd82ace72006-02-09 02:52:44 -0800513
514 func = HV_FAST_MMU_MAP_PERM_ADDR;
515 arg0 = vaddr;
516 arg1 = 0;
517 arg2 = pte;
518 arg3 = mmu;
519 __asm__ __volatile__("ta 0x80"
520 : "=&r" (func), "=&r" (arg0),
521 "=&r" (arg1), "=&r" (arg2),
522 "=&r" (arg3)
523 : "0" (func), "1" (arg0), "2" (arg1),
524 "3" (arg2), "4" (arg3));
David S. Miller12e126a2006-02-17 14:40:30 -0800525 if (arg0 != 0) {
526 prom_printf("hypervisor_tlb_lock[%lx:%lx:%lx:%lx]: "
527 "errors with %lx\n", vaddr, 0, pte, mmu, arg0);
528 prom_halt();
529 }
David S. Millerd82ace72006-02-09 02:52:44 -0800530}
531
David S. Millerc4bce902006-02-11 21:57:54 -0800532static unsigned long kern_large_tte(unsigned long paddr);
533
David S. Miller898cf0e2005-09-23 11:59:44 -0700534static void __init remap_kernel(void)
David S. Miller405599b2005-09-22 00:12:35 -0700535{
536 unsigned long phys_page, tte_vaddr, tte_data;
David S. Miller405599b2005-09-22 00:12:35 -0700537 int tlb_ent = sparc64_highest_locked_tlbent();
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 tte_vaddr = (unsigned long) KERNBASE;
David S. Millerbff06d52005-09-22 20:11:33 -0700540 phys_page = (prom_boot_mapping_phys_low >> 22UL) << 22UL;
David S. Millerc4bce902006-02-11 21:57:54 -0800541 tte_data = kern_large_tte(phys_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 kern_locked_tte_data = tte_data;
544
David S. Millerd82ace72006-02-09 02:52:44 -0800545 /* Now lock us into the TLBs via Hypervisor or OBP. */
546 if (tlb_type == hypervisor) {
547 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
548 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
549 if (bigkernel) {
550 tte_vaddr += 0x400000;
551 tte_data += 0x400000;
552 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
553 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
554 }
555 } else {
556 prom_dtlb_load(tlb_ent, tte_data, tte_vaddr);
557 prom_itlb_load(tlb_ent, tte_data, tte_vaddr);
558 if (bigkernel) {
559 tlb_ent -= 1;
560 prom_dtlb_load(tlb_ent,
561 tte_data + 0x400000,
562 tte_vaddr + 0x400000);
563 prom_itlb_load(tlb_ent,
564 tte_data + 0x400000,
565 tte_vaddr + 0x400000);
566 }
567 sparc64_highest_unlocked_tlb_ent = tlb_ent - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
David S. Miller0835ae02005-10-04 15:23:20 -0700569 if (tlb_type == cheetah_plus) {
570 sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 |
571 CTX_CHEETAH_PLUS_NUC);
572 sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC;
573 sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0;
574 }
David S. Miller405599b2005-09-22 00:12:35 -0700575}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
David S. Miller405599b2005-09-22 00:12:35 -0700577
David S. Millerc9c10832005-10-12 12:22:46 -0700578static void __init inherit_prom_mappings(void)
David S. Miller9ad98c52005-10-05 15:12:00 -0700579{
580 read_obp_translations();
David S. Miller405599b2005-09-22 00:12:35 -0700581
582 /* Now fixup OBP's idea about where we really are mapped. */
583 prom_printf("Remapping the kernel... ");
584 remap_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 prom_printf("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588void prom_world(int enter)
589{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (!enter)
591 set_fs((mm_segment_t) { get_thread_current_ds() });
592
David S. Miller3487d1d2006-01-31 18:33:25 -0800593 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596#ifdef DCACHE_ALIASING_POSSIBLE
597void __flush_dcache_range(unsigned long start, unsigned long end)
598{
599 unsigned long va;
600
601 if (tlb_type == spitfire) {
602 int n = 0;
603
604 for (va = start; va < end; va += 32) {
605 spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
606 if (++n >= 512)
607 break;
608 }
David S. Millera43fe0e2006-02-04 03:10:53 -0800609 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 start = __pa(start);
611 end = __pa(end);
612 for (va = start; va < end; va += 32)
613 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
614 "membar #Sync"
615 : /* no outputs */
616 : "r" (va),
617 "i" (ASI_DCACHE_INVALIDATE));
618 }
619}
620#endif /* DCACHE_ALIASING_POSSIBLE */
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622/* Caller does TLB context flushing on local CPU if necessary.
623 * The caller also ensures that CTX_VALID(mm->context) is false.
624 *
625 * We must be careful about boundary cases so that we never
626 * let the user have CTX 0 (nucleus) or we ever use a CTX
627 * version of zero (and thus NO_CONTEXT would not be caught
628 * by version mis-match tests in mmu_context.h).
629 */
630void get_new_mmu_context(struct mm_struct *mm)
631{
632 unsigned long ctx, new_ctx;
633 unsigned long orig_pgsz_bits;
634
635
636 spin_lock(&ctx_alloc_lock);
637 orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK);
638 ctx = (tlb_context_cache + 1) & CTX_NR_MASK;
639 new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx);
640 if (new_ctx >= (1 << CTX_NR_BITS)) {
641 new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
642 if (new_ctx >= ctx) {
643 int i;
644 new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
645 CTX_FIRST_VERSION;
646 if (new_ctx == 1)
647 new_ctx = CTX_FIRST_VERSION;
648
649 /* Don't call memset, for 16 entries that's just
650 * plain silly...
651 */
652 mmu_context_bmap[0] = 3;
653 mmu_context_bmap[1] = 0;
654 mmu_context_bmap[2] = 0;
655 mmu_context_bmap[3] = 0;
656 for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
657 mmu_context_bmap[i + 0] = 0;
658 mmu_context_bmap[i + 1] = 0;
659 mmu_context_bmap[i + 2] = 0;
660 mmu_context_bmap[i + 3] = 0;
661 }
662 goto out;
663 }
664 }
665 mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
666 new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
667out:
668 tlb_context_cache = new_ctx;
669 mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits;
670 spin_unlock(&ctx_alloc_lock);
671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673void sparc_ultra_dump_itlb(void)
674{
675 int slot;
676
677 if (tlb_type == spitfire) {
678 printk ("Contents of itlb: ");
679 for (slot = 0; slot < 14; slot++) printk (" ");
680 printk ("%2x:%016lx,%016lx\n",
681 0,
682 spitfire_get_itlb_tag(0), spitfire_get_itlb_data(0));
683 for (slot = 1; slot < 64; slot+=3) {
684 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx %2x:%016lx,%016lx\n",
685 slot,
686 spitfire_get_itlb_tag(slot), spitfire_get_itlb_data(slot),
687 slot+1,
688 spitfire_get_itlb_tag(slot+1), spitfire_get_itlb_data(slot+1),
689 slot+2,
690 spitfire_get_itlb_tag(slot+2), spitfire_get_itlb_data(slot+2));
691 }
692 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
693 printk ("Contents of itlb0:\n");
694 for (slot = 0; slot < 16; slot+=2) {
695 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
696 slot,
697 cheetah_get_litlb_tag(slot), cheetah_get_litlb_data(slot),
698 slot+1,
699 cheetah_get_litlb_tag(slot+1), cheetah_get_litlb_data(slot+1));
700 }
701 printk ("Contents of itlb2:\n");
702 for (slot = 0; slot < 128; slot+=2) {
703 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
704 slot,
705 cheetah_get_itlb_tag(slot), cheetah_get_itlb_data(slot),
706 slot+1,
707 cheetah_get_itlb_tag(slot+1), cheetah_get_itlb_data(slot+1));
708 }
709 }
710}
711
712void sparc_ultra_dump_dtlb(void)
713{
714 int slot;
715
716 if (tlb_type == spitfire) {
717 printk ("Contents of dtlb: ");
718 for (slot = 0; slot < 14; slot++) printk (" ");
719 printk ("%2x:%016lx,%016lx\n", 0,
720 spitfire_get_dtlb_tag(0), spitfire_get_dtlb_data(0));
721 for (slot = 1; slot < 64; slot+=3) {
722 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx %2x:%016lx,%016lx\n",
723 slot,
724 spitfire_get_dtlb_tag(slot), spitfire_get_dtlb_data(slot),
725 slot+1,
726 spitfire_get_dtlb_tag(slot+1), spitfire_get_dtlb_data(slot+1),
727 slot+2,
728 spitfire_get_dtlb_tag(slot+2), spitfire_get_dtlb_data(slot+2));
729 }
730 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
731 printk ("Contents of dtlb0:\n");
732 for (slot = 0; slot < 16; slot+=2) {
733 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
734 slot,
735 cheetah_get_ldtlb_tag(slot), cheetah_get_ldtlb_data(slot),
736 slot+1,
737 cheetah_get_ldtlb_tag(slot+1), cheetah_get_ldtlb_data(slot+1));
738 }
739 printk ("Contents of dtlb2:\n");
740 for (slot = 0; slot < 512; slot+=2) {
741 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
742 slot,
743 cheetah_get_dtlb_tag(slot, 2), cheetah_get_dtlb_data(slot, 2),
744 slot+1,
745 cheetah_get_dtlb_tag(slot+1, 2), cheetah_get_dtlb_data(slot+1, 2));
746 }
747 if (tlb_type == cheetah_plus) {
748 printk ("Contents of dtlb3:\n");
749 for (slot = 0; slot < 512; slot+=2) {
750 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
751 slot,
752 cheetah_get_dtlb_tag(slot, 3), cheetah_get_dtlb_data(slot, 3),
753 slot+1,
754 cheetah_get_dtlb_tag(slot+1, 3), cheetah_get_dtlb_data(slot+1, 3));
755 }
756 }
757 }
758}
759
760extern unsigned long cmdline_memory_size;
761
762unsigned long __init bootmem_init(unsigned long *pages_avail)
763{
764 unsigned long bootmap_size, start_pfn, end_pfn;
765 unsigned long end_of_phys_memory = 0UL;
766 unsigned long bootmap_pfn, bytes_avail, size;
767 int i;
768
769#ifdef CONFIG_DEBUG_BOOTMEM
David S. Miller13edad72005-09-29 17:58:26 -0700770 prom_printf("bootmem_init: Scan pavail, ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771#endif
772
773 bytes_avail = 0UL;
David S. Miller13edad72005-09-29 17:58:26 -0700774 for (i = 0; i < pavail_ents; i++) {
775 end_of_phys_memory = pavail[i].phys_addr +
776 pavail[i].reg_size;
777 bytes_avail += pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (cmdline_memory_size) {
779 if (bytes_avail > cmdline_memory_size) {
780 unsigned long slack = bytes_avail - cmdline_memory_size;
781
782 bytes_avail -= slack;
783 end_of_phys_memory -= slack;
784
David S. Miller13edad72005-09-29 17:58:26 -0700785 pavail[i].reg_size -= slack;
786 if ((long)pavail[i].reg_size <= 0L) {
787 pavail[i].phys_addr = 0xdeadbeefUL;
788 pavail[i].reg_size = 0UL;
789 pavail_ents = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 } else {
David S. Miller13edad72005-09-29 17:58:26 -0700791 pavail[i+1].reg_size = 0Ul;
792 pavail[i+1].phys_addr = 0xdeadbeefUL;
793 pavail_ents = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795 break;
796 }
797 }
798 }
799
800 *pages_avail = bytes_avail >> PAGE_SHIFT;
801
802 /* Start with page aligned address of last symbol in kernel
803 * image. The kernel is hard mapped below PAGE_OFFSET in a
804 * 4MB locked TLB translation.
805 */
806 start_pfn = PAGE_ALIGN(kern_base + kern_size) >> PAGE_SHIFT;
807
808 bootmap_pfn = start_pfn;
809
810 end_pfn = end_of_phys_memory >> PAGE_SHIFT;
811
812#ifdef CONFIG_BLK_DEV_INITRD
813 /* Now have to check initial ramdisk, so that bootmap does not overwrite it */
814 if (sparc_ramdisk_image || sparc_ramdisk_image64) {
815 unsigned long ramdisk_image = sparc_ramdisk_image ?
816 sparc_ramdisk_image : sparc_ramdisk_image64;
817 if (ramdisk_image >= (unsigned long)_end - 2 * PAGE_SIZE)
818 ramdisk_image -= KERNBASE;
819 initrd_start = ramdisk_image + phys_base;
820 initrd_end = initrd_start + sparc_ramdisk_size;
821 if (initrd_end > end_of_phys_memory) {
822 printk(KERN_CRIT "initrd extends beyond end of memory "
823 "(0x%016lx > 0x%016lx)\ndisabling initrd\n",
824 initrd_end, end_of_phys_memory);
825 initrd_start = 0;
826 }
827 if (initrd_start) {
828 if (initrd_start >= (start_pfn << PAGE_SHIFT) &&
829 initrd_start < (start_pfn << PAGE_SHIFT) + 2 * PAGE_SIZE)
830 bootmap_pfn = PAGE_ALIGN (initrd_end) >> PAGE_SHIFT;
831 }
832 }
833#endif
834 /* Initialize the boot-time allocator. */
835 max_pfn = max_low_pfn = end_pfn;
836 min_low_pfn = pfn_base;
837
838#ifdef CONFIG_DEBUG_BOOTMEM
839 prom_printf("init_bootmem(min[%lx], bootmap[%lx], max[%lx])\n",
840 min_low_pfn, bootmap_pfn, max_low_pfn);
841#endif
842 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap_pfn, pfn_base, end_pfn);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /* Now register the available physical memory with the
845 * allocator.
846 */
David S. Miller13edad72005-09-29 17:58:26 -0700847 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848#ifdef CONFIG_DEBUG_BOOTMEM
David S. Miller13edad72005-09-29 17:58:26 -0700849 prom_printf("free_bootmem(pavail:%d): base[%lx] size[%lx]\n",
850 i, pavail[i].phys_addr, pavail[i].reg_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851#endif
David S. Miller13edad72005-09-29 17:58:26 -0700852 free_bootmem(pavail[i].phys_addr, pavail[i].reg_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
855#ifdef CONFIG_BLK_DEV_INITRD
856 if (initrd_start) {
857 size = initrd_end - initrd_start;
858
859 /* Resert the initrd image area. */
860#ifdef CONFIG_DEBUG_BOOTMEM
861 prom_printf("reserve_bootmem(initrd): base[%llx] size[%lx]\n",
862 initrd_start, initrd_end);
863#endif
864 reserve_bootmem(initrd_start, size);
865 *pages_avail -= PAGE_ALIGN(size) >> PAGE_SHIFT;
866
867 initrd_start += PAGE_OFFSET;
868 initrd_end += PAGE_OFFSET;
869 }
870#endif
871 /* Reserve the kernel text/data/bss. */
872#ifdef CONFIG_DEBUG_BOOTMEM
873 prom_printf("reserve_bootmem(kernel): base[%lx] size[%lx]\n", kern_base, kern_size);
874#endif
875 reserve_bootmem(kern_base, kern_size);
876 *pages_avail -= PAGE_ALIGN(kern_size) >> PAGE_SHIFT;
877
878 /* Reserve the bootmem map. We do not account for it
879 * in pages_avail because we will release that memory
880 * in free_all_bootmem.
881 */
882 size = bootmap_size;
883#ifdef CONFIG_DEBUG_BOOTMEM
884 prom_printf("reserve_bootmem(bootmap): base[%lx] size[%lx]\n",
885 (bootmap_pfn << PAGE_SHIFT), size);
886#endif
887 reserve_bootmem((bootmap_pfn << PAGE_SHIFT), size);
888 *pages_avail -= PAGE_ALIGN(size) >> PAGE_SHIFT;
889
890 return end_pfn;
891}
892
David S. Miller9cc3a1a2006-02-21 20:51:13 -0800893static struct linux_prom64_registers pall[MAX_BANKS] __initdata;
894static int pall_ents __initdata;
895
David S. Miller56425302005-09-25 16:46:57 -0700896#ifdef CONFIG_DEBUG_PAGEALLOC
897static unsigned long kernel_map_range(unsigned long pstart, unsigned long pend, pgprot_t prot)
898{
899 unsigned long vstart = PAGE_OFFSET + pstart;
900 unsigned long vend = PAGE_OFFSET + pend;
901 unsigned long alloc_bytes = 0UL;
902
903 if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) {
David S. Miller13edad72005-09-29 17:58:26 -0700904 prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n",
David S. Miller56425302005-09-25 16:46:57 -0700905 vstart, vend);
906 prom_halt();
907 }
908
909 while (vstart < vend) {
910 unsigned long this_end, paddr = __pa(vstart);
911 pgd_t *pgd = pgd_offset_k(vstart);
912 pud_t *pud;
913 pmd_t *pmd;
914 pte_t *pte;
915
916 pud = pud_offset(pgd, vstart);
917 if (pud_none(*pud)) {
918 pmd_t *new;
919
920 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
921 alloc_bytes += PAGE_SIZE;
922 pud_populate(&init_mm, pud, new);
923 }
924
925 pmd = pmd_offset(pud, vstart);
926 if (!pmd_present(*pmd)) {
927 pte_t *new;
928
929 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
930 alloc_bytes += PAGE_SIZE;
931 pmd_populate_kernel(&init_mm, pmd, new);
932 }
933
934 pte = pte_offset_kernel(pmd, vstart);
935 this_end = (vstart + PMD_SIZE) & PMD_MASK;
936 if (this_end > vend)
937 this_end = vend;
938
939 while (vstart < this_end) {
940 pte_val(*pte) = (paddr | pgprot_val(prot));
941
942 vstart += PAGE_SIZE;
943 paddr += PAGE_SIZE;
944 pte++;
945 }
946 }
947
948 return alloc_bytes;
949}
950
David S. Miller56425302005-09-25 16:46:57 -0700951extern unsigned int kvmap_linear_patch[1];
David S. Miller9cc3a1a2006-02-21 20:51:13 -0800952#endif /* CONFIG_DEBUG_PAGEALLOC */
953
954static void __init mark_kpte_bitmap(unsigned long start, unsigned long end)
955{
956 const unsigned long shift_256MB = 28;
957 const unsigned long mask_256MB = ((1UL << shift_256MB) - 1UL);
958 const unsigned long size_256MB = (1UL << shift_256MB);
959
960 while (start < end) {
961 long remains;
962
963 if (start & mask_256MB) {
964 start = (start + size_256MB) & ~mask_256MB;
965 continue;
966 }
967
968 remains = end - start;
969 while (remains >= size_256MB) {
970 unsigned long index = start >> shift_256MB;
971
972 __set_bit(index, kpte_linear_bitmap);
973
974 start += size_256MB;
975 remains -= size_256MB;
976 }
977 }
978}
David S. Miller56425302005-09-25 16:46:57 -0700979
980static void __init kernel_physical_mapping_init(void)
981{
David S. Miller9cc3a1a2006-02-21 20:51:13 -0800982 unsigned long i;
983#ifdef CONFIG_DEBUG_PAGEALLOC
984 unsigned long mem_alloced = 0UL;
985#endif
David S. Miller56425302005-09-25 16:46:57 -0700986
David S. Miller13edad72005-09-29 17:58:26 -0700987 read_obp_memory("reg", &pall[0], &pall_ents);
988
989 for (i = 0; i < pall_ents; i++) {
David S. Miller56425302005-09-25 16:46:57 -0700990 unsigned long phys_start, phys_end;
991
David S. Miller13edad72005-09-29 17:58:26 -0700992 phys_start = pall[i].phys_addr;
993 phys_end = phys_start + pall[i].reg_size;
David S. Miller9cc3a1a2006-02-21 20:51:13 -0800994
995 mark_kpte_bitmap(phys_start, phys_end);
996
997#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -0700998 mem_alloced += kernel_map_range(phys_start, phys_end,
999 PAGE_KERNEL);
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001000#endif
David S. Miller56425302005-09-25 16:46:57 -07001001 }
1002
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001003#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001004 printk("Allocated %ld bytes for kernel page tables.\n",
1005 mem_alloced);
1006
1007 kvmap_linear_patch[0] = 0x01000000; /* nop */
1008 flushi(&kvmap_linear_patch[0]);
1009
1010 __flush_tlb_all();
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001011#endif
David S. Miller56425302005-09-25 16:46:57 -07001012}
1013
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001014#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001015void kernel_map_pages(struct page *page, int numpages, int enable)
1016{
1017 unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT;
1018 unsigned long phys_end = phys_start + (numpages * PAGE_SIZE);
1019
1020 kernel_map_range(phys_start, phys_end,
1021 (enable ? PAGE_KERNEL : __pgprot(0)));
1022
David S. Miller74bf4312006-01-31 18:29:18 -08001023 flush_tsb_kernel_range(PAGE_OFFSET + phys_start,
1024 PAGE_OFFSET + phys_end);
1025
David S. Miller56425302005-09-25 16:46:57 -07001026 /* we should perform an IPI and flush all tlbs,
1027 * but that can deadlock->flush only current cpu.
1028 */
1029 __flush_tlb_kernel_range(PAGE_OFFSET + phys_start,
1030 PAGE_OFFSET + phys_end);
1031}
1032#endif
1033
David S. Miller10147572005-09-28 21:46:43 -07001034unsigned long __init find_ecache_flush_span(unsigned long size)
1035{
David S. Miller13edad72005-09-29 17:58:26 -07001036 int i;
David S. Miller10147572005-09-28 21:46:43 -07001037
David S. Miller13edad72005-09-29 17:58:26 -07001038 for (i = 0; i < pavail_ents; i++) {
1039 if (pavail[i].reg_size >= size)
1040 return pavail[i].phys_addr;
David S. Miller10147572005-09-28 21:46:43 -07001041 }
1042
1043 return ~0UL;
1044}
1045
David S. Miller517af332006-02-01 15:55:21 -08001046static void __init tsb_phys_patch(void)
1047{
David S. Millerd257d5d2006-02-06 23:44:37 -08001048 struct tsb_ldquad_phys_patch_entry *pquad;
David S. Miller517af332006-02-01 15:55:21 -08001049 struct tsb_phys_patch_entry *p;
1050
David S. Millerd257d5d2006-02-06 23:44:37 -08001051 pquad = &__tsb_ldquad_phys_patch;
1052 while (pquad < &__tsb_ldquad_phys_patch_end) {
1053 unsigned long addr = pquad->addr;
1054
1055 if (tlb_type == hypervisor)
1056 *(unsigned int *) addr = pquad->sun4v_insn;
1057 else
1058 *(unsigned int *) addr = pquad->sun4u_insn;
1059 wmb();
1060 __asm__ __volatile__("flush %0"
1061 : /* no outputs */
1062 : "r" (addr));
1063
1064 pquad++;
1065 }
1066
David S. Miller517af332006-02-01 15:55:21 -08001067 p = &__tsb_phys_patch;
1068 while (p < &__tsb_phys_patch_end) {
1069 unsigned long addr = p->addr;
1070
1071 *(unsigned int *) addr = p->insn;
1072 wmb();
1073 __asm__ __volatile__("flush %0"
1074 : /* no outputs */
1075 : "r" (addr));
1076
1077 p++;
1078 }
1079}
1080
David S. Miller490384e2006-02-11 14:41:18 -08001081/* Don't mark as init, we give this to the Hypervisor. */
1082static struct hv_tsb_descr ktsb_descr[2];
1083extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
1084
1085static void __init sun4v_ktsb_init(void)
1086{
1087 unsigned long ktsb_pa;
1088
1089 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1090
1091 switch (PAGE_SIZE) {
1092 case 8 * 1024:
1093 default:
1094 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K;
1095 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K;
1096 break;
1097
1098 case 64 * 1024:
1099 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K;
1100 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K;
1101 break;
1102
1103 case 512 * 1024:
1104 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K;
1105 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K;
1106 break;
1107
1108 case 4 * 1024 * 1024:
1109 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB;
1110 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB;
1111 break;
1112 };
1113
David S. Miller3f19a842006-02-17 12:03:20 -08001114 ktsb_descr[0].assoc = 1;
David S. Miller490384e2006-02-11 14:41:18 -08001115 ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
1116 ktsb_descr[0].ctx_idx = 0;
1117 ktsb_descr[0].tsb_base = ktsb_pa;
1118 ktsb_descr[0].resv = 0;
1119
1120 /* XXX When we have a kernel large page size TSB, describe
1121 * XXX it in ktsb_descr[1] here.
1122 */
1123}
1124
1125void __cpuinit sun4v_ktsb_register(void)
1126{
1127 register unsigned long func asm("%o5");
1128 register unsigned long arg0 asm("%o0");
1129 register unsigned long arg1 asm("%o1");
1130 unsigned long pa;
1131
1132 pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE);
1133
1134 func = HV_FAST_MMU_TSB_CTX0;
1135 /* XXX set arg0 to 2 when we use ktsb_descr[1], see above XXX */
1136 arg0 = 1;
1137 arg1 = pa;
1138 __asm__ __volatile__("ta %6"
1139 : "=&r" (func), "=&r" (arg0), "=&r" (arg1)
1140 : "0" (func), "1" (arg0), "2" (arg1),
1141 "i" (HV_FAST_TRAP));
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/* paging_init() sets up the page tables */
1145
1146extern void cheetah_ecache_flush_init(void);
David S. Millerd257d5d2006-02-06 23:44:37 -08001147extern void sun4v_patch_tlb_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149static unsigned long last_valid_pfn;
David S. Miller56425302005-09-25 16:46:57 -07001150pgd_t swapper_pg_dir[2048];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
David S. Millerc4bce902006-02-11 21:57:54 -08001152static void sun4u_pgprot_init(void);
1153static void sun4v_pgprot_init(void);
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155void __init paging_init(void)
1156{
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001157 unsigned long end_pfn, pages_avail, shift;
David S. Miller0836a0e2005-09-28 21:38:08 -07001158 unsigned long real_end, i;
1159
David S. Miller481295f2006-02-07 21:51:08 -08001160 kern_base = (prom_boot_mapping_phys_low >> 22UL) << 22UL;
1161 kern_size = (unsigned long)&_end - (unsigned long)KERNBASE;
1162
David S. Miller8b234272006-02-17 18:01:02 -08001163 memset(swapper_tsb, 0x40, sizeof(swapper_tsb));
1164
David S. Millerc4bce902006-02-11 21:57:54 -08001165 if (tlb_type == hypervisor)
1166 sun4v_pgprot_init();
1167 else
1168 sun4u_pgprot_init();
1169
David S. Millerd257d5d2006-02-06 23:44:37 -08001170 if (tlb_type == cheetah_plus ||
1171 tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -08001172 tsb_phys_patch();
1173
David S. Miller490384e2006-02-11 14:41:18 -08001174 if (tlb_type == hypervisor) {
David S. Millerd257d5d2006-02-06 23:44:37 -08001175 sun4v_patch_tlb_handlers();
David S. Miller490384e2006-02-11 14:41:18 -08001176 sun4v_ktsb_init();
1177 }
David S. Millerd257d5d2006-02-06 23:44:37 -08001178
David S. Miller13edad72005-09-29 17:58:26 -07001179 /* Find available physical memory... */
1180 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller0836a0e2005-09-28 21:38:08 -07001181
1182 phys_base = 0xffffffffffffffffUL;
David S. Miller13edad72005-09-29 17:58:26 -07001183 for (i = 0; i < pavail_ents; i++)
1184 phys_base = min(phys_base, pavail[i].phys_addr);
David S. Miller0836a0e2005-09-28 21:38:08 -07001185
David S. Miller0836a0e2005-09-28 21:38:08 -07001186 pfn_base = phys_base >> PAGE_SHIFT;
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 set_bit(0, mmu_context_bmap);
1189
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001190 shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE);
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 real_end = (unsigned long)_end;
1193 if ((real_end > ((unsigned long)KERNBASE + 0x400000)))
1194 bigkernel = 1;
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001195 if ((real_end > ((unsigned long)KERNBASE + 0x800000))) {
1196 prom_printf("paging_init: Kernel > 8MB, too large.\n");
1197 prom_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001199
1200 /* Set kernel pgd to upper alias so physical page computations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 * work.
1202 */
1203 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
1204
David S. Miller56425302005-09-25 16:46:57 -07001205 memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 /* Now can init the kernel/bad page tables. */
1208 pud_set(pud_offset(&swapper_pg_dir[0], 0),
David S. Miller56425302005-09-25 16:46:57 -07001209 swapper_low_pmd_dir + (shift / sizeof(pgd_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
David S. Millerc9c10832005-10-12 12:22:46 -07001211 inherit_prom_mappings();
David S. Miller5085b4a2005-09-22 00:45:41 -07001212
David S. Millera8b900d2006-01-31 18:33:37 -08001213 /* Ok, we can use our TLB miss and window trap handlers safely. */
1214 setup_tba();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
David S. Millerc9c10832005-10-12 12:22:46 -07001216 __flush_tlb_all();
David S. Miller9ad98c52005-10-05 15:12:00 -07001217
David S. Miller490384e2006-02-11 14:41:18 -08001218 if (tlb_type == hypervisor)
1219 sun4v_ktsb_register();
1220
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001221 /* Setup bootmem... */
1222 pages_avail = 0;
1223 last_valid_pfn = end_pfn = bootmem_init(&pages_avail);
1224
David S. Miller56425302005-09-25 16:46:57 -07001225 kernel_physical_mapping_init();
David S. Miller56425302005-09-25 16:46:57 -07001226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 {
1228 unsigned long zones_size[MAX_NR_ZONES];
1229 unsigned long zholes_size[MAX_NR_ZONES];
1230 unsigned long npages;
1231 int znum;
1232
1233 for (znum = 0; znum < MAX_NR_ZONES; znum++)
1234 zones_size[znum] = zholes_size[znum] = 0;
1235
1236 npages = end_pfn - pfn_base;
1237 zones_size[ZONE_DMA] = npages;
1238 zholes_size[ZONE_DMA] = npages - pages_avail;
1239
1240 free_area_init_node(0, &contig_page_data, zones_size,
1241 phys_base >> PAGE_SHIFT, zholes_size);
1242 }
1243
1244 device_scan();
1245}
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247static void __init taint_real_pages(void)
1248{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 int i;
1250
David S. Miller13edad72005-09-29 17:58:26 -07001251 read_obp_memory("available", &pavail_rescan[0], &pavail_rescan_ents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
David S. Miller13edad72005-09-29 17:58:26 -07001253 /* Find changes discovered in the physmem available rescan and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 * reserve the lost portions in the bootmem maps.
1255 */
David S. Miller13edad72005-09-29 17:58:26 -07001256 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 unsigned long old_start, old_end;
1258
David S. Miller13edad72005-09-29 17:58:26 -07001259 old_start = pavail[i].phys_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 old_end = old_start +
David S. Miller13edad72005-09-29 17:58:26 -07001261 pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 while (old_start < old_end) {
1263 int n;
1264
David S. Miller13edad72005-09-29 17:58:26 -07001265 for (n = 0; pavail_rescan_ents; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 unsigned long new_start, new_end;
1267
David S. Miller13edad72005-09-29 17:58:26 -07001268 new_start = pavail_rescan[n].phys_addr;
1269 new_end = new_start +
1270 pavail_rescan[n].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 if (new_start <= old_start &&
1273 new_end >= (old_start + PAGE_SIZE)) {
David S. Miller13edad72005-09-29 17:58:26 -07001274 set_bit(old_start >> 22,
1275 sparc64_valid_addr_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 goto do_next_page;
1277 }
1278 }
1279 reserve_bootmem(old_start, PAGE_SIZE);
1280
1281 do_next_page:
1282 old_start += PAGE_SIZE;
1283 }
1284 }
1285}
1286
1287void __init mem_init(void)
1288{
1289 unsigned long codepages, datapages, initpages;
1290 unsigned long addr, last;
1291 int i;
1292
1293 i = last_valid_pfn >> ((22 - PAGE_SHIFT) + 6);
1294 i += 1;
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001295 sparc64_valid_addr_bitmap = (unsigned long *) alloc_bootmem(i << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (sparc64_valid_addr_bitmap == NULL) {
1297 prom_printf("mem_init: Cannot alloc valid_addr_bitmap.\n");
1298 prom_halt();
1299 }
1300 memset(sparc64_valid_addr_bitmap, 0, i << 3);
1301
1302 addr = PAGE_OFFSET + kern_base;
1303 last = PAGE_ALIGN(kern_size) + addr;
1304 while (addr < last) {
1305 set_bit(__pa(addr) >> 22, sparc64_valid_addr_bitmap);
1306 addr += PAGE_SIZE;
1307 }
1308
1309 taint_real_pages();
1310
1311 max_mapnr = last_valid_pfn - pfn_base;
1312 high_memory = __va(last_valid_pfn << PAGE_SHIFT);
1313
1314#ifdef CONFIG_DEBUG_BOOTMEM
1315 prom_printf("mem_init: Calling free_all_bootmem().\n");
1316#endif
1317 totalram_pages = num_physpages = free_all_bootmem() - 1;
1318
1319 /*
1320 * Set up the zero page, mark it reserved, so that page count
1321 * is not manipulated when freeing the page from user ptes.
1322 */
1323 mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0);
1324 if (mem_map_zero == NULL) {
1325 prom_printf("paging_init: Cannot alloc zero page.\n");
1326 prom_halt();
1327 }
1328 SetPageReserved(mem_map_zero);
1329
1330 codepages = (((unsigned long) _etext) - ((unsigned long) _start));
1331 codepages = PAGE_ALIGN(codepages) >> PAGE_SHIFT;
1332 datapages = (((unsigned long) _edata) - ((unsigned long) _etext));
1333 datapages = PAGE_ALIGN(datapages) >> PAGE_SHIFT;
1334 initpages = (((unsigned long) __init_end) - ((unsigned long) __init_begin));
1335 initpages = PAGE_ALIGN(initpages) >> PAGE_SHIFT;
1336
1337 printk("Memory: %uk available (%ldk kernel code, %ldk data, %ldk init) [%016lx,%016lx]\n",
1338 nr_free_pages() << (PAGE_SHIFT-10),
1339 codepages << (PAGE_SHIFT-10),
1340 datapages << (PAGE_SHIFT-10),
1341 initpages << (PAGE_SHIFT-10),
1342 PAGE_OFFSET, (last_valid_pfn << PAGE_SHIFT));
1343
1344 if (tlb_type == cheetah || tlb_type == cheetah_plus)
1345 cheetah_ecache_flush_init();
1346}
1347
David S. Miller898cf0e2005-09-23 11:59:44 -07001348void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 unsigned long addr, initend;
1351
1352 /*
1353 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
1354 */
1355 addr = PAGE_ALIGN((unsigned long)(__init_begin));
1356 initend = (unsigned long)(__init_end) & PAGE_MASK;
1357 for (; addr < initend; addr += PAGE_SIZE) {
1358 unsigned long page;
1359 struct page *p;
1360
1361 page = (addr +
1362 ((unsigned long) __va(kern_base)) -
1363 ((unsigned long) KERNBASE));
1364 memset((void *)addr, 0xcc, PAGE_SIZE);
1365 p = virt_to_page(page);
1366
1367 ClearPageReserved(p);
1368 set_page_count(p, 1);
1369 __free_page(p);
1370 num_physpages++;
1371 totalram_pages++;
1372 }
1373}
1374
1375#ifdef CONFIG_BLK_DEV_INITRD
1376void free_initrd_mem(unsigned long start, unsigned long end)
1377{
1378 if (start < end)
1379 printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
1380 for (; start < end; start += PAGE_SIZE) {
1381 struct page *p = virt_to_page(start);
1382
1383 ClearPageReserved(p);
1384 set_page_count(p, 1);
1385 __free_page(p);
1386 num_physpages++;
1387 totalram_pages++;
1388 }
1389}
1390#endif
David S. Millerc4bce902006-02-11 21:57:54 -08001391
David S. Millerc4bce902006-02-11 21:57:54 -08001392#define _PAGE_CACHE_4U (_PAGE_CP_4U | _PAGE_CV_4U)
1393#define _PAGE_CACHE_4V (_PAGE_CP_4V | _PAGE_CV_4V)
1394#define __DIRTY_BITS_4U (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U)
1395#define __DIRTY_BITS_4V (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V)
1396#define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R)
1397#define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R)
1398
1399pgprot_t PAGE_KERNEL __read_mostly;
1400EXPORT_SYMBOL(PAGE_KERNEL);
1401
1402pgprot_t PAGE_KERNEL_LOCKED __read_mostly;
1403pgprot_t PAGE_COPY __read_mostly;
David S. Miller0f159522006-02-18 12:43:16 -08001404
1405pgprot_t PAGE_SHARED __read_mostly;
1406EXPORT_SYMBOL(PAGE_SHARED);
1407
David S. Millerc4bce902006-02-11 21:57:54 -08001408pgprot_t PAGE_EXEC __read_mostly;
1409unsigned long pg_iobits __read_mostly;
1410
1411unsigned long _PAGE_IE __read_mostly;
1412unsigned long _PAGE_E __read_mostly;
1413unsigned long _PAGE_CACHE __read_mostly;
1414
1415static void prot_init_common(unsigned long page_none,
1416 unsigned long page_shared,
1417 unsigned long page_copy,
1418 unsigned long page_readonly,
1419 unsigned long page_exec_bit)
1420{
1421 PAGE_COPY = __pgprot(page_copy);
David S. Miller0f159522006-02-18 12:43:16 -08001422 PAGE_SHARED = __pgprot(page_shared);
David S. Millerc4bce902006-02-11 21:57:54 -08001423
1424 protection_map[0x0] = __pgprot(page_none);
1425 protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit);
1426 protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit);
1427 protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit);
1428 protection_map[0x4] = __pgprot(page_readonly);
1429 protection_map[0x5] = __pgprot(page_readonly);
1430 protection_map[0x6] = __pgprot(page_copy);
1431 protection_map[0x7] = __pgprot(page_copy);
1432 protection_map[0x8] = __pgprot(page_none);
1433 protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit);
1434 protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit);
1435 protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit);
1436 protection_map[0xc] = __pgprot(page_readonly);
1437 protection_map[0xd] = __pgprot(page_readonly);
1438 protection_map[0xe] = __pgprot(page_shared);
1439 protection_map[0xf] = __pgprot(page_shared);
1440}
1441
1442static void __init sun4u_pgprot_init(void)
1443{
1444 unsigned long page_none, page_shared, page_copy, page_readonly;
1445 unsigned long page_exec_bit;
1446
1447 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
1448 _PAGE_CACHE_4U | _PAGE_P_4U |
1449 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
1450 _PAGE_EXEC_4U);
1451 PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
1452 _PAGE_CACHE_4U | _PAGE_P_4U |
1453 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
1454 _PAGE_EXEC_4U | _PAGE_L_4U);
1455 PAGE_EXEC = __pgprot(_PAGE_EXEC_4U);
1456
1457 _PAGE_IE = _PAGE_IE_4U;
1458 _PAGE_E = _PAGE_E_4U;
1459 _PAGE_CACHE = _PAGE_CACHE_4U;
1460
1461 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
1462 __ACCESS_BITS_4U | _PAGE_E_4U);
1463
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001464 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
David S. Millerc4bce902006-02-11 21:57:54 -08001465 0xfffff80000000000;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001466 kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U |
1467 _PAGE_P_4U | _PAGE_W_4U);
1468
1469 /* XXX Should use 256MB on Panther. XXX */
1470 kern_linear_pte_xor[1] = kern_linear_pte_xor[0];
David S. Millerc4bce902006-02-11 21:57:54 -08001471
1472 _PAGE_SZBITS = _PAGE_SZBITS_4U;
1473 _PAGE_ALL_SZ_BITS = (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U |
1474 _PAGE_SZ64K_4U | _PAGE_SZ8K_4U |
1475 _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U);
1476
1477
1478 page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U;
1479 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1480 __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U);
1481 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1482 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
1483 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1484 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
1485
1486 page_exec_bit = _PAGE_EXEC_4U;
1487
1488 prot_init_common(page_none, page_shared, page_copy, page_readonly,
1489 page_exec_bit);
1490}
1491
1492static void __init sun4v_pgprot_init(void)
1493{
1494 unsigned long page_none, page_shared, page_copy, page_readonly;
1495 unsigned long page_exec_bit;
1496
1497 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
1498 _PAGE_CACHE_4V | _PAGE_P_4V |
1499 __ACCESS_BITS_4V | __DIRTY_BITS_4V |
1500 _PAGE_EXEC_4V);
1501 PAGE_KERNEL_LOCKED = PAGE_KERNEL;
1502 PAGE_EXEC = __pgprot(_PAGE_EXEC_4V);
1503
1504 _PAGE_IE = _PAGE_IE_4V;
1505 _PAGE_E = _PAGE_E_4V;
1506 _PAGE_CACHE = _PAGE_CACHE_4V;
1507
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001508 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
David S. Millerc4bce902006-02-11 21:57:54 -08001509 0xfffff80000000000;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001510 kern_linear_pte_xor[0] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1511 _PAGE_P_4V | _PAGE_W_4V);
1512
1513 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
1514 0xfffff80000000000;
1515 kern_linear_pte_xor[1] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1516 _PAGE_P_4V | _PAGE_W_4V);
David S. Millerc4bce902006-02-11 21:57:54 -08001517
1518 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
1519 __ACCESS_BITS_4V | _PAGE_E_4V);
1520
1521 _PAGE_SZBITS = _PAGE_SZBITS_4V;
1522 _PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V |
1523 _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V |
1524 _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V |
1525 _PAGE_SZ64K_4V | _PAGE_SZ8K_4V);
1526
1527 page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | _PAGE_CACHE_4V;
1528 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1529 __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V);
1530 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1531 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
1532 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1533 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
1534
1535 page_exec_bit = _PAGE_EXEC_4V;
1536
1537 prot_init_common(page_none, page_shared, page_copy, page_readonly,
1538 page_exec_bit);
1539}
1540
1541unsigned long pte_sz_bits(unsigned long sz)
1542{
1543 if (tlb_type == hypervisor) {
1544 switch (sz) {
1545 case 8 * 1024:
1546 default:
1547 return _PAGE_SZ8K_4V;
1548 case 64 * 1024:
1549 return _PAGE_SZ64K_4V;
1550 case 512 * 1024:
1551 return _PAGE_SZ512K_4V;
1552 case 4 * 1024 * 1024:
1553 return _PAGE_SZ4MB_4V;
1554 };
1555 } else {
1556 switch (sz) {
1557 case 8 * 1024:
1558 default:
1559 return _PAGE_SZ8K_4U;
1560 case 64 * 1024:
1561 return _PAGE_SZ64K_4U;
1562 case 512 * 1024:
1563 return _PAGE_SZ512K_4U;
1564 case 4 * 1024 * 1024:
1565 return _PAGE_SZ4MB_4U;
1566 };
1567 }
1568}
1569
1570pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size)
1571{
1572 pte_t pte;
David S. Millercf627152006-02-12 21:10:07 -08001573
1574 pte_val(pte) = page | pgprot_val(pgprot_noncached(prot));
David S. Millerc4bce902006-02-11 21:57:54 -08001575 pte_val(pte) |= (((unsigned long)space) << 32);
1576 pte_val(pte) |= pte_sz_bits(page_size);
David S. Millercf627152006-02-12 21:10:07 -08001577
David S. Millerc4bce902006-02-11 21:57:54 -08001578 return pte;
1579}
1580
David S. Millerc4bce902006-02-11 21:57:54 -08001581static unsigned long kern_large_tte(unsigned long paddr)
1582{
1583 unsigned long val;
1584
1585 val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
1586 _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U |
1587 _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U);
1588 if (tlb_type == hypervisor)
1589 val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
1590 _PAGE_CP_4V | _PAGE_CV_4V | _PAGE_P_4V |
1591 _PAGE_EXEC_4V | _PAGE_W_4V);
1592
1593 return val | paddr;
1594}
1595
1596/*
1597 * Translate PROM's mapping we capture at boot time into physical address.
1598 * The second parameter is only set from prom_callback() invocations.
1599 */
1600unsigned long prom_virt_to_phys(unsigned long promva, int *error)
1601{
1602 unsigned long mask;
1603 int i;
1604
1605 mask = _PAGE_PADDR_4U;
1606 if (tlb_type == hypervisor)
1607 mask = _PAGE_PADDR_4V;
1608
1609 for (i = 0; i < prom_trans_ents; i++) {
1610 struct linux_prom_translation *p = &prom_trans[i];
1611
1612 if (promva >= p->virt &&
1613 promva < (p->virt + p->size)) {
1614 unsigned long base = p->data & mask;
1615
1616 if (error)
1617 *error = 0;
1618 return base + (promva & (8192 - 1));
1619 }
1620 }
1621 if (error)
1622 *error = 1;
1623 return 0UL;
1624}
1625
1626/* XXX We should kill off this ugly thing at so me point. XXX */
1627unsigned long sun4u_get_pte(unsigned long addr)
1628{
1629 pgd_t *pgdp;
1630 pud_t *pudp;
1631 pmd_t *pmdp;
1632 pte_t *ptep;
1633 unsigned long mask = _PAGE_PADDR_4U;
1634
1635 if (tlb_type == hypervisor)
1636 mask = _PAGE_PADDR_4V;
1637
1638 if (addr >= PAGE_OFFSET)
1639 return addr & mask;
1640
1641 if ((addr >= LOW_OBP_ADDRESS) && (addr < HI_OBP_ADDRESS))
1642 return prom_virt_to_phys(addr, NULL);
1643
1644 pgdp = pgd_offset_k(addr);
1645 pudp = pud_offset(pgdp, addr);
1646 pmdp = pmd_offset(pudp, addr);
1647 ptep = pte_offset_kernel(pmdp, addr);
1648
1649 return pte_val(*ptep) & mask;
1650}
1651
1652/* If not locked, zap it. */
1653void __flush_tlb_all(void)
1654{
1655 unsigned long pstate;
1656 int i;
1657
1658 __asm__ __volatile__("flushw\n\t"
1659 "rdpr %%pstate, %0\n\t"
1660 "wrpr %0, %1, %%pstate"
1661 : "=r" (pstate)
1662 : "i" (PSTATE_IE));
1663 if (tlb_type == spitfire) {
1664 for (i = 0; i < 64; i++) {
1665 /* Spitfire Errata #32 workaround */
1666 /* NOTE: Always runs on spitfire, so no
1667 * cheetah+ page size encodings.
1668 */
1669 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
1670 "flush %%g6"
1671 : /* No outputs */
1672 : "r" (0),
1673 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
1674
1675 if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) {
1676 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
1677 "membar #Sync"
1678 : /* no outputs */
1679 : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
1680 spitfire_put_dtlb_data(i, 0x0UL);
1681 }
1682
1683 /* Spitfire Errata #32 workaround */
1684 /* NOTE: Always runs on spitfire, so no
1685 * cheetah+ page size encodings.
1686 */
1687 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
1688 "flush %%g6"
1689 : /* No outputs */
1690 : "r" (0),
1691 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
1692
1693 if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) {
1694 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
1695 "membar #Sync"
1696 : /* no outputs */
1697 : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
1698 spitfire_put_itlb_data(i, 0x0UL);
1699 }
1700 }
1701 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1702 cheetah_flush_dtlb_all();
1703 cheetah_flush_itlb_all();
1704 }
1705 __asm__ __volatile__("wrpr %0, 0, %%pstate"
1706 : : "r" (pstate));
1707}