blob: 5f67b53b3a5bd5a54a34da70da2c99c721c32108 [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. Millerd7744a02006-02-21 22:31:11 -080061/* A special kernel TSB for 4MB and 256MB linear mappings. */
62struct tsb swapper_4m_tsb[KERNEL_TSB4M_NENTRIES];
63
David S. Miller13edad72005-09-29 17:58:26 -070064#define MAX_BANKS 32
David S. Miller10147572005-09-28 21:46:43 -070065
David S. Miller13edad72005-09-29 17:58:26 -070066static struct linux_prom64_registers pavail[MAX_BANKS] __initdata;
67static struct linux_prom64_registers pavail_rescan[MAX_BANKS] __initdata;
68static int pavail_ents __initdata;
69static int pavail_rescan_ents __initdata;
David S. Miller10147572005-09-28 21:46:43 -070070
David S. Miller13edad72005-09-29 17:58:26 -070071static int cmp_p64(const void *a, const void *b)
72{
73 const struct linux_prom64_registers *x = a, *y = b;
74
75 if (x->phys_addr > y->phys_addr)
76 return 1;
77 if (x->phys_addr < y->phys_addr)
78 return -1;
79 return 0;
80}
81
82static void __init read_obp_memory(const char *property,
83 struct linux_prom64_registers *regs,
84 int *num_ents)
85{
86 int node = prom_finddevice("/memory");
87 int prop_size = prom_getproplen(node, property);
88 int ents, ret, i;
89
90 ents = prop_size / sizeof(struct linux_prom64_registers);
91 if (ents > MAX_BANKS) {
92 prom_printf("The machine has more %s property entries than "
93 "this kernel can support (%d).\n",
94 property, MAX_BANKS);
95 prom_halt();
96 }
97
98 ret = prom_getproperty(node, property, (char *) regs, prop_size);
99 if (ret == -1) {
100 prom_printf("Couldn't get %s property from /memory.\n");
101 prom_halt();
102 }
103
104 *num_ents = ents;
105
106 /* Sanitize what we got from the firmware, by page aligning
107 * everything.
108 */
109 for (i = 0; i < ents; i++) {
110 unsigned long base, size;
111
112 base = regs[i].phys_addr;
113 size = regs[i].reg_size;
114
115 size &= PAGE_MASK;
116 if (base & ~PAGE_MASK) {
117 unsigned long new_base = PAGE_ALIGN(base);
118
119 size -= new_base - base;
120 if ((long) size < 0L)
121 size = 0UL;
122 base = new_base;
123 }
124 regs[i].phys_addr = base;
125 regs[i].reg_size = size;
126 }
David S. Millerc9c10832005-10-12 12:22:46 -0700127 sort(regs, ents, sizeof(struct linux_prom64_registers),
David S. Miller13edad72005-09-29 17:58:26 -0700128 cmp_p64, NULL);
129}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
David S. Miller2bdb3cb2005-09-22 01:08:57 -0700131unsigned long *sparc64_valid_addr_bitmap __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
David S. Millerd1112012006-03-08 02:16:07 -0800133/* Kernel physical address base and size in bytes. */
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700134unsigned long kern_base __read_mostly;
135unsigned long kern_size __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/* get_new_mmu_context() uses "cache + 1". */
138DEFINE_SPINLOCK(ctx_alloc_lock);
139unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
140#define CTX_BMAP_SLOTS (1UL << (CTX_NR_BITS - 6))
141unsigned long mmu_context_bmap[CTX_BMAP_SLOTS];
142
143/* References to special section boundaries */
144extern char _start[], _end[];
145
146/* Initial ramdisk setup */
147extern unsigned long sparc_ramdisk_image64;
148extern unsigned int sparc_ramdisk_image;
149extern unsigned int sparc_ramdisk_size;
150
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700151struct page *mem_map_zero __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
David S. Miller0835ae02005-10-04 15:23:20 -0700153unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly;
154
155unsigned long sparc64_kern_pri_context __read_mostly;
156unsigned long sparc64_kern_pri_nuc_bits __read_mostly;
157unsigned long sparc64_kern_sec_context __read_mostly;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159int bigkernel = 0;
160
David S. Miller3c936462006-01-31 18:30:27 -0800161kmem_cache_t *pgtable_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
David S. Miller3c936462006-01-31 18:30:27 -0800163static void zero_ctor(void *addr, kmem_cache_t *cache, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
David S. Miller3c936462006-01-31 18:30:27 -0800165 clear_page(addr);
166}
167
168void pgtable_cache_init(void)
169{
170 pgtable_cache = kmem_cache_create("pgtable_cache",
171 PAGE_SIZE, PAGE_SIZE,
172 SLAB_HWCACHE_ALIGN |
173 SLAB_MUST_HWCACHE_ALIGN,
174 zero_ctor,
175 NULL);
176 if (!pgtable_cache) {
177 prom_printf("pgtable_cache_init(): Could not create!\n");
178 prom_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182#ifdef CONFIG_DEBUG_DCFLUSH
183atomic_t dcpage_flushes = ATOMIC_INIT(0);
184#ifdef CONFIG_SMP
185atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
186#endif
187#endif
188
David S. Miller7a591cf2006-02-26 19:44:50 -0800189inline void flush_dcache_page_impl(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
David S. Miller7a591cf2006-02-26 19:44:50 -0800191 BUG_ON(tlb_type == hypervisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#ifdef CONFIG_DEBUG_DCFLUSH
193 atomic_inc(&dcpage_flushes);
194#endif
195
196#ifdef DCACHE_ALIASING_POSSIBLE
197 __flush_dcache_page(page_address(page),
198 ((tlb_type == spitfire) &&
199 page_mapping(page) != NULL));
200#else
201 if (page_mapping(page) != NULL &&
202 tlb_type == spitfire)
203 __flush_icache_page(__pa(page_address(page)));
204#endif
205}
206
207#define PG_dcache_dirty PG_arch_1
David S. Miller48b0e542005-07-27 16:08:44 -0700208#define PG_dcache_cpu_shift 24
209#define PG_dcache_cpu_mask (256 - 1)
210
211#if NR_CPUS > 256
212#error D-cache dirty tracking and thread_info->cpu need fixing for > 256 cpus
213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215#define dcache_dirty_cpu(page) \
David S. Miller48b0e542005-07-27 16:08:44 -0700216 (((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218static __inline__ void set_dcache_dirty(struct page *page, int this_cpu)
219{
220 unsigned long mask = this_cpu;
David S. Miller48b0e542005-07-27 16:08:44 -0700221 unsigned long non_cpu_bits;
222
223 non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift);
224 mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty);
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 __asm__ __volatile__("1:\n\t"
227 "ldx [%2], %%g7\n\t"
228 "and %%g7, %1, %%g1\n\t"
229 "or %%g1, %0, %%g1\n\t"
230 "casx [%2], %%g7, %%g1\n\t"
231 "cmp %%g7, %%g1\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700232 "membar #StoreLoad | #StoreStore\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700234 " nop"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 : /* no outputs */
236 : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
237 : "g1", "g7");
238}
239
240static __inline__ void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
241{
242 unsigned long mask = (1UL << PG_dcache_dirty);
243
244 __asm__ __volatile__("! test_and_clear_dcache_dirty\n"
245 "1:\n\t"
246 "ldx [%2], %%g7\n\t"
David S. Miller48b0e542005-07-27 16:08:44 -0700247 "srlx %%g7, %4, %%g1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 "and %%g1, %3, %%g1\n\t"
249 "cmp %%g1, %0\n\t"
250 "bne,pn %%icc, 2f\n\t"
251 " andn %%g7, %1, %%g1\n\t"
252 "casx [%2], %%g7, %%g1\n\t"
253 "cmp %%g7, %%g1\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700254 "membar #StoreLoad | #StoreStore\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700256 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 "2:"
258 : /* no outputs */
259 : "r" (cpu), "r" (mask), "r" (&page->flags),
David S. Miller48b0e542005-07-27 16:08:44 -0700260 "i" (PG_dcache_cpu_mask),
261 "i" (PG_dcache_cpu_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 : "g1", "g7");
263}
264
David S. Miller517af332006-02-01 15:55:21 -0800265static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte)
266{
267 unsigned long tsb_addr = (unsigned long) ent;
268
David S. Miller3b3ab2e2006-02-17 09:54:42 -0800269 if (tlb_type == cheetah_plus || tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -0800270 tsb_addr = __pa(tsb_addr);
271
272 __tsb_insert(tsb_addr, tag, pte);
273}
274
David S. Millerc4bce902006-02-11 21:57:54 -0800275unsigned long _PAGE_ALL_SZ_BITS __read_mostly;
276unsigned long _PAGE_SZBITS __read_mostly;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
279{
David S. Millerbd407912006-01-31 18:31:38 -0800280 struct mm_struct *mm;
David S. Miller74ae9982006-03-05 18:26:24 -0800281 struct tsb *tsb;
282 unsigned long tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
David S. Miller7a591cf2006-02-26 19:44:50 -0800284 if (tlb_type != hypervisor) {
285 unsigned long pfn = pte_pfn(pte);
286 unsigned long pg_flags;
287 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
David S. Miller7a591cf2006-02-26 19:44:50 -0800289 if (pfn_valid(pfn) &&
290 (page = pfn_to_page(pfn), page_mapping(page)) &&
291 ((pg_flags = page->flags) & (1UL << PG_dcache_dirty))) {
292 int cpu = ((pg_flags >> PG_dcache_cpu_shift) &
293 PG_dcache_cpu_mask);
294 int this_cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
David S. Miller7a591cf2006-02-26 19:44:50 -0800296 /* This is just to optimize away some function calls
297 * in the SMP case.
298 */
299 if (cpu == this_cpu)
300 flush_dcache_page_impl(page);
301 else
302 smp_flush_dcache_page_impl(page, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
David S. Miller7a591cf2006-02-26 19:44:50 -0800304 clear_dcache_dirty_cpu(page, cpu);
305
306 put_cpu();
307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
David S. Millerbd407912006-01-31 18:31:38 -0800309
310 mm = vma->vm_mm;
David S. Miller74ae9982006-03-05 18:26:24 -0800311 tsb = &mm->context.tsb[(address >> PAGE_SHIFT) &
312 (mm->context.tsb_nentries - 1UL)];
313 tag = (address >> 22UL);
314 tsb_insert(tsb, tag, pte_val(pte));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317void flush_dcache_page(struct page *page)
318{
David S. Millera9546f52005-04-17 18:03:09 -0700319 struct address_space *mapping;
320 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
David S. Miller7a591cf2006-02-26 19:44:50 -0800322 if (tlb_type == hypervisor)
323 return;
324
David S. Millera9546f52005-04-17 18:03:09 -0700325 /* Do not bother with the expensive D-cache flush if it
326 * is merely the zero page. The 'bigcore' testcase in GDB
327 * causes this case to run millions of times.
328 */
329 if (page == ZERO_PAGE(0))
330 return;
331
332 this_cpu = get_cpu();
333
334 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (mapping && !mapping_mapped(mapping)) {
David S. Millera9546f52005-04-17 18:03:09 -0700336 int dirty = test_bit(PG_dcache_dirty, &page->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (dirty) {
David S. Millera9546f52005-04-17 18:03:09 -0700338 int dirty_cpu = dcache_dirty_cpu(page);
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (dirty_cpu == this_cpu)
341 goto out;
342 smp_flush_dcache_page_impl(page, dirty_cpu);
343 }
344 set_dcache_dirty(page, this_cpu);
345 } else {
346 /* We could delay the flush for the !page_mapping
347 * case too. But that case is for exec env/arg
348 * pages and those are %99 certainly going to get
349 * faulted into the tlb (and thus flushed) anyways.
350 */
351 flush_dcache_page_impl(page);
352 }
353
354out:
355 put_cpu();
356}
357
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700358void __kprobes flush_icache_range(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
David S. Millera43fe0e2006-02-04 03:10:53 -0800360 /* Cheetah and Hypervisor platform cpus have coherent I-cache. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (tlb_type == spitfire) {
362 unsigned long kaddr;
363
364 for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE)
365 __flush_icache_page(__get_phys(kaddr));
366 }
367}
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369void show_mem(void)
370{
371 printk("Mem-info:\n");
372 show_free_areas();
373 printk("Free swap: %6ldkB\n",
374 nr_swap_pages << (PAGE_SHIFT-10));
375 printk("%ld pages of RAM\n", num_physpages);
376 printk("%d free pages\n", nr_free_pages());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379void mmu_info(struct seq_file *m)
380{
381 if (tlb_type == cheetah)
382 seq_printf(m, "MMU Type\t: Cheetah\n");
383 else if (tlb_type == cheetah_plus)
384 seq_printf(m, "MMU Type\t: Cheetah+\n");
385 else if (tlb_type == spitfire)
386 seq_printf(m, "MMU Type\t: Spitfire\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800387 else if (tlb_type == hypervisor)
388 seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 else
390 seq_printf(m, "MMU Type\t: ???\n");
391
392#ifdef CONFIG_DEBUG_DCFLUSH
393 seq_printf(m, "DCPageFlushes\t: %d\n",
394 atomic_read(&dcpage_flushes));
395#ifdef CONFIG_SMP
396 seq_printf(m, "DCPageFlushesXC\t: %d\n",
397 atomic_read(&dcpage_flushes_xcall));
398#endif /* CONFIG_SMP */
399#endif /* CONFIG_DEBUG_DCFLUSH */
400}
401
402struct linux_prom_translation {
403 unsigned long virt;
404 unsigned long size;
405 unsigned long data;
406};
David S. Millerc9c10832005-10-12 12:22:46 -0700407
408/* Exported for kernel TLB miss handling in ktlb.S */
409struct linux_prom_translation prom_trans[512] __read_mostly;
410unsigned int prom_trans_ents __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/* Exported for SMP bootup purposes. */
413unsigned long kern_locked_tte_data;
414
David S. Miller405599b2005-09-22 00:12:35 -0700415/* The obp translations are saved based on 8k pagesize, since obp can
416 * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS ->
David S. Miller74bf4312006-01-31 18:29:18 -0800417 * HI_OBP_ADDRESS range are handled in ktlb.S.
David S. Miller405599b2005-09-22 00:12:35 -0700418 */
David S. Miller5085b4a2005-09-22 00:45:41 -0700419static inline int in_obp_range(unsigned long vaddr)
420{
421 return (vaddr >= LOW_OBP_ADDRESS &&
422 vaddr < HI_OBP_ADDRESS);
423}
424
David S. Millerc9c10832005-10-12 12:22:46 -0700425static int cmp_ptrans(const void *a, const void *b)
David S. Miller405599b2005-09-22 00:12:35 -0700426{
David S. Millerc9c10832005-10-12 12:22:46 -0700427 const struct linux_prom_translation *x = a, *y = b;
David S. Miller405599b2005-09-22 00:12:35 -0700428
David S. Millerc9c10832005-10-12 12:22:46 -0700429 if (x->virt > y->virt)
430 return 1;
431 if (x->virt < y->virt)
432 return -1;
433 return 0;
David S. Miller405599b2005-09-22 00:12:35 -0700434}
435
David S. Millerc9c10832005-10-12 12:22:46 -0700436/* Read OBP translations property into 'prom_trans[]'. */
David S. Miller9ad98c52005-10-05 15:12:00 -0700437static void __init read_obp_translations(void)
David S. Miller405599b2005-09-22 00:12:35 -0700438{
David S. Millerc9c10832005-10-12 12:22:46 -0700439 int n, node, ents, first, last, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 node = prom_finddevice("/virtual-memory");
442 n = prom_getproplen(node, "translations");
David S. Miller405599b2005-09-22 00:12:35 -0700443 if (unlikely(n == 0 || n == -1)) {
David S. Millerb206fc42005-09-21 22:31:13 -0700444 prom_printf("prom_mappings: Couldn't get size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 prom_halt();
446 }
David S. Miller405599b2005-09-22 00:12:35 -0700447 if (unlikely(n > sizeof(prom_trans))) {
448 prom_printf("prom_mappings: Size %Zd is too big.\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 prom_halt();
450 }
David S. Miller405599b2005-09-22 00:12:35 -0700451
David S. Millerb206fc42005-09-21 22:31:13 -0700452 if ((n = prom_getproperty(node, "translations",
David S. Miller405599b2005-09-22 00:12:35 -0700453 (char *)&prom_trans[0],
454 sizeof(prom_trans))) == -1) {
David S. Millerb206fc42005-09-21 22:31:13 -0700455 prom_printf("prom_mappings: Couldn't get property.\n");
456 prom_halt();
457 }
David S. Miller9ad98c52005-10-05 15:12:00 -0700458
David S. Millerb206fc42005-09-21 22:31:13 -0700459 n = n / sizeof(struct linux_prom_translation);
David S. Miller9ad98c52005-10-05 15:12:00 -0700460
David S. Millerc9c10832005-10-12 12:22:46 -0700461 ents = n;
462
463 sort(prom_trans, ents, sizeof(struct linux_prom_translation),
464 cmp_ptrans, NULL);
465
466 /* Now kick out all the non-OBP entries. */
467 for (i = 0; i < ents; i++) {
468 if (in_obp_range(prom_trans[i].virt))
469 break;
470 }
471 first = i;
472 for (; i < ents; i++) {
473 if (!in_obp_range(prom_trans[i].virt))
474 break;
475 }
476 last = i;
477
478 for (i = 0; i < (last - first); i++) {
479 struct linux_prom_translation *src = &prom_trans[i + first];
480 struct linux_prom_translation *dest = &prom_trans[i];
481
482 *dest = *src;
483 }
484 for (; i < ents; i++) {
485 struct linux_prom_translation *dest = &prom_trans[i];
486 dest->virt = dest->size = dest->data = 0x0UL;
487 }
488
489 prom_trans_ents = last - first;
490
491 if (tlb_type == spitfire) {
492 /* Clear diag TTE bits. */
493 for (i = 0; i < prom_trans_ents; i++)
494 prom_trans[i].data &= ~0x0003fe0000000000UL;
495 }
David S. Miller405599b2005-09-22 00:12:35 -0700496}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
David S. Millerd82ace72006-02-09 02:52:44 -0800498static void __init hypervisor_tlb_lock(unsigned long vaddr,
499 unsigned long pte,
500 unsigned long mmu)
501{
David S. Miller164c2202006-02-09 22:57:21 -0800502 register unsigned long func asm("%o5");
503 register unsigned long arg0 asm("%o0");
504 register unsigned long arg1 asm("%o1");
505 register unsigned long arg2 asm("%o2");
506 register unsigned long arg3 asm("%o3");
David S. Millerd82ace72006-02-09 02:52:44 -0800507
508 func = HV_FAST_MMU_MAP_PERM_ADDR;
509 arg0 = vaddr;
510 arg1 = 0;
511 arg2 = pte;
512 arg3 = mmu;
513 __asm__ __volatile__("ta 0x80"
514 : "=&r" (func), "=&r" (arg0),
515 "=&r" (arg1), "=&r" (arg2),
516 "=&r" (arg3)
517 : "0" (func), "1" (arg0), "2" (arg1),
518 "3" (arg2), "4" (arg3));
David S. Miller12e126a2006-02-17 14:40:30 -0800519 if (arg0 != 0) {
520 prom_printf("hypervisor_tlb_lock[%lx:%lx:%lx:%lx]: "
521 "errors with %lx\n", vaddr, 0, pte, mmu, arg0);
522 prom_halt();
523 }
David S. Millerd82ace72006-02-09 02:52:44 -0800524}
525
David S. Millerc4bce902006-02-11 21:57:54 -0800526static unsigned long kern_large_tte(unsigned long paddr);
527
David S. Miller898cf0e2005-09-23 11:59:44 -0700528static void __init remap_kernel(void)
David S. Miller405599b2005-09-22 00:12:35 -0700529{
530 unsigned long phys_page, tte_vaddr, tte_data;
David S. Miller405599b2005-09-22 00:12:35 -0700531 int tlb_ent = sparc64_highest_locked_tlbent();
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 tte_vaddr = (unsigned long) KERNBASE;
David S. Millerbff06d52005-09-22 20:11:33 -0700534 phys_page = (prom_boot_mapping_phys_low >> 22UL) << 22UL;
David S. Millerc4bce902006-02-11 21:57:54 -0800535 tte_data = kern_large_tte(phys_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 kern_locked_tte_data = tte_data;
538
David S. Millerd82ace72006-02-09 02:52:44 -0800539 /* Now lock us into the TLBs via Hypervisor or OBP. */
540 if (tlb_type == hypervisor) {
541 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
542 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
543 if (bigkernel) {
544 tte_vaddr += 0x400000;
545 tte_data += 0x400000;
546 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
547 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
548 }
549 } else {
550 prom_dtlb_load(tlb_ent, tte_data, tte_vaddr);
551 prom_itlb_load(tlb_ent, tte_data, tte_vaddr);
552 if (bigkernel) {
553 tlb_ent -= 1;
554 prom_dtlb_load(tlb_ent,
555 tte_data + 0x400000,
556 tte_vaddr + 0x400000);
557 prom_itlb_load(tlb_ent,
558 tte_data + 0x400000,
559 tte_vaddr + 0x400000);
560 }
561 sparc64_highest_unlocked_tlb_ent = tlb_ent - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
David S. Miller0835ae02005-10-04 15:23:20 -0700563 if (tlb_type == cheetah_plus) {
564 sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 |
565 CTX_CHEETAH_PLUS_NUC);
566 sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC;
567 sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0;
568 }
David S. Miller405599b2005-09-22 00:12:35 -0700569}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
David S. Miller405599b2005-09-22 00:12:35 -0700571
David S. Millerc9c10832005-10-12 12:22:46 -0700572static void __init inherit_prom_mappings(void)
David S. Miller9ad98c52005-10-05 15:12:00 -0700573{
574 read_obp_translations();
David S. Miller405599b2005-09-22 00:12:35 -0700575
576 /* Now fixup OBP's idea about where we really are mapped. */
577 prom_printf("Remapping the kernel... ");
578 remap_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 prom_printf("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582void prom_world(int enter)
583{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (!enter)
585 set_fs((mm_segment_t) { get_thread_current_ds() });
586
David S. Miller3487d1d2006-01-31 18:33:25 -0800587 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590#ifdef DCACHE_ALIASING_POSSIBLE
591void __flush_dcache_range(unsigned long start, unsigned long end)
592{
593 unsigned long va;
594
595 if (tlb_type == spitfire) {
596 int n = 0;
597
598 for (va = start; va < end; va += 32) {
599 spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
600 if (++n >= 512)
601 break;
602 }
David S. Millera43fe0e2006-02-04 03:10:53 -0800603 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 start = __pa(start);
605 end = __pa(end);
606 for (va = start; va < end; va += 32)
607 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
608 "membar #Sync"
609 : /* no outputs */
610 : "r" (va),
611 "i" (ASI_DCACHE_INVALIDATE));
612 }
613}
614#endif /* DCACHE_ALIASING_POSSIBLE */
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616/* Caller does TLB context flushing on local CPU if necessary.
617 * The caller also ensures that CTX_VALID(mm->context) is false.
618 *
619 * We must be careful about boundary cases so that we never
620 * let the user have CTX 0 (nucleus) or we ever use a CTX
621 * version of zero (and thus NO_CONTEXT would not be caught
622 * by version mis-match tests in mmu_context.h).
David S. Millera0663a72006-02-23 14:19:28 -0800623 *
624 * Always invoked with interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
626void get_new_mmu_context(struct mm_struct *mm)
627{
628 unsigned long ctx, new_ctx;
629 unsigned long orig_pgsz_bits;
David S. Millera77754b2006-03-06 19:59:50 -0800630 unsigned long flags;
David S. Millera0663a72006-02-23 14:19:28 -0800631 int new_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
David S. Millera77754b2006-03-06 19:59:50 -0800633 spin_lock_irqsave(&ctx_alloc_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK);
635 ctx = (tlb_context_cache + 1) & CTX_NR_MASK;
636 new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx);
David S. Millera0663a72006-02-23 14:19:28 -0800637 new_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (new_ctx >= (1 << CTX_NR_BITS)) {
639 new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
640 if (new_ctx >= ctx) {
641 int i;
642 new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
643 CTX_FIRST_VERSION;
644 if (new_ctx == 1)
645 new_ctx = CTX_FIRST_VERSION;
646
647 /* Don't call memset, for 16 entries that's just
648 * plain silly...
649 */
650 mmu_context_bmap[0] = 3;
651 mmu_context_bmap[1] = 0;
652 mmu_context_bmap[2] = 0;
653 mmu_context_bmap[3] = 0;
654 for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
655 mmu_context_bmap[i + 0] = 0;
656 mmu_context_bmap[i + 1] = 0;
657 mmu_context_bmap[i + 2] = 0;
658 mmu_context_bmap[i + 3] = 0;
659 }
David S. Millera0663a72006-02-23 14:19:28 -0800660 new_version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 goto out;
662 }
663 }
664 mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
665 new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
666out:
667 tlb_context_cache = new_ctx;
668 mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits;
David S. Millera77754b2006-03-06 19:59:50 -0800669 spin_unlock_irqrestore(&ctx_alloc_lock, flags);
David S. Millera0663a72006-02-23 14:19:28 -0800670
671 if (unlikely(new_version))
672 smp_new_mmu_context_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675void sparc_ultra_dump_itlb(void)
676{
677 int slot;
678
679 if (tlb_type == spitfire) {
680 printk ("Contents of itlb: ");
681 for (slot = 0; slot < 14; slot++) printk (" ");
682 printk ("%2x:%016lx,%016lx\n",
683 0,
684 spitfire_get_itlb_tag(0), spitfire_get_itlb_data(0));
685 for (slot = 1; slot < 64; slot+=3) {
686 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx %2x:%016lx,%016lx\n",
687 slot,
688 spitfire_get_itlb_tag(slot), spitfire_get_itlb_data(slot),
689 slot+1,
690 spitfire_get_itlb_tag(slot+1), spitfire_get_itlb_data(slot+1),
691 slot+2,
692 spitfire_get_itlb_tag(slot+2), spitfire_get_itlb_data(slot+2));
693 }
694 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
695 printk ("Contents of itlb0:\n");
696 for (slot = 0; slot < 16; slot+=2) {
697 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
698 slot,
699 cheetah_get_litlb_tag(slot), cheetah_get_litlb_data(slot),
700 slot+1,
701 cheetah_get_litlb_tag(slot+1), cheetah_get_litlb_data(slot+1));
702 }
703 printk ("Contents of itlb2:\n");
704 for (slot = 0; slot < 128; slot+=2) {
705 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
706 slot,
707 cheetah_get_itlb_tag(slot), cheetah_get_itlb_data(slot),
708 slot+1,
709 cheetah_get_itlb_tag(slot+1), cheetah_get_itlb_data(slot+1));
710 }
711 }
712}
713
714void sparc_ultra_dump_dtlb(void)
715{
716 int slot;
717
718 if (tlb_type == spitfire) {
719 printk ("Contents of dtlb: ");
720 for (slot = 0; slot < 14; slot++) printk (" ");
721 printk ("%2x:%016lx,%016lx\n", 0,
722 spitfire_get_dtlb_tag(0), spitfire_get_dtlb_data(0));
723 for (slot = 1; slot < 64; slot+=3) {
724 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx %2x:%016lx,%016lx\n",
725 slot,
726 spitfire_get_dtlb_tag(slot), spitfire_get_dtlb_data(slot),
727 slot+1,
728 spitfire_get_dtlb_tag(slot+1), spitfire_get_dtlb_data(slot+1),
729 slot+2,
730 spitfire_get_dtlb_tag(slot+2), spitfire_get_dtlb_data(slot+2));
731 }
732 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
733 printk ("Contents of dtlb0:\n");
734 for (slot = 0; slot < 16; slot+=2) {
735 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
736 slot,
737 cheetah_get_ldtlb_tag(slot), cheetah_get_ldtlb_data(slot),
738 slot+1,
739 cheetah_get_ldtlb_tag(slot+1), cheetah_get_ldtlb_data(slot+1));
740 }
741 printk ("Contents of dtlb2:\n");
742 for (slot = 0; slot < 512; slot+=2) {
743 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
744 slot,
745 cheetah_get_dtlb_tag(slot, 2), cheetah_get_dtlb_data(slot, 2),
746 slot+1,
747 cheetah_get_dtlb_tag(slot+1, 2), cheetah_get_dtlb_data(slot+1, 2));
748 }
749 if (tlb_type == cheetah_plus) {
750 printk ("Contents of dtlb3:\n");
751 for (slot = 0; slot < 512; slot+=2) {
752 printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx\n",
753 slot,
754 cheetah_get_dtlb_tag(slot, 3), cheetah_get_dtlb_data(slot, 3),
755 slot+1,
756 cheetah_get_dtlb_tag(slot+1, 3), cheetah_get_dtlb_data(slot+1, 3));
757 }
758 }
759 }
760}
761
762extern unsigned long cmdline_memory_size;
763
David S. Millerd1112012006-03-08 02:16:07 -0800764/* Find a free area for the bootmem map, avoiding the kernel image
765 * and the initial ramdisk.
766 */
767static unsigned long __init choose_bootmap_pfn(unsigned long start_pfn,
768 unsigned long end_pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
David S. Millerd1112012006-03-08 02:16:07 -0800770 unsigned long avoid_start, avoid_end, bootmap_size;
771 int i;
772
773 bootmap_size = ((end_pfn - start_pfn) + 7) / 8;
774 bootmap_size = ALIGN(bootmap_size, sizeof(long));
775
776 avoid_start = avoid_end = 0;
777#ifdef CONFIG_BLK_DEV_INITRD
778 avoid_start = initrd_start;
779 avoid_end = PAGE_ALIGN(initrd_end);
780#endif
781
782#ifdef CONFIG_DEBUG_BOOTMEM
783 prom_printf("choose_bootmap_pfn: kern[%lx:%lx] avoid[%lx:%lx]\n",
784 kern_base, PAGE_ALIGN(kern_base + kern_size),
785 avoid_start, avoid_end);
786#endif
787 for (i = 0; i < pavail_ents; i++) {
788 unsigned long start, end;
789
790 start = pavail[i].phys_addr;
791 end = start + pavail[i].reg_size;
792
793 while (start < end) {
794 if (start >= kern_base &&
795 start < PAGE_ALIGN(kern_base + kern_size)) {
796 start = PAGE_ALIGN(kern_base + kern_size);
797 continue;
798 }
799 if (start >= avoid_start && start < avoid_end) {
800 start = avoid_end;
801 continue;
802 }
803
804 if ((end - start) < bootmap_size)
805 break;
806
807 if (start < kern_base &&
808 (start + bootmap_size) > kern_base) {
809 start = PAGE_ALIGN(kern_base + kern_size);
810 continue;
811 }
812
813 if (start < avoid_start &&
814 (start + bootmap_size) > avoid_start) {
815 start = avoid_end;
816 continue;
817 }
818
819 /* OK, it doesn't overlap anything, use it. */
820#ifdef CONFIG_DEBUG_BOOTMEM
821 prom_printf("choose_bootmap_pfn: Using %lx [%lx]\n",
822 start >> PAGE_SHIFT, start);
823#endif
824 return start >> PAGE_SHIFT;
825 }
826 }
827
828 prom_printf("Cannot find free area for bootmap, aborting.\n");
829 prom_halt();
830}
831
832static unsigned long __init bootmem_init(unsigned long *pages_avail,
833 unsigned long phys_base)
834{
835 unsigned long bootmap_size, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 unsigned long end_of_phys_memory = 0UL;
837 unsigned long bootmap_pfn, bytes_avail, size;
838 int i;
839
840#ifdef CONFIG_DEBUG_BOOTMEM
David S. Miller13edad72005-09-29 17:58:26 -0700841 prom_printf("bootmem_init: Scan pavail, ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842#endif
843
844 bytes_avail = 0UL;
David S. Miller13edad72005-09-29 17:58:26 -0700845 for (i = 0; i < pavail_ents; i++) {
846 end_of_phys_memory = pavail[i].phys_addr +
847 pavail[i].reg_size;
848 bytes_avail += pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (cmdline_memory_size) {
850 if (bytes_avail > cmdline_memory_size) {
851 unsigned long slack = bytes_avail - cmdline_memory_size;
852
853 bytes_avail -= slack;
854 end_of_phys_memory -= slack;
855
David S. Miller13edad72005-09-29 17:58:26 -0700856 pavail[i].reg_size -= slack;
857 if ((long)pavail[i].reg_size <= 0L) {
858 pavail[i].phys_addr = 0xdeadbeefUL;
859 pavail[i].reg_size = 0UL;
860 pavail_ents = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 } else {
David S. Miller13edad72005-09-29 17:58:26 -0700862 pavail[i+1].reg_size = 0Ul;
863 pavail[i+1].phys_addr = 0xdeadbeefUL;
864 pavail_ents = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866 break;
867 }
868 }
869 }
870
871 *pages_avail = bytes_avail >> PAGE_SHIFT;
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 end_pfn = end_of_phys_memory >> PAGE_SHIFT;
874
875#ifdef CONFIG_BLK_DEV_INITRD
876 /* Now have to check initial ramdisk, so that bootmap does not overwrite it */
877 if (sparc_ramdisk_image || sparc_ramdisk_image64) {
878 unsigned long ramdisk_image = sparc_ramdisk_image ?
879 sparc_ramdisk_image : sparc_ramdisk_image64;
880 if (ramdisk_image >= (unsigned long)_end - 2 * PAGE_SIZE)
881 ramdisk_image -= KERNBASE;
882 initrd_start = ramdisk_image + phys_base;
883 initrd_end = initrd_start + sparc_ramdisk_size;
884 if (initrd_end > end_of_phys_memory) {
885 printk(KERN_CRIT "initrd extends beyond end of memory "
886 "(0x%016lx > 0x%016lx)\ndisabling initrd\n",
887 initrd_end, end_of_phys_memory);
888 initrd_start = 0;
David S. Millerd1112012006-03-08 02:16:07 -0800889 initrd_end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891 }
892#endif
893 /* Initialize the boot-time allocator. */
894 max_pfn = max_low_pfn = end_pfn;
David S. Millerd1112012006-03-08 02:16:07 -0800895 min_low_pfn = (phys_base >> PAGE_SHIFT);
896
897 bootmap_pfn = choose_bootmap_pfn(min_low_pfn, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899#ifdef CONFIG_DEBUG_BOOTMEM
900 prom_printf("init_bootmem(min[%lx], bootmap[%lx], max[%lx])\n",
901 min_low_pfn, bootmap_pfn, max_low_pfn);
902#endif
David S. Millerd1112012006-03-08 02:16:07 -0800903 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap_pfn,
904 (phys_base >> PAGE_SHIFT),
905 end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 /* Now register the available physical memory with the
908 * allocator.
909 */
David S. Miller13edad72005-09-29 17:58:26 -0700910 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911#ifdef CONFIG_DEBUG_BOOTMEM
David S. Miller13edad72005-09-29 17:58:26 -0700912 prom_printf("free_bootmem(pavail:%d): base[%lx] size[%lx]\n",
913 i, pavail[i].phys_addr, pavail[i].reg_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914#endif
David S. Miller13edad72005-09-29 17:58:26 -0700915 free_bootmem(pavail[i].phys_addr, pavail[i].reg_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917
918#ifdef CONFIG_BLK_DEV_INITRD
919 if (initrd_start) {
920 size = initrd_end - initrd_start;
921
922 /* Resert the initrd image area. */
923#ifdef CONFIG_DEBUG_BOOTMEM
924 prom_printf("reserve_bootmem(initrd): base[%llx] size[%lx]\n",
925 initrd_start, initrd_end);
926#endif
927 reserve_bootmem(initrd_start, size);
928 *pages_avail -= PAGE_ALIGN(size) >> PAGE_SHIFT;
929
930 initrd_start += PAGE_OFFSET;
931 initrd_end += PAGE_OFFSET;
932 }
933#endif
934 /* Reserve the kernel text/data/bss. */
935#ifdef CONFIG_DEBUG_BOOTMEM
936 prom_printf("reserve_bootmem(kernel): base[%lx] size[%lx]\n", kern_base, kern_size);
937#endif
938 reserve_bootmem(kern_base, kern_size);
939 *pages_avail -= PAGE_ALIGN(kern_size) >> PAGE_SHIFT;
940
941 /* Reserve the bootmem map. We do not account for it
942 * in pages_avail because we will release that memory
943 * in free_all_bootmem.
944 */
945 size = bootmap_size;
946#ifdef CONFIG_DEBUG_BOOTMEM
947 prom_printf("reserve_bootmem(bootmap): base[%lx] size[%lx]\n",
948 (bootmap_pfn << PAGE_SHIFT), size);
949#endif
950 reserve_bootmem((bootmap_pfn << PAGE_SHIFT), size);
951 *pages_avail -= PAGE_ALIGN(size) >> PAGE_SHIFT;
952
David S. Millerd1112012006-03-08 02:16:07 -0800953 for (i = 0; i < pavail_ents; i++) {
954 unsigned long start_pfn, end_pfn;
955
956 start_pfn = pavail[i].phys_addr >> PAGE_SHIFT;
957 end_pfn = (start_pfn + (pavail[i].reg_size >> PAGE_SHIFT));
958#ifdef CONFIG_DEBUG_BOOTMEM
959 prom_printf("memory_present(0, %lx, %lx)\n",
960 start_pfn, end_pfn);
961#endif
962 memory_present(0, start_pfn, end_pfn);
963 }
964
965 sparse_init();
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return end_pfn;
968}
969
David S. Miller9cc3a1a2006-02-21 20:51:13 -0800970static struct linux_prom64_registers pall[MAX_BANKS] __initdata;
971static int pall_ents __initdata;
972
David S. Miller56425302005-09-25 16:46:57 -0700973#ifdef CONFIG_DEBUG_PAGEALLOC
974static unsigned long kernel_map_range(unsigned long pstart, unsigned long pend, pgprot_t prot)
975{
976 unsigned long vstart = PAGE_OFFSET + pstart;
977 unsigned long vend = PAGE_OFFSET + pend;
978 unsigned long alloc_bytes = 0UL;
979
980 if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) {
David S. Miller13edad72005-09-29 17:58:26 -0700981 prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n",
David S. Miller56425302005-09-25 16:46:57 -0700982 vstart, vend);
983 prom_halt();
984 }
985
986 while (vstart < vend) {
987 unsigned long this_end, paddr = __pa(vstart);
988 pgd_t *pgd = pgd_offset_k(vstart);
989 pud_t *pud;
990 pmd_t *pmd;
991 pte_t *pte;
992
993 pud = pud_offset(pgd, vstart);
994 if (pud_none(*pud)) {
995 pmd_t *new;
996
997 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
998 alloc_bytes += PAGE_SIZE;
999 pud_populate(&init_mm, pud, new);
1000 }
1001
1002 pmd = pmd_offset(pud, vstart);
1003 if (!pmd_present(*pmd)) {
1004 pte_t *new;
1005
1006 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1007 alloc_bytes += PAGE_SIZE;
1008 pmd_populate_kernel(&init_mm, pmd, new);
1009 }
1010
1011 pte = pte_offset_kernel(pmd, vstart);
1012 this_end = (vstart + PMD_SIZE) & PMD_MASK;
1013 if (this_end > vend)
1014 this_end = vend;
1015
1016 while (vstart < this_end) {
1017 pte_val(*pte) = (paddr | pgprot_val(prot));
1018
1019 vstart += PAGE_SIZE;
1020 paddr += PAGE_SIZE;
1021 pte++;
1022 }
1023 }
1024
1025 return alloc_bytes;
1026}
1027
David S. Miller56425302005-09-25 16:46:57 -07001028extern unsigned int kvmap_linear_patch[1];
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001029#endif /* CONFIG_DEBUG_PAGEALLOC */
1030
1031static void __init mark_kpte_bitmap(unsigned long start, unsigned long end)
1032{
1033 const unsigned long shift_256MB = 28;
1034 const unsigned long mask_256MB = ((1UL << shift_256MB) - 1UL);
1035 const unsigned long size_256MB = (1UL << shift_256MB);
1036
1037 while (start < end) {
1038 long remains;
1039
David S. Millerf7c00332006-03-05 22:18:50 -08001040 remains = end - start;
1041 if (remains < size_256MB)
1042 break;
1043
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001044 if (start & mask_256MB) {
1045 start = (start + size_256MB) & ~mask_256MB;
1046 continue;
1047 }
1048
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001049 while (remains >= size_256MB) {
1050 unsigned long index = start >> shift_256MB;
1051
1052 __set_bit(index, kpte_linear_bitmap);
1053
1054 start += size_256MB;
1055 remains -= size_256MB;
1056 }
1057 }
1058}
David S. Miller56425302005-09-25 16:46:57 -07001059
1060static void __init kernel_physical_mapping_init(void)
1061{
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001062 unsigned long i;
1063#ifdef CONFIG_DEBUG_PAGEALLOC
1064 unsigned long mem_alloced = 0UL;
1065#endif
David S. Miller56425302005-09-25 16:46:57 -07001066
David S. Miller13edad72005-09-29 17:58:26 -07001067 read_obp_memory("reg", &pall[0], &pall_ents);
1068
1069 for (i = 0; i < pall_ents; i++) {
David S. Miller56425302005-09-25 16:46:57 -07001070 unsigned long phys_start, phys_end;
1071
David S. Miller13edad72005-09-29 17:58:26 -07001072 phys_start = pall[i].phys_addr;
1073 phys_end = phys_start + pall[i].reg_size;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001074
1075 mark_kpte_bitmap(phys_start, phys_end);
1076
1077#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001078 mem_alloced += kernel_map_range(phys_start, phys_end,
1079 PAGE_KERNEL);
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001080#endif
David S. Miller56425302005-09-25 16:46:57 -07001081 }
1082
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001083#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001084 printk("Allocated %ld bytes for kernel page tables.\n",
1085 mem_alloced);
1086
1087 kvmap_linear_patch[0] = 0x01000000; /* nop */
1088 flushi(&kvmap_linear_patch[0]);
1089
1090 __flush_tlb_all();
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001091#endif
David S. Miller56425302005-09-25 16:46:57 -07001092}
1093
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001094#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001095void kernel_map_pages(struct page *page, int numpages, int enable)
1096{
1097 unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT;
1098 unsigned long phys_end = phys_start + (numpages * PAGE_SIZE);
1099
1100 kernel_map_range(phys_start, phys_end,
1101 (enable ? PAGE_KERNEL : __pgprot(0)));
1102
David S. Miller74bf4312006-01-31 18:29:18 -08001103 flush_tsb_kernel_range(PAGE_OFFSET + phys_start,
1104 PAGE_OFFSET + phys_end);
1105
David S. Miller56425302005-09-25 16:46:57 -07001106 /* we should perform an IPI and flush all tlbs,
1107 * but that can deadlock->flush only current cpu.
1108 */
1109 __flush_tlb_kernel_range(PAGE_OFFSET + phys_start,
1110 PAGE_OFFSET + phys_end);
1111}
1112#endif
1113
David S. Miller10147572005-09-28 21:46:43 -07001114unsigned long __init find_ecache_flush_span(unsigned long size)
1115{
David S. Miller13edad72005-09-29 17:58:26 -07001116 int i;
David S. Miller10147572005-09-28 21:46:43 -07001117
David S. Miller13edad72005-09-29 17:58:26 -07001118 for (i = 0; i < pavail_ents; i++) {
1119 if (pavail[i].reg_size >= size)
1120 return pavail[i].phys_addr;
David S. Miller10147572005-09-28 21:46:43 -07001121 }
1122
1123 return ~0UL;
1124}
1125
David S. Miller517af332006-02-01 15:55:21 -08001126static void __init tsb_phys_patch(void)
1127{
David S. Millerd257d5d2006-02-06 23:44:37 -08001128 struct tsb_ldquad_phys_patch_entry *pquad;
David S. Miller517af332006-02-01 15:55:21 -08001129 struct tsb_phys_patch_entry *p;
1130
David S. Millerd257d5d2006-02-06 23:44:37 -08001131 pquad = &__tsb_ldquad_phys_patch;
1132 while (pquad < &__tsb_ldquad_phys_patch_end) {
1133 unsigned long addr = pquad->addr;
1134
1135 if (tlb_type == hypervisor)
1136 *(unsigned int *) addr = pquad->sun4v_insn;
1137 else
1138 *(unsigned int *) addr = pquad->sun4u_insn;
1139 wmb();
1140 __asm__ __volatile__("flush %0"
1141 : /* no outputs */
1142 : "r" (addr));
1143
1144 pquad++;
1145 }
1146
David S. Miller517af332006-02-01 15:55:21 -08001147 p = &__tsb_phys_patch;
1148 while (p < &__tsb_phys_patch_end) {
1149 unsigned long addr = p->addr;
1150
1151 *(unsigned int *) addr = p->insn;
1152 wmb();
1153 __asm__ __volatile__("flush %0"
1154 : /* no outputs */
1155 : "r" (addr));
1156
1157 p++;
1158 }
1159}
1160
David S. Miller490384e2006-02-11 14:41:18 -08001161/* Don't mark as init, we give this to the Hypervisor. */
1162static struct hv_tsb_descr ktsb_descr[2];
1163extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
1164
1165static void __init sun4v_ktsb_init(void)
1166{
1167 unsigned long ktsb_pa;
1168
David S. Millerd7744a02006-02-21 22:31:11 -08001169 /* First KTSB for PAGE_SIZE mappings. */
David S. Miller490384e2006-02-11 14:41:18 -08001170 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1171
1172 switch (PAGE_SIZE) {
1173 case 8 * 1024:
1174 default:
1175 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K;
1176 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K;
1177 break;
1178
1179 case 64 * 1024:
1180 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K;
1181 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K;
1182 break;
1183
1184 case 512 * 1024:
1185 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K;
1186 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K;
1187 break;
1188
1189 case 4 * 1024 * 1024:
1190 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB;
1191 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB;
1192 break;
1193 };
1194
David S. Miller3f19a842006-02-17 12:03:20 -08001195 ktsb_descr[0].assoc = 1;
David S. Miller490384e2006-02-11 14:41:18 -08001196 ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
1197 ktsb_descr[0].ctx_idx = 0;
1198 ktsb_descr[0].tsb_base = ktsb_pa;
1199 ktsb_descr[0].resv = 0;
1200
David S. Millerd7744a02006-02-21 22:31:11 -08001201 /* Second KTSB for 4MB/256MB mappings. */
1202 ktsb_pa = (kern_base +
1203 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1204
1205 ktsb_descr[1].pgsz_idx = HV_PGSZ_IDX_4MB;
1206 ktsb_descr[1].pgsz_mask = (HV_PGSZ_MASK_4MB |
1207 HV_PGSZ_MASK_256MB);
1208 ktsb_descr[1].assoc = 1;
1209 ktsb_descr[1].num_ttes = KERNEL_TSB4M_NENTRIES;
1210 ktsb_descr[1].ctx_idx = 0;
1211 ktsb_descr[1].tsb_base = ktsb_pa;
1212 ktsb_descr[1].resv = 0;
David S. Miller490384e2006-02-11 14:41:18 -08001213}
1214
1215void __cpuinit sun4v_ktsb_register(void)
1216{
1217 register unsigned long func asm("%o5");
1218 register unsigned long arg0 asm("%o0");
1219 register unsigned long arg1 asm("%o1");
1220 unsigned long pa;
1221
1222 pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE);
1223
1224 func = HV_FAST_MMU_TSB_CTX0;
David S. Millerd7744a02006-02-21 22:31:11 -08001225 arg0 = 2;
David S. Miller490384e2006-02-11 14:41:18 -08001226 arg1 = pa;
1227 __asm__ __volatile__("ta %6"
1228 : "=&r" (func), "=&r" (arg0), "=&r" (arg1)
1229 : "0" (func), "1" (arg0), "2" (arg1),
1230 "i" (HV_FAST_TRAP));
1231}
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233/* paging_init() sets up the page tables */
1234
1235extern void cheetah_ecache_flush_init(void);
David S. Millerd257d5d2006-02-06 23:44:37 -08001236extern void sun4v_patch_tlb_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238static unsigned long last_valid_pfn;
David S. Miller56425302005-09-25 16:46:57 -07001239pgd_t swapper_pg_dir[2048];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
David S. Millerc4bce902006-02-11 21:57:54 -08001241static void sun4u_pgprot_init(void);
1242static void sun4v_pgprot_init(void);
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244void __init paging_init(void)
1245{
David S. Millerd1112012006-03-08 02:16:07 -08001246 unsigned long end_pfn, pages_avail, shift, phys_base;
David S. Miller0836a0e2005-09-28 21:38:08 -07001247 unsigned long real_end, i;
1248
David S. Miller481295f2006-02-07 21:51:08 -08001249 kern_base = (prom_boot_mapping_phys_low >> 22UL) << 22UL;
1250 kern_size = (unsigned long)&_end - (unsigned long)KERNBASE;
1251
David S. Millerd7744a02006-02-21 22:31:11 -08001252 /* Invalidate both kernel TSBs. */
David S. Miller8b234272006-02-17 18:01:02 -08001253 memset(swapper_tsb, 0x40, sizeof(swapper_tsb));
David S. Millerd7744a02006-02-21 22:31:11 -08001254 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
David S. Miller8b234272006-02-17 18:01:02 -08001255
David S. Millerc4bce902006-02-11 21:57:54 -08001256 if (tlb_type == hypervisor)
1257 sun4v_pgprot_init();
1258 else
1259 sun4u_pgprot_init();
1260
David S. Millerd257d5d2006-02-06 23:44:37 -08001261 if (tlb_type == cheetah_plus ||
1262 tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -08001263 tsb_phys_patch();
1264
David S. Miller490384e2006-02-11 14:41:18 -08001265 if (tlb_type == hypervisor) {
David S. Millerd257d5d2006-02-06 23:44:37 -08001266 sun4v_patch_tlb_handlers();
David S. Miller490384e2006-02-11 14:41:18 -08001267 sun4v_ktsb_init();
1268 }
David S. Millerd257d5d2006-02-06 23:44:37 -08001269
David S. Miller13edad72005-09-29 17:58:26 -07001270 /* Find available physical memory... */
1271 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller0836a0e2005-09-28 21:38:08 -07001272
1273 phys_base = 0xffffffffffffffffUL;
David S. Miller13edad72005-09-29 17:58:26 -07001274 for (i = 0; i < pavail_ents; i++)
1275 phys_base = min(phys_base, pavail[i].phys_addr);
David S. Miller0836a0e2005-09-28 21:38:08 -07001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 set_bit(0, mmu_context_bmap);
1278
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001279 shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE);
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 real_end = (unsigned long)_end;
1282 if ((real_end > ((unsigned long)KERNBASE + 0x400000)))
1283 bigkernel = 1;
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001284 if ((real_end > ((unsigned long)KERNBASE + 0x800000))) {
1285 prom_printf("paging_init: Kernel > 8MB, too large.\n");
1286 prom_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001288
1289 /* Set kernel pgd to upper alias so physical page computations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 * work.
1291 */
1292 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
1293
David S. Miller56425302005-09-25 16:46:57 -07001294 memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 /* Now can init the kernel/bad page tables. */
1297 pud_set(pud_offset(&swapper_pg_dir[0], 0),
David S. Miller56425302005-09-25 16:46:57 -07001298 swapper_low_pmd_dir + (shift / sizeof(pgd_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
David S. Millerc9c10832005-10-12 12:22:46 -07001300 inherit_prom_mappings();
David S. Miller5085b4a2005-09-22 00:45:41 -07001301
David S. Millera8b900d2006-01-31 18:33:37 -08001302 /* Ok, we can use our TLB miss and window trap handlers safely. */
1303 setup_tba();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
David S. Millerc9c10832005-10-12 12:22:46 -07001305 __flush_tlb_all();
David S. Miller9ad98c52005-10-05 15:12:00 -07001306
David S. Miller490384e2006-02-11 14:41:18 -08001307 if (tlb_type == hypervisor)
1308 sun4v_ktsb_register();
1309
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001310 /* Setup bootmem... */
1311 pages_avail = 0;
David S. Millerd1112012006-03-08 02:16:07 -08001312 last_valid_pfn = end_pfn = bootmem_init(&pages_avail, phys_base);
1313
1314 max_mapnr = last_valid_pfn - (phys_base >> PAGE_SHIFT);
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001315
David S. Miller56425302005-09-25 16:46:57 -07001316 kernel_physical_mapping_init();
David S. Miller56425302005-09-25 16:46:57 -07001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 {
1319 unsigned long zones_size[MAX_NR_ZONES];
1320 unsigned long zholes_size[MAX_NR_ZONES];
1321 unsigned long npages;
1322 int znum;
1323
1324 for (znum = 0; znum < MAX_NR_ZONES; znum++)
1325 zones_size[znum] = zholes_size[znum] = 0;
1326
David S. Millerd1112012006-03-08 02:16:07 -08001327 npages = end_pfn - (phys_base >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 zones_size[ZONE_DMA] = npages;
1329 zholes_size[ZONE_DMA] = npages - pages_avail;
1330
1331 free_area_init_node(0, &contig_page_data, zones_size,
1332 phys_base >> PAGE_SHIFT, zholes_size);
1333 }
1334
1335 device_scan();
1336}
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338static void __init taint_real_pages(void)
1339{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 int i;
1341
David S. Miller13edad72005-09-29 17:58:26 -07001342 read_obp_memory("available", &pavail_rescan[0], &pavail_rescan_ents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
David S. Miller13edad72005-09-29 17:58:26 -07001344 /* Find changes discovered in the physmem available rescan and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 * reserve the lost portions in the bootmem maps.
1346 */
David S. Miller13edad72005-09-29 17:58:26 -07001347 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 unsigned long old_start, old_end;
1349
David S. Miller13edad72005-09-29 17:58:26 -07001350 old_start = pavail[i].phys_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 old_end = old_start +
David S. Miller13edad72005-09-29 17:58:26 -07001352 pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 while (old_start < old_end) {
1354 int n;
1355
David S. Miller13edad72005-09-29 17:58:26 -07001356 for (n = 0; pavail_rescan_ents; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 unsigned long new_start, new_end;
1358
David S. Miller13edad72005-09-29 17:58:26 -07001359 new_start = pavail_rescan[n].phys_addr;
1360 new_end = new_start +
1361 pavail_rescan[n].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 if (new_start <= old_start &&
1364 new_end >= (old_start + PAGE_SIZE)) {
David S. Miller13edad72005-09-29 17:58:26 -07001365 set_bit(old_start >> 22,
1366 sparc64_valid_addr_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 goto do_next_page;
1368 }
1369 }
1370 reserve_bootmem(old_start, PAGE_SIZE);
1371
1372 do_next_page:
1373 old_start += PAGE_SIZE;
1374 }
1375 }
1376}
1377
1378void __init mem_init(void)
1379{
1380 unsigned long codepages, datapages, initpages;
1381 unsigned long addr, last;
1382 int i;
1383
1384 i = last_valid_pfn >> ((22 - PAGE_SHIFT) + 6);
1385 i += 1;
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001386 sparc64_valid_addr_bitmap = (unsigned long *) alloc_bootmem(i << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (sparc64_valid_addr_bitmap == NULL) {
1388 prom_printf("mem_init: Cannot alloc valid_addr_bitmap.\n");
1389 prom_halt();
1390 }
1391 memset(sparc64_valid_addr_bitmap, 0, i << 3);
1392
1393 addr = PAGE_OFFSET + kern_base;
1394 last = PAGE_ALIGN(kern_size) + addr;
1395 while (addr < last) {
1396 set_bit(__pa(addr) >> 22, sparc64_valid_addr_bitmap);
1397 addr += PAGE_SIZE;
1398 }
1399
1400 taint_real_pages();
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 high_memory = __va(last_valid_pfn << PAGE_SHIFT);
1403
1404#ifdef CONFIG_DEBUG_BOOTMEM
1405 prom_printf("mem_init: Calling free_all_bootmem().\n");
1406#endif
1407 totalram_pages = num_physpages = free_all_bootmem() - 1;
1408
1409 /*
1410 * Set up the zero page, mark it reserved, so that page count
1411 * is not manipulated when freeing the page from user ptes.
1412 */
1413 mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0);
1414 if (mem_map_zero == NULL) {
1415 prom_printf("paging_init: Cannot alloc zero page.\n");
1416 prom_halt();
1417 }
1418 SetPageReserved(mem_map_zero);
1419
1420 codepages = (((unsigned long) _etext) - ((unsigned long) _start));
1421 codepages = PAGE_ALIGN(codepages) >> PAGE_SHIFT;
1422 datapages = (((unsigned long) _edata) - ((unsigned long) _etext));
1423 datapages = PAGE_ALIGN(datapages) >> PAGE_SHIFT;
1424 initpages = (((unsigned long) __init_end) - ((unsigned long) __init_begin));
1425 initpages = PAGE_ALIGN(initpages) >> PAGE_SHIFT;
1426
1427 printk("Memory: %uk available (%ldk kernel code, %ldk data, %ldk init) [%016lx,%016lx]\n",
1428 nr_free_pages() << (PAGE_SHIFT-10),
1429 codepages << (PAGE_SHIFT-10),
1430 datapages << (PAGE_SHIFT-10),
1431 initpages << (PAGE_SHIFT-10),
1432 PAGE_OFFSET, (last_valid_pfn << PAGE_SHIFT));
1433
1434 if (tlb_type == cheetah || tlb_type == cheetah_plus)
1435 cheetah_ecache_flush_init();
1436}
1437
David S. Miller898cf0e2005-09-23 11:59:44 -07001438void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
1440 unsigned long addr, initend;
1441
1442 /*
1443 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
1444 */
1445 addr = PAGE_ALIGN((unsigned long)(__init_begin));
1446 initend = (unsigned long)(__init_end) & PAGE_MASK;
1447 for (; addr < initend; addr += PAGE_SIZE) {
1448 unsigned long page;
1449 struct page *p;
1450
1451 page = (addr +
1452 ((unsigned long) __va(kern_base)) -
1453 ((unsigned long) KERNBASE));
1454 memset((void *)addr, 0xcc, PAGE_SIZE);
1455 p = virt_to_page(page);
1456
1457 ClearPageReserved(p);
1458 set_page_count(p, 1);
1459 __free_page(p);
1460 num_physpages++;
1461 totalram_pages++;
1462 }
1463}
1464
1465#ifdef CONFIG_BLK_DEV_INITRD
1466void free_initrd_mem(unsigned long start, unsigned long end)
1467{
1468 if (start < end)
1469 printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
1470 for (; start < end; start += PAGE_SIZE) {
1471 struct page *p = virt_to_page(start);
1472
1473 ClearPageReserved(p);
1474 set_page_count(p, 1);
1475 __free_page(p);
1476 num_physpages++;
1477 totalram_pages++;
1478 }
1479}
1480#endif
David S. Millerc4bce902006-02-11 21:57:54 -08001481
David S. Millerc4bce902006-02-11 21:57:54 -08001482#define _PAGE_CACHE_4U (_PAGE_CP_4U | _PAGE_CV_4U)
1483#define _PAGE_CACHE_4V (_PAGE_CP_4V | _PAGE_CV_4V)
1484#define __DIRTY_BITS_4U (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U)
1485#define __DIRTY_BITS_4V (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V)
1486#define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R)
1487#define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R)
1488
1489pgprot_t PAGE_KERNEL __read_mostly;
1490EXPORT_SYMBOL(PAGE_KERNEL);
1491
1492pgprot_t PAGE_KERNEL_LOCKED __read_mostly;
1493pgprot_t PAGE_COPY __read_mostly;
David S. Miller0f159522006-02-18 12:43:16 -08001494
1495pgprot_t PAGE_SHARED __read_mostly;
1496EXPORT_SYMBOL(PAGE_SHARED);
1497
David S. Millerc4bce902006-02-11 21:57:54 -08001498pgprot_t PAGE_EXEC __read_mostly;
1499unsigned long pg_iobits __read_mostly;
1500
1501unsigned long _PAGE_IE __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08001502
David S. Millerc4bce902006-02-11 21:57:54 -08001503unsigned long _PAGE_E __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08001504EXPORT_SYMBOL(_PAGE_E);
1505
David S. Millerc4bce902006-02-11 21:57:54 -08001506unsigned long _PAGE_CACHE __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08001507EXPORT_SYMBOL(_PAGE_CACHE);
David S. Millerc4bce902006-02-11 21:57:54 -08001508
1509static void prot_init_common(unsigned long page_none,
1510 unsigned long page_shared,
1511 unsigned long page_copy,
1512 unsigned long page_readonly,
1513 unsigned long page_exec_bit)
1514{
1515 PAGE_COPY = __pgprot(page_copy);
David S. Miller0f159522006-02-18 12:43:16 -08001516 PAGE_SHARED = __pgprot(page_shared);
David S. Millerc4bce902006-02-11 21:57:54 -08001517
1518 protection_map[0x0] = __pgprot(page_none);
1519 protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit);
1520 protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit);
1521 protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit);
1522 protection_map[0x4] = __pgprot(page_readonly);
1523 protection_map[0x5] = __pgprot(page_readonly);
1524 protection_map[0x6] = __pgprot(page_copy);
1525 protection_map[0x7] = __pgprot(page_copy);
1526 protection_map[0x8] = __pgprot(page_none);
1527 protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit);
1528 protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit);
1529 protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit);
1530 protection_map[0xc] = __pgprot(page_readonly);
1531 protection_map[0xd] = __pgprot(page_readonly);
1532 protection_map[0xe] = __pgprot(page_shared);
1533 protection_map[0xf] = __pgprot(page_shared);
1534}
1535
1536static void __init sun4u_pgprot_init(void)
1537{
1538 unsigned long page_none, page_shared, page_copy, page_readonly;
1539 unsigned long page_exec_bit;
1540
1541 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
1542 _PAGE_CACHE_4U | _PAGE_P_4U |
1543 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
1544 _PAGE_EXEC_4U);
1545 PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
1546 _PAGE_CACHE_4U | _PAGE_P_4U |
1547 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
1548 _PAGE_EXEC_4U | _PAGE_L_4U);
1549 PAGE_EXEC = __pgprot(_PAGE_EXEC_4U);
1550
1551 _PAGE_IE = _PAGE_IE_4U;
1552 _PAGE_E = _PAGE_E_4U;
1553 _PAGE_CACHE = _PAGE_CACHE_4U;
1554
1555 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
1556 __ACCESS_BITS_4U | _PAGE_E_4U);
1557
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001558 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
David S. Millerc4bce902006-02-11 21:57:54 -08001559 0xfffff80000000000;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001560 kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U |
1561 _PAGE_P_4U | _PAGE_W_4U);
1562
1563 /* XXX Should use 256MB on Panther. XXX */
1564 kern_linear_pte_xor[1] = kern_linear_pte_xor[0];
David S. Millerc4bce902006-02-11 21:57:54 -08001565
1566 _PAGE_SZBITS = _PAGE_SZBITS_4U;
1567 _PAGE_ALL_SZ_BITS = (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U |
1568 _PAGE_SZ64K_4U | _PAGE_SZ8K_4U |
1569 _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U);
1570
1571
1572 page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U;
1573 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1574 __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U);
1575 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1576 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
1577 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1578 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
1579
1580 page_exec_bit = _PAGE_EXEC_4U;
1581
1582 prot_init_common(page_none, page_shared, page_copy, page_readonly,
1583 page_exec_bit);
1584}
1585
1586static void __init sun4v_pgprot_init(void)
1587{
1588 unsigned long page_none, page_shared, page_copy, page_readonly;
1589 unsigned long page_exec_bit;
1590
1591 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
1592 _PAGE_CACHE_4V | _PAGE_P_4V |
1593 __ACCESS_BITS_4V | __DIRTY_BITS_4V |
1594 _PAGE_EXEC_4V);
1595 PAGE_KERNEL_LOCKED = PAGE_KERNEL;
1596 PAGE_EXEC = __pgprot(_PAGE_EXEC_4V);
1597
1598 _PAGE_IE = _PAGE_IE_4V;
1599 _PAGE_E = _PAGE_E_4V;
1600 _PAGE_CACHE = _PAGE_CACHE_4V;
1601
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001602 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
David S. Millerc4bce902006-02-11 21:57:54 -08001603 0xfffff80000000000;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001604 kern_linear_pte_xor[0] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1605 _PAGE_P_4V | _PAGE_W_4V);
1606
1607 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
1608 0xfffff80000000000;
1609 kern_linear_pte_xor[1] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1610 _PAGE_P_4V | _PAGE_W_4V);
David S. Millerc4bce902006-02-11 21:57:54 -08001611
1612 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
1613 __ACCESS_BITS_4V | _PAGE_E_4V);
1614
1615 _PAGE_SZBITS = _PAGE_SZBITS_4V;
1616 _PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V |
1617 _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V |
1618 _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V |
1619 _PAGE_SZ64K_4V | _PAGE_SZ8K_4V);
1620
1621 page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | _PAGE_CACHE_4V;
1622 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1623 __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V);
1624 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1625 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
1626 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1627 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
1628
1629 page_exec_bit = _PAGE_EXEC_4V;
1630
1631 prot_init_common(page_none, page_shared, page_copy, page_readonly,
1632 page_exec_bit);
1633}
1634
1635unsigned long pte_sz_bits(unsigned long sz)
1636{
1637 if (tlb_type == hypervisor) {
1638 switch (sz) {
1639 case 8 * 1024:
1640 default:
1641 return _PAGE_SZ8K_4V;
1642 case 64 * 1024:
1643 return _PAGE_SZ64K_4V;
1644 case 512 * 1024:
1645 return _PAGE_SZ512K_4V;
1646 case 4 * 1024 * 1024:
1647 return _PAGE_SZ4MB_4V;
1648 };
1649 } else {
1650 switch (sz) {
1651 case 8 * 1024:
1652 default:
1653 return _PAGE_SZ8K_4U;
1654 case 64 * 1024:
1655 return _PAGE_SZ64K_4U;
1656 case 512 * 1024:
1657 return _PAGE_SZ512K_4U;
1658 case 4 * 1024 * 1024:
1659 return _PAGE_SZ4MB_4U;
1660 };
1661 }
1662}
1663
1664pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size)
1665{
1666 pte_t pte;
David S. Millercf627152006-02-12 21:10:07 -08001667
1668 pte_val(pte) = page | pgprot_val(pgprot_noncached(prot));
David S. Millerc4bce902006-02-11 21:57:54 -08001669 pte_val(pte) |= (((unsigned long)space) << 32);
1670 pte_val(pte) |= pte_sz_bits(page_size);
David S. Millercf627152006-02-12 21:10:07 -08001671
David S. Millerc4bce902006-02-11 21:57:54 -08001672 return pte;
1673}
1674
David S. Millerc4bce902006-02-11 21:57:54 -08001675static unsigned long kern_large_tte(unsigned long paddr)
1676{
1677 unsigned long val;
1678
1679 val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
1680 _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U |
1681 _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U);
1682 if (tlb_type == hypervisor)
1683 val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
1684 _PAGE_CP_4V | _PAGE_CV_4V | _PAGE_P_4V |
1685 _PAGE_EXEC_4V | _PAGE_W_4V);
1686
1687 return val | paddr;
1688}
1689
1690/*
1691 * Translate PROM's mapping we capture at boot time into physical address.
1692 * The second parameter is only set from prom_callback() invocations.
1693 */
1694unsigned long prom_virt_to_phys(unsigned long promva, int *error)
1695{
1696 unsigned long mask;
1697 int i;
1698
1699 mask = _PAGE_PADDR_4U;
1700 if (tlb_type == hypervisor)
1701 mask = _PAGE_PADDR_4V;
1702
1703 for (i = 0; i < prom_trans_ents; i++) {
1704 struct linux_prom_translation *p = &prom_trans[i];
1705
1706 if (promva >= p->virt &&
1707 promva < (p->virt + p->size)) {
1708 unsigned long base = p->data & mask;
1709
1710 if (error)
1711 *error = 0;
1712 return base + (promva & (8192 - 1));
1713 }
1714 }
1715 if (error)
1716 *error = 1;
1717 return 0UL;
1718}
1719
1720/* XXX We should kill off this ugly thing at so me point. XXX */
1721unsigned long sun4u_get_pte(unsigned long addr)
1722{
1723 pgd_t *pgdp;
1724 pud_t *pudp;
1725 pmd_t *pmdp;
1726 pte_t *ptep;
1727 unsigned long mask = _PAGE_PADDR_4U;
1728
1729 if (tlb_type == hypervisor)
1730 mask = _PAGE_PADDR_4V;
1731
1732 if (addr >= PAGE_OFFSET)
1733 return addr & mask;
1734
1735 if ((addr >= LOW_OBP_ADDRESS) && (addr < HI_OBP_ADDRESS))
1736 return prom_virt_to_phys(addr, NULL);
1737
1738 pgdp = pgd_offset_k(addr);
1739 pudp = pud_offset(pgdp, addr);
1740 pmdp = pmd_offset(pudp, addr);
1741 ptep = pte_offset_kernel(pmdp, addr);
1742
1743 return pte_val(*ptep) & mask;
1744}
1745
1746/* If not locked, zap it. */
1747void __flush_tlb_all(void)
1748{
1749 unsigned long pstate;
1750 int i;
1751
1752 __asm__ __volatile__("flushw\n\t"
1753 "rdpr %%pstate, %0\n\t"
1754 "wrpr %0, %1, %%pstate"
1755 : "=r" (pstate)
1756 : "i" (PSTATE_IE));
1757 if (tlb_type == spitfire) {
1758 for (i = 0; i < 64; i++) {
1759 /* Spitfire Errata #32 workaround */
1760 /* NOTE: Always runs on spitfire, so no
1761 * cheetah+ page size encodings.
1762 */
1763 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
1764 "flush %%g6"
1765 : /* No outputs */
1766 : "r" (0),
1767 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
1768
1769 if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) {
1770 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
1771 "membar #Sync"
1772 : /* no outputs */
1773 : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
1774 spitfire_put_dtlb_data(i, 0x0UL);
1775 }
1776
1777 /* Spitfire Errata #32 workaround */
1778 /* NOTE: Always runs on spitfire, so no
1779 * cheetah+ page size encodings.
1780 */
1781 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
1782 "flush %%g6"
1783 : /* No outputs */
1784 : "r" (0),
1785 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
1786
1787 if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) {
1788 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
1789 "membar #Sync"
1790 : /* no outputs */
1791 : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
1792 spitfire_put_itlb_data(i, 0x0UL);
1793 }
1794 }
1795 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1796 cheetah_flush_dtlb_all();
1797 cheetah_flush_itlb_all();
1798 }
1799 __asm__ __volatile__("wrpr %0, 0, %%pstate"
1800 : : "r" (pstate));
1801}