blob: c241c57233735fe8aa5b801c99e79fa9fda878f9 [file] [log] [blame]
Adrian Bunkb00dc832008-05-19 16:52:27 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * arch/sparc64/mm/init.c
3 *
4 * Copyright (C) 1996-1999 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1997-1999 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6 */
7
David S. Millerc4bce902006-02-11 21:57:54 -08008#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/sched.h>
11#include <linux/string.h>
12#include <linux/init.h>
13#include <linux/bootmem.h>
14#include <linux/mm.h>
15#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/initrd.h>
17#include <linux/swap.h>
18#include <linux/pagemap.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070019#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/fs.h>
21#include <linux/seq_file.h>
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -070022#include <linux/kprobes.h>
David S. Miller1ac4f5e2005-09-21 21:49:32 -070023#include <linux/cache.h>
David S. Miller13edad72005-09-29 17:58:26 -070024#include <linux/sort.h>
bob piccof6d4fb52014-03-03 11:54:42 -050025#include <linux/ioport.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070026#include <linux/percpu.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100027#include <linux/memblock.h>
David S. Miller919ee672008-04-23 05:40:25 -070028#include <linux/mmzone.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/head.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/page.h>
33#include <asm/pgalloc.h>
34#include <asm/pgtable.h>
35#include <asm/oplib.h>
36#include <asm/iommu.h>
37#include <asm/io.h>
38#include <asm/uaccess.h>
39#include <asm/mmu_context.h>
40#include <asm/tlbflush.h>
41#include <asm/dma.h>
42#include <asm/starfire.h>
43#include <asm/tlb.h>
44#include <asm/spitfire.h>
45#include <asm/sections.h>
David S. Miller517af332006-02-01 15:55:21 -080046#include <asm/tsb.h>
David S. Miller481295f2006-02-07 21:51:08 -080047#include <asm/hypervisor.h>
David S. Miller372b07b2006-06-21 15:35:28 -070048#include <asm/prom.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070049#include <asm/mdesc.h>
David S. Miller3d5ae6b2008-03-25 21:51:40 -070050#include <asm/cpudata.h>
Sam Ravnborg59dec132014-05-16 23:26:07 +020051#include <asm/setup.h>
David S. Miller4f70f7a2008-08-12 18:33:56 -070052#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Sam Ravnborg27137e52008-11-16 20:08:45 -080054#include "init_64.h"
David S. Miller9cc3a1a2006-02-21 20:51:13 -080055
David S. Miller4f93d212012-09-06 18:13:58 -070056unsigned long kern_linear_pte_xor[4] __read_mostly;
David S. Miller9cc3a1a2006-02-21 20:51:13 -080057
David S. Miller4f93d212012-09-06 18:13:58 -070058/* A bitmap, two bits for every 256MB of physical memory. These two
59 * bits determine what page size we use for kernel linear
60 * translations. They form an index into kern_linear_pte_xor[]. The
61 * value in the indexed slot is XOR'd with the TLB miss virtual
62 * address to form the resulting TTE. The mapping is:
63 *
64 * 0 ==> 4MB
65 * 1 ==> 256MB
66 * 2 ==> 2GB
67 * 3 ==> 16GB
68 *
69 * All sun4v chips support 256MB pages. Only SPARC-T4 and later
70 * support 2GB pages, and hopefully future cpus will support the 16GB
71 * pages as well. For slots 2 and 3, we encode a 256MB TTE xor there
72 * if these larger page sizes are not supported by the cpu.
73 *
74 * It would be nice to determine this from the machine description
75 * 'cpu' properties, but we need to have this table setup before the
76 * MDESC is initialized.
David S. Miller9cc3a1a2006-02-21 20:51:13 -080077 */
78unsigned long kpte_linear_bitmap[KPTE_BITMAP_BYTES / sizeof(unsigned long)];
79
David S. Millerd1acb422007-03-16 17:20:28 -070080#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller4f93d212012-09-06 18:13:58 -070081/* A special kernel TSB for 4MB, 256MB, 2GB and 16GB linear mappings.
82 * Space is allocated for this right after the trap table in
83 * arch/sparc64/kernel/head.S
David S. Miller2d9e2762007-05-29 01:58:31 -070084 */
85extern struct tsb swapper_4m_tsb[KERNEL_TSB4M_NENTRIES];
David S. Millerd1acb422007-03-16 17:20:28 -070086#endif
David S. Millerd7744a02006-02-21 22:31:11 -080087
David S. Millerce33fdc2012-09-06 19:01:25 -070088static unsigned long cpu_pgsz_mask;
89
David S. Miller13edad72005-09-29 17:58:26 -070090#define MAX_BANKS 32
David S. Miller10147572005-09-28 21:46:43 -070091
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -080092static struct linux_prom64_registers pavail[MAX_BANKS];
93static int pavail_ents;
David S. Miller10147572005-09-28 21:46:43 -070094
David S. Miller13edad72005-09-29 17:58:26 -070095static int cmp_p64(const void *a, const void *b)
96{
97 const struct linux_prom64_registers *x = a, *y = b;
98
99 if (x->phys_addr > y->phys_addr)
100 return 1;
101 if (x->phys_addr < y->phys_addr)
102 return -1;
103 return 0;
104}
105
106static void __init read_obp_memory(const char *property,
107 struct linux_prom64_registers *regs,
108 int *num_ents)
109{
Andres Salomon8d125562010-10-08 14:18:11 -0700110 phandle node = prom_finddevice("/memory");
David S. Miller13edad72005-09-29 17:58:26 -0700111 int prop_size = prom_getproplen(node, property);
112 int ents, ret, i;
113
114 ents = prop_size / sizeof(struct linux_prom64_registers);
115 if (ents > MAX_BANKS) {
116 prom_printf("The machine has more %s property entries than "
117 "this kernel can support (%d).\n",
118 property, MAX_BANKS);
119 prom_halt();
120 }
121
122 ret = prom_getproperty(node, property, (char *) regs, prop_size);
123 if (ret == -1) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000124 prom_printf("Couldn't get %s property from /memory.\n",
125 property);
David S. Miller13edad72005-09-29 17:58:26 -0700126 prom_halt();
127 }
128
David S. Miller13edad72005-09-29 17:58:26 -0700129 /* Sanitize what we got from the firmware, by page aligning
130 * everything.
131 */
132 for (i = 0; i < ents; i++) {
133 unsigned long base, size;
134
135 base = regs[i].phys_addr;
136 size = regs[i].reg_size;
137
138 size &= PAGE_MASK;
139 if (base & ~PAGE_MASK) {
140 unsigned long new_base = PAGE_ALIGN(base);
141
142 size -= new_base - base;
143 if ((long) size < 0L)
144 size = 0UL;
145 base = new_base;
146 }
David S. Miller0015d3d2007-03-15 00:06:34 -0700147 if (size == 0UL) {
148 /* If it is empty, simply get rid of it.
149 * This simplifies the logic of the other
150 * functions that process these arrays.
151 */
152 memmove(&regs[i], &regs[i + 1],
153 (ents - i - 1) * sizeof(regs[0]));
154 i--;
155 ents--;
156 continue;
157 }
David S. Miller13edad72005-09-29 17:58:26 -0700158 regs[i].phys_addr = base;
159 regs[i].reg_size = size;
160 }
David S. Miller486ad102006-06-22 00:00:00 -0700161
David S. Miller486ad102006-06-22 00:00:00 -0700162 *num_ents = ents;
163
David S. Millerc9c10832005-10-12 12:22:46 -0700164 sort(regs, ents, sizeof(struct linux_prom64_registers),
David S. Miller13edad72005-09-29 17:58:26 -0700165 cmp_p64, NULL);
166}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
David S. Millerd8ed1d42009-08-25 16:47:46 -0700168unsigned long sparc64_valid_addr_bitmap[VALID_ADDR_BITMAP_BYTES /
169 sizeof(unsigned long)];
Sam Ravnborg917c3662009-01-08 16:58:20 -0800170EXPORT_SYMBOL(sparc64_valid_addr_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
David S. Millerd1112012006-03-08 02:16:07 -0800172/* Kernel physical address base and size in bytes. */
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700173unsigned long kern_base __read_mostly;
174unsigned long kern_size __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* Initial ramdisk setup */
177extern unsigned long sparc_ramdisk_image64;
178extern unsigned int sparc_ramdisk_image;
179extern unsigned int sparc_ramdisk_size;
180
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700181struct page *mem_map_zero __read_mostly;
Aneesh Kumar K.V35802c02008-04-29 08:11:12 -0400182EXPORT_SYMBOL(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
David S. Miller0835ae02005-10-04 15:23:20 -0700184unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly;
185
186unsigned long sparc64_kern_pri_context __read_mostly;
187unsigned long sparc64_kern_pri_nuc_bits __read_mostly;
188unsigned long sparc64_kern_sec_context __read_mostly;
189
David S. Miller64658742008-03-21 17:01:38 -0700190int num_kernel_image_mappings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#ifdef CONFIG_DEBUG_DCFLUSH
193atomic_t dcpage_flushes = ATOMIC_INIT(0);
194#ifdef CONFIG_SMP
195atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
196#endif
197#endif
198
David S. Miller7a591cf2006-02-26 19:44:50 -0800199inline void flush_dcache_page_impl(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
David S. Miller7a591cf2006-02-26 19:44:50 -0800201 BUG_ON(tlb_type == hypervisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#ifdef CONFIG_DEBUG_DCFLUSH
203 atomic_inc(&dcpage_flushes);
204#endif
205
206#ifdef DCACHE_ALIASING_POSSIBLE
207 __flush_dcache_page(page_address(page),
208 ((tlb_type == spitfire) &&
209 page_mapping(page) != NULL));
210#else
211 if (page_mapping(page) != NULL &&
212 tlb_type == spitfire)
213 __flush_icache_page(__pa(page_address(page)));
214#endif
215}
216
217#define PG_dcache_dirty PG_arch_1
David S. Miller22adb352007-05-26 01:14:43 -0700218#define PG_dcache_cpu_shift 32UL
219#define PG_dcache_cpu_mask \
220 ((1UL<<ilog2(roundup_pow_of_two(NR_CPUS)))-1UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222#define dcache_dirty_cpu(page) \
David S. Miller48b0e542005-07-27 16:08:44 -0700223 (((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
David S. Millerd979f172007-10-27 00:13:04 -0700225static inline void set_dcache_dirty(struct page *page, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 unsigned long mask = this_cpu;
David S. Miller48b0e542005-07-27 16:08:44 -0700228 unsigned long non_cpu_bits;
229
230 non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift);
231 mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 __asm__ __volatile__("1:\n\t"
234 "ldx [%2], %%g7\n\t"
235 "and %%g7, %1, %%g1\n\t"
236 "or %%g1, %0, %%g1\n\t"
237 "casx [%2], %%g7, %%g1\n\t"
238 "cmp %%g7, %%g1\n\t"
239 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700240 " nop"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 : /* no outputs */
242 : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
243 : "g1", "g7");
244}
245
David S. Millerd979f172007-10-27 00:13:04 -0700246static inline void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 unsigned long mask = (1UL << PG_dcache_dirty);
249
250 __asm__ __volatile__("! test_and_clear_dcache_dirty\n"
251 "1:\n\t"
252 "ldx [%2], %%g7\n\t"
David S. Miller48b0e542005-07-27 16:08:44 -0700253 "srlx %%g7, %4, %%g1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 "and %%g1, %3, %%g1\n\t"
255 "cmp %%g1, %0\n\t"
256 "bne,pn %%icc, 2f\n\t"
257 " andn %%g7, %1, %%g1\n\t"
258 "casx [%2], %%g7, %%g1\n\t"
259 "cmp %%g7, %%g1\n\t"
260 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700261 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 "2:"
263 : /* no outputs */
264 : "r" (cpu), "r" (mask), "r" (&page->flags),
David S. Miller48b0e542005-07-27 16:08:44 -0700265 "i" (PG_dcache_cpu_mask),
266 "i" (PG_dcache_cpu_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 : "g1", "g7");
268}
269
David S. Miller517af332006-02-01 15:55:21 -0800270static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte)
271{
272 unsigned long tsb_addr = (unsigned long) ent;
273
David S. Miller3b3ab2e2006-02-17 09:54:42 -0800274 if (tlb_type == cheetah_plus || tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -0800275 tsb_addr = __pa(tsb_addr);
276
277 __tsb_insert(tsb_addr, tag, pte);
278}
279
David S. Millerc4bce902006-02-11 21:57:54 -0800280unsigned long _PAGE_ALL_SZ_BITS __read_mostly;
David S. Millerc4bce902006-02-11 21:57:54 -0800281
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800282static void flush_dcache(unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800284 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800286 page = pfn_to_page(pfn);
David S. Miller1a78ced2009-10-12 03:20:57 -0700287 if (page) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800288 unsigned long pg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800290 pg_flags = page->flags;
291 if (pg_flags & (1UL << PG_dcache_dirty)) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800292 int cpu = ((pg_flags >> PG_dcache_cpu_shift) &
293 PG_dcache_cpu_mask);
294 int this_cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
David S. Miller7a591cf2006-02-26 19:44:50 -0800296 /* This is just to optimize away some function calls
297 * in the SMP case.
298 */
299 if (cpu == this_cpu)
300 flush_dcache_page_impl(page);
301 else
302 smp_flush_dcache_page_impl(page, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
David S. Miller7a591cf2006-02-26 19:44:50 -0800304 clear_dcache_dirty_cpu(page, cpu);
305
306 put_cpu();
307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800309}
310
David Miller9e695d22012-10-08 16:34:29 -0700311/* mm->context.lock must be held */
312static void __update_mmu_tsb_insert(struct mm_struct *mm, unsigned long tsb_index,
313 unsigned long tsb_hash_shift, unsigned long address,
314 unsigned long tte)
315{
316 struct tsb *tsb = mm->context.tsb_block[tsb_index].tsb;
317 unsigned long tag;
318
David S. Millerbcd896b2013-02-19 13:20:08 -0800319 if (unlikely(!tsb))
320 return;
321
David Miller9e695d22012-10-08 16:34:29 -0700322 tsb += ((address >> tsb_hash_shift) &
323 (mm->context.tsb_block[tsb_index].tsb_nentries - 1UL));
324 tag = (address >> 22UL);
325 tsb_insert(tsb, tag, tte);
326}
327
David S. Millerbcd896b2013-02-19 13:20:08 -0800328#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
329static inline bool is_hugetlb_pte(pte_t pte)
330{
331 if ((tlb_type == hypervisor &&
332 (pte_val(pte) & _PAGE_SZALL_4V) == _PAGE_SZHUGE_4V) ||
333 (tlb_type != hypervisor &&
334 (pte_val(pte) & _PAGE_SZALL_4U) == _PAGE_SZHUGE_4U))
335 return true;
336 return false;
337}
338#endif
339
Russell King4b3073e2009-12-18 16:40:18 +0000340void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t *ptep)
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800341{
342 struct mm_struct *mm;
David S. Millerbcd896b2013-02-19 13:20:08 -0800343 unsigned long flags;
Russell King4b3073e2009-12-18 16:40:18 +0000344 pte_t pte = *ptep;
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800345
346 if (tlb_type != hypervisor) {
347 unsigned long pfn = pte_pfn(pte);
348
349 if (pfn_valid(pfn))
350 flush_dcache(pfn);
351 }
David S. Millerbd407912006-01-31 18:31:38 -0800352
353 mm = vma->vm_mm;
David S. Miller7a1ac522006-03-16 02:02:32 -0800354
David S. Miller18f38132014-08-04 16:34:01 -0700355 /* Don't insert a non-valid PTE into the TSB, we'll deadlock. */
356 if (!pte_accessible(mm, pte))
357 return;
358
David S. Miller7a1ac522006-03-16 02:02:32 -0800359 spin_lock_irqsave(&mm->context.lock, flags);
360
David Miller9e695d22012-10-08 16:34:29 -0700361#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
David S. Millerbcd896b2013-02-19 13:20:08 -0800362 if (mm->context.huge_pte_count && is_hugetlb_pte(pte))
David S. Miller37b3a8f2013-09-25 13:48:49 -0700363 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David S. Millerbcd896b2013-02-19 13:20:08 -0800364 address, pte_val(pte));
365 else
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800366#endif
David S. Millerbcd896b2013-02-19 13:20:08 -0800367 __update_mmu_tsb_insert(mm, MM_TSB_BASE, PAGE_SHIFT,
368 address, pte_val(pte));
David S. Miller7a1ac522006-03-16 02:02:32 -0800369
370 spin_unlock_irqrestore(&mm->context.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
373void flush_dcache_page(struct page *page)
374{
David S. Millera9546f52005-04-17 18:03:09 -0700375 struct address_space *mapping;
376 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
David S. Miller7a591cf2006-02-26 19:44:50 -0800378 if (tlb_type == hypervisor)
379 return;
380
David S. Millera9546f52005-04-17 18:03:09 -0700381 /* Do not bother with the expensive D-cache flush if it
382 * is merely the zero page. The 'bigcore' testcase in GDB
383 * causes this case to run millions of times.
384 */
385 if (page == ZERO_PAGE(0))
386 return;
387
388 this_cpu = get_cpu();
389
390 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (mapping && !mapping_mapped(mapping)) {
David S. Millera9546f52005-04-17 18:03:09 -0700392 int dirty = test_bit(PG_dcache_dirty, &page->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (dirty) {
David S. Millera9546f52005-04-17 18:03:09 -0700394 int dirty_cpu = dcache_dirty_cpu(page);
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (dirty_cpu == this_cpu)
397 goto out;
398 smp_flush_dcache_page_impl(page, dirty_cpu);
399 }
400 set_dcache_dirty(page, this_cpu);
401 } else {
402 /* We could delay the flush for the !page_mapping
403 * case too. But that case is for exec env/arg
404 * pages and those are %99 certainly going to get
405 * faulted into the tlb (and thus flushed) anyways.
406 */
407 flush_dcache_page_impl(page);
408 }
409
410out:
411 put_cpu();
412}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800413EXPORT_SYMBOL(flush_dcache_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700415void __kprobes flush_icache_range(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
David S. Millera43fe0e2006-02-04 03:10:53 -0800417 /* Cheetah and Hypervisor platform cpus have coherent I-cache. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (tlb_type == spitfire) {
419 unsigned long kaddr;
420
David S. Millera94aa252007-03-15 15:50:11 -0700421 /* This code only runs on Spitfire cpus so this is
422 * why we can assume _PAGE_PADDR_4U.
423 */
424 for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE) {
425 unsigned long paddr, mask = _PAGE_PADDR_4U;
426
427 if (kaddr >= PAGE_OFFSET)
428 paddr = kaddr & mask;
429 else {
430 pgd_t *pgdp = pgd_offset_k(kaddr);
431 pud_t *pudp = pud_offset(pgdp, kaddr);
432 pmd_t *pmdp = pmd_offset(pudp, kaddr);
433 pte_t *ptep = pte_offset_kernel(pmdp, kaddr);
434
435 paddr = pte_val(*ptep) & mask;
436 }
437 __flush_icache_page(paddr);
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800441EXPORT_SYMBOL(flush_icache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443void mmu_info(struct seq_file *m)
444{
David S. Millerce33fdc2012-09-06 19:01:25 -0700445 static const char *pgsz_strings[] = {
446 "8K", "64K", "512K", "4MB", "32MB",
447 "256MB", "2GB", "16GB",
448 };
449 int i, printed;
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (tlb_type == cheetah)
452 seq_printf(m, "MMU Type\t: Cheetah\n");
453 else if (tlb_type == cheetah_plus)
454 seq_printf(m, "MMU Type\t: Cheetah+\n");
455 else if (tlb_type == spitfire)
456 seq_printf(m, "MMU Type\t: Spitfire\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800457 else if (tlb_type == hypervisor)
458 seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 else
460 seq_printf(m, "MMU Type\t: ???\n");
461
David S. Millerce33fdc2012-09-06 19:01:25 -0700462 seq_printf(m, "MMU PGSZs\t: ");
463 printed = 0;
464 for (i = 0; i < ARRAY_SIZE(pgsz_strings); i++) {
465 if (cpu_pgsz_mask & (1UL << i)) {
466 seq_printf(m, "%s%s",
467 printed ? "," : "", pgsz_strings[i]);
468 printed++;
469 }
470 }
471 seq_putc(m, '\n');
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#ifdef CONFIG_DEBUG_DCFLUSH
474 seq_printf(m, "DCPageFlushes\t: %d\n",
475 atomic_read(&dcpage_flushes));
476#ifdef CONFIG_SMP
477 seq_printf(m, "DCPageFlushesXC\t: %d\n",
478 atomic_read(&dcpage_flushes_xcall));
479#endif /* CONFIG_SMP */
480#endif /* CONFIG_DEBUG_DCFLUSH */
481}
482
David S. Millera94aa252007-03-15 15:50:11 -0700483struct linux_prom_translation prom_trans[512] __read_mostly;
484unsigned int prom_trans_ents __read_mostly;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486unsigned long kern_locked_tte_data;
487
David S. Miller405599b2005-09-22 00:12:35 -0700488/* The obp translations are saved based on 8k pagesize, since obp can
489 * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS ->
David S. Miller74bf4312006-01-31 18:29:18 -0800490 * HI_OBP_ADDRESS range are handled in ktlb.S.
David S. Miller405599b2005-09-22 00:12:35 -0700491 */
David S. Miller5085b4a2005-09-22 00:45:41 -0700492static inline int in_obp_range(unsigned long vaddr)
493{
494 return (vaddr >= LOW_OBP_ADDRESS &&
495 vaddr < HI_OBP_ADDRESS);
496}
497
David S. Millerc9c10832005-10-12 12:22:46 -0700498static int cmp_ptrans(const void *a, const void *b)
David S. Miller405599b2005-09-22 00:12:35 -0700499{
David S. Millerc9c10832005-10-12 12:22:46 -0700500 const struct linux_prom_translation *x = a, *y = b;
David S. Miller405599b2005-09-22 00:12:35 -0700501
David S. Millerc9c10832005-10-12 12:22:46 -0700502 if (x->virt > y->virt)
503 return 1;
504 if (x->virt < y->virt)
505 return -1;
506 return 0;
David S. Miller405599b2005-09-22 00:12:35 -0700507}
508
David S. Millerc9c10832005-10-12 12:22:46 -0700509/* Read OBP translations property into 'prom_trans[]'. */
David S. Miller9ad98c52005-10-05 15:12:00 -0700510static void __init read_obp_translations(void)
David S. Miller405599b2005-09-22 00:12:35 -0700511{
David S. Millerc9c10832005-10-12 12:22:46 -0700512 int n, node, ents, first, last, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 node = prom_finddevice("/virtual-memory");
515 n = prom_getproplen(node, "translations");
David S. Miller405599b2005-09-22 00:12:35 -0700516 if (unlikely(n == 0 || n == -1)) {
David S. Millerb206fc42005-09-21 22:31:13 -0700517 prom_printf("prom_mappings: Couldn't get size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 prom_halt();
519 }
David S. Miller405599b2005-09-22 00:12:35 -0700520 if (unlikely(n > sizeof(prom_trans))) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000521 prom_printf("prom_mappings: Size %d is too big.\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 prom_halt();
523 }
David S. Miller405599b2005-09-22 00:12:35 -0700524
David S. Millerb206fc42005-09-21 22:31:13 -0700525 if ((n = prom_getproperty(node, "translations",
David S. Miller405599b2005-09-22 00:12:35 -0700526 (char *)&prom_trans[0],
527 sizeof(prom_trans))) == -1) {
David S. Millerb206fc42005-09-21 22:31:13 -0700528 prom_printf("prom_mappings: Couldn't get property.\n");
529 prom_halt();
530 }
David S. Miller9ad98c52005-10-05 15:12:00 -0700531
David S. Millerb206fc42005-09-21 22:31:13 -0700532 n = n / sizeof(struct linux_prom_translation);
David S. Miller9ad98c52005-10-05 15:12:00 -0700533
David S. Millerc9c10832005-10-12 12:22:46 -0700534 ents = n;
535
536 sort(prom_trans, ents, sizeof(struct linux_prom_translation),
537 cmp_ptrans, NULL);
538
539 /* Now kick out all the non-OBP entries. */
540 for (i = 0; i < ents; i++) {
541 if (in_obp_range(prom_trans[i].virt))
542 break;
543 }
544 first = i;
545 for (; i < ents; i++) {
546 if (!in_obp_range(prom_trans[i].virt))
547 break;
548 }
549 last = i;
550
551 for (i = 0; i < (last - first); i++) {
552 struct linux_prom_translation *src = &prom_trans[i + first];
553 struct linux_prom_translation *dest = &prom_trans[i];
554
555 *dest = *src;
556 }
557 for (; i < ents; i++) {
558 struct linux_prom_translation *dest = &prom_trans[i];
559 dest->virt = dest->size = dest->data = 0x0UL;
560 }
561
562 prom_trans_ents = last - first;
563
564 if (tlb_type == spitfire) {
565 /* Clear diag TTE bits. */
566 for (i = 0; i < prom_trans_ents; i++)
567 prom_trans[i].data &= ~0x0003fe0000000000UL;
568 }
David S. Millerf4142cb2011-09-29 12:18:59 -0700569
570 /* Force execute bit on. */
571 for (i = 0; i < prom_trans_ents; i++)
572 prom_trans[i].data |= (tlb_type == hypervisor ?
573 _PAGE_EXEC_4V : _PAGE_EXEC_4U);
David S. Miller405599b2005-09-22 00:12:35 -0700574}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
David S. Millerd82ace72006-02-09 02:52:44 -0800576static void __init hypervisor_tlb_lock(unsigned long vaddr,
577 unsigned long pte,
578 unsigned long mmu)
579{
David S. Miller7db35f32007-05-29 02:22:14 -0700580 unsigned long ret = sun4v_mmu_map_perm_addr(vaddr, 0, pte, mmu);
David S. Millerd82ace72006-02-09 02:52:44 -0800581
David S. Miller7db35f32007-05-29 02:22:14 -0700582 if (ret != 0) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000583 prom_printf("hypervisor_tlb_lock[%lx:%x:%lx:%lx]: "
David S. Miller7db35f32007-05-29 02:22:14 -0700584 "errors with %lx\n", vaddr, 0, pte, mmu, ret);
David S. Miller12e126a2006-02-17 14:40:30 -0800585 prom_halt();
586 }
David S. Millerd82ace72006-02-09 02:52:44 -0800587}
588
David S. Millerc4bce902006-02-11 21:57:54 -0800589static unsigned long kern_large_tte(unsigned long paddr);
590
David S. Miller898cf0e2005-09-23 11:59:44 -0700591static void __init remap_kernel(void)
David S. Miller405599b2005-09-22 00:12:35 -0700592{
593 unsigned long phys_page, tte_vaddr, tte_data;
David S. Miller64658742008-03-21 17:01:38 -0700594 int i, tlb_ent = sparc64_highest_locked_tlbent();
David S. Miller405599b2005-09-22 00:12:35 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 tte_vaddr = (unsigned long) KERNBASE;
David S. Miller0eef3312014-05-03 22:52:50 -0700597 phys_page = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
David S. Millerc4bce902006-02-11 21:57:54 -0800598 tte_data = kern_large_tte(phys_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 kern_locked_tte_data = tte_data;
601
David S. Millerd82ace72006-02-09 02:52:44 -0800602 /* Now lock us into the TLBs via Hypervisor or OBP. */
603 if (tlb_type == hypervisor) {
David S. Miller64658742008-03-21 17:01:38 -0700604 for (i = 0; i < num_kernel_image_mappings; i++) {
David S. Millerd82ace72006-02-09 02:52:44 -0800605 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
606 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
David S. Miller64658742008-03-21 17:01:38 -0700607 tte_vaddr += 0x400000;
608 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800609 }
610 } else {
David S. Miller64658742008-03-21 17:01:38 -0700611 for (i = 0; i < num_kernel_image_mappings; i++) {
612 prom_dtlb_load(tlb_ent - i, tte_data, tte_vaddr);
613 prom_itlb_load(tlb_ent - i, tte_data, tte_vaddr);
614 tte_vaddr += 0x400000;
615 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800616 }
David S. Miller64658742008-03-21 17:01:38 -0700617 sparc64_highest_unlocked_tlb_ent = tlb_ent - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
David S. Miller0835ae02005-10-04 15:23:20 -0700619 if (tlb_type == cheetah_plus) {
620 sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 |
621 CTX_CHEETAH_PLUS_NUC);
622 sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC;
623 sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0;
624 }
David S. Miller405599b2005-09-22 00:12:35 -0700625}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
David S. Miller405599b2005-09-22 00:12:35 -0700627
David S. Millerc9c10832005-10-12 12:22:46 -0700628static void __init inherit_prom_mappings(void)
David S. Miller9ad98c52005-10-05 15:12:00 -0700629{
David S. Miller405599b2005-09-22 00:12:35 -0700630 /* Now fixup OBP's idea about where we really are mapped. */
David S. Miller3c62a2d2008-02-17 23:22:50 -0800631 printk("Remapping the kernel... ");
David S. Miller405599b2005-09-22 00:12:35 -0700632 remap_kernel();
David S. Miller3c62a2d2008-02-17 23:22:50 -0800633 printk("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636void prom_world(int enter)
637{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!enter)
Al Virodff933d2012-09-26 01:21:14 -0400639 set_fs(get_fs());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
David S. Miller3487d1d2006-01-31 18:33:25 -0800641 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644void __flush_dcache_range(unsigned long start, unsigned long end)
645{
646 unsigned long va;
647
648 if (tlb_type == spitfire) {
649 int n = 0;
650
651 for (va = start; va < end; va += 32) {
652 spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
653 if (++n >= 512)
654 break;
655 }
David S. Millera43fe0e2006-02-04 03:10:53 -0800656 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 start = __pa(start);
658 end = __pa(end);
659 for (va = start; va < end; va += 32)
660 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
661 "membar #Sync"
662 : /* no outputs */
663 : "r" (va),
664 "i" (ASI_DCACHE_INVALIDATE));
665 }
666}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800667EXPORT_SYMBOL(__flush_dcache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
David S. Miller85f1e1f2007-03-15 17:51:26 -0700669/* get_new_mmu_context() uses "cache + 1". */
670DEFINE_SPINLOCK(ctx_alloc_lock);
671unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
672#define MAX_CTX_NR (1UL << CTX_NR_BITS)
673#define CTX_BMAP_SLOTS BITS_TO_LONGS(MAX_CTX_NR)
674DECLARE_BITMAP(mmu_context_bmap, MAX_CTX_NR);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/* Caller does TLB context flushing on local CPU if necessary.
677 * The caller also ensures that CTX_VALID(mm->context) is false.
678 *
679 * We must be careful about boundary cases so that we never
680 * let the user have CTX 0 (nucleus) or we ever use a CTX
681 * version of zero (and thus NO_CONTEXT would not be caught
682 * by version mis-match tests in mmu_context.h).
David S. Millera0663a72006-02-23 14:19:28 -0800683 *
684 * Always invoked with interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 */
686void get_new_mmu_context(struct mm_struct *mm)
687{
688 unsigned long ctx, new_ctx;
689 unsigned long orig_pgsz_bits;
David S. Millera0663a72006-02-23 14:19:28 -0800690 int new_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Kirill Tkhai07df8412013-04-09 00:29:46 +0400692 spin_lock(&ctx_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK);
694 ctx = (tlb_context_cache + 1) & CTX_NR_MASK;
695 new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx);
David S. Millera0663a72006-02-23 14:19:28 -0800696 new_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (new_ctx >= (1 << CTX_NR_BITS)) {
698 new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
699 if (new_ctx >= ctx) {
700 int i;
701 new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
702 CTX_FIRST_VERSION;
703 if (new_ctx == 1)
704 new_ctx = CTX_FIRST_VERSION;
705
706 /* Don't call memset, for 16 entries that's just
707 * plain silly...
708 */
709 mmu_context_bmap[0] = 3;
710 mmu_context_bmap[1] = 0;
711 mmu_context_bmap[2] = 0;
712 mmu_context_bmap[3] = 0;
713 for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
714 mmu_context_bmap[i + 0] = 0;
715 mmu_context_bmap[i + 1] = 0;
716 mmu_context_bmap[i + 2] = 0;
717 mmu_context_bmap[i + 3] = 0;
718 }
David S. Millera0663a72006-02-23 14:19:28 -0800719 new_version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 goto out;
721 }
722 }
723 mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
724 new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
725out:
726 tlb_context_cache = new_ctx;
727 mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits;
Kirill Tkhai07df8412013-04-09 00:29:46 +0400728 spin_unlock(&ctx_alloc_lock);
David S. Millera0663a72006-02-23 14:19:28 -0800729
730 if (unlikely(new_version))
731 smp_new_mmu_context_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
David S. Miller919ee672008-04-23 05:40:25 -0700734static int numa_enabled = 1;
735static int numa_debug;
736
737static int __init early_numa(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
David S. Miller919ee672008-04-23 05:40:25 -0700739 if (!p)
740 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800741
David S. Miller919ee672008-04-23 05:40:25 -0700742 if (strstr(p, "off"))
743 numa_enabled = 0;
David S. Millerd1112012006-03-08 02:16:07 -0800744
David S. Miller919ee672008-04-23 05:40:25 -0700745 if (strstr(p, "debug"))
746 numa_debug = 1;
747
748 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800749}
David S. Miller919ee672008-04-23 05:40:25 -0700750early_param("numa", early_numa);
751
752#define numadbg(f, a...) \
753do { if (numa_debug) \
754 printk(KERN_INFO f, ## a); \
755} while (0)
David S. Millerd1112012006-03-08 02:16:07 -0800756
David S. Miller4e82c9a2008-02-13 18:00:03 -0800757static void __init find_ramdisk(unsigned long phys_base)
758{
759#ifdef CONFIG_BLK_DEV_INITRD
760 if (sparc_ramdisk_image || sparc_ramdisk_image64) {
761 unsigned long ramdisk_image;
762
763 /* Older versions of the bootloader only supported a
764 * 32-bit physical address for the ramdisk image
765 * location, stored at sparc_ramdisk_image. Newer
766 * SILO versions set sparc_ramdisk_image to zero and
767 * provide a full 64-bit physical address at
768 * sparc_ramdisk_image64.
769 */
770 ramdisk_image = sparc_ramdisk_image;
771 if (!ramdisk_image)
772 ramdisk_image = sparc_ramdisk_image64;
773
774 /* Another bootloader quirk. The bootloader normalizes
775 * the physical address to KERNBASE, so we have to
776 * factor that back out and add in the lowest valid
777 * physical page address to get the true physical address.
778 */
779 ramdisk_image -= KERNBASE;
780 ramdisk_image += phys_base;
781
David S. Miller919ee672008-04-23 05:40:25 -0700782 numadbg("Found ramdisk at physical address 0x%lx, size %u\n",
783 ramdisk_image, sparc_ramdisk_size);
784
David S. Miller4e82c9a2008-02-13 18:00:03 -0800785 initrd_start = ramdisk_image;
786 initrd_end = ramdisk_image + sparc_ramdisk_size;
David S. Miller3b2a7e22008-02-13 18:13:20 -0800787
Yinghai Lu95f72d12010-07-12 14:36:09 +1000788 memblock_reserve(initrd_start, sparc_ramdisk_size);
David S. Millerd45100f2008-05-06 15:19:54 -0700789
790 initrd_start += PAGE_OFFSET;
791 initrd_end += PAGE_OFFSET;
David S. Miller4e82c9a2008-02-13 18:00:03 -0800792 }
793#endif
794}
795
David S. Miller919ee672008-04-23 05:40:25 -0700796struct node_mem_mask {
797 unsigned long mask;
798 unsigned long val;
David S. Miller919ee672008-04-23 05:40:25 -0700799};
800static struct node_mem_mask node_masks[MAX_NUMNODES];
801static int num_node_masks;
802
Sam Ravnborg48d37212014-05-16 23:26:12 +0200803#ifdef CONFIG_NEED_MULTIPLE_NODES
804
David S. Miller919ee672008-04-23 05:40:25 -0700805int numa_cpu_lookup_table[NR_CPUS];
806cpumask_t numa_cpumask_lookup_table[MAX_NUMNODES];
807
David S. Miller919ee672008-04-23 05:40:25 -0700808struct mdesc_mblock {
809 u64 base;
810 u64 size;
811 u64 offset; /* RA-to-PA */
812};
813static struct mdesc_mblock *mblocks;
814static int num_mblocks;
815
816static unsigned long ra_to_pa(unsigned long addr)
David S. Millerd1112012006-03-08 02:16:07 -0800817{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 int i;
819
David S. Miller919ee672008-04-23 05:40:25 -0700820 for (i = 0; i < num_mblocks; i++) {
821 struct mdesc_mblock *m = &mblocks[i];
David S. Miller6fc5bae2006-12-28 21:00:23 -0800822
David S. Miller919ee672008-04-23 05:40:25 -0700823 if (addr >= m->base &&
824 addr < (m->base + m->size)) {
825 addr += m->offset;
826 break;
827 }
828 }
829 return addr;
830}
831
832static int find_node(unsigned long addr)
833{
834 int i;
835
836 addr = ra_to_pa(addr);
837 for (i = 0; i < num_node_masks; i++) {
838 struct node_mem_mask *p = &node_masks[i];
839
840 if ((addr & p->mask) == p->val)
841 return i;
842 }
bob picco3dee9df2014-09-16 09:28:15 -0400843 /* The following condition has been observed on LDOM guests.*/
844 WARN_ONCE(1, "find_node: A physical address doesn't match a NUMA node"
845 " rule. Some physical memory will be owned by node 0.");
846 return 0;
David S. Miller919ee672008-04-23 05:40:25 -0700847}
848
Tejun Heof9b18db2011-07-12 10:46:32 +0200849static u64 memblock_nid_range(u64 start, u64 end, int *nid)
David S. Miller919ee672008-04-23 05:40:25 -0700850{
851 *nid = find_node(start);
852 start += PAGE_SIZE;
853 while (start < end) {
854 int n = find_node(start);
855
856 if (n != *nid)
857 break;
858 start += PAGE_SIZE;
859 }
860
David S. Millerc918dcc2008-08-14 01:41:39 -0700861 if (start > end)
862 start = end;
863
David S. Miller919ee672008-04-23 05:40:25 -0700864 return start;
865}
David S. Miller919ee672008-04-23 05:40:25 -0700866#endif
867
868/* This must be invoked after performing all of the necessary
Tejun Heo2a4814d2011-12-08 10:22:08 -0800869 * memblock_set_node() calls for 'nid'. We need to be able to get
David S. Miller919ee672008-04-23 05:40:25 -0700870 * correct data from get_pfn_range_for_nid().
871 */
872static void __init allocate_node_data(int nid)
873{
David S. Miller919ee672008-04-23 05:40:25 -0700874 struct pglist_data *p;
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400875 unsigned long start_pfn, end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -0700876#ifdef CONFIG_NEED_MULTIPLE_NODES
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400877 unsigned long paddr;
878
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700879 paddr = memblock_alloc_try_nid(sizeof(struct pglist_data), SMP_CACHE_BYTES, nid);
David S. Miller919ee672008-04-23 05:40:25 -0700880 if (!paddr) {
881 prom_printf("Cannot allocate pglist_data for nid[%d]\n", nid);
882 prom_halt();
883 }
884 NODE_DATA(nid) = __va(paddr);
885 memset(NODE_DATA(nid), 0, sizeof(struct pglist_data));
886
David S. Miller625d6932012-04-25 13:13:43 -0700887 NODE_DATA(nid)->node_id = nid;
David S. Miller919ee672008-04-23 05:40:25 -0700888#endif
889
890 p = NODE_DATA(nid);
891
892 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
893 p->node_start_pfn = start_pfn;
894 p->node_spanned_pages = end_pfn - start_pfn;
David S. Miller919ee672008-04-23 05:40:25 -0700895}
896
897static void init_node_masks_nonnuma(void)
898{
Sam Ravnborg48d37212014-05-16 23:26:12 +0200899#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -0700900 int i;
Sam Ravnborg48d37212014-05-16 23:26:12 +0200901#endif
David S. Miller919ee672008-04-23 05:40:25 -0700902
903 numadbg("Initializing tables for non-numa.\n");
904
905 node_masks[0].mask = node_masks[0].val = 0;
906 num_node_masks = 1;
907
Sam Ravnborg48d37212014-05-16 23:26:12 +0200908#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -0700909 for (i = 0; i < NR_CPUS; i++)
910 numa_cpu_lookup_table[i] = 0;
911
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700912 cpumask_setall(&numa_cpumask_lookup_table[0]);
Sam Ravnborg48d37212014-05-16 23:26:12 +0200913#endif
David S. Miller919ee672008-04-23 05:40:25 -0700914}
915
916#ifdef CONFIG_NEED_MULTIPLE_NODES
917struct pglist_data *node_data[MAX_NUMNODES];
918
919EXPORT_SYMBOL(numa_cpu_lookup_table);
920EXPORT_SYMBOL(numa_cpumask_lookup_table);
921EXPORT_SYMBOL(node_data);
922
923struct mdesc_mlgroup {
924 u64 node;
925 u64 latency;
926 u64 match;
927 u64 mask;
928};
929static struct mdesc_mlgroup *mlgroups;
930static int num_mlgroups;
931
932static int scan_pio_for_cfg_handle(struct mdesc_handle *md, u64 pio,
933 u32 cfg_handle)
934{
935 u64 arc;
936
937 mdesc_for_each_arc(arc, md, pio, MDESC_ARC_TYPE_FWD) {
938 u64 target = mdesc_arc_target(md, arc);
939 const u64 *val;
940
941 val = mdesc_get_property(md, target,
942 "cfg-handle", NULL);
943 if (val && *val == cfg_handle)
944 return 0;
945 }
946 return -ENODEV;
947}
948
949static int scan_arcs_for_cfg_handle(struct mdesc_handle *md, u64 grp,
950 u32 cfg_handle)
951{
952 u64 arc, candidate, best_latency = ~(u64)0;
953
954 candidate = MDESC_NODE_NULL;
955 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
956 u64 target = mdesc_arc_target(md, arc);
957 const char *name = mdesc_node_name(md, target);
958 const u64 *val;
959
960 if (strcmp(name, "pio-latency-group"))
961 continue;
962
963 val = mdesc_get_property(md, target, "latency", NULL);
964 if (!val)
965 continue;
966
967 if (*val < best_latency) {
968 candidate = target;
969 best_latency = *val;
970 }
971 }
972
973 if (candidate == MDESC_NODE_NULL)
974 return -ENODEV;
975
976 return scan_pio_for_cfg_handle(md, candidate, cfg_handle);
977}
978
979int of_node_to_nid(struct device_node *dp)
980{
981 const struct linux_prom64_registers *regs;
982 struct mdesc_handle *md;
983 u32 cfg_handle;
984 int count, nid;
985 u64 grp;
986
David S. Miller072bd412008-08-18 20:36:17 -0700987 /* This is the right thing to do on currently supported
988 * SUN4U NUMA platforms as well, as the PCI controller does
989 * not sit behind any particular memory controller.
990 */
David S. Miller919ee672008-04-23 05:40:25 -0700991 if (!mlgroups)
992 return -1;
993
994 regs = of_get_property(dp, "reg", NULL);
995 if (!regs)
996 return -1;
997
998 cfg_handle = (regs->phys_addr >> 32UL) & 0x0fffffff;
999
1000 md = mdesc_grab();
1001
1002 count = 0;
1003 nid = -1;
1004 mdesc_for_each_node_by_name(md, grp, "group") {
1005 if (!scan_arcs_for_cfg_handle(md, grp, cfg_handle)) {
1006 nid = count;
1007 break;
1008 }
1009 count++;
1010 }
1011
1012 mdesc_release(md);
1013
1014 return nid;
1015}
1016
David S. Miller01c453812009-04-07 01:05:22 -07001017static void __init add_node_ranges(void)
David S. Miller919ee672008-04-23 05:40:25 -07001018{
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001019 struct memblock_region *reg;
David S. Miller919ee672008-04-23 05:40:25 -07001020
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001021 for_each_memblock(memory, reg) {
1022 unsigned long size = reg->size;
David S. Miller919ee672008-04-23 05:40:25 -07001023 unsigned long start, end;
1024
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001025 start = reg->base;
David S. Miller919ee672008-04-23 05:40:25 -07001026 end = start + size;
1027 while (start < end) {
1028 unsigned long this_end;
1029 int nid;
1030
Benjamin Herrenschmidt35a1f0b2010-07-06 15:38:58 -07001031 this_end = memblock_nid_range(start, end, &nid);
David S. Miller919ee672008-04-23 05:40:25 -07001032
Tejun Heo2a4814d2011-12-08 10:22:08 -08001033 numadbg("Setting memblock NUMA node nid[%d] "
David S. Miller919ee672008-04-23 05:40:25 -07001034 "start[%lx] end[%lx]\n",
1035 nid, start, this_end);
1036
Tang Chene7e8de52014-01-21 15:49:26 -08001037 memblock_set_node(start, this_end - start,
1038 &memblock.memory, nid);
David S. Miller919ee672008-04-23 05:40:25 -07001039 start = this_end;
1040 }
1041 }
1042}
1043
1044static int __init grab_mlgroups(struct mdesc_handle *md)
1045{
1046 unsigned long paddr;
1047 int count = 0;
1048 u64 node;
1049
1050 mdesc_for_each_node_by_name(md, node, "memory-latency-group")
1051 count++;
1052 if (!count)
1053 return -ENOENT;
1054
Yinghai Lu95f72d12010-07-12 14:36:09 +10001055 paddr = memblock_alloc(count * sizeof(struct mdesc_mlgroup),
David S. Miller919ee672008-04-23 05:40:25 -07001056 SMP_CACHE_BYTES);
1057 if (!paddr)
1058 return -ENOMEM;
1059
1060 mlgroups = __va(paddr);
1061 num_mlgroups = count;
1062
1063 count = 0;
1064 mdesc_for_each_node_by_name(md, node, "memory-latency-group") {
1065 struct mdesc_mlgroup *m = &mlgroups[count++];
1066 const u64 *val;
1067
1068 m->node = node;
1069
1070 val = mdesc_get_property(md, node, "latency", NULL);
1071 m->latency = *val;
1072 val = mdesc_get_property(md, node, "address-match", NULL);
1073 m->match = *val;
1074 val = mdesc_get_property(md, node, "address-mask", NULL);
1075 m->mask = *val;
1076
Sam Ravnborg90181132009-01-06 13:19:28 -08001077 numadbg("MLGROUP[%d]: node[%llx] latency[%llx] "
1078 "match[%llx] mask[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001079 count - 1, m->node, m->latency, m->match, m->mask);
1080 }
1081
1082 return 0;
1083}
1084
1085static int __init grab_mblocks(struct mdesc_handle *md)
1086{
1087 unsigned long paddr;
1088 int count = 0;
1089 u64 node;
1090
1091 mdesc_for_each_node_by_name(md, node, "mblock")
1092 count++;
1093 if (!count)
1094 return -ENOENT;
1095
Yinghai Lu95f72d12010-07-12 14:36:09 +10001096 paddr = memblock_alloc(count * sizeof(struct mdesc_mblock),
David S. Miller919ee672008-04-23 05:40:25 -07001097 SMP_CACHE_BYTES);
1098 if (!paddr)
1099 return -ENOMEM;
1100
1101 mblocks = __va(paddr);
1102 num_mblocks = count;
1103
1104 count = 0;
1105 mdesc_for_each_node_by_name(md, node, "mblock") {
1106 struct mdesc_mblock *m = &mblocks[count++];
1107 const u64 *val;
1108
1109 val = mdesc_get_property(md, node, "base", NULL);
1110 m->base = *val;
1111 val = mdesc_get_property(md, node, "size", NULL);
1112 m->size = *val;
1113 val = mdesc_get_property(md, node,
1114 "address-congruence-offset", NULL);
bob picco771a37f2013-06-11 14:54:51 -04001115
1116 /* The address-congruence-offset property is optional.
1117 * Explicity zero it be identifty this.
1118 */
1119 if (val)
1120 m->offset = *val;
1121 else
1122 m->offset = 0UL;
David S. Miller919ee672008-04-23 05:40:25 -07001123
Sam Ravnborg90181132009-01-06 13:19:28 -08001124 numadbg("MBLOCK[%d]: base[%llx] size[%llx] offset[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001125 count - 1, m->base, m->size, m->offset);
1126 }
1127
1128 return 0;
1129}
1130
1131static void __init numa_parse_mdesc_group_cpus(struct mdesc_handle *md,
1132 u64 grp, cpumask_t *mask)
1133{
1134 u64 arc;
1135
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001136 cpumask_clear(mask);
David S. Miller919ee672008-04-23 05:40:25 -07001137
1138 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_BACK) {
1139 u64 target = mdesc_arc_target(md, arc);
1140 const char *name = mdesc_node_name(md, target);
1141 const u64 *id;
1142
1143 if (strcmp(name, "cpu"))
1144 continue;
1145 id = mdesc_get_property(md, target, "id", NULL);
Rusty Russelle305cb8f2009-03-16 14:40:23 +10301146 if (*id < nr_cpu_ids)
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001147 cpumask_set_cpu(*id, mask);
David S. Miller919ee672008-04-23 05:40:25 -07001148 }
1149}
1150
1151static struct mdesc_mlgroup * __init find_mlgroup(u64 node)
1152{
1153 int i;
1154
1155 for (i = 0; i < num_mlgroups; i++) {
1156 struct mdesc_mlgroup *m = &mlgroups[i];
1157 if (m->node == node)
1158 return m;
1159 }
1160 return NULL;
1161}
1162
1163static int __init numa_attach_mlgroup(struct mdesc_handle *md, u64 grp,
1164 int index)
1165{
1166 struct mdesc_mlgroup *candidate = NULL;
1167 u64 arc, best_latency = ~(u64)0;
1168 struct node_mem_mask *n;
1169
1170 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
1171 u64 target = mdesc_arc_target(md, arc);
1172 struct mdesc_mlgroup *m = find_mlgroup(target);
1173 if (!m)
1174 continue;
1175 if (m->latency < best_latency) {
1176 candidate = m;
1177 best_latency = m->latency;
1178 }
1179 }
1180 if (!candidate)
1181 return -ENOENT;
1182
1183 if (num_node_masks != index) {
1184 printk(KERN_ERR "Inconsistent NUMA state, "
1185 "index[%d] != num_node_masks[%d]\n",
1186 index, num_node_masks);
1187 return -EINVAL;
1188 }
1189
1190 n = &node_masks[num_node_masks++];
1191
1192 n->mask = candidate->mask;
1193 n->val = candidate->match;
1194
Sam Ravnborg90181132009-01-06 13:19:28 -08001195 numadbg("NUMA NODE[%d]: mask[%lx] val[%lx] (latency[%llx])\n",
David S. Miller919ee672008-04-23 05:40:25 -07001196 index, n->mask, n->val, candidate->latency);
1197
1198 return 0;
1199}
1200
1201static int __init numa_parse_mdesc_group(struct mdesc_handle *md, u64 grp,
1202 int index)
1203{
1204 cpumask_t mask;
1205 int cpu;
1206
1207 numa_parse_mdesc_group_cpus(md, grp, &mask);
1208
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001209 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001210 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001211 cpumask_copy(&numa_cpumask_lookup_table[index], &mask);
David S. Miller919ee672008-04-23 05:40:25 -07001212
1213 if (numa_debug) {
1214 printk(KERN_INFO "NUMA GROUP[%d]: cpus [ ", index);
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001215 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001216 printk("%d ", cpu);
1217 printk("]\n");
1218 }
1219
1220 return numa_attach_mlgroup(md, grp, index);
1221}
1222
1223static int __init numa_parse_mdesc(void)
1224{
1225 struct mdesc_handle *md = mdesc_grab();
1226 int i, err, count;
1227 u64 node;
1228
1229 node = mdesc_node_by_name(md, MDESC_NODE_NULL, "latency-groups");
1230 if (node == MDESC_NODE_NULL) {
1231 mdesc_release(md);
1232 return -ENOENT;
1233 }
1234
1235 err = grab_mblocks(md);
1236 if (err < 0)
1237 goto out;
1238
1239 err = grab_mlgroups(md);
1240 if (err < 0)
1241 goto out;
1242
1243 count = 0;
1244 mdesc_for_each_node_by_name(md, node, "group") {
1245 err = numa_parse_mdesc_group(md, node, count);
1246 if (err < 0)
1247 break;
1248 count++;
1249 }
1250
1251 add_node_ranges();
1252
1253 for (i = 0; i < num_node_masks; i++) {
1254 allocate_node_data(i);
1255 node_set_online(i);
1256 }
1257
1258 err = 0;
1259out:
1260 mdesc_release(md);
1261 return err;
1262}
1263
David S. Miller072bd412008-08-18 20:36:17 -07001264static int __init numa_parse_jbus(void)
1265{
1266 unsigned long cpu, index;
1267
1268 /* NUMA node id is encoded in bits 36 and higher, and there is
1269 * a 1-to-1 mapping from CPU ID to NUMA node ID.
1270 */
1271 index = 0;
1272 for_each_present_cpu(cpu) {
1273 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001274 cpumask_copy(&numa_cpumask_lookup_table[index], cpumask_of(cpu));
David S. Miller072bd412008-08-18 20:36:17 -07001275 node_masks[index].mask = ~((1UL << 36UL) - 1UL);
1276 node_masks[index].val = cpu << 36UL;
1277
1278 index++;
1279 }
1280 num_node_masks = index;
1281
1282 add_node_ranges();
1283
1284 for (index = 0; index < num_node_masks; index++) {
1285 allocate_node_data(index);
1286 node_set_online(index);
1287 }
1288
1289 return 0;
1290}
1291
David S. Miller919ee672008-04-23 05:40:25 -07001292static int __init numa_parse_sun4u(void)
1293{
David S. Miller072bd412008-08-18 20:36:17 -07001294 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1295 unsigned long ver;
1296
1297 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
1298 if ((ver >> 32UL) == __JALAPENO_ID ||
1299 (ver >> 32UL) == __SERRANO_ID)
1300 return numa_parse_jbus();
1301 }
David S. Miller919ee672008-04-23 05:40:25 -07001302 return -1;
1303}
1304
1305static int __init bootmem_init_numa(void)
1306{
1307 int err = -1;
1308
1309 numadbg("bootmem_init_numa()\n");
1310
1311 if (numa_enabled) {
1312 if (tlb_type == hypervisor)
1313 err = numa_parse_mdesc();
1314 else
1315 err = numa_parse_sun4u();
1316 }
1317 return err;
1318}
1319
1320#else
1321
1322static int bootmem_init_numa(void)
1323{
1324 return -1;
1325}
1326
1327#endif
1328
1329static void __init bootmem_init_nonnuma(void)
1330{
Yinghai Lu95f72d12010-07-12 14:36:09 +10001331 unsigned long top_of_ram = memblock_end_of_DRAM();
1332 unsigned long total_ram = memblock_phys_mem_size();
David S. Miller919ee672008-04-23 05:40:25 -07001333
1334 numadbg("bootmem_init_nonnuma()\n");
1335
1336 printk(KERN_INFO "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
1337 top_of_ram, total_ram);
1338 printk(KERN_INFO "Memory hole size: %ldMB\n",
1339 (top_of_ram - total_ram) >> 20);
1340
1341 init_node_masks_nonnuma();
Tang Chene7e8de52014-01-21 15:49:26 -08001342 memblock_set_node(0, (phys_addr_t)ULLONG_MAX, &memblock.memory, 0);
David S. Miller919ee672008-04-23 05:40:25 -07001343 allocate_node_data(0);
David S. Miller919ee672008-04-23 05:40:25 -07001344 node_set_online(0);
1345}
1346
David S. Miller919ee672008-04-23 05:40:25 -07001347static unsigned long __init bootmem_init(unsigned long phys_base)
1348{
1349 unsigned long end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -07001350
Yinghai Lu95f72d12010-07-12 14:36:09 +10001351 end_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 max_pfn = max_low_pfn = end_pfn;
David S. Millerd1112012006-03-08 02:16:07 -08001353 min_low_pfn = (phys_base >> PAGE_SHIFT);
1354
David S. Miller919ee672008-04-23 05:40:25 -07001355 if (bootmem_init_numa() < 0)
1356 bootmem_init_nonnuma();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
David S. Miller625d6932012-04-25 13:13:43 -07001358 /* Dump memblock with node info. */
1359 memblock_dump_all();
1360
David S. Miller919ee672008-04-23 05:40:25 -07001361 /* XXX cpu notifier XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
David S. Miller625d6932012-04-25 13:13:43 -07001363 sparse_memory_present_with_active_regions(MAX_NUMNODES);
David S. Millerd1112012006-03-08 02:16:07 -08001364 sparse_init();
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return end_pfn;
1367}
1368
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001369static struct linux_prom64_registers pall[MAX_BANKS] __initdata;
1370static int pall_ents __initdata;
1371
David S. Miller56425302005-09-25 16:46:57 -07001372#ifdef CONFIG_DEBUG_PAGEALLOC
Sam Ravnborg896aef42008-02-24 19:49:52 -08001373static unsigned long __ref kernel_map_range(unsigned long pstart,
1374 unsigned long pend, pgprot_t prot)
David S. Miller56425302005-09-25 16:46:57 -07001375{
1376 unsigned long vstart = PAGE_OFFSET + pstart;
1377 unsigned long vend = PAGE_OFFSET + pend;
1378 unsigned long alloc_bytes = 0UL;
1379
1380 if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) {
David S. Miller13edad72005-09-29 17:58:26 -07001381 prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n",
David S. Miller56425302005-09-25 16:46:57 -07001382 vstart, vend);
1383 prom_halt();
1384 }
1385
1386 while (vstart < vend) {
1387 unsigned long this_end, paddr = __pa(vstart);
1388 pgd_t *pgd = pgd_offset_k(vstart);
1389 pud_t *pud;
1390 pmd_t *pmd;
1391 pte_t *pte;
1392
David S. Millerac55c762014-09-26 21:19:46 -07001393 if (pgd_none(*pgd)) {
1394 pud_t *new;
1395
1396 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1397 alloc_bytes += PAGE_SIZE;
1398 pgd_populate(&init_mm, pgd, new);
1399 }
David S. Miller56425302005-09-25 16:46:57 -07001400 pud = pud_offset(pgd, vstart);
1401 if (pud_none(*pud)) {
1402 pmd_t *new;
1403
1404 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1405 alloc_bytes += PAGE_SIZE;
1406 pud_populate(&init_mm, pud, new);
1407 }
1408
1409 pmd = pmd_offset(pud, vstart);
1410 if (!pmd_present(*pmd)) {
1411 pte_t *new;
1412
1413 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1414 alloc_bytes += PAGE_SIZE;
1415 pmd_populate_kernel(&init_mm, pmd, new);
1416 }
1417
1418 pte = pte_offset_kernel(pmd, vstart);
1419 this_end = (vstart + PMD_SIZE) & PMD_MASK;
1420 if (this_end > vend)
1421 this_end = vend;
1422
1423 while (vstart < this_end) {
1424 pte_val(*pte) = (paddr | pgprot_val(prot));
1425
1426 vstart += PAGE_SIZE;
1427 paddr += PAGE_SIZE;
1428 pte++;
1429 }
1430 }
1431
1432 return alloc_bytes;
1433}
1434
David S. Miller56425302005-09-25 16:46:57 -07001435extern unsigned int kvmap_linear_patch[1];
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001436#endif /* CONFIG_DEBUG_PAGEALLOC */
1437
David S. Miller4f93d212012-09-06 18:13:58 -07001438static void __init kpte_set_val(unsigned long index, unsigned long val)
1439{
1440 unsigned long *ptr = kpte_linear_bitmap;
1441
1442 val <<= ((index % (BITS_PER_LONG / 2)) * 2);
1443 ptr += (index / (BITS_PER_LONG / 2));
1444
1445 *ptr |= val;
1446}
1447
1448static const unsigned long kpte_shift_min = 28; /* 256MB */
1449static const unsigned long kpte_shift_max = 34; /* 16GB */
1450static const unsigned long kpte_shift_incr = 3;
1451
1452static unsigned long kpte_mark_using_shift(unsigned long start, unsigned long end,
1453 unsigned long shift)
1454{
1455 unsigned long size = (1UL << shift);
1456 unsigned long mask = (size - 1UL);
1457 unsigned long remains = end - start;
1458 unsigned long val;
1459
1460 if (remains < size || (start & mask))
1461 return start;
1462
1463 /* VAL maps:
1464 *
1465 * shift 28 --> kern_linear_pte_xor index 1
1466 * shift 31 --> kern_linear_pte_xor index 2
1467 * shift 34 --> kern_linear_pte_xor index 3
1468 */
1469 val = ((shift - kpte_shift_min) / kpte_shift_incr) + 1;
1470
1471 remains &= ~mask;
1472 if (shift != kpte_shift_max)
1473 remains = size;
1474
1475 while (remains) {
1476 unsigned long index = start >> kpte_shift_min;
1477
1478 kpte_set_val(index, val);
1479
1480 start += 1UL << kpte_shift_min;
1481 remains -= 1UL << kpte_shift_min;
1482 }
1483
1484 return start;
1485}
1486
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001487static void __init mark_kpte_bitmap(unsigned long start, unsigned long end)
1488{
David S. Miller4f93d212012-09-06 18:13:58 -07001489 unsigned long smallest_size, smallest_mask;
1490 unsigned long s;
1491
1492 smallest_size = (1UL << kpte_shift_min);
1493 smallest_mask = (smallest_size - 1UL);
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001494
1495 while (start < end) {
David S. Miller4f93d212012-09-06 18:13:58 -07001496 unsigned long orig_start = start;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001497
David S. Miller4f93d212012-09-06 18:13:58 -07001498 for (s = kpte_shift_max; s >= kpte_shift_min; s -= kpte_shift_incr) {
1499 start = kpte_mark_using_shift(start, end, s);
David S. Millerf7c00332006-03-05 22:18:50 -08001500
David S. Miller4f93d212012-09-06 18:13:58 -07001501 if (start != orig_start)
1502 break;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001503 }
1504
David S. Miller4f93d212012-09-06 18:13:58 -07001505 if (start == orig_start)
1506 start = (start + smallest_size) & ~smallest_mask;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001507 }
1508}
David S. Miller56425302005-09-25 16:46:57 -07001509
David S. Miller8f3614532007-12-13 06:13:38 -08001510static void __init init_kpte_bitmap(void)
David S. Miller56425302005-09-25 16:46:57 -07001511{
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001512 unsigned long i;
David S. Miller13edad72005-09-29 17:58:26 -07001513
1514 for (i = 0; i < pall_ents; i++) {
David S. Miller56425302005-09-25 16:46:57 -07001515 unsigned long phys_start, phys_end;
1516
David S. Miller13edad72005-09-29 17:58:26 -07001517 phys_start = pall[i].phys_addr;
1518 phys_end = phys_start + pall[i].reg_size;
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001519
1520 mark_kpte_bitmap(phys_start, phys_end);
David S. Miller8f3614532007-12-13 06:13:38 -08001521 }
1522}
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001523
David S. Miller8f3614532007-12-13 06:13:38 -08001524static void __init kernel_physical_mapping_init(void)
1525{
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001526#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller8f3614532007-12-13 06:13:38 -08001527 unsigned long i, mem_alloced = 0UL;
1528
1529 for (i = 0; i < pall_ents; i++) {
1530 unsigned long phys_start, phys_end;
1531
1532 phys_start = pall[i].phys_addr;
1533 phys_end = phys_start + pall[i].reg_size;
1534
David S. Miller56425302005-09-25 16:46:57 -07001535 mem_alloced += kernel_map_range(phys_start, phys_end,
1536 PAGE_KERNEL);
David S. Miller56425302005-09-25 16:46:57 -07001537 }
1538
1539 printk("Allocated %ld bytes for kernel page tables.\n",
1540 mem_alloced);
1541
1542 kvmap_linear_patch[0] = 0x01000000; /* nop */
1543 flushi(&kvmap_linear_patch[0]);
1544
1545 __flush_tlb_all();
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001546#endif
David S. Miller56425302005-09-25 16:46:57 -07001547}
1548
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001549#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001550void kernel_map_pages(struct page *page, int numpages, int enable)
1551{
1552 unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT;
1553 unsigned long phys_end = phys_start + (numpages * PAGE_SIZE);
1554
1555 kernel_map_range(phys_start, phys_end,
1556 (enable ? PAGE_KERNEL : __pgprot(0)));
1557
David S. Miller74bf4312006-01-31 18:29:18 -08001558 flush_tsb_kernel_range(PAGE_OFFSET + phys_start,
1559 PAGE_OFFSET + phys_end);
1560
David S. Miller56425302005-09-25 16:46:57 -07001561 /* we should perform an IPI and flush all tlbs,
1562 * but that can deadlock->flush only current cpu.
1563 */
1564 __flush_tlb_kernel_range(PAGE_OFFSET + phys_start,
1565 PAGE_OFFSET + phys_end);
1566}
1567#endif
1568
David S. Miller10147572005-09-28 21:46:43 -07001569unsigned long __init find_ecache_flush_span(unsigned long size)
1570{
David S. Miller13edad72005-09-29 17:58:26 -07001571 int i;
David S. Miller10147572005-09-28 21:46:43 -07001572
David S. Miller13edad72005-09-29 17:58:26 -07001573 for (i = 0; i < pavail_ents; i++) {
1574 if (pavail[i].reg_size >= size)
1575 return pavail[i].phys_addr;
David S. Miller10147572005-09-28 21:46:43 -07001576 }
1577
1578 return ~0UL;
1579}
1580
David S. Millerb2d43832013-09-20 21:50:41 -07001581unsigned long PAGE_OFFSET;
1582EXPORT_SYMBOL(PAGE_OFFSET);
1583
1584static void __init page_offset_shift_patch_one(unsigned int *insn, unsigned long phys_bits)
1585{
1586 unsigned long final_shift;
1587 unsigned int val = *insn;
1588 unsigned int cnt;
1589
1590 /* We are patching in ilog2(max_supported_phys_address), and
1591 * we are doing so in a manner similar to a relocation addend.
1592 * That is, we are adding the shift value to whatever value
1593 * is in the shift instruction count field already.
1594 */
1595 cnt = (val & 0x3f);
1596 val &= ~0x3f;
1597
1598 /* If we are trying to shift >= 64 bits, clear the destination
1599 * register. This can happen when phys_bits ends up being equal
1600 * to MAX_PHYS_ADDRESS_BITS.
1601 */
1602 final_shift = (cnt + (64 - phys_bits));
1603 if (final_shift >= 64) {
1604 unsigned int rd = (val >> 25) & 0x1f;
1605
1606 val = 0x80100000 | (rd << 25);
1607 } else {
1608 val |= final_shift;
1609 }
1610 *insn = val;
1611
1612 __asm__ __volatile__("flush %0"
1613 : /* no outputs */
1614 : "r" (insn));
1615}
1616
1617static void __init page_offset_shift_patch(unsigned long phys_bits)
1618{
1619 extern unsigned int __page_offset_shift_patch;
1620 extern unsigned int __page_offset_shift_patch_end;
1621 unsigned int *p;
1622
1623 p = &__page_offset_shift_patch;
1624 while (p < &__page_offset_shift_patch_end) {
1625 unsigned int *insn = (unsigned int *)(unsigned long)*p;
1626
1627 page_offset_shift_patch_one(insn, phys_bits);
1628
1629 p++;
1630 }
1631}
1632
David S. Miller4397bed2014-09-26 21:58:33 -07001633unsigned long sparc64_va_hole_top = 0xfffff80000000000UL;
1634unsigned long sparc64_va_hole_bottom = 0x0000080000000000UL;
1635
David S. Millerb2d43832013-09-20 21:50:41 -07001636static void __init setup_page_offset(void)
1637{
1638 unsigned long max_phys_bits = 40;
1639
1640 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
David S. Miller4397bed2014-09-26 21:58:33 -07001641 /* Cheetah/Panther support a full 64-bit virtual
1642 * address, so we can use all that our page tables
1643 * support.
1644 */
1645 sparc64_va_hole_top = 0xfff0000000000000UL;
1646 sparc64_va_hole_bottom = 0x0010000000000000UL;
1647
David S. Millerb2d43832013-09-20 21:50:41 -07001648 max_phys_bits = 42;
1649 } else if (tlb_type == hypervisor) {
1650 switch (sun4v_chip_type) {
1651 case SUN4V_CHIP_NIAGARA1:
1652 case SUN4V_CHIP_NIAGARA2:
David S. Miller4397bed2014-09-26 21:58:33 -07001653 /* T1 and T2 support 48-bit virtual addresses. */
1654 sparc64_va_hole_top = 0xffff800000000000UL;
1655 sparc64_va_hole_bottom = 0x0000800000000000UL;
1656
David S. Millerb2d43832013-09-20 21:50:41 -07001657 max_phys_bits = 39;
1658 break;
1659 case SUN4V_CHIP_NIAGARA3:
David S. Miller4397bed2014-09-26 21:58:33 -07001660 /* T3 supports 48-bit virtual addresses. */
1661 sparc64_va_hole_top = 0xffff800000000000UL;
1662 sparc64_va_hole_bottom = 0x0000800000000000UL;
1663
David S. Millerb2d43832013-09-20 21:50:41 -07001664 max_phys_bits = 43;
1665 break;
1666 case SUN4V_CHIP_NIAGARA4:
1667 case SUN4V_CHIP_NIAGARA5:
1668 case SUN4V_CHIP_SPARC64X:
1669 default:
David S. Miller4397bed2014-09-26 21:58:33 -07001670 /* T4 and later support 52-bit virtual addresses. */
1671 sparc64_va_hole_top = 0xfff8000000000000UL;
1672 sparc64_va_hole_bottom = 0x0008000000000000UL;
David S. Millerb2d43832013-09-20 21:50:41 -07001673 max_phys_bits = 47;
1674 break;
1675 }
1676 }
1677
1678 if (max_phys_bits > MAX_PHYS_ADDRESS_BITS) {
1679 prom_printf("MAX_PHYS_ADDRESS_BITS is too small, need %lu\n",
1680 max_phys_bits);
1681 prom_halt();
1682 }
1683
1684 PAGE_OFFSET = PAGE_OFFSET_BY_BITS(max_phys_bits);
1685
1686 pr_info("PAGE_OFFSET is 0x%016lx (max_phys_bits == %lu)\n",
1687 PAGE_OFFSET, max_phys_bits);
1688
1689 page_offset_shift_patch(max_phys_bits);
1690}
1691
David S. Miller517af332006-02-01 15:55:21 -08001692static void __init tsb_phys_patch(void)
1693{
David S. Millerd257d5d2006-02-06 23:44:37 -08001694 struct tsb_ldquad_phys_patch_entry *pquad;
David S. Miller517af332006-02-01 15:55:21 -08001695 struct tsb_phys_patch_entry *p;
1696
David S. Millerd257d5d2006-02-06 23:44:37 -08001697 pquad = &__tsb_ldquad_phys_patch;
1698 while (pquad < &__tsb_ldquad_phys_patch_end) {
1699 unsigned long addr = pquad->addr;
1700
1701 if (tlb_type == hypervisor)
1702 *(unsigned int *) addr = pquad->sun4v_insn;
1703 else
1704 *(unsigned int *) addr = pquad->sun4u_insn;
1705 wmb();
1706 __asm__ __volatile__("flush %0"
1707 : /* no outputs */
1708 : "r" (addr));
1709
1710 pquad++;
1711 }
1712
David S. Miller517af332006-02-01 15:55:21 -08001713 p = &__tsb_phys_patch;
1714 while (p < &__tsb_phys_patch_end) {
1715 unsigned long addr = p->addr;
1716
1717 *(unsigned int *) addr = p->insn;
1718 wmb();
1719 __asm__ __volatile__("flush %0"
1720 : /* no outputs */
1721 : "r" (addr));
1722
1723 p++;
1724 }
1725}
1726
David S. Miller490384e2006-02-11 14:41:18 -08001727/* Don't mark as init, we give this to the Hypervisor. */
David S. Millerd1acb422007-03-16 17:20:28 -07001728#ifndef CONFIG_DEBUG_PAGEALLOC
1729#define NUM_KTSB_DESCR 2
1730#else
1731#define NUM_KTSB_DESCR 1
1732#endif
1733static struct hv_tsb_descr ktsb_descr[NUM_KTSB_DESCR];
David S. Miller490384e2006-02-11 14:41:18 -08001734extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
1735
David S. Miller9076d0e2011-08-05 00:53:57 -07001736static void patch_one_ktsb_phys(unsigned int *start, unsigned int *end, unsigned long pa)
1737{
1738 pa >>= KTSB_PHYS_SHIFT;
1739
1740 while (start < end) {
1741 unsigned int *ia = (unsigned int *)(unsigned long)*start;
1742
1743 ia[0] = (ia[0] & ~0x3fffff) | (pa >> 10);
1744 __asm__ __volatile__("flush %0" : : "r" (ia));
1745
1746 ia[1] = (ia[1] & ~0x3ff) | (pa & 0x3ff);
1747 __asm__ __volatile__("flush %0" : : "r" (ia + 1));
1748
1749 start++;
1750 }
1751}
1752
1753static void ktsb_phys_patch(void)
1754{
1755 extern unsigned int __swapper_tsb_phys_patch;
1756 extern unsigned int __swapper_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07001757 unsigned long ktsb_pa;
1758
1759 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1760 patch_one_ktsb_phys(&__swapper_tsb_phys_patch,
1761 &__swapper_tsb_phys_patch_end, ktsb_pa);
1762#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller0785a8e2011-08-06 05:26:35 -07001763 {
1764 extern unsigned int __swapper_4m_tsb_phys_patch;
1765 extern unsigned int __swapper_4m_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07001766 ktsb_pa = (kern_base +
1767 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1768 patch_one_ktsb_phys(&__swapper_4m_tsb_phys_patch,
1769 &__swapper_4m_tsb_phys_patch_end, ktsb_pa);
David S. Miller0785a8e2011-08-06 05:26:35 -07001770 }
David S. Miller9076d0e2011-08-05 00:53:57 -07001771#endif
1772}
1773
David S. Miller490384e2006-02-11 14:41:18 -08001774static void __init sun4v_ktsb_init(void)
1775{
1776 unsigned long ktsb_pa;
1777
David S. Millerd7744a02006-02-21 22:31:11 -08001778 /* First KTSB for PAGE_SIZE mappings. */
David S. Miller490384e2006-02-11 14:41:18 -08001779 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1780
1781 switch (PAGE_SIZE) {
1782 case 8 * 1024:
1783 default:
1784 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K;
1785 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K;
1786 break;
1787
1788 case 64 * 1024:
1789 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K;
1790 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K;
1791 break;
1792
1793 case 512 * 1024:
1794 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K;
1795 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K;
1796 break;
1797
1798 case 4 * 1024 * 1024:
1799 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB;
1800 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB;
1801 break;
Joe Perches6cb79b32011-06-03 14:45:23 +00001802 }
David S. Miller490384e2006-02-11 14:41:18 -08001803
David S. Miller3f19a842006-02-17 12:03:20 -08001804 ktsb_descr[0].assoc = 1;
David S. Miller490384e2006-02-11 14:41:18 -08001805 ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
1806 ktsb_descr[0].ctx_idx = 0;
1807 ktsb_descr[0].tsb_base = ktsb_pa;
1808 ktsb_descr[0].resv = 0;
1809
David S. Millerd1acb422007-03-16 17:20:28 -07001810#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller4f93d212012-09-06 18:13:58 -07001811 /* Second KTSB for 4MB/256MB/2GB/16GB mappings. */
David S. Millerd7744a02006-02-21 22:31:11 -08001812 ktsb_pa = (kern_base +
1813 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1814
1815 ktsb_descr[1].pgsz_idx = HV_PGSZ_IDX_4MB;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001816 ktsb_descr[1].pgsz_mask = ((HV_PGSZ_MASK_4MB |
1817 HV_PGSZ_MASK_256MB |
1818 HV_PGSZ_MASK_2GB |
1819 HV_PGSZ_MASK_16GB) &
1820 cpu_pgsz_mask);
David S. Millerd7744a02006-02-21 22:31:11 -08001821 ktsb_descr[1].assoc = 1;
1822 ktsb_descr[1].num_ttes = KERNEL_TSB4M_NENTRIES;
1823 ktsb_descr[1].ctx_idx = 0;
1824 ktsb_descr[1].tsb_base = ktsb_pa;
1825 ktsb_descr[1].resv = 0;
David S. Millerd1acb422007-03-16 17:20:28 -07001826#endif
David S. Miller490384e2006-02-11 14:41:18 -08001827}
1828
Paul Gortmaker2066aad2013-06-17 15:43:14 -04001829void sun4v_ktsb_register(void)
David S. Miller490384e2006-02-11 14:41:18 -08001830{
David S. Miller7db35f32007-05-29 02:22:14 -07001831 unsigned long pa, ret;
David S. Miller490384e2006-02-11 14:41:18 -08001832
1833 pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE);
1834
David S. Miller7db35f32007-05-29 02:22:14 -07001835 ret = sun4v_mmu_tsb_ctx0(NUM_KTSB_DESCR, pa);
1836 if (ret != 0) {
1837 prom_printf("hypervisor_mmu_tsb_ctx0[%lx]: "
1838 "errors with %lx\n", pa, ret);
1839 prom_halt();
1840 }
David S. Miller490384e2006-02-11 14:41:18 -08001841}
1842
David S. Millerc69ad0a2012-09-06 20:35:36 -07001843static void __init sun4u_linear_pte_xor_finalize(void)
1844{
1845#ifndef CONFIG_DEBUG_PAGEALLOC
1846 /* This is where we would add Panther support for
1847 * 32MB and 256MB pages.
1848 */
1849#endif
1850}
1851
1852static void __init sun4v_linear_pte_xor_finalize(void)
1853{
1854#ifndef CONFIG_DEBUG_PAGEALLOC
1855 if (cpu_pgsz_mask & HV_PGSZ_MASK_256MB) {
1856 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001857 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001858 kern_linear_pte_xor[1] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1859 _PAGE_P_4V | _PAGE_W_4V);
1860 } else {
1861 kern_linear_pte_xor[1] = kern_linear_pte_xor[0];
1862 }
1863
1864 if (cpu_pgsz_mask & HV_PGSZ_MASK_2GB) {
1865 kern_linear_pte_xor[2] = (_PAGE_VALID | _PAGE_SZ2GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001866 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001867 kern_linear_pte_xor[2] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1868 _PAGE_P_4V | _PAGE_W_4V);
1869 } else {
1870 kern_linear_pte_xor[2] = kern_linear_pte_xor[1];
1871 }
1872
1873 if (cpu_pgsz_mask & HV_PGSZ_MASK_16GB) {
1874 kern_linear_pte_xor[3] = (_PAGE_VALID | _PAGE_SZ16GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001875 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001876 kern_linear_pte_xor[3] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1877 _PAGE_P_4V | _PAGE_W_4V);
1878 } else {
1879 kern_linear_pte_xor[3] = kern_linear_pte_xor[2];
1880 }
1881#endif
1882}
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884/* paging_init() sets up the page tables */
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886static unsigned long last_valid_pfn;
David S. Millerac55c762014-09-26 21:19:46 -07001887
1888/* These must be page aligned in order to not trigger the
1889 * alignment tests of pgd_bad() and pud_bad().
1890 */
1891pgd_t swapper_pg_dir[PTRS_PER_PGD] __attribute__ ((aligned (PAGE_SIZE)));
1892static pud_t swapper_pud_dir[PTRS_PER_PUD] __attribute__ ((aligned (PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
David S. Millerc4bce902006-02-11 21:57:54 -08001894static void sun4u_pgprot_init(void);
1895static void sun4v_pgprot_init(void);
1896
bob picco7c21d532014-09-16 09:29:54 -04001897static phys_addr_t __init available_memory(void)
1898{
1899 phys_addr_t available = 0ULL;
1900 phys_addr_t pa_start, pa_end;
1901 u64 i;
1902
1903 for_each_free_mem_range(i, NUMA_NO_NODE, &pa_start, &pa_end, NULL)
1904 available = available + (pa_end - pa_start);
1905
1906 return available;
1907}
1908
1909/* We need to exclude reserved regions. This exclusion will include
1910 * vmlinux and initrd. To be more precise the initrd size could be used to
1911 * compute a new lower limit because it is freed later during initialization.
1912 */
1913static void __init reduce_memory(phys_addr_t limit_ram)
1914{
1915 phys_addr_t avail_ram = available_memory();
1916 phys_addr_t pa_start, pa_end;
1917 u64 i;
1918
1919 if (limit_ram >= avail_ram)
1920 return;
1921
1922 for_each_free_mem_range(i, NUMA_NO_NODE, &pa_start, &pa_end, NULL) {
1923 phys_addr_t region_size = pa_end - pa_start;
1924 phys_addr_t clip_start = pa_start;
1925
1926 avail_ram = avail_ram - region_size;
1927 /* Are we consuming too much? */
1928 if (avail_ram < limit_ram) {
1929 phys_addr_t give_back = limit_ram - avail_ram;
1930
1931 region_size = region_size - give_back;
1932 clip_start = clip_start + give_back;
1933 }
1934
1935 memblock_remove(clip_start, region_size);
1936
1937 if (avail_ram <= limit_ram)
1938 break;
1939 i = 0UL;
1940 }
1941}
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943void __init paging_init(void)
1944{
David S. Miller919ee672008-04-23 05:40:25 -07001945 unsigned long end_pfn, shift, phys_base;
David S. Miller0836a0e2005-09-28 21:38:08 -07001946 unsigned long real_end, i;
David S. Millerac55c762014-09-26 21:19:46 -07001947 pud_t *pud;
1948 pmd_t *pmd;
Paul Gortmakeraa6f0792012-05-09 20:44:29 -04001949 int node;
David S. Miller0836a0e2005-09-28 21:38:08 -07001950
David S. Millerb2d43832013-09-20 21:50:41 -07001951 setup_page_offset();
1952
David S. Miller22adb352007-05-26 01:14:43 -07001953 /* These build time checkes make sure that the dcache_dirty_cpu()
1954 * page->flags usage will work.
1955 *
1956 * When a page gets marked as dcache-dirty, we store the
1957 * cpu number starting at bit 32 in the page->flags. Also,
1958 * functions like clear_dcache_dirty_cpu use the cpu mask
1959 * in 13-bit signed-immediate instruction fields.
1960 */
Christoph Lameter9223b4192008-04-28 02:12:48 -07001961
1962 /*
1963 * Page flags must not reach into upper 32 bits that are used
1964 * for the cpu number
1965 */
1966 BUILD_BUG_ON(NR_PAGEFLAGS > 32);
1967
1968 /*
1969 * The bit fields placed in the high range must not reach below
1970 * the 32 bit boundary. Otherwise we cannot place the cpu field
1971 * at the 32 bit boundary.
1972 */
David S. Miller22adb352007-05-26 01:14:43 -07001973 BUILD_BUG_ON(SECTIONS_WIDTH + NODES_WIDTH + ZONES_WIDTH +
Christoph Lameter9223b4192008-04-28 02:12:48 -07001974 ilog2(roundup_pow_of_two(NR_CPUS)) > 32);
1975
David S. Miller22adb352007-05-26 01:14:43 -07001976 BUILD_BUG_ON(NR_CPUS > 4096);
1977
David S. Miller0eef3312014-05-03 22:52:50 -07001978 kern_base = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
David S. Miller481295f2006-02-07 21:51:08 -08001979 kern_size = (unsigned long)&_end - (unsigned long)KERNBASE;
1980
David S. Millerd7744a02006-02-21 22:31:11 -08001981 /* Invalidate both kernel TSBs. */
David S. Miller8b234272006-02-17 18:01:02 -08001982 memset(swapper_tsb, 0x40, sizeof(swapper_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07001983#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Millerd7744a02006-02-21 22:31:11 -08001984 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07001985#endif
David S. Miller8b234272006-02-17 18:01:02 -08001986
David S. Millerc4bce902006-02-11 21:57:54 -08001987 if (tlb_type == hypervisor)
1988 sun4v_pgprot_init();
1989 else
1990 sun4u_pgprot_init();
1991
David S. Millerd257d5d2006-02-06 23:44:37 -08001992 if (tlb_type == cheetah_plus ||
David S. Miller9076d0e2011-08-05 00:53:57 -07001993 tlb_type == hypervisor) {
David S. Miller517af332006-02-01 15:55:21 -08001994 tsb_phys_patch();
David S. Miller9076d0e2011-08-05 00:53:57 -07001995 ktsb_phys_patch();
1996 }
David S. Miller517af332006-02-01 15:55:21 -08001997
David S. Millerc69ad0a2012-09-06 20:35:36 -07001998 if (tlb_type == hypervisor)
David S. Millerd257d5d2006-02-06 23:44:37 -08001999 sun4v_patch_tlb_handlers();
2000
David S. Millera94a1722008-05-11 21:04:48 -07002001 /* Find available physical memory...
2002 *
2003 * Read it twice in order to work around a bug in openfirmware.
2004 * The call to grab this table itself can cause openfirmware to
2005 * allocate memory, which in turn can take away some space from
2006 * the list of available memory. Reading it twice makes sure
2007 * we really do get the final value.
2008 */
2009 read_obp_translations();
2010 read_obp_memory("reg", &pall[0], &pall_ents);
2011 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller13edad72005-09-29 17:58:26 -07002012 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller0836a0e2005-09-28 21:38:08 -07002013
2014 phys_base = 0xffffffffffffffffUL;
David S. Miller3b2a7e22008-02-13 18:13:20 -08002015 for (i = 0; i < pavail_ents; i++) {
David S. Miller13edad72005-09-29 17:58:26 -07002016 phys_base = min(phys_base, pavail[i].phys_addr);
Yinghai Lu95f72d12010-07-12 14:36:09 +10002017 memblock_add(pavail[i].phys_addr, pavail[i].reg_size);
David S. Miller3b2a7e22008-02-13 18:13:20 -08002018 }
2019
Yinghai Lu95f72d12010-07-12 14:36:09 +10002020 memblock_reserve(kern_base, kern_size);
David S. Miller0836a0e2005-09-28 21:38:08 -07002021
David S. Miller4e82c9a2008-02-13 18:00:03 -08002022 find_ramdisk(phys_base);
2023
bob picco7c21d532014-09-16 09:29:54 -04002024 if (cmdline_memory_size)
2025 reduce_memory(cmdline_memory_size);
David S. Miller25b0c652008-02-13 18:20:14 -08002026
Tejun Heo1aadc052011-12-08 10:22:08 -08002027 memblock_allow_resize();
Yinghai Lu95f72d12010-07-12 14:36:09 +10002028 memblock_dump_all();
David S. Miller3b2a7e22008-02-13 18:13:20 -08002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 set_bit(0, mmu_context_bmap);
2031
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002032 shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE);
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 real_end = (unsigned long)_end;
David S. Miller0eef3312014-05-03 22:52:50 -07002035 num_kernel_image_mappings = DIV_ROUND_UP(real_end - KERNBASE, 1 << ILOG2_4MB);
David S. Miller64658742008-03-21 17:01:38 -07002036 printk("Kernel: Using %d locked TLB entries for main kernel image.\n",
2037 num_kernel_image_mappings);
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002038
2039 /* Set kernel pgd to upper alias so physical page computations
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 * work.
2041 */
2042 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
2043
David S. Miller56425302005-09-25 16:46:57 -07002044 memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
David S. Millerac55c762014-09-26 21:19:46 -07002046 /* The kernel page tables we publish into what the rest of the
2047 * world sees must be adjusted so that they see the PAGE_OFFSET
2048 * address of these in-kerenel data structures. However right
2049 * here we must access them from the kernel image side, because
2050 * the trap tables haven't been taken over and therefore we cannot
2051 * take TLB misses in the PAGE_OFFSET linear mappings yet.
2052 */
2053 pud = swapper_pud_dir + (shift / sizeof(pud_t));
2054 pgd_set(&swapper_pg_dir[0], pud);
2055
2056 pmd = swapper_low_pmd_dir + (shift / sizeof(pmd_t));
2057 pud_set(&swapper_pud_dir[0], pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
David S. Millerc9c10832005-10-12 12:22:46 -07002059 inherit_prom_mappings();
David S. Miller5085b4a2005-09-22 00:45:41 -07002060
David S. Miller8f3614532007-12-13 06:13:38 -08002061 init_kpte_bitmap();
2062
David S. Millera8b900d2006-01-31 18:33:37 -08002063 /* Ok, we can use our TLB miss and window trap handlers safely. */
2064 setup_tba();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
David S. Millerc9c10832005-10-12 12:22:46 -07002066 __flush_tlb_all();
David S. Miller9ad98c52005-10-05 15:12:00 -07002067
David S. Millerad072002008-02-13 19:21:51 -08002068 prom_build_devicetree();
David S. Millerb696fdc2009-05-26 22:37:25 -07002069 of_populate_present_mask();
David S. Millerb99c6eb2009-06-18 01:44:19 -07002070#ifndef CONFIG_SMP
2071 of_fill_in_cpu_data();
2072#endif
David S. Millerad072002008-02-13 19:21:51 -08002073
David S. Miller890db402009-04-01 03:13:15 -07002074 if (tlb_type == hypervisor) {
David S. Miller4a283332008-02-13 19:22:23 -08002075 sun4v_mdesc_init();
Stephen Rothwell6ac5c612009-06-15 03:06:18 -07002076 mdesc_populate_present_mask(cpu_all_mask);
David S. Millerb99c6eb2009-06-18 01:44:19 -07002077#ifndef CONFIG_SMP
2078 mdesc_fill_in_cpu_data(cpu_all_mask);
2079#endif
David S. Millerce33fdc2012-09-06 19:01:25 -07002080 mdesc_get_page_sizes(cpu_all_mask, &cpu_pgsz_mask);
David S. Millerc69ad0a2012-09-06 20:35:36 -07002081
2082 sun4v_linear_pte_xor_finalize();
2083
2084 sun4v_ktsb_init();
2085 sun4v_ktsb_register();
David S. Millerce33fdc2012-09-06 19:01:25 -07002086 } else {
2087 unsigned long impl, ver;
2088
2089 cpu_pgsz_mask = (HV_PGSZ_MASK_8K | HV_PGSZ_MASK_64K |
2090 HV_PGSZ_MASK_512K | HV_PGSZ_MASK_4MB);
2091
2092 __asm__ __volatile__("rdpr %%ver, %0" : "=r" (ver));
2093 impl = ((ver >> 32) & 0xffff);
2094 if (impl == PANTHER_IMPL)
2095 cpu_pgsz_mask |= (HV_PGSZ_MASK_32MB |
2096 HV_PGSZ_MASK_256MB);
David S. Millerc69ad0a2012-09-06 20:35:36 -07002097
2098 sun4u_linear_pte_xor_finalize();
David S. Miller890db402009-04-01 03:13:15 -07002099 }
David S. Miller4a283332008-02-13 19:22:23 -08002100
David S. Millerc69ad0a2012-09-06 20:35:36 -07002101 /* Flush the TLBs and the 4M TSB so that the updated linear
2102 * pte XOR settings are realized for all mappings.
2103 */
2104 __flush_tlb_all();
2105#ifndef CONFIG_DEBUG_PAGEALLOC
2106 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
2107#endif
2108 __flush_tlb_all();
2109
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002110 /* Setup bootmem... */
David S. Miller919ee672008-04-23 05:40:25 -07002111 last_valid_pfn = end_pfn = bootmem_init(phys_base);
David S. Millerd1112012006-03-08 02:16:07 -08002112
David S. Miller5ed56f12012-04-26 20:50:34 -07002113 /* Once the OF device tree and MDESC have been setup, we know
2114 * the list of possible cpus. Therefore we can allocate the
2115 * IRQ stacks.
2116 */
2117 for_each_possible_cpu(i) {
Paul Gortmakeraa6f0792012-05-09 20:44:29 -04002118 node = cpu_to_node(i);
David S. Miller5ed56f12012-04-26 20:50:34 -07002119
2120 softirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
2121 THREAD_SIZE,
2122 THREAD_SIZE, 0);
2123 hardirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
2124 THREAD_SIZE,
2125 THREAD_SIZE, 0);
2126 }
2127
David S. Miller56425302005-09-25 16:46:57 -07002128 kernel_physical_mapping_init();
David S. Miller56425302005-09-25 16:46:57 -07002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 {
David S. Miller919ee672008-04-23 05:40:25 -07002131 unsigned long max_zone_pfns[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
David S. Miller919ee672008-04-23 05:40:25 -07002133 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
David S. Miller919ee672008-04-23 05:40:25 -07002135 max_zone_pfns[ZONE_NORMAL] = end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
David S. Miller919ee672008-04-23 05:40:25 -07002137 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
2139
David S. Miller3c62a2d2008-02-17 23:22:50 -08002140 printk("Booting Linux...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
2142
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -08002143int page_in_phys_avail(unsigned long paddr)
David S. Miller919ee672008-04-23 05:40:25 -07002144{
2145 int i;
2146
2147 paddr &= PAGE_MASK;
2148
2149 for (i = 0; i < pavail_ents; i++) {
2150 unsigned long start, end;
2151
2152 start = pavail[i].phys_addr;
2153 end = start + pavail[i].reg_size;
2154
2155 if (paddr >= start && paddr < end)
2156 return 1;
2157 }
2158 if (paddr >= kern_base && paddr < (kern_base + kern_size))
2159 return 1;
2160#ifdef CONFIG_BLK_DEV_INITRD
2161 if (paddr >= __pa(initrd_start) &&
2162 paddr < __pa(PAGE_ALIGN(initrd_end)))
2163 return 1;
2164#endif
2165
2166 return 0;
2167}
2168
2169static struct linux_prom64_registers pavail_rescan[MAX_BANKS] __initdata;
2170static int pavail_rescan_ents __initdata;
2171
2172/* Certain OBP calls, such as fetching "available" properties, can
2173 * claim physical memory. So, along with initializing the valid
2174 * address bitmap, what we do here is refetch the physical available
2175 * memory list again, and make sure it provides at least as much
2176 * memory as 'pavail' does.
2177 */
David S. Millerd8ed1d42009-08-25 16:47:46 -07002178static void __init setup_valid_addr_bitmap_from_pavail(unsigned long *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 int i;
2181
David S. Miller13edad72005-09-29 17:58:26 -07002182 read_obp_memory("available", &pavail_rescan[0], &pavail_rescan_ents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
David S. Miller13edad72005-09-29 17:58:26 -07002184 for (i = 0; i < pavail_ents; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 unsigned long old_start, old_end;
2186
David S. Miller13edad72005-09-29 17:58:26 -07002187 old_start = pavail[i].phys_addr;
David S. Miller919ee672008-04-23 05:40:25 -07002188 old_end = old_start + pavail[i].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 while (old_start < old_end) {
2190 int n;
2191
David S. Millerc2a5a462006-06-22 00:01:56 -07002192 for (n = 0; n < pavail_rescan_ents; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 unsigned long new_start, new_end;
2194
David S. Miller13edad72005-09-29 17:58:26 -07002195 new_start = pavail_rescan[n].phys_addr;
2196 new_end = new_start +
2197 pavail_rescan[n].reg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 if (new_start <= old_start &&
2200 new_end >= (old_start + PAGE_SIZE)) {
David S. Miller0eef3312014-05-03 22:52:50 -07002201 set_bit(old_start >> ILOG2_4MB, bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 goto do_next_page;
2203 }
2204 }
David S. Miller919ee672008-04-23 05:40:25 -07002205
2206 prom_printf("mem_init: Lost memory in pavail\n");
2207 prom_printf("mem_init: OLD start[%lx] size[%lx]\n",
2208 pavail[i].phys_addr,
2209 pavail[i].reg_size);
2210 prom_printf("mem_init: NEW start[%lx] size[%lx]\n",
2211 pavail_rescan[i].phys_addr,
2212 pavail_rescan[i].reg_size);
2213 prom_printf("mem_init: Cannot continue, aborting.\n");
2214 prom_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 do_next_page:
2217 old_start += PAGE_SIZE;
2218 }
2219 }
2220}
2221
David S. Millerd8ed1d42009-08-25 16:47:46 -07002222static void __init patch_tlb_miss_handler_bitmap(void)
2223{
2224 extern unsigned int valid_addr_bitmap_insn[];
2225 extern unsigned int valid_addr_bitmap_patch[];
2226
2227 valid_addr_bitmap_insn[1] = valid_addr_bitmap_patch[1];
2228 mb();
2229 valid_addr_bitmap_insn[0] = valid_addr_bitmap_patch[0];
2230 flushi(&valid_addr_bitmap_insn[0]);
2231}
2232
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002233static void __init register_page_bootmem_info(void)
2234{
2235#ifdef CONFIG_NEED_MULTIPLE_NODES
2236 int i;
2237
2238 for_each_online_node(i)
2239 if (NODE_DATA(i)->node_spanned_pages)
2240 register_page_bootmem_info_node(NODE_DATA(i));
2241#endif
2242}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243void __init mem_init(void)
2244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 unsigned long addr, last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 addr = PAGE_OFFSET + kern_base;
2248 last = PAGE_ALIGN(kern_size) + addr;
2249 while (addr < last) {
David S. Miller0eef3312014-05-03 22:52:50 -07002250 set_bit(__pa(addr) >> ILOG2_4MB, sparc64_valid_addr_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 addr += PAGE_SIZE;
2252 }
2253
David S. Millerd8ed1d42009-08-25 16:47:46 -07002254 setup_valid_addr_bitmap_from_pavail(sparc64_valid_addr_bitmap);
2255 patch_tlb_miss_handler_bitmap();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 high_memory = __va(last_valid_pfn << PAGE_SHIFT);
2258
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002259 register_page_bootmem_info();
Jiang Liu0c988532013-07-03 15:03:24 -07002260 free_all_bootmem();
David S. Miller919ee672008-04-23 05:40:25 -07002261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 /*
2263 * Set up the zero page, mark it reserved, so that page count
2264 * is not manipulated when freeing the page from user ptes.
2265 */
2266 mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0);
2267 if (mem_map_zero == NULL) {
2268 prom_printf("paging_init: Cannot alloc zero page.\n");
2269 prom_halt();
2270 }
Jiang Liu70affe42013-05-07 16:18:08 -07002271 mark_page_reserved(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Jiang Liudceccbe2013-07-03 15:04:14 -07002273 mem_init_print_info(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 if (tlb_type == cheetah || tlb_type == cheetah_plus)
2276 cheetah_ecache_flush_init();
2277}
2278
David S. Miller898cf0e2005-09-23 11:59:44 -07002279void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
2281 unsigned long addr, initend;
David S. Millerf2b60792008-08-14 01:45:41 -07002282 int do_free = 1;
2283
2284 /* If the physical memory maps were trimmed by kernel command
2285 * line options, don't even try freeing this initmem stuff up.
2286 * The kernel image could have been in the trimmed out region
2287 * and if so the freeing below will free invalid page structs.
2288 */
2289 if (cmdline_memory_size)
2290 do_free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 /*
2293 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
2294 */
2295 addr = PAGE_ALIGN((unsigned long)(__init_begin));
2296 initend = (unsigned long)(__init_end) & PAGE_MASK;
2297 for (; addr < initend; addr += PAGE_SIZE) {
2298 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
2300 page = (addr +
2301 ((unsigned long) __va(kern_base)) -
2302 ((unsigned long) KERNBASE));
Randy Dunlapc9cf5522006-06-27 02:53:52 -07002303 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Jiang Liu70affe42013-05-07 16:18:08 -07002305 if (do_free)
2306 free_reserved_page(virt_to_page(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308}
2309
2310#ifdef CONFIG_BLK_DEV_INITRD
2311void free_initrd_mem(unsigned long start, unsigned long end)
2312{
Jiang Liudceccbe2013-07-03 15:04:14 -07002313 free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
2314 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315}
2316#endif
David S. Millerc4bce902006-02-11 21:57:54 -08002317
David S. Millerc4bce902006-02-11 21:57:54 -08002318#define _PAGE_CACHE_4U (_PAGE_CP_4U | _PAGE_CV_4U)
2319#define _PAGE_CACHE_4V (_PAGE_CP_4V | _PAGE_CV_4V)
2320#define __DIRTY_BITS_4U (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U)
2321#define __DIRTY_BITS_4V (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V)
2322#define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R)
2323#define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R)
2324
2325pgprot_t PAGE_KERNEL __read_mostly;
2326EXPORT_SYMBOL(PAGE_KERNEL);
2327
2328pgprot_t PAGE_KERNEL_LOCKED __read_mostly;
2329pgprot_t PAGE_COPY __read_mostly;
David S. Miller0f159522006-02-18 12:43:16 -08002330
2331pgprot_t PAGE_SHARED __read_mostly;
2332EXPORT_SYMBOL(PAGE_SHARED);
2333
David S. Millerc4bce902006-02-11 21:57:54 -08002334unsigned long pg_iobits __read_mostly;
2335
2336unsigned long _PAGE_IE __read_mostly;
David S. Miller987c74f2006-06-25 01:34:43 -07002337EXPORT_SYMBOL(_PAGE_IE);
David S. Millerb2bef442006-02-23 01:55:55 -08002338
David S. Millerc4bce902006-02-11 21:57:54 -08002339unsigned long _PAGE_E __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002340EXPORT_SYMBOL(_PAGE_E);
2341
David S. Millerc4bce902006-02-11 21:57:54 -08002342unsigned long _PAGE_CACHE __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002343EXPORT_SYMBOL(_PAGE_CACHE);
David S. Millerc4bce902006-02-11 21:57:54 -08002344
David Miller46644c22007-10-16 01:24:16 -07002345#ifdef CONFIG_SPARSEMEM_VMEMMAP
David Miller46644c22007-10-16 01:24:16 -07002346unsigned long vmemmap_table[VMEMMAP_SIZE];
2347
David S. Miller2856cc22012-08-15 00:37:29 -07002348static long __meminitdata addr_start, addr_end;
2349static int __meminitdata node_start;
2350
Johannes Weiner0aad8182013-04-29 15:07:50 -07002351int __meminit vmemmap_populate(unsigned long vstart, unsigned long vend,
2352 int node)
David Miller46644c22007-10-16 01:24:16 -07002353{
David Miller46644c22007-10-16 01:24:16 -07002354 unsigned long phys_start = (vstart - VMEMMAP_BASE);
2355 unsigned long phys_end = (vend - VMEMMAP_BASE);
2356 unsigned long addr = phys_start & VMEMMAP_CHUNK_MASK;
2357 unsigned long end = VMEMMAP_ALIGN(phys_end);
2358 unsigned long pte_base;
2359
2360 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2361 _PAGE_CP_4U | _PAGE_CV_4U |
2362 _PAGE_P_4U | _PAGE_W_4U);
2363 if (tlb_type == hypervisor)
2364 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4V |
2365 _PAGE_CP_4V | _PAGE_CV_4V |
2366 _PAGE_P_4V | _PAGE_W_4V);
2367
2368 for (; addr < end; addr += VMEMMAP_CHUNK) {
2369 unsigned long *vmem_pp =
2370 vmemmap_table + (addr >> VMEMMAP_CHUNK_SHIFT);
2371 void *block;
2372
2373 if (!(*vmem_pp & _PAGE_VALID)) {
David S. Miller0eef3312014-05-03 22:52:50 -07002374 block = vmemmap_alloc_block(1UL << ILOG2_4MB, node);
David Miller46644c22007-10-16 01:24:16 -07002375 if (!block)
2376 return -ENOMEM;
2377
2378 *vmem_pp = pte_base | __pa(block);
2379
David S. Miller2856cc22012-08-15 00:37:29 -07002380 /* check to see if we have contiguous blocks */
2381 if (addr_end != addr || node_start != node) {
2382 if (addr_start)
2383 printk(KERN_DEBUG " [%lx-%lx] on node %d\n",
2384 addr_start, addr_end-1, node_start);
2385 addr_start = addr;
2386 node_start = node;
2387 }
2388 addr_end = addr + VMEMMAP_CHUNK;
David Miller46644c22007-10-16 01:24:16 -07002389 }
2390 }
2391 return 0;
2392}
David S. Miller2856cc22012-08-15 00:37:29 -07002393
2394void __meminit vmemmap_populate_print_last(void)
2395{
2396 if (addr_start) {
2397 printk(KERN_DEBUG " [%lx-%lx] on node %d\n",
2398 addr_start, addr_end-1, node_start);
2399 addr_start = 0;
2400 addr_end = 0;
2401 node_start = 0;
2402 }
2403}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -08002404
Johannes Weiner0aad8182013-04-29 15:07:50 -07002405void vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -08002406{
2407}
2408
David Miller46644c22007-10-16 01:24:16 -07002409#endif /* CONFIG_SPARSEMEM_VMEMMAP */
2410
David S. Millerc4bce902006-02-11 21:57:54 -08002411static void prot_init_common(unsigned long page_none,
2412 unsigned long page_shared,
2413 unsigned long page_copy,
2414 unsigned long page_readonly,
2415 unsigned long page_exec_bit)
2416{
2417 PAGE_COPY = __pgprot(page_copy);
David S. Miller0f159522006-02-18 12:43:16 -08002418 PAGE_SHARED = __pgprot(page_shared);
David S. Millerc4bce902006-02-11 21:57:54 -08002419
2420 protection_map[0x0] = __pgprot(page_none);
2421 protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit);
2422 protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit);
2423 protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit);
2424 protection_map[0x4] = __pgprot(page_readonly);
2425 protection_map[0x5] = __pgprot(page_readonly);
2426 protection_map[0x6] = __pgprot(page_copy);
2427 protection_map[0x7] = __pgprot(page_copy);
2428 protection_map[0x8] = __pgprot(page_none);
2429 protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit);
2430 protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit);
2431 protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit);
2432 protection_map[0xc] = __pgprot(page_readonly);
2433 protection_map[0xd] = __pgprot(page_readonly);
2434 protection_map[0xe] = __pgprot(page_shared);
2435 protection_map[0xf] = __pgprot(page_shared);
2436}
2437
2438static void __init sun4u_pgprot_init(void)
2439{
2440 unsigned long page_none, page_shared, page_copy, page_readonly;
2441 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002442 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002443
2444 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2445 _PAGE_CACHE_4U | _PAGE_P_4U |
2446 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2447 _PAGE_EXEC_4U);
2448 PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2449 _PAGE_CACHE_4U | _PAGE_P_4U |
2450 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2451 _PAGE_EXEC_4U | _PAGE_L_4U);
David S. Millerc4bce902006-02-11 21:57:54 -08002452
2453 _PAGE_IE = _PAGE_IE_4U;
2454 _PAGE_E = _PAGE_E_4U;
2455 _PAGE_CACHE = _PAGE_CACHE_4U;
2456
2457 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
2458 __ACCESS_BITS_4U | _PAGE_E_4U);
2459
David S. Millerd1acb422007-03-16 17:20:28 -07002460#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002461 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002462#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002463 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
David S. Miller922631b2013-09-18 12:00:00 -07002464 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002465#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002466 kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U |
2467 _PAGE_P_4U | _PAGE_W_4U);
2468
David S. Miller4f93d212012-09-06 18:13:58 -07002469 for (i = 1; i < 4; i++)
2470 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Millerc4bce902006-02-11 21:57:54 -08002471
David S. Millerc4bce902006-02-11 21:57:54 -08002472 _PAGE_ALL_SZ_BITS = (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U |
2473 _PAGE_SZ64K_4U | _PAGE_SZ8K_4U |
2474 _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U);
2475
2476
2477 page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U;
2478 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2479 __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U);
2480 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2481 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2482 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2483 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2484
2485 page_exec_bit = _PAGE_EXEC_4U;
2486
2487 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2488 page_exec_bit);
2489}
2490
2491static void __init sun4v_pgprot_init(void)
2492{
2493 unsigned long page_none, page_shared, page_copy, page_readonly;
2494 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002495 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002496
2497 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
2498 _PAGE_CACHE_4V | _PAGE_P_4V |
2499 __ACCESS_BITS_4V | __DIRTY_BITS_4V |
2500 _PAGE_EXEC_4V);
2501 PAGE_KERNEL_LOCKED = PAGE_KERNEL;
David S. Millerc4bce902006-02-11 21:57:54 -08002502
2503 _PAGE_IE = _PAGE_IE_4V;
2504 _PAGE_E = _PAGE_E_4V;
2505 _PAGE_CACHE = _PAGE_CACHE_4V;
2506
David S. Millerd1acb422007-03-16 17:20:28 -07002507#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002508 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002509#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002510 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07002511 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002512#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002513 kern_linear_pte_xor[0] |= (_PAGE_CP_4V | _PAGE_CV_4V |
2514 _PAGE_P_4V | _PAGE_W_4V);
2515
David S. Millerc69ad0a2012-09-06 20:35:36 -07002516 for (i = 1; i < 4; i++)
2517 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Miller4f93d212012-09-06 18:13:58 -07002518
David S. Millerc4bce902006-02-11 21:57:54 -08002519 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
2520 __ACCESS_BITS_4V | _PAGE_E_4V);
2521
David S. Millerc4bce902006-02-11 21:57:54 -08002522 _PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V |
2523 _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V |
2524 _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V |
2525 _PAGE_SZ64K_4V | _PAGE_SZ8K_4V);
2526
2527 page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | _PAGE_CACHE_4V;
2528 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2529 __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V);
2530 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2531 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
2532 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2533 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
2534
2535 page_exec_bit = _PAGE_EXEC_4V;
2536
2537 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2538 page_exec_bit);
2539}
2540
2541unsigned long pte_sz_bits(unsigned long sz)
2542{
2543 if (tlb_type == hypervisor) {
2544 switch (sz) {
2545 case 8 * 1024:
2546 default:
2547 return _PAGE_SZ8K_4V;
2548 case 64 * 1024:
2549 return _PAGE_SZ64K_4V;
2550 case 512 * 1024:
2551 return _PAGE_SZ512K_4V;
2552 case 4 * 1024 * 1024:
2553 return _PAGE_SZ4MB_4V;
Joe Perches6cb79b32011-06-03 14:45:23 +00002554 }
David S. Millerc4bce902006-02-11 21:57:54 -08002555 } else {
2556 switch (sz) {
2557 case 8 * 1024:
2558 default:
2559 return _PAGE_SZ8K_4U;
2560 case 64 * 1024:
2561 return _PAGE_SZ64K_4U;
2562 case 512 * 1024:
2563 return _PAGE_SZ512K_4U;
2564 case 4 * 1024 * 1024:
2565 return _PAGE_SZ4MB_4U;
Joe Perches6cb79b32011-06-03 14:45:23 +00002566 }
David S. Millerc4bce902006-02-11 21:57:54 -08002567 }
2568}
2569
2570pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size)
2571{
2572 pte_t pte;
David S. Millercf627152006-02-12 21:10:07 -08002573
2574 pte_val(pte) = page | pgprot_val(pgprot_noncached(prot));
David S. Millerc4bce902006-02-11 21:57:54 -08002575 pte_val(pte) |= (((unsigned long)space) << 32);
2576 pte_val(pte) |= pte_sz_bits(page_size);
David S. Millercf627152006-02-12 21:10:07 -08002577
David S. Millerc4bce902006-02-11 21:57:54 -08002578 return pte;
2579}
2580
David S. Millerc4bce902006-02-11 21:57:54 -08002581static unsigned long kern_large_tte(unsigned long paddr)
2582{
2583 unsigned long val;
2584
2585 val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2586 _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U |
2587 _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U);
2588 if (tlb_type == hypervisor)
2589 val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
2590 _PAGE_CP_4V | _PAGE_CV_4V | _PAGE_P_4V |
2591 _PAGE_EXEC_4V | _PAGE_W_4V);
2592
2593 return val | paddr;
2594}
2595
David S. Millerc4bce902006-02-11 21:57:54 -08002596/* If not locked, zap it. */
2597void __flush_tlb_all(void)
2598{
2599 unsigned long pstate;
2600 int i;
2601
2602 __asm__ __volatile__("flushw\n\t"
2603 "rdpr %%pstate, %0\n\t"
2604 "wrpr %0, %1, %%pstate"
2605 : "=r" (pstate)
2606 : "i" (PSTATE_IE));
David S. Miller8f3614532007-12-13 06:13:38 -08002607 if (tlb_type == hypervisor) {
2608 sun4v_mmu_demap_all();
2609 } else if (tlb_type == spitfire) {
David S. Millerc4bce902006-02-11 21:57:54 -08002610 for (i = 0; i < 64; i++) {
2611 /* Spitfire Errata #32 workaround */
2612 /* NOTE: Always runs on spitfire, so no
2613 * cheetah+ page size encodings.
2614 */
2615 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2616 "flush %%g6"
2617 : /* No outputs */
2618 : "r" (0),
2619 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2620
2621 if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) {
2622 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2623 "membar #Sync"
2624 : /* no outputs */
2625 : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
2626 spitfire_put_dtlb_data(i, 0x0UL);
2627 }
2628
2629 /* Spitfire Errata #32 workaround */
2630 /* NOTE: Always runs on spitfire, so no
2631 * cheetah+ page size encodings.
2632 */
2633 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2634 "flush %%g6"
2635 : /* No outputs */
2636 : "r" (0),
2637 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2638
2639 if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) {
2640 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2641 "membar #Sync"
2642 : /* no outputs */
2643 : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
2644 spitfire_put_itlb_data(i, 0x0UL);
2645 }
2646 }
2647 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
2648 cheetah_flush_dtlb_all();
2649 cheetah_flush_itlb_all();
2650 }
2651 __asm__ __volatile__("wrpr %0, 0, %%pstate"
2652 : : "r" (pstate));
2653}
David Millerc460bec2012-10-08 16:34:22 -07002654
David Millerc460bec2012-10-08 16:34:22 -07002655pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
2656 unsigned long address)
2657{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002658 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK |
2659 __GFP_REPEAT | __GFP_ZERO);
2660 pte_t *pte = NULL;
David Millerc460bec2012-10-08 16:34:22 -07002661
David Millerc460bec2012-10-08 16:34:22 -07002662 if (page)
2663 pte = (pte_t *) page_address(page);
2664
2665 return pte;
2666}
2667
2668pgtable_t pte_alloc_one(struct mm_struct *mm,
2669 unsigned long address)
2670{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002671 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK |
2672 __GFP_REPEAT | __GFP_ZERO);
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002673 if (!page)
2674 return NULL;
2675 if (!pgtable_page_ctor(page)) {
2676 free_hot_cold_page(page, 0);
2677 return NULL;
David Millerc460bec2012-10-08 16:34:22 -07002678 }
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002679 return (pte_t *) page_address(page);
David Millerc460bec2012-10-08 16:34:22 -07002680}
2681
2682void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
2683{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002684 free_page((unsigned long)pte);
David Millerc460bec2012-10-08 16:34:22 -07002685}
2686
2687static void __pte_free(pgtable_t pte)
2688{
2689 struct page *page = virt_to_page(pte);
David S. Miller37b3a8f2013-09-25 13:48:49 -07002690
2691 pgtable_page_dtor(page);
2692 __free_page(page);
David Millerc460bec2012-10-08 16:34:22 -07002693}
2694
2695void pte_free(struct mm_struct *mm, pgtable_t pte)
2696{
2697 __pte_free(pte);
2698}
2699
2700void pgtable_free(void *table, bool is_page)
2701{
2702 if (is_page)
2703 __pte_free(table);
2704 else
2705 kmem_cache_free(pgtable_cache, table);
2706}
David Miller9e695d22012-10-08 16:34:29 -07002707
2708#ifdef CONFIG_TRANSPARENT_HUGEPAGE
David Miller9e695d22012-10-08 16:34:29 -07002709void update_mmu_cache_pmd(struct vm_area_struct *vma, unsigned long addr,
2710 pmd_t *pmd)
2711{
2712 unsigned long pte, flags;
2713 struct mm_struct *mm;
2714 pmd_t entry = *pmd;
David Miller9e695d22012-10-08 16:34:29 -07002715
2716 if (!pmd_large(entry) || !pmd_young(entry))
2717 return;
2718
David S. Millera7b94032013-09-26 13:45:15 -07002719 pte = pmd_val(entry);
David Miller9e695d22012-10-08 16:34:29 -07002720
David S. Miller18f38132014-08-04 16:34:01 -07002721 /* Don't insert a non-valid PMD into the TSB, we'll deadlock. */
2722 if (!(pte & _PAGE_VALID))
2723 return;
2724
David S. Miller37b3a8f2013-09-25 13:48:49 -07002725 /* We are fabricating 8MB pages using 4MB real hw pages. */
2726 pte |= (addr & (1UL << REAL_HPAGE_SHIFT));
David Miller9e695d22012-10-08 16:34:29 -07002727
2728 mm = vma->vm_mm;
2729
2730 spin_lock_irqsave(&mm->context.lock, flags);
2731
2732 if (mm->context.tsb_block[MM_TSB_HUGE].tsb != NULL)
David S. Miller37b3a8f2013-09-25 13:48:49 -07002733 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David Miller9e695d22012-10-08 16:34:29 -07002734 addr, pte);
2735
2736 spin_unlock_irqrestore(&mm->context.lock, flags);
2737}
2738#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
2739
2740#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
2741static void context_reload(void *__data)
2742{
2743 struct mm_struct *mm = __data;
2744
2745 if (mm == current->mm)
2746 load_secondary_context(mm);
2747}
2748
David S. Miller0fbebed2013-02-19 22:34:10 -08002749void hugetlb_setup(struct pt_regs *regs)
David Miller9e695d22012-10-08 16:34:29 -07002750{
David S. Miller0fbebed2013-02-19 22:34:10 -08002751 struct mm_struct *mm = current->mm;
2752 struct tsb_config *tp;
David Miller9e695d22012-10-08 16:34:29 -07002753
David S. Miller0fbebed2013-02-19 22:34:10 -08002754 if (in_atomic() || !mm) {
2755 const struct exception_table_entry *entry;
David Miller9e695d22012-10-08 16:34:29 -07002756
David S. Miller0fbebed2013-02-19 22:34:10 -08002757 entry = search_exception_tables(regs->tpc);
2758 if (entry) {
2759 regs->tpc = entry->fixup;
2760 regs->tnpc = regs->tpc + 4;
2761 return;
2762 }
2763 pr_alert("Unexpected HugeTLB setup in atomic context.\n");
2764 die_if_kernel("HugeTSB in atomic", regs);
2765 }
2766
2767 tp = &mm->context.tsb_block[MM_TSB_HUGE];
2768 if (likely(tp->tsb == NULL))
2769 tsb_grow(mm, MM_TSB_HUGE, 0);
2770
David Miller9e695d22012-10-08 16:34:29 -07002771 tsb_context_switch(mm);
2772 smp_tsb_sync(mm);
2773
2774 /* On UltraSPARC-III+ and later, configure the second half of
2775 * the Data-TLB for huge pages.
2776 */
2777 if (tlb_type == cheetah_plus) {
2778 unsigned long ctx;
2779
2780 spin_lock(&ctx_alloc_lock);
2781 ctx = mm->context.sparc64_ctx_val;
2782 ctx &= ~CTX_PGSZ_MASK;
2783 ctx |= CTX_PGSZ_BASE << CTX_PGSZ0_SHIFT;
2784 ctx |= CTX_PGSZ_HUGE << CTX_PGSZ1_SHIFT;
2785
2786 if (ctx != mm->context.sparc64_ctx_val) {
2787 /* When changing the page size fields, we
2788 * must perform a context flush so that no
2789 * stale entries match. This flush must
2790 * occur with the original context register
2791 * settings.
2792 */
2793 do_flush_tlb_mm(mm);
2794
2795 /* Reload the context register of all processors
2796 * also executing in this address space.
2797 */
2798 mm->context.sparc64_ctx_val = ctx;
2799 on_each_cpu(context_reload, mm, 0);
2800 }
2801 spin_unlock(&ctx_alloc_lock);
2802 }
2803}
2804#endif
bob piccof6d4fb52014-03-03 11:54:42 -05002805
2806static struct resource code_resource = {
2807 .name = "Kernel code",
2808 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2809};
2810
2811static struct resource data_resource = {
2812 .name = "Kernel data",
2813 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2814};
2815
2816static struct resource bss_resource = {
2817 .name = "Kernel bss",
2818 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2819};
2820
2821static inline resource_size_t compute_kern_paddr(void *addr)
2822{
2823 return (resource_size_t) (addr - KERNBASE + kern_base);
2824}
2825
2826static void __init kernel_lds_init(void)
2827{
2828 code_resource.start = compute_kern_paddr(_text);
2829 code_resource.end = compute_kern_paddr(_etext - 1);
2830 data_resource.start = compute_kern_paddr(_etext);
2831 data_resource.end = compute_kern_paddr(_edata - 1);
2832 bss_resource.start = compute_kern_paddr(__bss_start);
2833 bss_resource.end = compute_kern_paddr(_end - 1);
2834}
2835
2836static int __init report_memory(void)
2837{
2838 int i;
2839 struct resource *res;
2840
2841 kernel_lds_init();
2842
2843 for (i = 0; i < pavail_ents; i++) {
2844 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
2845
2846 if (!res) {
2847 pr_warn("Failed to allocate source.\n");
2848 break;
2849 }
2850
2851 res->name = "System RAM";
2852 res->start = pavail[i].phys_addr;
2853 res->end = pavail[i].phys_addr + pavail[i].reg_size - 1;
2854 res->flags = IORESOURCE_BUSY | IORESOURCE_MEM;
2855
2856 if (insert_resource(&iomem_resource, res) < 0) {
2857 pr_warn("Resource insertion failed.\n");
2858 break;
2859 }
2860
2861 insert_resource(res, &code_resource);
2862 insert_resource(res, &data_resource);
2863 insert_resource(res, &bss_resource);
2864 }
2865
2866 return 0;
2867}
2868device_initcall(report_memory);
David S. Millere9011d02014-08-05 18:57:18 -07002869
David S. Miller4ca9a232014-08-04 20:07:37 -07002870#ifdef CONFIG_SMP
2871#define do_flush_tlb_kernel_range smp_flush_tlb_kernel_range
2872#else
2873#define do_flush_tlb_kernel_range __flush_tlb_kernel_range
2874#endif
2875
2876void flush_tlb_kernel_range(unsigned long start, unsigned long end)
2877{
2878 if (start < HI_OBP_ADDRESS && end > LOW_OBP_ADDRESS) {
2879 if (start < LOW_OBP_ADDRESS) {
2880 flush_tsb_kernel_range(start, LOW_OBP_ADDRESS);
2881 do_flush_tlb_kernel_range(start, LOW_OBP_ADDRESS);
2882 }
2883 if (end > HI_OBP_ADDRESS) {
David S. Miller473ad7f2014-10-04 21:05:14 -07002884 flush_tsb_kernel_range(HI_OBP_ADDRESS, end);
2885 do_flush_tlb_kernel_range(HI_OBP_ADDRESS, end);
David S. Miller4ca9a232014-08-04 20:07:37 -07002886 }
2887 } else {
2888 flush_tsb_kernel_range(start, end);
2889 do_flush_tlb_kernel_range(start, end);
2890 }
2891}