blob: 9f4f532e2627ecca5062f4351b7c19dde30a8c12 [file] [log] [blame]
Adrian Bunkb00dc832008-05-19 16:52:27 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/initrd.h>
17#include <linux/swap.h>
18#include <linux/pagemap.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070019#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/fs.h>
21#include <linux/seq_file.h>
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -070022#include <linux/kprobes.h>
David S. Miller1ac4f5e2005-09-21 21:49:32 -070023#include <linux/cache.h>
David S. Miller13edad72005-09-29 17:58:26 -070024#include <linux/sort.h>
bob piccof6d4fb52014-03-03 11:54:42 -050025#include <linux/ioport.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070026#include <linux/percpu.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100027#include <linux/memblock.h>
David S. Miller919ee672008-04-23 05:40:25 -070028#include <linux/mmzone.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/head.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/page.h>
33#include <asm/pgalloc.h>
34#include <asm/pgtable.h>
35#include <asm/oplib.h>
36#include <asm/iommu.h>
37#include <asm/io.h>
38#include <asm/uaccess.h>
39#include <asm/mmu_context.h>
40#include <asm/tlbflush.h>
41#include <asm/dma.h>
42#include <asm/starfire.h>
43#include <asm/tlb.h>
44#include <asm/spitfire.h>
45#include <asm/sections.h>
David S. Miller517af332006-02-01 15:55:21 -080046#include <asm/tsb.h>
David S. Miller481295f2006-02-07 21:51:08 -080047#include <asm/hypervisor.h>
David S. Miller372b07b2006-06-21 15:35:28 -070048#include <asm/prom.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070049#include <asm/mdesc.h>
David S. Miller3d5ae6b2008-03-25 21:51:40 -070050#include <asm/cpudata.h>
Sam Ravnborg59dec132014-05-16 23:26:07 +020051#include <asm/setup.h>
David S. Miller4f70f7a2008-08-12 18:33:56 -070052#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Sam Ravnborg27137e52008-11-16 20:08:45 -080054#include "init_64.h"
David S. Miller9cc3a1a2006-02-21 20:51:13 -080055
David S. Miller4f93d212012-09-06 18:13:58 -070056unsigned long kern_linear_pte_xor[4] __read_mostly;
David S. Miller9cc3a1a2006-02-21 20:51:13 -080057
David S. Miller4f93d212012-09-06 18:13:58 -070058/* A bitmap, two bits for every 256MB of physical memory. These two
59 * bits determine what page size we use for kernel linear
60 * translations. They form an index into kern_linear_pte_xor[]. The
61 * value in the indexed slot is XOR'd with the TLB miss virtual
62 * address to form the resulting TTE. The mapping is:
63 *
64 * 0 ==> 4MB
65 * 1 ==> 256MB
66 * 2 ==> 2GB
67 * 3 ==> 16GB
68 *
69 * All sun4v chips support 256MB pages. Only SPARC-T4 and later
70 * support 2GB pages, and hopefully future cpus will support the 16GB
71 * pages as well. For slots 2 and 3, we encode a 256MB TTE xor there
72 * if these larger page sizes are not supported by the cpu.
73 *
74 * It would be nice to determine this from the machine description
75 * 'cpu' properties, but we need to have this table setup before the
76 * MDESC is initialized.
David S. Miller9cc3a1a2006-02-21 20:51:13 -080077 */
78unsigned long kpte_linear_bitmap[KPTE_BITMAP_BYTES / sizeof(unsigned long)];
79
David S. Millerd1acb422007-03-16 17:20:28 -070080#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller4f93d212012-09-06 18:13:58 -070081/* A special kernel TSB for 4MB, 256MB, 2GB and 16GB linear mappings.
82 * Space is allocated for this right after the trap table in
83 * arch/sparc64/kernel/head.S
David S. Miller2d9e2762007-05-29 01:58:31 -070084 */
85extern struct tsb swapper_4m_tsb[KERNEL_TSB4M_NENTRIES];
David S. Millerd1acb422007-03-16 17:20:28 -070086#endif
David S. Millerd7744a02006-02-21 22:31:11 -080087
David S. Millerce33fdc2012-09-06 19:01:25 -070088static unsigned long cpu_pgsz_mask;
89
David S. Miller13edad72005-09-29 17:58:26 -070090#define MAX_BANKS 32
David S. Miller10147572005-09-28 21:46:43 -070091
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -080092static struct linux_prom64_registers pavail[MAX_BANKS];
93static int pavail_ents;
David S. Miller10147572005-09-28 21:46:43 -070094
David S. Miller13edad72005-09-29 17:58:26 -070095static int cmp_p64(const void *a, const void *b)
96{
97 const struct linux_prom64_registers *x = a, *y = b;
98
99 if (x->phys_addr > y->phys_addr)
100 return 1;
101 if (x->phys_addr < y->phys_addr)
102 return -1;
103 return 0;
104}
105
106static void __init read_obp_memory(const char *property,
107 struct linux_prom64_registers *regs,
108 int *num_ents)
109{
Andres Salomon8d125562010-10-08 14:18:11 -0700110 phandle node = prom_finddevice("/memory");
David S. Miller13edad72005-09-29 17:58:26 -0700111 int prop_size = prom_getproplen(node, property);
112 int ents, ret, i;
113
114 ents = prop_size / sizeof(struct linux_prom64_registers);
115 if (ents > MAX_BANKS) {
116 prom_printf("The machine has more %s property entries than "
117 "this kernel can support (%d).\n",
118 property, MAX_BANKS);
119 prom_halt();
120 }
121
122 ret = prom_getproperty(node, property, (char *) regs, prop_size);
123 if (ret == -1) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000124 prom_printf("Couldn't get %s property from /memory.\n",
125 property);
David S. Miller13edad72005-09-29 17:58:26 -0700126 prom_halt();
127 }
128
David S. Miller13edad72005-09-29 17:58:26 -0700129 /* Sanitize what we got from the firmware, by page aligning
130 * everything.
131 */
132 for (i = 0; i < ents; i++) {
133 unsigned long base, size;
134
135 base = regs[i].phys_addr;
136 size = regs[i].reg_size;
137
138 size &= PAGE_MASK;
139 if (base & ~PAGE_MASK) {
140 unsigned long new_base = PAGE_ALIGN(base);
141
142 size -= new_base - base;
143 if ((long) size < 0L)
144 size = 0UL;
145 base = new_base;
146 }
David S. Miller0015d3d2007-03-15 00:06:34 -0700147 if (size == 0UL) {
148 /* If it is empty, simply get rid of it.
149 * This simplifies the logic of the other
150 * functions that process these arrays.
151 */
152 memmove(&regs[i], &regs[i + 1],
153 (ents - i - 1) * sizeof(regs[0]));
154 i--;
155 ents--;
156 continue;
157 }
David S. Miller13edad72005-09-29 17:58:26 -0700158 regs[i].phys_addr = base;
159 regs[i].reg_size = size;
160 }
David S. Miller486ad102006-06-22 00:00:00 -0700161
David S. Miller486ad102006-06-22 00:00:00 -0700162 *num_ents = ents;
163
David S. Millerc9c10832005-10-12 12:22:46 -0700164 sort(regs, ents, sizeof(struct linux_prom64_registers),
David S. Miller13edad72005-09-29 17:58:26 -0700165 cmp_p64, NULL);
166}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
David S. Millerd8ed1d42009-08-25 16:47:46 -0700168unsigned long sparc64_valid_addr_bitmap[VALID_ADDR_BITMAP_BYTES /
169 sizeof(unsigned long)];
Sam Ravnborg917c3662009-01-08 16:58:20 -0800170EXPORT_SYMBOL(sparc64_valid_addr_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
David S. Millerd1112012006-03-08 02:16:07 -0800172/* Kernel physical address base and size in bytes. */
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700173unsigned long kern_base __read_mostly;
174unsigned long kern_size __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* Initial ramdisk setup */
177extern unsigned long sparc_ramdisk_image64;
178extern unsigned int sparc_ramdisk_image;
179extern unsigned int sparc_ramdisk_size;
180
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700181struct page *mem_map_zero __read_mostly;
Aneesh Kumar K.V35802c02008-04-29 08:11:12 -0400182EXPORT_SYMBOL(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
David S. Miller0835ae02005-10-04 15:23:20 -0700184unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly;
185
186unsigned long sparc64_kern_pri_context __read_mostly;
187unsigned long sparc64_kern_pri_nuc_bits __read_mostly;
188unsigned long sparc64_kern_sec_context __read_mostly;
189
David S. Miller64658742008-03-21 17:01:38 -0700190int num_kernel_image_mappings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#ifdef CONFIG_DEBUG_DCFLUSH
193atomic_t dcpage_flushes = ATOMIC_INIT(0);
194#ifdef CONFIG_SMP
195atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
196#endif
197#endif
198
David S. Miller7a591cf2006-02-26 19:44:50 -0800199inline void flush_dcache_page_impl(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
David S. Miller7a591cf2006-02-26 19:44:50 -0800201 BUG_ON(tlb_type == hypervisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#ifdef CONFIG_DEBUG_DCFLUSH
203 atomic_inc(&dcpage_flushes);
204#endif
205
206#ifdef DCACHE_ALIASING_POSSIBLE
207 __flush_dcache_page(page_address(page),
208 ((tlb_type == spitfire) &&
209 page_mapping(page) != NULL));
210#else
211 if (page_mapping(page) != NULL &&
212 tlb_type == spitfire)
213 __flush_icache_page(__pa(page_address(page)));
214#endif
215}
216
217#define PG_dcache_dirty PG_arch_1
David S. Miller22adb352007-05-26 01:14:43 -0700218#define PG_dcache_cpu_shift 32UL
219#define PG_dcache_cpu_mask \
220 ((1UL<<ilog2(roundup_pow_of_two(NR_CPUS)))-1UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222#define dcache_dirty_cpu(page) \
David S. Miller48b0e542005-07-27 16:08:44 -0700223 (((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
David S. Millerd979f172007-10-27 00:13:04 -0700225static inline void set_dcache_dirty(struct page *page, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 unsigned long mask = this_cpu;
David S. Miller48b0e542005-07-27 16:08:44 -0700228 unsigned long non_cpu_bits;
229
230 non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift);
231 mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 __asm__ __volatile__("1:\n\t"
234 "ldx [%2], %%g7\n\t"
235 "and %%g7, %1, %%g1\n\t"
236 "or %%g1, %0, %%g1\n\t"
237 "casx [%2], %%g7, %%g1\n\t"
238 "cmp %%g7, %%g1\n\t"
239 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700240 " nop"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 : /* no outputs */
242 : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
243 : "g1", "g7");
244}
245
David S. Millerd979f172007-10-27 00:13:04 -0700246static inline void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 unsigned long mask = (1UL << PG_dcache_dirty);
249
250 __asm__ __volatile__("! test_and_clear_dcache_dirty\n"
251 "1:\n\t"
252 "ldx [%2], %%g7\n\t"
David S. Miller48b0e542005-07-27 16:08:44 -0700253 "srlx %%g7, %4, %%g1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 "and %%g1, %3, %%g1\n\t"
255 "cmp %%g1, %0\n\t"
256 "bne,pn %%icc, 2f\n\t"
257 " andn %%g7, %1, %%g1\n\t"
258 "casx [%2], %%g7, %%g1\n\t"
259 "cmp %%g7, %%g1\n\t"
260 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700261 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 "2:"
263 : /* no outputs */
264 : "r" (cpu), "r" (mask), "r" (&page->flags),
David S. Miller48b0e542005-07-27 16:08:44 -0700265 "i" (PG_dcache_cpu_mask),
266 "i" (PG_dcache_cpu_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 : "g1", "g7");
268}
269
David S. Miller517af332006-02-01 15:55:21 -0800270static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte)
271{
272 unsigned long tsb_addr = (unsigned long) ent;
273
David S. Miller3b3ab2e2006-02-17 09:54:42 -0800274 if (tlb_type == cheetah_plus || tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -0800275 tsb_addr = __pa(tsb_addr);
276
277 __tsb_insert(tsb_addr, tag, pte);
278}
279
David S. Millerc4bce902006-02-11 21:57:54 -0800280unsigned long _PAGE_ALL_SZ_BITS __read_mostly;
David S. Millerc4bce902006-02-11 21:57:54 -0800281
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800282static void flush_dcache(unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800284 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800286 page = pfn_to_page(pfn);
David S. Miller1a78ced2009-10-12 03:20:57 -0700287 if (page) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800288 unsigned long pg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800290 pg_flags = page->flags;
291 if (pg_flags & (1UL << PG_dcache_dirty)) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800292 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 }
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800309}
310
David Miller9e695d22012-10-08 16:34:29 -0700311/* mm->context.lock must be held */
312static void __update_mmu_tsb_insert(struct mm_struct *mm, unsigned long tsb_index,
313 unsigned long tsb_hash_shift, unsigned long address,
314 unsigned long tte)
315{
316 struct tsb *tsb = mm->context.tsb_block[tsb_index].tsb;
317 unsigned long tag;
318
David S. Millerbcd896b2013-02-19 13:20:08 -0800319 if (unlikely(!tsb))
320 return;
321
David Miller9e695d22012-10-08 16:34:29 -0700322 tsb += ((address >> tsb_hash_shift) &
323 (mm->context.tsb_block[tsb_index].tsb_nentries - 1UL));
324 tag = (address >> 22UL);
325 tsb_insert(tsb, tag, tte);
326}
327
David S. Millerbcd896b2013-02-19 13:20:08 -0800328#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
329static inline bool is_hugetlb_pte(pte_t pte)
330{
331 if ((tlb_type == hypervisor &&
332 (pte_val(pte) & _PAGE_SZALL_4V) == _PAGE_SZHUGE_4V) ||
333 (tlb_type != hypervisor &&
334 (pte_val(pte) & _PAGE_SZALL_4U) == _PAGE_SZHUGE_4U))
335 return true;
336 return false;
337}
338#endif
339
Russell King4b3073e2009-12-18 16:40:18 +0000340void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t *ptep)
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800341{
342 struct mm_struct *mm;
David S. Millerbcd896b2013-02-19 13:20:08 -0800343 unsigned long flags;
Russell King4b3073e2009-12-18 16:40:18 +0000344 pte_t pte = *ptep;
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800345
346 if (tlb_type != hypervisor) {
347 unsigned long pfn = pte_pfn(pte);
348
349 if (pfn_valid(pfn))
350 flush_dcache(pfn);
351 }
David S. Millerbd407912006-01-31 18:31:38 -0800352
353 mm = vma->vm_mm;
David S. Miller7a1ac522006-03-16 02:02:32 -0800354
355 spin_lock_irqsave(&mm->context.lock, flags);
356
David Miller9e695d22012-10-08 16:34:29 -0700357#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
David S. Millerbcd896b2013-02-19 13:20:08 -0800358 if (mm->context.huge_pte_count && is_hugetlb_pte(pte))
David S. Miller37b3a8f2013-09-25 13:48:49 -0700359 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David S. Millerbcd896b2013-02-19 13:20:08 -0800360 address, pte_val(pte));
361 else
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800362#endif
David S. Millerbcd896b2013-02-19 13:20:08 -0800363 __update_mmu_tsb_insert(mm, MM_TSB_BASE, PAGE_SHIFT,
364 address, pte_val(pte));
David S. Miller7a1ac522006-03-16 02:02:32 -0800365
366 spin_unlock_irqrestore(&mm->context.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369void flush_dcache_page(struct page *page)
370{
David S. Millera9546f52005-04-17 18:03:09 -0700371 struct address_space *mapping;
372 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
David S. Miller7a591cf2006-02-26 19:44:50 -0800374 if (tlb_type == hypervisor)
375 return;
376
David S. Millera9546f52005-04-17 18:03:09 -0700377 /* Do not bother with the expensive D-cache flush if it
378 * is merely the zero page. The 'bigcore' testcase in GDB
379 * causes this case to run millions of times.
380 */
381 if (page == ZERO_PAGE(0))
382 return;
383
384 this_cpu = get_cpu();
385
386 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (mapping && !mapping_mapped(mapping)) {
David S. Millera9546f52005-04-17 18:03:09 -0700388 int dirty = test_bit(PG_dcache_dirty, &page->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (dirty) {
David S. Millera9546f52005-04-17 18:03:09 -0700390 int dirty_cpu = dcache_dirty_cpu(page);
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (dirty_cpu == this_cpu)
393 goto out;
394 smp_flush_dcache_page_impl(page, dirty_cpu);
395 }
396 set_dcache_dirty(page, this_cpu);
397 } else {
398 /* We could delay the flush for the !page_mapping
399 * case too. But that case is for exec env/arg
400 * pages and those are %99 certainly going to get
401 * faulted into the tlb (and thus flushed) anyways.
402 */
403 flush_dcache_page_impl(page);
404 }
405
406out:
407 put_cpu();
408}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800409EXPORT_SYMBOL(flush_dcache_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700411void __kprobes flush_icache_range(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
David S. Millera43fe0e2006-02-04 03:10:53 -0800413 /* Cheetah and Hypervisor platform cpus have coherent I-cache. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (tlb_type == spitfire) {
415 unsigned long kaddr;
416
David S. Millera94aa252007-03-15 15:50:11 -0700417 /* This code only runs on Spitfire cpus so this is
418 * why we can assume _PAGE_PADDR_4U.
419 */
420 for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE) {
421 unsigned long paddr, mask = _PAGE_PADDR_4U;
422
423 if (kaddr >= PAGE_OFFSET)
424 paddr = kaddr & mask;
425 else {
426 pgd_t *pgdp = pgd_offset_k(kaddr);
427 pud_t *pudp = pud_offset(pgdp, kaddr);
428 pmd_t *pmdp = pmd_offset(pudp, kaddr);
429 pte_t *ptep = pte_offset_kernel(pmdp, kaddr);
430
431 paddr = pte_val(*ptep) & mask;
432 }
433 __flush_icache_page(paddr);
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800437EXPORT_SYMBOL(flush_icache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439void mmu_info(struct seq_file *m)
440{
David S. Millerce33fdc2012-09-06 19:01:25 -0700441 static const char *pgsz_strings[] = {
442 "8K", "64K", "512K", "4MB", "32MB",
443 "256MB", "2GB", "16GB",
444 };
445 int i, printed;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (tlb_type == cheetah)
448 seq_printf(m, "MMU Type\t: Cheetah\n");
449 else if (tlb_type == cheetah_plus)
450 seq_printf(m, "MMU Type\t: Cheetah+\n");
451 else if (tlb_type == spitfire)
452 seq_printf(m, "MMU Type\t: Spitfire\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800453 else if (tlb_type == hypervisor)
454 seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 else
456 seq_printf(m, "MMU Type\t: ???\n");
457
David S. Millerce33fdc2012-09-06 19:01:25 -0700458 seq_printf(m, "MMU PGSZs\t: ");
459 printed = 0;
460 for (i = 0; i < ARRAY_SIZE(pgsz_strings); i++) {
461 if (cpu_pgsz_mask & (1UL << i)) {
462 seq_printf(m, "%s%s",
463 printed ? "," : "", pgsz_strings[i]);
464 printed++;
465 }
466 }
467 seq_putc(m, '\n');
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#ifdef CONFIG_DEBUG_DCFLUSH
470 seq_printf(m, "DCPageFlushes\t: %d\n",
471 atomic_read(&dcpage_flushes));
472#ifdef CONFIG_SMP
473 seq_printf(m, "DCPageFlushesXC\t: %d\n",
474 atomic_read(&dcpage_flushes_xcall));
475#endif /* CONFIG_SMP */
476#endif /* CONFIG_DEBUG_DCFLUSH */
477}
478
David S. Millera94aa252007-03-15 15:50:11 -0700479struct linux_prom_translation prom_trans[512] __read_mostly;
480unsigned int prom_trans_ents __read_mostly;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482unsigned long kern_locked_tte_data;
483
David S. Miller405599b2005-09-22 00:12:35 -0700484/* The obp translations are saved based on 8k pagesize, since obp can
485 * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS ->
David S. Miller74bf4312006-01-31 18:29:18 -0800486 * HI_OBP_ADDRESS range are handled in ktlb.S.
David S. Miller405599b2005-09-22 00:12:35 -0700487 */
David S. Miller5085b4a2005-09-22 00:45:41 -0700488static inline int in_obp_range(unsigned long vaddr)
489{
490 return (vaddr >= LOW_OBP_ADDRESS &&
491 vaddr < HI_OBP_ADDRESS);
492}
493
David S. Millerc9c10832005-10-12 12:22:46 -0700494static int cmp_ptrans(const void *a, const void *b)
David S. Miller405599b2005-09-22 00:12:35 -0700495{
David S. Millerc9c10832005-10-12 12:22:46 -0700496 const struct linux_prom_translation *x = a, *y = b;
David S. Miller405599b2005-09-22 00:12:35 -0700497
David S. Millerc9c10832005-10-12 12:22:46 -0700498 if (x->virt > y->virt)
499 return 1;
500 if (x->virt < y->virt)
501 return -1;
502 return 0;
David S. Miller405599b2005-09-22 00:12:35 -0700503}
504
David S. Millerc9c10832005-10-12 12:22:46 -0700505/* Read OBP translations property into 'prom_trans[]'. */
David S. Miller9ad98c52005-10-05 15:12:00 -0700506static void __init read_obp_translations(void)
David S. Miller405599b2005-09-22 00:12:35 -0700507{
David S. Millerc9c10832005-10-12 12:22:46 -0700508 int n, node, ents, first, last, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 node = prom_finddevice("/virtual-memory");
511 n = prom_getproplen(node, "translations");
David S. Miller405599b2005-09-22 00:12:35 -0700512 if (unlikely(n == 0 || n == -1)) {
David S. Millerb206fc42005-09-21 22:31:13 -0700513 prom_printf("prom_mappings: Couldn't get size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 prom_halt();
515 }
David S. Miller405599b2005-09-22 00:12:35 -0700516 if (unlikely(n > sizeof(prom_trans))) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000517 prom_printf("prom_mappings: Size %d is too big.\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 prom_halt();
519 }
David S. Miller405599b2005-09-22 00:12:35 -0700520
David S. Millerb206fc42005-09-21 22:31:13 -0700521 if ((n = prom_getproperty(node, "translations",
David S. Miller405599b2005-09-22 00:12:35 -0700522 (char *)&prom_trans[0],
523 sizeof(prom_trans))) == -1) {
David S. Millerb206fc42005-09-21 22:31:13 -0700524 prom_printf("prom_mappings: Couldn't get property.\n");
525 prom_halt();
526 }
David S. Miller9ad98c52005-10-05 15:12:00 -0700527
David S. Millerb206fc42005-09-21 22:31:13 -0700528 n = n / sizeof(struct linux_prom_translation);
David S. Miller9ad98c52005-10-05 15:12:00 -0700529
David S. Millerc9c10832005-10-12 12:22:46 -0700530 ents = n;
531
532 sort(prom_trans, ents, sizeof(struct linux_prom_translation),
533 cmp_ptrans, NULL);
534
535 /* Now kick out all the non-OBP entries. */
536 for (i = 0; i < ents; i++) {
537 if (in_obp_range(prom_trans[i].virt))
538 break;
539 }
540 first = i;
541 for (; i < ents; i++) {
542 if (!in_obp_range(prom_trans[i].virt))
543 break;
544 }
545 last = i;
546
547 for (i = 0; i < (last - first); i++) {
548 struct linux_prom_translation *src = &prom_trans[i + first];
549 struct linux_prom_translation *dest = &prom_trans[i];
550
551 *dest = *src;
552 }
553 for (; i < ents; i++) {
554 struct linux_prom_translation *dest = &prom_trans[i];
555 dest->virt = dest->size = dest->data = 0x0UL;
556 }
557
558 prom_trans_ents = last - first;
559
560 if (tlb_type == spitfire) {
561 /* Clear diag TTE bits. */
562 for (i = 0; i < prom_trans_ents; i++)
563 prom_trans[i].data &= ~0x0003fe0000000000UL;
564 }
David S. Millerf4142cb2011-09-29 12:18:59 -0700565
566 /* Force execute bit on. */
567 for (i = 0; i < prom_trans_ents; i++)
568 prom_trans[i].data |= (tlb_type == hypervisor ?
569 _PAGE_EXEC_4V : _PAGE_EXEC_4U);
David S. Miller405599b2005-09-22 00:12:35 -0700570}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
David S. Millerd82ace72006-02-09 02:52:44 -0800572static void __init hypervisor_tlb_lock(unsigned long vaddr,
573 unsigned long pte,
574 unsigned long mmu)
575{
David S. Miller7db35f32007-05-29 02:22:14 -0700576 unsigned long ret = sun4v_mmu_map_perm_addr(vaddr, 0, pte, mmu);
David S. Millerd82ace72006-02-09 02:52:44 -0800577
David S. Miller7db35f32007-05-29 02:22:14 -0700578 if (ret != 0) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000579 prom_printf("hypervisor_tlb_lock[%lx:%x:%lx:%lx]: "
David S. Miller7db35f32007-05-29 02:22:14 -0700580 "errors with %lx\n", vaddr, 0, pte, mmu, ret);
David S. Miller12e126a2006-02-17 14:40:30 -0800581 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. Miller64658742008-03-21 17:01:38 -0700590 int i, tlb_ent = sparc64_highest_locked_tlbent();
David S. Miller405599b2005-09-22 00:12:35 -0700591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 tte_vaddr = (unsigned long) KERNBASE;
David S. Miller0eef3312014-05-03 22:52:50 -0700593 phys_page = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
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) {
David S. Miller64658742008-03-21 17:01:38 -0700600 for (i = 0; i < num_kernel_image_mappings; i++) {
David S. Millerd82ace72006-02-09 02:52:44 -0800601 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
602 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
David S. Miller64658742008-03-21 17:01:38 -0700603 tte_vaddr += 0x400000;
604 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800605 }
606 } else {
David S. Miller64658742008-03-21 17:01:38 -0700607 for (i = 0; i < num_kernel_image_mappings; i++) {
608 prom_dtlb_load(tlb_ent - i, tte_data, tte_vaddr);
609 prom_itlb_load(tlb_ent - i, tte_data, tte_vaddr);
610 tte_vaddr += 0x400000;
611 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800612 }
David S. Miller64658742008-03-21 17:01:38 -0700613 sparc64_highest_unlocked_tlb_ent = tlb_ent - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
David S. Miller0835ae02005-10-04 15:23:20 -0700615 if (tlb_type == cheetah_plus) {
616 sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 |
617 CTX_CHEETAH_PLUS_NUC);
618 sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC;
619 sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0;
620 }
David S. Miller405599b2005-09-22 00:12:35 -0700621}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
David S. Miller405599b2005-09-22 00:12:35 -0700623
David S. Millerc9c10832005-10-12 12:22:46 -0700624static void __init inherit_prom_mappings(void)
David S. Miller9ad98c52005-10-05 15:12:00 -0700625{
David S. Miller405599b2005-09-22 00:12:35 -0700626 /* Now fixup OBP's idea about where we really are mapped. */
David S. Miller3c62a2d2008-02-17 23:22:50 -0800627 printk("Remapping the kernel... ");
David S. Miller405599b2005-09-22 00:12:35 -0700628 remap_kernel();
David S. Miller3c62a2d2008-02-17 23:22:50 -0800629 printk("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632void prom_world(int enter)
633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (!enter)
Al Virodff933d2012-09-26 01:21:14 -0400635 set_fs(get_fs());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
David S. Miller3487d1d2006-01-31 18:33:25 -0800637 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640void __flush_dcache_range(unsigned long start, unsigned long end)
641{
642 unsigned long va;
643
644 if (tlb_type == spitfire) {
645 int n = 0;
646
647 for (va = start; va < end; va += 32) {
648 spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
649 if (++n >= 512)
650 break;
651 }
David S. Millera43fe0e2006-02-04 03:10:53 -0800652 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 start = __pa(start);
654 end = __pa(end);
655 for (va = start; va < end; va += 32)
656 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
657 "membar #Sync"
658 : /* no outputs */
659 : "r" (va),
660 "i" (ASI_DCACHE_INVALIDATE));
661 }
662}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800663EXPORT_SYMBOL(__flush_dcache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
David S. Miller85f1e1f2007-03-15 17:51:26 -0700665/* get_new_mmu_context() uses "cache + 1". */
666DEFINE_SPINLOCK(ctx_alloc_lock);
667unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
668#define MAX_CTX_NR (1UL << CTX_NR_BITS)
669#define CTX_BMAP_SLOTS BITS_TO_LONGS(MAX_CTX_NR)
670DECLARE_BITMAP(mmu_context_bmap, MAX_CTX_NR);
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/* Caller does TLB context flushing on local CPU if necessary.
673 * The caller also ensures that CTX_VALID(mm->context) is false.
674 *
675 * We must be careful about boundary cases so that we never
676 * let the user have CTX 0 (nucleus) or we ever use a CTX
677 * version of zero (and thus NO_CONTEXT would not be caught
678 * by version mis-match tests in mmu_context.h).
David S. Millera0663a72006-02-23 14:19:28 -0800679 *
680 * Always invoked with interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
682void get_new_mmu_context(struct mm_struct *mm)
683{
684 unsigned long ctx, new_ctx;
685 unsigned long orig_pgsz_bits;
David S. Millera0663a72006-02-23 14:19:28 -0800686 int new_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Kirill Tkhai07df8412013-04-09 00:29:46 +0400688 spin_lock(&ctx_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK);
690 ctx = (tlb_context_cache + 1) & CTX_NR_MASK;
691 new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx);
David S. Millera0663a72006-02-23 14:19:28 -0800692 new_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (new_ctx >= (1 << CTX_NR_BITS)) {
694 new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
695 if (new_ctx >= ctx) {
696 int i;
697 new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
698 CTX_FIRST_VERSION;
699 if (new_ctx == 1)
700 new_ctx = CTX_FIRST_VERSION;
701
702 /* Don't call memset, for 16 entries that's just
703 * plain silly...
704 */
705 mmu_context_bmap[0] = 3;
706 mmu_context_bmap[1] = 0;
707 mmu_context_bmap[2] = 0;
708 mmu_context_bmap[3] = 0;
709 for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
710 mmu_context_bmap[i + 0] = 0;
711 mmu_context_bmap[i + 1] = 0;
712 mmu_context_bmap[i + 2] = 0;
713 mmu_context_bmap[i + 3] = 0;
714 }
David S. Millera0663a72006-02-23 14:19:28 -0800715 new_version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 goto out;
717 }
718 }
719 mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
720 new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
721out:
722 tlb_context_cache = new_ctx;
723 mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits;
Kirill Tkhai07df8412013-04-09 00:29:46 +0400724 spin_unlock(&ctx_alloc_lock);
David S. Millera0663a72006-02-23 14:19:28 -0800725
726 if (unlikely(new_version))
727 smp_new_mmu_context_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
David S. Miller919ee672008-04-23 05:40:25 -0700730static int numa_enabled = 1;
731static int numa_debug;
732
733static int __init early_numa(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
David S. Miller919ee672008-04-23 05:40:25 -0700735 if (!p)
736 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800737
David S. Miller919ee672008-04-23 05:40:25 -0700738 if (strstr(p, "off"))
739 numa_enabled = 0;
David S. Millerd1112012006-03-08 02:16:07 -0800740
David S. Miller919ee672008-04-23 05:40:25 -0700741 if (strstr(p, "debug"))
742 numa_debug = 1;
743
744 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800745}
David S. Miller919ee672008-04-23 05:40:25 -0700746early_param("numa", early_numa);
747
748#define numadbg(f, a...) \
749do { if (numa_debug) \
750 printk(KERN_INFO f, ## a); \
751} while (0)
David S. Millerd1112012006-03-08 02:16:07 -0800752
David S. Miller4e82c9a2008-02-13 18:00:03 -0800753static void __init find_ramdisk(unsigned long phys_base)
754{
755#ifdef CONFIG_BLK_DEV_INITRD
756 if (sparc_ramdisk_image || sparc_ramdisk_image64) {
757 unsigned long ramdisk_image;
758
759 /* Older versions of the bootloader only supported a
760 * 32-bit physical address for the ramdisk image
761 * location, stored at sparc_ramdisk_image. Newer
762 * SILO versions set sparc_ramdisk_image to zero and
763 * provide a full 64-bit physical address at
764 * sparc_ramdisk_image64.
765 */
766 ramdisk_image = sparc_ramdisk_image;
767 if (!ramdisk_image)
768 ramdisk_image = sparc_ramdisk_image64;
769
770 /* Another bootloader quirk. The bootloader normalizes
771 * the physical address to KERNBASE, so we have to
772 * factor that back out and add in the lowest valid
773 * physical page address to get the true physical address.
774 */
775 ramdisk_image -= KERNBASE;
776 ramdisk_image += phys_base;
777
David S. Miller919ee672008-04-23 05:40:25 -0700778 numadbg("Found ramdisk at physical address 0x%lx, size %u\n",
779 ramdisk_image, sparc_ramdisk_size);
780
David S. Miller4e82c9a2008-02-13 18:00:03 -0800781 initrd_start = ramdisk_image;
782 initrd_end = ramdisk_image + sparc_ramdisk_size;
David S. Miller3b2a7e22008-02-13 18:13:20 -0800783
Yinghai Lu95f72d12010-07-12 14:36:09 +1000784 memblock_reserve(initrd_start, sparc_ramdisk_size);
David S. Millerd45100f2008-05-06 15:19:54 -0700785
786 initrd_start += PAGE_OFFSET;
787 initrd_end += PAGE_OFFSET;
David S. Miller4e82c9a2008-02-13 18:00:03 -0800788 }
789#endif
790}
791
David S. Miller919ee672008-04-23 05:40:25 -0700792struct node_mem_mask {
793 unsigned long mask;
794 unsigned long val;
David S. Miller919ee672008-04-23 05:40:25 -0700795};
796static struct node_mem_mask node_masks[MAX_NUMNODES];
797static int num_node_masks;
798
Sam Ravnborg48d37212014-05-16 23:26:12 +0200799#ifdef CONFIG_NEED_MULTIPLE_NODES
800
David S. Miller919ee672008-04-23 05:40:25 -0700801int numa_cpu_lookup_table[NR_CPUS];
802cpumask_t numa_cpumask_lookup_table[MAX_NUMNODES];
803
David S. Miller919ee672008-04-23 05:40:25 -0700804struct mdesc_mblock {
805 u64 base;
806 u64 size;
807 u64 offset; /* RA-to-PA */
808};
809static struct mdesc_mblock *mblocks;
810static int num_mblocks;
811
812static unsigned long ra_to_pa(unsigned long addr)
David S. Millerd1112012006-03-08 02:16:07 -0800813{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 int i;
815
David S. Miller919ee672008-04-23 05:40:25 -0700816 for (i = 0; i < num_mblocks; i++) {
817 struct mdesc_mblock *m = &mblocks[i];
David S. Miller6fc5bae2006-12-28 21:00:23 -0800818
David S. Miller919ee672008-04-23 05:40:25 -0700819 if (addr >= m->base &&
820 addr < (m->base + m->size)) {
821 addr += m->offset;
822 break;
823 }
824 }
825 return addr;
826}
827
828static int find_node(unsigned long addr)
829{
830 int i;
831
832 addr = ra_to_pa(addr);
833 for (i = 0; i < num_node_masks; i++) {
834 struct node_mem_mask *p = &node_masks[i];
835
836 if ((addr & p->mask) == p->val)
837 return i;
838 }
839 return -1;
840}
841
Tejun Heof9b18db2011-07-12 10:46:32 +0200842static u64 memblock_nid_range(u64 start, u64 end, int *nid)
David S. Miller919ee672008-04-23 05:40:25 -0700843{
844 *nid = find_node(start);
845 start += PAGE_SIZE;
846 while (start < end) {
847 int n = find_node(start);
848
849 if (n != *nid)
850 break;
851 start += PAGE_SIZE;
852 }
853
David S. Millerc918dcc2008-08-14 01:41:39 -0700854 if (start > end)
855 start = end;
856
David S. Miller919ee672008-04-23 05:40:25 -0700857 return start;
858}
David S. Miller919ee672008-04-23 05:40:25 -0700859#endif
860
861/* This must be invoked after performing all of the necessary
Tejun Heo2a4814d2011-12-08 10:22:08 -0800862 * memblock_set_node() calls for 'nid'. We need to be able to get
David S. Miller919ee672008-04-23 05:40:25 -0700863 * correct data from get_pfn_range_for_nid().
864 */
865static void __init allocate_node_data(int nid)
866{
David S. Miller919ee672008-04-23 05:40:25 -0700867 struct pglist_data *p;
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400868 unsigned long start_pfn, end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -0700869#ifdef CONFIG_NEED_MULTIPLE_NODES
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400870 unsigned long paddr;
871
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700872 paddr = memblock_alloc_try_nid(sizeof(struct pglist_data), SMP_CACHE_BYTES, nid);
David S. Miller919ee672008-04-23 05:40:25 -0700873 if (!paddr) {
874 prom_printf("Cannot allocate pglist_data for nid[%d]\n", nid);
875 prom_halt();
876 }
877 NODE_DATA(nid) = __va(paddr);
878 memset(NODE_DATA(nid), 0, sizeof(struct pglist_data));
879
David S. Miller625d6932012-04-25 13:13:43 -0700880 NODE_DATA(nid)->node_id = nid;
David S. Miller919ee672008-04-23 05:40:25 -0700881#endif
882
883 p = NODE_DATA(nid);
884
885 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
886 p->node_start_pfn = start_pfn;
887 p->node_spanned_pages = end_pfn - start_pfn;
David S. Miller919ee672008-04-23 05:40:25 -0700888}
889
890static void init_node_masks_nonnuma(void)
891{
Sam Ravnborg48d37212014-05-16 23:26:12 +0200892#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -0700893 int i;
Sam Ravnborg48d37212014-05-16 23:26:12 +0200894#endif
David S. Miller919ee672008-04-23 05:40:25 -0700895
896 numadbg("Initializing tables for non-numa.\n");
897
898 node_masks[0].mask = node_masks[0].val = 0;
899 num_node_masks = 1;
900
Sam Ravnborg48d37212014-05-16 23:26:12 +0200901#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -0700902 for (i = 0; i < NR_CPUS; i++)
903 numa_cpu_lookup_table[i] = 0;
904
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700905 cpumask_setall(&numa_cpumask_lookup_table[0]);
Sam Ravnborg48d37212014-05-16 23:26:12 +0200906#endif
David S. Miller919ee672008-04-23 05:40:25 -0700907}
908
909#ifdef CONFIG_NEED_MULTIPLE_NODES
910struct pglist_data *node_data[MAX_NUMNODES];
911
912EXPORT_SYMBOL(numa_cpu_lookup_table);
913EXPORT_SYMBOL(numa_cpumask_lookup_table);
914EXPORT_SYMBOL(node_data);
915
916struct mdesc_mlgroup {
917 u64 node;
918 u64 latency;
919 u64 match;
920 u64 mask;
921};
922static struct mdesc_mlgroup *mlgroups;
923static int num_mlgroups;
924
925static int scan_pio_for_cfg_handle(struct mdesc_handle *md, u64 pio,
926 u32 cfg_handle)
927{
928 u64 arc;
929
930 mdesc_for_each_arc(arc, md, pio, MDESC_ARC_TYPE_FWD) {
931 u64 target = mdesc_arc_target(md, arc);
932 const u64 *val;
933
934 val = mdesc_get_property(md, target,
935 "cfg-handle", NULL);
936 if (val && *val == cfg_handle)
937 return 0;
938 }
939 return -ENODEV;
940}
941
942static int scan_arcs_for_cfg_handle(struct mdesc_handle *md, u64 grp,
943 u32 cfg_handle)
944{
945 u64 arc, candidate, best_latency = ~(u64)0;
946
947 candidate = MDESC_NODE_NULL;
948 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
949 u64 target = mdesc_arc_target(md, arc);
950 const char *name = mdesc_node_name(md, target);
951 const u64 *val;
952
953 if (strcmp(name, "pio-latency-group"))
954 continue;
955
956 val = mdesc_get_property(md, target, "latency", NULL);
957 if (!val)
958 continue;
959
960 if (*val < best_latency) {
961 candidate = target;
962 best_latency = *val;
963 }
964 }
965
966 if (candidate == MDESC_NODE_NULL)
967 return -ENODEV;
968
969 return scan_pio_for_cfg_handle(md, candidate, cfg_handle);
970}
971
972int of_node_to_nid(struct device_node *dp)
973{
974 const struct linux_prom64_registers *regs;
975 struct mdesc_handle *md;
976 u32 cfg_handle;
977 int count, nid;
978 u64 grp;
979
David S. Miller072bd412008-08-18 20:36:17 -0700980 /* This is the right thing to do on currently supported
981 * SUN4U NUMA platforms as well, as the PCI controller does
982 * not sit behind any particular memory controller.
983 */
David S. Miller919ee672008-04-23 05:40:25 -0700984 if (!mlgroups)
985 return -1;
986
987 regs = of_get_property(dp, "reg", NULL);
988 if (!regs)
989 return -1;
990
991 cfg_handle = (regs->phys_addr >> 32UL) & 0x0fffffff;
992
993 md = mdesc_grab();
994
995 count = 0;
996 nid = -1;
997 mdesc_for_each_node_by_name(md, grp, "group") {
998 if (!scan_arcs_for_cfg_handle(md, grp, cfg_handle)) {
999 nid = count;
1000 break;
1001 }
1002 count++;
1003 }
1004
1005 mdesc_release(md);
1006
1007 return nid;
1008}
1009
David S. Miller01c453812009-04-07 01:05:22 -07001010static void __init add_node_ranges(void)
David S. Miller919ee672008-04-23 05:40:25 -07001011{
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001012 struct memblock_region *reg;
David S. Miller919ee672008-04-23 05:40:25 -07001013
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001014 for_each_memblock(memory, reg) {
1015 unsigned long size = reg->size;
David S. Miller919ee672008-04-23 05:40:25 -07001016 unsigned long start, end;
1017
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001018 start = reg->base;
David S. Miller919ee672008-04-23 05:40:25 -07001019 end = start + size;
1020 while (start < end) {
1021 unsigned long this_end;
1022 int nid;
1023
Benjamin Herrenschmidt35a1f0b2010-07-06 15:38:58 -07001024 this_end = memblock_nid_range(start, end, &nid);
David S. Miller919ee672008-04-23 05:40:25 -07001025
Tejun Heo2a4814d2011-12-08 10:22:08 -08001026 numadbg("Setting memblock NUMA node nid[%d] "
David S. Miller919ee672008-04-23 05:40:25 -07001027 "start[%lx] end[%lx]\n",
1028 nid, start, this_end);
1029
Tang Chene7e8de52014-01-21 15:49:26 -08001030 memblock_set_node(start, this_end - start,
1031 &memblock.memory, nid);
David S. Miller919ee672008-04-23 05:40:25 -07001032 start = this_end;
1033 }
1034 }
1035}
1036
1037static int __init grab_mlgroups(struct mdesc_handle *md)
1038{
1039 unsigned long paddr;
1040 int count = 0;
1041 u64 node;
1042
1043 mdesc_for_each_node_by_name(md, node, "memory-latency-group")
1044 count++;
1045 if (!count)
1046 return -ENOENT;
1047
Yinghai Lu95f72d12010-07-12 14:36:09 +10001048 paddr = memblock_alloc(count * sizeof(struct mdesc_mlgroup),
David S. Miller919ee672008-04-23 05:40:25 -07001049 SMP_CACHE_BYTES);
1050 if (!paddr)
1051 return -ENOMEM;
1052
1053 mlgroups = __va(paddr);
1054 num_mlgroups = count;
1055
1056 count = 0;
1057 mdesc_for_each_node_by_name(md, node, "memory-latency-group") {
1058 struct mdesc_mlgroup *m = &mlgroups[count++];
1059 const u64 *val;
1060
1061 m->node = node;
1062
1063 val = mdesc_get_property(md, node, "latency", NULL);
1064 m->latency = *val;
1065 val = mdesc_get_property(md, node, "address-match", NULL);
1066 m->match = *val;
1067 val = mdesc_get_property(md, node, "address-mask", NULL);
1068 m->mask = *val;
1069
Sam Ravnborg90181132009-01-06 13:19:28 -08001070 numadbg("MLGROUP[%d]: node[%llx] latency[%llx] "
1071 "match[%llx] mask[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001072 count - 1, m->node, m->latency, m->match, m->mask);
1073 }
1074
1075 return 0;
1076}
1077
1078static int __init grab_mblocks(struct mdesc_handle *md)
1079{
1080 unsigned long paddr;
1081 int count = 0;
1082 u64 node;
1083
1084 mdesc_for_each_node_by_name(md, node, "mblock")
1085 count++;
1086 if (!count)
1087 return -ENOENT;
1088
Yinghai Lu95f72d12010-07-12 14:36:09 +10001089 paddr = memblock_alloc(count * sizeof(struct mdesc_mblock),
David S. Miller919ee672008-04-23 05:40:25 -07001090 SMP_CACHE_BYTES);
1091 if (!paddr)
1092 return -ENOMEM;
1093
1094 mblocks = __va(paddr);
1095 num_mblocks = count;
1096
1097 count = 0;
1098 mdesc_for_each_node_by_name(md, node, "mblock") {
1099 struct mdesc_mblock *m = &mblocks[count++];
1100 const u64 *val;
1101
1102 val = mdesc_get_property(md, node, "base", NULL);
1103 m->base = *val;
1104 val = mdesc_get_property(md, node, "size", NULL);
1105 m->size = *val;
1106 val = mdesc_get_property(md, node,
1107 "address-congruence-offset", NULL);
bob picco771a37f2013-06-11 14:54:51 -04001108
1109 /* The address-congruence-offset property is optional.
1110 * Explicity zero it be identifty this.
1111 */
1112 if (val)
1113 m->offset = *val;
1114 else
1115 m->offset = 0UL;
David S. Miller919ee672008-04-23 05:40:25 -07001116
Sam Ravnborg90181132009-01-06 13:19:28 -08001117 numadbg("MBLOCK[%d]: base[%llx] size[%llx] offset[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001118 count - 1, m->base, m->size, m->offset);
1119 }
1120
1121 return 0;
1122}
1123
1124static void __init numa_parse_mdesc_group_cpus(struct mdesc_handle *md,
1125 u64 grp, cpumask_t *mask)
1126{
1127 u64 arc;
1128
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001129 cpumask_clear(mask);
David S. Miller919ee672008-04-23 05:40:25 -07001130
1131 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_BACK) {
1132 u64 target = mdesc_arc_target(md, arc);
1133 const char *name = mdesc_node_name(md, target);
1134 const u64 *id;
1135
1136 if (strcmp(name, "cpu"))
1137 continue;
1138 id = mdesc_get_property(md, target, "id", NULL);
Rusty Russelle305cb8f2009-03-16 14:40:23 +10301139 if (*id < nr_cpu_ids)
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001140 cpumask_set_cpu(*id, mask);
David S. Miller919ee672008-04-23 05:40:25 -07001141 }
1142}
1143
1144static struct mdesc_mlgroup * __init find_mlgroup(u64 node)
1145{
1146 int i;
1147
1148 for (i = 0; i < num_mlgroups; i++) {
1149 struct mdesc_mlgroup *m = &mlgroups[i];
1150 if (m->node == node)
1151 return m;
1152 }
1153 return NULL;
1154}
1155
1156static int __init numa_attach_mlgroup(struct mdesc_handle *md, u64 grp,
1157 int index)
1158{
1159 struct mdesc_mlgroup *candidate = NULL;
1160 u64 arc, best_latency = ~(u64)0;
1161 struct node_mem_mask *n;
1162
1163 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
1164 u64 target = mdesc_arc_target(md, arc);
1165 struct mdesc_mlgroup *m = find_mlgroup(target);
1166 if (!m)
1167 continue;
1168 if (m->latency < best_latency) {
1169 candidate = m;
1170 best_latency = m->latency;
1171 }
1172 }
1173 if (!candidate)
1174 return -ENOENT;
1175
1176 if (num_node_masks != index) {
1177 printk(KERN_ERR "Inconsistent NUMA state, "
1178 "index[%d] != num_node_masks[%d]\n",
1179 index, num_node_masks);
1180 return -EINVAL;
1181 }
1182
1183 n = &node_masks[num_node_masks++];
1184
1185 n->mask = candidate->mask;
1186 n->val = candidate->match;
1187
Sam Ravnborg90181132009-01-06 13:19:28 -08001188 numadbg("NUMA NODE[%d]: mask[%lx] val[%lx] (latency[%llx])\n",
David S. Miller919ee672008-04-23 05:40:25 -07001189 index, n->mask, n->val, candidate->latency);
1190
1191 return 0;
1192}
1193
1194static int __init numa_parse_mdesc_group(struct mdesc_handle *md, u64 grp,
1195 int index)
1196{
1197 cpumask_t mask;
1198 int cpu;
1199
1200 numa_parse_mdesc_group_cpus(md, grp, &mask);
1201
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001202 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001203 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001204 cpumask_copy(&numa_cpumask_lookup_table[index], &mask);
David S. Miller919ee672008-04-23 05:40:25 -07001205
1206 if (numa_debug) {
1207 printk(KERN_INFO "NUMA GROUP[%d]: cpus [ ", index);
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001208 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001209 printk("%d ", cpu);
1210 printk("]\n");
1211 }
1212
1213 return numa_attach_mlgroup(md, grp, index);
1214}
1215
1216static int __init numa_parse_mdesc(void)
1217{
1218 struct mdesc_handle *md = mdesc_grab();
1219 int i, err, count;
1220 u64 node;
1221
1222 node = mdesc_node_by_name(md, MDESC_NODE_NULL, "latency-groups");
1223 if (node == MDESC_NODE_NULL) {
1224 mdesc_release(md);
1225 return -ENOENT;
1226 }
1227
1228 err = grab_mblocks(md);
1229 if (err < 0)
1230 goto out;
1231
1232 err = grab_mlgroups(md);
1233 if (err < 0)
1234 goto out;
1235
1236 count = 0;
1237 mdesc_for_each_node_by_name(md, node, "group") {
1238 err = numa_parse_mdesc_group(md, node, count);
1239 if (err < 0)
1240 break;
1241 count++;
1242 }
1243
1244 add_node_ranges();
1245
1246 for (i = 0; i < num_node_masks; i++) {
1247 allocate_node_data(i);
1248 node_set_online(i);
1249 }
1250
1251 err = 0;
1252out:
1253 mdesc_release(md);
1254 return err;
1255}
1256
David S. Miller072bd412008-08-18 20:36:17 -07001257static int __init numa_parse_jbus(void)
1258{
1259 unsigned long cpu, index;
1260
1261 /* NUMA node id is encoded in bits 36 and higher, and there is
1262 * a 1-to-1 mapping from CPU ID to NUMA node ID.
1263 */
1264 index = 0;
1265 for_each_present_cpu(cpu) {
1266 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001267 cpumask_copy(&numa_cpumask_lookup_table[index], cpumask_of(cpu));
David S. Miller072bd412008-08-18 20:36:17 -07001268 node_masks[index].mask = ~((1UL << 36UL) - 1UL);
1269 node_masks[index].val = cpu << 36UL;
1270
1271 index++;
1272 }
1273 num_node_masks = index;
1274
1275 add_node_ranges();
1276
1277 for (index = 0; index < num_node_masks; index++) {
1278 allocate_node_data(index);
1279 node_set_online(index);
1280 }
1281
1282 return 0;
1283}
1284
David S. Miller919ee672008-04-23 05:40:25 -07001285static int __init numa_parse_sun4u(void)
1286{
David S. Miller072bd412008-08-18 20:36:17 -07001287 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1288 unsigned long ver;
1289
1290 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
1291 if ((ver >> 32UL) == __JALAPENO_ID ||
1292 (ver >> 32UL) == __SERRANO_ID)
1293 return numa_parse_jbus();
1294 }
David S. Miller919ee672008-04-23 05:40:25 -07001295 return -1;
1296}
1297
1298static int __init bootmem_init_numa(void)
1299{
1300 int err = -1;
1301
1302 numadbg("bootmem_init_numa()\n");
1303
1304 if (numa_enabled) {
1305 if (tlb_type == hypervisor)
1306 err = numa_parse_mdesc();
1307 else
1308 err = numa_parse_sun4u();
1309 }
1310 return err;
1311}
1312
1313#else
1314
1315static int bootmem_init_numa(void)
1316{
1317 return -1;
1318}
1319
1320#endif
1321
1322static void __init bootmem_init_nonnuma(void)
1323{
Yinghai Lu95f72d12010-07-12 14:36:09 +10001324 unsigned long top_of_ram = memblock_end_of_DRAM();
1325 unsigned long total_ram = memblock_phys_mem_size();
David S. Miller919ee672008-04-23 05:40:25 -07001326
1327 numadbg("bootmem_init_nonnuma()\n");
1328
1329 printk(KERN_INFO "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
1330 top_of_ram, total_ram);
1331 printk(KERN_INFO "Memory hole size: %ldMB\n",
1332 (top_of_ram - total_ram) >> 20);
1333
1334 init_node_masks_nonnuma();
Tang Chene7e8de52014-01-21 15:49:26 -08001335 memblock_set_node(0, (phys_addr_t)ULLONG_MAX, &memblock.memory, 0);
David S. Miller919ee672008-04-23 05:40:25 -07001336 allocate_node_data(0);
David S. Miller919ee672008-04-23 05:40:25 -07001337 node_set_online(0);
1338}
1339
David S. Miller919ee672008-04-23 05:40:25 -07001340static unsigned long __init bootmem_init(unsigned long phys_base)
1341{
1342 unsigned long end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -07001343
Yinghai Lu95f72d12010-07-12 14:36:09 +10001344 end_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 max_pfn = max_low_pfn = end_pfn;
David S. Millerd1112012006-03-08 02:16:07 -08001346 min_low_pfn = (phys_base >> PAGE_SHIFT);
1347
David S. Miller919ee672008-04-23 05:40:25 -07001348 if (bootmem_init_numa() < 0)
1349 bootmem_init_nonnuma();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
David S. Miller625d6932012-04-25 13:13:43 -07001351 /* Dump memblock with node info. */
1352 memblock_dump_all();
1353
David S. Miller919ee672008-04-23 05:40:25 -07001354 /* XXX cpu notifier XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
David S. Miller625d6932012-04-25 13:13:43 -07001356 sparse_memory_present_with_active_regions(MAX_NUMNODES);
David S. Millerd1112012006-03-08 02:16:07 -08001357 sparse_init();
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return end_pfn;
1360}
1361
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001362static struct linux_prom64_registers pall[MAX_BANKS] __initdata;
1363static int pall_ents __initdata;
1364
David S. Miller56425302005-09-25 16:46:57 -07001365#ifdef CONFIG_DEBUG_PAGEALLOC
Sam Ravnborg896aef42008-02-24 19:49:52 -08001366static unsigned long __ref kernel_map_range(unsigned long pstart,
1367 unsigned long pend, pgprot_t prot)
David S. Miller56425302005-09-25 16:46:57 -07001368{
1369 unsigned long vstart = PAGE_OFFSET + pstart;
1370 unsigned long vend = PAGE_OFFSET + pend;
1371 unsigned long alloc_bytes = 0UL;
1372
1373 if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) {
David S. Miller13edad72005-09-29 17:58:26 -07001374 prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n",
David S. Miller56425302005-09-25 16:46:57 -07001375 vstart, vend);
1376 prom_halt();
1377 }
1378
1379 while (vstart < vend) {
1380 unsigned long this_end, paddr = __pa(vstart);
1381 pgd_t *pgd = pgd_offset_k(vstart);
1382 pud_t *pud;
1383 pmd_t *pmd;
1384 pte_t *pte;
1385
1386 pud = pud_offset(pgd, vstart);
1387 if (pud_none(*pud)) {
1388 pmd_t *new;
1389
1390 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1391 alloc_bytes += PAGE_SIZE;
1392 pud_populate(&init_mm, pud, new);
1393 }
1394
1395 pmd = pmd_offset(pud, vstart);
1396 if (!pmd_present(*pmd)) {
1397 pte_t *new;
1398
1399 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1400 alloc_bytes += PAGE_SIZE;
1401 pmd_populate_kernel(&init_mm, pmd, new);
1402 }
1403
1404 pte = pte_offset_kernel(pmd, vstart);
1405 this_end = (vstart + PMD_SIZE) & PMD_MASK;
1406 if (this_end > vend)
1407 this_end = vend;
1408
1409 while (vstart < this_end) {
1410 pte_val(*pte) = (paddr | pgprot_val(prot));
1411
1412 vstart += PAGE_SIZE;
1413 paddr += PAGE_SIZE;
1414 pte++;
1415 }
1416 }
1417
1418 return alloc_bytes;
1419}
1420
David S. Miller56425302005-09-25 16:46:57 -07001421extern unsigned int kvmap_linear_patch[1];
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001422#endif /* CONFIG_DEBUG_PAGEALLOC */
1423
David S. Miller4f93d212012-09-06 18:13:58 -07001424static void __init kpte_set_val(unsigned long index, unsigned long val)
1425{
1426 unsigned long *ptr = kpte_linear_bitmap;
1427
1428 val <<= ((index % (BITS_PER_LONG / 2)) * 2);
1429 ptr += (index / (BITS_PER_LONG / 2));
1430
1431 *ptr |= val;
1432}
1433
1434static const unsigned long kpte_shift_min = 28; /* 256MB */
1435static const unsigned long kpte_shift_max = 34; /* 16GB */
1436static const unsigned long kpte_shift_incr = 3;
1437
1438static unsigned long kpte_mark_using_shift(unsigned long start, unsigned long end,
1439 unsigned long shift)
1440{
1441 unsigned long size = (1UL << shift);
1442 unsigned long mask = (size - 1UL);
1443 unsigned long remains = end - start;
1444 unsigned long val;
1445
1446 if (remains < size || (start & mask))
1447 return start;
1448
1449 /* VAL maps:
1450 *
1451 * shift 28 --> kern_linear_pte_xor index 1
1452 * shift 31 --> kern_linear_pte_xor index 2
1453 * shift 34 --> kern_linear_pte_xor index 3
1454 */
1455 val = ((shift - kpte_shift_min) / kpte_shift_incr) + 1;
1456
1457 remains &= ~mask;
1458 if (shift != kpte_shift_max)
1459 remains = size;
1460
1461 while (remains) {
1462 unsigned long index = start >> kpte_shift_min;
1463
1464 kpte_set_val(index, val);
1465
1466 start += 1UL << kpte_shift_min;
1467 remains -= 1UL << kpte_shift_min;
1468 }
1469
1470 return start;
1471}
1472
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001473static void __init mark_kpte_bitmap(unsigned long start, unsigned long end)
1474{
David S. Miller4f93d212012-09-06 18:13:58 -07001475 unsigned long smallest_size, smallest_mask;
1476 unsigned long s;
1477
1478 smallest_size = (1UL << kpte_shift_min);
1479 smallest_mask = (smallest_size - 1UL);
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001480
1481 while (start < end) {
David S. Miller4f93d212012-09-06 18:13:58 -07001482 unsigned long orig_start = start;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001483
David S. Miller4f93d212012-09-06 18:13:58 -07001484 for (s = kpte_shift_max; s >= kpte_shift_min; s -= kpte_shift_incr) {
1485 start = kpte_mark_using_shift(start, end, s);
David S. Millerf7c00332006-03-05 22:18:50 -08001486
David S. Miller4f93d212012-09-06 18:13:58 -07001487 if (start != orig_start)
1488 break;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001489 }
1490
David S. Miller4f93d212012-09-06 18:13:58 -07001491 if (start == orig_start)
1492 start = (start + smallest_size) & ~smallest_mask;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001493 }
1494}
David S. Miller56425302005-09-25 16:46:57 -07001495
David S. Miller8f3614532007-12-13 06:13:38 -08001496static void __init init_kpte_bitmap(void)
David S. Miller56425302005-09-25 16:46:57 -07001497{
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001498 unsigned long i;
David S. Miller13edad72005-09-29 17:58:26 -07001499
1500 for (i = 0; i < pall_ents; i++) {
David S. Miller56425302005-09-25 16:46:57 -07001501 unsigned long phys_start, phys_end;
1502
David S. Miller13edad72005-09-29 17:58:26 -07001503 phys_start = pall[i].phys_addr;
1504 phys_end = phys_start + pall[i].reg_size;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001505
1506 mark_kpte_bitmap(phys_start, phys_end);
David S. Miller8f3614532007-12-13 06:13:38 -08001507 }
1508}
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001509
David S. Miller8f3614532007-12-13 06:13:38 -08001510static void __init kernel_physical_mapping_init(void)
1511{
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001512#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller8f3614532007-12-13 06:13:38 -08001513 unsigned long i, mem_alloced = 0UL;
1514
1515 for (i = 0; i < pall_ents; i++) {
1516 unsigned long phys_start, phys_end;
1517
1518 phys_start = pall[i].phys_addr;
1519 phys_end = phys_start + pall[i].reg_size;
1520
David S. Miller56425302005-09-25 16:46:57 -07001521 mem_alloced += kernel_map_range(phys_start, phys_end,
1522 PAGE_KERNEL);
David S. Miller56425302005-09-25 16:46:57 -07001523 }
1524
1525 printk("Allocated %ld bytes for kernel page tables.\n",
1526 mem_alloced);
1527
1528 kvmap_linear_patch[0] = 0x01000000; /* nop */
1529 flushi(&kvmap_linear_patch[0]);
1530
1531 __flush_tlb_all();
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001532#endif
David S. Miller56425302005-09-25 16:46:57 -07001533}
1534
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001535#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001536void kernel_map_pages(struct page *page, int numpages, int enable)
1537{
1538 unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT;
1539 unsigned long phys_end = phys_start + (numpages * PAGE_SIZE);
1540
1541 kernel_map_range(phys_start, phys_end,
1542 (enable ? PAGE_KERNEL : __pgprot(0)));
1543
David S. Miller74bf4312006-01-31 18:29:18 -08001544 flush_tsb_kernel_range(PAGE_OFFSET + phys_start,
1545 PAGE_OFFSET + phys_end);
1546
David S. Miller56425302005-09-25 16:46:57 -07001547 /* we should perform an IPI and flush all tlbs,
1548 * but that can deadlock->flush only current cpu.
1549 */
1550 __flush_tlb_kernel_range(PAGE_OFFSET + phys_start,
1551 PAGE_OFFSET + phys_end);
1552}
1553#endif
1554
David S. Miller10147572005-09-28 21:46:43 -07001555unsigned long __init find_ecache_flush_span(unsigned long size)
1556{
David S. Miller13edad72005-09-29 17:58:26 -07001557 int i;
David S. Miller10147572005-09-28 21:46:43 -07001558
David S. Miller13edad72005-09-29 17:58:26 -07001559 for (i = 0; i < pavail_ents; i++) {
1560 if (pavail[i].reg_size >= size)
1561 return pavail[i].phys_addr;
David S. Miller10147572005-09-28 21:46:43 -07001562 }
1563
1564 return ~0UL;
1565}
1566
David S. Millerb2d43832013-09-20 21:50:41 -07001567unsigned long PAGE_OFFSET;
1568EXPORT_SYMBOL(PAGE_OFFSET);
1569
1570static void __init page_offset_shift_patch_one(unsigned int *insn, unsigned long phys_bits)
1571{
1572 unsigned long final_shift;
1573 unsigned int val = *insn;
1574 unsigned int cnt;
1575
1576 /* We are patching in ilog2(max_supported_phys_address), and
1577 * we are doing so in a manner similar to a relocation addend.
1578 * That is, we are adding the shift value to whatever value
1579 * is in the shift instruction count field already.
1580 */
1581 cnt = (val & 0x3f);
1582 val &= ~0x3f;
1583
1584 /* If we are trying to shift >= 64 bits, clear the destination
1585 * register. This can happen when phys_bits ends up being equal
1586 * to MAX_PHYS_ADDRESS_BITS.
1587 */
1588 final_shift = (cnt + (64 - phys_bits));
1589 if (final_shift >= 64) {
1590 unsigned int rd = (val >> 25) & 0x1f;
1591
1592 val = 0x80100000 | (rd << 25);
1593 } else {
1594 val |= final_shift;
1595 }
1596 *insn = val;
1597
1598 __asm__ __volatile__("flush %0"
1599 : /* no outputs */
1600 : "r" (insn));
1601}
1602
1603static void __init page_offset_shift_patch(unsigned long phys_bits)
1604{
1605 extern unsigned int __page_offset_shift_patch;
1606 extern unsigned int __page_offset_shift_patch_end;
1607 unsigned int *p;
1608
1609 p = &__page_offset_shift_patch;
1610 while (p < &__page_offset_shift_patch_end) {
1611 unsigned int *insn = (unsigned int *)(unsigned long)*p;
1612
1613 page_offset_shift_patch_one(insn, phys_bits);
1614
1615 p++;
1616 }
1617}
1618
1619static void __init setup_page_offset(void)
1620{
1621 unsigned long max_phys_bits = 40;
1622
1623 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1624 max_phys_bits = 42;
1625 } else if (tlb_type == hypervisor) {
1626 switch (sun4v_chip_type) {
1627 case SUN4V_CHIP_NIAGARA1:
1628 case SUN4V_CHIP_NIAGARA2:
1629 max_phys_bits = 39;
1630 break;
1631 case SUN4V_CHIP_NIAGARA3:
1632 max_phys_bits = 43;
1633 break;
1634 case SUN4V_CHIP_NIAGARA4:
1635 case SUN4V_CHIP_NIAGARA5:
1636 case SUN4V_CHIP_SPARC64X:
1637 default:
1638 max_phys_bits = 47;
1639 break;
1640 }
1641 }
1642
1643 if (max_phys_bits > MAX_PHYS_ADDRESS_BITS) {
1644 prom_printf("MAX_PHYS_ADDRESS_BITS is too small, need %lu\n",
1645 max_phys_bits);
1646 prom_halt();
1647 }
1648
1649 PAGE_OFFSET = PAGE_OFFSET_BY_BITS(max_phys_bits);
1650
1651 pr_info("PAGE_OFFSET is 0x%016lx (max_phys_bits == %lu)\n",
1652 PAGE_OFFSET, max_phys_bits);
1653
1654 page_offset_shift_patch(max_phys_bits);
1655}
1656
David S. Miller517af332006-02-01 15:55:21 -08001657static void __init tsb_phys_patch(void)
1658{
David S. Millerd257d5d2006-02-06 23:44:37 -08001659 struct tsb_ldquad_phys_patch_entry *pquad;
David S. Miller517af332006-02-01 15:55:21 -08001660 struct tsb_phys_patch_entry *p;
1661
David S. Millerd257d5d2006-02-06 23:44:37 -08001662 pquad = &__tsb_ldquad_phys_patch;
1663 while (pquad < &__tsb_ldquad_phys_patch_end) {
1664 unsigned long addr = pquad->addr;
1665
1666 if (tlb_type == hypervisor)
1667 *(unsigned int *) addr = pquad->sun4v_insn;
1668 else
1669 *(unsigned int *) addr = pquad->sun4u_insn;
1670 wmb();
1671 __asm__ __volatile__("flush %0"
1672 : /* no outputs */
1673 : "r" (addr));
1674
1675 pquad++;
1676 }
1677
David S. Miller517af332006-02-01 15:55:21 -08001678 p = &__tsb_phys_patch;
1679 while (p < &__tsb_phys_patch_end) {
1680 unsigned long addr = p->addr;
1681
1682 *(unsigned int *) addr = p->insn;
1683 wmb();
1684 __asm__ __volatile__("flush %0"
1685 : /* no outputs */
1686 : "r" (addr));
1687
1688 p++;
1689 }
1690}
1691
David S. Miller490384e2006-02-11 14:41:18 -08001692/* Don't mark as init, we give this to the Hypervisor. */
David S. Millerd1acb422007-03-16 17:20:28 -07001693#ifndef CONFIG_DEBUG_PAGEALLOC
1694#define NUM_KTSB_DESCR 2
1695#else
1696#define NUM_KTSB_DESCR 1
1697#endif
1698static struct hv_tsb_descr ktsb_descr[NUM_KTSB_DESCR];
David S. Miller490384e2006-02-11 14:41:18 -08001699extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
1700
David S. Miller9076d0e2011-08-05 00:53:57 -07001701static void patch_one_ktsb_phys(unsigned int *start, unsigned int *end, unsigned long pa)
1702{
1703 pa >>= KTSB_PHYS_SHIFT;
1704
1705 while (start < end) {
1706 unsigned int *ia = (unsigned int *)(unsigned long)*start;
1707
1708 ia[0] = (ia[0] & ~0x3fffff) | (pa >> 10);
1709 __asm__ __volatile__("flush %0" : : "r" (ia));
1710
1711 ia[1] = (ia[1] & ~0x3ff) | (pa & 0x3ff);
1712 __asm__ __volatile__("flush %0" : : "r" (ia + 1));
1713
1714 start++;
1715 }
1716}
1717
1718static void ktsb_phys_patch(void)
1719{
1720 extern unsigned int __swapper_tsb_phys_patch;
1721 extern unsigned int __swapper_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07001722 unsigned long ktsb_pa;
1723
1724 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1725 patch_one_ktsb_phys(&__swapper_tsb_phys_patch,
1726 &__swapper_tsb_phys_patch_end, ktsb_pa);
1727#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller0785a8e2011-08-06 05:26:35 -07001728 {
1729 extern unsigned int __swapper_4m_tsb_phys_patch;
1730 extern unsigned int __swapper_4m_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07001731 ktsb_pa = (kern_base +
1732 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1733 patch_one_ktsb_phys(&__swapper_4m_tsb_phys_patch,
1734 &__swapper_4m_tsb_phys_patch_end, ktsb_pa);
David S. Miller0785a8e2011-08-06 05:26:35 -07001735 }
David S. Miller9076d0e2011-08-05 00:53:57 -07001736#endif
1737}
1738
David S. Miller490384e2006-02-11 14:41:18 -08001739static void __init sun4v_ktsb_init(void)
1740{
1741 unsigned long ktsb_pa;
1742
David S. Millerd7744a02006-02-21 22:31:11 -08001743 /* First KTSB for PAGE_SIZE mappings. */
David S. Miller490384e2006-02-11 14:41:18 -08001744 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1745
1746 switch (PAGE_SIZE) {
1747 case 8 * 1024:
1748 default:
1749 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K;
1750 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K;
1751 break;
1752
1753 case 64 * 1024:
1754 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K;
1755 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K;
1756 break;
1757
1758 case 512 * 1024:
1759 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K;
1760 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K;
1761 break;
1762
1763 case 4 * 1024 * 1024:
1764 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB;
1765 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB;
1766 break;
Joe Perches6cb79b32011-06-03 14:45:23 +00001767 }
David S. Miller490384e2006-02-11 14:41:18 -08001768
David S. Miller3f19a842006-02-17 12:03:20 -08001769 ktsb_descr[0].assoc = 1;
David S. Miller490384e2006-02-11 14:41:18 -08001770 ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
1771 ktsb_descr[0].ctx_idx = 0;
1772 ktsb_descr[0].tsb_base = ktsb_pa;
1773 ktsb_descr[0].resv = 0;
1774
David S. Millerd1acb422007-03-16 17:20:28 -07001775#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller4f93d212012-09-06 18:13:58 -07001776 /* Second KTSB for 4MB/256MB/2GB/16GB mappings. */
David S. Millerd7744a02006-02-21 22:31:11 -08001777 ktsb_pa = (kern_base +
1778 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1779
1780 ktsb_descr[1].pgsz_idx = HV_PGSZ_IDX_4MB;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001781 ktsb_descr[1].pgsz_mask = ((HV_PGSZ_MASK_4MB |
1782 HV_PGSZ_MASK_256MB |
1783 HV_PGSZ_MASK_2GB |
1784 HV_PGSZ_MASK_16GB) &
1785 cpu_pgsz_mask);
David S. Millerd7744a02006-02-21 22:31:11 -08001786 ktsb_descr[1].assoc = 1;
1787 ktsb_descr[1].num_ttes = KERNEL_TSB4M_NENTRIES;
1788 ktsb_descr[1].ctx_idx = 0;
1789 ktsb_descr[1].tsb_base = ktsb_pa;
1790 ktsb_descr[1].resv = 0;
David S. Millerd1acb422007-03-16 17:20:28 -07001791#endif
David S. Miller490384e2006-02-11 14:41:18 -08001792}
1793
Paul Gortmaker2066aad2013-06-17 15:43:14 -04001794void sun4v_ktsb_register(void)
David S. Miller490384e2006-02-11 14:41:18 -08001795{
David S. Miller7db35f32007-05-29 02:22:14 -07001796 unsigned long pa, ret;
David S. Miller490384e2006-02-11 14:41:18 -08001797
1798 pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE);
1799
David S. Miller7db35f32007-05-29 02:22:14 -07001800 ret = sun4v_mmu_tsb_ctx0(NUM_KTSB_DESCR, pa);
1801 if (ret != 0) {
1802 prom_printf("hypervisor_mmu_tsb_ctx0[%lx]: "
1803 "errors with %lx\n", pa, ret);
1804 prom_halt();
1805 }
David S. Miller490384e2006-02-11 14:41:18 -08001806}
1807
David S. Millerc69ad0a2012-09-06 20:35:36 -07001808static void __init sun4u_linear_pte_xor_finalize(void)
1809{
1810#ifndef CONFIG_DEBUG_PAGEALLOC
1811 /* This is where we would add Panther support for
1812 * 32MB and 256MB pages.
1813 */
1814#endif
1815}
1816
1817static void __init sun4v_linear_pte_xor_finalize(void)
1818{
1819#ifndef CONFIG_DEBUG_PAGEALLOC
1820 if (cpu_pgsz_mask & HV_PGSZ_MASK_256MB) {
1821 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001822 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001823 kern_linear_pte_xor[1] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1824 _PAGE_P_4V | _PAGE_W_4V);
1825 } else {
1826 kern_linear_pte_xor[1] = kern_linear_pte_xor[0];
1827 }
1828
1829 if (cpu_pgsz_mask & HV_PGSZ_MASK_2GB) {
1830 kern_linear_pte_xor[2] = (_PAGE_VALID | _PAGE_SZ2GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001831 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001832 kern_linear_pte_xor[2] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1833 _PAGE_P_4V | _PAGE_W_4V);
1834 } else {
1835 kern_linear_pte_xor[2] = kern_linear_pte_xor[1];
1836 }
1837
1838 if (cpu_pgsz_mask & HV_PGSZ_MASK_16GB) {
1839 kern_linear_pte_xor[3] = (_PAGE_VALID | _PAGE_SZ16GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001840 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001841 kern_linear_pte_xor[3] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1842 _PAGE_P_4V | _PAGE_W_4V);
1843 } else {
1844 kern_linear_pte_xor[3] = kern_linear_pte_xor[2];
1845 }
1846#endif
1847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849/* paging_init() sets up the page tables */
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851static unsigned long last_valid_pfn;
David S. Miller2b779332013-09-25 14:33:16 -07001852pgd_t swapper_pg_dir[PTRS_PER_PGD];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
David S. Millerc4bce902006-02-11 21:57:54 -08001854static void sun4u_pgprot_init(void);
1855static void sun4v_pgprot_init(void);
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857void __init paging_init(void)
1858{
David S. Miller919ee672008-04-23 05:40:25 -07001859 unsigned long end_pfn, shift, phys_base;
David S. Miller0836a0e2005-09-28 21:38:08 -07001860 unsigned long real_end, i;
Paul Gortmakeraa6f0792012-05-09 20:44:29 -04001861 int node;
David S. Miller0836a0e2005-09-28 21:38:08 -07001862
David S. Millerb2d43832013-09-20 21:50:41 -07001863 setup_page_offset();
1864
David S. Miller22adb352007-05-26 01:14:43 -07001865 /* These build time checkes make sure that the dcache_dirty_cpu()
1866 * page->flags usage will work.
1867 *
1868 * When a page gets marked as dcache-dirty, we store the
1869 * cpu number starting at bit 32 in the page->flags. Also,
1870 * functions like clear_dcache_dirty_cpu use the cpu mask
1871 * in 13-bit signed-immediate instruction fields.
1872 */
Christoph Lameter9223b412008-04-28 02:12:48 -07001873
1874 /*
1875 * Page flags must not reach into upper 32 bits that are used
1876 * for the cpu number
1877 */
1878 BUILD_BUG_ON(NR_PAGEFLAGS > 32);
1879
1880 /*
1881 * The bit fields placed in the high range must not reach below
1882 * the 32 bit boundary. Otherwise we cannot place the cpu field
1883 * at the 32 bit boundary.
1884 */
David S. Miller22adb352007-05-26 01:14:43 -07001885 BUILD_BUG_ON(SECTIONS_WIDTH + NODES_WIDTH + ZONES_WIDTH +
Christoph Lameter9223b412008-04-28 02:12:48 -07001886 ilog2(roundup_pow_of_two(NR_CPUS)) > 32);
1887
David S. Miller22adb352007-05-26 01:14:43 -07001888 BUILD_BUG_ON(NR_CPUS > 4096);
1889
David S. Miller0eef3312014-05-03 22:52:50 -07001890 kern_base = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
David S. Miller481295f2006-02-07 21:51:08 -08001891 kern_size = (unsigned long)&_end - (unsigned long)KERNBASE;
1892
David S. Millerd7744a02006-02-21 22:31:11 -08001893 /* Invalidate both kernel TSBs. */
David S. Miller8b234272006-02-17 18:01:02 -08001894 memset(swapper_tsb, 0x40, sizeof(swapper_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07001895#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Millerd7744a02006-02-21 22:31:11 -08001896 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07001897#endif
David S. Miller8b234272006-02-17 18:01:02 -08001898
David S. Millerc4bce902006-02-11 21:57:54 -08001899 if (tlb_type == hypervisor)
1900 sun4v_pgprot_init();
1901 else
1902 sun4u_pgprot_init();
1903
David S. Millerd257d5d2006-02-06 23:44:37 -08001904 if (tlb_type == cheetah_plus ||
David S. Miller9076d0e2011-08-05 00:53:57 -07001905 tlb_type == hypervisor) {
David S. Miller517af332006-02-01 15:55:21 -08001906 tsb_phys_patch();
David S. Miller9076d0e2011-08-05 00:53:57 -07001907 ktsb_phys_patch();
1908 }
David S. Miller517af332006-02-01 15:55:21 -08001909
David S. Millerc69ad0a2012-09-06 20:35:36 -07001910 if (tlb_type == hypervisor)
David S. Millerd257d5d2006-02-06 23:44:37 -08001911 sun4v_patch_tlb_handlers();
1912
David S. Millera94a1722008-05-11 21:04:48 -07001913 /* Find available physical memory...
1914 *
1915 * Read it twice in order to work around a bug in openfirmware.
1916 * The call to grab this table itself can cause openfirmware to
1917 * allocate memory, which in turn can take away some space from
1918 * the list of available memory. Reading it twice makes sure
1919 * we really do get the final value.
1920 */
1921 read_obp_translations();
1922 read_obp_memory("reg", &pall[0], &pall_ents);
1923 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller13edad72005-09-29 17:58:26 -07001924 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller0836a0e2005-09-28 21:38:08 -07001925
1926 phys_base = 0xffffffffffffffffUL;
David S. Miller3b2a7e22008-02-13 18:13:20 -08001927 for (i = 0; i < pavail_ents; i++) {
David S. Miller13edad72005-09-29 17:58:26 -07001928 phys_base = min(phys_base, pavail[i].phys_addr);
Yinghai Lu95f72d12010-07-12 14:36:09 +10001929 memblock_add(pavail[i].phys_addr, pavail[i].reg_size);
David S. Miller3b2a7e22008-02-13 18:13:20 -08001930 }
1931
Yinghai Lu95f72d12010-07-12 14:36:09 +10001932 memblock_reserve(kern_base, kern_size);
David S. Miller0836a0e2005-09-28 21:38:08 -07001933
David S. Miller4e82c9a2008-02-13 18:00:03 -08001934 find_ramdisk(phys_base);
1935
Yinghai Lu95f72d12010-07-12 14:36:09 +10001936 memblock_enforce_memory_limit(cmdline_memory_size);
David S. Miller25b0c652008-02-13 18:20:14 -08001937
Tejun Heo1aadc052011-12-08 10:22:08 -08001938 memblock_allow_resize();
Yinghai Lu95f72d12010-07-12 14:36:09 +10001939 memblock_dump_all();
David S. Miller3b2a7e22008-02-13 18:13:20 -08001940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 set_bit(0, mmu_context_bmap);
1942
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001943 shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE);
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 real_end = (unsigned long)_end;
David S. Miller0eef3312014-05-03 22:52:50 -07001946 num_kernel_image_mappings = DIV_ROUND_UP(real_end - KERNBASE, 1 << ILOG2_4MB);
David S. Miller64658742008-03-21 17:01:38 -07001947 printk("Kernel: Using %d locked TLB entries for main kernel image.\n",
1948 num_kernel_image_mappings);
David S. Miller2bdb3cb2005-09-22 01:08:57 -07001949
1950 /* Set kernel pgd to upper alias so physical page computations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * work.
1952 */
1953 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
1954
David S. Miller56425302005-09-25 16:46:57 -07001955 memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /* Now can init the kernel/bad page tables. */
1958 pud_set(pud_offset(&swapper_pg_dir[0], 0),
David S. Miller56425302005-09-25 16:46:57 -07001959 swapper_low_pmd_dir + (shift / sizeof(pgd_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
David S. Millerc9c10832005-10-12 12:22:46 -07001961 inherit_prom_mappings();
David S. Miller5085b4a2005-09-22 00:45:41 -07001962
David S. Miller8f3614532007-12-13 06:13:38 -08001963 init_kpte_bitmap();
1964
David S. Millera8b900d2006-01-31 18:33:37 -08001965 /* Ok, we can use our TLB miss and window trap handlers safely. */
1966 setup_tba();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
David S. Millerc9c10832005-10-12 12:22:46 -07001968 __flush_tlb_all();
David S. Miller9ad98c52005-10-05 15:12:00 -07001969
David S. Millerad072002008-02-13 19:21:51 -08001970 prom_build_devicetree();
David S. Millerb696fdc2009-05-26 22:37:25 -07001971 of_populate_present_mask();
David S. Millerb99c6eb2009-06-18 01:44:19 -07001972#ifndef CONFIG_SMP
1973 of_fill_in_cpu_data();
1974#endif
David S. Millerad072002008-02-13 19:21:51 -08001975
David S. Miller890db402009-04-01 03:13:15 -07001976 if (tlb_type == hypervisor) {
David S. Miller4a283332008-02-13 19:22:23 -08001977 sun4v_mdesc_init();
Stephen Rothwell6ac5c612009-06-15 03:06:18 -07001978 mdesc_populate_present_mask(cpu_all_mask);
David S. Millerb99c6eb2009-06-18 01:44:19 -07001979#ifndef CONFIG_SMP
1980 mdesc_fill_in_cpu_data(cpu_all_mask);
1981#endif
David S. Millerce33fdc2012-09-06 19:01:25 -07001982 mdesc_get_page_sizes(cpu_all_mask, &cpu_pgsz_mask);
David S. Millerc69ad0a2012-09-06 20:35:36 -07001983
1984 sun4v_linear_pte_xor_finalize();
1985
1986 sun4v_ktsb_init();
1987 sun4v_ktsb_register();
David S. Millerce33fdc2012-09-06 19:01:25 -07001988 } else {
1989 unsigned long impl, ver;
1990
1991 cpu_pgsz_mask = (HV_PGSZ_MASK_8K | HV_PGSZ_MASK_64K |
1992 HV_PGSZ_MASK_512K | HV_PGSZ_MASK_4MB);
1993
1994 __asm__ __volatile__("rdpr %%ver, %0" : "=r" (ver));
1995 impl = ((ver >> 32) & 0xffff);
1996 if (impl == PANTHER_IMPL)
1997 cpu_pgsz_mask |= (HV_PGSZ_MASK_32MB |
1998 HV_PGSZ_MASK_256MB);
David S. Millerc69ad0a2012-09-06 20:35:36 -07001999
2000 sun4u_linear_pte_xor_finalize();
David S. Miller890db402009-04-01 03:13:15 -07002001 }
David S. Miller4a283332008-02-13 19:22:23 -08002002
David S. Millerc69ad0a2012-09-06 20:35:36 -07002003 /* Flush the TLBs and the 4M TSB so that the updated linear
2004 * pte XOR settings are realized for all mappings.
2005 */
2006 __flush_tlb_all();
2007#ifndef CONFIG_DEBUG_PAGEALLOC
2008 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
2009#endif
2010 __flush_tlb_all();
2011
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002012 /* Setup bootmem... */
David S. Miller919ee672008-04-23 05:40:25 -07002013 last_valid_pfn = end_pfn = bootmem_init(phys_base);
David S. Millerd1112012006-03-08 02:16:07 -08002014
David S. Miller5ed56f12012-04-26 20:50:34 -07002015 /* Once the OF device tree and MDESC have been setup, we know
2016 * the list of possible cpus. Therefore we can allocate the
2017 * IRQ stacks.
2018 */
2019 for_each_possible_cpu(i) {
Paul Gortmakeraa6f0792012-05-09 20:44:29 -04002020 node = cpu_to_node(i);
David S. Miller5ed56f12012-04-26 20:50:34 -07002021
2022 softirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
2023 THREAD_SIZE,
2024 THREAD_SIZE, 0);
2025 hardirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
2026 THREAD_SIZE,
2027 THREAD_SIZE, 0);
2028 }
2029
David S. Miller56425302005-09-25 16:46:57 -07002030 kernel_physical_mapping_init();
David S. Miller56425302005-09-25 16:46:57 -07002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 {
David S. Miller919ee672008-04-23 05:40:25 -07002033 unsigned long max_zone_pfns[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
David S. Miller919ee672008-04-23 05:40:25 -07002035 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
David S. Miller919ee672008-04-23 05:40:25 -07002037 max_zone_pfns[ZONE_NORMAL] = end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
David S. Miller919ee672008-04-23 05:40:25 -07002039 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041
David S. Miller3c62a2d2008-02-17 23:22:50 -08002042 printk("Booting Linux...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043}
2044
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -08002045int page_in_phys_avail(unsigned long paddr)
David S. Miller919ee672008-04-23 05:40:25 -07002046{
2047 int i;
2048
2049 paddr &= PAGE_MASK;
2050
2051 for (i = 0; i < pavail_ents; i++) {
2052 unsigned long start, end;
2053
2054 start = pavail[i].phys_addr;
2055 end = start + pavail[i].reg_size;
2056
2057 if (paddr >= start && paddr < end)
2058 return 1;
2059 }
2060 if (paddr >= kern_base && paddr < (kern_base + kern_size))
2061 return 1;
2062#ifdef CONFIG_BLK_DEV_INITRD
2063 if (paddr >= __pa(initrd_start) &&
2064 paddr < __pa(PAGE_ALIGN(initrd_end)))
2065 return 1;
2066#endif
2067
2068 return 0;
2069}
2070
2071static struct linux_prom64_registers pavail_rescan[MAX_BANKS] __initdata;
2072static int pavail_rescan_ents __initdata;
2073
2074/* Certain OBP calls, such as fetching "available" properties, can
2075 * claim physical memory. So, along with initializing the valid
2076 * address bitmap, what we do here is refetch the physical available
2077 * memory list again, and make sure it provides at least as much
2078 * memory as 'pavail' does.
2079 */
David S. Millerd8ed1d42009-08-25 16:47:46 -07002080static void __init setup_valid_addr_bitmap_from_pavail(unsigned long *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 int i;
2083
David S. Miller13edad72005-09-29 17:58:26 -07002084 read_obp_memory("available", &pavail_rescan[0], &pavail_rescan_ents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
David S. Miller13edad72005-09-29 17:58:26 -07002086 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 unsigned long old_start, old_end;
2088
David S. Miller13edad72005-09-29 17:58:26 -07002089 old_start = pavail[i].phys_addr;
David S. Miller919ee672008-04-23 05:40:25 -07002090 old_end = old_start + pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 while (old_start < old_end) {
2092 int n;
2093
David S. Millerc2a5a462006-06-22 00:01:56 -07002094 for (n = 0; n < pavail_rescan_ents; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 unsigned long new_start, new_end;
2096
David S. Miller13edad72005-09-29 17:58:26 -07002097 new_start = pavail_rescan[n].phys_addr;
2098 new_end = new_start +
2099 pavail_rescan[n].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 if (new_start <= old_start &&
2102 new_end >= (old_start + PAGE_SIZE)) {
David S. Miller0eef3312014-05-03 22:52:50 -07002103 set_bit(old_start >> ILOG2_4MB, bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 goto do_next_page;
2105 }
2106 }
David S. Miller919ee672008-04-23 05:40:25 -07002107
2108 prom_printf("mem_init: Lost memory in pavail\n");
2109 prom_printf("mem_init: OLD start[%lx] size[%lx]\n",
2110 pavail[i].phys_addr,
2111 pavail[i].reg_size);
2112 prom_printf("mem_init: NEW start[%lx] size[%lx]\n",
2113 pavail_rescan[i].phys_addr,
2114 pavail_rescan[i].reg_size);
2115 prom_printf("mem_init: Cannot continue, aborting.\n");
2116 prom_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 do_next_page:
2119 old_start += PAGE_SIZE;
2120 }
2121 }
2122}
2123
David S. Millerd8ed1d42009-08-25 16:47:46 -07002124static void __init patch_tlb_miss_handler_bitmap(void)
2125{
2126 extern unsigned int valid_addr_bitmap_insn[];
2127 extern unsigned int valid_addr_bitmap_patch[];
2128
2129 valid_addr_bitmap_insn[1] = valid_addr_bitmap_patch[1];
2130 mb();
2131 valid_addr_bitmap_insn[0] = valid_addr_bitmap_patch[0];
2132 flushi(&valid_addr_bitmap_insn[0]);
2133}
2134
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002135static void __init register_page_bootmem_info(void)
2136{
2137#ifdef CONFIG_NEED_MULTIPLE_NODES
2138 int i;
2139
2140 for_each_online_node(i)
2141 if (NODE_DATA(i)->node_spanned_pages)
2142 register_page_bootmem_info_node(NODE_DATA(i));
2143#endif
2144}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145void __init mem_init(void)
2146{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 unsigned long addr, last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 addr = PAGE_OFFSET + kern_base;
2150 last = PAGE_ALIGN(kern_size) + addr;
2151 while (addr < last) {
David S. Miller0eef3312014-05-03 22:52:50 -07002152 set_bit(__pa(addr) >> ILOG2_4MB, sparc64_valid_addr_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 addr += PAGE_SIZE;
2154 }
2155
David S. Millerd8ed1d42009-08-25 16:47:46 -07002156 setup_valid_addr_bitmap_from_pavail(sparc64_valid_addr_bitmap);
2157 patch_tlb_miss_handler_bitmap();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 high_memory = __va(last_valid_pfn << PAGE_SHIFT);
2160
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002161 register_page_bootmem_info();
Jiang Liu0c988532013-07-03 15:03:24 -07002162 free_all_bootmem();
David S. Miller919ee672008-04-23 05:40:25 -07002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 /*
2165 * Set up the zero page, mark it reserved, so that page count
2166 * is not manipulated when freeing the page from user ptes.
2167 */
2168 mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0);
2169 if (mem_map_zero == NULL) {
2170 prom_printf("paging_init: Cannot alloc zero page.\n");
2171 prom_halt();
2172 }
Jiang Liu70affe42013-05-07 16:18:08 -07002173 mark_page_reserved(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Jiang Liudceccbe2013-07-03 15:04:14 -07002175 mem_init_print_info(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 if (tlb_type == cheetah || tlb_type == cheetah_plus)
2178 cheetah_ecache_flush_init();
2179}
2180
David S. Miller898cf0e2005-09-23 11:59:44 -07002181void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
2183 unsigned long addr, initend;
David S. Millerf2b60792008-08-14 01:45:41 -07002184 int do_free = 1;
2185
2186 /* If the physical memory maps were trimmed by kernel command
2187 * line options, don't even try freeing this initmem stuff up.
2188 * The kernel image could have been in the trimmed out region
2189 * and if so the freeing below will free invalid page structs.
2190 */
2191 if (cmdline_memory_size)
2192 do_free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 /*
2195 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
2196 */
2197 addr = PAGE_ALIGN((unsigned long)(__init_begin));
2198 initend = (unsigned long)(__init_end) & PAGE_MASK;
2199 for (; addr < initend; addr += PAGE_SIZE) {
2200 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 page = (addr +
2203 ((unsigned long) __va(kern_base)) -
2204 ((unsigned long) KERNBASE));
Randy Dunlapc9cf5522006-06-27 02:53:52 -07002205 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Jiang Liu70affe42013-05-07 16:18:08 -07002207 if (do_free)
2208 free_reserved_page(virt_to_page(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
2210}
2211
2212#ifdef CONFIG_BLK_DEV_INITRD
2213void free_initrd_mem(unsigned long start, unsigned long end)
2214{
Jiang Liudceccbe2013-07-03 15:04:14 -07002215 free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
2216 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217}
2218#endif
David S. Millerc4bce902006-02-11 21:57:54 -08002219
David S. Millerc4bce902006-02-11 21:57:54 -08002220#define _PAGE_CACHE_4U (_PAGE_CP_4U | _PAGE_CV_4U)
2221#define _PAGE_CACHE_4V (_PAGE_CP_4V | _PAGE_CV_4V)
2222#define __DIRTY_BITS_4U (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U)
2223#define __DIRTY_BITS_4V (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V)
2224#define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R)
2225#define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R)
2226
2227pgprot_t PAGE_KERNEL __read_mostly;
2228EXPORT_SYMBOL(PAGE_KERNEL);
2229
2230pgprot_t PAGE_KERNEL_LOCKED __read_mostly;
2231pgprot_t PAGE_COPY __read_mostly;
David S. Miller0f159522006-02-18 12:43:16 -08002232
2233pgprot_t PAGE_SHARED __read_mostly;
2234EXPORT_SYMBOL(PAGE_SHARED);
2235
David S. Millerc4bce902006-02-11 21:57:54 -08002236unsigned long pg_iobits __read_mostly;
2237
2238unsigned long _PAGE_IE __read_mostly;
David S. Miller987c74f2006-06-25 01:34:43 -07002239EXPORT_SYMBOL(_PAGE_IE);
David S. Millerb2bef442006-02-23 01:55:55 -08002240
David S. Millerc4bce902006-02-11 21:57:54 -08002241unsigned long _PAGE_E __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002242EXPORT_SYMBOL(_PAGE_E);
2243
David S. Millerc4bce902006-02-11 21:57:54 -08002244unsigned long _PAGE_CACHE __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002245EXPORT_SYMBOL(_PAGE_CACHE);
David S. Millerc4bce902006-02-11 21:57:54 -08002246
David Miller46644c22007-10-16 01:24:16 -07002247#ifdef CONFIG_SPARSEMEM_VMEMMAP
David Miller46644c22007-10-16 01:24:16 -07002248unsigned long vmemmap_table[VMEMMAP_SIZE];
2249
David S. Miller2856cc22012-08-15 00:37:29 -07002250static long __meminitdata addr_start, addr_end;
2251static int __meminitdata node_start;
2252
Johannes Weiner0aad8182013-04-29 15:07:50 -07002253int __meminit vmemmap_populate(unsigned long vstart, unsigned long vend,
2254 int node)
David Miller46644c22007-10-16 01:24:16 -07002255{
David Miller46644c22007-10-16 01:24:16 -07002256 unsigned long phys_start = (vstart - VMEMMAP_BASE);
2257 unsigned long phys_end = (vend - VMEMMAP_BASE);
2258 unsigned long addr = phys_start & VMEMMAP_CHUNK_MASK;
2259 unsigned long end = VMEMMAP_ALIGN(phys_end);
2260 unsigned long pte_base;
2261
2262 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2263 _PAGE_CP_4U | _PAGE_CV_4U |
2264 _PAGE_P_4U | _PAGE_W_4U);
2265 if (tlb_type == hypervisor)
2266 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4V |
2267 _PAGE_CP_4V | _PAGE_CV_4V |
2268 _PAGE_P_4V | _PAGE_W_4V);
2269
2270 for (; addr < end; addr += VMEMMAP_CHUNK) {
2271 unsigned long *vmem_pp =
2272 vmemmap_table + (addr >> VMEMMAP_CHUNK_SHIFT);
2273 void *block;
2274
2275 if (!(*vmem_pp & _PAGE_VALID)) {
David S. Miller0eef3312014-05-03 22:52:50 -07002276 block = vmemmap_alloc_block(1UL << ILOG2_4MB, node);
David Miller46644c22007-10-16 01:24:16 -07002277 if (!block)
2278 return -ENOMEM;
2279
2280 *vmem_pp = pte_base | __pa(block);
2281
David S. Miller2856cc22012-08-15 00:37:29 -07002282 /* check to see if we have contiguous blocks */
2283 if (addr_end != addr || node_start != node) {
2284 if (addr_start)
2285 printk(KERN_DEBUG " [%lx-%lx] on node %d\n",
2286 addr_start, addr_end-1, node_start);
2287 addr_start = addr;
2288 node_start = node;
2289 }
2290 addr_end = addr + VMEMMAP_CHUNK;
David Miller46644c22007-10-16 01:24:16 -07002291 }
2292 }
2293 return 0;
2294}
David S. Miller2856cc22012-08-15 00:37:29 -07002295
2296void __meminit vmemmap_populate_print_last(void)
2297{
2298 if (addr_start) {
2299 printk(KERN_DEBUG " [%lx-%lx] on node %d\n",
2300 addr_start, addr_end-1, node_start);
2301 addr_start = 0;
2302 addr_end = 0;
2303 node_start = 0;
2304 }
2305}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -08002306
Johannes Weiner0aad8182013-04-29 15:07:50 -07002307void vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -08002308{
2309}
2310
David Miller46644c22007-10-16 01:24:16 -07002311#endif /* CONFIG_SPARSEMEM_VMEMMAP */
2312
David S. Millerc4bce902006-02-11 21:57:54 -08002313static void prot_init_common(unsigned long page_none,
2314 unsigned long page_shared,
2315 unsigned long page_copy,
2316 unsigned long page_readonly,
2317 unsigned long page_exec_bit)
2318{
2319 PAGE_COPY = __pgprot(page_copy);
David S. Miller0f159522006-02-18 12:43:16 -08002320 PAGE_SHARED = __pgprot(page_shared);
David S. Millerc4bce902006-02-11 21:57:54 -08002321
2322 protection_map[0x0] = __pgprot(page_none);
2323 protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit);
2324 protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit);
2325 protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit);
2326 protection_map[0x4] = __pgprot(page_readonly);
2327 protection_map[0x5] = __pgprot(page_readonly);
2328 protection_map[0x6] = __pgprot(page_copy);
2329 protection_map[0x7] = __pgprot(page_copy);
2330 protection_map[0x8] = __pgprot(page_none);
2331 protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit);
2332 protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit);
2333 protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit);
2334 protection_map[0xc] = __pgprot(page_readonly);
2335 protection_map[0xd] = __pgprot(page_readonly);
2336 protection_map[0xe] = __pgprot(page_shared);
2337 protection_map[0xf] = __pgprot(page_shared);
2338}
2339
2340static void __init sun4u_pgprot_init(void)
2341{
2342 unsigned long page_none, page_shared, page_copy, page_readonly;
2343 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002344 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002345
2346 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2347 _PAGE_CACHE_4U | _PAGE_P_4U |
2348 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2349 _PAGE_EXEC_4U);
2350 PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2351 _PAGE_CACHE_4U | _PAGE_P_4U |
2352 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2353 _PAGE_EXEC_4U | _PAGE_L_4U);
David S. Millerc4bce902006-02-11 21:57:54 -08002354
2355 _PAGE_IE = _PAGE_IE_4U;
2356 _PAGE_E = _PAGE_E_4U;
2357 _PAGE_CACHE = _PAGE_CACHE_4U;
2358
2359 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
2360 __ACCESS_BITS_4U | _PAGE_E_4U);
2361
David S. Millerd1acb422007-03-16 17:20:28 -07002362#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002363 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002364#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002365 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
David S. Miller922631b2013-09-18 12:00:00 -07002366 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002367#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002368 kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U |
2369 _PAGE_P_4U | _PAGE_W_4U);
2370
David S. Miller4f93d212012-09-06 18:13:58 -07002371 for (i = 1; i < 4; i++)
2372 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Millerc4bce902006-02-11 21:57:54 -08002373
David S. Millerc4bce902006-02-11 21:57:54 -08002374 _PAGE_ALL_SZ_BITS = (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U |
2375 _PAGE_SZ64K_4U | _PAGE_SZ8K_4U |
2376 _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U);
2377
2378
2379 page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U;
2380 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2381 __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U);
2382 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2383 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2384 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2385 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2386
2387 page_exec_bit = _PAGE_EXEC_4U;
2388
2389 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2390 page_exec_bit);
2391}
2392
2393static void __init sun4v_pgprot_init(void)
2394{
2395 unsigned long page_none, page_shared, page_copy, page_readonly;
2396 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002397 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002398
2399 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
2400 _PAGE_CACHE_4V | _PAGE_P_4V |
2401 __ACCESS_BITS_4V | __DIRTY_BITS_4V |
2402 _PAGE_EXEC_4V);
2403 PAGE_KERNEL_LOCKED = PAGE_KERNEL;
David S. Millerc4bce902006-02-11 21:57:54 -08002404
2405 _PAGE_IE = _PAGE_IE_4V;
2406 _PAGE_E = _PAGE_E_4V;
2407 _PAGE_CACHE = _PAGE_CACHE_4V;
2408
David S. Millerd1acb422007-03-16 17:20:28 -07002409#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002410 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002411#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002412 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07002413 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002414#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002415 kern_linear_pte_xor[0] |= (_PAGE_CP_4V | _PAGE_CV_4V |
2416 _PAGE_P_4V | _PAGE_W_4V);
2417
David S. Millerc69ad0a2012-09-06 20:35:36 -07002418 for (i = 1; i < 4; i++)
2419 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Miller4f93d212012-09-06 18:13:58 -07002420
David S. Millerc4bce902006-02-11 21:57:54 -08002421 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
2422 __ACCESS_BITS_4V | _PAGE_E_4V);
2423
David S. Millerc4bce902006-02-11 21:57:54 -08002424 _PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V |
2425 _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V |
2426 _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V |
2427 _PAGE_SZ64K_4V | _PAGE_SZ8K_4V);
2428
2429 page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | _PAGE_CACHE_4V;
2430 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2431 __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V);
2432 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2433 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
2434 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2435 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
2436
2437 page_exec_bit = _PAGE_EXEC_4V;
2438
2439 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2440 page_exec_bit);
2441}
2442
2443unsigned long pte_sz_bits(unsigned long sz)
2444{
2445 if (tlb_type == hypervisor) {
2446 switch (sz) {
2447 case 8 * 1024:
2448 default:
2449 return _PAGE_SZ8K_4V;
2450 case 64 * 1024:
2451 return _PAGE_SZ64K_4V;
2452 case 512 * 1024:
2453 return _PAGE_SZ512K_4V;
2454 case 4 * 1024 * 1024:
2455 return _PAGE_SZ4MB_4V;
Joe Perches6cb79b32011-06-03 14:45:23 +00002456 }
David S. Millerc4bce902006-02-11 21:57:54 -08002457 } else {
2458 switch (sz) {
2459 case 8 * 1024:
2460 default:
2461 return _PAGE_SZ8K_4U;
2462 case 64 * 1024:
2463 return _PAGE_SZ64K_4U;
2464 case 512 * 1024:
2465 return _PAGE_SZ512K_4U;
2466 case 4 * 1024 * 1024:
2467 return _PAGE_SZ4MB_4U;
Joe Perches6cb79b32011-06-03 14:45:23 +00002468 }
David S. Millerc4bce902006-02-11 21:57:54 -08002469 }
2470}
2471
2472pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size)
2473{
2474 pte_t pte;
David S. Millercf627152006-02-12 21:10:07 -08002475
2476 pte_val(pte) = page | pgprot_val(pgprot_noncached(prot));
David S. Millerc4bce902006-02-11 21:57:54 -08002477 pte_val(pte) |= (((unsigned long)space) << 32);
2478 pte_val(pte) |= pte_sz_bits(page_size);
David S. Millercf627152006-02-12 21:10:07 -08002479
David S. Millerc4bce902006-02-11 21:57:54 -08002480 return pte;
2481}
2482
David S. Millerc4bce902006-02-11 21:57:54 -08002483static unsigned long kern_large_tte(unsigned long paddr)
2484{
2485 unsigned long val;
2486
2487 val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2488 _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U |
2489 _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U);
2490 if (tlb_type == hypervisor)
2491 val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
2492 _PAGE_CP_4V | _PAGE_CV_4V | _PAGE_P_4V |
2493 _PAGE_EXEC_4V | _PAGE_W_4V);
2494
2495 return val | paddr;
2496}
2497
David S. Millerc4bce902006-02-11 21:57:54 -08002498/* If not locked, zap it. */
2499void __flush_tlb_all(void)
2500{
2501 unsigned long pstate;
2502 int i;
2503
2504 __asm__ __volatile__("flushw\n\t"
2505 "rdpr %%pstate, %0\n\t"
2506 "wrpr %0, %1, %%pstate"
2507 : "=r" (pstate)
2508 : "i" (PSTATE_IE));
David S. Miller8f3614532007-12-13 06:13:38 -08002509 if (tlb_type == hypervisor) {
2510 sun4v_mmu_demap_all();
2511 } else if (tlb_type == spitfire) {
David S. Millerc4bce902006-02-11 21:57:54 -08002512 for (i = 0; i < 64; i++) {
2513 /* Spitfire Errata #32 workaround */
2514 /* NOTE: Always runs on spitfire, so no
2515 * cheetah+ page size encodings.
2516 */
2517 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2518 "flush %%g6"
2519 : /* No outputs */
2520 : "r" (0),
2521 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2522
2523 if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) {
2524 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2525 "membar #Sync"
2526 : /* no outputs */
2527 : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
2528 spitfire_put_dtlb_data(i, 0x0UL);
2529 }
2530
2531 /* Spitfire Errata #32 workaround */
2532 /* NOTE: Always runs on spitfire, so no
2533 * cheetah+ page size encodings.
2534 */
2535 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2536 "flush %%g6"
2537 : /* No outputs */
2538 : "r" (0),
2539 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2540
2541 if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) {
2542 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2543 "membar #Sync"
2544 : /* no outputs */
2545 : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
2546 spitfire_put_itlb_data(i, 0x0UL);
2547 }
2548 }
2549 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
2550 cheetah_flush_dtlb_all();
2551 cheetah_flush_itlb_all();
2552 }
2553 __asm__ __volatile__("wrpr %0, 0, %%pstate"
2554 : : "r" (pstate));
2555}
David Millerc460bec2012-10-08 16:34:22 -07002556
David Millerc460bec2012-10-08 16:34:22 -07002557pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
2558 unsigned long address)
2559{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002560 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK |
2561 __GFP_REPEAT | __GFP_ZERO);
2562 pte_t *pte = NULL;
David Millerc460bec2012-10-08 16:34:22 -07002563
David Millerc460bec2012-10-08 16:34:22 -07002564 if (page)
2565 pte = (pte_t *) page_address(page);
2566
2567 return pte;
2568}
2569
2570pgtable_t pte_alloc_one(struct mm_struct *mm,
2571 unsigned long address)
2572{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002573 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK |
2574 __GFP_REPEAT | __GFP_ZERO);
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002575 if (!page)
2576 return NULL;
2577 if (!pgtable_page_ctor(page)) {
2578 free_hot_cold_page(page, 0);
2579 return NULL;
David Millerc460bec2012-10-08 16:34:22 -07002580 }
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002581 return (pte_t *) page_address(page);
David Millerc460bec2012-10-08 16:34:22 -07002582}
2583
2584void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
2585{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002586 free_page((unsigned long)pte);
David Millerc460bec2012-10-08 16:34:22 -07002587}
2588
2589static void __pte_free(pgtable_t pte)
2590{
2591 struct page *page = virt_to_page(pte);
David S. Miller37b3a8f2013-09-25 13:48:49 -07002592
2593 pgtable_page_dtor(page);
2594 __free_page(page);
David Millerc460bec2012-10-08 16:34:22 -07002595}
2596
2597void pte_free(struct mm_struct *mm, pgtable_t pte)
2598{
2599 __pte_free(pte);
2600}
2601
2602void pgtable_free(void *table, bool is_page)
2603{
2604 if (is_page)
2605 __pte_free(table);
2606 else
2607 kmem_cache_free(pgtable_cache, table);
2608}
David Miller9e695d22012-10-08 16:34:29 -07002609
2610#ifdef CONFIG_TRANSPARENT_HUGEPAGE
David Miller9e695d22012-10-08 16:34:29 -07002611void update_mmu_cache_pmd(struct vm_area_struct *vma, unsigned long addr,
2612 pmd_t *pmd)
2613{
2614 unsigned long pte, flags;
2615 struct mm_struct *mm;
2616 pmd_t entry = *pmd;
David Miller9e695d22012-10-08 16:34:29 -07002617
2618 if (!pmd_large(entry) || !pmd_young(entry))
2619 return;
2620
David S. Millera7b94032013-09-26 13:45:15 -07002621 pte = pmd_val(entry);
David Miller9e695d22012-10-08 16:34:29 -07002622
David S. Miller37b3a8f2013-09-25 13:48:49 -07002623 /* We are fabricating 8MB pages using 4MB real hw pages. */
2624 pte |= (addr & (1UL << REAL_HPAGE_SHIFT));
David Miller9e695d22012-10-08 16:34:29 -07002625
2626 mm = vma->vm_mm;
2627
2628 spin_lock_irqsave(&mm->context.lock, flags);
2629
2630 if (mm->context.tsb_block[MM_TSB_HUGE].tsb != NULL)
David S. Miller37b3a8f2013-09-25 13:48:49 -07002631 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David Miller9e695d22012-10-08 16:34:29 -07002632 addr, pte);
2633
2634 spin_unlock_irqrestore(&mm->context.lock, flags);
2635}
2636#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
2637
2638#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
2639static void context_reload(void *__data)
2640{
2641 struct mm_struct *mm = __data;
2642
2643 if (mm == current->mm)
2644 load_secondary_context(mm);
2645}
2646
David S. Miller0fbebed2013-02-19 22:34:10 -08002647void hugetlb_setup(struct pt_regs *regs)
David Miller9e695d22012-10-08 16:34:29 -07002648{
David S. Miller0fbebed2013-02-19 22:34:10 -08002649 struct mm_struct *mm = current->mm;
2650 struct tsb_config *tp;
David Miller9e695d22012-10-08 16:34:29 -07002651
David S. Miller0fbebed2013-02-19 22:34:10 -08002652 if (in_atomic() || !mm) {
2653 const struct exception_table_entry *entry;
David Miller9e695d22012-10-08 16:34:29 -07002654
David S. Miller0fbebed2013-02-19 22:34:10 -08002655 entry = search_exception_tables(regs->tpc);
2656 if (entry) {
2657 regs->tpc = entry->fixup;
2658 regs->tnpc = regs->tpc + 4;
2659 return;
2660 }
2661 pr_alert("Unexpected HugeTLB setup in atomic context.\n");
2662 die_if_kernel("HugeTSB in atomic", regs);
2663 }
2664
2665 tp = &mm->context.tsb_block[MM_TSB_HUGE];
2666 if (likely(tp->tsb == NULL))
2667 tsb_grow(mm, MM_TSB_HUGE, 0);
2668
David Miller9e695d22012-10-08 16:34:29 -07002669 tsb_context_switch(mm);
2670 smp_tsb_sync(mm);
2671
2672 /* On UltraSPARC-III+ and later, configure the second half of
2673 * the Data-TLB for huge pages.
2674 */
2675 if (tlb_type == cheetah_plus) {
2676 unsigned long ctx;
2677
2678 spin_lock(&ctx_alloc_lock);
2679 ctx = mm->context.sparc64_ctx_val;
2680 ctx &= ~CTX_PGSZ_MASK;
2681 ctx |= CTX_PGSZ_BASE << CTX_PGSZ0_SHIFT;
2682 ctx |= CTX_PGSZ_HUGE << CTX_PGSZ1_SHIFT;
2683
2684 if (ctx != mm->context.sparc64_ctx_val) {
2685 /* When changing the page size fields, we
2686 * must perform a context flush so that no
2687 * stale entries match. This flush must
2688 * occur with the original context register
2689 * settings.
2690 */
2691 do_flush_tlb_mm(mm);
2692
2693 /* Reload the context register of all processors
2694 * also executing in this address space.
2695 */
2696 mm->context.sparc64_ctx_val = ctx;
2697 on_each_cpu(context_reload, mm, 0);
2698 }
2699 spin_unlock(&ctx_alloc_lock);
2700 }
2701}
2702#endif
bob piccof6d4fb52014-03-03 11:54:42 -05002703
2704static struct resource code_resource = {
2705 .name = "Kernel code",
2706 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2707};
2708
2709static struct resource data_resource = {
2710 .name = "Kernel data",
2711 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2712};
2713
2714static struct resource bss_resource = {
2715 .name = "Kernel bss",
2716 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2717};
2718
2719static inline resource_size_t compute_kern_paddr(void *addr)
2720{
2721 return (resource_size_t) (addr - KERNBASE + kern_base);
2722}
2723
2724static void __init kernel_lds_init(void)
2725{
2726 code_resource.start = compute_kern_paddr(_text);
2727 code_resource.end = compute_kern_paddr(_etext - 1);
2728 data_resource.start = compute_kern_paddr(_etext);
2729 data_resource.end = compute_kern_paddr(_edata - 1);
2730 bss_resource.start = compute_kern_paddr(__bss_start);
2731 bss_resource.end = compute_kern_paddr(_end - 1);
2732}
2733
2734static int __init report_memory(void)
2735{
2736 int i;
2737 struct resource *res;
2738
2739 kernel_lds_init();
2740
2741 for (i = 0; i < pavail_ents; i++) {
2742 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
2743
2744 if (!res) {
2745 pr_warn("Failed to allocate source.\n");
2746 break;
2747 }
2748
2749 res->name = "System RAM";
2750 res->start = pavail[i].phys_addr;
2751 res->end = pavail[i].phys_addr + pavail[i].reg_size - 1;
2752 res->flags = IORESOURCE_BUSY | IORESOURCE_MEM;
2753
2754 if (insert_resource(&iomem_resource, res) < 0) {
2755 pr_warn("Resource insertion failed.\n");
2756 break;
2757 }
2758
2759 insert_resource(res, &code_resource);
2760 insert_resource(res, &data_resource);
2761 insert_resource(res, &bss_resource);
2762 }
2763
2764 return 0;
2765}
2766device_initcall(report_memory);