blob: 977698269d3a766584fc050681621cb90cd81e98 [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
David S. Millerc4bce902006-02-11 21:57:54 -08008#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/sched.h>
11#include <linux/string.h>
12#include <linux/init.h>
13#include <linux/bootmem.h>
14#include <linux/mm.h>
15#include <linux/hugetlb.h>
16#include <linux/slab.h>
17#include <linux/initrd.h>
18#include <linux/swap.h>
19#include <linux/pagemap.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070020#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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>
David S. Miller5cbc3072007-05-25 15:49:59 -070026#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/head.h>
29#include <asm/system.h>
30#include <asm/page.h>
31#include <asm/pgalloc.h>
32#include <asm/pgtable.h>
33#include <asm/oplib.h>
34#include <asm/iommu.h>
35#include <asm/io.h>
36#include <asm/uaccess.h>
37#include <asm/mmu_context.h>
38#include <asm/tlbflush.h>
39#include <asm/dma.h>
40#include <asm/starfire.h>
41#include <asm/tlb.h>
42#include <asm/spitfire.h>
43#include <asm/sections.h>
David S. Miller517af332006-02-01 15:55:21 -080044#include <asm/tsb.h>
David S. Miller481295f2006-02-07 21:51:08 -080045#include <asm/hypervisor.h>
David S. Miller372b07b2006-06-21 15:35:28 -070046#include <asm/prom.h>
David S. Miller22d6a1c2007-05-25 00:37:12 -070047#include <asm/sstate.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070048#include <asm/mdesc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
David S. Miller9cc3a1a2006-02-21 20:51:13 -080050#define MAX_PHYS_ADDRESS (1UL << 42UL)
51#define KPTE_BITMAP_CHUNK_SZ (256UL * 1024UL * 1024UL)
52#define KPTE_BITMAP_BYTES \
53 ((MAX_PHYS_ADDRESS / KPTE_BITMAP_CHUNK_SZ) / 8)
54
55unsigned long kern_linear_pte_xor[2] __read_mostly;
56
57/* A bitmap, one bit for every 256MB of physical memory. If the bit
58 * is clear, we should use a 4MB page (via kern_linear_pte_xor[0]) else
59 * if set we should use a 256MB page (via kern_linear_pte_xor[1]).
60 */
61unsigned long kpte_linear_bitmap[KPTE_BITMAP_BYTES / sizeof(unsigned long)];
62
David S. Millerd1acb422007-03-16 17:20:28 -070063#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Millerd7744a02006-02-21 22:31:11 -080064/* A special kernel TSB for 4MB and 256MB linear mappings. */
65struct tsb swapper_4m_tsb[KERNEL_TSB4M_NENTRIES];
David S. Millerd1acb422007-03-16 17:20:28 -070066#endif
David S. Millerd7744a02006-02-21 22:31:11 -080067
David S. Miller13edad72005-09-29 17:58:26 -070068#define MAX_BANKS 32
David S. Miller10147572005-09-28 21:46:43 -070069
David S. Miller13edad72005-09-29 17:58:26 -070070static struct linux_prom64_registers pavail[MAX_BANKS] __initdata;
71static struct linux_prom64_registers pavail_rescan[MAX_BANKS] __initdata;
72static int pavail_ents __initdata;
73static int pavail_rescan_ents __initdata;
David S. Miller10147572005-09-28 21:46:43 -070074
David S. Miller13edad72005-09-29 17:58:26 -070075static int cmp_p64(const void *a, const void *b)
76{
77 const struct linux_prom64_registers *x = a, *y = b;
78
79 if (x->phys_addr > y->phys_addr)
80 return 1;
81 if (x->phys_addr < y->phys_addr)
82 return -1;
83 return 0;
84}
85
86static void __init read_obp_memory(const char *property,
87 struct linux_prom64_registers *regs,
88 int *num_ents)
89{
90 int node = prom_finddevice("/memory");
91 int prop_size = prom_getproplen(node, property);
92 int ents, ret, i;
93
94 ents = prop_size / sizeof(struct linux_prom64_registers);
95 if (ents > MAX_BANKS) {
96 prom_printf("The machine has more %s property entries than "
97 "this kernel can support (%d).\n",
98 property, MAX_BANKS);
99 prom_halt();
100 }
101
102 ret = prom_getproperty(node, property, (char *) regs, prop_size);
103 if (ret == -1) {
104 prom_printf("Couldn't get %s property from /memory.\n");
105 prom_halt();
106 }
107
David S. Miller13edad72005-09-29 17:58:26 -0700108 /* Sanitize what we got from the firmware, by page aligning
109 * everything.
110 */
111 for (i = 0; i < ents; i++) {
112 unsigned long base, size;
113
114 base = regs[i].phys_addr;
115 size = regs[i].reg_size;
116
117 size &= PAGE_MASK;
118 if (base & ~PAGE_MASK) {
119 unsigned long new_base = PAGE_ALIGN(base);
120
121 size -= new_base - base;
122 if ((long) size < 0L)
123 size = 0UL;
124 base = new_base;
125 }
David S. Miller0015d3d2007-03-15 00:06:34 -0700126 if (size == 0UL) {
127 /* If it is empty, simply get rid of it.
128 * This simplifies the logic of the other
129 * functions that process these arrays.
130 */
131 memmove(&regs[i], &regs[i + 1],
132 (ents - i - 1) * sizeof(regs[0]));
133 i--;
134 ents--;
135 continue;
136 }
David S. Miller13edad72005-09-29 17:58:26 -0700137 regs[i].phys_addr = base;
138 regs[i].reg_size = size;
139 }
David S. Miller486ad102006-06-22 00:00:00 -0700140
David S. Miller486ad102006-06-22 00:00:00 -0700141 *num_ents = ents;
142
David S. Millerc9c10832005-10-12 12:22:46 -0700143 sort(regs, ents, sizeof(struct linux_prom64_registers),
David S. Miller13edad72005-09-29 17:58:26 -0700144 cmp_p64, NULL);
145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
David S. Miller2bdb3cb2005-09-22 01:08:57 -0700147unsigned long *sparc64_valid_addr_bitmap __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
David S. Millerd1112012006-03-08 02:16:07 -0800149/* Kernel physical address base and size in bytes. */
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700150unsigned long kern_base __read_mostly;
151unsigned long kern_size __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/* Initial ramdisk setup */
154extern unsigned long sparc_ramdisk_image64;
155extern unsigned int sparc_ramdisk_image;
156extern unsigned int sparc_ramdisk_size;
157
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700158struct page *mem_map_zero __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
David S. Miller0835ae02005-10-04 15:23:20 -0700160unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly;
161
162unsigned long sparc64_kern_pri_context __read_mostly;
163unsigned long sparc64_kern_pri_nuc_bits __read_mostly;
164unsigned long sparc64_kern_sec_context __read_mostly;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166int bigkernel = 0;
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#ifdef CONFIG_DEBUG_DCFLUSH
169atomic_t dcpage_flushes = ATOMIC_INIT(0);
170#ifdef CONFIG_SMP
171atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
172#endif
173#endif
174
David S. Miller7a591cf2006-02-26 19:44:50 -0800175inline void flush_dcache_page_impl(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
David S. Miller7a591cf2006-02-26 19:44:50 -0800177 BUG_ON(tlb_type == hypervisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#ifdef CONFIG_DEBUG_DCFLUSH
179 atomic_inc(&dcpage_flushes);
180#endif
181
182#ifdef DCACHE_ALIASING_POSSIBLE
183 __flush_dcache_page(page_address(page),
184 ((tlb_type == spitfire) &&
185 page_mapping(page) != NULL));
186#else
187 if (page_mapping(page) != NULL &&
188 tlb_type == spitfire)
189 __flush_icache_page(__pa(page_address(page)));
190#endif
191}
192
193#define PG_dcache_dirty PG_arch_1
David S. Miller17b0e192006-03-08 15:57:03 -0800194#define PG_dcache_cpu_shift 24UL
195#define PG_dcache_cpu_mask (256UL - 1UL)
David S. Miller48b0e542005-07-27 16:08:44 -0700196
197#if NR_CPUS > 256
198#error D-cache dirty tracking and thread_info->cpu need fixing for > 256 cpus
199#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201#define dcache_dirty_cpu(page) \
David S. Miller48b0e542005-07-27 16:08:44 -0700202 (((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204static __inline__ void set_dcache_dirty(struct page *page, int this_cpu)
205{
206 unsigned long mask = this_cpu;
David S. Miller48b0e542005-07-27 16:08:44 -0700207 unsigned long non_cpu_bits;
208
209 non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift);
210 mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty);
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 __asm__ __volatile__("1:\n\t"
213 "ldx [%2], %%g7\n\t"
214 "and %%g7, %1, %%g1\n\t"
215 "or %%g1, %0, %%g1\n\t"
216 "casx [%2], %%g7, %%g1\n\t"
217 "cmp %%g7, %%g1\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700218 "membar #StoreLoad | #StoreStore\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700220 " nop"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 : /* no outputs */
222 : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
223 : "g1", "g7");
224}
225
226static __inline__ void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
227{
228 unsigned long mask = (1UL << PG_dcache_dirty);
229
230 __asm__ __volatile__("! test_and_clear_dcache_dirty\n"
231 "1:\n\t"
232 "ldx [%2], %%g7\n\t"
David S. Miller48b0e542005-07-27 16:08:44 -0700233 "srlx %%g7, %4, %%g1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 "and %%g1, %3, %%g1\n\t"
235 "cmp %%g1, %0\n\t"
236 "bne,pn %%icc, 2f\n\t"
237 " andn %%g7, %1, %%g1\n\t"
238 "casx [%2], %%g7, %%g1\n\t"
239 "cmp %%g7, %%g1\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700240 "membar #StoreLoad | #StoreStore\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700242 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 "2:"
244 : /* no outputs */
245 : "r" (cpu), "r" (mask), "r" (&page->flags),
David S. Miller48b0e542005-07-27 16:08:44 -0700246 "i" (PG_dcache_cpu_mask),
247 "i" (PG_dcache_cpu_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 : "g1", "g7");
249}
250
David S. Miller517af332006-02-01 15:55:21 -0800251static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte)
252{
253 unsigned long tsb_addr = (unsigned long) ent;
254
David S. Miller3b3ab2e2006-02-17 09:54:42 -0800255 if (tlb_type == cheetah_plus || tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -0800256 tsb_addr = __pa(tsb_addr);
257
258 __tsb_insert(tsb_addr, tag, pte);
259}
260
David S. Millerc4bce902006-02-11 21:57:54 -0800261unsigned long _PAGE_ALL_SZ_BITS __read_mostly;
262unsigned long _PAGE_SZBITS __read_mostly;
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
265{
David S. Millerbd407912006-01-31 18:31:38 -0800266 struct mm_struct *mm;
David S. Miller74ae9982006-03-05 18:26:24 -0800267 struct tsb *tsb;
David S. Miller7a1ac522006-03-16 02:02:32 -0800268 unsigned long tag, flags;
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800269 unsigned long tsb_index, tsb_hash_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
David S. Miller7a591cf2006-02-26 19:44:50 -0800271 if (tlb_type != hypervisor) {
272 unsigned long pfn = pte_pfn(pte);
273 unsigned long pg_flags;
274 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
David S. Miller7a591cf2006-02-26 19:44:50 -0800276 if (pfn_valid(pfn) &&
277 (page = pfn_to_page(pfn), page_mapping(page)) &&
278 ((pg_flags = page->flags) & (1UL << PG_dcache_dirty))) {
279 int cpu = ((pg_flags >> PG_dcache_cpu_shift) &
280 PG_dcache_cpu_mask);
281 int this_cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
David S. Miller7a591cf2006-02-26 19:44:50 -0800283 /* This is just to optimize away some function calls
284 * in the SMP case.
285 */
286 if (cpu == this_cpu)
287 flush_dcache_page_impl(page);
288 else
289 smp_flush_dcache_page_impl(page, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
David S. Miller7a591cf2006-02-26 19:44:50 -0800291 clear_dcache_dirty_cpu(page, cpu);
292
293 put_cpu();
294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
David S. Millerbd407912006-01-31 18:31:38 -0800296
297 mm = vma->vm_mm;
David S. Miller7a1ac522006-03-16 02:02:32 -0800298
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800299 tsb_index = MM_TSB_BASE;
300 tsb_hash_shift = PAGE_SHIFT;
301
David S. Miller7a1ac522006-03-16 02:02:32 -0800302 spin_lock_irqsave(&mm->context.lock, flags);
303
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800304#ifdef CONFIG_HUGETLB_PAGE
305 if (mm->context.tsb_block[MM_TSB_HUGE].tsb != NULL) {
306 if ((tlb_type == hypervisor &&
307 (pte_val(pte) & _PAGE_SZALL_4V) == _PAGE_SZHUGE_4V) ||
308 (tlb_type != hypervisor &&
309 (pte_val(pte) & _PAGE_SZALL_4U) == _PAGE_SZHUGE_4U)) {
310 tsb_index = MM_TSB_HUGE;
311 tsb_hash_shift = HPAGE_SHIFT;
312 }
313 }
314#endif
315
316 tsb = mm->context.tsb_block[tsb_index].tsb;
317 tsb += ((address >> tsb_hash_shift) &
318 (mm->context.tsb_block[tsb_index].tsb_nentries - 1UL));
David S. Miller74ae9982006-03-05 18:26:24 -0800319 tag = (address >> 22UL);
320 tsb_insert(tsb, tag, pte_val(pte));
David S. Miller7a1ac522006-03-16 02:02:32 -0800321
322 spin_unlock_irqrestore(&mm->context.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325void flush_dcache_page(struct page *page)
326{
David S. Millera9546f52005-04-17 18:03:09 -0700327 struct address_space *mapping;
328 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
David S. Miller7a591cf2006-02-26 19:44:50 -0800330 if (tlb_type == hypervisor)
331 return;
332
David S. Millera9546f52005-04-17 18:03:09 -0700333 /* Do not bother with the expensive D-cache flush if it
334 * is merely the zero page. The 'bigcore' testcase in GDB
335 * causes this case to run millions of times.
336 */
337 if (page == ZERO_PAGE(0))
338 return;
339
340 this_cpu = get_cpu();
341
342 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (mapping && !mapping_mapped(mapping)) {
David S. Millera9546f52005-04-17 18:03:09 -0700344 int dirty = test_bit(PG_dcache_dirty, &page->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (dirty) {
David S. Millera9546f52005-04-17 18:03:09 -0700346 int dirty_cpu = dcache_dirty_cpu(page);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (dirty_cpu == this_cpu)
349 goto out;
350 smp_flush_dcache_page_impl(page, dirty_cpu);
351 }
352 set_dcache_dirty(page, this_cpu);
353 } else {
354 /* We could delay the flush for the !page_mapping
355 * case too. But that case is for exec env/arg
356 * pages and those are %99 certainly going to get
357 * faulted into the tlb (and thus flushed) anyways.
358 */
359 flush_dcache_page_impl(page);
360 }
361
362out:
363 put_cpu();
364}
365
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700366void __kprobes flush_icache_range(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
David S. Millera43fe0e2006-02-04 03:10:53 -0800368 /* Cheetah and Hypervisor platform cpus have coherent I-cache. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (tlb_type == spitfire) {
370 unsigned long kaddr;
371
David S. Millera94aa252007-03-15 15:50:11 -0700372 /* This code only runs on Spitfire cpus so this is
373 * why we can assume _PAGE_PADDR_4U.
374 */
375 for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE) {
376 unsigned long paddr, mask = _PAGE_PADDR_4U;
377
378 if (kaddr >= PAGE_OFFSET)
379 paddr = kaddr & mask;
380 else {
381 pgd_t *pgdp = pgd_offset_k(kaddr);
382 pud_t *pudp = pud_offset(pgdp, kaddr);
383 pmd_t *pmdp = pmd_offset(pudp, kaddr);
384 pte_t *ptep = pte_offset_kernel(pmdp, kaddr);
385
386 paddr = pte_val(*ptep) & mask;
387 }
388 __flush_icache_page(paddr);
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393void show_mem(void)
394{
David S. Miller5be4a962007-03-15 16:00:29 -0700395 unsigned long total = 0, reserved = 0;
396 unsigned long shared = 0, cached = 0;
397 pg_data_t *pgdat;
398
David S. Miller28256ca2007-03-15 15:56:07 -0700399 printk(KERN_INFO "Mem-info:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 show_free_areas();
David S. Miller28256ca2007-03-15 15:56:07 -0700401 printk(KERN_INFO "Free swap: %6ldkB\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 nr_swap_pages << (PAGE_SHIFT-10));
David S. Miller5be4a962007-03-15 16:00:29 -0700403 for_each_online_pgdat(pgdat) {
404 unsigned long i, flags;
405
406 pgdat_resize_lock(pgdat, &flags);
407 for (i = 0; i < pgdat->node_spanned_pages; i++) {
408 struct page *page = pgdat_page_nr(pgdat, i);
409 total++;
410 if (PageReserved(page))
411 reserved++;
412 else if (PageSwapCache(page))
413 cached++;
414 else if (page_count(page))
415 shared += page_count(page) - 1;
416 }
417 pgdat_resize_unlock(pgdat, &flags);
418 }
419
420 printk(KERN_INFO "%lu pages of RAM\n", total);
421 printk(KERN_INFO "%lu reserved pages\n", reserved);
422 printk(KERN_INFO "%lu pages shared\n", shared);
423 printk(KERN_INFO "%lu pages swap cached\n", cached);
424
425 printk(KERN_INFO "%lu pages dirty\n",
426 global_page_state(NR_FILE_DIRTY));
427 printk(KERN_INFO "%lu pages writeback\n",
428 global_page_state(NR_WRITEBACK));
429 printk(KERN_INFO "%lu pages mapped\n",
430 global_page_state(NR_FILE_MAPPED));
431 printk(KERN_INFO "%lu pages slab\n",
432 global_page_state(NR_SLAB_RECLAIMABLE) +
433 global_page_state(NR_SLAB_UNRECLAIMABLE));
434 printk(KERN_INFO "%lu pages pagetables\n",
435 global_page_state(NR_PAGETABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438void mmu_info(struct seq_file *m)
439{
440 if (tlb_type == cheetah)
441 seq_printf(m, "MMU Type\t: Cheetah\n");
442 else if (tlb_type == cheetah_plus)
443 seq_printf(m, "MMU Type\t: Cheetah+\n");
444 else if (tlb_type == spitfire)
445 seq_printf(m, "MMU Type\t: Spitfire\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800446 else if (tlb_type == hypervisor)
447 seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 else
449 seq_printf(m, "MMU Type\t: ???\n");
450
451#ifdef CONFIG_DEBUG_DCFLUSH
452 seq_printf(m, "DCPageFlushes\t: %d\n",
453 atomic_read(&dcpage_flushes));
454#ifdef CONFIG_SMP
455 seq_printf(m, "DCPageFlushesXC\t: %d\n",
456 atomic_read(&dcpage_flushes_xcall));
457#endif /* CONFIG_SMP */
458#endif /* CONFIG_DEBUG_DCFLUSH */
459}
460
David S. Millera94aa252007-03-15 15:50:11 -0700461struct linux_prom_translation {
462 unsigned long virt;
463 unsigned long size;
464 unsigned long data;
465};
466
467/* Exported for kernel TLB miss handling in ktlb.S */
468struct linux_prom_translation prom_trans[512] __read_mostly;
469unsigned int prom_trans_ents __read_mostly;
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/* Exported for SMP bootup purposes. */
472unsigned long kern_locked_tte_data;
473
David S. Miller405599b2005-09-22 00:12:35 -0700474/* The obp translations are saved based on 8k pagesize, since obp can
475 * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS ->
David S. Miller74bf4312006-01-31 18:29:18 -0800476 * HI_OBP_ADDRESS range are handled in ktlb.S.
David S. Miller405599b2005-09-22 00:12:35 -0700477 */
David S. Miller5085b4a2005-09-22 00:45:41 -0700478static inline int in_obp_range(unsigned long vaddr)
479{
480 return (vaddr >= LOW_OBP_ADDRESS &&
481 vaddr < HI_OBP_ADDRESS);
482}
483
David S. Millerc9c10832005-10-12 12:22:46 -0700484static int cmp_ptrans(const void *a, const void *b)
David S. Miller405599b2005-09-22 00:12:35 -0700485{
David S. Millerc9c10832005-10-12 12:22:46 -0700486 const struct linux_prom_translation *x = a, *y = b;
David S. Miller405599b2005-09-22 00:12:35 -0700487
David S. Millerc9c10832005-10-12 12:22:46 -0700488 if (x->virt > y->virt)
489 return 1;
490 if (x->virt < y->virt)
491 return -1;
492 return 0;
David S. Miller405599b2005-09-22 00:12:35 -0700493}
494
David S. Millerc9c10832005-10-12 12:22:46 -0700495/* Read OBP translations property into 'prom_trans[]'. */
David S. Miller9ad98c52005-10-05 15:12:00 -0700496static void __init read_obp_translations(void)
David S. Miller405599b2005-09-22 00:12:35 -0700497{
David S. Millerc9c10832005-10-12 12:22:46 -0700498 int n, node, ents, first, last, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 node = prom_finddevice("/virtual-memory");
501 n = prom_getproplen(node, "translations");
David S. Miller405599b2005-09-22 00:12:35 -0700502 if (unlikely(n == 0 || n == -1)) {
David S. Millerb206fc42005-09-21 22:31:13 -0700503 prom_printf("prom_mappings: Couldn't get size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 prom_halt();
505 }
David S. Miller405599b2005-09-22 00:12:35 -0700506 if (unlikely(n > sizeof(prom_trans))) {
507 prom_printf("prom_mappings: Size %Zd is too big.\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 prom_halt();
509 }
David S. Miller405599b2005-09-22 00:12:35 -0700510
David S. Millerb206fc42005-09-21 22:31:13 -0700511 if ((n = prom_getproperty(node, "translations",
David S. Miller405599b2005-09-22 00:12:35 -0700512 (char *)&prom_trans[0],
513 sizeof(prom_trans))) == -1) {
David S. Millerb206fc42005-09-21 22:31:13 -0700514 prom_printf("prom_mappings: Couldn't get property.\n");
515 prom_halt();
516 }
David S. Miller9ad98c52005-10-05 15:12:00 -0700517
David S. Millerb206fc42005-09-21 22:31:13 -0700518 n = n / sizeof(struct linux_prom_translation);
David S. Miller9ad98c52005-10-05 15:12:00 -0700519
David S. Millerc9c10832005-10-12 12:22:46 -0700520 ents = n;
521
522 sort(prom_trans, ents, sizeof(struct linux_prom_translation),
523 cmp_ptrans, NULL);
524
525 /* Now kick out all the non-OBP entries. */
526 for (i = 0; i < ents; i++) {
527 if (in_obp_range(prom_trans[i].virt))
528 break;
529 }
530 first = i;
531 for (; i < ents; i++) {
532 if (!in_obp_range(prom_trans[i].virt))
533 break;
534 }
535 last = i;
536
537 for (i = 0; i < (last - first); i++) {
538 struct linux_prom_translation *src = &prom_trans[i + first];
539 struct linux_prom_translation *dest = &prom_trans[i];
540
541 *dest = *src;
542 }
543 for (; i < ents; i++) {
544 struct linux_prom_translation *dest = &prom_trans[i];
545 dest->virt = dest->size = dest->data = 0x0UL;
546 }
547
548 prom_trans_ents = last - first;
549
550 if (tlb_type == spitfire) {
551 /* Clear diag TTE bits. */
552 for (i = 0; i < prom_trans_ents; i++)
553 prom_trans[i].data &= ~0x0003fe0000000000UL;
554 }
David S. Miller405599b2005-09-22 00:12:35 -0700555}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
David S. Millerd82ace72006-02-09 02:52:44 -0800557static void __init hypervisor_tlb_lock(unsigned long vaddr,
558 unsigned long pte,
559 unsigned long mmu)
560{
David S. Miller164c2202006-02-09 22:57:21 -0800561 register unsigned long func asm("%o5");
562 register unsigned long arg0 asm("%o0");
563 register unsigned long arg1 asm("%o1");
564 register unsigned long arg2 asm("%o2");
565 register unsigned long arg3 asm("%o3");
David S. Millerd82ace72006-02-09 02:52:44 -0800566
567 func = HV_FAST_MMU_MAP_PERM_ADDR;
568 arg0 = vaddr;
569 arg1 = 0;
570 arg2 = pte;
571 arg3 = mmu;
572 __asm__ __volatile__("ta 0x80"
573 : "=&r" (func), "=&r" (arg0),
574 "=&r" (arg1), "=&r" (arg2),
575 "=&r" (arg3)
576 : "0" (func), "1" (arg0), "2" (arg1),
577 "3" (arg2), "4" (arg3));
David S. Miller12e126a2006-02-17 14:40:30 -0800578 if (arg0 != 0) {
579 prom_printf("hypervisor_tlb_lock[%lx:%lx:%lx:%lx]: "
580 "errors with %lx\n", vaddr, 0, pte, mmu, arg0);
581 prom_halt();
582 }
David S. Millerd82ace72006-02-09 02:52:44 -0800583}
584
David S. Millerc4bce902006-02-11 21:57:54 -0800585static unsigned long kern_large_tte(unsigned long paddr);
586
David S. Miller898cf0e2005-09-23 11:59:44 -0700587static void __init remap_kernel(void)
David S. Miller405599b2005-09-22 00:12:35 -0700588{
589 unsigned long phys_page, tte_vaddr, tte_data;
David S. Miller405599b2005-09-22 00:12:35 -0700590 int tlb_ent = sparc64_highest_locked_tlbent();
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 tte_vaddr = (unsigned long) KERNBASE;
David S. Millerbff06d52005-09-22 20:11:33 -0700593 phys_page = (prom_boot_mapping_phys_low >> 22UL) << 22UL;
David S. Millerc4bce902006-02-11 21:57:54 -0800594 tte_data = kern_large_tte(phys_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 kern_locked_tte_data = tte_data;
597
David S. Millerd82ace72006-02-09 02:52:44 -0800598 /* Now lock us into the TLBs via Hypervisor or OBP. */
599 if (tlb_type == hypervisor) {
600 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
601 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
602 if (bigkernel) {
603 tte_vaddr += 0x400000;
604 tte_data += 0x400000;
605 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
606 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
607 }
608 } else {
609 prom_dtlb_load(tlb_ent, tte_data, tte_vaddr);
610 prom_itlb_load(tlb_ent, tte_data, tte_vaddr);
611 if (bigkernel) {
612 tlb_ent -= 1;
613 prom_dtlb_load(tlb_ent,
614 tte_data + 0x400000,
615 tte_vaddr + 0x400000);
616 prom_itlb_load(tlb_ent,
617 tte_data + 0x400000,
618 tte_vaddr + 0x400000);
619 }
620 sparc64_highest_unlocked_tlb_ent = tlb_ent - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
David S. Miller0835ae02005-10-04 15:23:20 -0700622 if (tlb_type == cheetah_plus) {
623 sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 |
624 CTX_CHEETAH_PLUS_NUC);
625 sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC;
626 sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0;
627 }
David S. Miller405599b2005-09-22 00:12:35 -0700628}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
David S. Miller405599b2005-09-22 00:12:35 -0700630
David S. Millerc9c10832005-10-12 12:22:46 -0700631static void __init inherit_prom_mappings(void)
David S. Miller9ad98c52005-10-05 15:12:00 -0700632{
633 read_obp_translations();
David S. Miller405599b2005-09-22 00:12:35 -0700634
635 /* Now fixup OBP's idea about where we really are mapped. */
636 prom_printf("Remapping the kernel... ");
637 remap_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 prom_printf("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641void prom_world(int enter)
642{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (!enter)
644 set_fs((mm_segment_t) { get_thread_current_ds() });
645
David S. Miller3487d1d2006-01-31 18:33:25 -0800646 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649#ifdef DCACHE_ALIASING_POSSIBLE
650void __flush_dcache_range(unsigned long start, unsigned long end)
651{
652 unsigned long va;
653
654 if (tlb_type == spitfire) {
655 int n = 0;
656
657 for (va = start; va < end; va += 32) {
658 spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
659 if (++n >= 512)
660 break;
661 }
David S. Millera43fe0e2006-02-04 03:10:53 -0800662 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 start = __pa(start);
664 end = __pa(end);
665 for (va = start; va < end; va += 32)
666 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
667 "membar #Sync"
668 : /* no outputs */
669 : "r" (va),
670 "i" (ASI_DCACHE_INVALIDATE));
671 }
672}
673#endif /* DCACHE_ALIASING_POSSIBLE */
674
David S. Miller85f1e1f2007-03-15 17:51:26 -0700675/* get_new_mmu_context() uses "cache + 1". */
676DEFINE_SPINLOCK(ctx_alloc_lock);
677unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
678#define MAX_CTX_NR (1UL << CTX_NR_BITS)
679#define CTX_BMAP_SLOTS BITS_TO_LONGS(MAX_CTX_NR)
680DECLARE_BITMAP(mmu_context_bmap, MAX_CTX_NR);
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/* Caller does TLB context flushing on local CPU if necessary.
683 * The caller also ensures that CTX_VALID(mm->context) is false.
684 *
685 * We must be careful about boundary cases so that we never
686 * let the user have CTX 0 (nucleus) or we ever use a CTX
687 * version of zero (and thus NO_CONTEXT would not be caught
688 * by version mis-match tests in mmu_context.h).
David S. Millera0663a72006-02-23 14:19:28 -0800689 *
690 * Always invoked with interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 */
692void get_new_mmu_context(struct mm_struct *mm)
693{
694 unsigned long ctx, new_ctx;
695 unsigned long orig_pgsz_bits;
David S. Millera77754b2006-03-06 19:59:50 -0800696 unsigned long flags;
David S. Millera0663a72006-02-23 14:19:28 -0800697 int new_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
David S. Millera77754b2006-03-06 19:59:50 -0800699 spin_lock_irqsave(&ctx_alloc_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK);
701 ctx = (tlb_context_cache + 1) & CTX_NR_MASK;
702 new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx);
David S. Millera0663a72006-02-23 14:19:28 -0800703 new_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (new_ctx >= (1 << CTX_NR_BITS)) {
705 new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
706 if (new_ctx >= ctx) {
707 int i;
708 new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
709 CTX_FIRST_VERSION;
710 if (new_ctx == 1)
711 new_ctx = CTX_FIRST_VERSION;
712
713 /* Don't call memset, for 16 entries that's just
714 * plain silly...
715 */
716 mmu_context_bmap[0] = 3;
717 mmu_context_bmap[1] = 0;
718 mmu_context_bmap[2] = 0;
719 mmu_context_bmap[3] = 0;
720 for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
721 mmu_context_bmap[i + 0] = 0;
722 mmu_context_bmap[i + 1] = 0;
723 mmu_context_bmap[i + 2] = 0;
724 mmu_context_bmap[i + 3] = 0;
725 }
David S. Millera0663a72006-02-23 14:19:28 -0800726 new_version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 goto out;
728 }
729 }
730 mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
731 new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
732out:
733 tlb_context_cache = new_ctx;
734 mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits;
David S. Millera77754b2006-03-06 19:59:50 -0800735 spin_unlock_irqrestore(&ctx_alloc_lock, flags);
David S. Millera0663a72006-02-23 14:19:28 -0800736
737 if (unlikely(new_version))
738 smp_new_mmu_context_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
David S. Millerd1112012006-03-08 02:16:07 -0800741/* Find a free area for the bootmem map, avoiding the kernel image
742 * and the initial ramdisk.
743 */
744static unsigned long __init choose_bootmap_pfn(unsigned long start_pfn,
745 unsigned long end_pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
David S. Millerd1112012006-03-08 02:16:07 -0800747 unsigned long avoid_start, avoid_end, bootmap_size;
748 int i;
749
David S. Miller39964652007-03-15 19:36:53 -0700750 bootmap_size = bootmem_bootmap_pages(end_pfn - start_pfn);
751 bootmap_size <<= PAGE_SHIFT;
David S. Millerd1112012006-03-08 02:16:07 -0800752
753 avoid_start = avoid_end = 0;
754#ifdef CONFIG_BLK_DEV_INITRD
755 avoid_start = initrd_start;
756 avoid_end = PAGE_ALIGN(initrd_end);
757#endif
758
759#ifdef CONFIG_DEBUG_BOOTMEM
760 prom_printf("choose_bootmap_pfn: kern[%lx:%lx] avoid[%lx:%lx]\n",
761 kern_base, PAGE_ALIGN(kern_base + kern_size),
762 avoid_start, avoid_end);
763#endif
764 for (i = 0; i < pavail_ents; i++) {
765 unsigned long start, end;
766
767 start = pavail[i].phys_addr;
768 end = start + pavail[i].reg_size;
769
770 while (start < end) {
771 if (start >= kern_base &&
772 start < PAGE_ALIGN(kern_base + kern_size)) {
773 start = PAGE_ALIGN(kern_base + kern_size);
774 continue;
775 }
776 if (start >= avoid_start && start < avoid_end) {
777 start = avoid_end;
778 continue;
779 }
780
781 if ((end - start) < bootmap_size)
782 break;
783
784 if (start < kern_base &&
785 (start + bootmap_size) > kern_base) {
786 start = PAGE_ALIGN(kern_base + kern_size);
787 continue;
788 }
789
790 if (start < avoid_start &&
791 (start + bootmap_size) > avoid_start) {
792 start = avoid_end;
793 continue;
794 }
795
796 /* OK, it doesn't overlap anything, use it. */
797#ifdef CONFIG_DEBUG_BOOTMEM
798 prom_printf("choose_bootmap_pfn: Using %lx [%lx]\n",
799 start >> PAGE_SHIFT, start);
800#endif
801 return start >> PAGE_SHIFT;
802 }
803 }
804
805 prom_printf("Cannot find free area for bootmap, aborting.\n");
806 prom_halt();
807}
808
David S. Miller6fc5bae2006-12-28 21:00:23 -0800809static void __init trim_pavail(unsigned long *cur_size_p,
810 unsigned long *end_of_phys_p)
811{
812 unsigned long to_trim = *cur_size_p - cmdline_memory_size;
813 unsigned long avoid_start, avoid_end;
814 int i;
815
816 to_trim = PAGE_ALIGN(to_trim);
817
818 avoid_start = avoid_end = 0;
819#ifdef CONFIG_BLK_DEV_INITRD
820 avoid_start = initrd_start;
821 avoid_end = PAGE_ALIGN(initrd_end);
822#endif
823
824 /* Trim some pavail[] entries in order to satisfy the
825 * requested "mem=xxx" kernel command line specification.
826 *
827 * We must not trim off the kernel image area nor the
828 * initial ramdisk range (if any). Also, we must not trim
829 * any pavail[] entry down to zero in order to preserve
830 * the invariant that all pavail[] entries have a non-zero
831 * size which is assumed by all of the code in here.
832 */
833 for (i = 0; i < pavail_ents; i++) {
834 unsigned long start, end, kern_end;
835 unsigned long trim_low, trim_high, n;
836
837 kern_end = PAGE_ALIGN(kern_base + kern_size);
838
839 trim_low = start = pavail[i].phys_addr;
840 trim_high = end = start + pavail[i].reg_size;
841
842 if (kern_base >= start &&
843 kern_base < end) {
844 trim_low = kern_base;
845 if (kern_end >= end)
846 continue;
847 }
848 if (kern_end >= start &&
849 kern_end < end) {
850 trim_high = kern_end;
851 }
852 if (avoid_start &&
853 avoid_start >= start &&
854 avoid_start < end) {
855 if (trim_low > avoid_start)
856 trim_low = avoid_start;
857 if (avoid_end >= end)
858 continue;
859 }
860 if (avoid_end &&
861 avoid_end >= start &&
862 avoid_end < end) {
863 if (trim_high < avoid_end)
864 trim_high = avoid_end;
865 }
866
867 if (trim_high <= trim_low)
868 continue;
869
870 if (trim_low == start && trim_high == end) {
871 /* Whole chunk is available for trimming.
872 * Trim all except one page, in order to keep
873 * entry non-empty.
874 */
875 n = (end - start) - PAGE_SIZE;
876 if (n > to_trim)
877 n = to_trim;
878
879 if (n) {
880 pavail[i].phys_addr += n;
881 pavail[i].reg_size -= n;
882 to_trim -= n;
883 }
884 } else {
885 n = (trim_low - start);
886 if (n > to_trim)
887 n = to_trim;
888
889 if (n) {
890 pavail[i].phys_addr += n;
891 pavail[i].reg_size -= n;
892 to_trim -= n;
893 }
894 if (to_trim) {
895 n = end - trim_high;
896 if (n > to_trim)
897 n = to_trim;
898 if (n) {
899 pavail[i].reg_size -= n;
900 to_trim -= n;
901 }
902 }
903 }
904
905 if (!to_trim)
906 break;
907 }
908
909 /* Recalculate. */
910 *cur_size_p = 0UL;
911 for (i = 0; i < pavail_ents; i++) {
912 *end_of_phys_p = pavail[i].phys_addr +
913 pavail[i].reg_size;
914 *cur_size_p += pavail[i].reg_size;
915 }
916}
917
David S. Millerf1cfdb52007-03-15 22:52:18 -0700918/* About pages_avail, this is the value we will use to calculate
919 * the zholes_size[] argument given to free_area_init_node(). The
920 * page allocator uses this to calculate nr_kernel_pages,
921 * nr_all_pages and zone->present_pages. On NUMA it is used
922 * to calculate zone->min_unmapped_pages and zone->min_slab_pages.
923 *
924 * So this number should really be set to what the page allocator
925 * actually ends up with. This means:
926 * 1) It should include bootmem map pages, we'll release those.
927 * 2) It should not include the kernel image, except for the
928 * __init sections which we will also release.
929 * 3) It should include the initrd image, since we'll release
930 * that too.
931 */
David S. Millerd1112012006-03-08 02:16:07 -0800932static unsigned long __init bootmem_init(unsigned long *pages_avail,
933 unsigned long phys_base)
934{
935 unsigned long bootmap_size, end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 unsigned long end_of_phys_memory = 0UL;
937 unsigned long bootmap_pfn, bytes_avail, size;
938 int i;
939
940#ifdef CONFIG_DEBUG_BOOTMEM
David S. Miller13edad72005-09-29 17:58:26 -0700941 prom_printf("bootmem_init: Scan pavail, ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942#endif
943
944 bytes_avail = 0UL;
David S. Miller13edad72005-09-29 17:58:26 -0700945 for (i = 0; i < pavail_ents; i++) {
946 end_of_phys_memory = pavail[i].phys_addr +
947 pavail[i].reg_size;
948 bytes_avail += pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
David S. Miller6fc5bae2006-12-28 21:00:23 -0800951 /* Determine the location of the initial ramdisk before trying
952 * to honor the "mem=xxx" command line argument. We must know
953 * where the kernel image and the ramdisk image are so that we
954 * do not trim those two areas from the physical memory map.
955 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957#ifdef CONFIG_BLK_DEV_INITRD
958 /* Now have to check initial ramdisk, so that bootmap does not overwrite it */
959 if (sparc_ramdisk_image || sparc_ramdisk_image64) {
960 unsigned long ramdisk_image = sparc_ramdisk_image ?
961 sparc_ramdisk_image : sparc_ramdisk_image64;
David S. Miller715a0ec2006-09-26 23:14:21 -0700962 ramdisk_image -= KERNBASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 initrd_start = ramdisk_image + phys_base;
964 initrd_end = initrd_start + sparc_ramdisk_size;
965 if (initrd_end > end_of_phys_memory) {
966 printk(KERN_CRIT "initrd extends beyond end of memory "
967 "(0x%016lx > 0x%016lx)\ndisabling initrd\n",
968 initrd_end, end_of_phys_memory);
969 initrd_start = 0;
David S. Millerd1112012006-03-08 02:16:07 -0800970 initrd_end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
972 }
973#endif
David S. Miller6fc5bae2006-12-28 21:00:23 -0800974
975 if (cmdline_memory_size &&
976 bytes_avail > cmdline_memory_size)
977 trim_pavail(&bytes_avail,
978 &end_of_phys_memory);
979
980 *pages_avail = bytes_avail >> PAGE_SHIFT;
981
982 end_pfn = end_of_phys_memory >> PAGE_SHIFT;
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 /* Initialize the boot-time allocator. */
985 max_pfn = max_low_pfn = end_pfn;
David S. Millerd1112012006-03-08 02:16:07 -0800986 min_low_pfn = (phys_base >> PAGE_SHIFT);
987
988 bootmap_pfn = choose_bootmap_pfn(min_low_pfn, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990#ifdef CONFIG_DEBUG_BOOTMEM
991 prom_printf("init_bootmem(min[%lx], bootmap[%lx], max[%lx])\n",
992 min_low_pfn, bootmap_pfn, max_low_pfn);
993#endif
David S. Millerd1112012006-03-08 02:16:07 -0800994 bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap_pfn,
David S. Miller17b0e192006-03-08 15:57:03 -0800995 min_low_pfn, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /* Now register the available physical memory with the
998 * allocator.
999 */
David S. Miller13edad72005-09-29 17:58:26 -07001000 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001#ifdef CONFIG_DEBUG_BOOTMEM
David S. Miller13edad72005-09-29 17:58:26 -07001002 prom_printf("free_bootmem(pavail:%d): base[%lx] size[%lx]\n",
1003 i, pavail[i].phys_addr, pavail[i].reg_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004#endif
David S. Miller13edad72005-09-29 17:58:26 -07001005 free_bootmem(pavail[i].phys_addr, pavail[i].reg_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007
1008#ifdef CONFIG_BLK_DEV_INITRD
1009 if (initrd_start) {
1010 size = initrd_end - initrd_start;
1011
Simon Arlotte5dd42e2007-05-11 13:52:08 -07001012 /* Reserve the initrd image area. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013#ifdef CONFIG_DEBUG_BOOTMEM
1014 prom_printf("reserve_bootmem(initrd): base[%llx] size[%lx]\n",
1015 initrd_start, initrd_end);
1016#endif
1017 reserve_bootmem(initrd_start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 initrd_start += PAGE_OFFSET;
1020 initrd_end += PAGE_OFFSET;
1021 }
1022#endif
1023 /* Reserve the kernel text/data/bss. */
1024#ifdef CONFIG_DEBUG_BOOTMEM
1025 prom_printf("reserve_bootmem(kernel): base[%lx] size[%lx]\n", kern_base, kern_size);
1026#endif
1027 reserve_bootmem(kern_base, kern_size);
1028 *pages_avail -= PAGE_ALIGN(kern_size) >> PAGE_SHIFT;
1029
David S. Millerf1cfdb52007-03-15 22:52:18 -07001030 /* Add back in the initmem pages. */
1031 size = ((unsigned long)(__init_end) & PAGE_MASK) -
1032 PAGE_ALIGN((unsigned long)__init_begin);
1033 *pages_avail += size >> PAGE_SHIFT;
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 /* Reserve the bootmem map. We do not account for it
1036 * in pages_avail because we will release that memory
1037 * in free_all_bootmem.
1038 */
1039 size = bootmap_size;
1040#ifdef CONFIG_DEBUG_BOOTMEM
1041 prom_printf("reserve_bootmem(bootmap): base[%lx] size[%lx]\n",
1042 (bootmap_pfn << PAGE_SHIFT), size);
1043#endif
1044 reserve_bootmem((bootmap_pfn << PAGE_SHIFT), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
David S. Millerd1112012006-03-08 02:16:07 -08001046 for (i = 0; i < pavail_ents; i++) {
1047 unsigned long start_pfn, end_pfn;
1048
1049 start_pfn = pavail[i].phys_addr >> PAGE_SHIFT;
1050 end_pfn = (start_pfn + (pavail[i].reg_size >> PAGE_SHIFT));
1051#ifdef CONFIG_DEBUG_BOOTMEM
1052 prom_printf("memory_present(0, %lx, %lx)\n",
1053 start_pfn, end_pfn);
1054#endif
1055 memory_present(0, start_pfn, end_pfn);
1056 }
1057
1058 sparse_init();
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return end_pfn;
1061}
1062
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001063static struct linux_prom64_registers pall[MAX_BANKS] __initdata;
1064static int pall_ents __initdata;
1065
David S. Miller56425302005-09-25 16:46:57 -07001066#ifdef CONFIG_DEBUG_PAGEALLOC
1067static unsigned long kernel_map_range(unsigned long pstart, unsigned long pend, pgprot_t prot)
1068{
1069 unsigned long vstart = PAGE_OFFSET + pstart;
1070 unsigned long vend = PAGE_OFFSET + pend;
1071 unsigned long alloc_bytes = 0UL;
1072
1073 if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) {
David S. Miller13edad72005-09-29 17:58:26 -07001074 prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n",
David S. Miller56425302005-09-25 16:46:57 -07001075 vstart, vend);
1076 prom_halt();
1077 }
1078
1079 while (vstart < vend) {
1080 unsigned long this_end, paddr = __pa(vstart);
1081 pgd_t *pgd = pgd_offset_k(vstart);
1082 pud_t *pud;
1083 pmd_t *pmd;
1084 pte_t *pte;
1085
1086 pud = pud_offset(pgd, vstart);
1087 if (pud_none(*pud)) {
1088 pmd_t *new;
1089
1090 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1091 alloc_bytes += PAGE_SIZE;
1092 pud_populate(&init_mm, pud, new);
1093 }
1094
1095 pmd = pmd_offset(pud, vstart);
1096 if (!pmd_present(*pmd)) {
1097 pte_t *new;
1098
1099 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1100 alloc_bytes += PAGE_SIZE;
1101 pmd_populate_kernel(&init_mm, pmd, new);
1102 }
1103
1104 pte = pte_offset_kernel(pmd, vstart);
1105 this_end = (vstart + PMD_SIZE) & PMD_MASK;
1106 if (this_end > vend)
1107 this_end = vend;
1108
1109 while (vstart < this_end) {
1110 pte_val(*pte) = (paddr | pgprot_val(prot));
1111
1112 vstart += PAGE_SIZE;
1113 paddr += PAGE_SIZE;
1114 pte++;
1115 }
1116 }
1117
1118 return alloc_bytes;
1119}
1120
David S. Miller56425302005-09-25 16:46:57 -07001121extern unsigned int kvmap_linear_patch[1];
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001122#endif /* CONFIG_DEBUG_PAGEALLOC */
1123
1124static void __init mark_kpte_bitmap(unsigned long start, unsigned long end)
1125{
1126 const unsigned long shift_256MB = 28;
1127 const unsigned long mask_256MB = ((1UL << shift_256MB) - 1UL);
1128 const unsigned long size_256MB = (1UL << shift_256MB);
1129
1130 while (start < end) {
1131 long remains;
1132
David S. Millerf7c00332006-03-05 22:18:50 -08001133 remains = end - start;
1134 if (remains < size_256MB)
1135 break;
1136
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001137 if (start & mask_256MB) {
1138 start = (start + size_256MB) & ~mask_256MB;
1139 continue;
1140 }
1141
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001142 while (remains >= size_256MB) {
1143 unsigned long index = start >> shift_256MB;
1144
1145 __set_bit(index, kpte_linear_bitmap);
1146
1147 start += size_256MB;
1148 remains -= size_256MB;
1149 }
1150 }
1151}
David S. Miller56425302005-09-25 16:46:57 -07001152
1153static void __init kernel_physical_mapping_init(void)
1154{
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001155 unsigned long i;
1156#ifdef CONFIG_DEBUG_PAGEALLOC
1157 unsigned long mem_alloced = 0UL;
1158#endif
David S. Miller56425302005-09-25 16:46:57 -07001159
David S. Miller13edad72005-09-29 17:58:26 -07001160 read_obp_memory("reg", &pall[0], &pall_ents);
1161
1162 for (i = 0; i < pall_ents; i++) {
David S. Miller56425302005-09-25 16:46:57 -07001163 unsigned long phys_start, phys_end;
1164
David S. Miller13edad72005-09-29 17:58:26 -07001165 phys_start = pall[i].phys_addr;
1166 phys_end = phys_start + pall[i].reg_size;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001167
1168 mark_kpte_bitmap(phys_start, phys_end);
1169
1170#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001171 mem_alloced += kernel_map_range(phys_start, phys_end,
1172 PAGE_KERNEL);
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001173#endif
David S. Miller56425302005-09-25 16:46:57 -07001174 }
1175
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001176#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001177 printk("Allocated %ld bytes for kernel page tables.\n",
1178 mem_alloced);
1179
1180 kvmap_linear_patch[0] = 0x01000000; /* nop */
1181 flushi(&kvmap_linear_patch[0]);
1182
1183 __flush_tlb_all();
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001184#endif
David S. Miller56425302005-09-25 16:46:57 -07001185}
1186
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001187#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001188void kernel_map_pages(struct page *page, int numpages, int enable)
1189{
1190 unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT;
1191 unsigned long phys_end = phys_start + (numpages * PAGE_SIZE);
1192
1193 kernel_map_range(phys_start, phys_end,
1194 (enable ? PAGE_KERNEL : __pgprot(0)));
1195
David S. Miller74bf4312006-01-31 18:29:18 -08001196 flush_tsb_kernel_range(PAGE_OFFSET + phys_start,
1197 PAGE_OFFSET + phys_end);
1198
David S. Miller56425302005-09-25 16:46:57 -07001199 /* we should perform an IPI and flush all tlbs,
1200 * but that can deadlock->flush only current cpu.
1201 */
1202 __flush_tlb_kernel_range(PAGE_OFFSET + phys_start,
1203 PAGE_OFFSET + phys_end);
1204}
1205#endif
1206
David S. Miller10147572005-09-28 21:46:43 -07001207unsigned long __init find_ecache_flush_span(unsigned long size)
1208{
David S. Miller13edad72005-09-29 17:58:26 -07001209 int i;
David S. Miller10147572005-09-28 21:46:43 -07001210
David S. Miller13edad72005-09-29 17:58:26 -07001211 for (i = 0; i < pavail_ents; i++) {
1212 if (pavail[i].reg_size >= size)
1213 return pavail[i].phys_addr;
David S. Miller10147572005-09-28 21:46:43 -07001214 }
1215
1216 return ~0UL;
1217}
1218
David S. Miller517af332006-02-01 15:55:21 -08001219static void __init tsb_phys_patch(void)
1220{
David S. Millerd257d5d2006-02-06 23:44:37 -08001221 struct tsb_ldquad_phys_patch_entry *pquad;
David S. Miller517af332006-02-01 15:55:21 -08001222 struct tsb_phys_patch_entry *p;
1223
David S. Millerd257d5d2006-02-06 23:44:37 -08001224 pquad = &__tsb_ldquad_phys_patch;
1225 while (pquad < &__tsb_ldquad_phys_patch_end) {
1226 unsigned long addr = pquad->addr;
1227
1228 if (tlb_type == hypervisor)
1229 *(unsigned int *) addr = pquad->sun4v_insn;
1230 else
1231 *(unsigned int *) addr = pquad->sun4u_insn;
1232 wmb();
1233 __asm__ __volatile__("flush %0"
1234 : /* no outputs */
1235 : "r" (addr));
1236
1237 pquad++;
1238 }
1239
David S. Miller517af332006-02-01 15:55:21 -08001240 p = &__tsb_phys_patch;
1241 while (p < &__tsb_phys_patch_end) {
1242 unsigned long addr = p->addr;
1243
1244 *(unsigned int *) addr = p->insn;
1245 wmb();
1246 __asm__ __volatile__("flush %0"
1247 : /* no outputs */
1248 : "r" (addr));
1249
1250 p++;
1251 }
1252}
1253
David S. Miller490384e2006-02-11 14:41:18 -08001254/* Don't mark as init, we give this to the Hypervisor. */
David S. Millerd1acb422007-03-16 17:20:28 -07001255#ifndef CONFIG_DEBUG_PAGEALLOC
1256#define NUM_KTSB_DESCR 2
1257#else
1258#define NUM_KTSB_DESCR 1
1259#endif
1260static struct hv_tsb_descr ktsb_descr[NUM_KTSB_DESCR];
David S. Miller490384e2006-02-11 14:41:18 -08001261extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
1262
1263static void __init sun4v_ktsb_init(void)
1264{
1265 unsigned long ktsb_pa;
1266
David S. Millerd7744a02006-02-21 22:31:11 -08001267 /* First KTSB for PAGE_SIZE mappings. */
David S. Miller490384e2006-02-11 14:41:18 -08001268 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1269
1270 switch (PAGE_SIZE) {
1271 case 8 * 1024:
1272 default:
1273 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K;
1274 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K;
1275 break;
1276
1277 case 64 * 1024:
1278 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K;
1279 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K;
1280 break;
1281
1282 case 512 * 1024:
1283 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K;
1284 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K;
1285 break;
1286
1287 case 4 * 1024 * 1024:
1288 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB;
1289 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB;
1290 break;
1291 };
1292
David S. Miller3f19a842006-02-17 12:03:20 -08001293 ktsb_descr[0].assoc = 1;
David S. Miller490384e2006-02-11 14:41:18 -08001294 ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
1295 ktsb_descr[0].ctx_idx = 0;
1296 ktsb_descr[0].tsb_base = ktsb_pa;
1297 ktsb_descr[0].resv = 0;
1298
David S. Millerd1acb422007-03-16 17:20:28 -07001299#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Millerd7744a02006-02-21 22:31:11 -08001300 /* Second KTSB for 4MB/256MB mappings. */
1301 ktsb_pa = (kern_base +
1302 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1303
1304 ktsb_descr[1].pgsz_idx = HV_PGSZ_IDX_4MB;
1305 ktsb_descr[1].pgsz_mask = (HV_PGSZ_MASK_4MB |
1306 HV_PGSZ_MASK_256MB);
1307 ktsb_descr[1].assoc = 1;
1308 ktsb_descr[1].num_ttes = KERNEL_TSB4M_NENTRIES;
1309 ktsb_descr[1].ctx_idx = 0;
1310 ktsb_descr[1].tsb_base = ktsb_pa;
1311 ktsb_descr[1].resv = 0;
David S. Millerd1acb422007-03-16 17:20:28 -07001312#endif
David S. Miller490384e2006-02-11 14:41:18 -08001313}
1314
1315void __cpuinit sun4v_ktsb_register(void)
1316{
1317 register unsigned long func asm("%o5");
1318 register unsigned long arg0 asm("%o0");
1319 register unsigned long arg1 asm("%o1");
1320 unsigned long pa;
1321
1322 pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE);
1323
1324 func = HV_FAST_MMU_TSB_CTX0;
David S. Millerd1acb422007-03-16 17:20:28 -07001325 arg0 = NUM_KTSB_DESCR;
David S. Miller490384e2006-02-11 14:41:18 -08001326 arg1 = pa;
1327 __asm__ __volatile__("ta %6"
1328 : "=&r" (func), "=&r" (arg0), "=&r" (arg1)
1329 : "0" (func), "1" (arg0), "2" (arg1),
1330 "i" (HV_FAST_TRAP));
1331}
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333/* paging_init() sets up the page tables */
1334
1335extern void cheetah_ecache_flush_init(void);
David S. Millerd257d5d2006-02-06 23:44:37 -08001336extern void sun4v_patch_tlb_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
David S. Miller5cbc3072007-05-25 15:49:59 -07001338extern void cpu_probe(void);
1339extern void central_probe(void);
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341static unsigned long last_valid_pfn;
David S. Miller56425302005-09-25 16:46:57 -07001342pgd_t swapper_pg_dir[2048];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
David S. Millerc4bce902006-02-11 21:57:54 -08001344static void sun4u_pgprot_init(void);
1345static void sun4v_pgprot_init(void);
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347void __init paging_init(void)
1348{
David S. Millerd1112012006-03-08 02:16:07 -08001349 unsigned long end_pfn, pages_avail, shift, phys_base;
David S. Miller0836a0e2005-09-28 21:38:08 -07001350 unsigned long real_end, i;
1351
David S. Miller481295f2006-02-07 21:51:08 -08001352 kern_base = (prom_boot_mapping_phys_low >> 22UL) << 22UL;
1353 kern_size = (unsigned long)&_end - (unsigned long)KERNBASE;
1354
David S. Miller22d6a1c2007-05-25 00:37:12 -07001355 sstate_booting();
1356
David S. Millerd7744a02006-02-21 22:31:11 -08001357 /* Invalidate both kernel TSBs. */
David S. Miller8b234272006-02-17 18:01:02 -08001358 memset(swapper_tsb, 0x40, sizeof(swapper_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07001359#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Millerd7744a02006-02-21 22:31:11 -08001360 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07001361#endif
David S. Miller8b234272006-02-17 18:01:02 -08001362
David S. Millerc4bce902006-02-11 21:57:54 -08001363 if (tlb_type == hypervisor)
1364 sun4v_pgprot_init();
1365 else
1366 sun4u_pgprot_init();
1367
David S. Millerd257d5d2006-02-06 23:44:37 -08001368 if (tlb_type == cheetah_plus ||
1369 tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -08001370 tsb_phys_patch();
1371
David S. Miller490384e2006-02-11 14:41:18 -08001372 if (tlb_type == hypervisor) {
David S. Millerd257d5d2006-02-06 23:44:37 -08001373 sun4v_patch_tlb_handlers();
David S. Miller490384e2006-02-11 14:41:18 -08001374 sun4v_ktsb_init();
1375 }
David S. Millerd257d5d2006-02-06 23:44:37 -08001376
David S. Miller13edad72005-09-29 17:58:26 -07001377 /* Find available physical memory... */
1378 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller0836a0e2005-09-28 21:38:08 -07001379
1380 phys_base = 0xffffffffffffffffUL;
David S. Miller13edad72005-09-29 17:58:26 -07001381 for (i = 0; i < pavail_ents; i++)
1382 phys_base = min(phys_base, pavail[i].phys_addr);
David S. Miller0836a0e2005-09-28 21:38:08 -07001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 set_bit(0, mmu_context_bmap);
1385
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001386 shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE);
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 real_end = (unsigned long)_end;
1389 if ((real_end > ((unsigned long)KERNBASE + 0x400000)))
1390 bigkernel = 1;
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001391 if ((real_end > ((unsigned long)KERNBASE + 0x800000))) {
1392 prom_printf("paging_init: Kernel > 8MB, too large.\n");
1393 prom_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001395
1396 /* Set kernel pgd to upper alias so physical page computations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 * work.
1398 */
1399 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
1400
David S. Miller56425302005-09-25 16:46:57 -07001401 memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 /* Now can init the kernel/bad page tables. */
1404 pud_set(pud_offset(&swapper_pg_dir[0], 0),
David S. Miller56425302005-09-25 16:46:57 -07001405 swapper_low_pmd_dir + (shift / sizeof(pgd_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
David S. Millerc9c10832005-10-12 12:22:46 -07001407 inherit_prom_mappings();
David S. Miller5085b4a2005-09-22 00:45:41 -07001408
David S. Millera8b900d2006-01-31 18:33:37 -08001409 /* Ok, we can use our TLB miss and window trap handlers safely. */
1410 setup_tba();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
David S. Millerc9c10832005-10-12 12:22:46 -07001412 __flush_tlb_all();
David S. Miller9ad98c52005-10-05 15:12:00 -07001413
David S. Miller490384e2006-02-11 14:41:18 -08001414 if (tlb_type == hypervisor)
1415 sun4v_ktsb_register();
1416
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001417 /* Setup bootmem... */
1418 pages_avail = 0;
David S. Millerd1112012006-03-08 02:16:07 -08001419 last_valid_pfn = end_pfn = bootmem_init(&pages_avail, phys_base);
1420
David S. Miller17b0e192006-03-08 15:57:03 -08001421 max_mapnr = last_valid_pfn;
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001422
David S. Miller56425302005-09-25 16:46:57 -07001423 kernel_physical_mapping_init();
David S. Miller56425302005-09-25 16:46:57 -07001424
David S. Miller5cbc3072007-05-25 15:49:59 -07001425 real_setup_per_cpu_areas();
1426
David S. Miller372b07b2006-06-21 15:35:28 -07001427 prom_build_devicetree();
1428
David S. Miller5cbc3072007-05-25 15:49:59 -07001429 if (tlb_type == hypervisor)
1430 sun4v_mdesc_init();
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 {
1433 unsigned long zones_size[MAX_NR_ZONES];
1434 unsigned long zholes_size[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 int znum;
1436
1437 for (znum = 0; znum < MAX_NR_ZONES; znum++)
1438 zones_size[znum] = zholes_size[znum] = 0;
1439
David S. Miller1b51d3a2007-02-12 00:13:31 -08001440 zones_size[ZONE_NORMAL] = end_pfn;
1441 zholes_size[ZONE_NORMAL] = end_pfn - pages_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 free_area_init_node(0, &contig_page_data, zones_size,
David S. Miller17b0e192006-03-08 15:57:03 -08001444 __pa(PAGE_OFFSET) >> PAGE_SHIFT,
1445 zholes_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447
David S. Miller5cbc3072007-05-25 15:49:59 -07001448 prom_printf("Booting Linux...\n");
1449
1450 central_probe();
1451 cpu_probe();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454static void __init taint_real_pages(void)
1455{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 int i;
1457
David S. Miller13edad72005-09-29 17:58:26 -07001458 read_obp_memory("available", &pavail_rescan[0], &pavail_rescan_ents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
David S. Miller13edad72005-09-29 17:58:26 -07001460 /* Find changes discovered in the physmem available rescan and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 * reserve the lost portions in the bootmem maps.
1462 */
David S. Miller13edad72005-09-29 17:58:26 -07001463 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 unsigned long old_start, old_end;
1465
David S. Miller13edad72005-09-29 17:58:26 -07001466 old_start = pavail[i].phys_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 old_end = old_start +
David S. Miller13edad72005-09-29 17:58:26 -07001468 pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 while (old_start < old_end) {
1470 int n;
1471
David S. Millerc2a5a462006-06-22 00:01:56 -07001472 for (n = 0; n < pavail_rescan_ents; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 unsigned long new_start, new_end;
1474
David S. Miller13edad72005-09-29 17:58:26 -07001475 new_start = pavail_rescan[n].phys_addr;
1476 new_end = new_start +
1477 pavail_rescan[n].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 if (new_start <= old_start &&
1480 new_end >= (old_start + PAGE_SIZE)) {
David S. Miller13edad72005-09-29 17:58:26 -07001481 set_bit(old_start >> 22,
1482 sparc64_valid_addr_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 goto do_next_page;
1484 }
1485 }
1486 reserve_bootmem(old_start, PAGE_SIZE);
1487
1488 do_next_page:
1489 old_start += PAGE_SIZE;
1490 }
1491 }
1492}
1493
David S. Millerc2a5a462006-06-22 00:01:56 -07001494int __init page_in_phys_avail(unsigned long paddr)
1495{
1496 int i;
1497
1498 paddr &= PAGE_MASK;
1499
1500 for (i = 0; i < pavail_rescan_ents; i++) {
1501 unsigned long start, end;
1502
1503 start = pavail_rescan[i].phys_addr;
1504 end = start + pavail_rescan[i].reg_size;
1505
1506 if (paddr >= start && paddr < end)
1507 return 1;
1508 }
1509 if (paddr >= kern_base && paddr < (kern_base + kern_size))
1510 return 1;
1511#ifdef CONFIG_BLK_DEV_INITRD
1512 if (paddr >= __pa(initrd_start) &&
1513 paddr < __pa(PAGE_ALIGN(initrd_end)))
1514 return 1;
1515#endif
1516
1517 return 0;
1518}
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520void __init mem_init(void)
1521{
1522 unsigned long codepages, datapages, initpages;
1523 unsigned long addr, last;
1524 int i;
1525
1526 i = last_valid_pfn >> ((22 - PAGE_SHIFT) + 6);
1527 i += 1;
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001528 sparc64_valid_addr_bitmap = (unsigned long *) alloc_bootmem(i << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (sparc64_valid_addr_bitmap == NULL) {
1530 prom_printf("mem_init: Cannot alloc valid_addr_bitmap.\n");
1531 prom_halt();
1532 }
1533 memset(sparc64_valid_addr_bitmap, 0, i << 3);
1534
1535 addr = PAGE_OFFSET + kern_base;
1536 last = PAGE_ALIGN(kern_size) + addr;
1537 while (addr < last) {
1538 set_bit(__pa(addr) >> 22, sparc64_valid_addr_bitmap);
1539 addr += PAGE_SIZE;
1540 }
1541
1542 taint_real_pages();
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 high_memory = __va(last_valid_pfn << PAGE_SHIFT);
1545
1546#ifdef CONFIG_DEBUG_BOOTMEM
1547 prom_printf("mem_init: Calling free_all_bootmem().\n");
1548#endif
David S. Millerf1cfdb52007-03-15 22:52:18 -07001549
1550 /* We subtract one to account for the mem_map_zero page
1551 * allocated below.
1552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 totalram_pages = num_physpages = free_all_bootmem() - 1;
1554
1555 /*
1556 * Set up the zero page, mark it reserved, so that page count
1557 * is not manipulated when freeing the page from user ptes.
1558 */
1559 mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0);
1560 if (mem_map_zero == NULL) {
1561 prom_printf("paging_init: Cannot alloc zero page.\n");
1562 prom_halt();
1563 }
1564 SetPageReserved(mem_map_zero);
1565
1566 codepages = (((unsigned long) _etext) - ((unsigned long) _start));
1567 codepages = PAGE_ALIGN(codepages) >> PAGE_SHIFT;
1568 datapages = (((unsigned long) _edata) - ((unsigned long) _etext));
1569 datapages = PAGE_ALIGN(datapages) >> PAGE_SHIFT;
1570 initpages = (((unsigned long) __init_end) - ((unsigned long) __init_begin));
1571 initpages = PAGE_ALIGN(initpages) >> PAGE_SHIFT;
1572
Christoph Lameter96177292007-02-10 01:43:03 -08001573 printk("Memory: %luk available (%ldk kernel code, %ldk data, %ldk init) [%016lx,%016lx]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 nr_free_pages() << (PAGE_SHIFT-10),
1575 codepages << (PAGE_SHIFT-10),
1576 datapages << (PAGE_SHIFT-10),
1577 initpages << (PAGE_SHIFT-10),
1578 PAGE_OFFSET, (last_valid_pfn << PAGE_SHIFT));
1579
1580 if (tlb_type == cheetah || tlb_type == cheetah_plus)
1581 cheetah_ecache_flush_init();
1582}
1583
David S. Miller898cf0e2005-09-23 11:59:44 -07001584void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 unsigned long addr, initend;
1587
1588 /*
1589 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
1590 */
1591 addr = PAGE_ALIGN((unsigned long)(__init_begin));
1592 initend = (unsigned long)(__init_end) & PAGE_MASK;
1593 for (; addr < initend; addr += PAGE_SIZE) {
1594 unsigned long page;
1595 struct page *p;
1596
1597 page = (addr +
1598 ((unsigned long) __va(kern_base)) -
1599 ((unsigned long) KERNBASE));
Randy Dunlapc9cf5522006-06-27 02:53:52 -07001600 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 p = virt_to_page(page);
1602
1603 ClearPageReserved(p);
Nick Piggin7835e982006-03-22 00:08:40 -08001604 init_page_count(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 __free_page(p);
1606 num_physpages++;
1607 totalram_pages++;
1608 }
1609}
1610
1611#ifdef CONFIG_BLK_DEV_INITRD
1612void free_initrd_mem(unsigned long start, unsigned long end)
1613{
1614 if (start < end)
1615 printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
1616 for (; start < end; start += PAGE_SIZE) {
1617 struct page *p = virt_to_page(start);
1618
1619 ClearPageReserved(p);
Nick Piggin7835e982006-03-22 00:08:40 -08001620 init_page_count(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 __free_page(p);
1622 num_physpages++;
1623 totalram_pages++;
1624 }
1625}
1626#endif
David S. Millerc4bce902006-02-11 21:57:54 -08001627
David S. Millerc4bce902006-02-11 21:57:54 -08001628#define _PAGE_CACHE_4U (_PAGE_CP_4U | _PAGE_CV_4U)
1629#define _PAGE_CACHE_4V (_PAGE_CP_4V | _PAGE_CV_4V)
1630#define __DIRTY_BITS_4U (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U)
1631#define __DIRTY_BITS_4V (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V)
1632#define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R)
1633#define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R)
1634
1635pgprot_t PAGE_KERNEL __read_mostly;
1636EXPORT_SYMBOL(PAGE_KERNEL);
1637
1638pgprot_t PAGE_KERNEL_LOCKED __read_mostly;
1639pgprot_t PAGE_COPY __read_mostly;
David S. Miller0f159522006-02-18 12:43:16 -08001640
1641pgprot_t PAGE_SHARED __read_mostly;
1642EXPORT_SYMBOL(PAGE_SHARED);
1643
David S. Millerc4bce902006-02-11 21:57:54 -08001644pgprot_t PAGE_EXEC __read_mostly;
1645unsigned long pg_iobits __read_mostly;
1646
1647unsigned long _PAGE_IE __read_mostly;
David S. Miller987c74f2006-06-25 01:34:43 -07001648EXPORT_SYMBOL(_PAGE_IE);
David S. Millerb2bef442006-02-23 01:55:55 -08001649
David S. Millerc4bce902006-02-11 21:57:54 -08001650unsigned long _PAGE_E __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08001651EXPORT_SYMBOL(_PAGE_E);
1652
David S. Millerc4bce902006-02-11 21:57:54 -08001653unsigned long _PAGE_CACHE __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08001654EXPORT_SYMBOL(_PAGE_CACHE);
David S. Millerc4bce902006-02-11 21:57:54 -08001655
1656static void prot_init_common(unsigned long page_none,
1657 unsigned long page_shared,
1658 unsigned long page_copy,
1659 unsigned long page_readonly,
1660 unsigned long page_exec_bit)
1661{
1662 PAGE_COPY = __pgprot(page_copy);
David S. Miller0f159522006-02-18 12:43:16 -08001663 PAGE_SHARED = __pgprot(page_shared);
David S. Millerc4bce902006-02-11 21:57:54 -08001664
1665 protection_map[0x0] = __pgprot(page_none);
1666 protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit);
1667 protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit);
1668 protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit);
1669 protection_map[0x4] = __pgprot(page_readonly);
1670 protection_map[0x5] = __pgprot(page_readonly);
1671 protection_map[0x6] = __pgprot(page_copy);
1672 protection_map[0x7] = __pgprot(page_copy);
1673 protection_map[0x8] = __pgprot(page_none);
1674 protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit);
1675 protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit);
1676 protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit);
1677 protection_map[0xc] = __pgprot(page_readonly);
1678 protection_map[0xd] = __pgprot(page_readonly);
1679 protection_map[0xe] = __pgprot(page_shared);
1680 protection_map[0xf] = __pgprot(page_shared);
1681}
1682
1683static void __init sun4u_pgprot_init(void)
1684{
1685 unsigned long page_none, page_shared, page_copy, page_readonly;
1686 unsigned long page_exec_bit;
1687
1688 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
1689 _PAGE_CACHE_4U | _PAGE_P_4U |
1690 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
1691 _PAGE_EXEC_4U);
1692 PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
1693 _PAGE_CACHE_4U | _PAGE_P_4U |
1694 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
1695 _PAGE_EXEC_4U | _PAGE_L_4U);
1696 PAGE_EXEC = __pgprot(_PAGE_EXEC_4U);
1697
1698 _PAGE_IE = _PAGE_IE_4U;
1699 _PAGE_E = _PAGE_E_4U;
1700 _PAGE_CACHE = _PAGE_CACHE_4U;
1701
1702 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
1703 __ACCESS_BITS_4U | _PAGE_E_4U);
1704
David S. Millerd1acb422007-03-16 17:20:28 -07001705#ifdef CONFIG_DEBUG_PAGEALLOC
1706 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZBITS_4U) ^
1707 0xfffff80000000000;
1708#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001709 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
David S. Millerc4bce902006-02-11 21:57:54 -08001710 0xfffff80000000000;
David S. Millerd1acb422007-03-16 17:20:28 -07001711#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001712 kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U |
1713 _PAGE_P_4U | _PAGE_W_4U);
1714
1715 /* XXX Should use 256MB on Panther. XXX */
1716 kern_linear_pte_xor[1] = kern_linear_pte_xor[0];
David S. Millerc4bce902006-02-11 21:57:54 -08001717
1718 _PAGE_SZBITS = _PAGE_SZBITS_4U;
1719 _PAGE_ALL_SZ_BITS = (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U |
1720 _PAGE_SZ64K_4U | _PAGE_SZ8K_4U |
1721 _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U);
1722
1723
1724 page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U;
1725 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1726 __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U);
1727 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1728 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
1729 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
1730 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
1731
1732 page_exec_bit = _PAGE_EXEC_4U;
1733
1734 prot_init_common(page_none, page_shared, page_copy, page_readonly,
1735 page_exec_bit);
1736}
1737
1738static void __init sun4v_pgprot_init(void)
1739{
1740 unsigned long page_none, page_shared, page_copy, page_readonly;
1741 unsigned long page_exec_bit;
1742
1743 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
1744 _PAGE_CACHE_4V | _PAGE_P_4V |
1745 __ACCESS_BITS_4V | __DIRTY_BITS_4V |
1746 _PAGE_EXEC_4V);
1747 PAGE_KERNEL_LOCKED = PAGE_KERNEL;
1748 PAGE_EXEC = __pgprot(_PAGE_EXEC_4V);
1749
1750 _PAGE_IE = _PAGE_IE_4V;
1751 _PAGE_E = _PAGE_E_4V;
1752 _PAGE_CACHE = _PAGE_CACHE_4V;
1753
David S. Millerd1acb422007-03-16 17:20:28 -07001754#ifdef CONFIG_DEBUG_PAGEALLOC
1755 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZBITS_4V) ^
1756 0xfffff80000000000;
1757#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001758 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
David S. Millerc4bce902006-02-11 21:57:54 -08001759 0xfffff80000000000;
David S. Millerd1acb422007-03-16 17:20:28 -07001760#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001761 kern_linear_pte_xor[0] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1762 _PAGE_P_4V | _PAGE_W_4V);
1763
David S. Millerd1acb422007-03-16 17:20:28 -07001764#ifdef CONFIG_DEBUG_PAGEALLOC
1765 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZBITS_4V) ^
1766 0xfffff80000000000;
1767#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001768 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
1769 0xfffff80000000000;
David S. Millerd1acb422007-03-16 17:20:28 -07001770#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001771 kern_linear_pte_xor[1] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1772 _PAGE_P_4V | _PAGE_W_4V);
David S. Millerc4bce902006-02-11 21:57:54 -08001773
1774 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
1775 __ACCESS_BITS_4V | _PAGE_E_4V);
1776
1777 _PAGE_SZBITS = _PAGE_SZBITS_4V;
1778 _PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V |
1779 _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V |
1780 _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V |
1781 _PAGE_SZ64K_4V | _PAGE_SZ8K_4V);
1782
1783 page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | _PAGE_CACHE_4V;
1784 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1785 __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V);
1786 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1787 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
1788 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
1789 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
1790
1791 page_exec_bit = _PAGE_EXEC_4V;
1792
1793 prot_init_common(page_none, page_shared, page_copy, page_readonly,
1794 page_exec_bit);
1795}
1796
1797unsigned long pte_sz_bits(unsigned long sz)
1798{
1799 if (tlb_type == hypervisor) {
1800 switch (sz) {
1801 case 8 * 1024:
1802 default:
1803 return _PAGE_SZ8K_4V;
1804 case 64 * 1024:
1805 return _PAGE_SZ64K_4V;
1806 case 512 * 1024:
1807 return _PAGE_SZ512K_4V;
1808 case 4 * 1024 * 1024:
1809 return _PAGE_SZ4MB_4V;
1810 };
1811 } else {
1812 switch (sz) {
1813 case 8 * 1024:
1814 default:
1815 return _PAGE_SZ8K_4U;
1816 case 64 * 1024:
1817 return _PAGE_SZ64K_4U;
1818 case 512 * 1024:
1819 return _PAGE_SZ512K_4U;
1820 case 4 * 1024 * 1024:
1821 return _PAGE_SZ4MB_4U;
1822 };
1823 }
1824}
1825
1826pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size)
1827{
1828 pte_t pte;
David S. Millercf627152006-02-12 21:10:07 -08001829
1830 pte_val(pte) = page | pgprot_val(pgprot_noncached(prot));
David S. Millerc4bce902006-02-11 21:57:54 -08001831 pte_val(pte) |= (((unsigned long)space) << 32);
1832 pte_val(pte) |= pte_sz_bits(page_size);
David S. Millercf627152006-02-12 21:10:07 -08001833
David S. Millerc4bce902006-02-11 21:57:54 -08001834 return pte;
1835}
1836
David S. Millerc4bce902006-02-11 21:57:54 -08001837static unsigned long kern_large_tte(unsigned long paddr)
1838{
1839 unsigned long val;
1840
1841 val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
1842 _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U |
1843 _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U);
1844 if (tlb_type == hypervisor)
1845 val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
1846 _PAGE_CP_4V | _PAGE_CV_4V | _PAGE_P_4V |
1847 _PAGE_EXEC_4V | _PAGE_W_4V);
1848
1849 return val | paddr;
1850}
1851
David S. Millerc4bce902006-02-11 21:57:54 -08001852/* If not locked, zap it. */
1853void __flush_tlb_all(void)
1854{
1855 unsigned long pstate;
1856 int i;
1857
1858 __asm__ __volatile__("flushw\n\t"
1859 "rdpr %%pstate, %0\n\t"
1860 "wrpr %0, %1, %%pstate"
1861 : "=r" (pstate)
1862 : "i" (PSTATE_IE));
1863 if (tlb_type == spitfire) {
1864 for (i = 0; i < 64; i++) {
1865 /* Spitfire Errata #32 workaround */
1866 /* NOTE: Always runs on spitfire, so no
1867 * cheetah+ page size encodings.
1868 */
1869 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
1870 "flush %%g6"
1871 : /* No outputs */
1872 : "r" (0),
1873 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
1874
1875 if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) {
1876 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
1877 "membar #Sync"
1878 : /* no outputs */
1879 : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
1880 spitfire_put_dtlb_data(i, 0x0UL);
1881 }
1882
1883 /* Spitfire Errata #32 workaround */
1884 /* NOTE: Always runs on spitfire, so no
1885 * cheetah+ page size encodings.
1886 */
1887 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
1888 "flush %%g6"
1889 : /* No outputs */
1890 : "r" (0),
1891 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
1892
1893 if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) {
1894 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
1895 "membar #Sync"
1896 : /* no outputs */
1897 : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
1898 spitfire_put_itlb_data(i, 0x0UL);
1899 }
1900 }
1901 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1902 cheetah_flush_dtlb_all();
1903 cheetah_flush_itlb_all();
1904 }
1905 __asm__ __volatile__("wrpr %0, 0, %%pstate"
1906 : : "r" (pstate));
1907}
David S. Miller88d70792006-03-18 19:16:23 -08001908
1909#ifdef CONFIG_MEMORY_HOTPLUG
1910
1911void online_page(struct page *page)
1912{
1913 ClearPageReserved(page);
Nick Pigginfcab1e52006-03-23 07:48:16 +01001914 init_page_count(page);
1915 __free_page(page);
David S. Miller88d70792006-03-18 19:16:23 -08001916 totalram_pages++;
1917 num_physpages++;
1918}
1919
1920int remove_memory(u64 start, u64 size)
1921{
1922 return -EINVAL;
1923}
1924
1925#endif /* CONFIG_MEMORY_HOTPLUG */