blob: ccd4553289899ee2e585e409189206f67c7e77f2 [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
Paul Gortmakercdd4f4c2016-09-19 17:36:29 -04008#include <linux/extable.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>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080038#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#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;
Khalid Aziz494e5b62015-05-27 10:00:46 -060057static unsigned long page_cache4v_flag;
David S. Miller9cc3a1a2006-02-21 20:51:13 -080058
David S. Miller4f93d212012-09-06 18:13:58 -070059/* A bitmap, two bits for every 256MB of physical memory. These two
60 * bits determine what page size we use for kernel linear
61 * translations. They form an index into kern_linear_pte_xor[]. The
62 * value in the indexed slot is XOR'd with the TLB miss virtual
63 * address to form the resulting TTE. The mapping is:
64 *
65 * 0 ==> 4MB
66 * 1 ==> 256MB
67 * 2 ==> 2GB
68 * 3 ==> 16GB
69 *
70 * All sun4v chips support 256MB pages. Only SPARC-T4 and later
71 * support 2GB pages, and hopefully future cpus will support the 16GB
72 * pages as well. For slots 2 and 3, we encode a 256MB TTE xor there
73 * if these larger page sizes are not supported by the cpu.
74 *
75 * It would be nice to determine this from the machine description
76 * 'cpu' properties, but we need to have this table setup before the
77 * MDESC is initialized.
David S. Miller9cc3a1a2006-02-21 20:51:13 -080078 */
David S. Miller9cc3a1a2006-02-21 20:51:13 -080079
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. Miller0dd5b7b2014-09-24 20:56:11 -070087extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
David S. Millerd7744a02006-02-21 22:31:11 -080088
David S. Millerce33fdc2012-09-06 19:01:25 -070089static unsigned long cpu_pgsz_mask;
90
David S. Millerd195b712014-09-27 21:30:57 -070091#define MAX_BANKS 1024
David S. Miller10147572005-09-28 21:46:43 -070092
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -080093static struct linux_prom64_registers pavail[MAX_BANKS];
94static int pavail_ents;
David S. Miller10147572005-09-28 21:46:43 -070095
Nitin Gupta52708d62015-11-02 16:30:24 -050096u64 numa_latency[MAX_NUMNODES][MAX_NUMNODES];
97
David S. Miller13edad72005-09-29 17:58:26 -070098static int cmp_p64(const void *a, const void *b)
99{
100 const struct linux_prom64_registers *x = a, *y = b;
101
102 if (x->phys_addr > y->phys_addr)
103 return 1;
104 if (x->phys_addr < y->phys_addr)
105 return -1;
106 return 0;
107}
108
109static void __init read_obp_memory(const char *property,
110 struct linux_prom64_registers *regs,
111 int *num_ents)
112{
Andres Salomon8d125562010-10-08 14:18:11 -0700113 phandle node = prom_finddevice("/memory");
David S. Miller13edad72005-09-29 17:58:26 -0700114 int prop_size = prom_getproplen(node, property);
115 int ents, ret, i;
116
117 ents = prop_size / sizeof(struct linux_prom64_registers);
118 if (ents > MAX_BANKS) {
119 prom_printf("The machine has more %s property entries than "
120 "this kernel can support (%d).\n",
121 property, MAX_BANKS);
122 prom_halt();
123 }
124
125 ret = prom_getproperty(node, property, (char *) regs, prop_size);
126 if (ret == -1) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000127 prom_printf("Couldn't get %s property from /memory.\n",
128 property);
David S. Miller13edad72005-09-29 17:58:26 -0700129 prom_halt();
130 }
131
David S. Miller13edad72005-09-29 17:58:26 -0700132 /* Sanitize what we got from the firmware, by page aligning
133 * everything.
134 */
135 for (i = 0; i < ents; i++) {
136 unsigned long base, size;
137
138 base = regs[i].phys_addr;
139 size = regs[i].reg_size;
140
141 size &= PAGE_MASK;
142 if (base & ~PAGE_MASK) {
143 unsigned long new_base = PAGE_ALIGN(base);
144
145 size -= new_base - base;
146 if ((long) size < 0L)
147 size = 0UL;
148 base = new_base;
149 }
David S. Miller0015d3d2007-03-15 00:06:34 -0700150 if (size == 0UL) {
151 /* If it is empty, simply get rid of it.
152 * This simplifies the logic of the other
153 * functions that process these arrays.
154 */
155 memmove(&regs[i], &regs[i + 1],
156 (ents - i - 1) * sizeof(regs[0]));
157 i--;
158 ents--;
159 continue;
160 }
David S. Miller13edad72005-09-29 17:58:26 -0700161 regs[i].phys_addr = base;
162 regs[i].reg_size = size;
163 }
David S. Miller486ad102006-06-22 00:00:00 -0700164
David S. Miller486ad102006-06-22 00:00:00 -0700165 *num_ents = ents;
166
David S. Millerc9c10832005-10-12 12:22:46 -0700167 sort(regs, ents, sizeof(struct linux_prom64_registers),
David S. Miller13edad72005-09-29 17:58:26 -0700168 cmp_p64, NULL);
169}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
David S. Millerd1112012006-03-08 02:16:07 -0800171/* Kernel physical address base and size in bytes. */
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700172unsigned long kern_base __read_mostly;
173unsigned long kern_size __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* Initial ramdisk setup */
176extern unsigned long sparc_ramdisk_image64;
177extern unsigned int sparc_ramdisk_image;
178extern unsigned int sparc_ramdisk_size;
179
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700180struct page *mem_map_zero __read_mostly;
Aneesh Kumar K.V35802c02008-04-29 08:11:12 -0400181EXPORT_SYMBOL(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
David S. Miller0835ae02005-10-04 15:23:20 -0700183unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly;
184
185unsigned long sparc64_kern_pri_context __read_mostly;
186unsigned long sparc64_kern_pri_nuc_bits __read_mostly;
187unsigned long sparc64_kern_sec_context __read_mostly;
188
David S. Miller64658742008-03-21 17:01:38 -0700189int num_kernel_image_mappings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#ifdef CONFIG_DEBUG_DCFLUSH
192atomic_t dcpage_flushes = ATOMIC_INIT(0);
193#ifdef CONFIG_SMP
194atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
195#endif
196#endif
197
David S. Miller7a591cf2006-02-26 19:44:50 -0800198inline void flush_dcache_page_impl(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
David S. Miller7a591cf2006-02-26 19:44:50 -0800200 BUG_ON(tlb_type == hypervisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#ifdef CONFIG_DEBUG_DCFLUSH
202 atomic_inc(&dcpage_flushes);
203#endif
204
205#ifdef DCACHE_ALIASING_POSSIBLE
206 __flush_dcache_page(page_address(page),
207 ((tlb_type == spitfire) &&
208 page_mapping(page) != NULL));
209#else
210 if (page_mapping(page) != NULL &&
211 tlb_type == spitfire)
212 __flush_icache_page(__pa(page_address(page)));
213#endif
214}
215
216#define PG_dcache_dirty PG_arch_1
David S. Miller22adb352007-05-26 01:14:43 -0700217#define PG_dcache_cpu_shift 32UL
218#define PG_dcache_cpu_mask \
219 ((1UL<<ilog2(roundup_pow_of_two(NR_CPUS)))-1UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221#define dcache_dirty_cpu(page) \
David S. Miller48b0e542005-07-27 16:08:44 -0700222 (((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
David S. Millerd979f172007-10-27 00:13:04 -0700224static inline void set_dcache_dirty(struct page *page, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 unsigned long mask = this_cpu;
David S. Miller48b0e542005-07-27 16:08:44 -0700227 unsigned long non_cpu_bits;
228
229 non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift);
230 mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty);
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 __asm__ __volatile__("1:\n\t"
233 "ldx [%2], %%g7\n\t"
234 "and %%g7, %1, %%g1\n\t"
235 "or %%g1, %0, %%g1\n\t"
236 "casx [%2], %%g7, %%g1\n\t"
237 "cmp %%g7, %%g1\n\t"
238 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700239 " nop"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 : /* no outputs */
241 : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
242 : "g1", "g7");
243}
244
David S. Millerd979f172007-10-27 00:13:04 -0700245static inline void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 unsigned long mask = (1UL << PG_dcache_dirty);
248
249 __asm__ __volatile__("! test_and_clear_dcache_dirty\n"
250 "1:\n\t"
251 "ldx [%2], %%g7\n\t"
David S. Miller48b0e542005-07-27 16:08:44 -0700252 "srlx %%g7, %4, %%g1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 "and %%g1, %3, %%g1\n\t"
254 "cmp %%g1, %0\n\t"
255 "bne,pn %%icc, 2f\n\t"
256 " andn %%g7, %1, %%g1\n\t"
257 "casx [%2], %%g7, %%g1\n\t"
258 "cmp %%g7, %%g1\n\t"
259 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700260 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 "2:"
262 : /* no outputs */
263 : "r" (cpu), "r" (mask), "r" (&page->flags),
David S. Miller48b0e542005-07-27 16:08:44 -0700264 "i" (PG_dcache_cpu_mask),
265 "i" (PG_dcache_cpu_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 : "g1", "g7");
267}
268
David S. Miller517af332006-02-01 15:55:21 -0800269static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte)
270{
271 unsigned long tsb_addr = (unsigned long) ent;
272
David S. Miller3b3ab2e2006-02-17 09:54:42 -0800273 if (tlb_type == cheetah_plus || tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -0800274 tsb_addr = __pa(tsb_addr);
275
276 __tsb_insert(tsb_addr, tag, pte);
277}
278
David S. Millerc4bce902006-02-11 21:57:54 -0800279unsigned long _PAGE_ALL_SZ_BITS __read_mostly;
David S. Millerc4bce902006-02-11 21:57:54 -0800280
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800281static void flush_dcache(unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800283 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800285 page = pfn_to_page(pfn);
David S. Miller1a78ced2009-10-12 03:20:57 -0700286 if (page) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800287 unsigned long pg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800289 pg_flags = page->flags;
290 if (pg_flags & (1UL << PG_dcache_dirty)) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800291 int cpu = ((pg_flags >> PG_dcache_cpu_shift) &
292 PG_dcache_cpu_mask);
293 int this_cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
David S. Miller7a591cf2006-02-26 19:44:50 -0800295 /* This is just to optimize away some function calls
296 * in the SMP case.
297 */
298 if (cpu == this_cpu)
299 flush_dcache_page_impl(page);
300 else
301 smp_flush_dcache_page_impl(page, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
David S. Miller7a591cf2006-02-26 19:44:50 -0800303 clear_dcache_dirty_cpu(page, cpu);
304
305 put_cpu();
306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800308}
309
David Miller9e695d22012-10-08 16:34:29 -0700310/* mm->context.lock must be held */
311static void __update_mmu_tsb_insert(struct mm_struct *mm, unsigned long tsb_index,
312 unsigned long tsb_hash_shift, unsigned long address,
313 unsigned long tte)
314{
315 struct tsb *tsb = mm->context.tsb_block[tsb_index].tsb;
316 unsigned long tag;
317
David S. Millerbcd896b2013-02-19 13:20:08 -0800318 if (unlikely(!tsb))
319 return;
320
David Miller9e695d22012-10-08 16:34:29 -0700321 tsb += ((address >> tsb_hash_shift) &
322 (mm->context.tsb_block[tsb_index].tsb_nentries - 1UL));
323 tag = (address >> 22UL);
324 tsb_insert(tsb, tag, tte);
325}
326
Nitin Guptac7d9f772017-02-01 16:16:36 -0800327#ifdef CONFIG_HUGETLB_PAGE
328static int __init setup_hugepagesz(char *string)
329{
330 unsigned long long hugepage_size;
331 unsigned int hugepage_shift;
332 unsigned short hv_pgsz_idx;
333 unsigned int hv_pgsz_mask;
334 int rc = 0;
335
336 hugepage_size = memparse(string, &string);
337 hugepage_shift = ilog2(hugepage_size);
338
339 switch (hugepage_shift) {
340 case HPAGE_256MB_SHIFT:
341 hv_pgsz_mask = HV_PGSZ_MASK_256MB;
342 hv_pgsz_idx = HV_PGSZ_IDX_256MB;
343 break;
344 case HPAGE_SHIFT:
345 hv_pgsz_mask = HV_PGSZ_MASK_4MB;
346 hv_pgsz_idx = HV_PGSZ_IDX_4MB;
347 break;
Nitin Guptadcd19122017-02-06 12:33:26 -0800348 case HPAGE_64K_SHIFT:
349 hv_pgsz_mask = HV_PGSZ_MASK_64K;
350 hv_pgsz_idx = HV_PGSZ_IDX_64K;
351 break;
Nitin Guptac7d9f772017-02-01 16:16:36 -0800352 default:
353 hv_pgsz_mask = 0;
354 }
355
356 if ((hv_pgsz_mask & cpu_pgsz_mask) == 0U) {
357 pr_warn("hugepagesz=%llu not supported by MMU.\n",
358 hugepage_size);
359 goto out;
360 }
361
362 hugetlb_add_hstate(hugepage_shift - PAGE_SHIFT);
363 rc = 1;
364
365out:
366 return rc;
367}
368__setup("hugepagesz=", setup_hugepagesz);
369#endif /* CONFIG_HUGETLB_PAGE */
370
Russell King4b3073e2009-12-18 16:40:18 +0000371void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t *ptep)
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800372{
373 struct mm_struct *mm;
David S. Millerbcd896b2013-02-19 13:20:08 -0800374 unsigned long flags;
Russell King4b3073e2009-12-18 16:40:18 +0000375 pte_t pte = *ptep;
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800376
377 if (tlb_type != hypervisor) {
378 unsigned long pfn = pte_pfn(pte);
379
380 if (pfn_valid(pfn))
381 flush_dcache(pfn);
382 }
David S. Millerbd407912006-01-31 18:31:38 -0800383
384 mm = vma->vm_mm;
David S. Miller7a1ac522006-03-16 02:02:32 -0800385
David S. Miller18f38132014-08-04 16:34:01 -0700386 /* Don't insert a non-valid PTE into the TSB, we'll deadlock. */
387 if (!pte_accessible(mm, pte))
388 return;
389
David S. Miller7a1ac522006-03-16 02:02:32 -0800390 spin_lock_irqsave(&mm->context.lock, flags);
391
David Miller9e695d22012-10-08 16:34:29 -0700392#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
Mike Kravetzaf1b1a92016-07-15 13:08:42 -0700393 if ((mm->context.hugetlb_pte_count || mm->context.thp_pte_count) &&
Nitin Guptac7d9f772017-02-01 16:16:36 -0800394 is_hugetlb_pmd(__pmd(pte_val(pte)))) {
Nitin Gupta7bc37772016-07-29 00:54:21 -0700395 /* We are fabricating 8MB pages using 4MB real hw pages. */
396 pte_val(pte) |= (address & (1UL << REAL_HPAGE_SHIFT));
David S. Miller37b3a8f2013-09-25 13:48:49 -0700397 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David S. Millerbcd896b2013-02-19 13:20:08 -0800398 address, pte_val(pte));
Nitin Gupta7bc37772016-07-29 00:54:21 -0700399 } else
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800400#endif
David S. Millerbcd896b2013-02-19 13:20:08 -0800401 __update_mmu_tsb_insert(mm, MM_TSB_BASE, PAGE_SHIFT,
402 address, pte_val(pte));
David S. Miller7a1ac522006-03-16 02:02:32 -0800403
404 spin_unlock_irqrestore(&mm->context.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407void flush_dcache_page(struct page *page)
408{
David S. Millera9546f52005-04-17 18:03:09 -0700409 struct address_space *mapping;
410 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
David S. Miller7a591cf2006-02-26 19:44:50 -0800412 if (tlb_type == hypervisor)
413 return;
414
David S. Millera9546f52005-04-17 18:03:09 -0700415 /* Do not bother with the expensive D-cache flush if it
416 * is merely the zero page. The 'bigcore' testcase in GDB
417 * causes this case to run millions of times.
418 */
419 if (page == ZERO_PAGE(0))
420 return;
421
422 this_cpu = get_cpu();
423
424 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (mapping && !mapping_mapped(mapping)) {
David S. Millera9546f52005-04-17 18:03:09 -0700426 int dirty = test_bit(PG_dcache_dirty, &page->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (dirty) {
David S. Millera9546f52005-04-17 18:03:09 -0700428 int dirty_cpu = dcache_dirty_cpu(page);
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (dirty_cpu == this_cpu)
431 goto out;
432 smp_flush_dcache_page_impl(page, dirty_cpu);
433 }
434 set_dcache_dirty(page, this_cpu);
435 } else {
436 /* We could delay the flush for the !page_mapping
437 * case too. But that case is for exec env/arg
438 * pages and those are %99 certainly going to get
439 * faulted into the tlb (and thus flushed) anyways.
440 */
441 flush_dcache_page_impl(page);
442 }
443
444out:
445 put_cpu();
446}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800447EXPORT_SYMBOL(flush_dcache_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700449void __kprobes flush_icache_range(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
David S. Millera43fe0e2006-02-04 03:10:53 -0800451 /* Cheetah and Hypervisor platform cpus have coherent I-cache. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (tlb_type == spitfire) {
453 unsigned long kaddr;
454
David S. Millera94aa252007-03-15 15:50:11 -0700455 /* This code only runs on Spitfire cpus so this is
456 * why we can assume _PAGE_PADDR_4U.
457 */
458 for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE) {
459 unsigned long paddr, mask = _PAGE_PADDR_4U;
460
461 if (kaddr >= PAGE_OFFSET)
462 paddr = kaddr & mask;
463 else {
464 pgd_t *pgdp = pgd_offset_k(kaddr);
465 pud_t *pudp = pud_offset(pgdp, kaddr);
466 pmd_t *pmdp = pmd_offset(pudp, kaddr);
467 pte_t *ptep = pte_offset_kernel(pmdp, kaddr);
468
469 paddr = pte_val(*ptep) & mask;
470 }
471 __flush_icache_page(paddr);
472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800475EXPORT_SYMBOL(flush_icache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477void mmu_info(struct seq_file *m)
478{
David S. Millerce33fdc2012-09-06 19:01:25 -0700479 static const char *pgsz_strings[] = {
480 "8K", "64K", "512K", "4MB", "32MB",
481 "256MB", "2GB", "16GB",
482 };
483 int i, printed;
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (tlb_type == cheetah)
486 seq_printf(m, "MMU Type\t: Cheetah\n");
487 else if (tlb_type == cheetah_plus)
488 seq_printf(m, "MMU Type\t: Cheetah+\n");
489 else if (tlb_type == spitfire)
490 seq_printf(m, "MMU Type\t: Spitfire\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800491 else if (tlb_type == hypervisor)
492 seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 else
494 seq_printf(m, "MMU Type\t: ???\n");
495
David S. Millerce33fdc2012-09-06 19:01:25 -0700496 seq_printf(m, "MMU PGSZs\t: ");
497 printed = 0;
498 for (i = 0; i < ARRAY_SIZE(pgsz_strings); i++) {
499 if (cpu_pgsz_mask & (1UL << i)) {
500 seq_printf(m, "%s%s",
501 printed ? "," : "", pgsz_strings[i]);
502 printed++;
503 }
504 }
505 seq_putc(m, '\n');
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507#ifdef CONFIG_DEBUG_DCFLUSH
508 seq_printf(m, "DCPageFlushes\t: %d\n",
509 atomic_read(&dcpage_flushes));
510#ifdef CONFIG_SMP
511 seq_printf(m, "DCPageFlushesXC\t: %d\n",
512 atomic_read(&dcpage_flushes_xcall));
513#endif /* CONFIG_SMP */
514#endif /* CONFIG_DEBUG_DCFLUSH */
515}
516
David S. Millera94aa252007-03-15 15:50:11 -0700517struct linux_prom_translation prom_trans[512] __read_mostly;
518unsigned int prom_trans_ents __read_mostly;
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520unsigned long kern_locked_tte_data;
521
David S. Miller405599b2005-09-22 00:12:35 -0700522/* The obp translations are saved based on 8k pagesize, since obp can
523 * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS ->
David S. Miller74bf4312006-01-31 18:29:18 -0800524 * HI_OBP_ADDRESS range are handled in ktlb.S.
David S. Miller405599b2005-09-22 00:12:35 -0700525 */
David S. Miller5085b4a2005-09-22 00:45:41 -0700526static inline int in_obp_range(unsigned long vaddr)
527{
528 return (vaddr >= LOW_OBP_ADDRESS &&
529 vaddr < HI_OBP_ADDRESS);
530}
531
David S. Millerc9c10832005-10-12 12:22:46 -0700532static int cmp_ptrans(const void *a, const void *b)
David S. Miller405599b2005-09-22 00:12:35 -0700533{
David S. Millerc9c10832005-10-12 12:22:46 -0700534 const struct linux_prom_translation *x = a, *y = b;
David S. Miller405599b2005-09-22 00:12:35 -0700535
David S. Millerc9c10832005-10-12 12:22:46 -0700536 if (x->virt > y->virt)
537 return 1;
538 if (x->virt < y->virt)
539 return -1;
540 return 0;
David S. Miller405599b2005-09-22 00:12:35 -0700541}
542
David S. Millerc9c10832005-10-12 12:22:46 -0700543/* Read OBP translations property into 'prom_trans[]'. */
David S. Miller9ad98c52005-10-05 15:12:00 -0700544static void __init read_obp_translations(void)
David S. Miller405599b2005-09-22 00:12:35 -0700545{
David S. Millerc9c10832005-10-12 12:22:46 -0700546 int n, node, ents, first, last, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 node = prom_finddevice("/virtual-memory");
549 n = prom_getproplen(node, "translations");
David S. Miller405599b2005-09-22 00:12:35 -0700550 if (unlikely(n == 0 || n == -1)) {
David S. Millerb206fc42005-09-21 22:31:13 -0700551 prom_printf("prom_mappings: Couldn't get size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 prom_halt();
553 }
David S. Miller405599b2005-09-22 00:12:35 -0700554 if (unlikely(n > sizeof(prom_trans))) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000555 prom_printf("prom_mappings: Size %d is too big.\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 prom_halt();
557 }
David S. Miller405599b2005-09-22 00:12:35 -0700558
David S. Millerb206fc42005-09-21 22:31:13 -0700559 if ((n = prom_getproperty(node, "translations",
David S. Miller405599b2005-09-22 00:12:35 -0700560 (char *)&prom_trans[0],
561 sizeof(prom_trans))) == -1) {
David S. Millerb206fc42005-09-21 22:31:13 -0700562 prom_printf("prom_mappings: Couldn't get property.\n");
563 prom_halt();
564 }
David S. Miller9ad98c52005-10-05 15:12:00 -0700565
David S. Millerb206fc42005-09-21 22:31:13 -0700566 n = n / sizeof(struct linux_prom_translation);
David S. Miller9ad98c52005-10-05 15:12:00 -0700567
David S. Millerc9c10832005-10-12 12:22:46 -0700568 ents = n;
569
570 sort(prom_trans, ents, sizeof(struct linux_prom_translation),
571 cmp_ptrans, NULL);
572
573 /* Now kick out all the non-OBP entries. */
574 for (i = 0; i < ents; i++) {
575 if (in_obp_range(prom_trans[i].virt))
576 break;
577 }
578 first = i;
579 for (; i < ents; i++) {
580 if (!in_obp_range(prom_trans[i].virt))
581 break;
582 }
583 last = i;
584
585 for (i = 0; i < (last - first); i++) {
586 struct linux_prom_translation *src = &prom_trans[i + first];
587 struct linux_prom_translation *dest = &prom_trans[i];
588
589 *dest = *src;
590 }
591 for (; i < ents; i++) {
592 struct linux_prom_translation *dest = &prom_trans[i];
593 dest->virt = dest->size = dest->data = 0x0UL;
594 }
595
596 prom_trans_ents = last - first;
597
598 if (tlb_type == spitfire) {
599 /* Clear diag TTE bits. */
600 for (i = 0; i < prom_trans_ents; i++)
601 prom_trans[i].data &= ~0x0003fe0000000000UL;
602 }
David S. Millerf4142cb2011-09-29 12:18:59 -0700603
604 /* Force execute bit on. */
605 for (i = 0; i < prom_trans_ents; i++)
606 prom_trans[i].data |= (tlb_type == hypervisor ?
607 _PAGE_EXEC_4V : _PAGE_EXEC_4U);
David S. Miller405599b2005-09-22 00:12:35 -0700608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
David S. Millerd82ace72006-02-09 02:52:44 -0800610static void __init hypervisor_tlb_lock(unsigned long vaddr,
611 unsigned long pte,
612 unsigned long mmu)
613{
David S. Miller7db35f32007-05-29 02:22:14 -0700614 unsigned long ret = sun4v_mmu_map_perm_addr(vaddr, 0, pte, mmu);
David S. Millerd82ace72006-02-09 02:52:44 -0800615
David S. Miller7db35f32007-05-29 02:22:14 -0700616 if (ret != 0) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000617 prom_printf("hypervisor_tlb_lock[%lx:%x:%lx:%lx]: "
David S. Miller7db35f32007-05-29 02:22:14 -0700618 "errors with %lx\n", vaddr, 0, pte, mmu, ret);
David S. Miller12e126a2006-02-17 14:40:30 -0800619 prom_halt();
620 }
David S. Millerd82ace72006-02-09 02:52:44 -0800621}
622
David S. Millerc4bce902006-02-11 21:57:54 -0800623static unsigned long kern_large_tte(unsigned long paddr);
624
David S. Miller898cf0e2005-09-23 11:59:44 -0700625static void __init remap_kernel(void)
David S. Miller405599b2005-09-22 00:12:35 -0700626{
627 unsigned long phys_page, tte_vaddr, tte_data;
David S. Miller64658742008-03-21 17:01:38 -0700628 int i, tlb_ent = sparc64_highest_locked_tlbent();
David S. Miller405599b2005-09-22 00:12:35 -0700629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 tte_vaddr = (unsigned long) KERNBASE;
David S. Miller0eef3312014-05-03 22:52:50 -0700631 phys_page = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
David S. Millerc4bce902006-02-11 21:57:54 -0800632 tte_data = kern_large_tte(phys_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 kern_locked_tte_data = tte_data;
635
David S. Millerd82ace72006-02-09 02:52:44 -0800636 /* Now lock us into the TLBs via Hypervisor or OBP. */
637 if (tlb_type == hypervisor) {
David S. Miller64658742008-03-21 17:01:38 -0700638 for (i = 0; i < num_kernel_image_mappings; i++) {
David S. Millerd82ace72006-02-09 02:52:44 -0800639 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
640 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
David S. Miller64658742008-03-21 17:01:38 -0700641 tte_vaddr += 0x400000;
642 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800643 }
644 } else {
David S. Miller64658742008-03-21 17:01:38 -0700645 for (i = 0; i < num_kernel_image_mappings; i++) {
646 prom_dtlb_load(tlb_ent - i, tte_data, tte_vaddr);
647 prom_itlb_load(tlb_ent - i, tte_data, tte_vaddr);
648 tte_vaddr += 0x400000;
649 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800650 }
David S. Miller64658742008-03-21 17:01:38 -0700651 sparc64_highest_unlocked_tlb_ent = tlb_ent - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
David S. Miller0835ae02005-10-04 15:23:20 -0700653 if (tlb_type == cheetah_plus) {
654 sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 |
655 CTX_CHEETAH_PLUS_NUC);
656 sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC;
657 sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0;
658 }
David S. Miller405599b2005-09-22 00:12:35 -0700659}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
David S. Miller405599b2005-09-22 00:12:35 -0700661
David S. Millerc9c10832005-10-12 12:22:46 -0700662static void __init inherit_prom_mappings(void)
David S. Miller9ad98c52005-10-05 15:12:00 -0700663{
David S. Miller405599b2005-09-22 00:12:35 -0700664 /* Now fixup OBP's idea about where we really are mapped. */
David S. Miller3c62a2d2008-02-17 23:22:50 -0800665 printk("Remapping the kernel... ");
David S. Miller405599b2005-09-22 00:12:35 -0700666 remap_kernel();
David S. Miller3c62a2d2008-02-17 23:22:50 -0800667 printk("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670void prom_world(int enter)
671{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (!enter)
Al Virodff933d2012-09-26 01:21:14 -0400673 set_fs(get_fs());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
David S. Miller3487d1d2006-01-31 18:33:25 -0800675 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678void __flush_dcache_range(unsigned long start, unsigned long end)
679{
680 unsigned long va;
681
682 if (tlb_type == spitfire) {
683 int n = 0;
684
685 for (va = start; va < end; va += 32) {
686 spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
687 if (++n >= 512)
688 break;
689 }
David S. Millera43fe0e2006-02-04 03:10:53 -0800690 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 start = __pa(start);
692 end = __pa(end);
693 for (va = start; va < end; va += 32)
694 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
695 "membar #Sync"
696 : /* no outputs */
697 : "r" (va),
698 "i" (ASI_DCACHE_INVALIDATE));
699 }
700}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800701EXPORT_SYMBOL(__flush_dcache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
David S. Miller85f1e1f2007-03-15 17:51:26 -0700703/* get_new_mmu_context() uses "cache + 1". */
704DEFINE_SPINLOCK(ctx_alloc_lock);
705unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
706#define MAX_CTX_NR (1UL << CTX_NR_BITS)
707#define CTX_BMAP_SLOTS BITS_TO_LONGS(MAX_CTX_NR)
708DECLARE_BITMAP(mmu_context_bmap, MAX_CTX_NR);
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710/* Caller does TLB context flushing on local CPU if necessary.
711 * The caller also ensures that CTX_VALID(mm->context) is false.
712 *
713 * We must be careful about boundary cases so that we never
714 * let the user have CTX 0 (nucleus) or we ever use a CTX
715 * version of zero (and thus NO_CONTEXT would not be caught
716 * by version mis-match tests in mmu_context.h).
David S. Millera0663a72006-02-23 14:19:28 -0800717 *
718 * Always invoked with interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 */
720void get_new_mmu_context(struct mm_struct *mm)
721{
722 unsigned long ctx, new_ctx;
723 unsigned long orig_pgsz_bits;
David S. Millera0663a72006-02-23 14:19:28 -0800724 int new_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Kirill Tkhai07df8412013-04-09 00:29:46 +0400726 spin_lock(&ctx_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK);
728 ctx = (tlb_context_cache + 1) & CTX_NR_MASK;
729 new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx);
David S. Millera0663a72006-02-23 14:19:28 -0800730 new_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (new_ctx >= (1 << CTX_NR_BITS)) {
732 new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
733 if (new_ctx >= ctx) {
734 int i;
735 new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
736 CTX_FIRST_VERSION;
737 if (new_ctx == 1)
738 new_ctx = CTX_FIRST_VERSION;
739
740 /* Don't call memset, for 16 entries that's just
741 * plain silly...
742 */
743 mmu_context_bmap[0] = 3;
744 mmu_context_bmap[1] = 0;
745 mmu_context_bmap[2] = 0;
746 mmu_context_bmap[3] = 0;
747 for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
748 mmu_context_bmap[i + 0] = 0;
749 mmu_context_bmap[i + 1] = 0;
750 mmu_context_bmap[i + 2] = 0;
751 mmu_context_bmap[i + 3] = 0;
752 }
David S. Millera0663a72006-02-23 14:19:28 -0800753 new_version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 goto out;
755 }
756 }
757 mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
758 new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
759out:
760 tlb_context_cache = new_ctx;
761 mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits;
Kirill Tkhai07df8412013-04-09 00:29:46 +0400762 spin_unlock(&ctx_alloc_lock);
David S. Millera0663a72006-02-23 14:19:28 -0800763
764 if (unlikely(new_version))
765 smp_new_mmu_context_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
David S. Miller919ee672008-04-23 05:40:25 -0700768static int numa_enabled = 1;
769static int numa_debug;
770
771static int __init early_numa(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
David S. Miller919ee672008-04-23 05:40:25 -0700773 if (!p)
774 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800775
David S. Miller919ee672008-04-23 05:40:25 -0700776 if (strstr(p, "off"))
777 numa_enabled = 0;
David S. Millerd1112012006-03-08 02:16:07 -0800778
David S. Miller919ee672008-04-23 05:40:25 -0700779 if (strstr(p, "debug"))
780 numa_debug = 1;
781
782 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800783}
David S. Miller919ee672008-04-23 05:40:25 -0700784early_param("numa", early_numa);
785
786#define numadbg(f, a...) \
787do { if (numa_debug) \
788 printk(KERN_INFO f, ## a); \
789} while (0)
David S. Millerd1112012006-03-08 02:16:07 -0800790
David S. Miller4e82c9a2008-02-13 18:00:03 -0800791static void __init find_ramdisk(unsigned long phys_base)
792{
793#ifdef CONFIG_BLK_DEV_INITRD
794 if (sparc_ramdisk_image || sparc_ramdisk_image64) {
795 unsigned long ramdisk_image;
796
797 /* Older versions of the bootloader only supported a
798 * 32-bit physical address for the ramdisk image
799 * location, stored at sparc_ramdisk_image. Newer
800 * SILO versions set sparc_ramdisk_image to zero and
801 * provide a full 64-bit physical address at
802 * sparc_ramdisk_image64.
803 */
804 ramdisk_image = sparc_ramdisk_image;
805 if (!ramdisk_image)
806 ramdisk_image = sparc_ramdisk_image64;
807
808 /* Another bootloader quirk. The bootloader normalizes
809 * the physical address to KERNBASE, so we have to
810 * factor that back out and add in the lowest valid
811 * physical page address to get the true physical address.
812 */
813 ramdisk_image -= KERNBASE;
814 ramdisk_image += phys_base;
815
David S. Miller919ee672008-04-23 05:40:25 -0700816 numadbg("Found ramdisk at physical address 0x%lx, size %u\n",
817 ramdisk_image, sparc_ramdisk_size);
818
David S. Miller4e82c9a2008-02-13 18:00:03 -0800819 initrd_start = ramdisk_image;
820 initrd_end = ramdisk_image + sparc_ramdisk_size;
David S. Miller3b2a7e22008-02-13 18:13:20 -0800821
Yinghai Lu95f72d12010-07-12 14:36:09 +1000822 memblock_reserve(initrd_start, sparc_ramdisk_size);
David S. Millerd45100f2008-05-06 15:19:54 -0700823
824 initrd_start += PAGE_OFFSET;
825 initrd_end += PAGE_OFFSET;
David S. Miller4e82c9a2008-02-13 18:00:03 -0800826 }
827#endif
828}
829
David S. Miller919ee672008-04-23 05:40:25 -0700830struct node_mem_mask {
831 unsigned long mask;
Pavel Tatashin1537b262017-02-16 15:05:58 -0500832 unsigned long match;
David S. Miller919ee672008-04-23 05:40:25 -0700833};
834static struct node_mem_mask node_masks[MAX_NUMNODES];
835static int num_node_masks;
836
Sam Ravnborg48d37212014-05-16 23:26:12 +0200837#ifdef CONFIG_NEED_MULTIPLE_NODES
838
Pavel Tatashin1537b262017-02-16 15:05:58 -0500839struct mdesc_mlgroup {
840 u64 node;
841 u64 latency;
842 u64 match;
843 u64 mask;
844};
845
846static struct mdesc_mlgroup *mlgroups;
847static int num_mlgroups;
848
David S. Miller919ee672008-04-23 05:40:25 -0700849int numa_cpu_lookup_table[NR_CPUS];
850cpumask_t numa_cpumask_lookup_table[MAX_NUMNODES];
851
David S. Miller919ee672008-04-23 05:40:25 -0700852struct mdesc_mblock {
853 u64 base;
854 u64 size;
855 u64 offset; /* RA-to-PA */
856};
857static struct mdesc_mblock *mblocks;
858static int num_mblocks;
859
Pavel Tatashin1537b262017-02-16 15:05:58 -0500860static struct mdesc_mblock * __init addr_to_mblock(unsigned long addr)
David S. Millerd1112012006-03-08 02:16:07 -0800861{
Pavel Tatashin1537b262017-02-16 15:05:58 -0500862 struct mdesc_mblock *m = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 int i;
864
David S. Miller919ee672008-04-23 05:40:25 -0700865 for (i = 0; i < num_mblocks; i++) {
Pavel Tatashin1537b262017-02-16 15:05:58 -0500866 m = &mblocks[i];
David S. Miller6fc5bae2006-12-28 21:00:23 -0800867
David S. Miller919ee672008-04-23 05:40:25 -0700868 if (addr >= m->base &&
869 addr < (m->base + m->size)) {
David S. Miller919ee672008-04-23 05:40:25 -0700870 break;
871 }
872 }
Pavel Tatashin1537b262017-02-16 15:05:58 -0500873
874 return m;
David S. Miller919ee672008-04-23 05:40:25 -0700875}
876
Pavel Tatashin1537b262017-02-16 15:05:58 -0500877static u64 __init memblock_nid_range_sun4u(u64 start, u64 end, int *nid)
David S. Miller919ee672008-04-23 05:40:25 -0700878{
Pavel Tatashin1537b262017-02-16 15:05:58 -0500879 int prev_nid, new_nid;
David S. Miller919ee672008-04-23 05:40:25 -0700880
Pavel Tatashin1537b262017-02-16 15:05:58 -0500881 prev_nid = -1;
882 for ( ; start < end; start += PAGE_SIZE) {
883 for (new_nid = 0; new_nid < num_node_masks; new_nid++) {
884 struct node_mem_mask *p = &node_masks[new_nid];
David S. Miller919ee672008-04-23 05:40:25 -0700885
Pavel Tatashin1537b262017-02-16 15:05:58 -0500886 if ((start & p->mask) == p->match) {
887 if (prev_nid == -1)
888 prev_nid = new_nid;
889 break;
890 }
Thomas Tai74a5ed52016-11-03 09:19:01 -0700891 }
Thomas Tai74a5ed52016-11-03 09:19:01 -0700892
Pavel Tatashin1537b262017-02-16 15:05:58 -0500893 if (new_nid == num_node_masks) {
894 prev_nid = 0;
895 WARN_ONCE(1, "addr[%Lx] doesn't match a NUMA node rule. Some memory will be owned by node 0.",
896 start);
897 break;
898 }
899
900 if (prev_nid != new_nid)
901 break;
902 }
903 *nid = prev_nid;
904
905 return start > end ? end : start;
David S. Miller919ee672008-04-23 05:40:25 -0700906}
907
Thomas Tai87a349f2016-11-11 16:41:00 -0800908static u64 __init memblock_nid_range(u64 start, u64 end, int *nid)
David S. Miller919ee672008-04-23 05:40:25 -0700909{
Pavel Tatashin1537b262017-02-16 15:05:58 -0500910 u64 ret_end, pa_start, m_mask, m_match, m_end;
911 struct mdesc_mblock *mblock;
912 int _nid, i;
David S. Miller919ee672008-04-23 05:40:25 -0700913
Pavel Tatashin1537b262017-02-16 15:05:58 -0500914 if (tlb_type != hypervisor)
915 return memblock_nid_range_sun4u(start, end, nid);
916
917 mblock = addr_to_mblock(start);
918 if (!mblock) {
919 WARN_ONCE(1, "memblock_nid_range: Can't find mblock addr[%Lx]",
920 start);
921
922 _nid = 0;
923 ret_end = end;
924 goto done;
David S. Miller919ee672008-04-23 05:40:25 -0700925 }
926
Pavel Tatashin1537b262017-02-16 15:05:58 -0500927 pa_start = start + mblock->offset;
928 m_match = 0;
929 m_mask = 0;
David S. Millerc918dcc2008-08-14 01:41:39 -0700930
Pavel Tatashin1537b262017-02-16 15:05:58 -0500931 for (_nid = 0; _nid < num_node_masks; _nid++) {
932 struct node_mem_mask *const m = &node_masks[_nid];
933
934 if ((pa_start & m->mask) == m->match) {
935 m_match = m->match;
936 m_mask = m->mask;
937 break;
938 }
939 }
940
941 if (num_node_masks == _nid) {
942 /* We could not find NUMA group, so default to 0, but lets
943 * search for latency group, so we could calculate the correct
944 * end address that we return
945 */
946 _nid = 0;
947
948 for (i = 0; i < num_mlgroups; i++) {
949 struct mdesc_mlgroup *const m = &mlgroups[i];
950
951 if ((pa_start & m->mask) == m->match) {
952 m_match = m->match;
953 m_mask = m->mask;
954 break;
955 }
956 }
957
958 if (i == num_mlgroups) {
959 WARN_ONCE(1, "memblock_nid_range: Can't find latency group addr[%Lx]",
960 start);
961
962 ret_end = end;
963 goto done;
964 }
965 }
966
967 /*
968 * Each latency group has match and mask, and each memory block has an
969 * offset. An address belongs to a latency group if its address matches
970 * the following formula: ((addr + offset) & mask) == match
971 * It is, however, slow to check every single page if it matches a
972 * particular latency group. As optimization we calculate end value by
973 * using bit arithmetics.
974 */
975 m_end = m_match + (1ul << __ffs(m_mask)) - mblock->offset;
976 m_end += pa_start & ~((1ul << fls64(m_mask)) - 1);
977 ret_end = m_end > end ? end : m_end;
978
979done:
980 *nid = _nid;
981 return ret_end;
David S. Miller919ee672008-04-23 05:40:25 -0700982}
David S. Miller919ee672008-04-23 05:40:25 -0700983#endif
984
985/* This must be invoked after performing all of the necessary
Tejun Heo2a4814d2011-12-08 10:22:08 -0800986 * memblock_set_node() calls for 'nid'. We need to be able to get
David S. Miller919ee672008-04-23 05:40:25 -0700987 * correct data from get_pfn_range_for_nid().
988 */
989static void __init allocate_node_data(int nid)
990{
David S. Miller919ee672008-04-23 05:40:25 -0700991 struct pglist_data *p;
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400992 unsigned long start_pfn, end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -0700993#ifdef CONFIG_NEED_MULTIPLE_NODES
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400994 unsigned long paddr;
995
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700996 paddr = memblock_alloc_try_nid(sizeof(struct pglist_data), SMP_CACHE_BYTES, nid);
David S. Miller919ee672008-04-23 05:40:25 -0700997 if (!paddr) {
998 prom_printf("Cannot allocate pglist_data for nid[%d]\n", nid);
999 prom_halt();
1000 }
1001 NODE_DATA(nid) = __va(paddr);
1002 memset(NODE_DATA(nid), 0, sizeof(struct pglist_data));
1003
David S. Miller625d6932012-04-25 13:13:43 -07001004 NODE_DATA(nid)->node_id = nid;
David S. Miller919ee672008-04-23 05:40:25 -07001005#endif
1006
1007 p = NODE_DATA(nid);
1008
1009 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
1010 p->node_start_pfn = start_pfn;
1011 p->node_spanned_pages = end_pfn - start_pfn;
David S. Miller919ee672008-04-23 05:40:25 -07001012}
1013
1014static void init_node_masks_nonnuma(void)
1015{
Sam Ravnborg48d37212014-05-16 23:26:12 +02001016#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -07001017 int i;
Sam Ravnborg48d37212014-05-16 23:26:12 +02001018#endif
David S. Miller919ee672008-04-23 05:40:25 -07001019
1020 numadbg("Initializing tables for non-numa.\n");
1021
Pavel Tatashin1537b262017-02-16 15:05:58 -05001022 node_masks[0].mask = 0;
1023 node_masks[0].match = 0;
David S. Miller919ee672008-04-23 05:40:25 -07001024 num_node_masks = 1;
1025
Sam Ravnborg48d37212014-05-16 23:26:12 +02001026#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -07001027 for (i = 0; i < NR_CPUS; i++)
1028 numa_cpu_lookup_table[i] = 0;
1029
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001030 cpumask_setall(&numa_cpumask_lookup_table[0]);
Sam Ravnborg48d37212014-05-16 23:26:12 +02001031#endif
David S. Miller919ee672008-04-23 05:40:25 -07001032}
1033
1034#ifdef CONFIG_NEED_MULTIPLE_NODES
1035struct pglist_data *node_data[MAX_NUMNODES];
1036
1037EXPORT_SYMBOL(numa_cpu_lookup_table);
1038EXPORT_SYMBOL(numa_cpumask_lookup_table);
1039EXPORT_SYMBOL(node_data);
1040
David S. Miller919ee672008-04-23 05:40:25 -07001041static int scan_pio_for_cfg_handle(struct mdesc_handle *md, u64 pio,
1042 u32 cfg_handle)
1043{
1044 u64 arc;
1045
1046 mdesc_for_each_arc(arc, md, pio, MDESC_ARC_TYPE_FWD) {
1047 u64 target = mdesc_arc_target(md, arc);
1048 const u64 *val;
1049
1050 val = mdesc_get_property(md, target,
1051 "cfg-handle", NULL);
1052 if (val && *val == cfg_handle)
1053 return 0;
1054 }
1055 return -ENODEV;
1056}
1057
1058static int scan_arcs_for_cfg_handle(struct mdesc_handle *md, u64 grp,
1059 u32 cfg_handle)
1060{
1061 u64 arc, candidate, best_latency = ~(u64)0;
1062
1063 candidate = MDESC_NODE_NULL;
1064 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
1065 u64 target = mdesc_arc_target(md, arc);
1066 const char *name = mdesc_node_name(md, target);
1067 const u64 *val;
1068
1069 if (strcmp(name, "pio-latency-group"))
1070 continue;
1071
1072 val = mdesc_get_property(md, target, "latency", NULL);
1073 if (!val)
1074 continue;
1075
1076 if (*val < best_latency) {
1077 candidate = target;
1078 best_latency = *val;
1079 }
1080 }
1081
1082 if (candidate == MDESC_NODE_NULL)
1083 return -ENODEV;
1084
1085 return scan_pio_for_cfg_handle(md, candidate, cfg_handle);
1086}
1087
1088int of_node_to_nid(struct device_node *dp)
1089{
1090 const struct linux_prom64_registers *regs;
1091 struct mdesc_handle *md;
1092 u32 cfg_handle;
1093 int count, nid;
1094 u64 grp;
1095
David S. Miller072bd412008-08-18 20:36:17 -07001096 /* This is the right thing to do on currently supported
1097 * SUN4U NUMA platforms as well, as the PCI controller does
1098 * not sit behind any particular memory controller.
1099 */
David S. Miller919ee672008-04-23 05:40:25 -07001100 if (!mlgroups)
1101 return -1;
1102
1103 regs = of_get_property(dp, "reg", NULL);
1104 if (!regs)
1105 return -1;
1106
1107 cfg_handle = (regs->phys_addr >> 32UL) & 0x0fffffff;
1108
1109 md = mdesc_grab();
1110
1111 count = 0;
1112 nid = -1;
1113 mdesc_for_each_node_by_name(md, grp, "group") {
1114 if (!scan_arcs_for_cfg_handle(md, grp, cfg_handle)) {
1115 nid = count;
1116 break;
1117 }
1118 count++;
1119 }
1120
1121 mdesc_release(md);
1122
1123 return nid;
1124}
1125
David S. Miller01c453812009-04-07 01:05:22 -07001126static void __init add_node_ranges(void)
David S. Miller919ee672008-04-23 05:40:25 -07001127{
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001128 struct memblock_region *reg;
Pavel Tatashincd429ce2017-02-16 15:13:54 -05001129 unsigned long prev_max;
1130
1131memblock_resized:
1132 prev_max = memblock.memory.max;
David S. Miller919ee672008-04-23 05:40:25 -07001133
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001134 for_each_memblock(memory, reg) {
1135 unsigned long size = reg->size;
David S. Miller919ee672008-04-23 05:40:25 -07001136 unsigned long start, end;
1137
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001138 start = reg->base;
David S. Miller919ee672008-04-23 05:40:25 -07001139 end = start + size;
1140 while (start < end) {
1141 unsigned long this_end;
1142 int nid;
1143
Benjamin Herrenschmidt35a1f0b2010-07-06 15:38:58 -07001144 this_end = memblock_nid_range(start, end, &nid);
David S. Miller919ee672008-04-23 05:40:25 -07001145
Tejun Heo2a4814d2011-12-08 10:22:08 -08001146 numadbg("Setting memblock NUMA node nid[%d] "
David S. Miller919ee672008-04-23 05:40:25 -07001147 "start[%lx] end[%lx]\n",
1148 nid, start, this_end);
1149
Tang Chene7e8de52014-01-21 15:49:26 -08001150 memblock_set_node(start, this_end - start,
1151 &memblock.memory, nid);
Pavel Tatashincd429ce2017-02-16 15:13:54 -05001152 if (memblock.memory.max != prev_max)
1153 goto memblock_resized;
David S. Miller919ee672008-04-23 05:40:25 -07001154 start = this_end;
1155 }
1156 }
1157}
1158
1159static int __init grab_mlgroups(struct mdesc_handle *md)
1160{
1161 unsigned long paddr;
1162 int count = 0;
1163 u64 node;
1164
1165 mdesc_for_each_node_by_name(md, node, "memory-latency-group")
1166 count++;
1167 if (!count)
1168 return -ENOENT;
1169
Yinghai Lu95f72d12010-07-12 14:36:09 +10001170 paddr = memblock_alloc(count * sizeof(struct mdesc_mlgroup),
David S. Miller919ee672008-04-23 05:40:25 -07001171 SMP_CACHE_BYTES);
1172 if (!paddr)
1173 return -ENOMEM;
1174
1175 mlgroups = __va(paddr);
1176 num_mlgroups = count;
1177
1178 count = 0;
1179 mdesc_for_each_node_by_name(md, node, "memory-latency-group") {
1180 struct mdesc_mlgroup *m = &mlgroups[count++];
1181 const u64 *val;
1182
1183 m->node = node;
1184
1185 val = mdesc_get_property(md, node, "latency", NULL);
1186 m->latency = *val;
1187 val = mdesc_get_property(md, node, "address-match", NULL);
1188 m->match = *val;
1189 val = mdesc_get_property(md, node, "address-mask", NULL);
1190 m->mask = *val;
1191
Sam Ravnborg90181132009-01-06 13:19:28 -08001192 numadbg("MLGROUP[%d]: node[%llx] latency[%llx] "
1193 "match[%llx] mask[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001194 count - 1, m->node, m->latency, m->match, m->mask);
1195 }
1196
1197 return 0;
1198}
1199
1200static int __init grab_mblocks(struct mdesc_handle *md)
1201{
1202 unsigned long paddr;
1203 int count = 0;
1204 u64 node;
1205
1206 mdesc_for_each_node_by_name(md, node, "mblock")
1207 count++;
1208 if (!count)
1209 return -ENOENT;
1210
Yinghai Lu95f72d12010-07-12 14:36:09 +10001211 paddr = memblock_alloc(count * sizeof(struct mdesc_mblock),
David S. Miller919ee672008-04-23 05:40:25 -07001212 SMP_CACHE_BYTES);
1213 if (!paddr)
1214 return -ENOMEM;
1215
1216 mblocks = __va(paddr);
1217 num_mblocks = count;
1218
1219 count = 0;
1220 mdesc_for_each_node_by_name(md, node, "mblock") {
1221 struct mdesc_mblock *m = &mblocks[count++];
1222 const u64 *val;
1223
1224 val = mdesc_get_property(md, node, "base", NULL);
1225 m->base = *val;
1226 val = mdesc_get_property(md, node, "size", NULL);
1227 m->size = *val;
1228 val = mdesc_get_property(md, node,
1229 "address-congruence-offset", NULL);
bob picco771a37f2013-06-11 14:54:51 -04001230
1231 /* The address-congruence-offset property is optional.
1232 * Explicity zero it be identifty this.
1233 */
1234 if (val)
1235 m->offset = *val;
1236 else
1237 m->offset = 0UL;
David S. Miller919ee672008-04-23 05:40:25 -07001238
Sam Ravnborg90181132009-01-06 13:19:28 -08001239 numadbg("MBLOCK[%d]: base[%llx] size[%llx] offset[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001240 count - 1, m->base, m->size, m->offset);
1241 }
1242
1243 return 0;
1244}
1245
1246static void __init numa_parse_mdesc_group_cpus(struct mdesc_handle *md,
1247 u64 grp, cpumask_t *mask)
1248{
1249 u64 arc;
1250
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001251 cpumask_clear(mask);
David S. Miller919ee672008-04-23 05:40:25 -07001252
1253 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_BACK) {
1254 u64 target = mdesc_arc_target(md, arc);
1255 const char *name = mdesc_node_name(md, target);
1256 const u64 *id;
1257
1258 if (strcmp(name, "cpu"))
1259 continue;
1260 id = mdesc_get_property(md, target, "id", NULL);
Rusty Russelle305cb8f2009-03-16 14:40:23 +10301261 if (*id < nr_cpu_ids)
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001262 cpumask_set_cpu(*id, mask);
David S. Miller919ee672008-04-23 05:40:25 -07001263 }
1264}
1265
1266static struct mdesc_mlgroup * __init find_mlgroup(u64 node)
1267{
1268 int i;
1269
1270 for (i = 0; i < num_mlgroups; i++) {
1271 struct mdesc_mlgroup *m = &mlgroups[i];
1272 if (m->node == node)
1273 return m;
1274 }
1275 return NULL;
1276}
1277
Nitin Gupta52708d62015-11-02 16:30:24 -05001278int __node_distance(int from, int to)
1279{
1280 if ((from >= MAX_NUMNODES) || (to >= MAX_NUMNODES)) {
1281 pr_warn("Returning default NUMA distance value for %d->%d\n",
1282 from, to);
1283 return (from == to) ? LOCAL_DISTANCE : REMOTE_DISTANCE;
1284 }
1285 return numa_latency[from][to];
1286}
1287
Paul Gortmakerbdf2f592016-08-06 00:31:48 -04001288static int __init find_best_numa_node_for_mlgroup(struct mdesc_mlgroup *grp)
Nitin Gupta52708d62015-11-02 16:30:24 -05001289{
1290 int i;
1291
1292 for (i = 0; i < MAX_NUMNODES; i++) {
1293 struct node_mem_mask *n = &node_masks[i];
1294
Pavel Tatashin1537b262017-02-16 15:05:58 -05001295 if ((grp->mask == n->mask) && (grp->match == n->match))
Nitin Gupta52708d62015-11-02 16:30:24 -05001296 break;
1297 }
1298 return i;
1299}
1300
Paul Gortmakerbdf2f592016-08-06 00:31:48 -04001301static void __init find_numa_latencies_for_group(struct mdesc_handle *md,
1302 u64 grp, int index)
Nitin Gupta52708d62015-11-02 16:30:24 -05001303{
1304 u64 arc;
1305
1306 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
1307 int tnode;
1308 u64 target = mdesc_arc_target(md, arc);
1309 struct mdesc_mlgroup *m = find_mlgroup(target);
1310
1311 if (!m)
1312 continue;
1313 tnode = find_best_numa_node_for_mlgroup(m);
1314 if (tnode == MAX_NUMNODES)
1315 continue;
1316 numa_latency[index][tnode] = m->latency;
1317 }
1318}
1319
David S. Miller919ee672008-04-23 05:40:25 -07001320static int __init numa_attach_mlgroup(struct mdesc_handle *md, u64 grp,
1321 int index)
1322{
1323 struct mdesc_mlgroup *candidate = NULL;
1324 u64 arc, best_latency = ~(u64)0;
1325 struct node_mem_mask *n;
1326
1327 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
1328 u64 target = mdesc_arc_target(md, arc);
1329 struct mdesc_mlgroup *m = find_mlgroup(target);
1330 if (!m)
1331 continue;
1332 if (m->latency < best_latency) {
1333 candidate = m;
1334 best_latency = m->latency;
1335 }
1336 }
1337 if (!candidate)
1338 return -ENOENT;
1339
1340 if (num_node_masks != index) {
1341 printk(KERN_ERR "Inconsistent NUMA state, "
1342 "index[%d] != num_node_masks[%d]\n",
1343 index, num_node_masks);
1344 return -EINVAL;
1345 }
1346
1347 n = &node_masks[num_node_masks++];
1348
1349 n->mask = candidate->mask;
Pavel Tatashin1537b262017-02-16 15:05:58 -05001350 n->match = candidate->match;
David S. Miller919ee672008-04-23 05:40:25 -07001351
Pavel Tatashin1537b262017-02-16 15:05:58 -05001352 numadbg("NUMA NODE[%d]: mask[%lx] match[%lx] (latency[%llx])\n",
1353 index, n->mask, n->match, candidate->latency);
David S. Miller919ee672008-04-23 05:40:25 -07001354
1355 return 0;
1356}
1357
1358static int __init numa_parse_mdesc_group(struct mdesc_handle *md, u64 grp,
1359 int index)
1360{
1361 cpumask_t mask;
1362 int cpu;
1363
1364 numa_parse_mdesc_group_cpus(md, grp, &mask);
1365
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001366 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001367 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001368 cpumask_copy(&numa_cpumask_lookup_table[index], &mask);
David S. Miller919ee672008-04-23 05:40:25 -07001369
1370 if (numa_debug) {
1371 printk(KERN_INFO "NUMA GROUP[%d]: cpus [ ", index);
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001372 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001373 printk("%d ", cpu);
1374 printk("]\n");
1375 }
1376
1377 return numa_attach_mlgroup(md, grp, index);
1378}
1379
1380static int __init numa_parse_mdesc(void)
1381{
1382 struct mdesc_handle *md = mdesc_grab();
Nitin Gupta52708d62015-11-02 16:30:24 -05001383 int i, j, err, count;
David S. Miller919ee672008-04-23 05:40:25 -07001384 u64 node;
1385
1386 node = mdesc_node_by_name(md, MDESC_NODE_NULL, "latency-groups");
1387 if (node == MDESC_NODE_NULL) {
1388 mdesc_release(md);
1389 return -ENOENT;
1390 }
1391
1392 err = grab_mblocks(md);
1393 if (err < 0)
1394 goto out;
1395
1396 err = grab_mlgroups(md);
1397 if (err < 0)
1398 goto out;
1399
1400 count = 0;
1401 mdesc_for_each_node_by_name(md, node, "group") {
1402 err = numa_parse_mdesc_group(md, node, count);
1403 if (err < 0)
1404 break;
1405 count++;
1406 }
1407
Nitin Gupta52708d62015-11-02 16:30:24 -05001408 count = 0;
1409 mdesc_for_each_node_by_name(md, node, "group") {
1410 find_numa_latencies_for_group(md, node, count);
1411 count++;
1412 }
1413
1414 /* Normalize numa latency matrix according to ACPI SLIT spec. */
1415 for (i = 0; i < MAX_NUMNODES; i++) {
1416 u64 self_latency = numa_latency[i][i];
1417
1418 for (j = 0; j < MAX_NUMNODES; j++) {
1419 numa_latency[i][j] =
1420 (numa_latency[i][j] * LOCAL_DISTANCE) /
1421 self_latency;
1422 }
1423 }
1424
David S. Miller919ee672008-04-23 05:40:25 -07001425 add_node_ranges();
1426
1427 for (i = 0; i < num_node_masks; i++) {
1428 allocate_node_data(i);
1429 node_set_online(i);
1430 }
1431
1432 err = 0;
1433out:
1434 mdesc_release(md);
1435 return err;
1436}
1437
David S. Miller072bd412008-08-18 20:36:17 -07001438static int __init numa_parse_jbus(void)
1439{
1440 unsigned long cpu, index;
1441
1442 /* NUMA node id is encoded in bits 36 and higher, and there is
1443 * a 1-to-1 mapping from CPU ID to NUMA node ID.
1444 */
1445 index = 0;
1446 for_each_present_cpu(cpu) {
1447 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001448 cpumask_copy(&numa_cpumask_lookup_table[index], cpumask_of(cpu));
David S. Miller072bd412008-08-18 20:36:17 -07001449 node_masks[index].mask = ~((1UL << 36UL) - 1UL);
Pavel Tatashin1537b262017-02-16 15:05:58 -05001450 node_masks[index].match = cpu << 36UL;
David S. Miller072bd412008-08-18 20:36:17 -07001451
1452 index++;
1453 }
1454 num_node_masks = index;
1455
1456 add_node_ranges();
1457
1458 for (index = 0; index < num_node_masks; index++) {
1459 allocate_node_data(index);
1460 node_set_online(index);
1461 }
1462
1463 return 0;
1464}
1465
David S. Miller919ee672008-04-23 05:40:25 -07001466static int __init numa_parse_sun4u(void)
1467{
David S. Miller072bd412008-08-18 20:36:17 -07001468 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1469 unsigned long ver;
1470
1471 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
1472 if ((ver >> 32UL) == __JALAPENO_ID ||
1473 (ver >> 32UL) == __SERRANO_ID)
1474 return numa_parse_jbus();
1475 }
David S. Miller919ee672008-04-23 05:40:25 -07001476 return -1;
1477}
1478
1479static int __init bootmem_init_numa(void)
1480{
Nitin Gupta36beca62016-01-05 22:35:35 -08001481 int i, j;
David S. Miller919ee672008-04-23 05:40:25 -07001482 int err = -1;
1483
1484 numadbg("bootmem_init_numa()\n");
1485
Nitin Gupta36beca62016-01-05 22:35:35 -08001486 /* Some sane defaults for numa latency values */
1487 for (i = 0; i < MAX_NUMNODES; i++) {
1488 for (j = 0; j < MAX_NUMNODES; j++)
1489 numa_latency[i][j] = (i == j) ?
1490 LOCAL_DISTANCE : REMOTE_DISTANCE;
1491 }
1492
David S. Miller919ee672008-04-23 05:40:25 -07001493 if (numa_enabled) {
1494 if (tlb_type == hypervisor)
1495 err = numa_parse_mdesc();
1496 else
1497 err = numa_parse_sun4u();
1498 }
1499 return err;
1500}
1501
1502#else
1503
1504static int bootmem_init_numa(void)
1505{
1506 return -1;
1507}
1508
1509#endif
1510
1511static void __init bootmem_init_nonnuma(void)
1512{
Yinghai Lu95f72d12010-07-12 14:36:09 +10001513 unsigned long top_of_ram = memblock_end_of_DRAM();
1514 unsigned long total_ram = memblock_phys_mem_size();
David S. Miller919ee672008-04-23 05:40:25 -07001515
1516 numadbg("bootmem_init_nonnuma()\n");
1517
1518 printk(KERN_INFO "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
1519 top_of_ram, total_ram);
1520 printk(KERN_INFO "Memory hole size: %ldMB\n",
1521 (top_of_ram - total_ram) >> 20);
1522
1523 init_node_masks_nonnuma();
Tang Chene7e8de52014-01-21 15:49:26 -08001524 memblock_set_node(0, (phys_addr_t)ULLONG_MAX, &memblock.memory, 0);
David S. Miller919ee672008-04-23 05:40:25 -07001525 allocate_node_data(0);
David S. Miller919ee672008-04-23 05:40:25 -07001526 node_set_online(0);
1527}
1528
David S. Miller919ee672008-04-23 05:40:25 -07001529static unsigned long __init bootmem_init(unsigned long phys_base)
1530{
1531 unsigned long end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -07001532
Yinghai Lu95f72d12010-07-12 14:36:09 +10001533 end_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 max_pfn = max_low_pfn = end_pfn;
David S. Millerd1112012006-03-08 02:16:07 -08001535 min_low_pfn = (phys_base >> PAGE_SHIFT);
1536
David S. Miller919ee672008-04-23 05:40:25 -07001537 if (bootmem_init_numa() < 0)
1538 bootmem_init_nonnuma();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
David S. Miller625d6932012-04-25 13:13:43 -07001540 /* Dump memblock with node info. */
1541 memblock_dump_all();
1542
David S. Miller919ee672008-04-23 05:40:25 -07001543 /* XXX cpu notifier XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
David S. Miller625d6932012-04-25 13:13:43 -07001545 sparse_memory_present_with_active_regions(MAX_NUMNODES);
David S. Millerd1112012006-03-08 02:16:07 -08001546 sparse_init();
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return end_pfn;
1549}
1550
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001551static struct linux_prom64_registers pall[MAX_BANKS] __initdata;
1552static int pall_ents __initdata;
1553
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001554static unsigned long max_phys_bits = 40;
1555
1556bool kern_addr_valid(unsigned long addr)
1557{
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001558 pgd_t *pgd;
1559 pud_t *pud;
1560 pmd_t *pmd;
1561 pte_t *pte;
1562
David S. Millerbb4e6e82014-09-27 11:05:21 -07001563 if ((long)addr < 0L) {
1564 unsigned long pa = __pa(addr);
1565
1566 if ((addr >> max_phys_bits) != 0UL)
1567 return false;
1568
1569 return pfn_valid(pa >> PAGE_SHIFT);
1570 }
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001571
1572 if (addr >= (unsigned long) KERNBASE &&
1573 addr < (unsigned long)&_end)
1574 return true;
1575
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001576 pgd = pgd_offset_k(addr);
1577 if (pgd_none(*pgd))
1578 return 0;
1579
1580 pud = pud_offset(pgd, addr);
1581 if (pud_none(*pud))
1582 return 0;
1583
1584 if (pud_large(*pud))
1585 return pfn_valid(pud_pfn(*pud));
1586
1587 pmd = pmd_offset(pud, addr);
1588 if (pmd_none(*pmd))
1589 return 0;
1590
1591 if (pmd_large(*pmd))
1592 return pfn_valid(pmd_pfn(*pmd));
1593
1594 pte = pte_offset_kernel(pmd, addr);
1595 if (pte_none(*pte))
1596 return 0;
1597
1598 return pfn_valid(pte_pfn(*pte));
1599}
1600EXPORT_SYMBOL(kern_addr_valid);
1601
1602static unsigned long __ref kernel_map_hugepud(unsigned long vstart,
1603 unsigned long vend,
1604 pud_t *pud)
1605{
1606 const unsigned long mask16gb = (1UL << 34) - 1UL;
1607 u64 pte_val = vstart;
1608
1609 /* Each PUD is 8GB */
1610 if ((vstart & mask16gb) ||
1611 (vend - vstart <= mask16gb)) {
1612 pte_val ^= kern_linear_pte_xor[2];
1613 pud_val(*pud) = pte_val | _PAGE_PUD_HUGE;
1614
1615 return vstart + PUD_SIZE;
1616 }
1617
1618 pte_val ^= kern_linear_pte_xor[3];
1619 pte_val |= _PAGE_PUD_HUGE;
1620
1621 vend = vstart + mask16gb + 1UL;
1622 while (vstart < vend) {
1623 pud_val(*pud) = pte_val;
1624
1625 pte_val += PUD_SIZE;
1626 vstart += PUD_SIZE;
1627 pud++;
1628 }
1629 return vstart;
1630}
1631
1632static bool kernel_can_map_hugepud(unsigned long vstart, unsigned long vend,
1633 bool guard)
1634{
1635 if (guard && !(vstart & ~PUD_MASK) && (vend - vstart) >= PUD_SIZE)
1636 return true;
1637
1638 return false;
1639}
1640
1641static unsigned long __ref kernel_map_hugepmd(unsigned long vstart,
1642 unsigned long vend,
1643 pmd_t *pmd)
1644{
1645 const unsigned long mask256mb = (1UL << 28) - 1UL;
1646 const unsigned long mask2gb = (1UL << 31) - 1UL;
1647 u64 pte_val = vstart;
1648
1649 /* Each PMD is 8MB */
1650 if ((vstart & mask256mb) ||
1651 (vend - vstart <= mask256mb)) {
1652 pte_val ^= kern_linear_pte_xor[0];
1653 pmd_val(*pmd) = pte_val | _PAGE_PMD_HUGE;
1654
1655 return vstart + PMD_SIZE;
1656 }
1657
1658 if ((vstart & mask2gb) ||
1659 (vend - vstart <= mask2gb)) {
1660 pte_val ^= kern_linear_pte_xor[1];
1661 pte_val |= _PAGE_PMD_HUGE;
1662 vend = vstart + mask256mb + 1UL;
1663 } else {
1664 pte_val ^= kern_linear_pte_xor[2];
1665 pte_val |= _PAGE_PMD_HUGE;
1666 vend = vstart + mask2gb + 1UL;
1667 }
1668
1669 while (vstart < vend) {
1670 pmd_val(*pmd) = pte_val;
1671
1672 pte_val += PMD_SIZE;
1673 vstart += PMD_SIZE;
1674 pmd++;
1675 }
1676
1677 return vstart;
1678}
1679
1680static bool kernel_can_map_hugepmd(unsigned long vstart, unsigned long vend,
1681 bool guard)
1682{
1683 if (guard && !(vstart & ~PMD_MASK) && (vend - vstart) >= PMD_SIZE)
1684 return true;
1685
1686 return false;
1687}
1688
Sam Ravnborg896aef42008-02-24 19:49:52 -08001689static unsigned long __ref kernel_map_range(unsigned long pstart,
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001690 unsigned long pend, pgprot_t prot,
1691 bool use_huge)
David S. Miller56425302005-09-25 16:46:57 -07001692{
1693 unsigned long vstart = PAGE_OFFSET + pstart;
1694 unsigned long vend = PAGE_OFFSET + pend;
1695 unsigned long alloc_bytes = 0UL;
1696
1697 if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) {
David S. Miller13edad72005-09-29 17:58:26 -07001698 prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n",
David S. Miller56425302005-09-25 16:46:57 -07001699 vstart, vend);
1700 prom_halt();
1701 }
1702
1703 while (vstart < vend) {
1704 unsigned long this_end, paddr = __pa(vstart);
1705 pgd_t *pgd = pgd_offset_k(vstart);
1706 pud_t *pud;
1707 pmd_t *pmd;
1708 pte_t *pte;
1709
David S. Millerac55c762014-09-26 21:19:46 -07001710 if (pgd_none(*pgd)) {
1711 pud_t *new;
1712
1713 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1714 alloc_bytes += PAGE_SIZE;
1715 pgd_populate(&init_mm, pgd, new);
1716 }
David S. Miller56425302005-09-25 16:46:57 -07001717 pud = pud_offset(pgd, vstart);
1718 if (pud_none(*pud)) {
1719 pmd_t *new;
1720
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001721 if (kernel_can_map_hugepud(vstart, vend, use_huge)) {
1722 vstart = kernel_map_hugepud(vstart, vend, pud);
1723 continue;
1724 }
David S. Miller56425302005-09-25 16:46:57 -07001725 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1726 alloc_bytes += PAGE_SIZE;
1727 pud_populate(&init_mm, pud, new);
1728 }
1729
1730 pmd = pmd_offset(pud, vstart);
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001731 if (pmd_none(*pmd)) {
David S. Miller56425302005-09-25 16:46:57 -07001732 pte_t *new;
1733
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001734 if (kernel_can_map_hugepmd(vstart, vend, use_huge)) {
1735 vstart = kernel_map_hugepmd(vstart, vend, pmd);
1736 continue;
1737 }
David S. Miller56425302005-09-25 16:46:57 -07001738 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1739 alloc_bytes += PAGE_SIZE;
1740 pmd_populate_kernel(&init_mm, pmd, new);
1741 }
1742
1743 pte = pte_offset_kernel(pmd, vstart);
1744 this_end = (vstart + PMD_SIZE) & PMD_MASK;
1745 if (this_end > vend)
1746 this_end = vend;
1747
1748 while (vstart < this_end) {
1749 pte_val(*pte) = (paddr | pgprot_val(prot));
1750
1751 vstart += PAGE_SIZE;
1752 paddr += PAGE_SIZE;
1753 pte++;
1754 }
1755 }
1756
1757 return alloc_bytes;
1758}
1759
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001760static void __init flush_all_kernel_tsbs(void)
1761{
1762 int i;
1763
1764 for (i = 0; i < KERNEL_TSB_NENTRIES; i++) {
1765 struct tsb *ent = &swapper_tsb[i];
1766
1767 ent->tag = (1UL << TSB_TAG_INVALID_BIT);
1768 }
1769#ifndef CONFIG_DEBUG_PAGEALLOC
1770 for (i = 0; i < KERNEL_TSB4M_NENTRIES; i++) {
1771 struct tsb *ent = &swapper_4m_tsb[i];
1772
1773 ent->tag = (1UL << TSB_TAG_INVALID_BIT);
1774 }
1775#endif
1776}
1777
David S. Miller56425302005-09-25 16:46:57 -07001778extern unsigned int kvmap_linear_patch[1];
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001779
David S. Miller8f3614532007-12-13 06:13:38 -08001780static void __init kernel_physical_mapping_init(void)
1781{
David S. Miller8f3614532007-12-13 06:13:38 -08001782 unsigned long i, mem_alloced = 0UL;
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001783 bool use_huge = true;
David S. Miller8f3614532007-12-13 06:13:38 -08001784
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001785#ifdef CONFIG_DEBUG_PAGEALLOC
1786 use_huge = false;
1787#endif
David S. Miller8f3614532007-12-13 06:13:38 -08001788 for (i = 0; i < pall_ents; i++) {
1789 unsigned long phys_start, phys_end;
1790
1791 phys_start = pall[i].phys_addr;
1792 phys_end = phys_start + pall[i].reg_size;
1793
David S. Miller56425302005-09-25 16:46:57 -07001794 mem_alloced += kernel_map_range(phys_start, phys_end,
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001795 PAGE_KERNEL, use_huge);
David S. Miller56425302005-09-25 16:46:57 -07001796 }
1797
1798 printk("Allocated %ld bytes for kernel page tables.\n",
1799 mem_alloced);
1800
1801 kvmap_linear_patch[0] = 0x01000000; /* nop */
1802 flushi(&kvmap_linear_patch[0]);
1803
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001804 flush_all_kernel_tsbs();
1805
David S. Miller56425302005-09-25 16:46:57 -07001806 __flush_tlb_all();
1807}
1808
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001809#ifdef CONFIG_DEBUG_PAGEALLOC
Joonsoo Kim031bc572014-12-12 16:55:52 -08001810void __kernel_map_pages(struct page *page, int numpages, int enable)
David S. Miller56425302005-09-25 16:46:57 -07001811{
1812 unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT;
1813 unsigned long phys_end = phys_start + (numpages * PAGE_SIZE);
1814
1815 kernel_map_range(phys_start, phys_end,
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001816 (enable ? PAGE_KERNEL : __pgprot(0)), false);
David S. Miller56425302005-09-25 16:46:57 -07001817
David S. Miller74bf4312006-01-31 18:29:18 -08001818 flush_tsb_kernel_range(PAGE_OFFSET + phys_start,
1819 PAGE_OFFSET + phys_end);
1820
David S. Miller56425302005-09-25 16:46:57 -07001821 /* we should perform an IPI and flush all tlbs,
1822 * but that can deadlock->flush only current cpu.
1823 */
1824 __flush_tlb_kernel_range(PAGE_OFFSET + phys_start,
1825 PAGE_OFFSET + phys_end);
1826}
1827#endif
1828
David S. Miller10147572005-09-28 21:46:43 -07001829unsigned long __init find_ecache_flush_span(unsigned long size)
1830{
David S. Miller13edad72005-09-29 17:58:26 -07001831 int i;
David S. Miller10147572005-09-28 21:46:43 -07001832
David S. Miller13edad72005-09-29 17:58:26 -07001833 for (i = 0; i < pavail_ents; i++) {
1834 if (pavail[i].reg_size >= size)
1835 return pavail[i].phys_addr;
David S. Miller10147572005-09-28 21:46:43 -07001836 }
1837
1838 return ~0UL;
1839}
1840
David S. Millerb2d43832013-09-20 21:50:41 -07001841unsigned long PAGE_OFFSET;
1842EXPORT_SYMBOL(PAGE_OFFSET);
1843
David S. Millerbb4e6e82014-09-27 11:05:21 -07001844unsigned long VMALLOC_END = 0x0000010000000000UL;
1845EXPORT_SYMBOL(VMALLOC_END);
1846
David S. Miller4397bed2014-09-26 21:58:33 -07001847unsigned long sparc64_va_hole_top = 0xfffff80000000000UL;
1848unsigned long sparc64_va_hole_bottom = 0x0000080000000000UL;
1849
David S. Millerb2d43832013-09-20 21:50:41 -07001850static void __init setup_page_offset(void)
1851{
David S. Millerb2d43832013-09-20 21:50:41 -07001852 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
David S. Miller4397bed2014-09-26 21:58:33 -07001853 /* Cheetah/Panther support a full 64-bit virtual
1854 * address, so we can use all that our page tables
1855 * support.
1856 */
1857 sparc64_va_hole_top = 0xfff0000000000000UL;
1858 sparc64_va_hole_bottom = 0x0010000000000000UL;
1859
David S. Millerb2d43832013-09-20 21:50:41 -07001860 max_phys_bits = 42;
1861 } else if (tlb_type == hypervisor) {
1862 switch (sun4v_chip_type) {
1863 case SUN4V_CHIP_NIAGARA1:
1864 case SUN4V_CHIP_NIAGARA2:
David S. Miller4397bed2014-09-26 21:58:33 -07001865 /* T1 and T2 support 48-bit virtual addresses. */
1866 sparc64_va_hole_top = 0xffff800000000000UL;
1867 sparc64_va_hole_bottom = 0x0000800000000000UL;
1868
David S. Millerb2d43832013-09-20 21:50:41 -07001869 max_phys_bits = 39;
1870 break;
1871 case SUN4V_CHIP_NIAGARA3:
David S. Miller4397bed2014-09-26 21:58:33 -07001872 /* T3 supports 48-bit virtual addresses. */
1873 sparc64_va_hole_top = 0xffff800000000000UL;
1874 sparc64_va_hole_bottom = 0x0000800000000000UL;
1875
David S. Millerb2d43832013-09-20 21:50:41 -07001876 max_phys_bits = 43;
1877 break;
1878 case SUN4V_CHIP_NIAGARA4:
1879 case SUN4V_CHIP_NIAGARA5:
1880 case SUN4V_CHIP_SPARC64X:
David S. Miller7c0fa0f2014-09-24 21:49:29 -07001881 case SUN4V_CHIP_SPARC_M6:
David S. Miller4397bed2014-09-26 21:58:33 -07001882 /* T4 and later support 52-bit virtual addresses. */
1883 sparc64_va_hole_top = 0xfff8000000000000UL;
1884 sparc64_va_hole_bottom = 0x0008000000000000UL;
David S. Millerb2d43832013-09-20 21:50:41 -07001885 max_phys_bits = 47;
1886 break;
David S. Miller7c0fa0f2014-09-24 21:49:29 -07001887 case SUN4V_CHIP_SPARC_M7:
Khalid Azizc5b8b5b2016-04-19 11:12:54 -06001888 case SUN4V_CHIP_SPARC_SN:
David S. Miller7c0fa0f2014-09-24 21:49:29 -07001889 default:
1890 /* M7 and later support 52-bit virtual addresses. */
1891 sparc64_va_hole_top = 0xfff8000000000000UL;
1892 sparc64_va_hole_bottom = 0x0008000000000000UL;
1893 max_phys_bits = 49;
1894 break;
David S. Millerb2d43832013-09-20 21:50:41 -07001895 }
1896 }
1897
1898 if (max_phys_bits > MAX_PHYS_ADDRESS_BITS) {
1899 prom_printf("MAX_PHYS_ADDRESS_BITS is too small, need %lu\n",
1900 max_phys_bits);
1901 prom_halt();
1902 }
1903
David S. Millerbb4e6e82014-09-27 11:05:21 -07001904 PAGE_OFFSET = sparc64_va_hole_top;
1905 VMALLOC_END = ((sparc64_va_hole_bottom >> 1) +
1906 (sparc64_va_hole_bottom >> 2));
David S. Millerb2d43832013-09-20 21:50:41 -07001907
David S. Millerbb4e6e82014-09-27 11:05:21 -07001908 pr_info("MM: PAGE_OFFSET is 0x%016lx (max_phys_bits == %lu)\n",
David S. Millerb2d43832013-09-20 21:50:41 -07001909 PAGE_OFFSET, max_phys_bits);
David S. Millerbb4e6e82014-09-27 11:05:21 -07001910 pr_info("MM: VMALLOC [0x%016lx --> 0x%016lx]\n",
1911 VMALLOC_START, VMALLOC_END);
1912 pr_info("MM: VMEMMAP [0x%016lx --> 0x%016lx]\n",
1913 VMEMMAP_BASE, VMEMMAP_BASE << 1);
David S. Millerb2d43832013-09-20 21:50:41 -07001914}
1915
David S. Miller517af332006-02-01 15:55:21 -08001916static void __init tsb_phys_patch(void)
1917{
David S. Millerd257d5d2006-02-06 23:44:37 -08001918 struct tsb_ldquad_phys_patch_entry *pquad;
David S. Miller517af332006-02-01 15:55:21 -08001919 struct tsb_phys_patch_entry *p;
1920
David S. Millerd257d5d2006-02-06 23:44:37 -08001921 pquad = &__tsb_ldquad_phys_patch;
1922 while (pquad < &__tsb_ldquad_phys_patch_end) {
1923 unsigned long addr = pquad->addr;
1924
1925 if (tlb_type == hypervisor)
1926 *(unsigned int *) addr = pquad->sun4v_insn;
1927 else
1928 *(unsigned int *) addr = pquad->sun4u_insn;
1929 wmb();
1930 __asm__ __volatile__("flush %0"
1931 : /* no outputs */
1932 : "r" (addr));
1933
1934 pquad++;
1935 }
1936
David S. Miller517af332006-02-01 15:55:21 -08001937 p = &__tsb_phys_patch;
1938 while (p < &__tsb_phys_patch_end) {
1939 unsigned long addr = p->addr;
1940
1941 *(unsigned int *) addr = p->insn;
1942 wmb();
1943 __asm__ __volatile__("flush %0"
1944 : /* no outputs */
1945 : "r" (addr));
1946
1947 p++;
1948 }
1949}
1950
David S. Miller490384e2006-02-11 14:41:18 -08001951/* Don't mark as init, we give this to the Hypervisor. */
David S. Millerd1acb422007-03-16 17:20:28 -07001952#ifndef CONFIG_DEBUG_PAGEALLOC
1953#define NUM_KTSB_DESCR 2
1954#else
1955#define NUM_KTSB_DESCR 1
1956#endif
1957static struct hv_tsb_descr ktsb_descr[NUM_KTSB_DESCR];
David S. Miller490384e2006-02-11 14:41:18 -08001958
David S. Miller8c82dc02014-09-17 10:14:56 -07001959/* The swapper TSBs are loaded with a base sequence of:
1960 *
1961 * sethi %uhi(SYMBOL), REG1
1962 * sethi %hi(SYMBOL), REG2
1963 * or REG1, %ulo(SYMBOL), REG1
1964 * or REG2, %lo(SYMBOL), REG2
1965 * sllx REG1, 32, REG1
1966 * or REG1, REG2, REG1
1967 *
1968 * When we use physical addressing for the TSB accesses, we patch the
1969 * first four instructions in the above sequence.
1970 */
1971
David S. Miller9076d0e2011-08-05 00:53:57 -07001972static void patch_one_ktsb_phys(unsigned int *start, unsigned int *end, unsigned long pa)
1973{
David S. Miller8c82dc02014-09-17 10:14:56 -07001974 unsigned long high_bits, low_bits;
1975
1976 high_bits = (pa >> 32) & 0xffffffff;
1977 low_bits = (pa >> 0) & 0xffffffff;
David S. Miller9076d0e2011-08-05 00:53:57 -07001978
1979 while (start < end) {
1980 unsigned int *ia = (unsigned int *)(unsigned long)*start;
1981
David S. Miller8c82dc02014-09-17 10:14:56 -07001982 ia[0] = (ia[0] & ~0x3fffff) | (high_bits >> 10);
David S. Miller9076d0e2011-08-05 00:53:57 -07001983 __asm__ __volatile__("flush %0" : : "r" (ia));
1984
David S. Miller8c82dc02014-09-17 10:14:56 -07001985 ia[1] = (ia[1] & ~0x3fffff) | (low_bits >> 10);
David S. Miller9076d0e2011-08-05 00:53:57 -07001986 __asm__ __volatile__("flush %0" : : "r" (ia + 1));
1987
David S. Miller8c82dc02014-09-17 10:14:56 -07001988 ia[2] = (ia[2] & ~0x1fff) | (high_bits & 0x3ff);
1989 __asm__ __volatile__("flush %0" : : "r" (ia + 2));
1990
1991 ia[3] = (ia[3] & ~0x1fff) | (low_bits & 0x3ff);
1992 __asm__ __volatile__("flush %0" : : "r" (ia + 3));
1993
David S. Miller9076d0e2011-08-05 00:53:57 -07001994 start++;
1995 }
1996}
1997
1998static void ktsb_phys_patch(void)
1999{
2000 extern unsigned int __swapper_tsb_phys_patch;
2001 extern unsigned int __swapper_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07002002 unsigned long ktsb_pa;
2003
2004 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
2005 patch_one_ktsb_phys(&__swapper_tsb_phys_patch,
2006 &__swapper_tsb_phys_patch_end, ktsb_pa);
2007#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller0785a8e2011-08-06 05:26:35 -07002008 {
2009 extern unsigned int __swapper_4m_tsb_phys_patch;
2010 extern unsigned int __swapper_4m_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07002011 ktsb_pa = (kern_base +
2012 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
2013 patch_one_ktsb_phys(&__swapper_4m_tsb_phys_patch,
2014 &__swapper_4m_tsb_phys_patch_end, ktsb_pa);
David S. Miller0785a8e2011-08-06 05:26:35 -07002015 }
David S. Miller9076d0e2011-08-05 00:53:57 -07002016#endif
2017}
2018
David S. Miller490384e2006-02-11 14:41:18 -08002019static void __init sun4v_ktsb_init(void)
2020{
2021 unsigned long ktsb_pa;
2022
David S. Millerd7744a02006-02-21 22:31:11 -08002023 /* First KTSB for PAGE_SIZE mappings. */
David S. Miller490384e2006-02-11 14:41:18 -08002024 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
2025
2026 switch (PAGE_SIZE) {
2027 case 8 * 1024:
2028 default:
2029 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K;
2030 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K;
2031 break;
2032
2033 case 64 * 1024:
2034 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K;
2035 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K;
2036 break;
2037
2038 case 512 * 1024:
2039 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K;
2040 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K;
2041 break;
2042
2043 case 4 * 1024 * 1024:
2044 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB;
2045 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB;
2046 break;
Joe Perches6cb79b32011-06-03 14:45:23 +00002047 }
David S. Miller490384e2006-02-11 14:41:18 -08002048
David S. Miller3f19a842006-02-17 12:03:20 -08002049 ktsb_descr[0].assoc = 1;
David S. Miller490384e2006-02-11 14:41:18 -08002050 ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
2051 ktsb_descr[0].ctx_idx = 0;
2052 ktsb_descr[0].tsb_base = ktsb_pa;
2053 ktsb_descr[0].resv = 0;
2054
David S. Millerd1acb422007-03-16 17:20:28 -07002055#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller4f93d212012-09-06 18:13:58 -07002056 /* Second KTSB for 4MB/256MB/2GB/16GB mappings. */
David S. Millerd7744a02006-02-21 22:31:11 -08002057 ktsb_pa = (kern_base +
2058 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
2059
2060 ktsb_descr[1].pgsz_idx = HV_PGSZ_IDX_4MB;
David S. Millerc69ad0a2012-09-06 20:35:36 -07002061 ktsb_descr[1].pgsz_mask = ((HV_PGSZ_MASK_4MB |
2062 HV_PGSZ_MASK_256MB |
2063 HV_PGSZ_MASK_2GB |
2064 HV_PGSZ_MASK_16GB) &
2065 cpu_pgsz_mask);
David S. Millerd7744a02006-02-21 22:31:11 -08002066 ktsb_descr[1].assoc = 1;
2067 ktsb_descr[1].num_ttes = KERNEL_TSB4M_NENTRIES;
2068 ktsb_descr[1].ctx_idx = 0;
2069 ktsb_descr[1].tsb_base = ktsb_pa;
2070 ktsb_descr[1].resv = 0;
David S. Millerd1acb422007-03-16 17:20:28 -07002071#endif
David S. Miller490384e2006-02-11 14:41:18 -08002072}
2073
Paul Gortmaker2066aad2013-06-17 15:43:14 -04002074void sun4v_ktsb_register(void)
David S. Miller490384e2006-02-11 14:41:18 -08002075{
David S. Miller7db35f32007-05-29 02:22:14 -07002076 unsigned long pa, ret;
David S. Miller490384e2006-02-11 14:41:18 -08002077
2078 pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE);
2079
David S. Miller7db35f32007-05-29 02:22:14 -07002080 ret = sun4v_mmu_tsb_ctx0(NUM_KTSB_DESCR, pa);
2081 if (ret != 0) {
2082 prom_printf("hypervisor_mmu_tsb_ctx0[%lx]: "
2083 "errors with %lx\n", pa, ret);
2084 prom_halt();
2085 }
David S. Miller490384e2006-02-11 14:41:18 -08002086}
2087
David S. Millerc69ad0a2012-09-06 20:35:36 -07002088static void __init sun4u_linear_pte_xor_finalize(void)
2089{
2090#ifndef CONFIG_DEBUG_PAGEALLOC
2091 /* This is where we would add Panther support for
2092 * 32MB and 256MB pages.
2093 */
2094#endif
2095}
2096
2097static void __init sun4v_linear_pte_xor_finalize(void)
2098{
Khalid Aziz494e5b62015-05-27 10:00:46 -06002099 unsigned long pagecv_flag;
2100
2101 /* Bit 9 of TTE is no longer CV bit on M7 processor and it instead
2102 * enables MCD error. Do not set bit 9 on M7 processor.
2103 */
2104 switch (sun4v_chip_type) {
2105 case SUN4V_CHIP_SPARC_M7:
Khalid Azizc5b8b5b2016-04-19 11:12:54 -06002106 case SUN4V_CHIP_SPARC_SN:
Khalid Aziz494e5b62015-05-27 10:00:46 -06002107 pagecv_flag = 0x00;
2108 break;
2109 default:
2110 pagecv_flag = _PAGE_CV_4V;
2111 break;
2112 }
David S. Millerc69ad0a2012-09-06 20:35:36 -07002113#ifndef CONFIG_DEBUG_PAGEALLOC
2114 if (cpu_pgsz_mask & HV_PGSZ_MASK_256MB) {
2115 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07002116 PAGE_OFFSET;
Khalid Aziz494e5b62015-05-27 10:00:46 -06002117 kern_linear_pte_xor[1] |= (_PAGE_CP_4V | pagecv_flag |
David S. Millerc69ad0a2012-09-06 20:35:36 -07002118 _PAGE_P_4V | _PAGE_W_4V);
2119 } else {
2120 kern_linear_pte_xor[1] = kern_linear_pte_xor[0];
2121 }
2122
2123 if (cpu_pgsz_mask & HV_PGSZ_MASK_2GB) {
2124 kern_linear_pte_xor[2] = (_PAGE_VALID | _PAGE_SZ2GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07002125 PAGE_OFFSET;
Khalid Aziz494e5b62015-05-27 10:00:46 -06002126 kern_linear_pte_xor[2] |= (_PAGE_CP_4V | pagecv_flag |
David S. Millerc69ad0a2012-09-06 20:35:36 -07002127 _PAGE_P_4V | _PAGE_W_4V);
2128 } else {
2129 kern_linear_pte_xor[2] = kern_linear_pte_xor[1];
2130 }
2131
2132 if (cpu_pgsz_mask & HV_PGSZ_MASK_16GB) {
2133 kern_linear_pte_xor[3] = (_PAGE_VALID | _PAGE_SZ16GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07002134 PAGE_OFFSET;
Khalid Aziz494e5b62015-05-27 10:00:46 -06002135 kern_linear_pte_xor[3] |= (_PAGE_CP_4V | pagecv_flag |
David S. Millerc69ad0a2012-09-06 20:35:36 -07002136 _PAGE_P_4V | _PAGE_W_4V);
2137 } else {
2138 kern_linear_pte_xor[3] = kern_linear_pte_xor[2];
2139 }
2140#endif
2141}
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143/* paging_init() sets up the page tables */
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145static unsigned long last_valid_pfn;
David S. Millerac55c762014-09-26 21:19:46 -07002146
David S. Millerc4bce902006-02-11 21:57:54 -08002147static void sun4u_pgprot_init(void);
2148static void sun4v_pgprot_init(void);
2149
bob picco7c21d532014-09-16 09:29:54 -04002150static phys_addr_t __init available_memory(void)
2151{
2152 phys_addr_t available = 0ULL;
2153 phys_addr_t pa_start, pa_end;
2154 u64 i;
2155
Tony Luckfc6daaf2015-06-24 16:58:09 -07002156 for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE, &pa_start,
2157 &pa_end, NULL)
bob picco7c21d532014-09-16 09:29:54 -04002158 available = available + (pa_end - pa_start);
2159
2160 return available;
2161}
2162
Khalid Aziz494e5b62015-05-27 10:00:46 -06002163#define _PAGE_CACHE_4U (_PAGE_CP_4U | _PAGE_CV_4U)
2164#define _PAGE_CACHE_4V (_PAGE_CP_4V | _PAGE_CV_4V)
2165#define __DIRTY_BITS_4U (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U)
2166#define __DIRTY_BITS_4V (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V)
2167#define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R)
2168#define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R)
2169
bob picco7c21d532014-09-16 09:29:54 -04002170/* We need to exclude reserved regions. This exclusion will include
2171 * vmlinux and initrd. To be more precise the initrd size could be used to
2172 * compute a new lower limit because it is freed later during initialization.
2173 */
2174static void __init reduce_memory(phys_addr_t limit_ram)
2175{
2176 phys_addr_t avail_ram = available_memory();
2177 phys_addr_t pa_start, pa_end;
2178 u64 i;
2179
2180 if (limit_ram >= avail_ram)
2181 return;
2182
Tony Luckfc6daaf2015-06-24 16:58:09 -07002183 for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE, &pa_start,
2184 &pa_end, NULL) {
bob picco7c21d532014-09-16 09:29:54 -04002185 phys_addr_t region_size = pa_end - pa_start;
2186 phys_addr_t clip_start = pa_start;
2187
2188 avail_ram = avail_ram - region_size;
2189 /* Are we consuming too much? */
2190 if (avail_ram < limit_ram) {
2191 phys_addr_t give_back = limit_ram - avail_ram;
2192
2193 region_size = region_size - give_back;
2194 clip_start = clip_start + give_back;
2195 }
2196
2197 memblock_remove(clip_start, region_size);
2198
2199 if (avail_ram <= limit_ram)
2200 break;
2201 i = 0UL;
2202 }
2203}
2204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205void __init paging_init(void)
2206{
David S. Miller919ee672008-04-23 05:40:25 -07002207 unsigned long end_pfn, shift, phys_base;
David S. Miller0836a0e2005-09-28 21:38:08 -07002208 unsigned long real_end, i;
2209
David S. Millerb2d43832013-09-20 21:50:41 -07002210 setup_page_offset();
2211
David S. Miller22adb352007-05-26 01:14:43 -07002212 /* These build time checkes make sure that the dcache_dirty_cpu()
2213 * page->flags usage will work.
2214 *
2215 * When a page gets marked as dcache-dirty, we store the
2216 * cpu number starting at bit 32 in the page->flags. Also,
2217 * functions like clear_dcache_dirty_cpu use the cpu mask
2218 * in 13-bit signed-immediate instruction fields.
2219 */
Christoph Lameter9223b412008-04-28 02:12:48 -07002220
2221 /*
2222 * Page flags must not reach into upper 32 bits that are used
2223 * for the cpu number
2224 */
2225 BUILD_BUG_ON(NR_PAGEFLAGS > 32);
2226
2227 /*
2228 * The bit fields placed in the high range must not reach below
2229 * the 32 bit boundary. Otherwise we cannot place the cpu field
2230 * at the 32 bit boundary.
2231 */
David S. Miller22adb352007-05-26 01:14:43 -07002232 BUILD_BUG_ON(SECTIONS_WIDTH + NODES_WIDTH + ZONES_WIDTH +
Christoph Lameter9223b412008-04-28 02:12:48 -07002233 ilog2(roundup_pow_of_two(NR_CPUS)) > 32);
2234
David S. Miller22adb352007-05-26 01:14:43 -07002235 BUILD_BUG_ON(NR_CPUS > 4096);
2236
David S. Miller0eef3312014-05-03 22:52:50 -07002237 kern_base = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
David S. Miller481295f2006-02-07 21:51:08 -08002238 kern_size = (unsigned long)&_end - (unsigned long)KERNBASE;
2239
David S. Millerd7744a02006-02-21 22:31:11 -08002240 /* Invalidate both kernel TSBs. */
David S. Miller8b234272006-02-17 18:01:02 -08002241 memset(swapper_tsb, 0x40, sizeof(swapper_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07002242#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Millerd7744a02006-02-21 22:31:11 -08002243 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07002244#endif
David S. Miller8b234272006-02-17 18:01:02 -08002245
Khalid Aziz494e5b62015-05-27 10:00:46 -06002246 /* TTE.cv bit on sparc v9 occupies the same position as TTE.mcde
2247 * bit on M7 processor. This is a conflicting usage of the same
2248 * bit. Enabling TTE.cv on M7 would turn on Memory Corruption
2249 * Detection error on all pages and this will lead to problems
2250 * later. Kernel does not run with MCD enabled and hence rest
2251 * of the required steps to fully configure memory corruption
2252 * detection are not taken. We need to ensure TTE.mcde is not
2253 * set on M7 processor. Compute the value of cacheability
2254 * flag for use later taking this into consideration.
2255 */
2256 switch (sun4v_chip_type) {
2257 case SUN4V_CHIP_SPARC_M7:
Khalid Azizc5b8b5b2016-04-19 11:12:54 -06002258 case SUN4V_CHIP_SPARC_SN:
Khalid Aziz494e5b62015-05-27 10:00:46 -06002259 page_cache4v_flag = _PAGE_CP_4V;
2260 break;
2261 default:
2262 page_cache4v_flag = _PAGE_CACHE_4V;
2263 break;
2264 }
2265
David S. Millerc4bce902006-02-11 21:57:54 -08002266 if (tlb_type == hypervisor)
2267 sun4v_pgprot_init();
2268 else
2269 sun4u_pgprot_init();
2270
David S. Millerd257d5d2006-02-06 23:44:37 -08002271 if (tlb_type == cheetah_plus ||
David S. Miller9076d0e2011-08-05 00:53:57 -07002272 tlb_type == hypervisor) {
David S. Miller517af332006-02-01 15:55:21 -08002273 tsb_phys_patch();
David S. Miller9076d0e2011-08-05 00:53:57 -07002274 ktsb_phys_patch();
2275 }
David S. Miller517af332006-02-01 15:55:21 -08002276
David S. Millerc69ad0a2012-09-06 20:35:36 -07002277 if (tlb_type == hypervisor)
David S. Millerd257d5d2006-02-06 23:44:37 -08002278 sun4v_patch_tlb_handlers();
2279
David S. Millera94a1722008-05-11 21:04:48 -07002280 /* Find available physical memory...
2281 *
2282 * Read it twice in order to work around a bug in openfirmware.
2283 * The call to grab this table itself can cause openfirmware to
2284 * allocate memory, which in turn can take away some space from
2285 * the list of available memory. Reading it twice makes sure
2286 * we really do get the final value.
2287 */
2288 read_obp_translations();
2289 read_obp_memory("reg", &pall[0], &pall_ents);
2290 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller13edad72005-09-29 17:58:26 -07002291 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller0836a0e2005-09-28 21:38:08 -07002292
2293 phys_base = 0xffffffffffffffffUL;
David S. Miller3b2a7e22008-02-13 18:13:20 -08002294 for (i = 0; i < pavail_ents; i++) {
David S. Miller13edad72005-09-29 17:58:26 -07002295 phys_base = min(phys_base, pavail[i].phys_addr);
Yinghai Lu95f72d12010-07-12 14:36:09 +10002296 memblock_add(pavail[i].phys_addr, pavail[i].reg_size);
David S. Miller3b2a7e22008-02-13 18:13:20 -08002297 }
2298
Yinghai Lu95f72d12010-07-12 14:36:09 +10002299 memblock_reserve(kern_base, kern_size);
David S. Miller0836a0e2005-09-28 21:38:08 -07002300
David S. Miller4e82c9a2008-02-13 18:00:03 -08002301 find_ramdisk(phys_base);
2302
bob picco7c21d532014-09-16 09:29:54 -04002303 if (cmdline_memory_size)
2304 reduce_memory(cmdline_memory_size);
David S. Miller25b0c652008-02-13 18:20:14 -08002305
Tejun Heo1aadc052011-12-08 10:22:08 -08002306 memblock_allow_resize();
Yinghai Lu95f72d12010-07-12 14:36:09 +10002307 memblock_dump_all();
David S. Miller3b2a7e22008-02-13 18:13:20 -08002308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 set_bit(0, mmu_context_bmap);
2310
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002311 shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE);
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 real_end = (unsigned long)_end;
David S. Miller0eef3312014-05-03 22:52:50 -07002314 num_kernel_image_mappings = DIV_ROUND_UP(real_end - KERNBASE, 1 << ILOG2_4MB);
David S. Miller64658742008-03-21 17:01:38 -07002315 printk("Kernel: Using %d locked TLB entries for main kernel image.\n",
2316 num_kernel_image_mappings);
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002317
2318 /* Set kernel pgd to upper alias so physical page computations
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 * work.
2320 */
2321 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
2322
David S. Millerd195b712014-09-27 21:30:57 -07002323 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
David S. Miller0dd5b7b2014-09-24 20:56:11 -07002324
David S. Millerc9c10832005-10-12 12:22:46 -07002325 inherit_prom_mappings();
David S. Miller5085b4a2005-09-22 00:45:41 -07002326
David S. Millera8b900d2006-01-31 18:33:37 -08002327 /* Ok, we can use our TLB miss and window trap handlers safely. */
2328 setup_tba();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
David S. Millerc9c10832005-10-12 12:22:46 -07002330 __flush_tlb_all();
David S. Miller9ad98c52005-10-05 15:12:00 -07002331
David S. Millerad072002008-02-13 19:21:51 -08002332 prom_build_devicetree();
David S. Millerb696fdc2009-05-26 22:37:25 -07002333 of_populate_present_mask();
David S. Millerb99c6eb2009-06-18 01:44:19 -07002334#ifndef CONFIG_SMP
2335 of_fill_in_cpu_data();
2336#endif
David S. Millerad072002008-02-13 19:21:51 -08002337
David S. Miller890db402009-04-01 03:13:15 -07002338 if (tlb_type == hypervisor) {
David S. Miller4a283332008-02-13 19:22:23 -08002339 sun4v_mdesc_init();
Stephen Rothwell6ac5c612009-06-15 03:06:18 -07002340 mdesc_populate_present_mask(cpu_all_mask);
David S. Millerb99c6eb2009-06-18 01:44:19 -07002341#ifndef CONFIG_SMP
2342 mdesc_fill_in_cpu_data(cpu_all_mask);
2343#endif
David S. Millerce33fdc2012-09-06 19:01:25 -07002344 mdesc_get_page_sizes(cpu_all_mask, &cpu_pgsz_mask);
David S. Millerc69ad0a2012-09-06 20:35:36 -07002345
2346 sun4v_linear_pte_xor_finalize();
2347
2348 sun4v_ktsb_init();
2349 sun4v_ktsb_register();
David S. Millerce33fdc2012-09-06 19:01:25 -07002350 } else {
2351 unsigned long impl, ver;
2352
2353 cpu_pgsz_mask = (HV_PGSZ_MASK_8K | HV_PGSZ_MASK_64K |
2354 HV_PGSZ_MASK_512K | HV_PGSZ_MASK_4MB);
2355
2356 __asm__ __volatile__("rdpr %%ver, %0" : "=r" (ver));
2357 impl = ((ver >> 32) & 0xffff);
2358 if (impl == PANTHER_IMPL)
2359 cpu_pgsz_mask |= (HV_PGSZ_MASK_32MB |
2360 HV_PGSZ_MASK_256MB);
David S. Millerc69ad0a2012-09-06 20:35:36 -07002361
2362 sun4u_linear_pte_xor_finalize();
David S. Miller890db402009-04-01 03:13:15 -07002363 }
David S. Miller4a283332008-02-13 19:22:23 -08002364
David S. Millerc69ad0a2012-09-06 20:35:36 -07002365 /* Flush the TLBs and the 4M TSB so that the updated linear
2366 * pte XOR settings are realized for all mappings.
2367 */
2368 __flush_tlb_all();
2369#ifndef CONFIG_DEBUG_PAGEALLOC
2370 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
2371#endif
2372 __flush_tlb_all();
2373
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002374 /* Setup bootmem... */
David S. Miller919ee672008-04-23 05:40:25 -07002375 last_valid_pfn = end_pfn = bootmem_init(phys_base);
David S. Millerd1112012006-03-08 02:16:07 -08002376
David S. Miller56425302005-09-25 16:46:57 -07002377 kernel_physical_mapping_init();
David S. Miller56425302005-09-25 16:46:57 -07002378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 {
David S. Miller919ee672008-04-23 05:40:25 -07002380 unsigned long max_zone_pfns[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
David S. Miller919ee672008-04-23 05:40:25 -07002382 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
David S. Miller919ee672008-04-23 05:40:25 -07002384 max_zone_pfns[ZONE_NORMAL] = end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
David S. Miller919ee672008-04-23 05:40:25 -07002386 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
2388
David S. Miller3c62a2d2008-02-17 23:22:50 -08002389 printk("Booting Linux...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390}
2391
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -08002392int page_in_phys_avail(unsigned long paddr)
David S. Miller919ee672008-04-23 05:40:25 -07002393{
2394 int i;
2395
2396 paddr &= PAGE_MASK;
2397
2398 for (i = 0; i < pavail_ents; i++) {
2399 unsigned long start, end;
2400
2401 start = pavail[i].phys_addr;
2402 end = start + pavail[i].reg_size;
2403
2404 if (paddr >= start && paddr < end)
2405 return 1;
2406 }
2407 if (paddr >= kern_base && paddr < (kern_base + kern_size))
2408 return 1;
2409#ifdef CONFIG_BLK_DEV_INITRD
2410 if (paddr >= __pa(initrd_start) &&
2411 paddr < __pa(PAGE_ALIGN(initrd_end)))
2412 return 1;
2413#endif
2414
2415 return 0;
2416}
2417
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002418static void __init register_page_bootmem_info(void)
2419{
2420#ifdef CONFIG_NEED_MULTIPLE_NODES
2421 int i;
2422
2423 for_each_online_node(i)
2424 if (NODE_DATA(i)->node_spanned_pages)
2425 register_page_bootmem_info_node(NODE_DATA(i));
2426#endif
2427}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428void __init mem_init(void)
2429{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 high_memory = __va(last_valid_pfn << PAGE_SHIFT);
2431
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002432 register_page_bootmem_info();
Jiang Liu0c988532013-07-03 15:03:24 -07002433 free_all_bootmem();
David S. Miller919ee672008-04-23 05:40:25 -07002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 /*
2436 * Set up the zero page, mark it reserved, so that page count
2437 * is not manipulated when freeing the page from user ptes.
2438 */
2439 mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0);
2440 if (mem_map_zero == NULL) {
2441 prom_printf("paging_init: Cannot alloc zero page.\n");
2442 prom_halt();
2443 }
Jiang Liu70affe42013-05-07 16:18:08 -07002444 mark_page_reserved(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Jiang Liudceccbe2013-07-03 15:04:14 -07002446 mem_init_print_info(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448 if (tlb_type == cheetah || tlb_type == cheetah_plus)
2449 cheetah_ecache_flush_init();
2450}
2451
David S. Miller898cf0e2005-09-23 11:59:44 -07002452void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
2454 unsigned long addr, initend;
David S. Millerf2b60792008-08-14 01:45:41 -07002455 int do_free = 1;
2456
2457 /* If the physical memory maps were trimmed by kernel command
2458 * line options, don't even try freeing this initmem stuff up.
2459 * The kernel image could have been in the trimmed out region
2460 * and if so the freeing below will free invalid page structs.
2461 */
2462 if (cmdline_memory_size)
2463 do_free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 /*
2466 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
2467 */
2468 addr = PAGE_ALIGN((unsigned long)(__init_begin));
2469 initend = (unsigned long)(__init_end) & PAGE_MASK;
2470 for (; addr < initend; addr += PAGE_SIZE) {
2471 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 page = (addr +
2474 ((unsigned long) __va(kern_base)) -
2475 ((unsigned long) KERNBASE));
Randy Dunlapc9cf5522006-06-27 02:53:52 -07002476 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Jiang Liu70affe42013-05-07 16:18:08 -07002478 if (do_free)
2479 free_reserved_page(virt_to_page(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481}
2482
2483#ifdef CONFIG_BLK_DEV_INITRD
2484void free_initrd_mem(unsigned long start, unsigned long end)
2485{
Jiang Liudceccbe2013-07-03 15:04:14 -07002486 free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
2487 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489#endif
David S. Millerc4bce902006-02-11 21:57:54 -08002490
David S. Millerc4bce902006-02-11 21:57:54 -08002491pgprot_t PAGE_KERNEL __read_mostly;
2492EXPORT_SYMBOL(PAGE_KERNEL);
2493
2494pgprot_t PAGE_KERNEL_LOCKED __read_mostly;
2495pgprot_t PAGE_COPY __read_mostly;
David S. Miller0f159522006-02-18 12:43:16 -08002496
2497pgprot_t PAGE_SHARED __read_mostly;
2498EXPORT_SYMBOL(PAGE_SHARED);
2499
David S. Millerc4bce902006-02-11 21:57:54 -08002500unsigned long pg_iobits __read_mostly;
2501
2502unsigned long _PAGE_IE __read_mostly;
David S. Miller987c74f2006-06-25 01:34:43 -07002503EXPORT_SYMBOL(_PAGE_IE);
David S. Millerb2bef442006-02-23 01:55:55 -08002504
David S. Millerc4bce902006-02-11 21:57:54 -08002505unsigned long _PAGE_E __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002506EXPORT_SYMBOL(_PAGE_E);
2507
David S. Millerc4bce902006-02-11 21:57:54 -08002508unsigned long _PAGE_CACHE __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002509EXPORT_SYMBOL(_PAGE_CACHE);
David S. Millerc4bce902006-02-11 21:57:54 -08002510
David Miller46644c22007-10-16 01:24:16 -07002511#ifdef CONFIG_SPARSEMEM_VMEMMAP
Johannes Weiner0aad8182013-04-29 15:07:50 -07002512int __meminit vmemmap_populate(unsigned long vstart, unsigned long vend,
2513 int node)
David Miller46644c22007-10-16 01:24:16 -07002514{
David Miller46644c22007-10-16 01:24:16 -07002515 unsigned long pte_base;
2516
2517 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2518 _PAGE_CP_4U | _PAGE_CV_4U |
2519 _PAGE_P_4U | _PAGE_W_4U);
2520 if (tlb_type == hypervisor)
2521 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4V |
Khalid Aziz494e5b62015-05-27 10:00:46 -06002522 page_cache4v_flag | _PAGE_P_4V | _PAGE_W_4V);
David Miller46644c22007-10-16 01:24:16 -07002523
David S. Millerc06240c2014-09-24 21:20:14 -07002524 pte_base |= _PAGE_PMD_HUGE;
David Miller46644c22007-10-16 01:24:16 -07002525
David S. Millerc06240c2014-09-24 21:20:14 -07002526 vstart = vstart & PMD_MASK;
2527 vend = ALIGN(vend, PMD_SIZE);
2528 for (; vstart < vend; vstart += PMD_SIZE) {
2529 pgd_t *pgd = pgd_offset_k(vstart);
2530 unsigned long pte;
2531 pud_t *pud;
2532 pmd_t *pmd;
2533
2534 if (pgd_none(*pgd)) {
2535 pud_t *new = vmemmap_alloc_block(PAGE_SIZE, node);
2536
2537 if (!new)
2538 return -ENOMEM;
2539 pgd_populate(&init_mm, pgd, new);
2540 }
2541
2542 pud = pud_offset(pgd, vstart);
2543 if (pud_none(*pud)) {
2544 pmd_t *new = vmemmap_alloc_block(PAGE_SIZE, node);
2545
2546 if (!new)
2547 return -ENOMEM;
2548 pud_populate(&init_mm, pud, new);
2549 }
2550
2551 pmd = pmd_offset(pud, vstart);
2552
2553 pte = pmd_val(*pmd);
2554 if (!(pte & _PAGE_VALID)) {
2555 void *block = vmemmap_alloc_block(PMD_SIZE, node);
2556
David Miller46644c22007-10-16 01:24:16 -07002557 if (!block)
2558 return -ENOMEM;
2559
David S. Millerc06240c2014-09-24 21:20:14 -07002560 pmd_val(*pmd) = pte_base | __pa(block);
David Miller46644c22007-10-16 01:24:16 -07002561 }
2562 }
David S. Miller2856cc22012-08-15 00:37:29 -07002563
David S. Millerc06240c2014-09-24 21:20:14 -07002564 return 0;
David S. Miller2856cc22012-08-15 00:37:29 -07002565}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -08002566
Johannes Weiner0aad8182013-04-29 15:07:50 -07002567void vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -08002568{
2569}
David Miller46644c22007-10-16 01:24:16 -07002570#endif /* CONFIG_SPARSEMEM_VMEMMAP */
2571
David S. Millerc4bce902006-02-11 21:57:54 -08002572static void prot_init_common(unsigned long page_none,
2573 unsigned long page_shared,
2574 unsigned long page_copy,
2575 unsigned long page_readonly,
2576 unsigned long page_exec_bit)
2577{
2578 PAGE_COPY = __pgprot(page_copy);
David S. Miller0f159522006-02-18 12:43:16 -08002579 PAGE_SHARED = __pgprot(page_shared);
David S. Millerc4bce902006-02-11 21:57:54 -08002580
2581 protection_map[0x0] = __pgprot(page_none);
2582 protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit);
2583 protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit);
2584 protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit);
2585 protection_map[0x4] = __pgprot(page_readonly);
2586 protection_map[0x5] = __pgprot(page_readonly);
2587 protection_map[0x6] = __pgprot(page_copy);
2588 protection_map[0x7] = __pgprot(page_copy);
2589 protection_map[0x8] = __pgprot(page_none);
2590 protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit);
2591 protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit);
2592 protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit);
2593 protection_map[0xc] = __pgprot(page_readonly);
2594 protection_map[0xd] = __pgprot(page_readonly);
2595 protection_map[0xe] = __pgprot(page_shared);
2596 protection_map[0xf] = __pgprot(page_shared);
2597}
2598
2599static void __init sun4u_pgprot_init(void)
2600{
2601 unsigned long page_none, page_shared, page_copy, page_readonly;
2602 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002603 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002604
2605 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2606 _PAGE_CACHE_4U | _PAGE_P_4U |
2607 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2608 _PAGE_EXEC_4U);
2609 PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2610 _PAGE_CACHE_4U | _PAGE_P_4U |
2611 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2612 _PAGE_EXEC_4U | _PAGE_L_4U);
David S. Millerc4bce902006-02-11 21:57:54 -08002613
2614 _PAGE_IE = _PAGE_IE_4U;
2615 _PAGE_E = _PAGE_E_4U;
2616 _PAGE_CACHE = _PAGE_CACHE_4U;
2617
2618 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
2619 __ACCESS_BITS_4U | _PAGE_E_4U);
2620
David S. Millerd1acb422007-03-16 17:20:28 -07002621#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002622 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002623#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002624 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
David S. Miller922631b2013-09-18 12:00:00 -07002625 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002626#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002627 kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U |
2628 _PAGE_P_4U | _PAGE_W_4U);
2629
David S. Miller4f93d212012-09-06 18:13:58 -07002630 for (i = 1; i < 4; i++)
2631 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Millerc4bce902006-02-11 21:57:54 -08002632
David S. Millerc4bce902006-02-11 21:57:54 -08002633 _PAGE_ALL_SZ_BITS = (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U |
2634 _PAGE_SZ64K_4U | _PAGE_SZ8K_4U |
2635 _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U);
2636
2637
2638 page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U;
2639 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2640 __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U);
2641 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2642 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2643 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2644 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2645
2646 page_exec_bit = _PAGE_EXEC_4U;
2647
2648 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2649 page_exec_bit);
2650}
2651
2652static void __init sun4v_pgprot_init(void)
2653{
2654 unsigned long page_none, page_shared, page_copy, page_readonly;
2655 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002656 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002657
2658 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
Khalid Aziz494e5b62015-05-27 10:00:46 -06002659 page_cache4v_flag | _PAGE_P_4V |
David S. Millerc4bce902006-02-11 21:57:54 -08002660 __ACCESS_BITS_4V | __DIRTY_BITS_4V |
2661 _PAGE_EXEC_4V);
2662 PAGE_KERNEL_LOCKED = PAGE_KERNEL;
David S. Millerc4bce902006-02-11 21:57:54 -08002663
2664 _PAGE_IE = _PAGE_IE_4V;
2665 _PAGE_E = _PAGE_E_4V;
Khalid Aziz494e5b62015-05-27 10:00:46 -06002666 _PAGE_CACHE = page_cache4v_flag;
David S. Millerc4bce902006-02-11 21:57:54 -08002667
David S. Millerd1acb422007-03-16 17:20:28 -07002668#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002669 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002670#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002671 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07002672 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002673#endif
Khalid Aziz494e5b62015-05-27 10:00:46 -06002674 kern_linear_pte_xor[0] |= (page_cache4v_flag | _PAGE_P_4V |
2675 _PAGE_W_4V);
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002676
David S. Millerc69ad0a2012-09-06 20:35:36 -07002677 for (i = 1; i < 4; i++)
2678 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Miller4f93d212012-09-06 18:13:58 -07002679
David S. Millerc4bce902006-02-11 21:57:54 -08002680 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
2681 __ACCESS_BITS_4V | _PAGE_E_4V);
2682
David S. Millerc4bce902006-02-11 21:57:54 -08002683 _PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V |
2684 _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V |
2685 _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V |
2686 _PAGE_SZ64K_4V | _PAGE_SZ8K_4V);
2687
Khalid Aziz494e5b62015-05-27 10:00:46 -06002688 page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | page_cache4v_flag;
2689 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | page_cache4v_flag |
David S. Millerc4bce902006-02-11 21:57:54 -08002690 __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V);
Khalid Aziz494e5b62015-05-27 10:00:46 -06002691 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | page_cache4v_flag |
David S. Millerc4bce902006-02-11 21:57:54 -08002692 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
Khalid Aziz494e5b62015-05-27 10:00:46 -06002693 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | page_cache4v_flag |
David S. Millerc4bce902006-02-11 21:57:54 -08002694 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
2695
2696 page_exec_bit = _PAGE_EXEC_4V;
2697
2698 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2699 page_exec_bit);
2700}
2701
2702unsigned long pte_sz_bits(unsigned long sz)
2703{
2704 if (tlb_type == hypervisor) {
2705 switch (sz) {
2706 case 8 * 1024:
2707 default:
2708 return _PAGE_SZ8K_4V;
2709 case 64 * 1024:
2710 return _PAGE_SZ64K_4V;
2711 case 512 * 1024:
2712 return _PAGE_SZ512K_4V;
2713 case 4 * 1024 * 1024:
2714 return _PAGE_SZ4MB_4V;
Joe Perches6cb79b32011-06-03 14:45:23 +00002715 }
David S. Millerc4bce902006-02-11 21:57:54 -08002716 } else {
2717 switch (sz) {
2718 case 8 * 1024:
2719 default:
2720 return _PAGE_SZ8K_4U;
2721 case 64 * 1024:
2722 return _PAGE_SZ64K_4U;
2723 case 512 * 1024:
2724 return _PAGE_SZ512K_4U;
2725 case 4 * 1024 * 1024:
2726 return _PAGE_SZ4MB_4U;
Joe Perches6cb79b32011-06-03 14:45:23 +00002727 }
David S. Millerc4bce902006-02-11 21:57:54 -08002728 }
2729}
2730
2731pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size)
2732{
2733 pte_t pte;
David S. Millercf627152006-02-12 21:10:07 -08002734
2735 pte_val(pte) = page | pgprot_val(pgprot_noncached(prot));
David S. Millerc4bce902006-02-11 21:57:54 -08002736 pte_val(pte) |= (((unsigned long)space) << 32);
2737 pte_val(pte) |= pte_sz_bits(page_size);
David S. Millercf627152006-02-12 21:10:07 -08002738
David S. Millerc4bce902006-02-11 21:57:54 -08002739 return pte;
2740}
2741
David S. Millerc4bce902006-02-11 21:57:54 -08002742static unsigned long kern_large_tte(unsigned long paddr)
2743{
2744 unsigned long val;
2745
2746 val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2747 _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U |
2748 _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U);
2749 if (tlb_type == hypervisor)
2750 val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
Khalid Aziz494e5b62015-05-27 10:00:46 -06002751 page_cache4v_flag | _PAGE_P_4V |
David S. Millerc4bce902006-02-11 21:57:54 -08002752 _PAGE_EXEC_4V | _PAGE_W_4V);
2753
2754 return val | paddr;
2755}
2756
David S. Millerc4bce902006-02-11 21:57:54 -08002757/* If not locked, zap it. */
2758void __flush_tlb_all(void)
2759{
2760 unsigned long pstate;
2761 int i;
2762
2763 __asm__ __volatile__("flushw\n\t"
2764 "rdpr %%pstate, %0\n\t"
2765 "wrpr %0, %1, %%pstate"
2766 : "=r" (pstate)
2767 : "i" (PSTATE_IE));
David S. Miller8f3614532007-12-13 06:13:38 -08002768 if (tlb_type == hypervisor) {
2769 sun4v_mmu_demap_all();
2770 } else if (tlb_type == spitfire) {
David S. Millerc4bce902006-02-11 21:57:54 -08002771 for (i = 0; i < 64; i++) {
2772 /* Spitfire Errata #32 workaround */
2773 /* NOTE: Always runs on spitfire, so no
2774 * cheetah+ page size encodings.
2775 */
2776 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2777 "flush %%g6"
2778 : /* No outputs */
2779 : "r" (0),
2780 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2781
2782 if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) {
2783 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2784 "membar #Sync"
2785 : /* no outputs */
2786 : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
2787 spitfire_put_dtlb_data(i, 0x0UL);
2788 }
2789
2790 /* Spitfire Errata #32 workaround */
2791 /* NOTE: Always runs on spitfire, so no
2792 * cheetah+ page size encodings.
2793 */
2794 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2795 "flush %%g6"
2796 : /* No outputs */
2797 : "r" (0),
2798 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2799
2800 if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) {
2801 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2802 "membar #Sync"
2803 : /* no outputs */
2804 : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
2805 spitfire_put_itlb_data(i, 0x0UL);
2806 }
2807 }
2808 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
2809 cheetah_flush_dtlb_all();
2810 cheetah_flush_itlb_all();
2811 }
2812 __asm__ __volatile__("wrpr %0, 0, %%pstate"
2813 : : "r" (pstate));
2814}
David Millerc460bec2012-10-08 16:34:22 -07002815
David Millerc460bec2012-10-08 16:34:22 -07002816pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
2817 unsigned long address)
2818{
Michal Hocko32d6bd92016-06-24 14:48:47 -07002819 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO);
David S. Miller37b3a8f2013-09-25 13:48:49 -07002820 pte_t *pte = NULL;
David Millerc460bec2012-10-08 16:34:22 -07002821
David Millerc460bec2012-10-08 16:34:22 -07002822 if (page)
2823 pte = (pte_t *) page_address(page);
2824
2825 return pte;
2826}
2827
2828pgtable_t pte_alloc_one(struct mm_struct *mm,
2829 unsigned long address)
2830{
Michal Hocko32d6bd92016-06-24 14:48:47 -07002831 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO);
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002832 if (!page)
2833 return NULL;
2834 if (!pgtable_page_ctor(page)) {
2835 free_hot_cold_page(page, 0);
2836 return NULL;
David Millerc460bec2012-10-08 16:34:22 -07002837 }
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002838 return (pte_t *) page_address(page);
David Millerc460bec2012-10-08 16:34:22 -07002839}
2840
2841void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
2842{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002843 free_page((unsigned long)pte);
David Millerc460bec2012-10-08 16:34:22 -07002844}
2845
2846static void __pte_free(pgtable_t pte)
2847{
2848 struct page *page = virt_to_page(pte);
David S. Miller37b3a8f2013-09-25 13:48:49 -07002849
2850 pgtable_page_dtor(page);
2851 __free_page(page);
David Millerc460bec2012-10-08 16:34:22 -07002852}
2853
2854void pte_free(struct mm_struct *mm, pgtable_t pte)
2855{
2856 __pte_free(pte);
2857}
2858
2859void pgtable_free(void *table, bool is_page)
2860{
2861 if (is_page)
2862 __pte_free(table);
2863 else
2864 kmem_cache_free(pgtable_cache, table);
2865}
David Miller9e695d22012-10-08 16:34:29 -07002866
2867#ifdef CONFIG_TRANSPARENT_HUGEPAGE
David Miller9e695d22012-10-08 16:34:29 -07002868void update_mmu_cache_pmd(struct vm_area_struct *vma, unsigned long addr,
2869 pmd_t *pmd)
2870{
2871 unsigned long pte, flags;
2872 struct mm_struct *mm;
2873 pmd_t entry = *pmd;
David Miller9e695d22012-10-08 16:34:29 -07002874
2875 if (!pmd_large(entry) || !pmd_young(entry))
2876 return;
2877
David S. Millera7b94032013-09-26 13:45:15 -07002878 pte = pmd_val(entry);
David Miller9e695d22012-10-08 16:34:29 -07002879
David S. Miller18f38132014-08-04 16:34:01 -07002880 /* Don't insert a non-valid PMD into the TSB, we'll deadlock. */
2881 if (!(pte & _PAGE_VALID))
2882 return;
2883
David S. Miller37b3a8f2013-09-25 13:48:49 -07002884 /* We are fabricating 8MB pages using 4MB real hw pages. */
2885 pte |= (addr & (1UL << REAL_HPAGE_SHIFT));
David Miller9e695d22012-10-08 16:34:29 -07002886
2887 mm = vma->vm_mm;
2888
2889 spin_lock_irqsave(&mm->context.lock, flags);
2890
2891 if (mm->context.tsb_block[MM_TSB_HUGE].tsb != NULL)
David S. Miller37b3a8f2013-09-25 13:48:49 -07002892 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David Miller9e695d22012-10-08 16:34:29 -07002893 addr, pte);
2894
2895 spin_unlock_irqrestore(&mm->context.lock, flags);
2896}
2897#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
2898
2899#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
2900static void context_reload(void *__data)
2901{
2902 struct mm_struct *mm = __data;
2903
2904 if (mm == current->mm)
2905 load_secondary_context(mm);
2906}
2907
David S. Miller0fbebed2013-02-19 22:34:10 -08002908void hugetlb_setup(struct pt_regs *regs)
David Miller9e695d22012-10-08 16:34:29 -07002909{
David S. Miller0fbebed2013-02-19 22:34:10 -08002910 struct mm_struct *mm = current->mm;
2911 struct tsb_config *tp;
David Miller9e695d22012-10-08 16:34:29 -07002912
David Hildenbrand70ffdb92015-05-11 17:52:11 +02002913 if (faulthandler_disabled() || !mm) {
David S. Miller0fbebed2013-02-19 22:34:10 -08002914 const struct exception_table_entry *entry;
David Miller9e695d22012-10-08 16:34:29 -07002915
David S. Miller0fbebed2013-02-19 22:34:10 -08002916 entry = search_exception_tables(regs->tpc);
2917 if (entry) {
2918 regs->tpc = entry->fixup;
2919 regs->tnpc = regs->tpc + 4;
2920 return;
2921 }
2922 pr_alert("Unexpected HugeTLB setup in atomic context.\n");
2923 die_if_kernel("HugeTSB in atomic", regs);
2924 }
2925
2926 tp = &mm->context.tsb_block[MM_TSB_HUGE];
2927 if (likely(tp->tsb == NULL))
2928 tsb_grow(mm, MM_TSB_HUGE, 0);
2929
David Miller9e695d22012-10-08 16:34:29 -07002930 tsb_context_switch(mm);
2931 smp_tsb_sync(mm);
2932
2933 /* On UltraSPARC-III+ and later, configure the second half of
2934 * the Data-TLB for huge pages.
2935 */
2936 if (tlb_type == cheetah_plus) {
David S. Miller9ea46abe2016-05-25 12:51:20 -07002937 bool need_context_reload = false;
David Miller9e695d22012-10-08 16:34:29 -07002938 unsigned long ctx;
2939
David S. Miller9ea46abe2016-05-25 12:51:20 -07002940 spin_lock_irq(&ctx_alloc_lock);
David Miller9e695d22012-10-08 16:34:29 -07002941 ctx = mm->context.sparc64_ctx_val;
2942 ctx &= ~CTX_PGSZ_MASK;
2943 ctx |= CTX_PGSZ_BASE << CTX_PGSZ0_SHIFT;
2944 ctx |= CTX_PGSZ_HUGE << CTX_PGSZ1_SHIFT;
2945
2946 if (ctx != mm->context.sparc64_ctx_val) {
2947 /* When changing the page size fields, we
2948 * must perform a context flush so that no
2949 * stale entries match. This flush must
2950 * occur with the original context register
2951 * settings.
2952 */
2953 do_flush_tlb_mm(mm);
2954
2955 /* Reload the context register of all processors
2956 * also executing in this address space.
2957 */
2958 mm->context.sparc64_ctx_val = ctx;
David S. Miller9ea46abe2016-05-25 12:51:20 -07002959 need_context_reload = true;
David Miller9e695d22012-10-08 16:34:29 -07002960 }
David S. Miller9ea46abe2016-05-25 12:51:20 -07002961 spin_unlock_irq(&ctx_alloc_lock);
2962
2963 if (need_context_reload)
2964 on_each_cpu(context_reload, mm, 0);
David Miller9e695d22012-10-08 16:34:29 -07002965 }
2966}
2967#endif
bob piccof6d4fb52014-03-03 11:54:42 -05002968
2969static struct resource code_resource = {
2970 .name = "Kernel code",
Toshi Kani35d98e92016-01-26 21:57:22 +01002971 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
bob piccof6d4fb52014-03-03 11:54:42 -05002972};
2973
2974static struct resource data_resource = {
2975 .name = "Kernel data",
Toshi Kani35d98e92016-01-26 21:57:22 +01002976 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
bob piccof6d4fb52014-03-03 11:54:42 -05002977};
2978
2979static struct resource bss_resource = {
2980 .name = "Kernel bss",
Toshi Kani35d98e92016-01-26 21:57:22 +01002981 .flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
bob piccof6d4fb52014-03-03 11:54:42 -05002982};
2983
2984static inline resource_size_t compute_kern_paddr(void *addr)
2985{
2986 return (resource_size_t) (addr - KERNBASE + kern_base);
2987}
2988
2989static void __init kernel_lds_init(void)
2990{
2991 code_resource.start = compute_kern_paddr(_text);
2992 code_resource.end = compute_kern_paddr(_etext - 1);
2993 data_resource.start = compute_kern_paddr(_etext);
2994 data_resource.end = compute_kern_paddr(_edata - 1);
2995 bss_resource.start = compute_kern_paddr(__bss_start);
2996 bss_resource.end = compute_kern_paddr(_end - 1);
2997}
2998
2999static int __init report_memory(void)
3000{
3001 int i;
3002 struct resource *res;
3003
3004 kernel_lds_init();
3005
3006 for (i = 0; i < pavail_ents; i++) {
3007 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
3008
3009 if (!res) {
3010 pr_warn("Failed to allocate source.\n");
3011 break;
3012 }
3013
3014 res->name = "System RAM";
3015 res->start = pavail[i].phys_addr;
3016 res->end = pavail[i].phys_addr + pavail[i].reg_size - 1;
Toshi Kani35d98e92016-01-26 21:57:22 +01003017 res->flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM;
bob piccof6d4fb52014-03-03 11:54:42 -05003018
3019 if (insert_resource(&iomem_resource, res) < 0) {
3020 pr_warn("Resource insertion failed.\n");
3021 break;
3022 }
3023
3024 insert_resource(res, &code_resource);
3025 insert_resource(res, &data_resource);
3026 insert_resource(res, &bss_resource);
3027 }
3028
3029 return 0;
3030}
David S. Miller3c081582015-03-18 19:15:28 -07003031arch_initcall(report_memory);
David S. Millere9011d02014-08-05 18:57:18 -07003032
David S. Miller4ca9a232014-08-04 20:07:37 -07003033#ifdef CONFIG_SMP
3034#define do_flush_tlb_kernel_range smp_flush_tlb_kernel_range
3035#else
3036#define do_flush_tlb_kernel_range __flush_tlb_kernel_range
3037#endif
3038
3039void flush_tlb_kernel_range(unsigned long start, unsigned long end)
3040{
3041 if (start < HI_OBP_ADDRESS && end > LOW_OBP_ADDRESS) {
3042 if (start < LOW_OBP_ADDRESS) {
3043 flush_tsb_kernel_range(start, LOW_OBP_ADDRESS);
3044 do_flush_tlb_kernel_range(start, LOW_OBP_ADDRESS);
3045 }
3046 if (end > HI_OBP_ADDRESS) {
David S. Miller473ad7f2014-10-04 21:05:14 -07003047 flush_tsb_kernel_range(HI_OBP_ADDRESS, end);
3048 do_flush_tlb_kernel_range(HI_OBP_ADDRESS, end);
David S. Miller4ca9a232014-08-04 20:07:37 -07003049 }
3050 } else {
3051 flush_tsb_kernel_range(start, end);
3052 do_flush_tlb_kernel_range(start, end);
3053 }
3054}